WP-Table Reloaded - Version 1.9.3

Version Description

This upgrade includes several bugfixes and a few enhancements, and is a recommended maintenance release.

Download this release

Release Info

Developer TobiasBg
Plugin Icon wp plugin WP-Table Reloaded
Version 1.9.3
Comparing to
See all releases

Code changes from version 1.9.2 to 1.9.3

admin/admin-script.dev.js CHANGED
@@ -17,7 +17,7 @@ jQuery(document).ready( function( $ ) {
17
  set_table_data_changed();
18
  }
19
  return false;
20
- });
21
  $( '#a-unhide-rows' ).click( function() {
22
  var rows_selected = $( '#table_contents tr:not(".table-foot") :checked' ).length;
23
  if ( rows_selected == 0 ) {
@@ -27,7 +27,7 @@ jQuery(document).ready( function( $ ) {
27
  set_table_data_changed();
28
  }
29
  return false;
30
- });
31
 
32
  $( '#a-hide-columns' ).click( function() {
33
  var cols_selected = $( '#table_contents .table-foot :checked' ).length;
@@ -35,24 +35,24 @@ jQuery(document).ready( function( $ ) {
35
  alert( WP_Table_Reloaded_Admin.str_UnHideColsNoSelection );
36
  } else {
37
  $( '#table_contents .table-foot :checked' ).removeAttr( 'checked' ).next().val( true ).each( function() {
38
- $( '#table_contents .' + $(this).attr('id') ).addClass( 'column-hidden' );
39
  } );
40
  set_table_data_changed();
41
  }
42
  return false;
43
- });
44
  $( '#a-unhide-columns' ).click( function() {
45
  var cols_selected = $( '#table_contents .table-foot :checked' ).length;
46
  if ( cols_selected == 0 ) {
47
  alert( WP_Table_Reloaded_Admin.str_UnHideColsNoSelection );
48
  } else {
49
  $( '#table_contents .table-foot :checked' ).removeAttr( 'checked' ).next().val( false ).each( function() {
50
- $( '#table_contents .' + $(this).attr('id') ).removeClass( 'column-hidden' );
51
  } );
52
  set_table_data_changed();
53
  }
54
  return false;
55
- });
56
 
57
  $( '#button-insert-rows' ).click( function() {
58
  var rows_selected = $( '#table_contents tr:not(".table-foot") :checked' ).length;
@@ -62,7 +62,7 @@ jQuery(document).ready( function( $ ) {
62
  } else {
63
  return true;
64
  }
65
- });
66
 
67
  $( '#button-insert-columns' ).click( function() {
68
  var cols_selected = $( '#table_contents .table-foot :checked' ).length;
@@ -72,57 +72,51 @@ jQuery(document).ready( function( $ ) {
72
  } else {
73
  return true;
74
  }
75
- });
76
 
77
- var span_type = '';
78
- function add_span() {
79
- $(this).val( span_type );
80
- $( '#table_contents textarea' ).unbind( 'click', add_span );
81
  set_table_data_changed();
82
  }
83
-
84
- // function to add rowspan / colspan to cells
85
  $( '#a-add-colspan' ).click( function() {
86
- span_type = '#colspan#';
87
  if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationAddColspan ) )
88
- $("#table_contents textarea").bind( 'click', add_span );
89
  return false;
90
- });
91
  $( '#a-add-rowspan' ).click( function() {
92
- span_type = '#rowspan#';
93
  if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationAddRowspan ) )
94
- $("#table_contents textarea").bind( 'click', add_span );
95
  return false;
96
- });
97
 
98
  // functions to make focussed textareas bigger (if backend option is enabled)
99
- var focussed = null;
100
  if ( WP_Table_Reloaded_Admin.option_growing_textareas ) {
101
- $( '#table_contents textarea' ).focus( function() {
102
- $(focussed).removeClass('focus');
103
- focussed = $(this).parents('tr').find('textarea');
104
- $(focussed).addClass('focus');
105
  } );
106
  }
107
 
108
- // custom css textarea grows on focus
109
- function css_textarea_focus() {
110
- $( '#options_custom_css' ).addClass('focus');
111
- }
112
- $( '#options_custom_css' ).one( 'focus', css_textarea_focus );
113
 
114
  // show export delimiter dropdown box only if export format is csv
115
- $( '#export_format' ).change( function () {
116
  if ( 'csv' == $(this).val() )
117
  $('.tr-export-delimiter').show();
118
  else
119
  $('.tr-export-delimiter').hide();
120
- })
121
  .change();
122
 
123
  // confirm change of table ID
124
  var table_id = $( '.wp-table-reloaded-table-information #table_id' ).val();
125
- $( '.wp-table-reloaded-table-information #table_id' ).change( function () {
126
  if ( table_id != $(this).val() ) {
127
  if ( confirm( WP_Table_Reloaded_Admin.str_ChangeTableID ) ) {
128
  table_id = $(this).val();
@@ -134,7 +128,7 @@ jQuery(document).ready( function( $ ) {
134
  } );
135
 
136
  // show select box for table to replace only if needed
137
- $( '.tr-import-addreplace input' ).click( function () {
138
  if( 'replace' == $( '.tr-import-addreplace input:checked' ).val() )
139
  $( '.tr-import-addreplace-table' ).show();
140
  else
@@ -143,23 +137,23 @@ jQuery(document).ready( function( $ ) {
143
  $( '.tr-import-addreplace input:checked' ).click();
144
 
145
  // show only checked import fields depending on radio button
146
- $( '.tr-import-from input' ).click( function () {
147
  $('.tr-import-file-upload, .tr-import-url, .tr-import-form-field, .tr-import-server').hide();
148
  $( '.tr-import-' + $( '.tr-import-from input:checked' ).val() ).show();
149
  } );
150
  $('.tr-import-from input:checked').click();
151
 
152
  // enable/disable custom css textarea according to state of checkbox
153
- $( '#options_use_custom_css' ).change( function () {
154
- if( $(this).attr('checked') )
155
  $( '#options_custom_css' ).removeAttr( 'disabled' );
156
  else
157
  $( '#options_custom_css' ).attr( 'disabled', 'disabled' );
158
  } );
159
 
160
  // tablesorter selection dropdown according to state of checkbox
161
- $( '#options_enable_tablesorter' ).change( function () {
162
- if( $(this).attr('checked') )
163
  $( '#options_tablesorter_script' ).removeAttr( 'disabled' );
164
  else
165
  $( '#options_tablesorter_script' ).attr( 'disabled' , 'disabled' );
@@ -167,14 +161,10 @@ jQuery(document).ready( function( $ ) {
167
 
168
  // enable/disable "use tableheadline" according to state of checkbox
169
  if ( WP_Table_Reloaded_Admin.option_tablesorter_enabled && WP_Table_Reloaded_Admin.option_datatables_active ) {
170
- $( '#table_options_first_row_th' ).change( function () {
171
- if( $(this).attr('checked') ) {
172
- $( '#table_options_use_tablesorter' ).removeAttr( 'disabled' );
173
- if ( $( '#table_options_use_tablesorter' ).attr('checked') ) {
174
- $( '.wp-table-reloaded-datatables-options input' ).removeAttr( 'disabled' );
175
- if ( !WP_Table_Reloaded_Admin.option_tabletools_active )
176
- $( '#table_options_datatables_tabletools' ).attr( 'disabled', 'disabled' );
177
- }
178
  } else {
179
  $( '#table_options_use_tablesorter' ).attr( 'disabled', 'disabled' );
180
  $( '.wp-table-reloaded-datatables-options input' ).attr( 'disabled', 'disabled' );
@@ -182,20 +172,19 @@ jQuery(document).ready( function( $ ) {
182
  } );
183
 
184
  // enable/disable DataTables options according to checkbox state
185
- $( '#table_options_use_tablesorter' ).change( function () {
186
- if( $(this).attr('checked') ) {
187
  $( '.wp-table-reloaded-datatables-options input' ).removeAttr( 'disabled' );
188
  if ( !WP_Table_Reloaded_Admin.option_tabletools_active )
189
  $( '#table_options_datatables_tabletools' ).attr( 'disabled', 'disabled' );
190
- if ( !$( '#table_options_datatables_paginate' ).attr('checked') )
191
- $( '#table_options_datatables_paginate_entries' ).attr( 'disabled', 'disabled' );
192
  } else {
193
  $( '.wp-table-reloaded-datatables-options input' ).attr( 'disabled', 'disabled' );
194
  }
195
  } );
196
 
197
- $( '#table_options_datatables_paginate' ).change( function () {
198
- if( $(this).attr('checked') ) {
199
  $( '#table_options_datatables_paginate_entries' ).removeAttr( 'disabled' );
200
  } else {
201
  $( '#table_options_datatables_paginate_entries' ).attr( 'disabled', 'disabled' );
@@ -203,56 +192,46 @@ jQuery(document).ready( function( $ ) {
203
  } );
204
 
205
  } else if ( WP_Table_Reloaded_Admin.option_tablesorter_enabled ) {
206
- $( '#table_options_first_row_th' ).change( function () {
207
- if( $(this).attr('checked') )
208
  $( '#table_options_use_tablesorter' ).removeAttr( 'disabled' );
209
  else
210
  $( '#table_options_use_tablesorter' ).attr( 'disabled', 'disabled' );
211
  } );
212
  }
213
 
214
- $( '#table_options_print_name' ).change( function () {
215
- if( $(this).attr('checked') )
216
- $( '#table_options_print_name_position' ).removeAttr( 'disabled' );
217
  else
218
- $( '#table_options_print_name_position' ).attr( 'disabled', 'disabled' );
219
- } );
220
-
221
- $( '#table_options_print_description' ).change( function () {
222
- if( $(this).attr('checked') )
223
- $( '#table_options_print_description_position' ).removeAttr( 'disabled' );
224
- else
225
- $( '#table_options_print_description_position' ).attr( 'disabled', 'disabled' );
226
  } );
227
 
228
  // confirm uninstall setting
229
- $( '#options_uninstall_upon_deactivation').click( function () {
230
- if( $(this).attr('checked') )
231
  return confirm( WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation );
232
  } );
233
 
234
-
235
  // insert link functions
236
- var insert_html = '';
237
- function add_html() {
238
- $(this).val( $(this).val() + insert_html );
239
- $( '#table_contents textarea' ).unbind( 'click', add_html );
240
  set_table_data_changed();
241
  }
242
 
243
- $( '#a-insert-link' ).click( function () {
244
- var target = '';
245
- if ( WP_Table_Reloaded_Admin.option_add_target_blank_to_links )
246
- target = ' target="_blank"';
247
  var link_url = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL + ':', 'http://' );
248
  if ( link_url ) {
249
  var link_text = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText + ':', WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText );
250
  if ( link_text ) {
251
- insert_html = '<a href="' + link_url + '"' + target + '>' + link_text + '</a>';
252
- insert_html = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain, insert_html )
253
- if ( insert_html ) {
254
- $("#table_contents textarea").bind('click', add_html);
255
- }
 
 
256
  }
257
  }
258
  return false;
@@ -261,63 +240,62 @@ jQuery(document).ready( function( $ ) {
261
  // insert image functions
262
  function call_media_library_thickbox() {
263
  edCanvas = this;
264
- $( '#table_contents textarea' ).unbind( 'click', call_media_library_thickbox );
265
- var link = $( '#a-insert-image' );
266
- tb_show( link.attr('title'), link.attr('href'), link.attr('rel') );
267
  tb_my_position();
268
  $(this).blur();
269
  set_table_data_changed();
270
  }
271
 
272
- function add_image() {
273
  if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertThickbox ) )
274
- $("#table_contents textarea").bind( 'click', call_media_library_thickbox );
275
  return false;
276
- }
277
- $( '#a-insert-image' ).bind('click', add_image);
278
 
279
  // not all characters allowed for name of Custom Data Field
280
- $( '#insert_custom_field_name' ).keyup( function () {
281
  $(this).val( $(this).val().toLowerCase().replace(/[^a-z0-9_-]/g, '') );
282
  } );
283
 
284
  // remove/add title on focus/blur
285
- $( '.focus-blur-change' ).focus( function () {
286
  if ( $(this).attr('title') == $(this).val() )
287
  $(this).val( '' );
288
  } )
289
- .blur( function () {
290
  if ( '' == $(this).val() )
291
  $(this).val( $(this).attr('title') );
292
  } );
293
 
294
- $( '#table_custom_fields textarea' ).focus( function() {
295
  $( '#table_custom_fields .focus' ).removeClass('focus');
296
  $(this).addClass('focus');
297
  } );
298
 
299
  // confirmation of certain actions
300
- $( 'input.bulk_copy_tables' ).click( function () {
301
  return confirm( WP_Table_Reloaded_Admin.str_BulkCopyTablesLink );
302
  } );
303
 
304
- $( 'input.bulk_delete_tables' ).click( function () {
305
  return confirm( WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink );
306
  } );
307
 
308
- $( 'input.bulk_wp_table_import_tables' ).click( function () {
309
  return confirm( WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink );
310
  } );
311
 
312
- $( 'a.copy_table_link' ).click( function () {
313
  return confirm( WP_Table_Reloaded_Admin.str_CopyTableLink );
314
  } );
315
 
316
- $( '#wp-table-reloaded-list a.delete_table_link' ).click( function () {
317
  return confirm( WP_Table_Reloaded_Admin.str_DeleteTableLink );
318
  } );
319
 
320
- $( '#button-delete-rows' ).click( function () {
321
  var rows_cb = $( '#table_contents tr:not(".table-foot") :checkbox' ).length - 1; // -1 because of invisible checkbox in .table-head
322
  var rows_selected = $( '#table_contents tr:not(".table-foot") :checked' ).length;
323
 
@@ -329,12 +307,12 @@ jQuery(document).ready( function( $ ) {
329
  alert( WP_Table_Reloaded_Admin.str_DeleteRowsFailedNotAll );
330
  return false;
331
  } else {
332
- return confirm( WP_Table_Reloaded_Admin.str_DeleteRowsConfirm );
333
  }
334
  }
335
  } );
336
 
337
- $( '#button-delete-columns' ).click( function () {
338
  var cols_cb = $( '#table_contents .table-foot :checkbox' ).length;
339
  var cols_selected = $( '#table_contents .table-foot :checked' ).length;
340
 
@@ -346,32 +324,32 @@ jQuery(document).ready( function( $ ) {
346
  alert( WP_Table_Reloaded_Admin.str_DeleteColsFailedNotAll );
347
  return false;
348
  } else {
349
- return confirm( WP_Table_Reloaded_Admin.str_DeleteColsConfirm );
350
  }
351
  }
352
  } );
353
 
354
- $( 'a.import_wptable_link' ).click( function () {
355
  return confirm( WP_Table_Reloaded_Admin.str_ImportwpTableLink );
356
  } );
357
 
358
- $( '#import_wp_table_reloaded_dump_file' ).click( function () {
359
  return confirm( WP_Table_Reloaded_Admin.str_ImportDumpFile );
360
  } );
361
 
362
- $( '#uninstall_plugin_link' ).click( function () {
363
  if ( confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_1 ) )
364
  return confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_2 );
365
  else
366
  return false;
367
  } );
368
 
369
- $( 'a.cf_shortcode_link' ).click( function () {
370
  var dummy = prompt( WP_Table_Reloaded_Admin.str_CFShortcodeMessage, $(this).attr('title') );
371
  return false;
372
  } );
373
 
374
- $( 'a.table_shortcode_link' ).click( function () {
375
  var dummy = prompt( WP_Table_Reloaded_Admin.str_TableShortcodeMessage, $(this).attr('title') );
376
  return false;
377
  } );
@@ -382,29 +360,28 @@ jQuery(document).ready( function( $ ) {
382
  } );
383
 
384
  // exit message, if table content was changed but not yet saved
385
- var table_data_changed = false;
386
-
387
- function set_table_data_changed() {
388
- table_data_changed = true;
389
- $( '#wp_table_reloaded_edit_table' ).find( '#table_name, textarea' ).unbind( 'change', set_table_data_changed );
390
- $( '#wp_table_reloaded_edit_table .wp-table-reloaded-options input, #wp_table_reloaded_edit_table .wp-table-reloaded-options select' ).unbind( 'change', set_table_data_changed );
391
- }
 
 
392
 
393
  if ( WP_Table_Reloaded_Admin.option_show_exit_warning ) {
394
- window.onbeforeunload = function(){
395
- if ( table_data_changed )
396
- return WP_Table_Reloaded_Admin.str_saveAlert;
397
- };
398
-
399
- $("#wp_table_reloaded_edit_table input[name='submit[update]'], #wp_table_reloaded_edit_table input[name='submit[save_back]']").click(function(){
400
- $( '#wp_table_reloaded_edit_table .wp-table-reloaded-options input, #wp_table_reloaded_edit_table .wp-table-reloaded-options select' ).removeAttr( 'disabled' );
401
  window.onbeforeunload = null;
402
  } );
403
-
404
- $( '#wp_table_reloaded_edit_table' ).find( '#table_name, textarea' ).bind( 'change', set_table_data_changed ); // see also ID change function above
405
- $( '#wp_table_reloaded_edit_table .wp-table-reloaded-options input, #wp_table_reloaded_edit_table .wp-table-reloaded-options select' ).bind( 'change', set_table_data_changed );
406
  }
407
-
 
 
 
 
 
408
  tb_init( 'a.help-link' );
409
  tb_init( 'a.preview-link' );
410
  tb_my_position();
@@ -427,8 +404,8 @@ var tb_my_position;
427
  tb_my_position = function() {
428
  var tbWindow = $('#TB_window'), width = $(window).width(), H = $(window).height(), W = ( 720 < width ) ? 720 : width, adminbar_height = 0;
429
 
430
- if ( $('body.admin-bar').length )
431
- adminbar_height = 28;
432
 
433
  if ( tbWindow.size() ) {
434
  tbWindow.width( W - 50 ).height( H - 45 - adminbar_height );
17
  set_table_data_changed();
18
  }
19
  return false;
20
+ } );
21
  $( '#a-unhide-rows' ).click( function() {
22
  var rows_selected = $( '#table_contents tr:not(".table-foot") :checked' ).length;
23
  if ( rows_selected == 0 ) {
27
  set_table_data_changed();
28
  }
29
  return false;
30
+ } );
31
 
32
  $( '#a-hide-columns' ).click( function() {
33
  var cols_selected = $( '#table_contents .table-foot :checked' ).length;
35
  alert( WP_Table_Reloaded_Admin.str_UnHideColsNoSelection );
36
  } else {
37
  $( '#table_contents .table-foot :checked' ).removeAttr( 'checked' ).next().val( true ).each( function() {
38
+ $( '#table_contents .' + this.id ).addClass( 'column-hidden' );
39
  } );
40
  set_table_data_changed();
41
  }
42
  return false;
43
+ } );
44
  $( '#a-unhide-columns' ).click( function() {
45
  var cols_selected = $( '#table_contents .table-foot :checked' ).length;
46
  if ( cols_selected == 0 ) {
47
  alert( WP_Table_Reloaded_Admin.str_UnHideColsNoSelection );
48
  } else {
49
  $( '#table_contents .table-foot :checked' ).removeAttr( 'checked' ).next().val( false ).each( function() {
50
+ $( '#table_contents .' + this.id ).removeClass( 'column-hidden' );
51
  } );
52
  set_table_data_changed();
53
  }
54
  return false;
55
+ } );
56
 
57
  $( '#button-insert-rows' ).click( function() {
58
  var rows_selected = $( '#table_contents tr:not(".table-foot") :checked' ).length;
62
  } else {
63
  return true;
64
  }
65
+ } );
66
 
67
  $( '#button-insert-columns' ).click( function() {
68
  var cols_selected = $( '#table_contents .table-foot :checked' ).length;
72
  } else {
73
  return true;
74
  }
75
+ } );
76
 
77
+ // function to add rowspan / colspan to cells
78
+ function add_span( event ) {
79
+ $(this).val( event.data.span_type );
80
+ $( '#table_contents' ).undelegate( 'textarea', 'click', add_span );
81
  set_table_data_changed();
82
  }
 
 
83
  $( '#a-add-colspan' ).click( function() {
 
84
  if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationAddColspan ) )
85
+ $( '#table_contents' ).delegate( 'textarea', 'click', { span_type: '#colspan#' }, add_span );
86
  return false;
87
+ } );
88
  $( '#a-add-rowspan' ).click( function() {
 
89
  if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationAddRowspan ) )
90
+ $( '#table_contents' ).delegate( 'textarea', 'click', { span_type: '#rowspan#' }, add_span );
91
  return false;
92
+ } );
93
 
94
  // functions to make focussed textareas bigger (if backend option is enabled)
95
+ var $focussed = $(null);
96
  if ( WP_Table_Reloaded_Admin.option_growing_textareas ) {
97
+ $( '#table_contents' ).delegate( 'textarea', 'focus', function() {
98
+ $focussed.removeClass( 'focus' );
99
+ $focussed = $(this).closest( 'tr' ).addClass( 'focus' );
 
100
  } );
101
  }
102
 
103
+ // "Custom CSS" textarea grows on focus, once
104
+ $( '#options_custom_css' ).one( 'focus', function() {
105
+ $(this).addClass( 'focus' );
106
+ } );
 
107
 
108
  // show export delimiter dropdown box only if export format is csv
109
+ $( '#export_format' ).change( function() {
110
  if ( 'csv' == $(this).val() )
111
  $('.tr-export-delimiter').show();
112
  else
113
  $('.tr-export-delimiter').hide();
114
+ } )
115
  .change();
116
 
117
  // confirm change of table ID
118
  var table_id = $( '.wp-table-reloaded-table-information #table_id' ).val();
119
+ $( '.wp-table-reloaded-table-information #table_id' ).change( function() {
120
  if ( table_id != $(this).val() ) {
121
  if ( confirm( WP_Table_Reloaded_Admin.str_ChangeTableID ) ) {
122
  table_id = $(this).val();
128
  } );
129
 
130
  // show select box for table to replace only if needed
131
+ $( '.tr-import-addreplace input' ).click( function() {
132
  if( 'replace' == $( '.tr-import-addreplace input:checked' ).val() )
133
  $( '.tr-import-addreplace-table' ).show();
134
  else
137
  $( '.tr-import-addreplace input:checked' ).click();
138
 
139
  // show only checked import fields depending on radio button
140
+ $( '.tr-import-from input' ).click( function() {
141
  $('.tr-import-file-upload, .tr-import-url, .tr-import-form-field, .tr-import-server').hide();
142
  $( '.tr-import-' + $( '.tr-import-from input:checked' ).val() ).show();
143
  } );
144
  $('.tr-import-from input:checked').click();
145
 
146
  // enable/disable custom css textarea according to state of checkbox
147
+ $( '#options_use_custom_css' ).change( function() {
148
+ if( this.checked )
149
  $( '#options_custom_css' ).removeAttr( 'disabled' );
150
  else
151
  $( '#options_custom_css' ).attr( 'disabled', 'disabled' );
152
  } );
153
 
154
  // tablesorter selection dropdown according to state of checkbox
155
+ $( '#options_enable_tablesorter' ).change( function() {
156
+ if( this.checked )
157
  $( '#options_tablesorter_script' ).removeAttr( 'disabled' );
158
  else
159
  $( '#options_tablesorter_script' ).attr( 'disabled' , 'disabled' );
161
 
162
  // enable/disable "use tableheadline" according to state of checkbox
163
  if ( WP_Table_Reloaded_Admin.option_tablesorter_enabled && WP_Table_Reloaded_Admin.option_datatables_active ) {
164
+ $( '#table_options_first_row_th' ).change( function() {
165
+ if( this.checked ) {
166
+ $( '#table_options_use_tablesorter' ).removeAttr( 'disabled' )
167
+ .change();
 
 
 
 
168
  } else {
169
  $( '#table_options_use_tablesorter' ).attr( 'disabled', 'disabled' );
170
  $( '.wp-table-reloaded-datatables-options input' ).attr( 'disabled', 'disabled' );
172
  } );
173
 
174
  // enable/disable DataTables options according to checkbox state
175
+ $( '#table_options_use_tablesorter' ).change( function() {
176
+ if( this.checked ) {
177
  $( '.wp-table-reloaded-datatables-options input' ).removeAttr( 'disabled' );
178
  if ( !WP_Table_Reloaded_Admin.option_tabletools_active )
179
  $( '#table_options_datatables_tabletools' ).attr( 'disabled', 'disabled' );
180
+ $( '#table_options_datatables_paginate' ).change();
 
181
  } else {
182
  $( '.wp-table-reloaded-datatables-options input' ).attr( 'disabled', 'disabled' );
183
  }
184
  } );
185
 
186
+ $( '#table_options_datatables_paginate' ).change( function() {
187
+ if( this.checked ) {
188
  $( '#table_options_datatables_paginate_entries' ).removeAttr( 'disabled' );
189
  } else {
190
  $( '#table_options_datatables_paginate_entries' ).attr( 'disabled', 'disabled' );
192
  } );
193
 
194
  } else if ( WP_Table_Reloaded_Admin.option_tablesorter_enabled ) {
195
+ $( '#table_options_first_row_th' ).change( function() {
196
+ if( this.checked )
197
  $( '#table_options_use_tablesorter' ).removeAttr( 'disabled' );
198
  else
199
  $( '#table_options_use_tablesorter' ).attr( 'disabled', 'disabled' );
200
  } );
201
  }
202
 
203
+ $( '#table_options_print_name, #table_options_print_description' ).change( function() {
204
+ if( this.checked )
205
+ $( '#' + this.id + '_position' ).removeAttr( 'disabled' );
206
  else
207
+ $( '#' + this.id + '_position' ).attr( 'disabled', 'disabled' );
 
 
 
 
 
 
 
208
  } );
209
 
210
  // confirm uninstall setting
211
+ $( '#options_uninstall_upon_deactivation').click( function() {
212
+ if( this.checked )
213
  return confirm( WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation );
214
  } );
215
 
 
216
  // insert link functions
217
+ function add_html( event ) {
218
+ $(this).val( $(this).val() + event.data.html );
219
+ $( '#table_contents' ).undelegate( 'textarea', 'click', add_html );
 
220
  set_table_data_changed();
221
  }
222
 
223
+ $( '#a-insert-link' ).click( function() {
 
 
 
224
  var link_url = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL + ':', 'http://' );
225
  if ( link_url ) {
226
  var link_text = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText + ':', WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText );
227
  if ( link_text ) {
228
+ var target = '';
229
+ if ( WP_Table_Reloaded_Admin.option_add_target_blank_to_links )
230
+ target = ' target="_blank"';
231
+ var insert_html = '<a href="' + link_url + '"' + target + '>' + link_text + '</a>';
232
+ insert_html = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain, insert_html );
233
+ if ( insert_html )
234
+ $( '#table_contents' ).delegate( 'textarea', 'click', { html: insert_html }, add_html );
235
  }
236
  }
237
  return false;
240
  // insert image functions
241
  function call_media_library_thickbox() {
242
  edCanvas = this;
243
+ $( '#table_contents' ).undelegate( 'textarea', 'click', call_media_library_thickbox );
244
+ var $link = $( '#a-insert-image' );
245
+ tb_show( $link.attr('title'), $link.attr('href'), false );
246
  tb_my_position();
247
  $(this).blur();
248
  set_table_data_changed();
249
  }
250
 
251
+ $( '#a-insert-image' ).click( function() {
252
  if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertThickbox ) )
253
+ $( '#table_contents' ).delegate( 'textarea', 'click', call_media_library_thickbox );
254
  return false;
255
+ } );
 
256
 
257
  // not all characters allowed for name of Custom Data Field
258
+ $( '#insert_custom_field_name' ).keyup( function() {
259
  $(this).val( $(this).val().toLowerCase().replace(/[^a-z0-9_-]/g, '') );
260
  } );
261
 
262
  // remove/add title on focus/blur
263
+ $( '.focus-blur-change' ).focus( function() {
264
  if ( $(this).attr('title') == $(this).val() )
265
  $(this).val( '' );
266
  } )
267
+ .blur( function() {
268
  if ( '' == $(this).val() )
269
  $(this).val( $(this).attr('title') );
270
  } );
271
 
272
+ $( '#table_custom_fields' ).delegate( 'textarea', 'focus', function() {
273
  $( '#table_custom_fields .focus' ).removeClass('focus');
274
  $(this).addClass('focus');
275
  } );
276
 
277
  // confirmation of certain actions
278
+ $( 'input.bulk_copy_tables' ).click( function() {
279
  return confirm( WP_Table_Reloaded_Admin.str_BulkCopyTablesLink );
280
  } );
281
 
282
+ $( 'input.bulk_delete_tables' ).click( function() {
283
  return confirm( WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink );
284
  } );
285
 
286
+ $( 'input.bulk_wp_table_import_tables' ).click( function() {
287
  return confirm( WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink );
288
  } );
289
 
290
+ $( 'a.copy_table_link' ).click( function() {
291
  return confirm( WP_Table_Reloaded_Admin.str_CopyTableLink );
292
  } );
293
 
294
+ $( '#wp-table-reloaded-list a.delete_table_link' ).click( function() {
295
  return confirm( WP_Table_Reloaded_Admin.str_DeleteTableLink );
296
  } );
297
 
298
+ $( '#button-delete-rows' ).click( function() {
299
  var rows_cb = $( '#table_contents tr:not(".table-foot") :checkbox' ).length - 1; // -1 because of invisible checkbox in .table-head
300
  var rows_selected = $( '#table_contents tr:not(".table-foot") :checked' ).length;
301
 
307
  alert( WP_Table_Reloaded_Admin.str_DeleteRowsFailedNotAll );
308
  return false;
309
  } else {
310
+ return confirm( WP_Table_Reloaded_Admin.str_DeleteRowsConfirm );
311
  }
312
  }
313
  } );
314
 
315
+ $( '#button-delete-columns' ).click( function() {
316
  var cols_cb = $( '#table_contents .table-foot :checkbox' ).length;
317
  var cols_selected = $( '#table_contents .table-foot :checked' ).length;
318
 
324
  alert( WP_Table_Reloaded_Admin.str_DeleteColsFailedNotAll );
325
  return false;
326
  } else {
327
+ return confirm( WP_Table_Reloaded_Admin.str_DeleteColsConfirm );
328
  }
329
  }
330
  } );
331
 
332
+ $( 'a.import_wptable_link' ).click( function() {
333
  return confirm( WP_Table_Reloaded_Admin.str_ImportwpTableLink );
334
  } );
335
 
336
+ $( '#import_wp_table_reloaded_dump_file' ).click( function() {
337
  return confirm( WP_Table_Reloaded_Admin.str_ImportDumpFile );
338
  } );
339
 
340
+ $( '#uninstall_plugin_link' ).click( function() {
341
  if ( confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_1 ) )
342
  return confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_2 );
343
  else
344
  return false;
345
  } );
346
 
347
+ $( 'a.cf_shortcode_link' ).click( function() {
348
  var dummy = prompt( WP_Table_Reloaded_Admin.str_CFShortcodeMessage, $(this).attr('title') );
349
  return false;
350
  } );
351
 
352
+ $( 'a.table_shortcode_link' ).click( function() {
353
  var dummy = prompt( WP_Table_Reloaded_Admin.str_TableShortcodeMessage, $(this).attr('title') );
354
  return false;
355
  } );
360
  } );
361
 
362
  // exit message, if table content was changed but not yet saved
363
+ function set_table_data_changed() {
364
+ if ( ! WP_Table_Reloaded_Admin.option_show_exit_warning )
365
+ return;
366
+
367
+ window.onbeforeunload = function() {
368
+ return WP_Table_Reloaded_Admin.str_saveAlert;
369
+ };
370
+ $( '#wp_table_reloaded_edit_table' ).undelegate( '#table_name, textarea, .wp-table-reloaded-options input, .wp-table-reloaded-options select', 'change', set_table_data_changed ); // see also ID change function above
371
+ }
372
 
373
  if ( WP_Table_Reloaded_Admin.option_show_exit_warning ) {
374
+ $( '#wp_table_reloaded_edit_table' ).delegate( '#table_name, textarea, .wp-table-reloaded-options input, .wp-table-reloaded-options select', 'change', set_table_data_changed ); // see also ID change function above
375
+ $( '#wp_table_reloaded_edit_table' ).find( 'input[name="submit[update]"], input[name="submit[save_back]"]' ).click(function(){
 
 
 
 
 
376
  window.onbeforeunload = null;
377
  } );
 
 
 
378
  }
379
+
380
+ // enable disabled fields, so that they are transmitted in the POST request
381
+ $( '#wp_table_reloaded_edit_table' ).find( 'input[name="submit[update]"], input[name="submit[save_back]"]' ).click(function(){
382
+ $( '#wp_table_reloaded_edit_table .wp-table-reloaded-options' ).find( 'input, select' ).removeAttr( 'disabled' );
383
+ } );
384
+
385
  tb_init( 'a.help-link' );
386
  tb_init( 'a.preview-link' );
387
  tb_my_position();
404
  tb_my_position = function() {
405
  var tbWindow = $('#TB_window'), width = $(window).width(), H = $(window).height(), W = ( 720 < width ) ? 720 : width, adminbar_height = 0;
406
 
407
+ if ( $('body.admin-bar').length )
408
+ adminbar_height = 28;
409
 
410
  if ( tbWindow.size() ) {
411
  tbWindow.width( W - 50 ).height( H - 45 - adminbar_height );
admin/admin-script.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(d){d("#a-hide-rows").click(function(){var m=d('#table_contents tr:not(".table-foot") :checked').length;if(m==0){alert(WP_Table_Reloaded_Admin.str_UnHideRowsNoSelection)}else{d('#table_contents tr:not(".table-foot") :checked').removeAttr("checked").next().val(true).parents("tr").addClass("row-hidden");e()}return false});d("#a-unhide-rows").click(function(){var m=d('#table_contents tr:not(".table-foot") :checked').length;if(m==0){alert(WP_Table_Reloaded_Admin.str_UnHideRowsNoSelection)}else{d('#table_contents tr:not(".table-foot") :checked').removeAttr("checked").next().val(false).parents("tr").removeClass("row-hidden");e()}return false});d("#a-hide-columns").click(function(){var m=d("#table_contents .table-foot :checked").length;if(m==0){alert(WP_Table_Reloaded_Admin.str_UnHideColsNoSelection)}else{d("#table_contents .table-foot :checked").removeAttr("checked").next().val(true).each(function(){d("#table_contents ."+d(this).attr("id")).addClass("column-hidden")});e()}return false});d("#a-unhide-columns").click(function(){var m=d("#table_contents .table-foot :checked").length;if(m==0){alert(WP_Table_Reloaded_Admin.str_UnHideColsNoSelection)}else{d("#table_contents .table-foot :checked").removeAttr("checked").next().val(false).each(function(){d("#table_contents ."+d(this).attr("id")).removeClass("column-hidden")});e()}return false});d("#button-insert-rows").click(function(){var m=d('#table_contents tr:not(".table-foot") :checked').length;if(m==0){alert(WP_Table_Reloaded_Admin.str_InsertRowsNoSelection);return false}else{return true}});d("#button-insert-columns").click(function(){var m=d("#table_contents .table-foot :checked").length;if(m==0){alert(WP_Table_Reloaded_Admin.str_InsertColsNoSelection);return false}else{return true}});var c="";function a(){d(this).val(c);d("#table_contents textarea").unbind("click",a);e()}d("#a-add-colspan").click(function(){c="#colspan#";if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationAddColspan)){d("#table_contents textarea").bind("click",a)}return false});d("#a-add-rowspan").click(function(){c="#rowspan#";if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationAddRowspan)){d("#table_contents textarea").bind("click",a)}return false});var g=null;if(WP_Table_Reloaded_Admin.option_growing_textareas){d("#table_contents textarea").focus(function(){d(g).removeClass("focus");g=d(this).parents("tr").find("textarea");d(g).addClass("focus")})}function i(){d("#options_custom_css").addClass("focus")}d("#options_custom_css").one("focus",i);d("#export_format").change(function(){if("csv"==d(this).val()){d(".tr-export-delimiter").show()}else{d(".tr-export-delimiter").hide()}}).change();var j=d(".wp-table-reloaded-table-information #table_id").val();d(".wp-table-reloaded-table-information #table_id").change(function(){if(j!=d(this).val()){if(confirm(WP_Table_Reloaded_Admin.str_ChangeTableID)){j=d(this).val();e()}else{d(this).val(j)}}});d(".tr-import-addreplace input").click(function(){if("replace"==d(".tr-import-addreplace input:checked").val()){d(".tr-import-addreplace-table").show()}else{d(".tr-import-addreplace-table").hide()}});d(".tr-import-addreplace input:checked").click();d(".tr-import-from input").click(function(){d(".tr-import-file-upload, .tr-import-url, .tr-import-form-field, .tr-import-server").hide();d(".tr-import-"+d(".tr-import-from input:checked").val()).show()});d(".tr-import-from input:checked").click();d("#options_use_custom_css").change(function(){if(d(this).attr("checked")){d("#options_custom_css").removeAttr("disabled")}else{d("#options_custom_css").attr("disabled","disabled")}});d("#options_enable_tablesorter").change(function(){if(d(this).attr("checked")){d("#options_tablesorter_script").removeAttr("disabled")}else{d("#options_tablesorter_script").attr("disabled","disabled")}});if(WP_Table_Reloaded_Admin.option_tablesorter_enabled&&WP_Table_Reloaded_Admin.option_datatables_active){d("#table_options_first_row_th").change(function(){if(d(this).attr("checked")){d("#table_options_use_tablesorter").removeAttr("disabled");if(d("#table_options_use_tablesorter").attr("checked")){d(".wp-table-reloaded-datatables-options input").removeAttr("disabled");if(!WP_Table_Reloaded_Admin.option_tabletools_active){d("#table_options_datatables_tabletools").attr("disabled","disabled")}}}else{d("#table_options_use_tablesorter").attr("disabled","disabled");d(".wp-table-reloaded-datatables-options input").attr("disabled","disabled")}});d("#table_options_use_tablesorter").change(function(){if(d(this).attr("checked")){d(".wp-table-reloaded-datatables-options input").removeAttr("disabled");if(!WP_Table_Reloaded_Admin.option_tabletools_active){d("#table_options_datatables_tabletools").attr("disabled","disabled")}if(!d("#table_options_datatables_paginate").attr("checked")){d("#table_options_datatables_paginate_entries").attr("disabled","disabled")}}else{d(".wp-table-reloaded-datatables-options input").attr("disabled","disabled")}});d("#table_options_datatables_paginate").change(function(){if(d(this).attr("checked")){d("#table_options_datatables_paginate_entries").removeAttr("disabled")}else{d("#table_options_datatables_paginate_entries").attr("disabled","disabled")}})}else{if(WP_Table_Reloaded_Admin.option_tablesorter_enabled){d("#table_options_first_row_th").change(function(){if(d(this).attr("checked")){d("#table_options_use_tablesorter").removeAttr("disabled")}else{d("#table_options_use_tablesorter").attr("disabled","disabled")}})}}d("#table_options_print_name").change(function(){if(d(this).attr("checked")){d("#table_options_print_name_position").removeAttr("disabled")}else{d("#table_options_print_name_position").attr("disabled","disabled")}});d("#table_options_print_description").change(function(){if(d(this).attr("checked")){d("#table_options_print_description_position").removeAttr("disabled")}else{d("#table_options_print_description_position").attr("disabled","disabled")}});d("#options_uninstall_upon_deactivation").click(function(){if(d(this).attr("checked")){return confirm(WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation)}});var k="";function f(){d(this).val(d(this).val()+k);d("#table_contents textarea").unbind("click",f);e()}d("#a-insert-link").click(function(){var o="";if(WP_Table_Reloaded_Admin.option_add_target_blank_to_links){o=' target="_blank"'}var n=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL+":","http://");if(n){var m=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText+":",WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText);if(m){k='<a href="'+n+'"'+o+">"+m+"</a>";k=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain,k);if(k){d("#table_contents textarea").bind("click",f)}}}return false});function b(){edCanvas=this;d("#table_contents textarea").unbind("click",b);var m=d("#a-insert-image");tb_show(m.attr("title"),m.attr("href"),m.attr("rel"));tb_my_position();d(this).blur();e()}function h(){if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationImageInsertThickbox)){d("#table_contents textarea").bind("click",b)}return false}d("#a-insert-image").bind("click",h);d("#insert_custom_field_name").keyup(function(){d(this).val(d(this).val().toLowerCase().replace(/[^a-z0-9_-]/g,""))});d(".focus-blur-change").focus(function(){if(d(this).attr("title")==d(this).val()){d(this).val("")}}).blur(function(){if(""==d(this).val()){d(this).val(d(this).attr("title"))}});d("#table_custom_fields textarea").focus(function(){d("#table_custom_fields .focus").removeClass("focus");d(this).addClass("focus")});d("input.bulk_copy_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkCopyTablesLink)});d("input.bulk_delete_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink)});d("input.bulk_wp_table_import_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink)});d("a.copy_table_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_CopyTableLink)});d('#wp-table-reloaded-list a.delete_table_link').click(function(){return confirm(WP_Table_Reloaded_Admin.str_DeleteTableLink);});d("#button-delete-rows").click(function(){var n=d('#table_contents tr:not(".table-foot") :checkbox').length-1;var m=d('#table_contents tr:not(".table-foot") :checked').length;if(m==0){alert(WP_Table_Reloaded_Admin.str_DeleteRowsFailedNoSelection);return false}else{if(n==m){alert(WP_Table_Reloaded_Admin.str_DeleteRowsFailedNotAll);return false}else{return confirm(WP_Table_Reloaded_Admin.str_DeleteRowsConfirm)}}});d("#button-delete-columns").click(function(){var m=d("#table_contents .table-foot :checkbox").length;var n=d("#table_contents .table-foot :checked").length;if(n==0){alert(WP_Table_Reloaded_Admin.str_DeleteColsFailedNoSelection);return false}else{if(m==n){alert(WP_Table_Reloaded_Admin.str_DeleteColsFailedNotAll);return false}else{return confirm(WP_Table_Reloaded_Admin.str_DeleteColsConfirm)}}});d("a.import_wptable_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_ImportwpTableLink)});d("#import_wp_table_reloaded_dump_file").click(function(){return confirm(WP_Table_Reloaded_Admin.str_ImportDumpFile)});d("#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}});d("a.cf_shortcode_link").click(function(){var m=prompt(WP_Table_Reloaded_Admin.str_CFShortcodeMessage,d(this).attr("title"));return false});d("a.table_shortcode_link").click(function(){var m=prompt(WP_Table_Reloaded_Admin.str_TableShortcodeMessage,d(this).attr("title"));return false});d(".postbox h3, .postbox .handlediv").click(function(){d(d(this).parent().get(0)).toggleClass("closed")});var l=false;function e(){l=true;d("#wp_table_reloaded_edit_table").find("#table_name, textarea").unbind("change",e);d("#wp_table_reloaded_edit_table .wp-table-reloaded-options input, #wp_table_reloaded_edit_table .wp-table-reloaded-options select").unbind("change",e)}if(WP_Table_Reloaded_Admin.option_show_exit_warning){window.onbeforeunload=function(){if(l){return WP_Table_Reloaded_Admin.str_saveAlert}};d("#wp_table_reloaded_edit_table input[name='submit[update]'], #wp_table_reloaded_edit_table input[name='submit[save_back]']").click(function(){d("#wp_table_reloaded_edit_table .wp-table-reloaded-options input, #wp_table_reloaded_edit_table .wp-table-reloaded-options select").removeAttr("disabled");window.onbeforeunload=null});d("#wp_table_reloaded_edit_table").find("#table_name, textarea").bind("change",e);d("#wp_table_reloaded_edit_table .wp-table-reloaded-options input, #wp_table_reloaded_edit_table .wp-table-reloaded-options select").bind("change",e)}tb_init("a.help-link");tb_init("a.preview-link");tb_my_position()});function send_to_editor(a){jQuery(edCanvas).val(jQuery(edCanvas).val()+a);tb_remove()}var tb_my_position;(function(a){tb_my_position=function(){var f=a("#TB_window"),e=a(window).width(),d=a(window).height(),c=(720<e)?720:e,b=0;if(a("body.admin-bar").length){b=28}if(f.size()){f.width(c-50).height(d-45-b);a("#TB_iframeContent").width(c-50).height(d-75-b);f.css({"margin-left":"-"+parseInt(((c-50)/2),10)+"px"});if(typeof document.body.style.maxWidth!="undefined"){f.css({top:20+b+"px","margin-top":"0"})}}return a("a.preview-link").each(function(){var g=a(this).attr("href");if(!g){return}g=g.replace(/&width=[0-9]+/g,"");g=g.replace(/&height=[0-9]+/g,"");a(this).attr("href",g+"&width="+(c-80)+"&height="+(d-85-b))})};a(window).resize(function(){tb_my_position()})})(jQuery);
1
+ jQuery(document).ready(function(c){c("#a-hide-rows").click(function(){var h=c('#table_contents tr:not(".table-foot") :checked').length;if(h==0){alert(WP_Table_Reloaded_Admin.str_UnHideRowsNoSelection)}else{c('#table_contents tr:not(".table-foot") :checked').removeAttr("checked").next().val(true).parents("tr").addClass("row-hidden");a()}return false});c("#a-unhide-rows").click(function(){var h=c('#table_contents tr:not(".table-foot") :checked').length;if(h==0){alert(WP_Table_Reloaded_Admin.str_UnHideRowsNoSelection)}else{c('#table_contents tr:not(".table-foot") :checked').removeAttr("checked").next().val(false).parents("tr").removeClass("row-hidden");a()}return false});c("#a-hide-columns").click(function(){var h=c("#table_contents .table-foot :checked").length;if(h==0){alert(WP_Table_Reloaded_Admin.str_UnHideColsNoSelection)}else{c("#table_contents .table-foot :checked").removeAttr("checked").next().val(true).each(function(){c("#table_contents ."+this.id).addClass("column-hidden")});a()}return false});c("#a-unhide-columns").click(function(){var h=c("#table_contents .table-foot :checked").length;if(h==0){alert(WP_Table_Reloaded_Admin.str_UnHideColsNoSelection)}else{c("#table_contents .table-foot :checked").removeAttr("checked").next().val(false).each(function(){c("#table_contents ."+c(this).attr("id")).removeClass("column-hidden")});a()}return false});c("#button-insert-rows").click(function(){var h=c('#table_contents tr:not(".table-foot") :checked').length;if(h==0){alert(WP_Table_Reloaded_Admin.str_InsertRowsNoSelection);return false}else{return true}});c("#button-insert-columns").click(function(){var h=c("#table_contents .table-foot :checked").length;if(h==0){alert(WP_Table_Reloaded_Admin.str_InsertColsNoSelection);return false}else{return true}});function e(h){c(this).val(h.data.span_type);c("#table_contents").undelegate("textarea","click",e);a()}c("#a-add-colspan").click(function(){if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationAddColspan)){c("#table_contents").delegate("textarea","click",{span_type:"#colspan#"},e)}return false});c("#a-add-rowspan").click(function(){if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationAddRowspan)){c("#table_contents").delegate("textarea","click",{span_type:"#rowspan#"},e)}return false});var d=c(null);if(WP_Table_Reloaded_Admin.option_growing_textareas){c("#table_contents").delegate("textarea","focus",function(){d.removeClass("focus");d=c(this).closest("tr").addClass("focus")})}c("#options_custom_css").one("focus",function(){c(this).addClass("focus")});c("#export_format").change(function(){if("csv"==c(this).val()){c(".tr-export-delimiter").show()}else{c(".tr-export-delimiter").hide()}}).change();var g=c(".wp-table-reloaded-table-information #table_id").val();c(".wp-table-reloaded-table-information #table_id").change(function(){if(g!=c(this).val()){if(confirm(WP_Table_Reloaded_Admin.str_ChangeTableID)){g=c(this).val();a()}else{c(this).val(g)}}});c(".tr-import-addreplace input").click(function(){if("replace"==c(".tr-import-addreplace input:checked").val()){c(".tr-import-addreplace-table").show()}else{c(".tr-import-addreplace-table").hide()}});c(".tr-import-addreplace input:checked").click();c(".tr-import-from input").click(function(){c(".tr-import-file-upload, .tr-import-url, .tr-import-form-field, .tr-import-server").hide();c(".tr-import-"+c(".tr-import-from input:checked").val()).show()});c(".tr-import-from input:checked").click();c("#options_use_custom_css").change(function(){if(c(this).attr("checked")){c("#options_custom_css").removeAttr("disabled")}else{c("#options_custom_css").attr("disabled","disabled")}});c("#options_enable_tablesorter").change(function(){if(c(this).attr("checked")){c("#options_tablesorter_script").removeAttr("disabled")}else{c("#options_tablesorter_script").attr("disabled","disabled")}});if(WP_Table_Reloaded_Admin.option_tablesorter_enabled&&WP_Table_Reloaded_Admin.option_datatables_active){c("#table_options_first_row_th").change(function(){if(c(this).attr("checked")){c("#table_options_use_tablesorter").removeAttr("disabled").change()}else{c("#table_options_use_tablesorter").attr("disabled","disabled");c(".wp-table-reloaded-datatables-options input").attr("disabled","disabled")}});c("#table_options_use_tablesorter").change(function(){if(c(this).attr("checked")){c(".wp-table-reloaded-datatables-options input").removeAttr("disabled");if(!WP_Table_Reloaded_Admin.option_tabletools_active){c("#table_options_datatables_tabletools").attr("disabled","disabled")}c("#table_options_datatables_paginate").change()}else{c(".wp-table-reloaded-datatables-options input").attr("disabled","disabled")}});c("#table_options_datatables_paginate").change(function(){if(c(this).attr("checked")){c("#table_options_datatables_paginate_entries").removeAttr("disabled")}else{c("#table_options_datatables_paginate_entries").attr("disabled","disabled")}})}else{if(WP_Table_Reloaded_Admin.option_tablesorter_enabled){c("#table_options_first_row_th").change(function(){if(c(this).attr("checked")){c("#table_options_use_tablesorter").removeAttr("disabled")}else{c("#table_options_use_tablesorter").attr("disabled","disabled")}})}}c("#table_options_print_name, #table_options_print_description").change(function(){if(c(this).attr("checked")){c("#"+this.id+"_position").removeAttr("disabled")}else{c("#"+this.id+"_position").attr("disabled","disabled")}});c("#options_uninstall_upon_deactivation").click(function(){if(c(this).attr("checked")){return confirm(WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation)}});function b(h){c(this).val(c(this).val()+h.data.html);c("#table_contents").undelegate("textarea","click",b);a()}c("#a-insert-link").click(function(){var i=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL+":","http://");if(i){var h=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText+":",WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText);if(h){var k="";if(WP_Table_Reloaded_Admin.option_add_target_blank_to_links){k=' target="_blank"'}var j='<a href="'+i+'"'+k+">"+h+"</a>";j=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain,j);if(j){c("#table_contents").delegate("textarea","click",{html:j},b)}}}return false});function f(){edCanvas=this;c("#table_contents").undelegate("textarea","click",f);var h=c("#a-insert-image");tb_show(h.attr("title"),h.attr("href"),false);tb_my_position();c(this).blur();a()}c("#a-insert-image").click(function(){if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationImageInsertThickbox)){c("#table_contents").delegate("textarea","click",f)}return false});c("#insert_custom_field_name").keyup(function(){c(this).val(c(this).val().toLowerCase().replace(/[^a-z0-9_-]/g,""))});c(".focus-blur-change").focus(function(){if(c(this).attr("title")==c(this).val()){c(this).val("")}}).blur(function(){if(""==c(this).val()){c(this).val(c(this).attr("title"))}});c("#table_custom_fields").delegate("textarea","focus",function(){c("#table_custom_fields .focus").removeClass("focus");c(this).addClass("focus")});c("input.bulk_copy_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkCopyTablesLink)});c("input.bulk_delete_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink)});c("input.bulk_wp_table_import_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink)});c("a.copy_table_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_CopyTableLink)});c("#wp-table-reloaded-list a.delete_table_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_DeleteTableLink)});c("#button-delete-rows").click(function(){var i=c('#table_contents tr:not(".table-foot") :checkbox').length-1;var h=c('#table_contents tr:not(".table-foot") :checked').length;if(h==0){alert(WP_Table_Reloaded_Admin.str_DeleteRowsFailedNoSelection);return false}else{if(i==h){alert(WP_Table_Reloaded_Admin.str_DeleteRowsFailedNotAll);return false}else{return confirm(WP_Table_Reloaded_Admin.str_DeleteRowsConfirm)}}});c("#button-delete-columns").click(function(){var h=c("#table_contents .table-foot :checkbox").length;var i=c("#table_contents .table-foot :checked").length;if(i==0){alert(WP_Table_Reloaded_Admin.str_DeleteColsFailedNoSelection);return false}else{if(h==i){alert(WP_Table_Reloaded_Admin.str_DeleteColsFailedNotAll);return false}else{return confirm(WP_Table_Reloaded_Admin.str_DeleteColsConfirm)}}});c("a.import_wptable_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_ImportwpTableLink)});c("#import_wp_table_reloaded_dump_file").click(function(){return confirm(WP_Table_Reloaded_Admin.str_ImportDumpFile)});c("#uninstall_plugin_link").click(function(){if(confirm(WP_Table_Reloaded_Admin.str_UninstallPluginLink_1)){return confirm(WP_Table_Reloaded_Admin.str_UninstallPluginLink_2)}else{return false}});c("a.cf_shortcode_link").click(function(){var h=prompt(WP_Table_Reloaded_Admin.str_CFShortcodeMessage,c(this).attr("title"));return false});c("a.table_shortcode_link").click(function(){var h=prompt(WP_Table_Reloaded_Admin.str_TableShortcodeMessage,c(this).attr("title"));return false});c(".postbox h3, .postbox .handlediv").click(function(){c(c(this).parent().get(0)).toggleClass("closed")});function a(){if(!WP_Table_Reloaded_Admin.option_show_exit_warning){return}window.onbeforeunload=function(){return WP_Table_Reloaded_Admin.str_saveAlert};c("#wp_table_reloaded_edit_table").undelegate("#table_name, textarea, .wp-table-reloaded-options input, .wp-table-reloaded-options select","change",a)}if(WP_Table_Reloaded_Admin.option_show_exit_warning){c("#wp_table_reloaded_edit_table").delegate("#table_name, textarea, .wp-table-reloaded-options input, .wp-table-reloaded-options select","change",a);c("#wp_table_reloaded_edit_table").find('input[name="submit[update]"], input[name="submit[save_back]"]').click(function(){window.onbeforeunload=null})}c("#wp_table_reloaded_edit_table").find('input[name="submit[update]"], input[name="submit[save_back]"]').click(function(){c("#wp_table_reloaded_edit_table .wp-table-reloaded-options").find("input, select").removeAttr("disabled")});tb_init("a.help-link");tb_init("a.preview-link");tb_my_position()});function send_to_editor(a){jQuery(edCanvas).val(jQuery(edCanvas).val()+a);tb_remove()}var tb_my_position;(function(a){tb_my_position=function(){var f=a("#TB_window"),e=a(window).width(),d=a(window).height(),c=(720<e)?720:e,b=0;if(a("body.admin-bar").length){b=28}if(f.size()){f.width(c-50).height(d-45-b);a("#TB_iframeContent").width(c-50).height(d-75-b);f.css({"margin-left":"-"+parseInt(((c-50)/2),10)+"px"});if(typeof document.body.style.maxWidth!="undefined"){f.css({top:20+b+"px","margin-top":"0"})}}return a("a.preview-link").each(function(){var g=a(this).attr("href");if(!g){return}g=g.replace(/&width=[0-9]+/g,"");g=g.replace(/&height=[0-9]+/g,"");a(this).attr("href",g+"&width="+(c-80)+"&height="+(d-85-b))})};a(window).resize(function(){tb_my_position()})})(jQuery);
admin/admin-style.css CHANGED
@@ -1 +1 @@
1
- #icon-wp-table-reloaded{background:transparent url('plugin-icon.png') no-repeat;}#wp-table-reloaded-list .table-id{font-size:12px;font-weight:bold;text-shadow:rgba(255,255,255,0.8) 0 1px 0;}#wp-table-reloaded-list .sorting,#wp-table-reloaded-list .sorting_asc,#wp-table-reloaded-list .sorting_desc{cursor:pointer;white-space:nowrap;}#wp-table-reloaded-list .sorting span{background-repeat:no-repeat;background-position:center;background-image:url('../img/bg.gif');margin-right:-5px;}#wp-table-reloaded-list .sorting_asc span{background-repeat:no-repeat;background-position:center;background-image:url('../img/asc.gif');}#wp-table-reloaded-list .sorting_desc span{background-repeat:no-repeat;background-position:center;background-image:url('../img/desc.gif');}#wp-table-reloaded-list .check-column{width:24px!important;padding:7px 7px 8px 0!important;text-align:right;}#wp-table-reloaded-list{margin-top:10px;margin-bottom:10px;}#table_contents .row-hidden td,#table_contents .row-hidden th,#table_contents .row-hidden textarea,#table_contents .column-hidden,#table_contents .column-hidden textarea{background-color:#FFE0E0;}#table_contents .focus{height:84px;}#options_custom_css{width:600px;height:100px;}#options_custom_css.focus{height:300px;}.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;line-height:2.2em;}.widefat td{vertical-align:baseline!important;}.postbox .inside p{line-height:1.2!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;font-family:sans-serif;font-weight:bold;font-size:12px;color:#555;}#table_contents textarea{min-width:180px;width:100%;}#table_contents .table-head td,#table_contents .table-foot td{padding:7px 7px 8px;line-height:1.3em;text-align:center;text-shadow:rgba(255,255,255,0.8) 0 1px 0;font-weight:bold;}#table_contents .check-column{font-weight:bold;padding:0px 5px!important;text-align:right;}#table_contents .table-foot .check-column{width: auto!important;}.no-wrap{white-space:nowrap;}.hide_link,.expand_link{position:absolute;right:10px;font-weight:normal;cursor:pointer;padding:0!important;}#uninstall_plugin_link{color:#BC0B0B;}.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;}#TB_ajaxContent .wp-table-reloaded{border-collapse:separate;border-spacing:1px;background-color:#CDCDCD;margin:10px 0 15px 0;font-size:8pt;width:100%;text-align:left;}#TB_ajaxContent .wp-table-reloaded th{background-color:#E6EEEE;border:1px solid #FFF;padding:4px;}#TB_ajaxContent .wp-table-reloaded td{color:#3D3D3D;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;}#TB_ajaxContent .wp-table-reloaded .row-hover tr:hover td{background-color:#D0D0D6;}.dataTables_wrapper{clear:both;position:relative;zoom:1;}.dataTables_processing{position:absolute;top:0;left:50%;width:250px;margin-left:-125px;border:1px solid #ddd;text-align:center;color:#999;font-size:11px;padding:2px 0;}.dataTables_length{width:50%;float:left;}.dataTables_filter{width:45%;float:right;text-align:right;}.dataTables_info{width:60%;float:left;}.dataTables_paginate{width:44px;* width:50px;float:right;text-align:right;}.paging_full_numbers{width:400px;height:22px;line-height:22px;}.paging_full_numbers span.paginate_button,.paging_full_numbers span.paginate_active{border:1px solid #aaa;-webkit-border-radius:5px;-moz-border-radius:5px;padding:2px 5px;margin:0 3px;cursor:pointer;*cursor:hand;}.paging_full_numbers span.paginate_button{background-color:#ddd;}.paging_full_numbers span.paginate_button:hover{background-color:#ccc;}.paging_full_numbers span.paginate_active{background-color:#99B3FF;}
1
+ #icon-wp-table-reloaded{background:transparent url('plugin-icon.png') no-repeat;}#wp-table-reloaded-list .table-id{font-size:12px;font-weight:bold;text-shadow:rgba(255,255,255,0.8) 0 1px 0;}#wp-table-reloaded-list .sorting,#wp-table-reloaded-list .sorting_asc,#wp-table-reloaded-list .sorting_desc{cursor:pointer;white-space:nowrap;}#wp-table-reloaded-list .sorting span{background-repeat:no-repeat;background-position:center;background-image:url('../img/bg.gif');margin-right:-5px;}#wp-table-reloaded-list .sorting_asc span{background-repeat:no-repeat;background-position:center;background-image:url('../img/asc.gif');}#wp-table-reloaded-list .sorting_desc span{background-repeat:no-repeat;background-position:center;background-image:url('../img/desc.gif');}#wp-table-reloaded-list .check-column{width:24px!important;padding:7px 7px 8px 0!important;text-align:right;}#wp-table-reloaded-list{margin-top:10px;margin-bottom:10px;}#table_contents .row-hidden td,#table_contents .row-hidden th,#table_contents .row-hidden textarea,#table_contents .column-hidden,#table_contents .column-hidden textarea{background-color:#FFE0E0;}#table_contents .focus textarea{min-height:84px;}#table_custom_fields .focus{min-height:54px;}#options_custom_css{width:600px;height:100px;}#options_custom_css.focus{height:300px;}.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;line-height:2.2em;}.widefat td{vertical-align:baseline!important;}.postbox .inside p{line-height:1.2!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;font-family:sans-serif;font-weight:bold;font-size:12px;color:#555;}#table_contents textarea{min-width:180px;min-height:24px;width:100%;height:100%;}#table_contents .table-head td,#table_contents .table-foot td{padding:7px 7px 8px;line-height:1.3em;text-align:center;text-shadow:rgba(255,255,255,0.8) 0 1px 0;font-weight:bold;}#table_contents .check-column{font-weight:bold;padding:0px 5px!important;text-align:right;}#table_contents .table-foot .check-column{width: auto!important;}.no-wrap{white-space:nowrap;}.hide_link,.expand_link{position:absolute;right:10px;font-weight:normal;cursor:pointer;padding:0!important;}#uninstall_plugin_link{color:#BC0B0B;}.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;}#TB_ajaxContent .wp-table-reloaded{border-collapse:separate;border-spacing:1px;background-color:#CDCDCD;margin:10px 0 15px 0;font-size:8pt;width:100%;text-align:left;}#TB_ajaxContent .wp-table-reloaded th{background-color:#E6EEEE;border:1px solid #FFF;padding:4px;}#TB_ajaxContent .wp-table-reloaded td{color:#3D3D3D;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;}#TB_ajaxContent .wp-table-reloaded .row-hover tr:hover td{background-color:#D0D0D6;}.dataTables_wrapper{clear:both;position:relative;zoom:1;}.dataTables_processing{position:absolute;top:0;left:50%;width:250px;margin-left:-125px;border:1px solid #ddd;text-align:center;color:#999;font-size:11px;padding:2px 0;}.dataTables_length{width:50%;float:left;}.dataTables_filter{width:45%;float:right;text-align:right;}.dataTables_info{width:60%;float:left;}.dataTables_paginate{width:44px;* width:50px;float:right;text-align:right;}.paging_full_numbers{width:400px;height:22px;line-height:22px;}.paging_full_numbers span.paginate_button,.paging_full_numbers span.paginate_active{border:1px solid #aaa;-webkit-border-radius:5px;-moz-border-radius:5px;padding:2px 5px;margin:0 3px;cursor:pointer;*cursor:hand;}.paging_full_numbers span.paginate_button{background-color:#ddd;}.paging_full_numbers span.paginate_button:hover{background-color:#ccc;}.paging_full_numbers span.paginate_active{background-color:#99B3FF;}
admin/admin-style.dev.css CHANGED
@@ -51,8 +51,12 @@
51
  background-color:#FFE0E0;
52
  }
53
 
54
- #table_contents .focus {
55
- height:84px;
 
 
 
 
56
  }
57
 
58
  #options_custom_css {
@@ -136,7 +140,9 @@
136
 
137
  #table_contents textarea {
138
  min-width:180px;
 
139
  width:100%;
 
140
  }
141
 
142
  #table_contents .table-head td, #table_contents .table-foot td {
51
  background-color:#FFE0E0;
52
  }
53
 
54
+ #table_contents .focus textarea {
55
+ min-height:84px;
56
+ }
57
+
58
+ #table_custom_fields .focus {
59
+ min-height:54px;
60
  }
61
 
62
  #options_custom_css {
140
 
141
  #table_contents textarea {
142
  min-width:180px;
143
+ min-height:24px;
144
  width:100%;
145
+ height:100%;
146
  }
147
 
148
  #table_contents .table-head td, #table_contents .table-foot td {
classes/export.class.php CHANGED
@@ -7,14 +7,14 @@
7
  * @author Tobias B&auml;thge
8
  * @since 0.9.2
9
  */
10
-
11
  // should be included by WP_Table_Reloaded_Controller_Admin!
12
  class WP_Table_Reloaded_Export {
13
 
14
  // ###################################################################################################################
15
  var $export_formats = array();
16
  var $delimiters = array();
17
-
18
  var $export_format = '';
19
  var $delimiter = ';';
20
  var $table_to_export = array();
@@ -41,12 +41,13 @@ class WP_Table_Reloaded_Export {
41
  // ###################################################################################################################
42
  function export_table() {
43
  $output = '';
44
-
45
  $data = $this->table_to_export['data'];
46
-
 
47
  $rows = count( $data );
48
  $cols = (0 < $rows) ? count( $data[0] ) : 0;
49
-
50
  switch( $this->export_format ) {
51
  case 'csv':
52
  if ( 0 < $rows && 0 < $cols) {
@@ -88,7 +89,6 @@ class WP_Table_Reloaded_Export {
88
 
89
  // ###################################################################################################################
90
  function xml_wrap_and_escape( $string ) {
91
- $string = stripslashes( $string );
92
  if ( $string != htmlspecialchars( $string ) )
93
  $string = "<![CDATA[{$string}]]>";
94
  return "\t\t<col>" . $string . "</col>\n";
@@ -96,7 +96,6 @@ class WP_Table_Reloaded_Export {
96
 
97
  // ###################################################################################################################
98
  function html_wrap_and_escape( $string ) {
99
- $string = stripslashes( $string );
100
  return "\t\t<td>" . $string . "</td>\n";
101
  }
102
 
7
  * @author Tobias B&auml;thge
8
  * @since 0.9.2
9
  */
10
+
11
  // should be included by WP_Table_Reloaded_Controller_Admin!
12
  class WP_Table_Reloaded_Export {
13
 
14
  // ###################################################################################################################
15
  var $export_formats = array();
16
  var $delimiters = array();
17
+
18
  var $export_format = '';
19
  var $delimiter = ';';
20
  var $table_to_export = array();
41
  // ###################################################################################################################
42
  function export_table() {
43
  $output = '';
44
+
45
  $data = $this->table_to_export['data'];
46
+ $data = stripslashes_deep( $data );
47
+
48
  $rows = count( $data );
49
  $cols = (0 < $rows) ? count( $data[0] ) : 0;
50
+
51
  switch( $this->export_format ) {
52
  case 'csv':
53
  if ( 0 < $rows && 0 < $cols) {
89
 
90
  // ###################################################################################################################
91
  function xml_wrap_and_escape( $string ) {
 
92
  if ( $string != htmlspecialchars( $string ) )
93
  $string = "<![CDATA[{$string}]]>";
94
  return "\t\t<col>" . $string . "</col>\n";
96
 
97
  // ###################################################################################################################
98
  function html_wrap_and_escape( $string ) {
 
99
  return "\t\t<td>" . $string . "</td>\n";
100
  }
101
 
classes/helper.class.php CHANGED
@@ -37,11 +37,11 @@ class WP_Table_Reloaded_Helper {
37
  }
38
  // ###################################################################################################################
39
  function get_contextual_help_string() {
40
- $help = sprintf( __( 'More information about WP-Table Reloaded can be found on the <a href="%s">plugin\'s website</a> or on its page in the <a href="%s">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/', 'http://wordpress.org/extend/plugins/wp-table-reloaded/' );
41
  $help .= ' ' . sprintf( __( 'For technical information, see the <a href="%s">documentation</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/documentation/' );
42
  $help .= '<br/>' . sprintf( __( '<a href="%s">Support</a> is provided through the <a href="%s">WordPress Support Forums</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/support/', 'http://www.wordpress.org/support/' );
43
  $help .= ' ' . sprintf( __( 'Before asking for support, please carefully read the <a href="%s">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/faq/' );
44
- $help .= '<br/>' . sprintf( __( 'If you like the plugin, <a href="%s"><strong>a donation</strong></a> is recommended.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/donate/' );
45
  return $help;
46
  }
47
 
37
  }
38
  // ###################################################################################################################
39
  function get_contextual_help_string() {
40
+ $help = '<p>' . sprintf( __( 'More information about WP-Table Reloaded can be found on the <a href="%s">plugin\'s website</a> or on its page in the <a href="%s">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/', 'http://wordpress.org/extend/plugins/wp-table-reloaded/' );
41
  $help .= ' ' . sprintf( __( 'For technical information, see the <a href="%s">documentation</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/documentation/' );
42
  $help .= '<br/>' . sprintf( __( '<a href="%s">Support</a> is provided through the <a href="%s">WordPress Support Forums</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/support/', 'http://www.wordpress.org/support/' );
43
  $help .= ' ' . sprintf( __( 'Before asking for support, please carefully read the <a href="%s">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/faq/' );
44
+ $help .= '<br/>' . sprintf( __( 'If you like the plugin, <a href="%s"><strong>a donation</strong></a> is recommended.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/donate/' ) . '</p>';
45
  return $help;
46
  }
47
 
classes/render.class.php CHANGED
@@ -136,11 +136,20 @@ class WP_Table_Reloaded_Render {
136
 
137
  $tbody_class = ( $this->output_options['row_hover'] ) ? ' class="row-hover"' : '';
138
 
139
- $caption = '';
140
- if ( !empty( $this->output_options['edit_table_url'] ) ) {
141
- $edit_table_link = "<a href=\"{$this->output_options['edit_table_url']}\" title=\"" . __( 'Edit', 'default' ) . "\">" . __( 'Edit', 'default' ) . "</a>";
142
- $caption = "<caption style=\"caption-side: bottom; text-align: left; border:none; background: none;\">{$edit_table_link}</caption>\n";
143
- }
 
 
 
 
 
 
 
 
 
144
 
145
  $colgroup = ( !empty( $colgroup ) ) ? "<colgroup>\n{$colgroup}</colgroup>\n" : '';
146
  $thead = ( !empty( $thead ) ) ? "<thead>\n{$thead}</thead>\n" : '';
136
 
137
  $tbody_class = ( $this->output_options['row_hover'] ) ? ' class="row-hover"' : '';
138
 
139
+ // <caption> tag
140
+ $caption = apply_filters( 'wp_table_reloaded_table_caption_arg', '', $table );
141
+ $caption_style = $caption_class = '';
142
+ if ( ! empty( $caption ) )
143
+ $caption_class = "wp-table-reloaded-table-caption wp-table-reloaded-table-caption-id-{$table['id']}";
144
+ if ( ! empty( $this->output_options['edit_table_url'] ) ) {
145
+ if ( ! empty( $caption ) )
146
+ $caption .= '<br/>';
147
+ else
148
+ $caption_style = ' style="caption-side:bottom;text-align:left;border:none;background:none;"';
149
+ $caption .= "<a href=\"{$this->output_options['edit_table_url']}\" title=\"" . __( 'Edit', 'default' ) . "\">" . __( 'Edit', 'default' ) . "</a>";
150
+ }
151
+ if ( ! empty( $caption ) )
152
+ $caption = "<caption{$caption_class}{$caption_style}>\n{$caption}</caption>\n";
153
 
154
  $colgroup = ( !empty( $colgroup ) ) ? "<colgroup>\n{$colgroup}</colgroup>\n" : '';
155
  $thead = ( !empty( $thead ) ) ? "<thead>\n{$thead}</thead>\n" : '';
controllers/controller-admin.php CHANGED
@@ -76,7 +76,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
76
  'update_message' => array(),
77
  'last_id' => 0
78
  );
79
-
80
  /**
81
  * Default list of tables (empty, because there are no tables right after installation)
82
  * @var array
@@ -94,7 +94,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
94
  * @var object
95
  */
96
  var $export_instance;
97
-
98
  /**
99
  * Instance of the WP_Table_Reloaded_Import class
100
  * @var object
@@ -194,7 +194,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
194
  );
195
  $min_capability = isset( $capabilities[ $user_group ] ) ? $capabilities[ $user_group ] : 'manage_options';
196
  $min_capability = apply_filters( 'wp_table_reloaded_min_needed_capability', $min_capability ); // plugins may filter/change this though
197
-
198
  $display_name = 'WP-Table Reloaded'; // the name that is displayed in the admin menu on the left
199
  $display_name = apply_filters( 'wp_table_reloaded_plugin_display_name', $display_name ); // can be filtered to something shorter maybe
200
 
@@ -243,7 +243,10 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
243
  $this->add_manage_page_css(); // needs to be added to the header
244
 
245
  // done after determining the action, because needs action parameter to load correct help string
246
- add_contextual_help( $this->hook, $this->helper->get_contextual_help_string() );
 
 
 
247
  }
248
 
249
  /**
@@ -254,6 +257,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
254
  $this->available_plugin_languages = array(
255
  'ar' => __( 'Arabic', WP_TABLE_RELOADED_TEXTDOMAIN ),
256
  'be_BY' => __( 'Belarusian', WP_TABLE_RELOADED_TEXTDOMAIN ),
 
257
  'cs_CZ' => __( 'Czech', WP_TABLE_RELOADED_TEXTDOMAIN ),
258
  'de_DE' => __( 'German', WP_TABLE_RELOADED_TEXTDOMAIN ),
259
  'en_US' => __( 'English', WP_TABLE_RELOADED_TEXTDOMAIN ),
@@ -262,6 +266,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
262
  'fr_FR' => __( 'French', WP_TABLE_RELOADED_TEXTDOMAIN ),
263
  'he_IL' => __( 'Hebrew', WP_TABLE_RELOADED_TEXTDOMAIN ),
264
  'hi_IN' => __( 'Hindi', WP_TABLE_RELOADED_TEXTDOMAIN ),
 
265
  'id_ID' => __( 'Indonesian', WP_TABLE_RELOADED_TEXTDOMAIN ),
266
  'it_IT' => __( 'Italian', WP_TABLE_RELOADED_TEXTDOMAIN ),
267
  'ja' => __( 'Japanese', WP_TABLE_RELOADED_TEXTDOMAIN ),
@@ -285,12 +290,12 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
285
  $overwrite = apply_filters( 'wp_table_reloaded_action_pre_' . $this->action, false );
286
  if ( $overwrite )
287
  return;
288
-
289
  // call appropriate action, $this->action is populated in load_manage_page
290
  if ( is_callable( array( &$this, 'do_action_' . $this->action ) ) )
291
  call_user_func( array( &$this, 'do_action_' . $this->action ) );
292
  }
293
-
294
  // ###################################################################################################################
295
  // ########################################## ######################################################
296
  // ########################################## ACTIONS ######################################################
@@ -327,7 +332,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
327
 
328
  $this->load_view( 'list' );
329
  }
330
-
331
  /**
332
  * "Add new Table" action handler
333
  */
@@ -363,10 +368,10 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
363
  function do_action_edit() {
364
  if ( isset( $_POST['submit'] ) && isset( $_POST['table'] ) ) {
365
  check_admin_referer( $this->get_nonce( 'edit' ) );
366
-
367
  $subactions = array_keys( $_POST['submit'] );
368
  $subaction = $subactions[0];
369
-
370
  switch( $subaction ) {
371
  case 'update':
372
  case 'save_back':
@@ -607,7 +612,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
607
  array_splice( $table['visibility']['rows'], $row_id, 0, false );
608
  $row_change++;
609
  }
610
-
611
  $this->save_table( $table );
612
  $message = _n( 'Row inserted successfully.', 'Rows inserted successfully.', count( $insert_rows ), WP_TABLE_RELOADED_TEXTDOMAIN );
613
  break;
@@ -753,14 +758,14 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
753
  $this->import_instance->import_table();
754
  $imported_table = $this->import_instance->imported_table;
755
  $table = array_merge( $this->default_table, $imported_table );
756
-
757
  $rows = count( $table['data'] );
758
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
759
  $rows = ( 0 < $rows ) ? $rows : 1;
760
  $cols = ( 0 < $cols ) ? $cols : 1;
761
  $table['visibility']['rows'] = array_fill( 0, $rows, false );
762
  $table['visibility']['columns'] = array_fill( 0, $cols, false );
763
-
764
  $table['id'] = $this->get_new_table_id();
765
  $this->save_table( $table );
766
  }
@@ -902,7 +907,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
902
  $this->load_view( 'import' );
903
  return;
904
  }
905
-
906
  // do import with the config set above
907
  $this->import_instance->import_format = $_POST['import_format'];
908
  $this->import_instance->import_table();
@@ -962,14 +967,14 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
962
  $this->load_view( 'edit', compact( 'table_id' ) );
963
  } elseif ( isset( $_POST['import_wp_table_reloaded_dump_file'] ) ) {
964
  check_admin_referer( $this->get_nonce( 'import_dump' ), $this->get_nonce( 'import_dump' ) );
965
-
966
  // check if user is admin
967
  if ( !current_user_can( 'manage_options' ) ) {
968
  $this->helper->print_header_message( __( 'You do not have sufficient rights to perform this action.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
969
  $this->load_view( 'options' );
970
  return;
971
  }
972
-
973
  // check if file was uploaded
974
  if ( empty( $_FILES['dump_file']['tmp_name'] ) ) {
975
  $this->helper->print_header_message( __( 'You did not upload a WP-Table Reloaded dump file.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
@@ -1025,7 +1030,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1025
  check_admin_referer( $this->get_nonce( 'export' ) );
1026
 
1027
  $table_to_export = $this->load_table( $_POST['table_id'] );
1028
-
1029
  $this->export_instance->table_to_export = $table_to_export;
1030
  $this->export_instance->export_format = $_POST['export_format'];
1031
  $this->export_instance->delimiter = $_POST['delimiter'];
@@ -1048,7 +1053,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1048
  $this->load_view( 'export', compact( 'table_id' ) );
1049
  }
1050
  }
1051
-
1052
  /**
1053
  * "Export" action handler, for Dump Files, stores all plugin data, like tables, options, etc. in a single array,
1054
  * serializes it and offers the resulting string for download in a Dump File
@@ -1064,7 +1069,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1064
  $export['tables'][ $table_id ] = $dump_table;
1065
  }
1066
  $export['options'] = $this->options;
1067
-
1068
  $export_dump = serialize( $export );
1069
 
1070
  $filename = 'wp-table-reloaded-export-' . date( 'Y-m-d' ) . '.dump';
@@ -1089,7 +1094,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1089
  }
1090
 
1091
  $new_options = $_POST['options'];
1092
-
1093
  // checkboxes: option value is defined by whether option isset (e.g. was checked) or not
1094
  $this->options['show_exit_warning'] = isset( $new_options['show_exit_warning'] );
1095
  $this->options['growing_textareas'] = isset( $new_options['growing_textareas'] );
@@ -1098,7 +1103,9 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1098
  $this->options['use_default_css'] = isset( $new_options['use_default_css'] );
1099
  $this->options['use_custom_css'] = isset( $new_options['use_custom_css'] );
1100
  $this->options['add_target_blank_to_links'] = isset( $new_options['add_target_blank_to_links'] );
1101
- $this->options['tablesorter_script'] = $new_options['tablesorter_script'];
 
 
1102
 
1103
  // only save these settings, if user is administrator, as they are admin options
1104
  if ( current_user_can( 'manage_options' ) ) {
@@ -1149,7 +1156,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1149
  }
1150
  $this->load_view( 'options' );
1151
  }
1152
-
1153
  /**
1154
  * "Plugin Uninstall" action handler, checks if an admin is performing it, sets uninstall to true and deactivates the plugin
1155
  * (which executes the plugin_deactivation_hook() which then deletes all options from the DB
@@ -1174,7 +1181,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1174
 
1175
  $this->load_view( 'uninstall', array(), false );
1176
  }
1177
-
1178
  /**
1179
  * "About" action handler, only calls the view
1180
  */
@@ -1193,7 +1200,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1193
 
1194
  exit; // necessary to stop page building here!
1195
  }
1196
-
1197
  /**
1198
  * "AJAX Table Preview" action handler
1199
  */
@@ -1224,7 +1231,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1224
  $this->update_options();
1225
  $this->do_action_list();
1226
  }
1227
-
1228
  /**
1229
  * "Hide Donate Message" action handler
1230
  */
@@ -1239,10 +1246,10 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1239
  } else {
1240
  $this->helper->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 &quot;%s&quot; button on the <a href="%s">WP-Table Reloaded website</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), __( 'Donate', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/' ) );
1241
  }
1242
-
1243
  $this->do_action_list();
1244
  }
1245
-
1246
  // ###################################################################################################################
1247
  // ########################################## ####################################################
1248
  // ########################################## Page Generation ####################################################
@@ -1334,7 +1341,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1334
  <br class="clear" />
1335
  <?php
1336
  }
1337
-
1338
  /**
1339
  * Decide whether a donate message can be shown on the "List Tables" screen, depending on passed days since installation and whether it was shown before
1340
  *
@@ -1378,7 +1385,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1378
  $options_updated = apply_filters( 'wp_table_reloaded_update_options', false, $this->options );
1379
  if ( $options_updated )
1380
  return;
1381
-
1382
  update_option( $this->optionname['options'], $this->options );
1383
  }
1384
 
@@ -1387,12 +1394,12 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1387
  */
1388
  function update_tables() {
1389
  ksort( $this->tables, SORT_NUMERIC ); // sort for table IDs, as one with a small ID might have been appended
1390
-
1391
  // possibility to overwrite tables updating (i.e. to update them in own DB table)
1392
  $tables_updated = apply_filters( 'wp_table_reloaded_update_tables', false, $this->tables );
1393
  if ( $tables_updated )
1394
  return;
1395
-
1396
  update_option( $this->optionname['tables'], $this->tables );
1397
  }
1398
 
@@ -1419,7 +1426,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1419
  // delete the transient that caches the table output
1420
  $cache_name = "wp_table_reloaded_table_output_{$table['id']}";
1421
  delete_transient( $cache_name );
1422
-
1423
  $this->tables[ $table['id'] ] = ( isset( $this->tables[ $table['id'] ] ) ) ? $this->tables[ $table['id'] ] : $this->optionname['table'] . '_' . $table['id'];
1424
  update_option( $this->tables[ $table['id'] ], $table );
1425
  $this->update_tables();
@@ -1447,7 +1454,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1447
  // ######################################### URL Support ####################################################
1448
  // ######################################### ####################################################
1449
  // ###################################################################################################################
1450
-
1451
  /**
1452
  * Generate the complete nonce string, from the nonce base, the action and an item, e.g. wp-table-reloaded-nonce_delete_table
1453
  *
@@ -1480,7 +1487,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1480
  $action_url = esc_url( $action_url );
1481
  return $action_url;
1482
  }
1483
-
1484
  // ###################################################################################################################
1485
  // ####################################### ###################################################
1486
  // ####################################### Plugin Management ###################################################
@@ -1584,7 +1591,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1584
  $new_options['installed_version'] = WP_TABLE_RELOADED_PLUGIN_VERSION;
1585
  $new_options['update_message'] = array();
1586
  $new_options['show_welcome_message'] = 2; // 2 = update message
1587
-
1588
  // 4. step: save the new options
1589
  $this->options = $new_options;
1590
  $this->update_options();
@@ -1593,15 +1600,15 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1593
  $this->tables = $this->load_tables();
1594
  foreach ( $this->tables as $id => $tableoptionname ) {
1595
  $table = $this->load_table( $id );
1596
-
1597
  $temp_table = $this->default_table;
1598
-
1599
  // if table doesn't have visibility information, add them
1600
  $rows = count( $table['data'] );
1601
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
1602
  $temp_table['visibility']['rows'] = array_fill( 0, $rows, false );
1603
  $temp_table['visibility']['columns'] = array_fill( 0, $cols, false );
1604
-
1605
  foreach ( $temp_table as $key => $value )
1606
  $new_table[ $key ] = ( isset( $table[ $key ] ) ) ? $table[ $key ] : $temp_table[ $key ] ;
1607
 
@@ -1631,7 +1638,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1631
  $has_access = apply_filters( 'wp_table_reloaded_user_access_' . $screen, $has_access, $this->options['user_access_plugin_options'] );
1632
  return $has_access;
1633
  }
1634
-
1635
  /**
1636
  * Get the plugin update message from the remote server, if there is an update available
1637
  *
@@ -1671,7 +1678,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1671
  function add_plugin_row_meta( $links, $file ) {
1672
  if ( WP_TABLE_RELOADED_BASENAME != $file )
1673
  return $links;
1674
-
1675
  $links[] = '<a href="' . $this->get_action_url() . '" title="' . __( 'WP-Table Reloaded Plugin Page', WP_TABLE_RELOADED_TEXTDOMAIN ) . '">' . __( 'Plugin Page', WP_TABLE_RELOADED_TEXTDOMAIN ) . '</a>';
1676
  $links[] = '<a href="http://tobias.baethge.com/go/wp-table-reloaded/faq/" title="' . __( 'Frequently Asked Questions', WP_TABLE_RELOADED_TEXTDOMAIN ) . '">' . __( 'FAQ', WP_TABLE_RELOADED_TEXTDOMAIN ) . '</a>';
1677
  $links[] = '<a href="http://tobias.baethge.com/go/wp-table-reloaded/support/" title="' . __( 'Support', WP_TABLE_RELOADED_TEXTDOMAIN ) . '">' . __( 'Support', WP_TABLE_RELOADED_TEXTDOMAIN ) . '</a>';
@@ -1690,7 +1697,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1690
  load_plugin_textdomain( WP_TABLE_RELOADED_TEXTDOMAIN, false, $language_directory );
1691
  remove_filter( 'locale', array( &$this, 'get_plugin_locale' ) );
1692
  }
1693
-
1694
  /**
1695
  * Retrieve the locale the plugin shall be shown in, applied as a filter in get_locale()
1696
  */
@@ -1701,7 +1708,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1701
  else
1702
  return $locale;
1703
  }
1704
-
1705
  $locale = ( !empty( $this->options['plugin_language'] ) && 'auto' != $this->options['plugin_language'] ) ? $this->options['plugin_language'] : $locale;
1706
  return $locale;
1707
  }
@@ -1776,7 +1783,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1776
  function add_editor_button() {
1777
  if ( 0 == count( $this->tables ) )
1778
  return;
1779
-
1780
  $this->init_language_support();
1781
  add_thickbox(); // we need thickbox to show the list
1782
 
@@ -1804,7 +1811,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1804
  add_filter( 'mce_external_plugins', array( &$this, 'add_tinymce_plugin' ) );
1805
  add_filter( 'mce_buttons', array( &$this, 'add_tinymce_button' ) );
1806
  }
1807
-
1808
  add_action( 'admin_print_footer_scripts', array( &$this, '_print_editor_button' ), 100 );
1809
  }
1810
 
@@ -1902,7 +1909,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1902
  .find('.sorting').append('&nbsp;<span>&nbsp;&nbsp;&nbsp;</span>');\n
1903
  DATATABLES;
1904
  }
1905
-
1906
  echo <<<JSSCRIPT
1907
  <script type="text/javascript">
1908
  /* <![CDATA[ */
76
  'update_message' => array(),
77
  'last_id' => 0
78
  );
79
+
80
  /**
81
  * Default list of tables (empty, because there are no tables right after installation)
82
  * @var array
94
  * @var object
95
  */
96
  var $export_instance;
97
+
98
  /**
99
  * Instance of the WP_Table_Reloaded_Import class
100
  * @var object
194
  );
195
  $min_capability = isset( $capabilities[ $user_group ] ) ? $capabilities[ $user_group ] : 'manage_options';
196
  $min_capability = apply_filters( 'wp_table_reloaded_min_needed_capability', $min_capability ); // plugins may filter/change this though
197
+
198
  $display_name = 'WP-Table Reloaded'; // the name that is displayed in the admin menu on the left
199
  $display_name = apply_filters( 'wp_table_reloaded_plugin_display_name', $display_name ); // can be filtered to something shorter maybe
200
 
243
  $this->add_manage_page_css(); // needs to be added to the header
244
 
245
  // done after determining the action, because needs action parameter to load correct help string
246
+ if ( version_compare( $GLOBALS['wp_version'] , '3.3', '>' ) )
247
+ WP_Screen::add_old_compat_help( convert_to_screen( $this->hook ), $this->helper->get_contextual_help_string() );
248
+ else
249
+ add_contextual_help( $this->hook, $this->helper->get_contextual_help_string() );
250
  }
251
 
252
  /**
257
  $this->available_plugin_languages = array(
258
  'ar' => __( 'Arabic', WP_TABLE_RELOADED_TEXTDOMAIN ),
259
  'be_BY' => __( 'Belarusian', WP_TABLE_RELOADED_TEXTDOMAIN ),
260
+ 'bg_BG' => __( 'Bulgarian', WP_TABLE_RELOADED_TEXTDOMAIN ),
261
  'cs_CZ' => __( 'Czech', WP_TABLE_RELOADED_TEXTDOMAIN ),
262
  'de_DE' => __( 'German', WP_TABLE_RELOADED_TEXTDOMAIN ),
263
  'en_US' => __( 'English', WP_TABLE_RELOADED_TEXTDOMAIN ),
266
  'fr_FR' => __( 'French', WP_TABLE_RELOADED_TEXTDOMAIN ),
267
  'he_IL' => __( 'Hebrew', WP_TABLE_RELOADED_TEXTDOMAIN ),
268
  'hi_IN' => __( 'Hindi', WP_TABLE_RELOADED_TEXTDOMAIN ),
269
+ 'hr' => __( 'Croatian', WP_TABLE_RELOADED_TEXTDOMAIN ),
270
  'id_ID' => __( 'Indonesian', WP_TABLE_RELOADED_TEXTDOMAIN ),
271
  'it_IT' => __( 'Italian', WP_TABLE_RELOADED_TEXTDOMAIN ),
272
  'ja' => __( 'Japanese', WP_TABLE_RELOADED_TEXTDOMAIN ),
290
  $overwrite = apply_filters( 'wp_table_reloaded_action_pre_' . $this->action, false );
291
  if ( $overwrite )
292
  return;
293
+
294
  // call appropriate action, $this->action is populated in load_manage_page
295
  if ( is_callable( array( &$this, 'do_action_' . $this->action ) ) )
296
  call_user_func( array( &$this, 'do_action_' . $this->action ) );
297
  }
298
+
299
  // ###################################################################################################################
300
  // ########################################## ######################################################
301
  // ########################################## ACTIONS ######################################################
332
 
333
  $this->load_view( 'list' );
334
  }
335
+
336
  /**
337
  * "Add new Table" action handler
338
  */
368
  function do_action_edit() {
369
  if ( isset( $_POST['submit'] ) && isset( $_POST['table'] ) ) {
370
  check_admin_referer( $this->get_nonce( 'edit' ) );
371
+
372
  $subactions = array_keys( $_POST['submit'] );
373
  $subaction = $subactions[0];
374
+
375
  switch( $subaction ) {
376
  case 'update':
377
  case 'save_back':
612
  array_splice( $table['visibility']['rows'], $row_id, 0, false );
613
  $row_change++;
614
  }
615
+
616
  $this->save_table( $table );
617
  $message = _n( 'Row inserted successfully.', 'Rows inserted successfully.', count( $insert_rows ), WP_TABLE_RELOADED_TEXTDOMAIN );
618
  break;
758
  $this->import_instance->import_table();
759
  $imported_table = $this->import_instance->imported_table;
760
  $table = array_merge( $this->default_table, $imported_table );
761
+
762
  $rows = count( $table['data'] );
763
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
764
  $rows = ( 0 < $rows ) ? $rows : 1;
765
  $cols = ( 0 < $cols ) ? $cols : 1;
766
  $table['visibility']['rows'] = array_fill( 0, $rows, false );
767
  $table['visibility']['columns'] = array_fill( 0, $cols, false );
768
+
769
  $table['id'] = $this->get_new_table_id();
770
  $this->save_table( $table );
771
  }
907
  $this->load_view( 'import' );
908
  return;
909
  }
910
+
911
  // do import with the config set above
912
  $this->import_instance->import_format = $_POST['import_format'];
913
  $this->import_instance->import_table();
967
  $this->load_view( 'edit', compact( 'table_id' ) );
968
  } elseif ( isset( $_POST['import_wp_table_reloaded_dump_file'] ) ) {
969
  check_admin_referer( $this->get_nonce( 'import_dump' ), $this->get_nonce( 'import_dump' ) );
970
+
971
  // check if user is admin
972
  if ( !current_user_can( 'manage_options' ) ) {
973
  $this->helper->print_header_message( __( 'You do not have sufficient rights to perform this action.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
974
  $this->load_view( 'options' );
975
  return;
976
  }
977
+
978
  // check if file was uploaded
979
  if ( empty( $_FILES['dump_file']['tmp_name'] ) ) {
980
  $this->helper->print_header_message( __( 'You did not upload a WP-Table Reloaded dump file.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
1030
  check_admin_referer( $this->get_nonce( 'export' ) );
1031
 
1032
  $table_to_export = $this->load_table( $_POST['table_id'] );
1033
+
1034
  $this->export_instance->table_to_export = $table_to_export;
1035
  $this->export_instance->export_format = $_POST['export_format'];
1036
  $this->export_instance->delimiter = $_POST['delimiter'];
1053
  $this->load_view( 'export', compact( 'table_id' ) );
1054
  }
1055
  }
1056
+
1057
  /**
1058
  * "Export" action handler, for Dump Files, stores all plugin data, like tables, options, etc. in a single array,
1059
  * serializes it and offers the resulting string for download in a Dump File
1069
  $export['tables'][ $table_id ] = $dump_table;
1070
  }
1071
  $export['options'] = $this->options;
1072
+
1073
  $export_dump = serialize( $export );
1074
 
1075
  $filename = 'wp-table-reloaded-export-' . date( 'Y-m-d' ) . '.dump';
1094
  }
1095
 
1096
  $new_options = $_POST['options'];
1097
+
1098
  // checkboxes: option value is defined by whether option isset (e.g. was checked) or not
1099
  $this->options['show_exit_warning'] = isset( $new_options['show_exit_warning'] );
1100
  $this->options['growing_textareas'] = isset( $new_options['growing_textareas'] );
1103
  $this->options['use_default_css'] = isset( $new_options['use_default_css'] );
1104
  $this->options['use_custom_css'] = isset( $new_options['use_custom_css'] );
1105
  $this->options['add_target_blank_to_links'] = isset( $new_options['add_target_blank_to_links'] );
1106
+ // drop down: only set when not disabled (by JavaScript)
1107
+ if ( isset( $new_options['tablesorter_script'] ) )
1108
+ $this->options['tablesorter_script'] = $new_options['tablesorter_script'];
1109
 
1110
  // only save these settings, if user is administrator, as they are admin options
1111
  if ( current_user_can( 'manage_options' ) ) {
1156
  }
1157
  $this->load_view( 'options' );
1158
  }
1159
+
1160
  /**
1161
  * "Plugin Uninstall" action handler, checks if an admin is performing it, sets uninstall to true and deactivates the plugin
1162
  * (which executes the plugin_deactivation_hook() which then deletes all options from the DB
1181
 
1182
  $this->load_view( 'uninstall', array(), false );
1183
  }
1184
+
1185
  /**
1186
  * "About" action handler, only calls the view
1187
  */
1200
 
1201
  exit; // necessary to stop page building here!
1202
  }
1203
+
1204
  /**
1205
  * "AJAX Table Preview" action handler
1206
  */
1231
  $this->update_options();
1232
  $this->do_action_list();
1233
  }
1234
+
1235
  /**
1236
  * "Hide Donate Message" action handler
1237
  */
1246
  } else {
1247
  $this->helper->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 &quot;%s&quot; button on the <a href="%s">WP-Table Reloaded website</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), __( 'Donate', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/' ) );
1248
  }
1249
+
1250
  $this->do_action_list();
1251
  }
1252
+
1253
  // ###################################################################################################################
1254
  // ########################################## ####################################################
1255
  // ########################################## Page Generation ####################################################
1341
  <br class="clear" />
1342
  <?php
1343
  }
1344
+
1345
  /**
1346
  * Decide whether a donate message can be shown on the "List Tables" screen, depending on passed days since installation and whether it was shown before
1347
  *
1385
  $options_updated = apply_filters( 'wp_table_reloaded_update_options', false, $this->options );
1386
  if ( $options_updated )
1387
  return;
1388
+
1389
  update_option( $this->optionname['options'], $this->options );
1390
  }
1391
 
1394
  */
1395
  function update_tables() {
1396
  ksort( $this->tables, SORT_NUMERIC ); // sort for table IDs, as one with a small ID might have been appended
1397
+
1398
  // possibility to overwrite tables updating (i.e. to update them in own DB table)
1399
  $tables_updated = apply_filters( 'wp_table_reloaded_update_tables', false, $this->tables );
1400
  if ( $tables_updated )
1401
  return;
1402
+
1403
  update_option( $this->optionname['tables'], $this->tables );
1404
  }
1405
 
1426
  // delete the transient that caches the table output
1427
  $cache_name = "wp_table_reloaded_table_output_{$table['id']}";
1428
  delete_transient( $cache_name );
1429
+
1430
  $this->tables[ $table['id'] ] = ( isset( $this->tables[ $table['id'] ] ) ) ? $this->tables[ $table['id'] ] : $this->optionname['table'] . '_' . $table['id'];
1431
  update_option( $this->tables[ $table['id'] ], $table );
1432
  $this->update_tables();
1454
  // ######################################### URL Support ####################################################
1455
  // ######################################### ####################################################
1456
  // ###################################################################################################################
1457
+
1458
  /**
1459
  * Generate the complete nonce string, from the nonce base, the action and an item, e.g. wp-table-reloaded-nonce_delete_table
1460
  *
1487
  $action_url = esc_url( $action_url );
1488
  return $action_url;
1489
  }
1490
+
1491
  // ###################################################################################################################
1492
  // ####################################### ###################################################
1493
  // ####################################### Plugin Management ###################################################
1591
  $new_options['installed_version'] = WP_TABLE_RELOADED_PLUGIN_VERSION;
1592
  $new_options['update_message'] = array();
1593
  $new_options['show_welcome_message'] = 2; // 2 = update message
1594
+
1595
  // 4. step: save the new options
1596
  $this->options = $new_options;
1597
  $this->update_options();
1600
  $this->tables = $this->load_tables();
1601
  foreach ( $this->tables as $id => $tableoptionname ) {
1602
  $table = $this->load_table( $id );
1603
+
1604
  $temp_table = $this->default_table;
1605
+
1606
  // if table doesn't have visibility information, add them
1607
  $rows = count( $table['data'] );
1608
  $cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
1609
  $temp_table['visibility']['rows'] = array_fill( 0, $rows, false );
1610
  $temp_table['visibility']['columns'] = array_fill( 0, $cols, false );
1611
+
1612
  foreach ( $temp_table as $key => $value )
1613
  $new_table[ $key ] = ( isset( $table[ $key ] ) ) ? $table[ $key ] : $temp_table[ $key ] ;
1614
 
1638
  $has_access = apply_filters( 'wp_table_reloaded_user_access_' . $screen, $has_access, $this->options['user_access_plugin_options'] );
1639
  return $has_access;
1640
  }
1641
+
1642
  /**
1643
  * Get the plugin update message from the remote server, if there is an update available
1644
  *
1678
  function add_plugin_row_meta( $links, $file ) {
1679
  if ( WP_TABLE_RELOADED_BASENAME != $file )
1680
  return $links;
1681
+
1682
  $links[] = '<a href="' . $this->get_action_url() . '" title="' . __( 'WP-Table Reloaded Plugin Page', WP_TABLE_RELOADED_TEXTDOMAIN ) . '">' . __( 'Plugin Page', WP_TABLE_RELOADED_TEXTDOMAIN ) . '</a>';
1683
  $links[] = '<a href="http://tobias.baethge.com/go/wp-table-reloaded/faq/" title="' . __( 'Frequently Asked Questions', WP_TABLE_RELOADED_TEXTDOMAIN ) . '">' . __( 'FAQ', WP_TABLE_RELOADED_TEXTDOMAIN ) . '</a>';
1684
  $links[] = '<a href="http://tobias.baethge.com/go/wp-table-reloaded/support/" title="' . __( 'Support', WP_TABLE_RELOADED_TEXTDOMAIN ) . '">' . __( 'Support', WP_TABLE_RELOADED_TEXTDOMAIN ) . '</a>';
1697
  load_plugin_textdomain( WP_TABLE_RELOADED_TEXTDOMAIN, false, $language_directory );
1698
  remove_filter( 'locale', array( &$this, 'get_plugin_locale' ) );
1699
  }
1700
+
1701
  /**
1702
  * Retrieve the locale the plugin shall be shown in, applied as a filter in get_locale()
1703
  */
1708
  else
1709
  return $locale;
1710
  }
1711
+
1712
  $locale = ( !empty( $this->options['plugin_language'] ) && 'auto' != $this->options['plugin_language'] ) ? $this->options['plugin_language'] : $locale;
1713
  return $locale;
1714
  }
1783
  function add_editor_button() {
1784
  if ( 0 == count( $this->tables ) )
1785
  return;
1786
+
1787
  $this->init_language_support();
1788
  add_thickbox(); // we need thickbox to show the list
1789
 
1811
  add_filter( 'mce_external_plugins', array( &$this, 'add_tinymce_plugin' ) );
1812
  add_filter( 'mce_buttons', array( &$this, 'add_tinymce_button' ) );
1813
  }
1814
+
1815
  add_action( 'admin_print_footer_scripts', array( &$this, '_print_editor_button' ), 100 );
1816
  }
1817
 
1909
  .find('.sorting').append('&nbsp;<span>&nbsp;&nbsp;&nbsp;</span>');\n
1910
  DATATABLES;
1911
  }
1912
+ $datatables = apply_filters( 'wp_table_reloaded_admin_datatables_js', $datatables );
1913
  echo <<<JSSCRIPT
1914
  <script type="text/javascript">
1915
  /* <![CDATA[ */
controllers/controller-frontend.php CHANGED
@@ -76,7 +76,7 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
76
 
77
  // extend WordPress Search to also find posts/pages that have a table with the one of the search terms in them
78
  if ( $this->options['enable_search'] )
79
- add_filter( 'posts_where', array( &$this, 'handle_posts_where_filter' ) );
80
 
81
  // if a JavaScript library is (globally) enabled, include respective files
82
  if ( $this->options['enable_tablesorter'] ) {
@@ -145,6 +145,8 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
145
  }
146
  }
147
 
 
 
148
  return $output;
149
  }
150
 
@@ -363,13 +365,13 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
363
  * saving all tables's IDs that have a search term and then expanding the WP query to search for posts or pages that have the
364
  * Shortcode for one of these tables in their content.
365
  *
366
- * @param string $where Current "WHERE" clause of the SQL statement used to get posts/pages from the WP database
367
  * @uses $wpdb
368
  * @return string Eventually extended SQL "WHERE" clause, to also find posts/pages with Shortcodes in them
369
  */
370
- function handle_posts_where_filter( $where ) {
371
  if ( !is_search() )
372
- return $where;
373
 
374
  global $wpdb;
375
 
@@ -432,15 +434,14 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
432
  $exact = get_query_var( 'exact' ); // if $_GET['exact'] is set, WordPress doesn't use % in SQL LIKE clauses
433
  $n = ( !empty( $exact ) ) ? '' : '%';
434
  foreach ( $query_result as $search_term => $tables ) {
435
- foreach ( $tables as $table_id ) {
436
- $old_or = "OR ({$wpdb->posts}.post_content LIKE '{$n}{$search_term}{$n}')";
437
- $shortcode = "[table id={$table_id} "; // only the beginning, as there might be more Shortcode atts coming, does not find [table id="<ID>" though, might need another loop? The space at the end is necessary to make sure that no table IDs with the same beginning are found.
438
- $new_or = $old_or. " OR ({$wpdb->posts}.post_content LIKE '%{$shortcode}%')";
439
- $where = str_replace( $old_or, $new_or, $where );
440
- }
441
  }
442
 
443
- return $where;
444
  }
445
 
446
  /**
76
 
77
  // extend WordPress Search to also find posts/pages that have a table with the one of the search terms in them
78
  if ( $this->options['enable_search'] )
79
+ add_filter( 'posts_search', array( &$this, 'handle_posts_search_filter' ) );
80
 
81
  // if a JavaScript library is (globally) enabled, include respective files
82
  if ( $this->options['enable_tablesorter'] ) {
145
  }
146
  }
147
 
148
+ $output = apply_filters( 'wp_table_reloaded_shortcode_table_info_output', $output, $atts );
149
+
150
  return $output;
151
  }
152
 
365
  * saving all tables's IDs that have a search term and then expanding the WP query to search for posts or pages that have the
366
  * Shortcode for one of these tables in their content.
367
  *
368
+ * @param string $search Current part of the "WHERE" clause of the SQL statement used to get posts/pages from the WP database that is related to searching
369
  * @uses $wpdb
370
  * @return string Eventually extended SQL "WHERE" clause, to also find posts/pages with Shortcodes in them
371
  */
372
+ function handle_posts_search_filter( $search_sql ) {
373
  if ( !is_search() )
374
+ return $search_sql;
375
 
376
  global $wpdb;
377
 
434
  $exact = get_query_var( 'exact' ); // if $_GET['exact'] is set, WordPress doesn't use % in SQL LIKE clauses
435
  $n = ( !empty( $exact ) ) ? '' : '%';
436
  foreach ( $query_result as $search_term => $tables ) {
437
+ $old_or = "OR ({$wpdb->posts}.post_content LIKE '{$n}{$search_term}{$n}')";
438
+ $table_ids = implode( '|', $tables );
439
+ $regexp = '\\\\[table id=(["\\\']?)(' . $table_ids . ')(["\\\' ])'; // ' needs to be single escaped, [ double escaped (with \\) in mySQL
440
+ $new_or = $old_or . " OR ({$wpdb->posts}.post_content REGEXP '{$regexp}')";
441
+ $search_sql = str_replace( $old_or, $new_or, $search_sql );
 
442
  }
443
 
444
+ return $search_sql;
445
  }
446
 
447
  /**
css/datatables.css CHANGED
@@ -19,8 +19,6 @@
19
  .dataTables_wrapper {
20
  position: relative;
21
  zoom: 1;
22
- min-height: 302px;
23
- _height: 302px;
24
  clear: both;
25
  }
26
 
19
  .dataTables_wrapper {
20
  position: relative;
21
  zoom: 1;
 
 
22
  clear: both;
23
  }
24
 
css/plugin.rtl.css CHANGED
@@ -7,4 +7,10 @@
7
  .wp-table-reloaded {
8
  direction: rtl;
9
  text-align: right;
 
 
 
 
 
 
10
  }
7
  .wp-table-reloaded {
8
  direction: rtl;
9
  text-align: right;
10
+ }
11
+
12
+ .wp-table-reloaded .sorting,
13
+ .wp-table-reloaded .sorting_asc,
14
+ .wp-table-reloaded .sorting_desc {
15
+ background-position: left!important;
16
  }
img/asc.gif CHANGED
Binary file
img/desc.gif CHANGED
Binary file
languages/datatables/lang-hr.txt ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sProcessing": "Pričekajte...",
3
+ "sLengthMenu": "Prikaži _MENU_ unose",
4
+ "sZeroRecords": "Nema nikakvih rezultata.",
5
+ "sInfo": "Prikazujem _TOTAL_ od (_START_-_END_) unosa",
6
+ "sInfoEmpty": "Prikazujem 0 do 0 od 0 unosa",
7
+ "sInfoFiltered": "(filtrirano od _MAX_ ukupnih unosa)",
8
+ "sInfoPostFix": "",
9
+ "sSearch": "Pretraga:",
10
+ "oPaginate": {
11
+ "sFirst": "Prvi",
12
+ "sPrevious": "Prijašnji",
13
+ "sNext": "Sljedeći",
14
+ "sLast": "Posljednji"
15
+ }
16
+ }
languages/wp-table-reloaded-bg_BG.mo ADDED
Binary file
languages/wp-table-reloaded-bg_BG.po ADDED
@@ -0,0 +1,2112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2011-09-16 17:55:21+00:00\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: shivangi <shivangi@outshinesolutions.com>\n"
8
+ "Language-Team: Ajoft <info@ajoft.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Bulgarian\n"
13
+ "X-Poedit-Country: BULGARIA\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "Plural-Forms: nplurals=3; plural=n>=2 && n<=4 ? 1 : n==1 ? 0 : 2;\n"
16
+
17
+ #: views/view-export.php:10
18
+ msgid "It is recommended to export and backup the data of important tables regularly."
19
+ msgstr "Препоръчително е да изнасят и архивиране на данни на важни таблици редовно."
20
+
21
+ #: views/view-export.php:10
22
+ msgid "Select the table, the desired export format and (for CSV only) a delimiter."
23
+ msgstr "Изберете таблицата, желания формат и износ (за CSV само) разделител."
24
+
25
+ #: views/view-export.php:10
26
+ msgid "You may choose to download the export file. Otherwise it will be shown on this page."
27
+ msgstr "Можете да изберете да свалите файла за износ. В противен случай той ще бъде показан на тази страница."
28
+
29
+ #: views/view-export.php:10
30
+ msgid "Be aware that only the table data, but no options or settings are exported."
31
+ msgstr "Трябва да знаете, че само на таблицата с данни, но не опции или настройки са изнесени."
32
+
33
+ #: views/view-export.php:10
34
+ msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
35
+ msgstr "За резервно копие на всички маси, включително техните настройки, което е едновременно използване на&quot;%s&quot; бутон в &quot;%s&quot;."
36
+
37
+ #: views/view-export.php:10
38
+ #: views/view-options.php:190
39
+ msgid "Create and Download Dump File"
40
+ msgstr "Създаване и изтегляне на файла Dump"
41
+
42
+ #: views/view-export.php:10
43
+ #: views/view-edit.php:350
44
+ #: views/view-edit.php:365
45
+ #: controllers/controller-admin.php:1266
46
+ #: controllers/controller-admin.php:1308
47
+ msgid "Plugin Options"
48
+ msgstr "Plug-in Options"
49
+
50
+ #: views/view-export.php:18
51
+ msgid "Select Table to Export"
52
+ msgstr "Изберете таблицата за експортиране"
53
+
54
+ #: views/view-export.php:34
55
+ msgid "Select Export Format"
56
+ msgstr "Изберете формат за износ"
57
+
58
+ #: views/view-export.php:44
59
+ msgid "Select Delimiter to use"
60
+ msgstr "Изберете разделител за използване"
61
+
62
+ #: views/view-export.php:51
63
+ msgid "Only needed for CSV export."
64
+ msgstr "Само нужни за износ CSV."
65
+
66
+ #: views/view-export.php:54
67
+ msgid "Download file"
68
+ msgstr "Изтегляне на файла"
69
+
70
+ #: views/view-export.php:55
71
+ msgid "Yes, I want to download the export file."
72
+ msgstr "Да, искам да свалите файла за износ."
73
+
74
+ #: views/view-export.php:60
75
+ #: views/view-edit.php:477
76
+ msgid "Export Table"
77
+ msgstr "Износ таблица"
78
+
79
+ #: views/view-export.php:72
80
+ #: views/view-ajax_list.php:53
81
+ #: views/view-list.php:87
82
+ #: controllers/controller-admin.php:1856
83
+ msgid "No tables were found."
84
+ msgstr "Описание..."
85
+
86
+ #: views/view-export.php:72
87
+ #: views/view-list.php:87
88
+ msgid "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to get started!"
89
+ msgstr "Трябва да <a href=\"%s\"> добавите </ A> или <a href=\"%s\"> внос </ A> на масата, за да започна?"
90
+
91
+ #: views/view-edit.php:8
92
+ msgid "On this page, you can edit the content of the table."
93
+ msgstr "На тази страница можете да редактирате съдържанието на таблицата."
94
+
95
+ #: views/view-edit.php:8
96
+ msgid "It is also possible to change the table structure by inserting, deleting, moving, and swapping columns and rows."
97
+ msgstr "Възможно е също да се промени структурата на таблицата по вмъкване, изтриване, преместване и смяна на колони и редове."
98
+
99
+ #: views/view-edit.php:9
100
+ #: views/view-about.php:14
101
+ #: views/view-list.php:2
102
+ #: views/view-ajax_preview.php:5
103
+ msgid "To insert the table into a page, post or text-widget, copy the shortcode <strong>[table id=%s /]</strong> and paste it into the corresponding place in the editor."
104
+ msgstr "За да вмъкнете таблица в дадена страница, пост или текст, джаджа, копие на кратък номер <strong> [таблица ID =%s/] </ STRONG> и да го поставите в съответното място на редактор."
105
+
106
+ #: views/view-edit.php:15
107
+ msgid "Table Information"
108
+ msgstr "Таблица информация"
109
+
110
+ #: views/view-edit.php:15
111
+ #: views/view-edit.php:51
112
+ #: views/view-edit.php:104
113
+ #: views/view-edit.php:262
114
+ #: views/view-edit.php:361
115
+ #: views/view-edit.php:422
116
+ #: views/view-about.php:89
117
+ #: views/view-options.php:19
118
+ #: views/view-options.php:70
119
+ #: views/view-options.php:91
120
+ #: views/view-options.php:185
121
+ #: views/view-options.php:196
122
+ msgctxt "expand"
123
+ msgid "Hide"
124
+ msgstr "Скрий"
125
+
126
+ #: views/view-edit.php:15
127
+ #: views/view-edit.php:51
128
+ #: views/view-edit.php:104
129
+ #: views/view-edit.php:262
130
+ #: views/view-edit.php:361
131
+ #: views/view-edit.php:422
132
+ #: views/view-about.php:89
133
+ #: views/view-options.php:19
134
+ #: views/view-options.php:70
135
+ #: views/view-options.php:91
136
+ #: views/view-options.php:185
137
+ #: views/view-options.php:196
138
+ msgid "Expand"
139
+ msgstr "Разширяване"
140
+
141
+ #: views/view-edit.php:19
142
+ msgid "Table ID"
143
+ msgstr "Таблица ID"
144
+
145
+ #: views/view-edit.php:23
146
+ #: views/view-edit.php:283
147
+ #: views/view-ajax_list.php:14
148
+ #: views/view-ajax_list.php:22
149
+ #: views/view-import.php:100
150
+ #: views/view-import.php:109
151
+ #: views/view-list.php:15
152
+ #: views/view-list.php:25
153
+ #: views/view-add.php:13
154
+ msgid "Table Name"
155
+ msgstr "Името на таблицата"
156
+
157
+ #: views/view-edit.php:27
158
+ #: views/view-ajax_list.php:15
159
+ #: views/view-ajax_list.php:23
160
+ #: views/view-import.php:101
161
+ #: views/view-import.php:110
162
+ #: views/view-list.php:16
163
+ #: views/view-list.php:26
164
+ #: views/view-add.php:17
165
+ msgid "Description"
166
+ msgstr "Описание"
167
+
168
+ #: views/view-edit.php:32
169
+ #: views/view-list.php:17
170
+ #: views/view-list.php:27
171
+ msgid "Last Modified"
172
+ msgstr "Последна актуализация на:"
173
+
174
+ #: views/view-edit.php:33
175
+ #: views/view-list.php:44
176
+ msgid "by"
177
+ msgstr "от"
178
+
179
+ #: views/view-edit.php:41
180
+ #: views/view-edit.php:253
181
+ #: views/view-edit.php:413
182
+ #: views/view-edit.php:464
183
+ #: controllers/controller-admin.php:1746
184
+ msgid "Update Changes"
185
+ msgstr "Актуализация Промени"
186
+
187
+ #: views/view-edit.php:42
188
+ #: views/view-edit.php:254
189
+ #: views/view-edit.php:414
190
+ #: views/view-edit.php:465
191
+ msgid "Save and go back"
192
+ msgstr "Запазване и се върна"
193
+
194
+ #: views/view-edit.php:45
195
+ #: views/view-edit.php:257
196
+ #: views/view-edit.php:417
197
+ #: views/view-edit.php:468
198
+ #: views/view-options.php:65
199
+ #: views/view-options.php:172
200
+ msgid "Cancel"
201
+ msgstr "Отказ"
202
+
203
+ #: views/view-edit.php:51
204
+ msgid "Table Contents"
205
+ msgstr "Таблица за пазаруване"
206
+
207
+ #: views/view-edit.php:104
208
+ msgid "Data Manipulation"
209
+ msgstr "Данни Манипулация"
210
+
211
+ #: views/view-edit.php:114
212
+ #: views/view-options.php:55
213
+ msgid "Insert Link"
214
+ msgstr "Вмъкване на връзка"
215
+
216
+ #: views/view-edit.php:115
217
+ msgid "Insert Image"
218
+ msgstr "Вмъкване на изображения"
219
+
220
+ #: views/view-edit.php:124
221
+ msgid "ascending"
222
+ msgstr "възходящ"
223
+
224
+ #: views/view-edit.php:125
225
+ msgid "descending"
226
+ msgstr "низходящ"
227
+
228
+ #: views/view-edit.php:128
229
+ msgid "Sort table by column %s in %s order"
230
+ msgstr "Сортиране на таблицата по колони%s %s за"
231
+
232
+ #: views/view-edit.php:130
233
+ msgid "Sort"
234
+ msgstr "Вид"
235
+
236
+ #: views/view-edit.php:135
237
+ #: views/view-edit.php:139
238
+ msgctxt "item"
239
+ msgid "Hide"
240
+ msgstr "Скрий"
241
+
242
+ #: views/view-edit.php:136
243
+ #: views/view-edit.php:140
244
+ msgctxt "item"
245
+ msgid "Unhide"
246
+ msgstr "Разкрий"
247
+
248
+ #: views/view-edit.php:137
249
+ msgctxt "hide_unhide"
250
+ msgid "Selected rows: %s %s"
251
+ msgstr "Избрани редове:% s% s"
252
+
253
+ #: views/view-edit.php:141
254
+ msgctxt "hide_unhide"
255
+ msgid "Selected columns: %s %s"
256
+ msgstr "Избрани колони:% s% s"
257
+
258
+ #: views/view-edit.php:144
259
+ msgid "Combine cells in a row:"
260
+ msgstr "Обединяване на клетки в ред:"
261
+
262
+ #: views/view-edit.php:145
263
+ msgid "Add colspan"
264
+ msgstr "Добави colspan"
265
+
266
+ #: views/view-edit.php:148
267
+ msgid "Combine cells in a column:"
268
+ msgstr "Обединяване на клетки в колона:"
269
+
270
+ #: views/view-edit.php:149
271
+ msgid "Add rowspan"
272
+ msgstr "Добави rowspan"
273
+
274
+ #: views/view-edit.php:155
275
+ msgid "Insert row"
276
+ msgstr "Вмъкване на ред"
277
+
278
+ #: views/view-edit.php:156
279
+ #: views/view-edit.php:160
280
+ #: views/view-list.php:65
281
+ msgid "Delete"
282
+ msgstr "Изтриване"
283
+
284
+ #: views/view-edit.php:157
285
+ msgctxt "insert_delete"
286
+ msgid "Selected rows: %s %s"
287
+ msgstr "Избрани редове: :% s% s"
288
+
289
+ #: views/view-edit.php:159
290
+ msgid "Insert column"
291
+ msgstr "Insert column"
292
+
293
+ #: views/view-edit.php:161
294
+ msgctxt "insert_delete"
295
+ msgid "Selected columns: %s %s"
296
+ msgstr "изберете колона :% s% s"
297
+
298
+ #: views/view-edit.php:171
299
+ msgid "Add %s row(s)"
300
+ msgstr "Добавете%sред (а)"
301
+
302
+ #: views/view-edit.php:172
303
+ #: views/view-edit.php:175
304
+ #: views/view-edit.php:459
305
+ msgid "Add"
306
+ msgstr "Добави"
307
+
308
+ #: views/view-edit.php:174
309
+ msgid "Add %s column(s)"
310
+ msgstr "Добавете%s колона (а)"
311
+
312
+ #: views/view-edit.php:189
313
+ msgid "Swap rows %s and %s"
314
+ msgstr "Разменени редове%s и%s"
315
+
316
+ #: views/view-edit.php:191
317
+ #: views/view-edit.php:206
318
+ msgid "Swap"
319
+ msgstr "Замяна"
320
+
321
+ #: views/view-edit.php:204
322
+ msgid "Swap columns %s and %s"
323
+ msgstr "Разменени колони%s и%s"
324
+
325
+ #: views/view-edit.php:219
326
+ #: views/view-edit.php:239
327
+ msgid "before"
328
+ msgstr "преди"
329
+
330
+ #: views/view-edit.php:220
331
+ #: views/view-edit.php:240
332
+ msgid "after"
333
+ msgstr "след"
334
+
335
+ #: views/view-edit.php:223
336
+ msgid "Move row %s %s row %s"
337
+ msgstr "Преместване на реда%s ред%s %s"
338
+
339
+ #: views/view-edit.php:225
340
+ #: views/view-edit.php:245
341
+ msgid "Move"
342
+ msgstr "Ход"
343
+
344
+ #: views/view-edit.php:243
345
+ msgid "Move column %s %s column %s"
346
+ msgstr "Преместване на колоната%s%s%sколона"
347
+
348
+ #: views/view-edit.php:262
349
+ msgid "Table Styling Options"
350
+ msgstr "Таблица Стайлинг Опции"
351
+
352
+ #: views/view-edit.php:264
353
+ msgid "These settings will only be used for this table."
354
+ msgstr "Тези настройки ще бъдат използвани само за тази таблица."
355
+
356
+ #: views/view-edit.php:267
357
+ msgid "Alternating row colors"
358
+ msgstr "Променлив ред цветове"
359
+
360
+ #: views/view-edit.php:268
361
+ msgid "Every second row has an alternating background color."
362
+ msgstr "Всеки втори ред е с променлив цвят на фона."
363
+
364
+ #: views/view-edit.php:271
365
+ msgid "Row Highlighting"
366
+ msgstr "Row Отбелязването"
367
+
368
+ #: views/view-edit.php:272
369
+ msgid "Highlight a row by changing its background color while the mouse cursor hovers above it."
370
+ msgstr "Маркирайте един ред от промяна на цвета на фона, докато витае курсора на мишката над него."
371
+
372
+ #: views/view-edit.php:275
373
+ msgid "Table head"
374
+ msgstr "Таблица главата"
375
+
376
+ #: views/view-edit.php:276
377
+ msgid "The first row of your table is the table head (HTML tags &lt;thead&gt; and &lt;th&gt;)."
378
+ msgstr "Първият ред от вашата таблица е таблицата на главата (HTML тагове &lt;th&gt;)."
379
+
380
+ #: views/view-edit.php:279
381
+ msgid "Table footer"
382
+ msgstr "Таблица долния"
383
+
384
+ #: views/view-edit.php:280
385
+ msgid "The last row of your table is the table footer (HTML tags &lt;tfoot&gt; and &lt;th&gt;)."
386
+ msgstr "В последния ред на таблицата е таблицата долен колонтитул (HTML тагове &lt;tfoot&gt; and &lt;th&gt;)."
387
+
388
+ #: views/view-edit.php:289
389
+ #: views/view-edit.php:306
390
+ msgid "above"
391
+ msgstr "над"
392
+
393
+ #: views/view-edit.php:291
394
+ #: views/view-edit.php:308
395
+ msgid "below"
396
+ msgstr "по-долу"
397
+
398
+ #: views/view-edit.php:294
399
+ msgid "The Table Name shall be written %s the table (HTML tag &lt;h2&gt;)."
400
+ msgstr "Името на таблицата се изписва% масата (HTML тагове &lt;h2&gt;)."
401
+
402
+ #: views/view-edit.php:300
403
+ msgid "Table Description"
404
+ msgstr "Таблица Описание"
405
+
406
+ #: views/view-edit.php:311
407
+ msgid "The Table Description shall be written %s the table."
408
+ msgstr "Таблица Описание се писмено %s таблицата."
409
+
410
+ #: views/view-edit.php:317
411
+ msgid "Cache Table Output"
412
+ msgstr "Cache Таблица изход"
413
+
414
+ #: views/view-edit.php:318
415
+ msgid "The resulting HTML output of the table shall be cached in the WordPress database cache for faster page generation."
416
+ msgstr "В резултат HTML изхода на таблицата се кешират в базата данни кеш на WordPress за по-бързо страница поколение."
417
+
418
+ #: views/view-edit.php:321
419
+ msgid "Extra CSS Class"
420
+ msgstr "Допълнителна CSS клас"
421
+
422
+ #: views/view-edit.php:322
423
+ msgid "Enter a string that will be given to the table as an additional class for styling with CSS."
424
+ msgstr "Въведете низ, който ще бъде даден на масата като допълнителен клас за оформяне със CSS."
425
+
426
+ #: views/view-edit.php:322
427
+ msgid "This is not the place to enter \"Custom CSS\" code!"
428
+ msgstr "Това не е мястото да въведете \"Custom CSS \" код!"
429
+
430
+ #: views/view-edit.php:325
431
+ msgid "Use JavaScript library"
432
+ msgstr "Използвайте JavaScript библиотека"
433
+
434
+ #: views/view-edit.php:331
435
+ #: views/view-edit.php:335
436
+ #: views/view-edit.php:347
437
+ msgid "You can change further settings for this library below."
438
+ msgstr "Можете да промените допълнителни настройки за тази библиотека по-долу"
439
+
440
+ #: views/view-edit.php:339
441
+ #: views/view-edit.php:343
442
+ msgid "The table will then be sortable by the visitor."
443
+ msgstr "В таблицата след това ще се подредят от посетителя."
444
+
445
+ #: views/view-edit.php:350
446
+ msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
447
+ msgstr "Да, използвайте&quot;%s&quot; JavaScript библиотека с тази таблица."
448
+
449
+ #: views/view-edit.php:350
450
+ msgid "You must enable the use of a JavaScript library on the &quot;%s&quot; screen first."
451
+ msgstr "Вие трябва да разрешите използването на JavaScript библиотека за&quot;%s&quot; екрана първо."
452
+
453
+ #: views/view-edit.php:361
454
+ msgid "DataTables JavaScript Features"
455
+ msgstr "DataTables JavaScript функции"
456
+
457
+ #: views/view-edit.php:363
458
+ msgid "You can enable certain features for the DataTables JavaScript library here."
459
+ msgstr "Можете да разрешат определени функции за DataTables библиотека JavaScript тук."
460
+
461
+ #: views/view-edit.php:363
462
+ msgid "More information on these features can be found on the <a href=\"http://www.datatables.net/\">DataTables website</a>."
463
+ msgstr "Повече информация за тези функции, могат да бъдат намерени на DataTables <a href=\"http://www.datatables.net/\"> сайт </ A>."
464
+
465
+ #: views/view-edit.php:365
466
+ msgid "You can currently not change these options, because you have not enabled the &quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript library on the &quot;%s&quot; screen."
467
+ msgstr "В момента не можете да променяте тези настройки, защото не са позволили на \"DataTables\"или \"DataTables + TableTools\" JavaScript библиотека на \"%s\"екран."
468
+
469
+ #: views/view-edit.php:365
470
+ msgid "It is not possible to use these features with the &quot;Tablesorter&quot; or &quot;Tablesorter Extended&quot; libraries."
471
+ msgstr "Не е възможно да използвате тези функции с \"Tablesorter\"или \"Tablesorter разширяване\" библиотеки."
472
+
473
+ #: views/view-edit.php:369
474
+ msgid "Sorting"
475
+ msgstr "Сортиране"
476
+
477
+ #: views/view-edit.php:370
478
+ msgid "Yes, enable sorting of table data by the visitor."
479
+ msgstr "Да, даде възможност за сортиране на таблицата с данни от посетителя."
480
+
481
+ #: views/view-edit.php:373
482
+ msgid "Pagination"
483
+ msgstr "Пагинация"
484
+
485
+ #: views/view-edit.php:378
486
+ msgid "Yes, enable pagination (showing only a certain number of rows) of the table by the visitor."
487
+ msgstr "Да, може пагинация (показва само определен брой редове) от таблицата от посетителя."
488
+
489
+ #: views/view-edit.php:380
490
+ msgid "Show %1$s rows of the table per page."
491
+ msgstr "Покажи%1$s редове от таблицата на страница."
492
+
493
+ #: views/view-edit.php:386
494
+ msgid "Length Change"
495
+ msgstr "Дължина Промяна"
496
+
497
+ #: views/view-edit.php:387
498
+ msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
499
+ msgstr "Да, позволява на посетителя да промените броя на редовете, показва, когато използвате пагинация."
500
+
501
+ #: views/view-edit.php:390
502
+ msgid "Filtering"
503
+ msgstr "Филтриране"
504
+
505
+ #: views/view-edit.php:391
506
+ msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
507
+ msgstr "Да, даде възможност на посетителя да се филтрира или потърсете в таблицата. Само редове с търсене на дума в тях се показват."
508
+
509
+ #: views/view-edit.php:394
510
+ msgid "Info Bar"
511
+ msgstr "Информация Бар"
512
+
513
+ #: views/view-edit.php:395
514
+ msgid "Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering."
515
+ msgstr "Да, показва информацията на дисплея таблицата. Това показва, информация и статистика за вижда в момента данни, включително филтриране."
516
+
517
+ #: views/view-edit.php:398
518
+ msgid "TableTools"
519
+ msgstr "TableTools"
520
+
521
+ #: views/view-edit.php:400
522
+ msgid "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save to XLS, Print Table) for this table."
523
+ msgstr "Да, активирайте TableTools функции (Копиране в клипборда, Запази в CSV, Запиши, за да XLS, Печат таблица) за тази таблица."
524
+
525
+ #: views/view-edit.php:401
526
+ msgid "This option can only be used with the &quot;DataTables+TableTools&quot; JavaScript library."
527
+ msgstr "Тази опция може да се използва само с \"DataTables + TableTools\"библиотека JavaScript."
528
+
529
+ #: views/view-edit.php:405
530
+ msgid "Custom Commands"
531
+ msgstr "Потребителски команди"
532
+
533
+ #: views/view-edit.php:406
534
+ msgid "Enter additional DataTables JavaScript parameters that will be included with the script call here."
535
+ msgstr "Въведете допълнителни DataTables JavaScript параметрите, които ще бъдат включени в сценария разговор тук."
536
+
537
+ #: views/view-edit.php:406
538
+ msgid "For advanced use only. Read the <a href=\"http://www.datatables.net/\">DataTables documentation</a> before."
539
+ msgstr "За професионална употреба. Прочетете <a href=\"http://www.datatables.net/\"> DataTables документация </ A> преди."
540
+
541
+ #: views/view-edit.php:422
542
+ msgid "Custom Data Fields"
543
+ msgstr "Custom Data Fields"
544
+
545
+ #: views/view-edit.php:424
546
+ msgid "Custom Data Fields can be used to add extra metadata to a table."
547
+ msgstr "Custom Data Fields може да се използва за добавяне на допълнителни метаданни в таблица."
548
+
549
+ #: views/view-edit.php:424
550
+ msgid "For example, this could be information about the source or the creator of the data."
551
+ msgstr "Например, това може да се информация за източника на създател на данните."
552
+
553
+ #: views/view-edit.php:426
554
+ msgid "You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
555
+ msgstr "Можете да покажете тези данни по същия начин както таблици с помощта на кратък номер <strong> [трапезни информация ID =%s на полето = \"<field-name> \" /] </ STRONG>."
556
+
557
+ #: views/view-edit.php:432
558
+ msgid "Field Name"
559
+ msgstr "Полето Име"
560
+
561
+ #: views/view-edit.php:433
562
+ msgid "Value"
563
+ msgstr "Стойност"
564
+
565
+ #: views/view-edit.php:434
566
+ #: views/view-ajax_list.php:16
567
+ #: views/view-ajax_list.php:24
568
+ #: views/view-import.php:102
569
+ #: views/view-import.php:111
570
+ msgid "Action"
571
+ msgstr "Описание..."
572
+
573
+ #: views/view-edit.php:447
574
+ msgid "Delete Field"
575
+ msgstr "Изтриване на поле"
576
+
577
+ #: views/view-edit.php:449
578
+ msgid "View shortcode"
579
+ msgstr "Преглед на кратък номер"
580
+
581
+ #: views/view-edit.php:458
582
+ msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
583
+ msgstr "За да добавите нов избор на поле с данни, въведете името си (само малки букви, цифри, _ и -)."
584
+
585
+ #: views/view-edit.php:459
586
+ msgid "Custom Data Field Name"
587
+ msgstr "Избор на поле с данни Име"
588
+
589
+ #: views/view-edit.php:473
590
+ msgid "Other actions"
591
+ msgstr "Други действия"
592
+
593
+ #: views/view-edit.php:476
594
+ msgid "Delete Table"
595
+ msgstr "Изтриване на таблица"
596
+
597
+ #: views/view-ajax_list.php:3
598
+ #: views/view-list.php:2
599
+ msgid "This is a list of all available tables."
600
+ msgstr "Това е списък на всички налични таблици"
601
+
602
+ #: views/view-ajax_list.php:3
603
+ msgid "You may insert a table into a post or page here."
604
+ msgstr "Можете да вмъкнете таблица в пощата или страницата тук."
605
+
606
+ #: views/view-ajax_list.php:4
607
+ msgid "Click the &quot;%s&quot; link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
608
+ msgstr "Щракнете върху &quot;%s&quot; намиращ се след желаната маса и съответните кратък номер ще бъде поставен в редактора (<strong>[table id=&lt;ID&gt; /]</strong>)."
609
+
610
+ #: views/view-ajax_list.php:4
611
+ #: views/view-ajax_list.php:44
612
+ msgid "Insert"
613
+ msgstr "Insert"
614
+
615
+ #: views/view-ajax_list.php:13
616
+ #: views/view-ajax_list.php:21
617
+ #: views/view-import.php:99
618
+ #: views/view-import.php:108
619
+ #: views/view-list.php:13
620
+ #: views/view-list.php:23
621
+ msgid "ID"
622
+ msgstr "ID"
623
+
624
+ #: views/view-import.php:3
625
+ msgid "WP-Table Reloaded can import tables from existing data."
626
+ msgstr "WP-Таблица Reloaded може да импортира таблици от съществуващите данни."
627
+
628
+ #: views/view-import.php:3
629
+ msgid "This may be a CSV, XML or HTML file, each with a certain structure."
630
+ msgstr "Това може да е CSV, XML или HTML файл, всяка с определена структура."
631
+
632
+ #: views/view-import.php:3
633
+ msgid "To import an existing table, please select its format and the source for the import."
634
+ msgstr "За да импортирате съществуваща таблица, изберете си вид и източник на внос."
635
+
636
+ #: views/view-import.php:3
637
+ msgid "You can also decide, if you want to import it as a new table or replace an existing table."
638
+ msgstr "Можете също така да реши, ако искате да го внесе като нова таблица или подмяна на съществуваща таблица."
639
+
640
+ #: views/view-import.php:10
641
+ msgid "Select Import Format"
642
+ msgstr "Изберете Импортиране формат"
643
+
644
+ #: views/view-import.php:21
645
+ msgid "Add or Replace Table?"
646
+ msgstr "Добавяне или замяна маса?"
647
+
648
+ #: views/view-import.php:23
649
+ msgid "Add as new Table"
650
+ msgstr "Добави като нова таблица"
651
+
652
+ #: views/view-import.php:24
653
+ msgid "Replace existing Table"
654
+ msgstr "Замяна на съществуващите таблици"
655
+
656
+ #: views/view-import.php:28
657
+ msgid "Select existing Table to Replace"
658
+ msgstr "Изберете съществуваща таблица за замяна"
659
+
660
+ #: views/view-import.php:45
661
+ msgid "Select source for Import"
662
+ msgstr "Изберете източник за импортиране"
663
+
664
+ #: views/view-import.php:47
665
+ msgid "File upload"
666
+ msgstr "Качване на файлове"
667
+
668
+ #: views/view-import.php:48
669
+ msgid "URL"
670
+ msgstr "URL"
671
+
672
+ #: views/view-import.php:49
673
+ msgid "Manual input"
674
+ msgstr "Ръчно въвеждане"
675
+
676
+ #: views/view-import.php:50
677
+ msgid "File on server"
678
+ msgstr "Файлът на сървъра"
679
+
680
+ #: views/view-import.php:54
681
+ msgid "Select File with Table to Import"
682
+ msgstr "Изберете файл с таблица за внос"
683
+
684
+ #: views/view-import.php:58
685
+ msgid "URL to Import Table from"
686
+ msgstr "URL за внос от таблица"
687
+
688
+ #: views/view-import.php:62
689
+ msgid "Path to file on server"
690
+ msgstr "Път до файла на сървъра"
691
+
692
+ #: views/view-import.php:66
693
+ msgid "Paste data with Table to Import"
694
+ msgstr "Поставяне на данни с таблица за внос"
695
+
696
+ #: views/view-import.php:72
697
+ msgid "Import Table"
698
+ msgstr "Внос таблица"
699
+
700
+ #: views/view-import.php:86
701
+ msgid "Import from original wp-Table plugin"
702
+ msgstr "Внос от оригиналния WP-Таблица плъгин"
703
+
704
+ #: views/view-import.php:132
705
+ msgid "Import"
706
+ msgstr "Внос"
707
+
708
+ #: views/view-import.php:140
709
+ #: views/view-list.php:78
710
+ msgid "Bulk actions:"
711
+ msgstr "Насипни дейности:"
712
+
713
+ #: views/view-import.php:140
714
+ msgid "Import Tables"
715
+ msgstr "Внос таблици"
716
+
717
+ #: views/view-import.php:146
718
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
719
+ msgstr "WP-Таблица на Алекс Rabe изглежда да се инсталира, но не и таблици са намерени резултати."
720
+
721
+ #: views/view-about.php:5
722
+ msgid "Plugin Purpose"
723
+ msgstr "Plug-in Цел"
724
+
725
+ #: views/view-about.php:7
726
+ msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
727
+ msgstr "WP-Таблица Reloaded ви позволява да създавате и управлявате таблиците в Админ-пространство на WordPress."
728
+
729
+ #: views/view-about.php:7
730
+ msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
731
+ msgstr "Тези таблици могат да съдържат низове, числа и дори HTML (например да включват изображения или връзки)."
732
+
733
+ #: views/view-about.php:7
734
+ msgid "You can then show the tables in your posts, on your pages or in text-widgets by using a shortcode."
735
+ msgstr "След това можете да показват таблиците в публикациите си, на страниците си или в текстов джаджи с помощта на кратък номер."
736
+
737
+ #: views/view-about.php:7
738
+ msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
739
+ msgstr "Ако искате да покажете на таблици никъде другаде във вашата тема, можете да използвате функцията етикет шаблон."
740
+
741
+ #: views/view-about.php:12
742
+ msgid "Usage"
743
+ msgstr "Използване"
744
+
745
+ #: views/view-about.php:14
746
+ msgid "At first you should add or import a table."
747
+ msgstr "Първоначално трябва да добавите или импортирате таблица."
748
+
749
+ #: views/view-about.php:14
750
+ 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."
751
+ msgstr "Това означава, че сте или да плъгин създаване на празна маса за вас или че сте зареждане на съществуваща таблица от един или CSV, XML или HTML файл."
752
+
753
+ #: views/view-about.php:14
754
+ 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."
755
+ msgstr "След това можете да редактирате вашите данни и промяна на структурата на таблица (например чрез вмъкване или изтриване на редове или колони, swaping редове и колони или да ги сортиране) и изберете конкретни опции за маса като променлив ред цветове или дали да се отпечатва името или описанието, ако искате."
756
+
757
+ #: views/view-about.php:14
758
+ 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."
759
+ msgstr "За по-лесно добавяне на линк или изображение към клетка, използва предвидените бутони. Те ще ви попита за URL и заглавие. След това можете да щракнете в клетка и съответните HTML ще бъдат добавени към доклада за вас."
760
+
761
+ #: views/view-about.php:14
762
+ msgid "You can also select the desired table from a list (after clicking the button &quot;%s&quot; in the editor toolbar) and the corresponding shortcode will be added for you."
763
+ msgstr "Можете също така да изберете желаната таблица от списък (след натискане на бутона \"%s \" в лентата с инструменти на редактора) и съответните кратък номер ще се добавят за вас."
764
+
765
+ #: views/view-about.php:14
766
+ #: views/view-list.php:2
767
+ #: controllers/controller-admin.php:1795
768
+ msgid "Table"
769
+ msgstr "Таблица"
770
+
771
+ #: views/view-about.php:14
772
+ msgid "Tables can be styled by changing and adding CSS commands."
773
+ msgstr "Таблицата може да бъде оформена чрез промяна и добавяне на CSS команди."
774
+
775
+ #: views/view-about.php:14
776
+ msgid "The plugin ships with default CSS Stylesheets, which can be customized with own code or replaced with other Stylesheets."
777
+ msgstr "В плъгин кораби с по подразбиране CSS стилове, които могат да бъдат персонализирани с собствен код или заменени с други стилове."
778
+
779
+ #: views/view-about.php:14
780
+ msgid "For this, each table is given certain CSS classes that can be used as CSS selectors."
781
+ msgstr "За тази цел всяка таблица е дадено някои CSS класове, които могат да се използват като CSS селектори."
782
+
783
+ #: views/view-about.php:14
784
+ msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
785
+ msgstr "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
786
+
787
+ #: views/view-about.php:19
788
+ msgid "More Information and Documentation"
789
+ msgstr "Повече информация и документация"
790
+
791
+ #: views/view-about.php:21
792
+ #: classes/helper.class.php:40
793
+ msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
794
+ msgstr "Повече информация за WP-Таблица Reloaded може да намерите на <a href=\"%s\"> плъгин на потребителя </ A> или на страницата си в <a href=\"%s\"> WordPress Plug-in Directory </ A>."
795
+
796
+ #: views/view-about.php:21
797
+ #: classes/helper.class.php:41
798
+ msgid "For technical information, see the <a href=\"%s\">documentation</a>."
799
+ msgstr "За техническа информация вижте <a href=\"%s\"> документация </ A>."
800
+
801
+ #: views/view-about.php:26
802
+ msgid "Help and Support"
803
+ msgstr "ช่วยเหลือและวิธีใช้"
804
+
805
+ #: views/view-about.php:28
806
+ #: classes/helper.class.php:42
807
+ msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
808
+ msgstr "<a href=\"%s\"> Подкрепа </ A> се осигурява чрез <a href=\"%s\"> WordPress Форум </ A>."
809
+
810
+ #: views/view-about.php:28
811
+ #: classes/helper.class.php:43
812
+ msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
813
+ msgstr "Преди да кандидатства за помощ, моля, прочетете внимателно <a href=\"%s\"> Често задавани въпроси </ A>, където ще намерите отговори на най-често задаваните въпроси и търсите из форумите."
814
+
815
+ #: views/view-about.php:28
816
+ msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
817
+ msgstr "Ако не намерите отговор тук, моля <a href=\"%s\"> отворена нова тема </ A> във форумите подкрепа WordPress с етикет&quot;wp-table-reloaded&quot;."
818
+
819
+ #: views/view-about.php:33
820
+ msgid "Author and License"
821
+ msgstr "Автор и лиценз"
822
+
823
+ #: views/view-about.php:35
824
+ msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
825
+ msgstr "Този плъгин е написан от <a href=\"%s\"> Tobias Bäthge </ A>."
826
+
827
+ #: views/view-about.php:35
828
+ msgid "It is licensed as Free Software under GPL 2."
829
+ msgstr "Тя е лицензирана като свободен софтуер под GPL 2."
830
+
831
+ #: views/view-about.php:35
832
+ #: classes/helper.class.php:44
833
+ msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
834
+ msgstr "Ако харесвате плъгин, <a href=\"%s\"> <strong> дарение </ STRONG> </ A> се препоръчва."
835
+
836
+ #: views/view-about.php:35
837
+ msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
838
+ msgstr "Моля, дайте оценка плъгин в <a href=\"%s\"> WordPress Plug-in Directory </ A>."
839
+
840
+ #: views/view-about.php:35
841
+ msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
842
+ msgstr "Дарения и добри оценки ме поощри по-нататъшното развитие на приставката и да предоставят безброй часове на подкрепа. Всяка сума, която е ценена! Благодаря!"
843
+
844
+ #: views/view-about.php:40
845
+ msgid "Credits and Thanks"
846
+ msgstr "Кредити и Благодаря"
847
+
848
+ #: views/view-about.php:43
849
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
850
+ msgstr "Благодарности на <a href=\"http://alexrabe.boelinger.com/\"> Алекс Rabe </ A> за оригиналния WP-Таблица плъгин,"
851
+
852
+ #: views/view-about.php:44
853
+ msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
854
+ msgstr "Алън Jardine за <a href=\"http://www.datatables.net/\"> DataTables JQuery приставка </ A>"
855
+
856
+ #: views/view-about.php:45
857
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
858
+ msgstr "Кристиан Бах за <a href=\"http://www.tablesorter.com/\"> JQuery Tablesorter плъгин </ A>"
859
+
860
+ #: views/view-about.php:46
861
+ msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
862
+ msgstr "Soeren Krings за удължаване на срока <a href=\"http://tablesorter.openwerk.de/\"> Tablesorter разширяване </ A>"
863
+
864
+ #: views/view-about.php:47
865
+ msgid "the submitters of translations:"
866
+ msgstr "на подателите на преводи:"
867
+
868
+ #: views/view-about.php:80
869
+ msgid "%s (thanks to %s)"
870
+ msgstr "%s (благодарение на%s)"
871
+
872
+ #: views/view-about.php:83
873
+ msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
874
+ msgstr "и на всички донори, сътрудници, привърженици, отзиви и потребителите на плъгин!"
875
+
876
+ #: views/view-about.php:89
877
+ msgid "Debug and Version Information"
878
+ msgstr "Отстраняване на грешки и версия Информация"
879
+
880
+ #: views/view-about.php:92
881
+ msgid "You are using the following versions of the software."
882
+ msgstr "Вие използвате следните версии на софтуера."
883
+
884
+ #: views/view-about.php:92
885
+ msgid "Please provide this information in bug reports."
886
+ msgstr "Моля, да предоставят тази информация в докладите за грешки."
887
+
888
+ #: views/view-about.php:95
889
+ msgid "Plugin installed"
890
+ msgstr "Plug-in инсталиран"
891
+
892
+ #: views/view-options.php:3
893
+ msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
894
+ msgstr "WP-Таблица Reloaded има няколко опции, които влияят на плъгин поведение в различни области."
895
+
896
+ #: views/view-options.php:4
897
+ msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
898
+ msgstr "Интерфейса Опции влияние на производството и използваните функции на таблици в страниците, мнения или текст-джаджи."
899
+
900
+ #: views/view-options.php:4
901
+ msgid "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; screen."
902
+ msgstr "Гръб възможности за контрол на приставката на администратор област, например на&quot;%s&quot;екрана."
903
+
904
+ #: views/view-options.php:4
905
+ #: views/view-options.php:55
906
+ #: views/view-options.php:75
907
+ #: views/view-options.php:79
908
+ msgid "Edit Table"
909
+ msgstr "Редактиране на таблица"
910
+
911
+ #: views/view-options.php:4
912
+ msgid "Administrators have access to further Admin Options."
913
+ msgstr "Администраторите имат достъп до допълнително Admin опции."
914
+
915
+ #: views/view-options.php:19
916
+ msgid "Frontend Options"
917
+ msgstr "Опции на интерфейса"
918
+
919
+ #: views/view-options.php:23
920
+ msgid "JavaScript library"
921
+ msgstr "JavaScript библиотека"
922
+
923
+ #: views/view-options.php:24
924
+ msgid "Yes, enable the use of a JavaScript library."
925
+ msgstr "Да, възможно използването на една библиотека JavaScript."
926
+
927
+ #: views/view-options.php:24
928
+ msgid "WP-Table Reloaded includes three JavaScript libraries that can add useful features, like sorting, pagination, and filtering, to a table."
929
+ msgstr "WP-Таблица Reloaded включва три JavaScript библиотеки, които може да добавите полезни функции, като сортиране, страниране, както и филтриране, в таблица."
930
+
931
+ #: views/view-options.php:28
932
+ msgid "Select the library to use:"
933
+ msgstr "Изберете библиотеката да се използва:"
934
+
935
+ #: views/view-options.php:29
936
+ #: views/view-options.php:131
937
+ msgid "recommended"
938
+ msgstr "препоръчва"
939
+
940
+ #: views/view-options.php:33
941
+ msgid "(You can read more about each library's features on the <a href=\"%s\">plugin's website</a>.)"
942
+ msgstr "(Можете да прочетете повече за функциите на всяка библиотека на <a href=\"%s\"> плъгин на потребителя </ A>.)"
943
+
944
+ #: views/view-options.php:36
945
+ msgid "Default CSS"
946
+ msgstr "По подразбиране CSS"
947
+
948
+ #: views/view-options.php:38
949
+ msgid "Yes, include and load the plugin's default CSS Stylesheets. This is highly recommended, if you use one of the JavaScript libraries!"
950
+ msgstr "Да, включва и натоварване на приставката по подразбиране на CSS стилове. Това е силно препоръчително, ако използвате една от библиотеките JavaScript!"
951
+
952
+ #: views/view-options.php:42
953
+ msgid "Custom CSS"
954
+ msgstr "Custom CSS"
955
+
956
+ #: views/view-options.php:44
957
+ msgid "Yes, include and load the following custom CSS commands."
958
+ msgstr "Да, включва и натоварване на следните потребителски CSS команди."
959
+
960
+ #: views/view-options.php:44
961
+ msgid "This should be used to change the table layout and styling."
962
+ msgstr "Това трябва да се използва за промяна на таблицата оформление и дизайн."
963
+
964
+ #: views/view-options.php:50
965
+ msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
966
+ msgstr "Можете да получите стайлинг примери от <a href=\"%s\"> Въпроси и отговори</a>."
967
+
968
+ #: views/view-options.php:50
969
+ msgid "Information on available CSS selectors can be found in the <a href=\"%s\">documentation</a>."
970
+ msgstr "Информация за наличните CSS селектори могат да бъдат намерени в <a href=\"%s\"> документация </ A>."
971
+
972
+ #: views/view-options.php:54
973
+ msgid "Links in new window"
974
+ msgstr "Връзки в нов прозорец"
975
+
976
+ #: views/view-options.php:55
977
+ msgid "Yes, open links that are inserted with the &quot;%s&quot; button on the &quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
978
+ msgstr "Да, отворени връзки, които се вмъкват с \"%s\"бутона на \"%s \" екран в нов прозорец на браузъра <strong> от сега нататък </ STRONG>."
979
+
980
+ #: views/view-options.php:62
981
+ #: views/view-options.php:169
982
+ msgid "Save Options"
983
+ msgstr "Съхраняване Опции"
984
+
985
+ #: views/view-options.php:70
986
+ msgid "Backend Options"
987
+ msgstr "Backend Опции"
988
+
989
+ #: views/view-options.php:74
990
+ msgid "Exit warning"
991
+ msgstr "Изход предупреждение"
992
+
993
+ #: views/view-options.php:75
994
+ msgid "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have not yet saved my changes."
995
+ msgstr "Да, показва предупредително съобщение, ако напусне \"%s \"на екрана и все още не са ми спаси промени."
996
+
997
+ #: views/view-options.php:78
998
+ msgid "Growing textareas"
999
+ msgstr "Отглеждане textareas"
1000
+
1001
+ #: views/view-options.php:79
1002
+ msgid "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are focussed."
1003
+ msgstr "Да, разширяване на textareas на&quot;%s&quot;екран, когато те са насочени."
1004
+
1005
+ #: views/view-options.php:82
1006
+ msgid "List of Tables features"
1007
+ msgstr "Списък на таблици функции"
1008
+
1009
+ #: views/view-options.php:83
1010
+ msgid "Yes, use the DataTables JavaScript features (sorting, pagination, filtering) on the &quot;%s&quot; screen."
1011
+ msgstr "Да, използвайте DataTables JavaScript функции (сортиране, страниране, филтриране) на &quot;%s&quot;"
1012
+
1013
+ #: views/view-options.php:83
1014
+ #: controllers/controller-admin.php:1298
1015
+ msgid "List Tables"
1016
+ msgstr "Списък таблици"
1017
+
1018
+ #: views/view-options.php:91
1019
+ msgid "Admin Options"
1020
+ msgstr "Admin Опции"
1021
+
1022
+ #: views/view-options.php:93
1023
+ #: views/view-options.php:210
1024
+ #: views/view-options.php:224
1025
+ msgid "This area are only available to site administrators!"
1026
+ msgstr "Тази област са достъпни само за администраторите на сайта!"
1027
+
1028
+ #: views/view-options.php:93
1029
+ msgid "You can therefore not change these options."
1030
+ msgstr "Вие може да не се променят тези опции."
1031
+
1032
+ #: views/view-options.php:98
1033
+ msgid "Plugin Access"
1034
+ msgstr "Plug-in за достъп"
1035
+
1036
+ #: views/view-options.php:99
1037
+ msgid "To access WP-Table Reloaded, a user needs to be:"
1038
+ msgstr "За достъп до WP-Таблица Reloaded, потребителят трябва да бъде:"
1039
+
1040
+ #: views/view-options.php:100
1041
+ #: views/view-options.php:111
1042
+ msgctxt "User role"
1043
+ msgid "Administrator"
1044
+ msgstr "Администратор"
1045
+
1046
+ #: views/view-options.php:101
1047
+ #: views/view-options.php:112
1048
+ msgctxt "User role"
1049
+ msgid "Editor"
1050
+ msgstr "Редактор"
1051
+
1052
+ #: views/view-options.php:102
1053
+ #: views/view-options.php:113
1054
+ msgctxt "User role"
1055
+ msgid "Author"
1056
+ msgstr "Автор"
1057
+
1058
+ #: views/view-options.php:103
1059
+ msgctxt "User role"
1060
+ msgid "Contributor"
1061
+ msgstr "Сътрудник"
1062
+
1063
+ #: views/view-options.php:109
1064
+ msgid "Plugin Options Access"
1065
+ msgstr "Plug-in за Опции за достъп"
1066
+
1067
+ #: views/view-options.php:110
1068
+ msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
1069
+ msgstr "За достъп до Plug-in Опции на WP-Таблица Reloaded, потребителят трябва да бъде:"
1070
+
1071
+ #: views/view-options.php:114
1072
+ msgid "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
1073
+ msgstr "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
1074
+
1075
+ #: views/view-options.php:118
1076
+ msgid "Plugin Language"
1077
+ msgstr "Plug-in Език"
1078
+
1079
+ #: views/view-options.php:119
1080
+ msgid "WP-Table Reloaded shall be shown in this language:"
1081
+ msgstr "Reloaded WP-Таблица се показват в този език:"
1082
+
1083
+ #: views/view-options.php:120
1084
+ msgid "WordPress Default (currently %s)"
1085
+ msgstr "WordPress Default (в момента%s)"
1086
+
1087
+ #: views/view-options.php:129
1088
+ msgid "Admin menu entry"
1089
+ msgstr "Админ менюто влизане:"
1090
+
1091
+ #: views/view-options.php:130
1092
+ msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
1093
+ msgstr "WP-Таблица Reloaded, се вписва в тази част на администратор меню:"
1094
+
1095
+ #: views/view-options.php:131
1096
+ msgid "Tools"
1097
+ msgstr "Инструменти"
1098
+
1099
+ #: views/view-options.php:132
1100
+ msgid "Posts"
1101
+ msgstr "Мнения"
1102
+
1103
+ #: views/view-options.php:139
1104
+ msgid "Pages"
1105
+ msgstr "Страници"
1106
+
1107
+ #: views/view-options.php:140
1108
+ msgid "Plugins"
1109
+ msgstr "Плугинз"
1110
+
1111
+ #: views/view-options.php:141
1112
+ msgid "Settings"
1113
+ msgstr "Настройки"
1114
+
1115
+ #: views/view-options.php:142
1116
+ msgid "Dashboard"
1117
+ msgstr "Табло"
1118
+
1119
+ #: views/view-options.php:143
1120
+ msgid "Top-Level"
1121
+ msgstr "Най-високо ниво"
1122
+
1123
+ #: views/view-options.php:148
1124
+ msgid "Frontend Edit Link"
1125
+ msgstr "Frontend Редактиране на връзката"
1126
+
1127
+ #: views/view-options.php:149
1128
+ msgid "Yes, show an \"Edit\" link to users with sufficient rights near every table on the frontend."
1129
+ msgstr "Да, показват едно \"Edit \" връзка на потребителите с достатъчно права в близост до всяка маса на интерфейса."
1130
+
1131
+ #: views/view-options.php:153
1132
+ msgid "WordPress Search"
1133
+ msgstr "WordPress Търсене"
1134
+
1135
+ #: views/view-options.php:154
1136
+ msgid "Yes, the WordPress Search shall also find posts and pages that contain the search term inside a table."
1137
+ msgstr "Да, WordPress Търсене намерите мнения и страници, които съдържат думата за търсене вътре в масата."
1138
+
1139
+ #: views/view-options.php:158
1140
+ msgid "Remove upon Deactivation"
1141
+ msgstr "Премахване на деактивиране"
1142
+
1143
+ #: views/view-options.php:159
1144
+ msgid "Yes, remove all plugin related data from the database when the plugin is deactivated."
1145
+ msgstr "Да, премахване на всички плъгин, свързани с данни от БД при създаването на приставка е изключена."
1146
+
1147
+ #: views/view-options.php:159
1148
+ msgid "Should be activated directly before deactivation only!"
1149
+ msgstr "Трябва ли да се активира директно пред изключване само!"
1150
+
1151
+ #: views/view-options.php:179
1152
+ msgid "WP-Table Reloaded Data Export and Backup"
1153
+ msgstr "WP-Таблица Reloaded за експортиране на данни и архивиране"
1154
+
1155
+ #: views/view-options.php:182
1156
+ msgid "WP-Table Reloaded can export and import a so-called dump file that contains all tables, their settings and the plugin's options."
1157
+ msgstr "WP-Таблица Reloaded може износа и вноса на така наречените дъмп файл, който съдържа всички таблици, техните настройки и опции на плъгин."
1158
+
1159
+ #: views/view-options.php:182
1160
+ msgid "This file can be used as a backup or to move all data to another WordPress site."
1161
+ msgstr "Този файл може да се използва като резервен или да се преместят всички данни към друг сайт WordPress."
1162
+
1163
+ #: views/view-options.php:185
1164
+ msgid "Export a dump file"
1165
+ msgstr "Експортиране на файл за разтоварване"
1166
+
1167
+ #: views/view-options.php:187
1168
+ msgid "To export all Tables and their settings, click the button below to generate and download a dump file."
1169
+ msgstr "За да експортирате всички таблици и техните настройки, щракнете върху бутона по-долу за генериране и изтегляне на файл сметище."
1170
+
1171
+ #: views/view-options.php:187
1172
+ msgid "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!"
1173
+ msgstr "<strong> Забележка </ STRONG>: Да не <strong> </ STRONG> редактиране на съдържанието на този файл при никакви обстоятелства, тъй като ще унищожи файл!"
1174
+
1175
+ #: views/view-options.php:196
1176
+ msgid "Import a dump file"
1177
+ msgstr "Внос файл за разтоварване"
1178
+
1179
+ #: views/view-options.php:198
1180
+ msgid "To import a WP-Table Reloaded dump file and restore the included data, upload the file from your computer."
1181
+ msgstr "За да импортирате WP-Таблица Reloaded дъмп файл и възстановяване на включени данни, качване на файл от компютъра си."
1182
+
1183
+ #: views/view-options.php:198
1184
+ msgid "All current data of this WP-Table Reloaded installation (Tables, Options, Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
1185
+ msgstr "Всички настоящи данни на WP-Таблица инсталация Reloaded (таблици, Options, Settings) <strong> ще бъдат заменени с </ STRONG> с данни от файла!"
1186
+
1187
+ #: views/view-options.php:198
1188
+ msgid "Do not proceed, if you do not understand this!"
1189
+ msgstr "Do not proceed, if you do not understand this!"
1190
+
1191
+ #: views/view-options.php:198
1192
+ msgid "It is highly recommended to export and backup the data of this installation before importing another dump file (see above)."
1193
+ msgstr "Тя е силно препоръчително да изнасят и архивиране на данните от тази инсталация, преди да импортирате друг дъмп файл (виж по-горе)."
1194
+
1195
+ #: views/view-options.php:204
1196
+ msgid "Select Dump File"
1197
+ msgstr "Изберете файл за разтоварване"
1198
+
1199
+ #: views/view-options.php:206
1200
+ msgid "Import Dump File"
1201
+ msgstr "Внос дъмп файла"
1202
+
1203
+ #: views/view-options.php:216
1204
+ msgid "Manually Uninstall WP-Table Reloaded"
1205
+ msgstr "Ръчен Uninstall WP-Reloaded таблица"
1206
+
1207
+ #: views/view-options.php:218
1208
+ msgid "Uninstalling <strong>will permanently delete</strong> all tables, data, and options, that belong to WP-Table Reloaded from the database, including all tables you added or imported."
1209
+ msgstr "Деинсталиране <strong> ще изтрие </ STRONG> всички таблици, данни и възможности, които принадлежат към WP-Таблица Reloaded от базата данни, включително всички таблици сте добавили или внесени"
1210
+
1211
+ #: views/view-options.php:218
1212
+ msgid "You will manually need to remove the plugin's files from the plugin folder afterwards."
1213
+ msgstr "Ще ръчно трябва да се премахне плъгин на файлове от папка плъгин след това."
1214
+
1215
+ #: views/view-options.php:218
1216
+ msgid "Be very careful with this and only click the button if you know what you are doing!"
1217
+ msgstr "Бъдете много внимателни с това и само кликнете върху бутона, ако знаете какво правите!"
1218
+
1219
+ #: views/view-options.php:222
1220
+ msgid "Uninstall Plugin WP-Table Reloaded"
1221
+ msgstr "Uninstall Plug-in WP-Reloaded таблица"
1222
+
1223
+ #: views/view-options.php:233
1224
+ #: controllers/controller-admin.php:1085
1225
+ msgid "You do not have sufficient rights to access the Plugin Options."
1226
+ msgstr "Вие нямате достатъчно права за достъп до Plug-in Options."
1227
+
1228
+ #: views/view-uninstall.php:3
1229
+ msgid "Plugin deactivated successfully."
1230
+ msgstr "Plug-in деактивира успешно."
1231
+
1232
+ #: views/view-uninstall.php:4
1233
+ msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
1234
+ msgstr "Всички таблици, данни и варианти бяха изтрити. Сега можете да премахнете ръчно подпапка плъгин от вашия WordPress плъгин папка или използвайте \"Delete \" връзка на Plugins страницата."
1235
+
1236
+ #: views/view-list.php:2
1237
+ msgid "You may add, edit, copy, delete or preview tables here."
1238
+ msgstr "Можете да добавяте, редактирате, копиране, изтриване или преглед таблица тук."
1239
+
1240
+ #: views/view-list.php:2
1241
+ msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
1242
+ msgstr "Всяка маса е с уникален идентификационен номер, който трябва да се коригира в този кратък номер."
1243
+
1244
+ #: views/view-list.php:2
1245
+ msgid "You can also click the button &quot;%s&quot; in the editor toolbar to select and insert a table."
1246
+ msgstr "Можете също да щракнете върху бутона&quot;%s&quot;в лентата с инструменти редактор, за да изберете и вмъкнете таблица."
1247
+
1248
+ #: views/view-list.php:39
1249
+ msgid "(no name)"
1250
+ msgstr "(без име)"
1251
+
1252
+ #: views/view-list.php:40
1253
+ msgid "(no description)"
1254
+ msgstr "(без описание)"
1255
+
1256
+ #: views/view-list.php:58
1257
+ msgid "Edit %s"
1258
+ msgstr "Редактиране %s"
1259
+
1260
+ #: views/view-list.php:60
1261
+ #: classes/render.class.php:141
1262
+ msgid "Edit"
1263
+ msgstr "Редактиране"
1264
+
1265
+ #: views/view-list.php:62
1266
+ msgid "Shortcode"
1267
+ msgstr "Shortcode"
1268
+
1269
+ #: views/view-list.php:63
1270
+ msgid "Copy"
1271
+ msgstr "Копие"
1272
+
1273
+ #: views/view-list.php:64
1274
+ msgid "Export"
1275
+ msgstr "Износ"
1276
+
1277
+ #: views/view-list.php:66
1278
+ msgid "Preview of Table %s"
1279
+ msgstr "Преглед на таблица%s"
1280
+
1281
+ #: views/view-list.php:67
1282
+ msgid "Preview"
1283
+ msgstr "Преглед"
1284
+
1285
+ #: views/view-list.php:78
1286
+ msgid "Copy Tables"
1287
+ msgstr "Копирайте таблицата"
1288
+
1289
+ #: views/view-list.php:78
1290
+ msgid "Delete Tables"
1291
+ msgstr "Изтриване на таблици"
1292
+
1293
+ #: views/view-ajax_preview.php:3
1294
+ msgid "This is a preview of your table."
1295
+ msgstr "Това е преглед на вашата трапеза."
1296
+
1297
+ #: views/view-ajax_preview.php:4
1298
+ msgid "Because of CSS styling, the table might look different on your page!"
1299
+ msgstr "Поради CSS стайлинг, таблицата може да изглежда различно от страницата!"
1300
+
1301
+ #: views/view-ajax_preview.php:4
1302
+ msgid "The JavaScript libraries are also not available in this preview."
1303
+ msgstr "В JavaScript библиотеки също не са на разположение в този преглед."
1304
+
1305
+ #: views/view-add.php:4
1306
+ msgid "To add a new table, enter its name, a description (optional) and the number of rows and columns."
1307
+ msgstr "За да добавите нова таблица, въведете своето име, описание (по избор) и броя на редовете и колоните."
1308
+
1309
+ #: views/view-add.php:4
1310
+ msgid "You may also add, insert or delete rows and columns later."
1311
+ msgstr "Може би ще добавя, вмъкване или изтриване на редове и колони по-късно."
1312
+
1313
+ #: views/view-add.php:14
1314
+ msgid "Enter Table Name"
1315
+ msgstr "Въведете името на таблицата"
1316
+
1317
+ #: views/view-add.php:18
1318
+ msgid "Enter Description"
1319
+ msgstr "Въведете Описание"
1320
+
1321
+ #: views/view-add.php:21
1322
+ msgid "Number of Rows"
1323
+ msgstr "Броя на редовете"
1324
+
1325
+ #: views/view-add.php:25
1326
+ msgid "Number of Columns"
1327
+ msgstr "Време на живот"
1328
+
1329
+ #: views/view-add.php:32
1330
+ msgid "Add Table"
1331
+ msgstr "Добавяне на таблица"
1332
+
1333
+ #: controllers/controller-admin.php:255
1334
+ msgid "Arabic"
1335
+ msgstr "арабски"
1336
+
1337
+ #: controllers/controller-admin.php:256
1338
+ msgid "Belarusian"
1339
+ msgstr "беларуски"
1340
+
1341
+ #: controllers/controller-admin.php:257
1342
+ msgid "Czech"
1343
+ msgstr "чешки"
1344
+
1345
+ #: controllers/controller-admin.php:258
1346
+ msgid "German"
1347
+ msgstr "немски"
1348
+
1349
+ #: controllers/controller-admin.php:259
1350
+ msgid "English"
1351
+ msgstr "английски език"
1352
+
1353
+ #: controllers/controller-admin.php:260
1354
+ msgid "Spanish"
1355
+ msgstr "испански"
1356
+
1357
+ #: controllers/controller-admin.php:261
1358
+ msgid "Finnish"
1359
+ msgstr "фински"
1360
+
1361
+ #: controllers/controller-admin.php:262
1362
+ msgid "French"
1363
+ msgstr "френски"
1364
+
1365
+ #: controllers/controller-admin.php:263
1366
+ msgid "Hindi"
1367
+ msgstr "хинди"
1368
+
1369
+ #: controllers/controller-admin.php:264
1370
+ msgid "Indonesian"
1371
+ msgstr "индонезийски"
1372
+
1373
+ #: controllers/controller-admin.php:265
1374
+ msgid "Italian"
1375
+ msgstr "италиански"
1376
+
1377
+ #: controllers/controller-admin.php:266
1378
+ msgid "Japanese"
1379
+ msgstr "японски"
1380
+
1381
+ #: controllers/controller-admin.php:267
1382
+ msgid "Dutch"
1383
+ msgstr "холандски"
1384
+
1385
+ #: controllers/controller-admin.php:268
1386
+ msgid "Polish"
1387
+ msgstr "лак"
1388
+
1389
+ #: controllers/controller-admin.php:269
1390
+ msgid "Brazilian Portuguese"
1391
+ msgstr "бразилски португалски"
1392
+
1393
+ #: controllers/controller-admin.php:270
1394
+ msgid "Portuguese (Portugal)"
1395
+ msgstr "Португалски (Португалия)"
1396
+
1397
+ #: controllers/controller-admin.php:271
1398
+ msgid "Russian"
1399
+ msgstr "руски"
1400
+
1401
+ #: controllers/controller-admin.php:272
1402
+ msgid "Slovak"
1403
+ msgstr "словашки"
1404
+
1405
+ #: controllers/controller-admin.php:273
1406
+ msgid "Swedish"
1407
+ msgstr "шведски"
1408
+
1409
+ #: controllers/controller-admin.php:274
1410
+ msgid "Ukrainian"
1411
+ msgstr "украински"
1412
+
1413
+ #: controllers/controller-admin.php:275
1414
+ msgid "Chinese (Simplified)"
1415
+ msgstr "Китайски (опростен)"
1416
+
1417
+ #: controllers/controller-admin.php:305
1418
+ msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
1419
+ msgstr "Добре дошли в WP-Таблица Reloaded% s. Ако срещнете някакви въпроси или проблеми, моля, вижте <a href=\"%s\"> Често задавани въпроси </ A>, на <a href=\"%s\"> документация </ A>, и <един HREF = \"% s\"> <подкрепа / A> секция."
1420
+
1421
+ #: controllers/controller-admin.php:306
1422
+ msgid "Thank you for upgrading to WP-Table Reloaded %s."
1423
+ msgstr "Благодаря ви за модернизация на WP-Таблица Reloaded% s."
1424
+
1425
+ #: controllers/controller-admin.php:306
1426
+ msgid "This version includes several bugfixes and a few enhancements."
1427
+ msgstr "Тази версия включва няколко фиксирани бъга и няколко подобрения."
1428
+
1429
+ #: controllers/controller-admin.php:306
1430
+ msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
1431
+ msgstr "Моля, прочетете <a обявяването на освобождаването на <href=\"%s\"> </a> за повече информация."
1432
+
1433
+ #: controllers/controller-admin.php:306
1434
+ msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
1435
+ msgstr "Ако ви харесва новите характеристики и подобрения, бих бил малко <a дарение href=\"%s\"> </ A>. Благодаря."
1436
+
1437
+ #: controllers/controller-admin.php:311
1438
+ msgid "Hide this message"
1439
+ msgstr "Скрий това съобщение"
1440
+
1441
+ #: controllers/controller-admin.php:319
1442
+ msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
1443
+ msgstr "Благодаря за използването на този плъгин! Вие сте инсталирали WP-Table Reloaded преди повече от месец."
1444
+
1445
+ #: controllers/controller-admin.php:319
1446
+ msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
1447
+ msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
1448
+ msgstr[0] "Ако тя работи и сте доволни от резултатите от управлението на вашето%s, не е на стойност най-малко един долар или евро?"
1449
+ msgstr[1] "Ако тя работи и сте доволни от резултатите от управлението на вашето%s, не е на стойност най-малко един долар или евро?"
1450
+ msgstr[2] "Ако тя работи и сте доволни от резултатите от управлението на вашето%s, не е на стойност най-малко един долар или евро?"
1451
+
1452
+ #: controllers/controller-admin.php:320
1453
+ 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!"
1454
+ msgstr "<a href=\"%s\"> дарения </ A> ми помагат да продължа развитието и поддръжката на този <i> безплатно </ I> софтуер - все неща, за които прекарваме безброй часове от свободното си време! Благодаря ви!"
1455
+
1456
+ #: controllers/controller-admin.php:321
1457
+ msgid "Sure, no problem!"
1458
+ msgstr "Разбира се, няма проблем!"
1459
+
1460
+ #: controllers/controller-admin.php:322
1461
+ msgid "I already donated."
1462
+ msgstr "Аз вече дари."
1463
+
1464
+ #: controllers/controller-admin.php:323
1465
+ msgid "No, thanks. Don't ask again."
1466
+ msgstr "Не, благодаря. Не питай отново"
1467
+
1468
+ #: controllers/controller-admin.php:351
1469
+ msgid "Table &quot;%s&quot; added successfully."
1470
+ msgstr "Таблица &quot; %s &quot;добавен успешно."
1471
+
1472
+ #: controllers/controller-admin.php:382
1473
+ msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
1474
+ msgstr "Таблица редактиран успешно. Тази маса сега е номер% s. Ще трябва да се приспособят съществуващите кратки съответно."
1475
+
1476
+ #: controllers/controller-admin.php:384
1477
+ msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
1478
+ msgstr "Идентификаторът не може да бъде променен от%s до%s, защото там вече е таблица с това ID"
1479
+
1480
+ #: controllers/controller-admin.php:387
1481
+ msgid "Table edited successfully."
1482
+ msgstr "Таблица редактиран успешно."
1483
+
1484
+ #: controllers/controller-admin.php:436
1485
+ msgid "Rows swapped successfully."
1486
+ msgstr "Ред замениха успешно."
1487
+
1488
+ #: controllers/controller-admin.php:457
1489
+ msgid "Columns swapped successfully."
1490
+ msgstr "Колони заменени успешно."
1491
+
1492
+ #: controllers/controller-admin.php:498
1493
+ msgid "Table sorted successfully."
1494
+ msgstr "Таблица сортирани успешно."
1495
+
1496
+ #: controllers/controller-admin.php:521
1497
+ msgid "Row moved successfully."
1498
+ msgstr "Ред преместен успешно."
1499
+
1500
+ #: controllers/controller-admin.php:548
1501
+ msgid "Column moved successfully."
1502
+ msgstr "Колона преместен успешно."
1503
+
1504
+ #: controllers/controller-admin.php:556
1505
+ msgid "Row could not be deleted."
1506
+ msgid_plural "Rows could not be deleted."
1507
+ msgstr[0] "Ред не може да бъде изтрита."
1508
+ msgstr[1] "Ред не може да бъде изтрита."
1509
+ msgstr[2] "Ред не може да бъде изтрита."
1510
+
1511
+ #: controllers/controller-admin.php:565
1512
+ msgid "Row deleted successfully."
1513
+ msgid_plural "Rows deleted successfully."
1514
+ msgstr[0] "Ред е изтрита успешно."
1515
+ msgstr[1] "Ред е изтрита успешно."
1516
+ msgstr[2] "Ред е изтрита успешно."
1517
+
1518
+ #: controllers/controller-admin.php:575
1519
+ msgid "Column could not be deleted."
1520
+ msgid_plural "Columns could not be deleted."
1521
+ msgstr[0] "Колона не може да бъде изтрита."
1522
+ msgstr[1] "Колона не може да бъде изтрита."
1523
+ msgstr[2] "Колона не може да бъде изтрита."
1524
+
1525
+ #: controllers/controller-admin.php:588
1526
+ msgid "Column deleted successfully."
1527
+ msgid_plural "Columns deleted successfully."
1528
+ msgstr[0] "Колона изтрити успешно."
1529
+ msgstr[1] "Колона изтрити успешно."
1530
+ msgstr[2] "Колона изтрити успешно."
1531
+
1532
+ #: controllers/controller-admin.php:611
1533
+ msgid "Row inserted successfully."
1534
+ msgid_plural "Rows inserted successfully."
1535
+ msgstr[0] "Ред добавя успешно."
1536
+ msgstr[1] "Ред добавя успешно."
1537
+ msgstr[2] "Ред добавя успешно."
1538
+
1539
+ #: controllers/controller-admin.php:638
1540
+ msgid "Column inserted successfully."
1541
+ msgid_plural "Columns inserted successfully."
1542
+ msgstr[0] "Column inserted successfully."
1543
+ msgstr[1] "Column inserted successfully."
1544
+ msgstr[2] "Column inserted successfully."
1545
+
1546
+ #: controllers/controller-admin.php:653
1547
+ msgid "Row added successfully."
1548
+ msgid_plural "Rows added successfully."
1549
+ msgstr[0] "Row added successfully."
1550
+ msgstr[1] "Row added successfully."
1551
+ msgstr[2] "Row added successfully."
1552
+
1553
+ #: controllers/controller-admin.php:667
1554
+ msgid "Column added successfully."
1555
+ msgid_plural "Columns added successfully."
1556
+ msgstr[0] "Колона добавен успешно."
1557
+ msgstr[1] "Колона добавен успешно."
1558
+ msgstr[2] "Колона добавен успешно."
1559
+
1560
+ #: controllers/controller-admin.php:674
1561
+ msgid "Could not add Custom Data Field, because you did not enter a name."
1562
+ msgstr "Не може да добавяте собствени данни поле, защото не сте въвели име."
1563
+
1564
+ #: controllers/controller-admin.php:679
1565
+ msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
1566
+ msgstr "Не може да добавяте собствени данни поле, защото въведеното от вас име е запазено за други таблицата с данни."
1567
+
1568
+ #: controllers/controller-admin.php:685
1569
+ msgid "Could not add Custom Data Field, because the name contained illegal characters."
1570
+ msgstr "Не може да добавяте собствени данни поле, тъй като наименованието, непозволени знаци."
1571
+
1572
+ #: controllers/controller-admin.php:689
1573
+ msgid "Could not add Custom Data Field, because a Field with that name already exists."
1574
+ msgstr "Не може да добавяте собствени данни поле, тъй като на поле с това име вече съществува"
1575
+
1576
+ #: controllers/controller-admin.php:695
1577
+ msgid "Custom Data Field added successfully."
1578
+ msgstr "Избор на поле с данни добавен успешно."
1579
+
1580
+ #: controllers/controller-admin.php:735
1581
+ #: controllers/controller-admin.php:791
1582
+ msgid "Copy of"
1583
+ msgstr "Копие от"
1584
+
1585
+ #: controllers/controller-admin.php:739
1586
+ msgid "Table copied successfully."
1587
+ msgid_plural "Tables copied successfully."
1588
+ msgstr[0] "Таблица копирани успешно."
1589
+ msgstr[1] "Таблица копирани успешно."
1590
+ msgstr[2] "Таблица копирани успешно."
1591
+
1592
+ #: controllers/controller-admin.php:745
1593
+ msgid "Table deleted successfully."
1594
+ msgid_plural "Tables deleted successfully."
1595
+ msgstr[0] "Таблица изтрити успешно."
1596
+ msgstr[1] "Таблица изтрити успешно."
1597
+ msgstr[2] "Таблица изтрити успешно."
1598
+
1599
+ #: controllers/controller-admin.php:766
1600
+ #: controllers/controller-admin.php:921
1601
+ #: controllers/controller-admin.php:959
1602
+ msgid "Table imported successfully."
1603
+ msgid_plural "Tables imported successfully."
1604
+ msgstr[0] "Таблица внесен успешно."
1605
+ msgstr[1] "Таблица внесен успешно."
1606
+ msgstr[2] "Таблица внесен успешно."
1607
+
1608
+ #: controllers/controller-admin.php:773
1609
+ msgid "You did not select any tables!"
1610
+ msgstr "Вие не сте избрали всички маси!"
1611
+
1612
+ #: controllers/controller-admin.php:796
1613
+ msgid "Table &quot;%s&quot; copied successfully."
1614
+ msgstr "Таблица &quot;%s&quot;копирани успешно."
1615
+
1616
+ #: controllers/controller-admin.php:814
1617
+ msgid "Table &quot;%s&quot; deleted successfully."
1618
+ msgstr "Таблица &quot;%s&quot;успешно изтрити."
1619
+
1620
+ #: controllers/controller-admin.php:822
1621
+ msgid "Custom Data Field deleted successfully."
1622
+ msgstr "Избор на поле с данни бяха успешно изтрити."
1623
+
1624
+ #: controllers/controller-admin.php:824
1625
+ msgid "Custom Data Field could not be deleted."
1626
+ msgstr "Избор на поле с данни не може да бъде изтрита"
1627
+
1628
+ #: controllers/controller-admin.php:830
1629
+ msgid "Delete failed."
1630
+ msgstr "Неуспешно изтриване."
1631
+
1632
+ #: controllers/controller-admin.php:862
1633
+ #: controllers/controller-admin.php:872
1634
+ #: controllers/controller-admin.php:883
1635
+ msgid "Imported Table"
1636
+ msgstr "Внесените таблица"
1637
+
1638
+ #: controllers/controller-admin.php:863
1639
+ #: controllers/controller-admin.php:884
1640
+ msgid "from %s"
1641
+ msgstr "от% s"
1642
+
1643
+ #: controllers/controller-admin.php:873
1644
+ msgid "via form"
1645
+ msgstr "чрез форма"
1646
+
1647
+ #: controllers/controller-admin.php:900
1648
+ #: controllers/controller-admin.php:937
1649
+ msgid "Table could not be imported."
1650
+ msgstr "Таблица не може да бъде внесен."
1651
+
1652
+ #: controllers/controller-admin.php:917
1653
+ msgid "Table %s (%s) replaced successfully."
1654
+ msgstr "Таблица%s (%s ) заменя успешно."
1655
+
1656
+ #: controllers/controller-admin.php:967
1657
+ #: controllers/controller-admin.php:1160
1658
+ msgid "You do not have sufficient rights to perform this action."
1659
+ msgstr "Вие нямате достатъчно права за извършване на това действие."
1660
+
1661
+ #: controllers/controller-admin.php:974
1662
+ msgid "You did not upload a WP-Table Reloaded dump file."
1663
+ msgstr "Не сте качите WP-Таблица Reloaded дъмп файл."
1664
+
1665
+ #: controllers/controller-admin.php:983
1666
+ msgid "The uploaded dump file is empty. Please upload a valid dump file."
1667
+ msgstr "Каченият дъмп файл е празен. Моля, качи валиден файл сметище."
1668
+
1669
+ #: controllers/controller-admin.php:1011
1670
+ msgid "All Tables, Settings and Options were successfully imported."
1671
+ msgstr "Всички таблици, настройките и опциите са импортирани успешно."
1672
+
1673
+ #: controllers/controller-admin.php:1040
1674
+ msgid "Table &quot;%s&quot; exported successfully."
1675
+ msgstr "Таблица&quot;%s&quot; изнасят успешно."
1676
+
1677
+ #: controllers/controller-admin.php:1141
1678
+ msgid "Options saved successfully."
1679
+ msgstr "Опции запазени успешно."
1680
+
1681
+ #: controllers/controller-admin.php:1144
1682
+ msgid "<a href=\"%s\">Click here to Proceed.</a>"
1683
+ msgstr "<a href=\"%s\">Щракнете тук, за да продължите.</a>"
1684
+
1685
+ #: controllers/controller-admin.php:1210
1686
+ msgid "There is no table with this ID!"
1687
+ msgstr "Не съществува таблица с този номер!"
1688
+
1689
+ #: controllers/controller-admin.php:1237
1690
+ msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
1691
+ msgstr "Благодаря ви много! Вашето дарение е много оценявам. Просто са допринесли за по-нататъшното развитие на WP-Таблица Reloaded!"
1692
+
1693
+ #: controllers/controller-admin.php:1239
1694
+ 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 &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
1695
+ msgstr "Няма проблем! Все още се надявам да се радвате на предимствата, които WP-Таблица Reloaded ви предлага. Ако трябва да искате да промените мнението си, винаги можеш да намериш на \"%s\"бутона на <a href=\"%s\"> WP-Таблица уебсайт: Презареждане </ A>."
1696
+
1697
+ #: controllers/controller-admin.php:1239
1698
+ #: controllers/controller-admin.php:1678
1699
+ msgid "Donate"
1700
+ msgstr "Дарения"
1701
+
1702
+ #: controllers/controller-admin.php:1262
1703
+ #: controllers/controller-admin.php:1269
1704
+ msgid "List of Tables"
1705
+ msgstr "Списък на таблиците"
1706
+
1707
+ #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.9.2) #-#-#-#-#
1708
+ #. Plugin Name of the plugin/theme
1709
+ #: controllers/controller-admin.php:1262
1710
+ #: controllers/controller-admin.php:1266
1711
+ #: controllers/controller-admin.php:1268
1712
+ msgid "WP-Table Reloaded"
1713
+ msgstr "WP-Reloaded таблица"
1714
+
1715
+ #: controllers/controller-admin.php:1263
1716
+ #: controllers/controller-admin.php:1299
1717
+ msgid "Add new Table"
1718
+ msgstr "Добавяне на нова таблица"
1719
+
1720
+ #: controllers/controller-admin.php:1264
1721
+ #: controllers/controller-admin.php:1300
1722
+ msgid "Import a Table"
1723
+ msgstr "Импортиране на таблица"
1724
+
1725
+ #: controllers/controller-admin.php:1265
1726
+ #: controllers/controller-admin.php:1301
1727
+ msgid "Export a Table"
1728
+ msgstr "Експортиране на таблица"
1729
+
1730
+ #: controllers/controller-admin.php:1267
1731
+ msgid "About WP-Table Reloaded"
1732
+ msgstr "За WP-Reloaded таблица"
1733
+
1734
+ #: controllers/controller-admin.php:1275
1735
+ msgid "Edit Table &quot;%s&quot; (ID %s)"
1736
+ msgstr "Edit Table &quot;%s&quot; (ID %s)"
1737
+
1738
+ #: controllers/controller-admin.php:1276
1739
+ msgid "Preview of Table &quot;%s&quot; (ID %s)"
1740
+ msgstr "Разглеждане на маса&quot;%s&quot; (ID %s)"
1741
+
1742
+ #: controllers/controller-admin.php:1309
1743
+ msgid "About the plugin"
1744
+ msgstr "За плъгин"
1745
+
1746
+ #: controllers/controller-admin.php:1674
1747
+ msgid "WP-Table Reloaded Plugin Page"
1748
+ msgstr "WP-Reloaded Таблица Plug-in страница"
1749
+
1750
+ #: controllers/controller-admin.php:1674
1751
+ msgid "Plugin Page"
1752
+ msgstr "Plug-in страница"
1753
+
1754
+ #: controllers/controller-admin.php:1675
1755
+ msgid "Frequently Asked Questions"
1756
+ msgstr "Често задавани въпроси"
1757
+
1758
+ #: controllers/controller-admin.php:1675
1759
+ msgid "FAQ"
1760
+ msgstr "Често задавани въпроси"
1761
+
1762
+ #: controllers/controller-admin.php:1676
1763
+ msgid "Support"
1764
+ msgstr "Подкрепа"
1765
+
1766
+ #: controllers/controller-admin.php:1677
1767
+ msgid "Plugin Documentation"
1768
+ msgstr "Plug-in Документация"
1769
+
1770
+ #: controllers/controller-admin.php:1677
1771
+ msgid "Documentation"
1772
+ msgstr "Документация"
1773
+
1774
+ #: controllers/controller-admin.php:1678
1775
+ msgid "Support WP-Table Reloaded with your donation!"
1776
+ msgstr "Подкрепа WP-Таблица Reloaded с дарение!"
1777
+
1778
+ #: controllers/controller-admin.php:1717
1779
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
1780
+ msgstr "Наистина ли искате да активирате това? Вие трябва да направите това точно преди деинсталация!"
1781
+
1782
+ #: controllers/controller-admin.php:1718
1783
+ msgid "URL of link to insert"
1784
+ msgstr "URL на връзка, за да вмъкнете"
1785
+
1786
+ #: controllers/controller-admin.php:1719
1787
+ msgid "Text of link"
1788
+ msgstr "Текст на връзката"
1789
+
1790
+ #: controllers/controller-admin.php:1720
1791
+ msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
1792
+ msgstr "За да въведете следния код HTML за връзка в клетка, просто щракнете върху клетката, след като затворите този прозорец."
1793
+
1794
+ #: controllers/controller-admin.php:1721
1795
+ msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
1796
+ msgstr "За да вмъкнете изображение, кликнете върху \"OK\" и след това щракнете в клетката, в която искате да вмъкнете изображение."
1797
+
1798
+ #: controllers/controller-admin.php:1721
1799
+ msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
1800
+ msgstr "Медиите библиотека ще се отвори, от които можете да изберете желаната снимка или въведете URL адреса на изображението."
1801
+
1802
+ #: controllers/controller-admin.php:1721
1803
+ msgid "Click the &quot;%s&quot; button to insert the image."
1804
+ msgstr "Кликнете върху &quot;%s&quot бутона, за да вмъкнете изображението."
1805
+
1806
+ #: controllers/controller-admin.php:1721
1807
+ msgid "Insert into Post"
1808
+ msgstr "Поставете в публикация"
1809
+
1810
+ #: controllers/controller-admin.php:1722
1811
+ msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
1812
+ msgstr "За комбиниране на клетките в ред, кликнете в клетката на правото на клетката, която има съдържание комбинираният клетки."
1813
+
1814
+ #: controllers/controller-admin.php:1723
1815
+ msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
1816
+ msgstr "За да комбинирате клетки в колона, кликнете в клетката по-долу клетка, която има съдържание комбинираният клетки."
1817
+
1818
+ #: controllers/controller-admin.php:1724
1819
+ msgid "Do you want to copy the selected tables?"
1820
+ msgstr "Искате ли да копирате избраните таблици?"
1821
+
1822
+ #: controllers/controller-admin.php:1725
1823
+ msgid "The selected tables and all content will be erased. Do you really want to delete them?"
1824
+ msgstr "Избраните таблици и всички материали ще бъдат изтрити. Наистина ли искате да ги изтриете?"
1825
+
1826
+ #: controllers/controller-admin.php:1726
1827
+ msgid "Do you really want to import the selected tables from the wp-Table plugin?"
1828
+ msgstr "Наистина ли искате да импортирате избрани таблици от WP-Таблица плъгин?"
1829
+
1830
+ #: controllers/controller-admin.php:1727
1831
+ msgid "Do you want to copy this table?"
1832
+ msgstr "Искате ли да копирате тази таблица?"
1833
+
1834
+ #: controllers/controller-admin.php:1728
1835
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
1836
+ msgstr "Пълната маса и всички материали ще бъдат изтрити. Наистина ли искате да го изтриете?"
1837
+
1838
+ #: controllers/controller-admin.php:1729
1839
+ msgid "Do you really want to delete the selected rows?"
1840
+ msgstr "Наистина ли искате да изтриете избраните редове?"
1841
+
1842
+ #: controllers/controller-admin.php:1730
1843
+ msgid "Do you really want to delete the selected columns?"
1844
+ msgstr "Наистина ли искате да изтриете избраните колони?"
1845
+
1846
+ #: controllers/controller-admin.php:1731
1847
+ #: controllers/controller-admin.php:1735
1848
+ #: controllers/controller-admin.php:1737
1849
+ msgid "You have not selected any rows."
1850
+ msgstr "Не сте избрали никакви редове."
1851
+
1852
+ #: controllers/controller-admin.php:1732
1853
+ #: controllers/controller-admin.php:1736
1854
+ #: controllers/controller-admin.php:1738
1855
+ msgid "You have not selected any columns."
1856
+ msgstr "Не сте избрали никакви колони."
1857
+
1858
+ #: controllers/controller-admin.php:1733
1859
+ msgid "You can not delete all rows of the table at once!"
1860
+ msgstr "Не можете да изтриете всички редове от таблицата наведнъж!"
1861
+
1862
+ #: controllers/controller-admin.php:1734
1863
+ msgid "You can not delete all columns of the table at once!"
1864
+ msgstr "Не можете да изтриете всички колони на таблицата наведнъж!"
1865
+
1866
+ #: controllers/controller-admin.php:1739
1867
+ msgid "Do you really want to import this table from the wp-Table plugin?"
1868
+ msgstr "Наистина ли искате да импортирате таблицата от WP-Таблица плъгин?"
1869
+
1870
+ #: controllers/controller-admin.php:1740
1871
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
1872
+ msgstr "Наистина ли искате да деинсталирате приставката и да изтриете всички данни?"
1873
+
1874
+ #: controllers/controller-admin.php:1741
1875
+ msgid "Are you really sure?"
1876
+ msgstr "Наистина ли сте сигурен?"
1877
+
1878
+ #: controllers/controller-admin.php:1742
1879
+ msgid "Do you really want to change the ID of the table?"
1880
+ msgstr "Наистина ли искате да промените ИД на таблицата?"
1881
+
1882
+ #: controllers/controller-admin.php:1743
1883
+ msgid "To show this Custom Data Field, use this shortcode:"
1884
+ msgstr "За да покажете този избор на поле с данни, използвайте този кратък номер:"
1885
+
1886
+ #: controllers/controller-admin.php:1744
1887
+ msgid "To show this table, use this shortcode:"
1888
+ msgstr "За да покажете тази таблица, използвайте тази кратък номер:"
1889
+
1890
+ #: controllers/controller-admin.php:1745
1891
+ msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
1892
+ msgstr "Забележка: Вие ще изгубите всички настоящи таблици и настройки! Трябва да създадете резервно копие на челно място. Трябва да знаете!"
1893
+
1894
+ #: controllers/controller-admin.php:1746
1895
+ msgid "You have made changes to the content of this table and not yet saved them."
1896
+ msgstr "You have made changes to the content of this table and not yet saved them."
1897
+
1898
+ #: controllers/controller-admin.php:1746
1899
+ msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
1900
+ msgstr "Първо трябва да щракнете върху \"%s\" или те ще бъдат загубени, ако излезете от тази страница .."
1901
+
1902
+ #: controllers/controller-admin.php:1796
1903
+ msgid "Insert a Table"
1904
+ msgstr "Поставете масата"
1905
+
1906
+ #: controllers/controller-admin.php:1853
1907
+ msgid "Please wait..."
1908
+ msgstr "Моля, изчакайте .."
1909
+
1910
+ #: controllers/controller-admin.php:1854
1911
+ msgid "Show _MENU_ Tables"
1912
+ msgstr "Покажи _MENU_ таблици"
1913
+
1914
+ #: controllers/controller-admin.php:1855
1915
+ msgid "All"
1916
+ msgstr "всички"
1917
+
1918
+ #: controllers/controller-admin.php:1857
1919
+ msgid "_START_ to _END_ of _TOTAL_ Tables"
1920
+ msgstr "_START_ да _END_ на _TOTAL_ таблици"
1921
+
1922
+ #: controllers/controller-admin.php:1858
1923
+ msgid "(filtered from _MAX_ Tables)"
1924
+ msgstr "(филтрирани от _MAX_ таблици)"
1925
+
1926
+ #: controllers/controller-admin.php:1859
1927
+ msgid "Filter:"
1928
+ msgstr "Филтър:"
1929
+
1930
+ #: controllers/controller-admin.php:1860
1931
+ msgid "First"
1932
+ msgstr "Първи"
1933
+
1934
+ #: controllers/controller-admin.php:1861
1935
+ msgid "Back"
1936
+ msgstr "Обратно"
1937
+
1938
+ #: controllers/controller-admin.php:1862
1939
+ msgid "Next"
1940
+ msgstr "Следваща"
1941
+
1942
+ #: controllers/controller-admin.php:1863
1943
+ msgid "Last"
1944
+ msgstr "Последно"
1945
+
1946
+ #: classes/import.class.php:36
1947
+ #: classes/export.class.php:28
1948
+ msgid "CSV - Character-Separated Values"
1949
+ msgstr "CSV - Знак стойности, разделени"
1950
+
1951
+ #: classes/import.class.php:37
1952
+ #: classes/export.class.php:29
1953
+ msgid "HTML - Hypertext Markup Language"
1954
+ msgstr "HTML - Hypertext Markup Language"
1955
+
1956
+ #: classes/import.class.php:38
1957
+ #: classes/export.class.php:30
1958
+ msgid "XML - eXtended Markup Language"
1959
+ msgstr "XML - Разширен език за маркиране"
1960
+
1961
+ #: classes/helper.class.php:74
1962
+ msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
1963
+ msgstr "Благодарим Ви, че използвате <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\"> WP-Таблица Презареждане </ A>."
1964
+
1965
+ #: classes/helper.class.php:74
1966
+ msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
1967
+ msgstr "Подкрепа за плъгин с <a href=\"%s\"> дарение </ A>!"
1968
+
1969
+ #: classes/helper.class.php:104
1970
+ #: classes/helper.class.php:109
1971
+ msgid "Table cells can span across more than one column or row."
1972
+ msgstr "Таблица клетки могат да се простират през повече от една колона или ред."
1973
+
1974
+ #: classes/helper.class.php:104
1975
+ msgid "Combining consecutive cells within the same row is called \"colspanning\"."
1976
+ msgstr "Комбинирането на последователни клетки в рамките на един и същи ред, се нарича \"colspanning, \"."
1977
+
1978
+ #: classes/helper.class.php:104
1979
+ msgid "To combine cells, add the keyword #colspan# to the cell to the right of the one with the content for the combined cell by using the corresponding button."
1980
+ msgstr "За да комбинирате клетки, добавете ключовата дума # # colspan клетката на правото на една със съдържанието, за комбинирано клетка с помощта на съответния бутон."
1981
+
1982
+ #: classes/helper.class.php:104
1983
+ #: classes/helper.class.php:109
1984
+ msgid "Repeat this to add the keyword to all cells that shall be connected."
1985
+ msgstr "Повторете това, за да добавите ключовата дума за всички клетки, които се свързват."
1986
+
1987
+ #: classes/helper.class.php:104
1988
+ #: classes/helper.class.php:109
1989
+ msgid "Be aware that the JavaScript libraries will not work on tables which have combined cells."
1990
+ msgstr "Имайте предвид, че JavaScript библиотеки няма да работи на таблици, които са комбинирани клетки."
1991
+
1992
+ #: classes/helper.class.php:109
1993
+ msgid "Combining consecutive cells within the same column is called \"rowspanning\"."
1994
+ msgstr "Комбинирането на последователни клетки в същата колона се нарича \"rowspanning, \"."
1995
+
1996
+ #: classes/helper.class.php:109
1997
+ msgid "To combine cells, add the keyword #rowspan# to the cell below the one with the content for the combined cell by using the corresponding button."
1998
+ msgstr "За да комбинирате клетки, добавете ключовата дума # # rowspan клетка под този със съдържанието за комбинирано клетка с помощта на съответния бутон."
1999
+
2000
+ #: classes/helper.class.php:118
2001
+ msgid "Help"
2002
+ msgstr "помощ"
2003
+
2004
+ #: classes/export.class.php:33
2005
+ msgid "; (semicolon)"
2006
+ msgstr "; (точка и запетая)"
2007
+
2008
+ #: classes/export.class.php:34
2009
+ msgid ", (comma)"
2010
+ msgstr ", (Запетая)"
2011
+
2012
+ #: classes/export.class.php:35
2013
+ msgid ": (colon)"
2014
+ msgstr ": (двоеточие)"
2015
+
2016
+ #: classes/export.class.php:36
2017
+ msgid ". (dot)"
2018
+ msgstr ". (точка)"
2019
+
2020
+ #: classes/export.class.php:37
2021
+ msgid "| (pipe)"
2022
+ msgstr "| (тръба)"
2023
+
2024
+ #. Plugin URI of the plugin/theme
2025
+ msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2026
+ msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2027
+
2028
+ #. Description of the plugin/theme
2029
+ 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."
2030
+ msgstr "Този плъгин ви позволява да създавате и лесно управление на масите в Админ-пространство на WordPress. Удобен гръб позволява лесна манипулация на данни от таблица. След това може да включва таблици в публикациите си, на страниците си или в текста джаджи с помощта на кратък номер или функция шаблон маркер. Таблиците могат да бъдат внасяни и изнасяни от / до, XML CSV и HTML."
2031
+
2032
+ #. Author of the plugin/theme
2033
+ msgid "Tobias B&auml;thge"
2034
+ msgstr "Tobias B&auml;thge"
2035
+
2036
+ #. Author URI of the plugin/theme
2037
+ msgid "http://tobias.baethge.com/"
2038
+ msgstr "http://tobias.baethge.com/"
2039
+
2040
+ #~ msgid "This is the &quot;%s&quot; screen."
2041
+ #~ msgstr "Това е &quot;%s&quotекрана."
2042
+
2043
+ #~ msgid "Hide|expand"
2044
+ #~ msgstr "Скрий | разшири"
2045
+
2046
+ #~ msgid "Hide|item"
2047
+ #~ msgstr "Скрий | т."
2048
+
2049
+ #~ msgid "Unhide|item"
2050
+ #~ msgstr "Показване | т."
2051
+
2052
+ #~ msgid "Selected rows: %s %s|hide_unhide"
2053
+ #~ msgstr "Избрани редове:%s%s | hide_unhide"
2054
+
2055
+ #~ msgid "Selected rows:"
2056
+ #~ msgstr "Избрани редове:"
2057
+
2058
+ #~ msgid "Selected columns: %s %s|hide_unhide"
2059
+ #~ msgstr "Избрани колони:% s% s | hide_unhide"
2060
+
2061
+ #~ msgid "Selected columns:"
2062
+ #~ msgstr "Избрани колони:"
2063
+
2064
+ #~ msgid "Selected rows: %s %s|insert_delete"
2065
+ #~ msgstr "Избрани редове: :% s% s | insert_delete"
2066
+
2067
+ #~ msgid "Selected columns: %s %s|insert_delete"
2068
+ #~ msgstr "изберете колона :% s% s | insert_delete"
2069
+
2070
+ #~ msgid "Administrator|User role"
2071
+ #~ msgstr "Administrator | Потребителско роля"
2072
+
2073
+ #~ msgid "Editor|User role"
2074
+ #~ msgstr "Редактор | Потребителско роля"
2075
+
2076
+ #~ msgid "Author|User role"
2077
+ #~ msgstr "Автор | Потребителско роля"
2078
+
2079
+ #~ msgid "Contributor|User role"
2080
+ #~ msgstr "Сътрудник | Потребителско роля"
2081
+
2082
+ #~ msgid "Change will take effect after another page load after saving."
2083
+ #~ msgstr ""
2084
+ #~ "Промяната ще влезе в сила след друга страница натоварване след "
2085
+ #~ "записването."
2086
+
2087
+ #~ msgid ""
2088
+ #~ "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/"
2089
+ #~ "\">Rics</a>)"
2090
+ #~ msgstr ""
2091
+ #~ "Бразилски Португалски (благодарение на <a href=\"http://www.pensarics."
2092
+ #~ "com/\"> Rics </ A>)"
2093
+
2094
+ #~ msgid ""
2095
+ #~ "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
2096
+ #~ msgstr ""
2097
+ #~ "Чешката (благодарение на <a href=\"http://separatista.net/\"> "
2098
+ #~ "Separatista </ A>)"
2099
+
2100
+ #~ msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
2101
+ #~ msgstr ""
2102
+ #~ "Японски (благодарение на <a href=\"http://www.u-1.net/\"> Yuuichi </ A>)"
2103
+
2104
+ #~ msgid "Slovak (thanks to <a href=\"http://lukas.cerro.sk/\">55.lukas</a>)"
2105
+ #~ msgstr ""
2106
+ #~ "Словакия (благодарение на <a href=\"http://lukas.cerro.sk/\"> 55.lukas "
2107
+ #~ "</ A>)"
2108
+
2109
+ #~ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
2110
+ #~ msgstr ""
2111
+ #~ "Шведски (благодарение на <a href=\"http://www.zuperzed.se/\"> ZuperZed "
2112
+ #~ "</ A>)"
languages/wp-table-reloaded-de_DE.mo CHANGED
Binary file
languages/wp-table-reloaded-de_DE.po CHANGED
@@ -86,7 +86,7 @@ msgstr "Beschreibung"
86
  msgid "Action"
87
  msgstr "Aktion"
88
 
89
- #: controllers/controller-admin.php:1856
90
  #: views/view-ajax_list.php:53
91
  #: views/view-export.php:72
92
  #: views/view-list.php:87
@@ -411,7 +411,7 @@ msgstr "Administratoren können weitere Admin-Optionen ändern."
411
  msgid "Frontend Options"
412
  msgstr "Darstellungsoptionen"
413
 
414
- #: views/view-about.php:89
415
  #: views/view-edit.php:15
416
  #: views/view-edit.php:51
417
  #: views/view-edit.php:104
@@ -428,7 +428,7 @@ msgctxt "expand"
428
  msgid "Hide"
429
  msgstr "Ausblenden"
430
 
431
- #: views/view-about.php:89
432
  #: views/view-edit.php:15
433
  #: views/view-edit.php:51
434
  #: views/view-edit.php:104
@@ -584,7 +584,7 @@ msgstr "Liste der Tabellen"
584
  msgid "Yes, use the DataTables JavaScript features (sorting, pagination, filtering) on the &quot;%s&quot; screen."
585
  msgstr "Ja, die Funktionen der DataTables-JavaScript-Bibliothek (Sortieren, Paginierung, Suche) auch auf der &quot;%s&quot;-Seite nutzen."
586
 
587
- #: controllers/controller-admin.php:1298
588
  #: views/view-options.php:83
589
  #@ wp-table-reloaded
590
  msgid "List Tables"
@@ -851,7 +851,7 @@ msgstr "Sei hiermit äußerst vorsichtig und klicke die Schaltfläche nur, wenn
851
  msgid "Uninstall Plugin WP-Table Reloaded"
852
  msgstr "Plugin WP-Table Reloaded deinstallieren"
853
 
854
- #: controllers/controller-admin.php:1085
855
  #: views/view-options.php:233
856
  #@ wp-table-reloaded
857
  msgid "You do not have sufficient rights to access the Plugin Options."
@@ -883,8 +883,8 @@ msgstr "Bitte beachte, dass nur die Daten der Tabelle, jedoch keine Optionen ode
883
  msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
884
  msgstr "Zur Sicherung aller Tabellen, einschließlich der Einstellungen, auf einmal, nutze &quot;%s&quot;-Knopf in den &quot;%s&quot;."
885
 
886
- #: controllers/controller-admin.php:1266
887
- #: controllers/controller-admin.php:1308
888
  #: views/view-edit.php:350
889
  #: views/view-edit.php:365
890
  #: views/view-export.php:10
@@ -915,12 +915,12 @@ msgstr "Nur bei CSV-Export nötig."
915
  #: views/view-export.php:54
916
  #@ wp-table-reloaded
917
  msgid "Download file"
918
- msgstr "Datei downloaden"
919
 
920
  #: views/view-export.php:55
921
  #@ wp-table-reloaded
922
  msgid "Yes, I want to download the export file."
923
- msgstr "Ja, ich möchte die Export-Datei downloaden."
924
 
925
  #: views/view-edit.php:477
926
  #: views/view-export.php:60
@@ -948,7 +948,7 @@ msgstr "Informationen über die Tabelle"
948
  msgid "Table ID"
949
  msgstr "Tabellen-ID"
950
 
951
- #: controllers/controller-admin.php:1746
952
  #: views/view-edit.php:41
953
  #: views/view-edit.php:253
954
  #: views/view-edit.php:413
@@ -1244,7 +1244,7 @@ msgstr "Nutze JavaScript-Bibliothek"
1244
  #: views/view-edit.php:347
1245
  #@ wp-table-reloaded
1246
  msgid "You can change further settings for this library below."
1247
- msgstr "Hier kannst weitere Einstellungen für diese JavaScript-Bibliothek ändern."
1248
 
1249
  #: views/view-edit.php:339
1250
  #: views/view-edit.php:343
@@ -1326,11 +1326,6 @@ msgstr "Anzahl Zeilen"
1326
  msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
1327
  msgstr "Ja, erlaube dem Besucher, die jeweils angezeigte Anzahl Zeilen beim seitenweisen Blättern zu ändern."
1328
 
1329
- #: views/view-edit.php:390
1330
- #@ wp-table-reloaded
1331
- msgid "Filtering"
1332
- msgstr "Filtern"
1333
-
1334
  #: views/view-edit.php:391
1335
  #@ wp-table-reloaded
1336
  msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
@@ -1622,33 +1617,33 @@ msgstr "Soeren Krings für die Erweiterung <a href=\"http://tablesorter.openwerk
1622
  msgid "the submitters of translations:"
1623
  msgstr "die Übersetzer:"
1624
 
1625
- #: views/view-about.php:80
1626
  #, php-format
1627
  #@ wp-table-reloaded
1628
  msgid "%s (thanks to %s)"
1629
  msgstr "%s (danke an %s)"
1630
 
1631
- #: views/view-about.php:83
1632
  #@ wp-table-reloaded
1633
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
1634
  msgstr "und an alle Spender, Mitarbeiter, Förderer, Kritiker und Nutzer des Plugins!"
1635
 
1636
- #: views/view-about.php:89
1637
  #@ wp-table-reloaded
1638
  msgid "Debug and Version Information"
1639
  msgstr "Debug- und Versions-Informationen"
1640
 
1641
- #: views/view-about.php:92
1642
  #@ wp-table-reloaded
1643
  msgid "You are using the following versions of the software."
1644
  msgstr "Du nutzt die folgenden Software-Versionen."
1645
 
1646
- #: views/view-about.php:92
1647
  #@ wp-table-reloaded
1648
  msgid "Please provide this information in bug reports."
1649
  msgstr "Bitte gib diese Informationen in Fehler-Reports stets mit an."
1650
 
1651
- #: views/view-about.php:95
1652
  #@ wp-table-reloaded
1653
  msgid "Plugin installed"
1654
  msgstr "Plugin installiert"
@@ -1673,126 +1668,126 @@ msgstr "Auch die JavaScript-Bibliotheken sind in dieser Vorschau nicht verfügba
1673
  msgid "Belarusian"
1674
  msgstr "Weißrussisch"
1675
 
1676
- #: controllers/controller-admin.php:257
1677
  #@ wp-table-reloaded
1678
  msgid "Czech"
1679
  msgstr "Tschechisch"
1680
 
1681
- #: controllers/controller-admin.php:258
1682
  #@ wp-table-reloaded
1683
  msgid "German"
1684
  msgstr "Deutsch"
1685
 
1686
- #: controllers/controller-admin.php:259
1687
  #@ wp-table-reloaded
1688
  msgid "English"
1689
  msgstr "Englisch"
1690
 
1691
- #: controllers/controller-admin.php:260
1692
  #@ wp-table-reloaded
1693
  msgid "Spanish"
1694
  msgstr "Spanisch"
1695
 
1696
- #: controllers/controller-admin.php:261
1697
  #@ wp-table-reloaded
1698
  msgid "Finnish"
1699
  msgstr "Finnisch"
1700
 
1701
- #: controllers/controller-admin.php:262
1702
  #@ wp-table-reloaded
1703
  msgid "French"
1704
  msgstr "Französisch"
1705
 
1706
- #: controllers/controller-admin.php:263
1707
  #@ wp-table-reloaded
1708
  msgid "Hindi"
1709
  msgstr "Hindi"
1710
 
1711
- #: controllers/controller-admin.php:265
1712
  #@ wp-table-reloaded
1713
  msgid "Italian"
1714
  msgstr "Italienisch"
1715
 
1716
- #: controllers/controller-admin.php:266
1717
  #@ wp-table-reloaded
1718
  msgid "Japanese"
1719
  msgstr "Japanisch"
1720
 
1721
- #: controllers/controller-admin.php:267
1722
  #@ wp-table-reloaded
1723
  msgid "Dutch"
1724
  msgstr "Niederländisch"
1725
 
1726
- #: controllers/controller-admin.php:268
1727
  #@ wp-table-reloaded
1728
  msgid "Polish"
1729
  msgstr "Polnisch"
1730
 
1731
- #: controllers/controller-admin.php:269
1732
  #@ wp-table-reloaded
1733
  msgid "Brazilian Portuguese"
1734
  msgstr "Brasilianisches Portugiesisch"
1735
 
1736
- #: controllers/controller-admin.php:271
1737
  #@ wp-table-reloaded
1738
  msgid "Russian"
1739
  msgstr "Russisch"
1740
 
1741
- #: controllers/controller-admin.php:272
1742
  #@ wp-table-reloaded
1743
  msgid "Slovak"
1744
  msgstr "Slowakisch"
1745
 
1746
- #: controllers/controller-admin.php:273
1747
  #@ wp-table-reloaded
1748
  msgid "Swedish"
1749
  msgstr "Schwedisch"
1750
 
1751
- #: controllers/controller-admin.php:274
1752
  #@ wp-table-reloaded
1753
  msgid "Ukrainian"
1754
  msgstr "Ukrainisch"
1755
 
1756
- #: controllers/controller-admin.php:275
1757
  #@ wp-table-reloaded
1758
  msgid "Chinese (Simplified)"
1759
  msgstr "Chinesisch (vereinfacht)"
1760
 
1761
- #: controllers/controller-admin.php:305
1762
  #, php-format
1763
  #@ wp-table-reloaded
1764
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
1765
  msgstr "Willkommen bei WP-Table Reloaded %s. Wenn du irgendwelche Fragen oder Probleme hast, lies bitte die <a href=\"%s\">FAQ,</a> die <a href=\"%s\">Dokumentation</a> und den Abschnitt <a href=\"%s\">Hilfe und Unterstützung</a>."
1766
 
1767
- #: controllers/controller-admin.php:306
1768
  #, php-format
1769
  #@ wp-table-reloaded
1770
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
1771
  msgstr "Danke, dass du auf WP-Table Reloaded %s aktualisiert hast."
1772
 
1773
- #: controllers/controller-admin.php:306
1774
  #, php-format
1775
  #@ wp-table-reloaded
1776
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
1777
  msgstr "Bitte lies die <a href=\"%s\">Release-Ankündigung</a> für weitere Informationen."
1778
 
1779
- #: controllers/controller-admin.php:306
1780
  #, php-format
1781
  #@ wp-table-reloaded
1782
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
1783
  msgstr "Wenn dir die neuen Funktionen und Verbesserungen gefallen, freue ich mich über eine kleine <a href=\"%s\">Spende</a>. Dankeschön."
1784
 
1785
- #: controllers/controller-admin.php:311
1786
  #@ wp-table-reloaded
1787
  msgid "Hide this message"
1788
  msgstr "Meldung ausblenden"
1789
 
1790
- #: controllers/controller-admin.php:319
1791
  #@ wp-table-reloaded
1792
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
1793
  msgstr "Vielen Dank, dass du dieses Plugin nutzt! Du hast WP-Table Reloaded vor mehr als einem Monat installiert."
1794
 
1795
- #: controllers/controller-admin.php:319
1796
  #, php-format
1797
  #@ wp-table-reloaded
1798
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
@@ -1800,610 +1795,610 @@ msgid_plural "If it works and you are satisfied with the results of managing you
1800
  msgstr[0] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabelle zufrieden bist, ist dir das nicht einen Euro wert?"
1801
  msgstr[1] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabellen zufrieden bist, ist dir das nicht einen Euro wert?"
1802
 
1803
- #: controllers/controller-admin.php:320
1804
  #, php-format
1805
  #@ wp-table-reloaded
1806
  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!"
1807
  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!"
1808
 
1809
- #: controllers/controller-admin.php:321
1810
  #@ wp-table-reloaded
1811
  msgid "Sure, no problem!"
1812
  msgstr "Na klar, kein Problem!"
1813
 
1814
- #: controllers/controller-admin.php:322
1815
  #@ wp-table-reloaded
1816
  msgid "I already donated."
1817
  msgstr "Ich habe schon gespendet."
1818
 
1819
- #: controllers/controller-admin.php:323
1820
  #@ wp-table-reloaded
1821
  msgid "No, thanks. Don't ask again."
1822
  msgstr "Nein, Danke. Frag nicht nochmal."
1823
 
1824
- #: controllers/controller-admin.php:351
1825
  #, php-format
1826
  #@ wp-table-reloaded
1827
  msgid "Table &quot;%s&quot; added successfully."
1828
  msgstr "Tabelle &quot;%s&quot; erfolgreich hinzugefügt."
1829
 
1830
- #: controllers/controller-admin.php:382
1831
  #, php-format
1832
  #@ wp-table-reloaded
1833
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
1834
  msgstr "Tabelle erfolgreich bearbeitet. Die Tabelle hat jetzt die ID %s. Bereits verwendete Shortcodes sollten entsprechend angepasst werden."
1835
 
1836
- #: controllers/controller-admin.php:384
1837
  #, php-format
1838
  #@ wp-table-reloaded
1839
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
1840
  msgstr "Die Tabellen-ID konnte nicht von %s in %s geändert werden, da bereits eine Tabelle mit dieser ID existiert."
1841
 
1842
- #: controllers/controller-admin.php:387
1843
  #@ wp-table-reloaded
1844
  msgid "Table edited successfully."
1845
  msgstr "Tabelle erfolgreich bearbeitet."
1846
 
1847
- #: controllers/controller-admin.php:436
1848
  #@ wp-table-reloaded
1849
  msgid "Rows swapped successfully."
1850
  msgstr "Zeilen erfolgreich getauscht."
1851
 
1852
- #: controllers/controller-admin.php:457
1853
  #@ wp-table-reloaded
1854
  msgid "Columns swapped successfully."
1855
  msgstr "Spalten erfolgreich getauscht."
1856
 
1857
- #: controllers/controller-admin.php:498
1858
  #@ wp-table-reloaded
1859
  msgid "Table sorted successfully."
1860
  msgstr "Tabelle erfolgreich sortiert."
1861
 
1862
- #: controllers/controller-admin.php:521
1863
  #@ wp-table-reloaded
1864
  msgid "Row moved successfully."
1865
  msgstr "Zeile erfolgreich verschoben."
1866
 
1867
- #: controllers/controller-admin.php:548
1868
  #@ wp-table-reloaded
1869
  msgid "Column moved successfully."
1870
  msgstr "Spalte erfolgreich verschoben."
1871
 
1872
- #: controllers/controller-admin.php:556
1873
  #@ wp-table-reloaded
1874
  msgid "Row could not be deleted."
1875
  msgid_plural "Rows could not be deleted."
1876
  msgstr[0] "Zeile konnte nicht gelöscht werden."
1877
  msgstr[1] "Zeilen konnten nicht gelöscht werden."
1878
 
1879
- #: controllers/controller-admin.php:565
1880
  #@ wp-table-reloaded
1881
  msgid "Row deleted successfully."
1882
  msgid_plural "Rows deleted successfully."
1883
  msgstr[0] "Zeile erfolgreich gelöscht."
1884
  msgstr[1] "Zeilen erfolgreich gelöscht."
1885
 
1886
- #: controllers/controller-admin.php:575
1887
  #@ wp-table-reloaded
1888
  msgid "Column could not be deleted."
1889
  msgid_plural "Columns could not be deleted."
1890
  msgstr[0] "Spalte konnte nicht gelöscht werden."
1891
  msgstr[1] "Spalten konnten nicht gelöscht werden."
1892
 
1893
- #: controllers/controller-admin.php:588
1894
  #@ wp-table-reloaded
1895
  msgid "Column deleted successfully."
1896
  msgid_plural "Columns deleted successfully."
1897
  msgstr[0] "Spalte erfolgreich gelöscht."
1898
  msgstr[1] "Spalten erfolgreich gelöscht."
1899
 
1900
- #: controllers/controller-admin.php:611
1901
  #@ wp-table-reloaded
1902
  msgid "Row inserted successfully."
1903
  msgid_plural "Rows inserted successfully."
1904
  msgstr[0] "Zeile erfolgreich eingefügt."
1905
  msgstr[1] "Zeilen erfolgreich eingefügt."
1906
 
1907
- #: controllers/controller-admin.php:638
1908
  #@ wp-table-reloaded
1909
  msgid "Column inserted successfully."
1910
  msgid_plural "Columns inserted successfully."
1911
  msgstr[0] "Spalte erfolgreich eingefügt."
1912
  msgstr[1] "Spalten erfolgreich eingefügt."
1913
 
1914
- #: controllers/controller-admin.php:653
1915
  #@ wp-table-reloaded
1916
  msgid "Row added successfully."
1917
  msgid_plural "Rows added successfully."
1918
  msgstr[0] "Zeile erfolgreich angefügt."
1919
  msgstr[1] "Zeilen erfolgreich angefügt."
1920
 
1921
- #: controllers/controller-admin.php:667
1922
  #@ wp-table-reloaded
1923
  msgid "Column added successfully."
1924
  msgid_plural "Columns added successfully."
1925
  msgstr[0] "Spalte erfolgreich angefügt."
1926
  msgstr[1] "Spalten erfolgreich angefügt."
1927
 
1928
- #: controllers/controller-admin.php:674
1929
  #@ wp-table-reloaded
1930
  msgid "Could not add Custom Data Field, because you did not enter a name."
1931
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil kein Name eingegeben wurde."
1932
 
1933
- #: controllers/controller-admin.php:679
1934
  #@ wp-table-reloaded
1935
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
1936
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der eingegebene Name bereits reserviert ist."
1937
 
1938
- #: controllers/controller-admin.php:685
1939
  #@ wp-table-reloaded
1940
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
1941
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der Name verbotene Zeichen enthält."
1942
 
1943
- #: controllers/controller-admin.php:689
1944
  #@ wp-table-reloaded
1945
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
1946
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil ein Feld mit diesem Namen bereits existiert."
1947
 
1948
- #: controllers/controller-admin.php:695
1949
  #@ wp-table-reloaded
1950
  msgid "Custom Data Field added successfully."
1951
  msgstr "Benutzerdefiniertes Datenfeld erfolgreich hinzugefügt."
1952
 
1953
- #: controllers/controller-admin.php:735
1954
- #: controllers/controller-admin.php:791
1955
  #@ wp-table-reloaded
1956
  msgid "Copy of"
1957
  msgstr "Kopie von"
1958
 
1959
- #: controllers/controller-admin.php:739
1960
  #@ wp-table-reloaded
1961
  msgid "Table copied successfully."
1962
  msgid_plural "Tables copied successfully."
1963
  msgstr[0] "Tabelle erfolgreich kopiert."
1964
  msgstr[1] "Tabellen erfolgreich kopiert."
1965
 
1966
- #: controllers/controller-admin.php:745
1967
  #@ wp-table-reloaded
1968
  msgid "Table deleted successfully."
1969
  msgid_plural "Tables deleted successfully."
1970
  msgstr[0] "Tabelle erfolgreich gelöscht."
1971
  msgstr[1] "Tabellen erfolgreich gelöscht."
1972
 
1973
- #: controllers/controller-admin.php:766
1974
- #: controllers/controller-admin.php:921
1975
- #: controllers/controller-admin.php:959
1976
  #@ wp-table-reloaded
1977
  msgid "Table imported successfully."
1978
  msgid_plural "Tables imported successfully."
1979
  msgstr[0] "Tabelle erfolgreich importiert."
1980
  msgstr[1] "Tabellen erfolgreich importiert."
1981
 
1982
- #: controllers/controller-admin.php:773
1983
  #@ wp-table-reloaded
1984
  msgid "You did not select any tables!"
1985
  msgstr "Du hast keine Tabellen ausgewählt."
1986
 
1987
- #: controllers/controller-admin.php:796
1988
  #, php-format
1989
  #@ wp-table-reloaded
1990
  msgid "Table &quot;%s&quot; copied successfully."
1991
  msgstr "Tabelle &quot;%s&quot; erfolgreich kopiert."
1992
 
1993
- #: controllers/controller-admin.php:814
1994
  #, php-format
1995
  #@ wp-table-reloaded
1996
  msgid "Table &quot;%s&quot; deleted successfully."
1997
  msgstr "Tabelle &quot;%s&quot; erfolgreich gelöscht."
1998
 
1999
- #: controllers/controller-admin.php:822
2000
  #@ wp-table-reloaded
2001
  msgid "Custom Data Field deleted successfully."
2002
  msgstr "Benutzerdefiniertes Datenfeld erfolgreich gelöscht."
2003
 
2004
- #: controllers/controller-admin.php:824
2005
  #@ wp-table-reloaded
2006
  msgid "Custom Data Field could not be deleted."
2007
  msgstr "Benutzerdefiniertes Datenfeld konnte nicht gelöscht werden."
2008
 
2009
- #: controllers/controller-admin.php:830
2010
  #@ wp-table-reloaded
2011
  msgid "Delete failed."
2012
  msgstr "Löschen fehlgeschlagen."
2013
 
2014
- #: controllers/controller-admin.php:862
2015
- #: controllers/controller-admin.php:872
2016
- #: controllers/controller-admin.php:883
2017
  #@ wp-table-reloaded
2018
  msgid "Imported Table"
2019
  msgstr "Importierte Tabelle"
2020
 
2021
- #: controllers/controller-admin.php:863
2022
- #: controllers/controller-admin.php:884
2023
  #, php-format
2024
  #@ wp-table-reloaded
2025
  msgid "from %s"
2026
  msgstr "von %s"
2027
 
2028
- #: controllers/controller-admin.php:873
2029
  #@ wp-table-reloaded
2030
  msgid "via form"
2031
  msgstr "via Eingabefeld"
2032
 
2033
- #: controllers/controller-admin.php:900
2034
- #: controllers/controller-admin.php:937
2035
  #@ wp-table-reloaded
2036
  msgid "Table could not be imported."
2037
  msgstr "Tabelle konnte nicht importiert werden."
2038
 
2039
- #: controllers/controller-admin.php:917
2040
  #, php-format
2041
  #@ wp-table-reloaded
2042
  msgid "Table %s (%s) replaced successfully."
2043
  msgstr "Tabelle %s (%s) erfolgreich ersetzt."
2044
 
2045
- #: controllers/controller-admin.php:967
2046
- #: controllers/controller-admin.php:1160
2047
  #@ wp-table-reloaded
2048
  msgid "You do not have sufficient rights to perform this action."
2049
  msgstr "Du verfügst nicht über ausreichende Rechte, um diese Aktion auszuführen."
2050
 
2051
- #: controllers/controller-admin.php:974
2052
  #@ wp-table-reloaded
2053
  msgid "You did not upload a WP-Table Reloaded dump file."
2054
  msgstr "Du hast keine WP-Table Reloaded Dump-Datei hochgeladen."
2055
 
2056
- #: controllers/controller-admin.php:983
2057
  #@ wp-table-reloaded
2058
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
2059
  msgstr "Die hochgeladene Dump-Datei ist leer. Bitte lade eine vollständige Datei hoch."
2060
 
2061
- #: controllers/controller-admin.php:1011
2062
  #@ wp-table-reloaded
2063
  msgid "All Tables, Settings and Options were successfully imported."
2064
  msgstr "Alle Tabellen, Einstellungen und Optionen wurden erfolgreich importiert."
2065
 
2066
- #: controllers/controller-admin.php:1040
2067
  #, php-format
2068
  #@ wp-table-reloaded
2069
  msgid "Table &quot;%s&quot; exported successfully."
2070
  msgstr "Tabelle &quot;%s&quot; erfolgreich exportiert."
2071
 
2072
- #: controllers/controller-admin.php:1141
2073
  #@ wp-table-reloaded
2074
  msgid "Options saved successfully."
2075
  msgstr "Einstellungen erfolgreich gespeichert."
2076
 
2077
- #: controllers/controller-admin.php:1144
2078
  #, php-format
2079
  #@ wp-table-reloaded
2080
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
2081
  msgstr "<a href=\"%s\">Klicke hier, um fortzufahren.</a>"
2082
 
2083
- #: controllers/controller-admin.php:1210
2084
  #@ wp-table-reloaded
2085
  msgid "There is no table with this ID!"
2086
  msgstr "Es ist keine Tabelle mit dieser ID vorhanden!"
2087
 
2088
- #: controllers/controller-admin.php:1237
2089
  #@ wp-table-reloaded
2090
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
2091
  msgstr "Vielen Dank! Deine Spende leistet einen wichtigen Beitrag für die weitere Entwicklung von WP-Table Reloaded!"
2092
 
2093
- #: controllers/controller-admin.php:1239
2094
  #, php-format
2095
  #@ wp-table-reloaded
2096
  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 &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
2097
  msgstr "Kein Problem! Ich hoffe trotzdem, dass dir WP-Table Reloaded mit seinen Funktionen die Arbeit leichter macht. Falls du deine Meinung ändern solltest, findest du den &quot;%s&quot;-Link auch auf der <a href=\"%s\">Plugin-Webseite</a>."
2098
 
2099
- #: controllers/controller-admin.php:1239
2100
- #: controllers/controller-admin.php:1678
2101
  #@ wp-table-reloaded
2102
  msgid "Donate"
2103
  msgstr "Spenden"
2104
 
2105
- #: controllers/controller-admin.php:1262
2106
- #: controllers/controller-admin.php:1269
2107
  #@ wp-table-reloaded
2108
  msgid "List of Tables"
2109
  msgstr "Liste der Tabellen"
2110
 
2111
  #. translators: plugin header field 'Name'
2112
- #: controllers/controller-admin.php:1262
2113
  #: controllers/controller-admin.php:1266
2114
- #: controllers/controller-admin.php:1268
 
2115
  #: wp-table-reloaded.php:0
2116
  #@ wp-table-reloaded
2117
  msgid "WP-Table Reloaded"
2118
  msgstr "WP-Table Reloaded"
2119
 
2120
- #: controllers/controller-admin.php:1263
2121
- #: controllers/controller-admin.php:1299
2122
  #@ wp-table-reloaded
2123
  msgid "Add new Table"
2124
  msgstr "Neue Tabelle anlegen"
2125
 
2126
- #: controllers/controller-admin.php:1264
2127
- #: controllers/controller-admin.php:1300
2128
  #@ wp-table-reloaded
2129
  msgid "Import a Table"
2130
  msgstr "Eine Tabelle importieren"
2131
 
2132
- #: controllers/controller-admin.php:1265
2133
- #: controllers/controller-admin.php:1301
2134
  #@ wp-table-reloaded
2135
  msgid "Export a Table"
2136
  msgstr "Eine Tabelle exportieren"
2137
 
2138
- #: controllers/controller-admin.php:1267
2139
  #@ wp-table-reloaded
2140
  msgid "About WP-Table Reloaded"
2141
  msgstr "Über WP-Table Reloaded"
2142
 
2143
- #: controllers/controller-admin.php:1275
2144
  #, php-format
2145
  #@ wp-table-reloaded
2146
  msgid "Edit Table &quot;%s&quot; (ID %s)"
2147
  msgstr "Tabelle &quot;%s&quot; (ID %s) bearbeiten"
2148
 
2149
- #: controllers/controller-admin.php:1276
2150
  #, php-format
2151
  #@ wp-table-reloaded
2152
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
2153
  msgstr "Vorschau der Tabelle &quot;%s&quot; (ID %s)"
2154
 
2155
- #: controllers/controller-admin.php:1309
2156
  #@ wp-table-reloaded
2157
  msgid "About the plugin"
2158
  msgstr "Über das Plugin"
2159
 
2160
- #: controllers/controller-admin.php:1674
2161
  #@ wp-table-reloaded
2162
  msgid "WP-Table Reloaded Plugin Page"
2163
  msgstr "Plugin-Seite von WP-Table Reloaded"
2164
 
2165
- #: controllers/controller-admin.php:1674
2166
  #@ wp-table-reloaded
2167
  msgid "Plugin Page"
2168
  msgstr "Plugin-Seite"
2169
 
2170
- #: controllers/controller-admin.php:1675
2171
  #@ wp-table-reloaded
2172
  msgid "Frequently Asked Questions"
2173
  msgstr "Häufig gestellte Fragen"
2174
 
2175
- #: controllers/controller-admin.php:1675
2176
  #@ wp-table-reloaded
2177
  msgid "FAQ"
2178
  msgstr "FAQ"
2179
 
2180
- #: controllers/controller-admin.php:1676
2181
  #@ wp-table-reloaded
2182
  msgid "Support"
2183
  msgstr "Unterstützung"
2184
 
2185
- #: controllers/controller-admin.php:1677
2186
  #@ wp-table-reloaded
2187
  msgid "Plugin Documentation"
2188
  msgstr "Plugin-Dokumentation"
2189
 
2190
- #: controllers/controller-admin.php:1677
2191
  #@ wp-table-reloaded
2192
  msgid "Documentation"
2193
  msgstr "Dokumentation"
2194
 
2195
- #: controllers/controller-admin.php:1678
2196
  #@ wp-table-reloaded
2197
  msgid "Support WP-Table Reloaded with your donation!"
2198
  msgstr "Unterstütze WP-Table Reloaded mit deiner Spende!"
2199
 
2200
- #: controllers/controller-admin.php:1717
2201
  #@ wp-table-reloaded
2202
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
2203
  msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
2204
 
2205
- #: controllers/controller-admin.php:1718
2206
  #@ wp-table-reloaded
2207
  msgid "URL of link to insert"
2208
  msgstr "URL des einzufügenden Links"
2209
 
2210
- #: controllers/controller-admin.php:1719
2211
  #@ wp-table-reloaded
2212
  msgid "Text of link"
2213
  msgstr "Text des Links"
2214
 
2215
- #: controllers/controller-admin.php:1720
2216
  #@ wp-table-reloaded
2217
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
2218
  msgstr "Um den folgenden HTML-Code für einen Link in eine Tabellenzelle einzufügen, klicke einfach nach dem Schließen des Dialoges auf die Zelle."
2219
 
2220
- #: controllers/controller-admin.php:1721
2221
  #@ wp-table-reloaded
2222
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
2223
  msgstr "Um ein Bild einzufügen, klicke auf &quot;OK&quot; und klicke dann in die Zelle, in die du das Bild einfügen möchtest."
2224
 
2225
- #: controllers/controller-admin.php:1721
2226
  #@ wp-table-reloaded
2227
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
2228
  msgstr "Wähle dann das Bild in der sich öffnenden Medien-Bibliothek, lade dort ein neues Bild hoch oder gib die URL des Bildes ein."
2229
 
2230
- #: controllers/controller-admin.php:1721
2231
  #, php-format
2232
  #@ wp-table-reloaded
2233
  msgid "Click the &quot;%s&quot; button to insert the image."
2234
  msgstr "Klicke auf die &quot;%s&quot;-Schaltfläche, um das Bild einzufügen."
2235
 
2236
- #: controllers/controller-admin.php:1721
2237
  #@ default
2238
  msgid "Insert into Post"
2239
  msgstr ""
2240
 
2241
- #: controllers/controller-admin.php:1722
2242
  #@ wp-table-reloaded
2243
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
2244
  msgstr "Um Zellen innerhalb einer Zeile zu verbinden, klicke in die Zelle rechts von der Zelle mit dem Inhalt für die verbundene Zelle."
2245
 
2246
- #: controllers/controller-admin.php:1723
2247
  #@ wp-table-reloaded
2248
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
2249
  msgstr "Um Zellen innerhalb einer Spalte zu verbinden, klicke in die Zelle unterhalb der Zelle mit dem Inhalt für die verbundene Zelle."
2250
 
2251
- #: controllers/controller-admin.php:1724
2252
  #@ wp-table-reloaded
2253
  msgid "Do you want to copy the selected tables?"
2254
  msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
2255
 
2256
- #: controllers/controller-admin.php:1725
2257
  #@ wp-table-reloaded
2258
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
2259
  msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
2260
 
2261
- #: controllers/controller-admin.php:1726
2262
  #@ wp-table-reloaded
2263
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
2264
  msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
2265
 
2266
- #: controllers/controller-admin.php:1727
2267
  #@ wp-table-reloaded
2268
  msgid "Do you want to copy this table?"
2269
  msgstr "Möchtest du diese Tabelle kopieren?"
2270
 
2271
- #: controllers/controller-admin.php:1728
2272
  #@ wp-table-reloaded
2273
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
2274
  msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
2275
 
2276
- #: controllers/controller-admin.php:1729
2277
  #@ wp-table-reloaded
2278
  msgid "Do you really want to delete the selected rows?"
2279
  msgstr "Möchtest du die ausgewählten Zeilen wirklich löschen?"
2280
 
2281
- #: controllers/controller-admin.php:1730
2282
  #@ wp-table-reloaded
2283
  msgid "Do you really want to delete the selected columns?"
2284
  msgstr "Möchtest du die ausgewählten Spalten wirklich löschen?"
2285
 
2286
- #: controllers/controller-admin.php:1731
2287
  #: controllers/controller-admin.php:1735
2288
- #: controllers/controller-admin.php:1737
 
2289
  #@ wp-table-reloaded
2290
  msgid "You have not selected any rows."
2291
  msgstr "Du hast keine Zeilen ausgewählt."
2292
 
2293
- #: controllers/controller-admin.php:1732
2294
  #: controllers/controller-admin.php:1736
2295
- #: controllers/controller-admin.php:1738
 
2296
  #@ wp-table-reloaded
2297
  msgid "You have not selected any columns."
2298
  msgstr "Du hast keine Spalten ausgewählt."
2299
 
2300
- #: controllers/controller-admin.php:1733
2301
  #@ wp-table-reloaded
2302
  msgid "You can not delete all rows of the table at once!"
2303
  msgstr "Du kannst nicht alle Tabellenzeilen auf einmal löschen!"
2304
 
2305
- #: controllers/controller-admin.php:1734
2306
  #@ wp-table-reloaded
2307
  msgid "You can not delete all columns of the table at once!"
2308
  msgstr "Du kannst nicht alle Tabellenspalten auf einmal löschen!"
2309
 
2310
- #: controllers/controller-admin.php:1739
2311
  #@ wp-table-reloaded
2312
  msgid "Do you really want to import this table from the wp-Table plugin?"
2313
  msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
2314
 
2315
- #: controllers/controller-admin.php:1740
2316
  #@ wp-table-reloaded
2317
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
2318
  msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
2319
 
2320
- #: controllers/controller-admin.php:1741
2321
  #@ wp-table-reloaded
2322
  msgid "Are you really sure?"
2323
  msgstr "Bist du wirklich sicher?"
2324
 
2325
- #: controllers/controller-admin.php:1742
2326
  #@ wp-table-reloaded
2327
  msgid "Do you really want to change the ID of the table?"
2328
  msgstr "Möchtest du die ID der Tabelle wirklich ändern?"
2329
 
2330
- #: controllers/controller-admin.php:1743
2331
  #@ wp-table-reloaded
2332
  msgid "To show this Custom Data Field, use this shortcode:"
2333
  msgstr "Um dieses Benutzerdefinierte Datenfeld anzuzeigen, nutze diesen Shortcode:"
2334
 
2335
- #: controllers/controller-admin.php:1744
2336
  #@ wp-table-reloaded
2337
  msgid "To show this table, use this shortcode:"
2338
  msgstr "Um diese Tabelle anzuzeigen, nutze diesen Shortcode:"
2339
 
2340
- #: controllers/controller-admin.php:1745
2341
  #@ wp-table-reloaded
2342
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
2343
  msgstr "Warnung: Du verlierst alle aktuellen Tabellen und Einstellungen! Du solltest erst eine Sicherung anlegen. Sei gewarnt!"
2344
 
2345
- #: controllers/controller-admin.php:1746
2346
  #@ wp-table-reloaded
2347
  msgid "You have made changes to the content of this table and not yet saved them."
2348
  msgstr "Du hast Inhalte dieser Tabelle geändert, aber noch nicht gespeichert."
2349
 
2350
- #: controllers/controller-admin.php:1746
2351
  #, php-format
2352
  #@ wp-table-reloaded
2353
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
2354
  msgstr "Du solltest zunächst auf &quot;%s&quot; klicken, um keine Daten und Änderungen zu verlieren, wenn du diese Seite verlässt."
2355
 
2356
- #: controllers/controller-admin.php:1796
2357
  #@ wp-table-reloaded
2358
  msgid "Insert a Table"
2359
  msgstr "Eine Tabelle einfügen"
2360
 
2361
- #: controllers/controller-admin.php:1853
2362
  #@ wp-table-reloaded
2363
  msgid "Please wait..."
2364
  msgstr "Bitte warten..."
2365
 
2366
- #: controllers/controller-admin.php:1854
2367
  #@ wp-table-reloaded
2368
  msgid "Show _MENU_ Tables"
2369
  msgstr "Zeige _MENU_ Tabellen"
2370
 
2371
- #: controllers/controller-admin.php:1855
2372
  #@ wp-table-reloaded
2373
  msgid "All"
2374
  msgstr "Alle"
2375
 
2376
- #: controllers/controller-admin.php:1857
2377
  #@ wp-table-reloaded
2378
  msgid "_START_ to _END_ of _TOTAL_ Tables"
2379
  msgstr "_START_ bis _END_ von _TOTAL_ Tabellen"
2380
 
2381
- #: controllers/controller-admin.php:1858
2382
  #@ wp-table-reloaded
2383
  msgid "(filtered from _MAX_ Tables)"
2384
  msgstr "(gefiltert aus _MAX_ Tabellen)"
2385
 
2386
- #: controllers/controller-admin.php:1859
2387
  #@ wp-table-reloaded
2388
  msgid "Filter:"
2389
  msgstr "Filtern:"
2390
 
2391
- #: controllers/controller-admin.php:1860
2392
  #@ wp-table-reloaded
2393
  msgid "First"
2394
  msgstr "Erste"
2395
 
2396
- #: controllers/controller-admin.php:1861
2397
  #@ wp-table-reloaded
2398
  msgid "Back"
2399
  msgstr "zur&uuml;ck"
2400
 
2401
- #: controllers/controller-admin.php:1862
2402
  #@ wp-table-reloaded
2403
  msgid "Next"
2404
  msgstr "n&auml;chste"
2405
 
2406
- #: controllers/controller-admin.php:1863
2407
  #@ wp-table-reloaded
2408
  msgid "Last"
2409
  msgstr "Letzte"
@@ -2517,24 +2512,18 @@ msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2517
  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."
2518
  msgstr "Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Dafür werden keine HTML-Kenntnisse benötigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zusätzlich können einer Tabelle mit einer JavaScript-Bibliothek weitere Fähigkeiten, wie Sortieren, Paginierung und Filterung hinzugefügt werden."
2519
 
2520
- #. translators: plugin header field 'Author'
2521
- #: wp-table-reloaded.php:0
2522
- #@ wp-table-reloaded
2523
- msgid "Tobias B&auml;thge"
2524
- msgstr "Tobias B&auml;thge"
2525
-
2526
  #. translators: plugin header field 'AuthorURI'
2527
  #: wp-table-reloaded.php:0
2528
  #@ wp-table-reloaded
2529
  msgid "http://tobias.baethge.com/"
2530
  msgstr "http://tobias.baethge.com/"
2531
 
2532
- #: controllers/controller-admin.php:264
2533
  #@ wp-table-reloaded
2534
  msgid "Indonesian"
2535
  msgstr "Indonesisch"
2536
 
2537
- #: controllers/controller-admin.php:270
2538
  #@ wp-table-reloaded
2539
  msgid "Portuguese (Portugal)"
2540
  msgstr "Portugiesisch (Portugal)"
@@ -2549,14 +2538,35 @@ msgstr "Weitere CSS-Klassen"
2549
  msgid "This is not the place to enter \"Custom CSS\" code!"
2550
  msgstr "Dies ist nicht das Feld für &quot;Zusatz-CSS&quot-Code!"
2551
 
2552
- #. translators: plugin header field 'Version'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2553
  #: wp-table-reloaded.php:0
2554
  #@ wp-table-reloaded
2555
- msgid "1.9.2"
2556
- msgstr "1.9.2"
2557
 
2558
- #: controllers/controller-admin.php:306
 
2559
  #@ wp-table-reloaded
2560
- msgid "This version includes several bugfixes and a few enhancements."
2561
- msgstr "Dieses Update enthält mehrere Fehlerkorrekturen und kleine Verbesserungen."
2562
 
86
  msgid "Action"
87
  msgstr "Aktion"
88
 
89
+ #: controllers/controller-admin.php:1860
90
  #: views/view-ajax_list.php:53
91
  #: views/view-export.php:72
92
  #: views/view-list.php:87
411
  msgid "Frontend Options"
412
  msgstr "Darstellungsoptionen"
413
 
414
+ #: views/view-about.php:91
415
  #: views/view-edit.php:15
416
  #: views/view-edit.php:51
417
  #: views/view-edit.php:104
428
  msgid "Hide"
429
  msgstr "Ausblenden"
430
 
431
+ #: views/view-about.php:91
432
  #: views/view-edit.php:15
433
  #: views/view-edit.php:51
434
  #: views/view-edit.php:104
584
  msgid "Yes, use the DataTables JavaScript features (sorting, pagination, filtering) on the &quot;%s&quot; screen."
585
  msgstr "Ja, die Funktionen der DataTables-JavaScript-Bibliothek (Sortieren, Paginierung, Suche) auch auf der &quot;%s&quot;-Seite nutzen."
586
 
587
+ #: controllers/controller-admin.php:1302
588
  #: views/view-options.php:83
589
  #@ wp-table-reloaded
590
  msgid "List Tables"
851
  msgid "Uninstall Plugin WP-Table Reloaded"
852
  msgstr "Plugin WP-Table Reloaded deinstallieren"
853
 
854
+ #: controllers/controller-admin.php:1087
855
  #: views/view-options.php:233
856
  #@ wp-table-reloaded
857
  msgid "You do not have sufficient rights to access the Plugin Options."
883
  msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
884
  msgstr "Zur Sicherung aller Tabellen, einschließlich der Einstellungen, auf einmal, nutze &quot;%s&quot;-Knopf in den &quot;%s&quot;."
885
 
886
+ #: controllers/controller-admin.php:1270
887
+ #: controllers/controller-admin.php:1312
888
  #: views/view-edit.php:350
889
  #: views/view-edit.php:365
890
  #: views/view-export.php:10
915
  #: views/view-export.php:54
916
  #@ wp-table-reloaded
917
  msgid "Download file"
918
+ msgstr "Datei herunterladen"
919
 
920
  #: views/view-export.php:55
921
  #@ wp-table-reloaded
922
  msgid "Yes, I want to download the export file."
923
+ msgstr "Ja, ich möchte die Export-Datei herunterladen."
924
 
925
  #: views/view-edit.php:477
926
  #: views/view-export.php:60
948
  msgid "Table ID"
949
  msgstr "Tabellen-ID"
950
 
951
+ #: controllers/controller-admin.php:1750
952
  #: views/view-edit.php:41
953
  #: views/view-edit.php:253
954
  #: views/view-edit.php:413
1244
  #: views/view-edit.php:347
1245
  #@ wp-table-reloaded
1246
  msgid "You can change further settings for this library below."
1247
+ msgstr "Hier kannst du weitere Einstellungen für diese JavaScript-Bibliothek ändern."
1248
 
1249
  #: views/view-edit.php:339
1250
  #: views/view-edit.php:343
1326
  msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
1327
  msgstr "Ja, erlaube dem Besucher, die jeweils angezeigte Anzahl Zeilen beim seitenweisen Blättern zu ändern."
1328
 
 
 
 
 
 
1329
  #: views/view-edit.php:391
1330
  #@ wp-table-reloaded
1331
  msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
1617
  msgid "the submitters of translations:"
1618
  msgstr "die Übersetzer:"
1619
 
1620
+ #: views/view-about.php:82
1621
  #, php-format
1622
  #@ wp-table-reloaded
1623
  msgid "%s (thanks to %s)"
1624
  msgstr "%s (danke an %s)"
1625
 
1626
+ #: views/view-about.php:85
1627
  #@ wp-table-reloaded
1628
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
1629
  msgstr "und an alle Spender, Mitarbeiter, Förderer, Kritiker und Nutzer des Plugins!"
1630
 
1631
+ #: views/view-about.php:91
1632
  #@ wp-table-reloaded
1633
  msgid "Debug and Version Information"
1634
  msgstr "Debug- und Versions-Informationen"
1635
 
1636
+ #: views/view-about.php:94
1637
  #@ wp-table-reloaded
1638
  msgid "You are using the following versions of the software."
1639
  msgstr "Du nutzt die folgenden Software-Versionen."
1640
 
1641
+ #: views/view-about.php:94
1642
  #@ wp-table-reloaded
1643
  msgid "Please provide this information in bug reports."
1644
  msgstr "Bitte gib diese Informationen in Fehler-Reports stets mit an."
1645
 
1646
+ #: views/view-about.php:97
1647
  #@ wp-table-reloaded
1648
  msgid "Plugin installed"
1649
  msgstr "Plugin installiert"
1668
  msgid "Belarusian"
1669
  msgstr "Weißrussisch"
1670
 
1671
+ #: controllers/controller-admin.php:258
1672
  #@ wp-table-reloaded
1673
  msgid "Czech"
1674
  msgstr "Tschechisch"
1675
 
1676
+ #: controllers/controller-admin.php:259
1677
  #@ wp-table-reloaded
1678
  msgid "German"
1679
  msgstr "Deutsch"
1680
 
1681
+ #: controllers/controller-admin.php:260
1682
  #@ wp-table-reloaded
1683
  msgid "English"
1684
  msgstr "Englisch"
1685
 
1686
+ #: controllers/controller-admin.php:261
1687
  #@ wp-table-reloaded
1688
  msgid "Spanish"
1689
  msgstr "Spanisch"
1690
 
1691
+ #: controllers/controller-admin.php:262
1692
  #@ wp-table-reloaded
1693
  msgid "Finnish"
1694
  msgstr "Finnisch"
1695
 
1696
+ #: controllers/controller-admin.php:263
1697
  #@ wp-table-reloaded
1698
  msgid "French"
1699
  msgstr "Französisch"
1700
 
1701
+ #: controllers/controller-admin.php:265
1702
  #@ wp-table-reloaded
1703
  msgid "Hindi"
1704
  msgstr "Hindi"
1705
 
1706
+ #: controllers/controller-admin.php:267
1707
  #@ wp-table-reloaded
1708
  msgid "Italian"
1709
  msgstr "Italienisch"
1710
 
1711
+ #: controllers/controller-admin.php:268
1712
  #@ wp-table-reloaded
1713
  msgid "Japanese"
1714
  msgstr "Japanisch"
1715
 
1716
+ #: controllers/controller-admin.php:269
1717
  #@ wp-table-reloaded
1718
  msgid "Dutch"
1719
  msgstr "Niederländisch"
1720
 
1721
+ #: controllers/controller-admin.php:270
1722
  #@ wp-table-reloaded
1723
  msgid "Polish"
1724
  msgstr "Polnisch"
1725
 
1726
+ #: controllers/controller-admin.php:271
1727
  #@ wp-table-reloaded
1728
  msgid "Brazilian Portuguese"
1729
  msgstr "Brasilianisches Portugiesisch"
1730
 
1731
+ #: controllers/controller-admin.php:273
1732
  #@ wp-table-reloaded
1733
  msgid "Russian"
1734
  msgstr "Russisch"
1735
 
1736
+ #: controllers/controller-admin.php:274
1737
  #@ wp-table-reloaded
1738
  msgid "Slovak"
1739
  msgstr "Slowakisch"
1740
 
1741
+ #: controllers/controller-admin.php:275
1742
  #@ wp-table-reloaded
1743
  msgid "Swedish"
1744
  msgstr "Schwedisch"
1745
 
1746
+ #: controllers/controller-admin.php:276
1747
  #@ wp-table-reloaded
1748
  msgid "Ukrainian"
1749
  msgstr "Ukrainisch"
1750
 
1751
+ #: controllers/controller-admin.php:277
1752
  #@ wp-table-reloaded
1753
  msgid "Chinese (Simplified)"
1754
  msgstr "Chinesisch (vereinfacht)"
1755
 
1756
+ #: controllers/controller-admin.php:307
1757
  #, php-format
1758
  #@ wp-table-reloaded
1759
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
1760
  msgstr "Willkommen bei WP-Table Reloaded %s. Wenn du irgendwelche Fragen oder Probleme hast, lies bitte die <a href=\"%s\">FAQ,</a> die <a href=\"%s\">Dokumentation</a> und den Abschnitt <a href=\"%s\">Hilfe und Unterstützung</a>."
1761
 
1762
+ #: controllers/controller-admin.php:308
1763
  #, php-format
1764
  #@ wp-table-reloaded
1765
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
1766
  msgstr "Danke, dass du auf WP-Table Reloaded %s aktualisiert hast."
1767
 
1768
+ #: controllers/controller-admin.php:308
1769
  #, php-format
1770
  #@ wp-table-reloaded
1771
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
1772
  msgstr "Bitte lies die <a href=\"%s\">Release-Ankündigung</a> für weitere Informationen."
1773
 
1774
+ #: controllers/controller-admin.php:308
1775
  #, php-format
1776
  #@ wp-table-reloaded
1777
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
1778
  msgstr "Wenn dir die neuen Funktionen und Verbesserungen gefallen, freue ich mich über eine kleine <a href=\"%s\">Spende</a>. Dankeschön."
1779
 
1780
+ #: controllers/controller-admin.php:313
1781
  #@ wp-table-reloaded
1782
  msgid "Hide this message"
1783
  msgstr "Meldung ausblenden"
1784
 
1785
+ #: controllers/controller-admin.php:321
1786
  #@ wp-table-reloaded
1787
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
1788
  msgstr "Vielen Dank, dass du dieses Plugin nutzt! Du hast WP-Table Reloaded vor mehr als einem Monat installiert."
1789
 
1790
+ #: controllers/controller-admin.php:321
1791
  #, php-format
1792
  #@ wp-table-reloaded
1793
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
1795
  msgstr[0] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabelle zufrieden bist, ist dir das nicht einen Euro wert?"
1796
  msgstr[1] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabellen zufrieden bist, ist dir das nicht einen Euro wert?"
1797
 
1798
+ #: controllers/controller-admin.php:322
1799
  #, php-format
1800
  #@ wp-table-reloaded
1801
  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!"
1802
  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!"
1803
 
1804
+ #: controllers/controller-admin.php:323
1805
  #@ wp-table-reloaded
1806
  msgid "Sure, no problem!"
1807
  msgstr "Na klar, kein Problem!"
1808
 
1809
+ #: controllers/controller-admin.php:324
1810
  #@ wp-table-reloaded
1811
  msgid "I already donated."
1812
  msgstr "Ich habe schon gespendet."
1813
 
1814
+ #: controllers/controller-admin.php:325
1815
  #@ wp-table-reloaded
1816
  msgid "No, thanks. Don't ask again."
1817
  msgstr "Nein, Danke. Frag nicht nochmal."
1818
 
1819
+ #: controllers/controller-admin.php:353
1820
  #, php-format
1821
  #@ wp-table-reloaded
1822
  msgid "Table &quot;%s&quot; added successfully."
1823
  msgstr "Tabelle &quot;%s&quot; erfolgreich hinzugefügt."
1824
 
1825
+ #: controllers/controller-admin.php:384
1826
  #, php-format
1827
  #@ wp-table-reloaded
1828
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
1829
  msgstr "Tabelle erfolgreich bearbeitet. Die Tabelle hat jetzt die ID %s. Bereits verwendete Shortcodes sollten entsprechend angepasst werden."
1830
 
1831
+ #: controllers/controller-admin.php:386
1832
  #, php-format
1833
  #@ wp-table-reloaded
1834
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
1835
  msgstr "Die Tabellen-ID konnte nicht von %s in %s geändert werden, da bereits eine Tabelle mit dieser ID existiert."
1836
 
1837
+ #: controllers/controller-admin.php:389
1838
  #@ wp-table-reloaded
1839
  msgid "Table edited successfully."
1840
  msgstr "Tabelle erfolgreich bearbeitet."
1841
 
1842
+ #: controllers/controller-admin.php:438
1843
  #@ wp-table-reloaded
1844
  msgid "Rows swapped successfully."
1845
  msgstr "Zeilen erfolgreich getauscht."
1846
 
1847
+ #: controllers/controller-admin.php:459
1848
  #@ wp-table-reloaded
1849
  msgid "Columns swapped successfully."
1850
  msgstr "Spalten erfolgreich getauscht."
1851
 
1852
+ #: controllers/controller-admin.php:500
1853
  #@ wp-table-reloaded
1854
  msgid "Table sorted successfully."
1855
  msgstr "Tabelle erfolgreich sortiert."
1856
 
1857
+ #: controllers/controller-admin.php:523
1858
  #@ wp-table-reloaded
1859
  msgid "Row moved successfully."
1860
  msgstr "Zeile erfolgreich verschoben."
1861
 
1862
+ #: controllers/controller-admin.php:550
1863
  #@ wp-table-reloaded
1864
  msgid "Column moved successfully."
1865
  msgstr "Spalte erfolgreich verschoben."
1866
 
1867
+ #: controllers/controller-admin.php:558
1868
  #@ wp-table-reloaded
1869
  msgid "Row could not be deleted."
1870
  msgid_plural "Rows could not be deleted."
1871
  msgstr[0] "Zeile konnte nicht gelöscht werden."
1872
  msgstr[1] "Zeilen konnten nicht gelöscht werden."
1873
 
1874
+ #: controllers/controller-admin.php:567
1875
  #@ wp-table-reloaded
1876
  msgid "Row deleted successfully."
1877
  msgid_plural "Rows deleted successfully."
1878
  msgstr[0] "Zeile erfolgreich gelöscht."
1879
  msgstr[1] "Zeilen erfolgreich gelöscht."
1880
 
1881
+ #: controllers/controller-admin.php:577
1882
  #@ wp-table-reloaded
1883
  msgid "Column could not be deleted."
1884
  msgid_plural "Columns could not be deleted."
1885
  msgstr[0] "Spalte konnte nicht gelöscht werden."
1886
  msgstr[1] "Spalten konnten nicht gelöscht werden."
1887
 
1888
+ #: controllers/controller-admin.php:590
1889
  #@ wp-table-reloaded
1890
  msgid "Column deleted successfully."
1891
  msgid_plural "Columns deleted successfully."
1892
  msgstr[0] "Spalte erfolgreich gelöscht."
1893
  msgstr[1] "Spalten erfolgreich gelöscht."
1894
 
1895
+ #: controllers/controller-admin.php:613
1896
  #@ wp-table-reloaded
1897
  msgid "Row inserted successfully."
1898
  msgid_plural "Rows inserted successfully."
1899
  msgstr[0] "Zeile erfolgreich eingefügt."
1900
  msgstr[1] "Zeilen erfolgreich eingefügt."
1901
 
1902
+ #: controllers/controller-admin.php:640
1903
  #@ wp-table-reloaded
1904
  msgid "Column inserted successfully."
1905
  msgid_plural "Columns inserted successfully."
1906
  msgstr[0] "Spalte erfolgreich eingefügt."
1907
  msgstr[1] "Spalten erfolgreich eingefügt."
1908
 
1909
+ #: controllers/controller-admin.php:655
1910
  #@ wp-table-reloaded
1911
  msgid "Row added successfully."
1912
  msgid_plural "Rows added successfully."
1913
  msgstr[0] "Zeile erfolgreich angefügt."
1914
  msgstr[1] "Zeilen erfolgreich angefügt."
1915
 
1916
+ #: controllers/controller-admin.php:669
1917
  #@ wp-table-reloaded
1918
  msgid "Column added successfully."
1919
  msgid_plural "Columns added successfully."
1920
  msgstr[0] "Spalte erfolgreich angefügt."
1921
  msgstr[1] "Spalten erfolgreich angefügt."
1922
 
1923
+ #: controllers/controller-admin.php:676
1924
  #@ wp-table-reloaded
1925
  msgid "Could not add Custom Data Field, because you did not enter a name."
1926
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil kein Name eingegeben wurde."
1927
 
1928
+ #: controllers/controller-admin.php:681
1929
  #@ wp-table-reloaded
1930
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
1931
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der eingegebene Name bereits reserviert ist."
1932
 
1933
+ #: controllers/controller-admin.php:687
1934
  #@ wp-table-reloaded
1935
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
1936
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der Name verbotene Zeichen enthält."
1937
 
1938
+ #: controllers/controller-admin.php:691
1939
  #@ wp-table-reloaded
1940
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
1941
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil ein Feld mit diesem Namen bereits existiert."
1942
 
1943
+ #: controllers/controller-admin.php:697
1944
  #@ wp-table-reloaded
1945
  msgid "Custom Data Field added successfully."
1946
  msgstr "Benutzerdefiniertes Datenfeld erfolgreich hinzugefügt."
1947
 
1948
+ #: controllers/controller-admin.php:737
1949
+ #: controllers/controller-admin.php:793
1950
  #@ wp-table-reloaded
1951
  msgid "Copy of"
1952
  msgstr "Kopie von"
1953
 
1954
+ #: controllers/controller-admin.php:741
1955
  #@ wp-table-reloaded
1956
  msgid "Table copied successfully."
1957
  msgid_plural "Tables copied successfully."
1958
  msgstr[0] "Tabelle erfolgreich kopiert."
1959
  msgstr[1] "Tabellen erfolgreich kopiert."
1960
 
1961
+ #: controllers/controller-admin.php:747
1962
  #@ wp-table-reloaded
1963
  msgid "Table deleted successfully."
1964
  msgid_plural "Tables deleted successfully."
1965
  msgstr[0] "Tabelle erfolgreich gelöscht."
1966
  msgstr[1] "Tabellen erfolgreich gelöscht."
1967
 
1968
+ #: controllers/controller-admin.php:768
1969
+ #: controllers/controller-admin.php:923
1970
+ #: controllers/controller-admin.php:961
1971
  #@ wp-table-reloaded
1972
  msgid "Table imported successfully."
1973
  msgid_plural "Tables imported successfully."
1974
  msgstr[0] "Tabelle erfolgreich importiert."
1975
  msgstr[1] "Tabellen erfolgreich importiert."
1976
 
1977
+ #: controllers/controller-admin.php:775
1978
  #@ wp-table-reloaded
1979
  msgid "You did not select any tables!"
1980
  msgstr "Du hast keine Tabellen ausgewählt."
1981
 
1982
+ #: controllers/controller-admin.php:798
1983
  #, php-format
1984
  #@ wp-table-reloaded
1985
  msgid "Table &quot;%s&quot; copied successfully."
1986
  msgstr "Tabelle &quot;%s&quot; erfolgreich kopiert."
1987
 
1988
+ #: controllers/controller-admin.php:816
1989
  #, php-format
1990
  #@ wp-table-reloaded
1991
  msgid "Table &quot;%s&quot; deleted successfully."
1992
  msgstr "Tabelle &quot;%s&quot; erfolgreich gelöscht."
1993
 
1994
+ #: controllers/controller-admin.php:824
1995
  #@ wp-table-reloaded
1996
  msgid "Custom Data Field deleted successfully."
1997
  msgstr "Benutzerdefiniertes Datenfeld erfolgreich gelöscht."
1998
 
1999
+ #: controllers/controller-admin.php:826
2000
  #@ wp-table-reloaded
2001
  msgid "Custom Data Field could not be deleted."
2002
  msgstr "Benutzerdefiniertes Datenfeld konnte nicht gelöscht werden."
2003
 
2004
+ #: controllers/controller-admin.php:832
2005
  #@ wp-table-reloaded
2006
  msgid "Delete failed."
2007
  msgstr "Löschen fehlgeschlagen."
2008
 
2009
+ #: controllers/controller-admin.php:864
2010
+ #: controllers/controller-admin.php:874
2011
+ #: controllers/controller-admin.php:885
2012
  #@ wp-table-reloaded
2013
  msgid "Imported Table"
2014
  msgstr "Importierte Tabelle"
2015
 
2016
+ #: controllers/controller-admin.php:865
2017
+ #: controllers/controller-admin.php:886
2018
  #, php-format
2019
  #@ wp-table-reloaded
2020
  msgid "from %s"
2021
  msgstr "von %s"
2022
 
2023
+ #: controllers/controller-admin.php:875
2024
  #@ wp-table-reloaded
2025
  msgid "via form"
2026
  msgstr "via Eingabefeld"
2027
 
2028
+ #: controllers/controller-admin.php:902
2029
+ #: controllers/controller-admin.php:939
2030
  #@ wp-table-reloaded
2031
  msgid "Table could not be imported."
2032
  msgstr "Tabelle konnte nicht importiert werden."
2033
 
2034
+ #: controllers/controller-admin.php:919
2035
  #, php-format
2036
  #@ wp-table-reloaded
2037
  msgid "Table %s (%s) replaced successfully."
2038
  msgstr "Tabelle %s (%s) erfolgreich ersetzt."
2039
 
2040
+ #: controllers/controller-admin.php:969
2041
+ #: controllers/controller-admin.php:1164
2042
  #@ wp-table-reloaded
2043
  msgid "You do not have sufficient rights to perform this action."
2044
  msgstr "Du verfügst nicht über ausreichende Rechte, um diese Aktion auszuführen."
2045
 
2046
+ #: controllers/controller-admin.php:976
2047
  #@ wp-table-reloaded
2048
  msgid "You did not upload a WP-Table Reloaded dump file."
2049
  msgstr "Du hast keine WP-Table Reloaded Dump-Datei hochgeladen."
2050
 
2051
+ #: controllers/controller-admin.php:985
2052
  #@ wp-table-reloaded
2053
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
2054
  msgstr "Die hochgeladene Dump-Datei ist leer. Bitte lade eine vollständige Datei hoch."
2055
 
2056
+ #: controllers/controller-admin.php:1013
2057
  #@ wp-table-reloaded
2058
  msgid "All Tables, Settings and Options were successfully imported."
2059
  msgstr "Alle Tabellen, Einstellungen und Optionen wurden erfolgreich importiert."
2060
 
2061
+ #: controllers/controller-admin.php:1042
2062
  #, php-format
2063
  #@ wp-table-reloaded
2064
  msgid "Table &quot;%s&quot; exported successfully."
2065
  msgstr "Tabelle &quot;%s&quot; erfolgreich exportiert."
2066
 
2067
+ #: controllers/controller-admin.php:1145
2068
  #@ wp-table-reloaded
2069
  msgid "Options saved successfully."
2070
  msgstr "Einstellungen erfolgreich gespeichert."
2071
 
2072
+ #: controllers/controller-admin.php:1148
2073
  #, php-format
2074
  #@ wp-table-reloaded
2075
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
2076
  msgstr "<a href=\"%s\">Klicke hier, um fortzufahren.</a>"
2077
 
2078
+ #: controllers/controller-admin.php:1214
2079
  #@ wp-table-reloaded
2080
  msgid "There is no table with this ID!"
2081
  msgstr "Es ist keine Tabelle mit dieser ID vorhanden!"
2082
 
2083
+ #: controllers/controller-admin.php:1241
2084
  #@ wp-table-reloaded
2085
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
2086
  msgstr "Vielen Dank! Deine Spende leistet einen wichtigen Beitrag für die weitere Entwicklung von WP-Table Reloaded!"
2087
 
2088
+ #: controllers/controller-admin.php:1243
2089
  #, php-format
2090
  #@ wp-table-reloaded
2091
  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 &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
2092
  msgstr "Kein Problem! Ich hoffe trotzdem, dass dir WP-Table Reloaded mit seinen Funktionen die Arbeit leichter macht. Falls du deine Meinung ändern solltest, findest du den &quot;%s&quot;-Link auch auf der <a href=\"%s\">Plugin-Webseite</a>."
2093
 
2094
+ #: controllers/controller-admin.php:1243
2095
+ #: controllers/controller-admin.php:1682
2096
  #@ wp-table-reloaded
2097
  msgid "Donate"
2098
  msgstr "Spenden"
2099
 
2100
+ #: controllers/controller-admin.php:1266
2101
+ #: controllers/controller-admin.php:1273
2102
  #@ wp-table-reloaded
2103
  msgid "List of Tables"
2104
  msgstr "Liste der Tabellen"
2105
 
2106
  #. translators: plugin header field 'Name'
 
2107
  #: controllers/controller-admin.php:1266
2108
+ #: controllers/controller-admin.php:1270
2109
+ #: controllers/controller-admin.php:1272
2110
  #: wp-table-reloaded.php:0
2111
  #@ wp-table-reloaded
2112
  msgid "WP-Table Reloaded"
2113
  msgstr "WP-Table Reloaded"
2114
 
2115
+ #: controllers/controller-admin.php:1267
2116
+ #: controllers/controller-admin.php:1303
2117
  #@ wp-table-reloaded
2118
  msgid "Add new Table"
2119
  msgstr "Neue Tabelle anlegen"
2120
 
2121
+ #: controllers/controller-admin.php:1268
2122
+ #: controllers/controller-admin.php:1304
2123
  #@ wp-table-reloaded
2124
  msgid "Import a Table"
2125
  msgstr "Eine Tabelle importieren"
2126
 
2127
+ #: controllers/controller-admin.php:1269
2128
+ #: controllers/controller-admin.php:1305
2129
  #@ wp-table-reloaded
2130
  msgid "Export a Table"
2131
  msgstr "Eine Tabelle exportieren"
2132
 
2133
+ #: controllers/controller-admin.php:1271
2134
  #@ wp-table-reloaded
2135
  msgid "About WP-Table Reloaded"
2136
  msgstr "Über WP-Table Reloaded"
2137
 
2138
+ #: controllers/controller-admin.php:1279
2139
  #, php-format
2140
  #@ wp-table-reloaded
2141
  msgid "Edit Table &quot;%s&quot; (ID %s)"
2142
  msgstr "Tabelle &quot;%s&quot; (ID %s) bearbeiten"
2143
 
2144
+ #: controllers/controller-admin.php:1280
2145
  #, php-format
2146
  #@ wp-table-reloaded
2147
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
2148
  msgstr "Vorschau der Tabelle &quot;%s&quot; (ID %s)"
2149
 
2150
+ #: controllers/controller-admin.php:1313
2151
  #@ wp-table-reloaded
2152
  msgid "About the plugin"
2153
  msgstr "Über das Plugin"
2154
 
2155
+ #: controllers/controller-admin.php:1678
2156
  #@ wp-table-reloaded
2157
  msgid "WP-Table Reloaded Plugin Page"
2158
  msgstr "Plugin-Seite von WP-Table Reloaded"
2159
 
2160
+ #: controllers/controller-admin.php:1678
2161
  #@ wp-table-reloaded
2162
  msgid "Plugin Page"
2163
  msgstr "Plugin-Seite"
2164
 
2165
+ #: controllers/controller-admin.php:1679
2166
  #@ wp-table-reloaded
2167
  msgid "Frequently Asked Questions"
2168
  msgstr "Häufig gestellte Fragen"
2169
 
2170
+ #: controllers/controller-admin.php:1679
2171
  #@ wp-table-reloaded
2172
  msgid "FAQ"
2173
  msgstr "FAQ"
2174
 
2175
+ #: controllers/controller-admin.php:1680
2176
  #@ wp-table-reloaded
2177
  msgid "Support"
2178
  msgstr "Unterstützung"
2179
 
2180
+ #: controllers/controller-admin.php:1681
2181
  #@ wp-table-reloaded
2182
  msgid "Plugin Documentation"
2183
  msgstr "Plugin-Dokumentation"
2184
 
2185
+ #: controllers/controller-admin.php:1681
2186
  #@ wp-table-reloaded
2187
  msgid "Documentation"
2188
  msgstr "Dokumentation"
2189
 
2190
+ #: controllers/controller-admin.php:1682
2191
  #@ wp-table-reloaded
2192
  msgid "Support WP-Table Reloaded with your donation!"
2193
  msgstr "Unterstütze WP-Table Reloaded mit deiner Spende!"
2194
 
2195
+ #: controllers/controller-admin.php:1721
2196
  #@ wp-table-reloaded
2197
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
2198
  msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
2199
 
2200
+ #: controllers/controller-admin.php:1722
2201
  #@ wp-table-reloaded
2202
  msgid "URL of link to insert"
2203
  msgstr "URL des einzufügenden Links"
2204
 
2205
+ #: controllers/controller-admin.php:1723
2206
  #@ wp-table-reloaded
2207
  msgid "Text of link"
2208
  msgstr "Text des Links"
2209
 
2210
+ #: controllers/controller-admin.php:1724
2211
  #@ wp-table-reloaded
2212
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
2213
  msgstr "Um den folgenden HTML-Code für einen Link in eine Tabellenzelle einzufügen, klicke einfach nach dem Schließen des Dialoges auf die Zelle."
2214
 
2215
+ #: controllers/controller-admin.php:1725
2216
  #@ wp-table-reloaded
2217
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
2218
  msgstr "Um ein Bild einzufügen, klicke auf &quot;OK&quot; und klicke dann in die Zelle, in die du das Bild einfügen möchtest."
2219
 
2220
+ #: controllers/controller-admin.php:1725
2221
  #@ wp-table-reloaded
2222
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
2223
  msgstr "Wähle dann das Bild in der sich öffnenden Medien-Bibliothek, lade dort ein neues Bild hoch oder gib die URL des Bildes ein."
2224
 
2225
+ #: controllers/controller-admin.php:1725
2226
  #, php-format
2227
  #@ wp-table-reloaded
2228
  msgid "Click the &quot;%s&quot; button to insert the image."
2229
  msgstr "Klicke auf die &quot;%s&quot;-Schaltfläche, um das Bild einzufügen."
2230
 
2231
+ #: controllers/controller-admin.php:1725
2232
  #@ default
2233
  msgid "Insert into Post"
2234
  msgstr ""
2235
 
2236
+ #: controllers/controller-admin.php:1726
2237
  #@ wp-table-reloaded
2238
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
2239
  msgstr "Um Zellen innerhalb einer Zeile zu verbinden, klicke in die Zelle rechts von der Zelle mit dem Inhalt für die verbundene Zelle."
2240
 
2241
+ #: controllers/controller-admin.php:1727
2242
  #@ wp-table-reloaded
2243
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
2244
  msgstr "Um Zellen innerhalb einer Spalte zu verbinden, klicke in die Zelle unterhalb der Zelle mit dem Inhalt für die verbundene Zelle."
2245
 
2246
+ #: controllers/controller-admin.php:1728
2247
  #@ wp-table-reloaded
2248
  msgid "Do you want to copy the selected tables?"
2249
  msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
2250
 
2251
+ #: controllers/controller-admin.php:1729
2252
  #@ wp-table-reloaded
2253
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
2254
  msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
2255
 
2256
+ #: controllers/controller-admin.php:1730
2257
  #@ wp-table-reloaded
2258
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
2259
  msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
2260
 
2261
+ #: controllers/controller-admin.php:1731
2262
  #@ wp-table-reloaded
2263
  msgid "Do you want to copy this table?"
2264
  msgstr "Möchtest du diese Tabelle kopieren?"
2265
 
2266
+ #: controllers/controller-admin.php:1732
2267
  #@ wp-table-reloaded
2268
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
2269
  msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
2270
 
2271
+ #: controllers/controller-admin.php:1733
2272
  #@ wp-table-reloaded
2273
  msgid "Do you really want to delete the selected rows?"
2274
  msgstr "Möchtest du die ausgewählten Zeilen wirklich löschen?"
2275
 
2276
+ #: controllers/controller-admin.php:1734
2277
  #@ wp-table-reloaded
2278
  msgid "Do you really want to delete the selected columns?"
2279
  msgstr "Möchtest du die ausgewählten Spalten wirklich löschen?"
2280
 
 
2281
  #: controllers/controller-admin.php:1735
2282
+ #: controllers/controller-admin.php:1739
2283
+ #: controllers/controller-admin.php:1741
2284
  #@ wp-table-reloaded
2285
  msgid "You have not selected any rows."
2286
  msgstr "Du hast keine Zeilen ausgewählt."
2287
 
 
2288
  #: controllers/controller-admin.php:1736
2289
+ #: controllers/controller-admin.php:1740
2290
+ #: controllers/controller-admin.php:1742
2291
  #@ wp-table-reloaded
2292
  msgid "You have not selected any columns."
2293
  msgstr "Du hast keine Spalten ausgewählt."
2294
 
2295
+ #: controllers/controller-admin.php:1737
2296
  #@ wp-table-reloaded
2297
  msgid "You can not delete all rows of the table at once!"
2298
  msgstr "Du kannst nicht alle Tabellenzeilen auf einmal löschen!"
2299
 
2300
+ #: controllers/controller-admin.php:1738
2301
  #@ wp-table-reloaded
2302
  msgid "You can not delete all columns of the table at once!"
2303
  msgstr "Du kannst nicht alle Tabellenspalten auf einmal löschen!"
2304
 
2305
+ #: controllers/controller-admin.php:1743
2306
  #@ wp-table-reloaded
2307
  msgid "Do you really want to import this table from the wp-Table plugin?"
2308
  msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
2309
 
2310
+ #: controllers/controller-admin.php:1744
2311
  #@ wp-table-reloaded
2312
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
2313
  msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
2314
 
2315
+ #: controllers/controller-admin.php:1745
2316
  #@ wp-table-reloaded
2317
  msgid "Are you really sure?"
2318
  msgstr "Bist du wirklich sicher?"
2319
 
2320
+ #: controllers/controller-admin.php:1746
2321
  #@ wp-table-reloaded
2322
  msgid "Do you really want to change the ID of the table?"
2323
  msgstr "Möchtest du die ID der Tabelle wirklich ändern?"
2324
 
2325
+ #: controllers/controller-admin.php:1747
2326
  #@ wp-table-reloaded
2327
  msgid "To show this Custom Data Field, use this shortcode:"
2328
  msgstr "Um dieses Benutzerdefinierte Datenfeld anzuzeigen, nutze diesen Shortcode:"
2329
 
2330
+ #: controllers/controller-admin.php:1748
2331
  #@ wp-table-reloaded
2332
  msgid "To show this table, use this shortcode:"
2333
  msgstr "Um diese Tabelle anzuzeigen, nutze diesen Shortcode:"
2334
 
2335
+ #: controllers/controller-admin.php:1749
2336
  #@ wp-table-reloaded
2337
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
2338
  msgstr "Warnung: Du verlierst alle aktuellen Tabellen und Einstellungen! Du solltest erst eine Sicherung anlegen. Sei gewarnt!"
2339
 
2340
+ #: controllers/controller-admin.php:1750
2341
  #@ wp-table-reloaded
2342
  msgid "You have made changes to the content of this table and not yet saved them."
2343
  msgstr "Du hast Inhalte dieser Tabelle geändert, aber noch nicht gespeichert."
2344
 
2345
+ #: controllers/controller-admin.php:1750
2346
  #, php-format
2347
  #@ wp-table-reloaded
2348
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
2349
  msgstr "Du solltest zunächst auf &quot;%s&quot; klicken, um keine Daten und Änderungen zu verlieren, wenn du diese Seite verlässt."
2350
 
2351
+ #: controllers/controller-admin.php:1800
2352
  #@ wp-table-reloaded
2353
  msgid "Insert a Table"
2354
  msgstr "Eine Tabelle einfügen"
2355
 
2356
+ #: controllers/controller-admin.php:1857
2357
  #@ wp-table-reloaded
2358
  msgid "Please wait..."
2359
  msgstr "Bitte warten..."
2360
 
2361
+ #: controllers/controller-admin.php:1858
2362
  #@ wp-table-reloaded
2363
  msgid "Show _MENU_ Tables"
2364
  msgstr "Zeige _MENU_ Tabellen"
2365
 
2366
+ #: controllers/controller-admin.php:1859
2367
  #@ wp-table-reloaded
2368
  msgid "All"
2369
  msgstr "Alle"
2370
 
2371
+ #: controllers/controller-admin.php:1861
2372
  #@ wp-table-reloaded
2373
  msgid "_START_ to _END_ of _TOTAL_ Tables"
2374
  msgstr "_START_ bis _END_ von _TOTAL_ Tabellen"
2375
 
2376
+ #: controllers/controller-admin.php:1862
2377
  #@ wp-table-reloaded
2378
  msgid "(filtered from _MAX_ Tables)"
2379
  msgstr "(gefiltert aus _MAX_ Tabellen)"
2380
 
2381
+ #: controllers/controller-admin.php:1863
2382
  #@ wp-table-reloaded
2383
  msgid "Filter:"
2384
  msgstr "Filtern:"
2385
 
2386
+ #: controllers/controller-admin.php:1864
2387
  #@ wp-table-reloaded
2388
  msgid "First"
2389
  msgstr "Erste"
2390
 
2391
+ #: controllers/controller-admin.php:1865
2392
  #@ wp-table-reloaded
2393
  msgid "Back"
2394
  msgstr "zur&uuml;ck"
2395
 
2396
+ #: controllers/controller-admin.php:1866
2397
  #@ wp-table-reloaded
2398
  msgid "Next"
2399
  msgstr "n&auml;chste"
2400
 
2401
+ #: controllers/controller-admin.php:1867
2402
  #@ wp-table-reloaded
2403
  msgid "Last"
2404
  msgstr "Letzte"
2512
  msgid "This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML."
2513
  msgstr "Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Dafür werden keine HTML-Kenntnisse benötigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zusätzlich können einer Tabelle mit einer JavaScript-Bibliothek weitere Fähigkeiten, wie Sortieren, Paginierung und Filterung hinzugefügt werden."
2514
 
 
 
 
 
 
 
2515
  #. translators: plugin header field 'AuthorURI'
2516
  #: wp-table-reloaded.php:0
2517
  #@ wp-table-reloaded
2518
  msgid "http://tobias.baethge.com/"
2519
  msgstr "http://tobias.baethge.com/"
2520
 
2521
+ #: controllers/controller-admin.php:266
2522
  #@ wp-table-reloaded
2523
  msgid "Indonesian"
2524
  msgstr "Indonesisch"
2525
 
2526
+ #: controllers/controller-admin.php:272
2527
  #@ wp-table-reloaded
2528
  msgid "Portuguese (Portugal)"
2529
  msgstr "Portugiesisch (Portugal)"
2538
  msgid "This is not the place to enter \"Custom CSS\" code!"
2539
  msgstr "Dies ist nicht das Feld für &quot;Zusatz-CSS&quot-Code!"
2540
 
2541
+ #: controllers/controller-admin.php:308
2542
+ #@ wp-table-reloaded
2543
+ msgid "This version includes several bugfixes and a few enhancements."
2544
+ msgstr "Dieses Update enthält mehrere Fehlerkorrekturen und kleine Verbesserungen."
2545
+
2546
+ #: controllers/controller-admin.php:257
2547
+ #@ wp-table-reloaded
2548
+ msgid "Bulgarian"
2549
+ msgstr "Bulgarisch"
2550
+
2551
+ #: controllers/controller-admin.php:264
2552
+ #@ wp-table-reloaded
2553
+ msgid "Hebrew"
2554
+ msgstr "Hebräisch"
2555
+
2556
+ #: views/view-edit.php:390
2557
+ #@ wp-table-reloaded
2558
+ msgid "Filtering/Search"
2559
+ msgstr "Filtern/Suche"
2560
+
2561
+ #. translators: plugin header field 'Author'
2562
  #: wp-table-reloaded.php:0
2563
  #@ wp-table-reloaded
2564
+ msgid "Tobias Bäthge"
2565
+ msgstr ""
2566
 
2567
+ #. translators: plugin header field 'Version'
2568
+ #: wp-table-reloaded.php:0
2569
  #@ wp-table-reloaded
2570
+ msgid "1.9.3-dev"
2571
+ msgstr ""
2572
 
languages/wp-table-reloaded-hr.mo ADDED
Binary file
languages/wp-table-reloaded-hr.po ADDED
@@ -0,0 +1,2957 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2011-01-11 18:13:11+00:00\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: KatanaSwords.info <admin@katanaswords.info>\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-SourceCharset: UTF-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "Language: hr\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ # @ wp-table-reloaded
22
+ #: views/view-ajax_list.php:3 views/view-list.php:2
23
+ msgid "This is a list of all available tables."
24
+ msgstr "Ovo je popis svih dostupnih tablica."
25
+
26
+ # @ wp-table-reloaded
27
+ #: views/view-ajax_list.php:3
28
+ msgid "You may insert a table into a post or page here."
29
+ msgstr "Ovdje možete unijeti tablicu u članak ili stranicu."
30
+
31
+ # @ wp-table-reloaded
32
+ #: views/view-ajax_list.php:4
33
+ #, php-format
34
+ msgid ""
35
+ "Click the &quot;%s&quot; link after the desired table and the corresponding "
36
+ "shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</"
37
+ "strong>)."
38
+ msgstr ""
39
+ "Kliknite &quot;%s&quot; link poslje tablice i vezani skraćeni kod će biti "
40
+ "unesen u editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
41
+
42
+ # @ wp-table-reloaded
43
+ #: views/view-ajax_list.php:4 views/view-ajax_list.php:44
44
+ msgid "Insert"
45
+ msgstr "Unesi"
46
+
47
+ # @ wp-table-reloaded
48
+ #: views/view-ajax_list.php:13 views/view-ajax_list.php:21
49
+ #: views/view-import.php:99 views/view-import.php:108 views/view-list.php:13
50
+ #: views/view-list.php:23
51
+ msgid "ID"
52
+ msgstr "ID"
53
+
54
+ # @ wp-table-reloaded
55
+ #: views/view-add.php:13 views/view-ajax_list.php:14
56
+ #: views/view-ajax_list.php:22 views/view-edit.php:23 views/view-edit.php:283
57
+ #: views/view-import.php:100 views/view-import.php:109 views/view-list.php:15
58
+ #: views/view-list.php:25
59
+ msgid "Table Name"
60
+ msgstr "Ime Tablice"
61
+
62
+ # @ wp-table-reloaded
63
+ #: views/view-add.php:17 views/view-ajax_list.php:15
64
+ #: views/view-ajax_list.php:23 views/view-edit.php:27
65
+ #: views/view-import.php:101 views/view-import.php:110 views/view-list.php:16
66
+ #: views/view-list.php:26
67
+ msgid "Description"
68
+ msgstr "Opis"
69
+
70
+ # @ wp-table-reloaded
71
+ #: views/view-ajax_list.php:16 views/view-ajax_list.php:24
72
+ #: views/view-edit.php:434 views/view-import.php:102 views/view-import.php:111
73
+ msgid "Action"
74
+ msgstr "Radnja"
75
+
76
+ # @ wp-table-reloaded
77
+ #: controllers/controller-admin.php:1860 views/view-ajax_list.php:53
78
+ #: views/view-export.php:72 views/view-list.php:87
79
+ msgid "No tables were found."
80
+ msgstr "Nije pronađena nijedna tablica."
81
+
82
+ # @ wp-table-reloaded
83
+ #: views/view-list.php:2
84
+ msgid "You may add, edit, copy, delete or preview tables here."
85
+ msgstr ""
86
+ "Ovdje možete dodati, editirati, kopirati, izbrisati ili pregledati tablice."
87
+
88
+ # @ wp-table-reloaded
89
+ #: views/view-about.php:14 views/view-ajax_preview.php:5 views/view-edit.php:9
90
+ #: views/view-list.php:2
91
+ #, php-format
92
+ msgid ""
93
+ "To insert the table into a page, post or text-widget, copy the shortcode "
94
+ "<strong>[table id=%s /]</strong> and paste it into the corresponding place "
95
+ "in the editor."
96
+ msgstr ""
97
+ "Da biste unijeli tablicu u stranicu, članak ili tekstualni widget, kopitajte "
98
+ "skraćeni kod <strong>[table id=%s /]</strong> i unesite ga na željeno mjesto "
99
+ "u editoru."
100
+
101
+ # @ wp-table-reloaded
102
+ #: views/view-list.php:2
103
+ msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
104
+ msgstr ""
105
+ "Svaka tablica ima unikatni ID koji treba biti podešen u tom skraćenom kodu."
106
+
107
+ # @ wp-table-reloaded
108
+ #: views/view-list.php:2
109
+ #, php-format
110
+ msgid ""
111
+ "You can also click the button &quot;%s&quot; in the editor toolbar to select "
112
+ "and insert a table."
113
+ msgstr ""
114
+ "Također možete kliknuti &quot;%s&quot; dugme u editoru da biste odabrali i "
115
+ "unijeli tablicu."
116
+
117
+ # @ wp-table-reloaded
118
+ #: views/view-about.php:14 views/view-list.php:2
119
+ msgid "Table"
120
+ msgstr "Tablica"
121
+
122
+ # @ wp-table-reloaded
123
+ #: views/view-edit.php:32 views/view-list.php:17 views/view-list.php:27
124
+ msgid "Last Modified"
125
+ msgstr "Posljednja Izmjena"
126
+
127
+ # @ wp-table-reloaded
128
+ #: views/view-list.php:39
129
+ msgid "(no name)"
130
+ msgstr "(nema imena)"
131
+
132
+ # @ wp-table-reloaded
133
+ #: views/view-list.php:40
134
+ msgid "(no description)"
135
+ msgstr "(nema opisa)"
136
+
137
+ # @ wp-table-reloaded
138
+ #: views/view-edit.php:33 views/view-list.php:44
139
+ msgid "by"
140
+ msgstr "od"
141
+
142
+ # @ wp-table-reloaded
143
+ #: views/view-list.php:58
144
+ #, php-format
145
+ msgid "Edit %s"
146
+ msgstr "Izmijeni %s"
147
+
148
+ # @ default
149
+ # @ wp-table-reloaded
150
+ #: classes/render.class.php:141 views/view-list.php:60
151
+ msgid "Edit"
152
+ msgstr "Izmijeni"
153
+
154
+ # @ wp-table-reloaded
155
+ #: views/view-list.php:62
156
+ msgid "Shortcode"
157
+ msgstr "Skraćeni kod"
158
+
159
+ # @ wp-table-reloaded
160
+ #: views/view-list.php:63
161
+ msgid "Copy"
162
+ msgstr "Kopiraj"
163
+
164
+ # @ wp-table-reloaded
165
+ #: views/view-list.php:64
166
+ msgid "Export"
167
+ msgstr "Export"
168
+
169
+ # @ wp-table-reloaded
170
+ #: views/view-edit.php:156 views/view-edit.php:160 views/view-list.php:65
171
+ msgid "Delete"
172
+ msgstr "Izbriši"
173
+
174
+ # @ wp-table-reloaded
175
+ #: views/view-list.php:66
176
+ #, php-format
177
+ msgid "Preview of Table %s"
178
+ msgstr "Pregled Tablice %s"
179
+
180
+ # @ wp-table-reloaded
181
+ #: views/view-list.php:67
182
+ msgid "Preview"
183
+ msgstr "Pregled"
184
+
185
+ # @ wp-table-reloaded
186
+ #: views/view-import.php:140 views/view-list.php:78
187
+ msgid "Bulk actions:"
188
+ msgstr "Multi izmjena:"
189
+
190
+ # @ wp-table-reloaded
191
+ #: views/view-list.php:78
192
+ msgid "Copy Tables"
193
+ msgstr "Kopiraj Tablice"
194
+
195
+ # @ wp-table-reloaded
196
+ #: views/view-list.php:78
197
+ msgid "Delete Tables"
198
+ msgstr "Izbriši Tablice"
199
+
200
+ # @ wp-table-reloaded
201
+ #: views/view-export.php:72 views/view-list.php:87
202
+ #, php-format
203
+ msgid ""
204
+ "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to "
205
+ "get started!"
206
+ msgstr ""
207
+ "Trebali biste <a href=\"%s\">dodati</a> ili <a href=\"%s\">importirati</a> "
208
+ "tablicu da bi započeli!"
209
+
210
+ # @ wp-table-reloaded
211
+ #: views/view-add.php:4
212
+ msgid ""
213
+ "To add a new table, enter its name, a description (optional) and the number "
214
+ "of rows and columns."
215
+ msgstr ""
216
+ "Da biste dodali novu tablicu, unesite njeno ime, opis (opcionalno) i broj "
217
+ "redaka i stupaca."
218
+
219
+ # @ wp-table-reloaded
220
+ #: views/view-add.php:4
221
+ msgid "You may also add, insert or delete rows and columns later."
222
+ msgstr "Također možete dodati, unijeti ili izbrisati retke i stupce kasnije."
223
+
224
+ # @ wp-table-reloaded
225
+ #: views/view-add.php:14
226
+ msgid "Enter Table Name"
227
+ msgstr "Unesite Ime Tablice"
228
+
229
+ # @ wp-table-reloaded
230
+ #: views/view-add.php:18
231
+ msgid "Enter Description"
232
+ msgstr "Unesite Opis"
233
+
234
+ # @ wp-table-reloaded
235
+ #: views/view-add.php:21
236
+ msgid "Number of Rows"
237
+ msgstr "Broj Redaka"
238
+
239
+ # @ wp-table-reloaded
240
+ #: views/view-add.php:25
241
+ msgid "Number of Columns"
242
+ msgstr "Broj Stupaca"
243
+
244
+ # @ wp-table-reloaded
245
+ #: views/view-add.php:32
246
+ msgid "Add Table"
247
+ msgstr "Dodaj Tablicu"
248
+
249
+ # @ wp-table-reloaded
250
+ #: views/view-import.php:3
251
+ msgid "WP-Table Reloaded can import tables from existing data."
252
+ msgstr "WP-Table Reloaded može importirati tablice iz postojećih podataka."
253
+
254
+ # @ wp-table-reloaded
255
+ #: views/view-import.php:3
256
+ msgid "This may be a CSV, XML or HTML file, each with a certain structure."
257
+ msgstr ""
258
+ "Ovo može biti CSV, XML ili HTML datoteka, svaka sa zasebnom strukturom."
259
+
260
+ # @ wp-table-reloaded
261
+ #: views/view-import.php:3
262
+ msgid ""
263
+ "To import an existing table, please select its format and the source for the "
264
+ "import."
265
+ msgstr ""
266
+ "Da biste importirali postojeću tablicu, molimo da odaberete njen format i "
267
+ "izvornu datoteku za upload."
268
+
269
+ # @ wp-table-reloaded
270
+ #: views/view-import.php:3
271
+ msgid ""
272
+ "You can also decide, if you want to import it as a new table or replace an "
273
+ "existing table."
274
+ msgstr ""
275
+ "Ujedno možete odlučiti ukoliko želite importirati kao novu tablicu ili "
276
+ "zamijeniti postojeću."
277
+
278
+ # @ wp-table-reloaded
279
+ #: views/view-import.php:10
280
+ msgid "Select Import Format"
281
+ msgstr "Odaberite Import Format"
282
+
283
+ # @ wp-table-reloaded
284
+ #: views/view-import.php:21
285
+ msgid "Add or Replace Table?"
286
+ msgstr "Dodaj ili Zamijeni Tablicu?"
287
+
288
+ # @ wp-table-reloaded
289
+ #: views/view-import.php:23
290
+ msgid "Add as new Table"
291
+ msgstr "Dodaj kao novu tablicu"
292
+
293
+ # @ wp-table-reloaded
294
+ #: views/view-import.php:24
295
+ msgid "Replace existing Table"
296
+ msgstr "Zamijeni postojeću tablicu"
297
+
298
+ # @ wp-table-reloaded
299
+ #: views/view-import.php:28
300
+ msgid "Select existing Table to Replace"
301
+ msgstr "Odaberite postojeću tablicu za zamijeniti"
302
+
303
+ # @ wp-table-reloaded
304
+ #: views/view-import.php:45
305
+ msgid "Select source for Import"
306
+ msgstr "Odaberite izvornu datoteku za import"
307
+
308
+ # @ wp-table-reloaded
309
+ #: views/view-import.php:47
310
+ msgid "File upload"
311
+ msgstr "Upload datoteke"
312
+
313
+ # @ wp-table-reloaded
314
+ #: views/view-import.php:48
315
+ msgid "URL"
316
+ msgstr "URL"
317
+
318
+ # @ wp-table-reloaded
319
+ #: views/view-import.php:49
320
+ msgid "Manual input"
321
+ msgstr "Ručni unos"
322
+
323
+ # @ wp-table-reloaded
324
+ #: views/view-import.php:50
325
+ msgid "File on server"
326
+ msgstr "Datoteka na serveru"
327
+
328
+ # @ wp-table-reloaded
329
+ #: views/view-import.php:54
330
+ msgid "Select File with Table to Import"
331
+ msgstr "Odaberite datoteku s tablicom za import"
332
+
333
+ # @ wp-table-reloaded
334
+ #: views/view-import.php:58
335
+ msgid "URL to Import Table from"
336
+ msgstr "URL za importiranje tablice"
337
+
338
+ # @ wp-table-reloaded
339
+ #: views/view-import.php:62
340
+ msgid "Path to file on server"
341
+ msgstr "Putanja do datoteke na serveru"
342
+
343
+ # @ wp-table-reloaded
344
+ #: views/view-import.php:66
345
+ msgid "Paste data with Table to Import"
346
+ msgstr "Unesite podatke s tablicom za import"
347
+
348
+ # @ wp-table-reloaded
349
+ #: views/view-import.php:72
350
+ msgid "Import Table"
351
+ msgstr "Import Tablice"
352
+
353
+ # @ wp-table-reloaded
354
+ #: views/view-import.php:86
355
+ msgid "Import from original wp-Table plugin"
356
+ msgstr "Import iz originalnog wp-Table plugina"
357
+
358
+ # @ wp-table-reloaded
359
+ #: views/view-import.php:132
360
+ msgid "Import"
361
+ msgstr "Import"
362
+
363
+ # @ wp-table-reloaded
364
+ #: views/view-import.php:140
365
+ msgid "Import Tables"
366
+ msgstr "Importaj Tablice"
367
+
368
+ # @ wp-table-reloaded
369
+ #: views/view-import.php:146
370
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
371
+ msgstr ""
372
+ "Plugin wp-Table od Alex Rabe je instaliran, ali nisu pronađene nikakve "
373
+ "tablice."
374
+
375
+ # @ wp-table-reloaded
376
+ #: views/view-uninstall.php:3
377
+ msgid "Plugin deactivated successfully."
378
+ msgstr "Plugin uspješno deaktiviran."
379
+
380
+ # @ wp-table-reloaded
381
+ #: views/view-uninstall.php:4
382
+ msgid ""
383
+ "All tables, data and options were deleted. You may now manually remove the "
384
+ "plugin's subfolder from your WordPress plugin folder or use the \"Delete\" "
385
+ "link on the Plugins page."
386
+ msgstr ""
387
+ "Sve tablice, podaci i postavke su izbrisane. Sada možete ručno maknuti "
388
+ "direktorij plugina iz vašeg Wordpress plugin direktorija ili korisiti "
389
+ "\"Izbriši\" link na stranici za Plugin-ove."
390
+
391
+ # @ wp-table-reloaded
392
+ #: views/view-options.php:3
393
+ msgid ""
394
+ "WP-Table Reloaded has several options which affect the plugin behavior in "
395
+ "different areas."
396
+ msgstr ""
397
+ "WP-Table Reloaded ima nekoliko opcija koje utječu na ponašanje plugina u "
398
+ "različitim situacijama."
399
+
400
+ # @ wp-table-reloaded
401
+ #: views/view-options.php:4
402
+ msgid ""
403
+ "Frontend Options influence the output and used features of tables in pages, "
404
+ "posts or text-widgets."
405
+ msgstr ""
406
+ "Opcije Sučelja utječu na izgled i mogućnosti tablica na stranicama, člancima "
407
+ "ili tekstualnim widgetima."
408
+
409
+ # @ wp-table-reloaded
410
+ #: views/view-options.php:4
411
+ #, php-format
412
+ msgid ""
413
+ "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; "
414
+ "screen."
415
+ msgstr ""
416
+ "Pozadinske Opcije utječu na administratorsko sučelje plugina, npr. &quot;"
417
+ "%s&quot; ekran."
418
+
419
+ # @ wp-table-reloaded
420
+ #: views/view-options.php:4 views/view-options.php:55
421
+ #: views/view-options.php:75 views/view-options.php:79
422
+ msgid "Edit Table"
423
+ msgstr "Editiraj Tablicu"
424
+
425
+ # @ wp-table-reloaded
426
+ #: views/view-options.php:4
427
+ msgid "Administrators have access to further Admin Options."
428
+ msgstr "Administratori imaju pristup dodatnim Admin Opcijama."
429
+
430
+ # @ wp-table-reloaded
431
+ #: views/view-options.php:19
432
+ msgid "Frontend Options"
433
+ msgstr "Opcije Sučelja"
434
+
435
+ # @ wp-table-reloaded
436
+ #: views/view-about.php:91 views/view-edit.php:15 views/view-edit.php:51
437
+ #: views/view-edit.php:104 views/view-edit.php:262 views/view-edit.php:361
438
+ #: views/view-edit.php:422 views/view-options.php:19 views/view-options.php:70
439
+ #: views/view-options.php:91 views/view-options.php:185
440
+ #: views/view-options.php:196
441
+ msgctxt "expand"
442
+ msgid "Hide"
443
+ msgstr "Sakrij"
444
+
445
+ # @ wp-table-reloaded
446
+ #: views/view-about.php:91 views/view-edit.php:15 views/view-edit.php:51
447
+ #: views/view-edit.php:104 views/view-edit.php:262 views/view-edit.php:361
448
+ #: views/view-edit.php:422 views/view-options.php:19 views/view-options.php:70
449
+ #: views/view-options.php:91 views/view-options.php:185
450
+ #: views/view-options.php:196
451
+ msgid "Expand"
452
+ msgstr "Proširi"
453
+
454
+ # @ wp-table-reloaded
455
+ #: views/view-options.php:23
456
+ msgid "JavaScript library"
457
+ msgstr "JavaScript biblioteka"
458
+
459
+ # @ wp-table-reloaded
460
+ #: views/view-options.php:24
461
+ msgid "Yes, enable the use of a JavaScript library."
462
+ msgstr "Da, aktiviraj korištenje JavaScript biblioteke."
463
+
464
+ # @ wp-table-reloaded
465
+ #: views/view-options.php:24
466
+ msgid ""
467
+ "WP-Table Reloaded includes three JavaScript libraries that can add useful "
468
+ "features, like sorting, pagination, and filtering, to a table."
469
+ msgstr ""
470
+ "WP-Table Reloaded sadrži tri JavaScript biblioteke koje mogu dodati "
471
+ "mogućnosti, poput sortiranja, paginacije i filtriranja na tablicu."
472
+
473
+ # @ wp-table-reloaded
474
+ #: views/view-options.php:28
475
+ msgid "Select the library to use:"
476
+ msgstr "Odaberite biblioteku za korištenje:"
477
+
478
+ # @ wp-table-reloaded
479
+ #: views/view-options.php:29 views/view-options.php:131
480
+ msgid "recommended"
481
+ msgstr "preporučeno"
482
+
483
+ # @ wp-table-reloaded
484
+ #: views/view-options.php:33
485
+ #, php-format
486
+ msgid ""
487
+ "(You can read more about each library's features on the <a href=\"%s"
488
+ "\">plugin's website</a>.)"
489
+ msgstr ""
490
+ "(Možete pročitati više o mogućnostima svake biblioteke na <a href=\"%s"
491
+ "\">Plugin web stranici</a>.)"
492
+
493
+ # @ wp-table-reloaded
494
+ #: views/view-options.php:36
495
+ msgid "Default CSS"
496
+ msgstr "Standardni CSS"
497
+
498
+ # @ wp-table-reloaded
499
+ #: views/view-options.php:38
500
+ msgid ""
501
+ "Yes, include and load the plugin's default CSS Stylesheets. This is highly "
502
+ "recommended, if you use one of the JavaScript libraries!"
503
+ msgstr ""
504
+ "Da, uključi standardne CSS stilove od plugina. Ovo je preporučeno ukoliko "
505
+ "koristite neki od JavaScript biblioteka."
506
+
507
+ # @ wp-table-reloaded
508
+ #: views/view-options.php:42
509
+ msgid "Custom CSS"
510
+ msgstr "Proizvoljni CSS"
511
+
512
+ # @ wp-table-reloaded
513
+ #: views/view-options.php:44
514
+ msgid "Yes, include and load the following custom CSS commands."
515
+ msgstr "Da, uključi sljedeće proizvoljne CSS komande."
516
+
517
+ # @ wp-table-reloaded
518
+ #: views/view-options.php:44
519
+ msgid "This should be used to change the table layout and styling."
520
+ msgstr "Ovo se koristi da biste promijenili izgled i stil tablice."
521
+
522
+ # @ wp-table-reloaded
523
+ #: views/view-options.php:50
524
+ #, php-format
525
+ msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
526
+ msgstr ""
527
+ "U <a href=\"%s\">često postavljanim pitanjima</a> možete pronaći primjere "
528
+ "stiliziranja tablica."
529
+
530
+ # @ wp-table-reloaded
531
+ #: views/view-options.php:50
532
+ #, php-format
533
+ msgid ""
534
+ "Information on available CSS selectors can be found in the <a href=\"%s"
535
+ "\">documentation</a>."
536
+ msgstr ""
537
+ "Informacije o dostupnim CSS selektorima možete pronaći u <a href=\"%s"
538
+ "\">Dokumentaciji</a>."
539
+
540
+ # @ wp-table-reloaded
541
+ #: views/view-options.php:54
542
+ msgid "Links in new window"
543
+ msgstr "Linkovi u novom prozoru"
544
+
545
+ # @ wp-table-reloaded
546
+ #: views/view-options.php:55
547
+ #, php-format
548
+ msgid ""
549
+ "Yes, open links that are inserted with the &quot;%s&quot; button on the "
550
+ "&quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
551
+ msgstr ""
552
+ "Da, otvori linkove koji su unešeni sa &quot;%s&quot; dugmetom na &quot;"
553
+ "%s&quot; ekranu u novom prozoru internet preglednika <strong>od sad nadalje</"
554
+ "strong>."
555
+
556
+ # @ wp-table-reloaded
557
+ #: views/view-edit.php:114 views/view-options.php:55
558
+ msgid "Insert Link"
559
+ msgstr "Unesi Link"
560
+
561
+ # @ wp-table-reloaded
562
+ #: views/view-options.php:62 views/view-options.php:169
563
+ msgid "Save Options"
564
+ msgstr "Snimi Postavke"
565
+
566
+ # @ wp-table-reloaded
567
+ #: views/view-edit.php:45 views/view-edit.php:257 views/view-edit.php:417
568
+ #: views/view-edit.php:468 views/view-options.php:65
569
+ #: views/view-options.php:172
570
+ msgid "Cancel"
571
+ msgstr "Prekini"
572
+
573
+ # @ wp-table-reloaded
574
+ #: views/view-options.php:70
575
+ msgid "Backend Options"
576
+ msgstr "Opcije Pozadinskog Sučelja"
577
+
578
+ # @ wp-table-reloaded
579
+ #: views/view-options.php:74
580
+ msgid "Exit warning"
581
+ msgstr "Upozorenje za izlaz"
582
+
583
+ # @ wp-table-reloaded
584
+ #: views/view-options.php:75
585
+ #, php-format
586
+ msgid ""
587
+ "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have "
588
+ "not yet saved my changes."
589
+ msgstr ""
590
+ "Da, prikaži poruku upozorenja, ukoliko izlazite iz &quot;%s&quot; i još "
591
+ "niste snimili postavke."
592
+
593
+ # @ wp-table-reloaded
594
+ #: views/view-options.php:78
595
+ msgid "Growing textareas"
596
+ msgstr "Rastuće tekst polje"
597
+
598
+ # @ wp-table-reloaded
599
+ #: views/view-options.php:79
600
+ #, php-format
601
+ msgid ""
602
+ "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are "
603
+ "focussed."
604
+ msgstr ""
605
+ "Da, povećaj tekstualno polje na &quot;%s&quot; ekranu kad je fokusiran."
606
+
607
+ # @ wp-table-reloaded
608
+ #: views/view-options.php:82
609
+ msgid "List of Tables features"
610
+ msgstr "Popis Mogućnosti Tablica"
611
+
612
+ # @ wp-table-reloaded
613
+ #: views/view-options.php:83
614
+ #, php-format
615
+ msgid ""
616
+ "Yes, use the DataTables JavaScript features (sorting, pagination, filtering) "
617
+ "on the &quot;%s&quot; screen."
618
+ msgstr ""
619
+ "Da, koristi DataTables JavaScript mogućnosti (sortiranje, paginacija, "
620
+ "filtriranje) na &quot;%s&quot; ekranu."
621
+
622
+ # @ wp-table-reloaded
623
+ #: controllers/controller-admin.php:1302 views/view-options.php:83
624
+ msgid "List Tables"
625
+ msgstr "Popis Tablica"
626
+
627
+ # @ wp-table-reloaded
628
+ #: views/view-options.php:91
629
+ msgid "Admin Options"
630
+ msgstr "Admin Opcije"
631
+
632
+ # @ wp-table-reloaded
633
+ #: views/view-options.php:93 views/view-options.php:210
634
+ #: views/view-options.php:224
635
+ msgid "This area are only available to site administrators!"
636
+ msgstr "Ovaj dio je dostupan samo administratorima web stranice."
637
+
638
+ # @ wp-table-reloaded
639
+ #: views/view-options.php:93
640
+ msgid "You can therefore not change these options."
641
+ msgstr "To znači da ne možete mijenjati ove opcije."
642
+
643
+ # @ wp-table-reloaded
644
+ #: views/view-options.php:98
645
+ msgid "Plugin Access"
646
+ msgstr "Plugin Pristup"
647
+
648
+ # @ wp-table-reloaded
649
+ #: views/view-options.php:99
650
+ msgid "To access WP-Table Reloaded, a user needs to be:"
651
+ msgstr "Da bi mogao pristupiti WP-Table Reloaded, korisnik mora biti:"
652
+
653
+ # @ default
654
+ #: views/view-options.php:100 views/view-options.php:111
655
+ msgctxt "User role"
656
+ msgid "Administrator"
657
+ msgstr "Administrator"
658
+
659
+ # @ default
660
+ #: views/view-options.php:101 views/view-options.php:112
661
+ msgctxt "User role"
662
+ msgid "Editor"
663
+ msgstr "Editor"
664
+
665
+ # @ default
666
+ #: views/view-options.php:102 views/view-options.php:113
667
+ msgctxt "User role"
668
+ msgid "Author"
669
+ msgstr "Autor"
670
+
671
+ # @ default
672
+ #: views/view-options.php:103
673
+ msgctxt "User role"
674
+ msgid "Contributor"
675
+ msgstr "Pisac"
676
+
677
+ # @ wp-table-reloaded
678
+ #: views/view-options.php:109
679
+ msgid "Plugin Options Access"
680
+ msgstr "Pristup Plugin Opcijama"
681
+
682
+ # @ wp-table-reloaded
683
+ #: views/view-options.php:110
684
+ msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
685
+ msgstr ""
686
+ "Da bi mogao pristupiti WP-Table Reloaded Plugin Opcijama, korisnik mora biti:"
687
+
688
+ # @ wp-table-reloaded
689
+ #: views/view-options.php:114
690
+ msgid ""
691
+ "Admin Options, Dump file Import, and Manual Plugin Uninstall are always "
692
+ "accessible by Administrators only, regardless of this setting."
693
+ msgstr ""
694
+ "Admin Opcije, import datoteka, i ručno deinstaliranje plugina je uvijek "
695
+ "dostupno samo administratorima, bez obzira na ovu postavku."
696
+
697
+ # @ wp-table-reloaded
698
+ #: views/view-options.php:118
699
+ msgid "Plugin Language"
700
+ msgstr "Jezik Plugina"
701
+
702
+ # @ wp-table-reloaded
703
+ #: views/view-options.php:119
704
+ msgid "WP-Table Reloaded shall be shown in this language:"
705
+ msgstr "WP-Table Reloaded će biti prikazan u ovom jeziku:"
706
+
707
+ # @ wp-table-reloaded
708
+ #: views/view-options.php:120
709
+ #, php-format
710
+ msgid "WordPress Default (currently %s)"
711
+ msgstr "WordPress Postavka (trenutno %s)"
712
+
713
+ # @ wp-table-reloaded
714
+ #: views/view-options.php:129
715
+ msgid "Admin menu entry"
716
+ msgstr "Admin meni stavka"
717
+
718
+ # @ wp-table-reloaded
719
+ #: views/view-options.php:130
720
+ msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
721
+ msgstr ""
722
+ "WP-Table Reloaded će biti prikazan u ovoj sekciji na administratorskom "
723
+ "meniju:"
724
+
725
+ # @ default
726
+ #: views/view-options.php:131
727
+ msgid "Tools"
728
+ msgstr "Alati"
729
+
730
+ # @ default
731
+ #: views/view-options.php:132
732
+ msgid "Posts"
733
+ msgstr "Članci"
734
+
735
+ # @ default
736
+ #: views/view-options.php:139
737
+ msgid "Pages"
738
+ msgstr "Stranice"
739
+
740
+ # @ default
741
+ #: views/view-options.php:140
742
+ msgid "Plugins"
743
+ msgstr "Pluginovi"
744
+
745
+ # @ default
746
+ #: views/view-options.php:141
747
+ msgid "Settings"
748
+ msgstr "Postavke"
749
+
750
+ # @ default
751
+ #: views/view-options.php:142
752
+ msgid "Dashboard"
753
+ msgstr "Kontrolna Ploča"
754
+
755
+ # @ wp-table-reloaded
756
+ #: views/view-options.php:143
757
+ msgid "Top-Level"
758
+ msgstr "Viši Nivo"
759
+
760
+ # @ wp-table-reloaded
761
+ #: views/view-options.php:148
762
+ msgid "Frontend Edit Link"
763
+ msgstr "Edit Link na Stranici"
764
+
765
+ # @ wp-table-reloaded
766
+ #: views/view-options.php:149
767
+ msgid ""
768
+ "Yes, show an \"Edit\" link to users with sufficient rights near every table "
769
+ "on the frontend."
770
+ msgstr ""
771
+ "Da, prikaži \"Izmijeni\" link korisnicima sa mogućnostima izmjene pored "
772
+ "svake tablice na stranici."
773
+
774
+ # @ wp-table-reloaded
775
+ #: views/view-options.php:153
776
+ msgid "WordPress Search"
777
+ msgstr "WordPress Pretraga"
778
+
779
+ # @ wp-table-reloaded
780
+ #: views/view-options.php:154
781
+ msgid ""
782
+ "Yes, the WordPress Search shall also find posts and pages that contain the "
783
+ "search term inside a table."
784
+ msgstr ""
785
+ "Da, Wordpress Pretraga će također pretraživati članke i stranice koje sadrže "
786
+ "ključne riječi unutar tablice."
787
+
788
+ # @ wp-table-reloaded
789
+ #: views/view-options.php:158
790
+ msgid "Remove upon Deactivation"
791
+ msgstr "Makni kod Deaktivacije"
792
+
793
+ # @ wp-table-reloaded
794
+ #: views/view-options.php:159
795
+ msgid ""
796
+ "Yes, remove all plugin related data from the database when the plugin is "
797
+ "deactivated."
798
+ msgstr ""
799
+ "Da, makni sve podatke od plugina (tablice, postavke) iz baze podataka kada "
800
+ "je plugin deaktiviran."
801
+
802
+ # @ wp-table-reloaded
803
+ #: views/view-options.php:159
804
+ msgid "Should be activated directly before deactivation only!"
805
+ msgstr "Treba biti aktivirano isključivo prije same deaktivacije!"
806
+
807
+ # @ wp-table-reloaded
808
+ #: views/view-options.php:179
809
+ msgid "WP-Table Reloaded Data Export and Backup"
810
+ msgstr "WP-Table Reloaded Import i Backup Podataka"
811
+
812
+ # @ wp-table-reloaded
813
+ #: views/view-options.php:182
814
+ msgid ""
815
+ "WP-Table Reloaded can export and import a so-called dump file that contains "
816
+ "all tables, their settings and the plugin's options."
817
+ msgstr ""
818
+ "WP-Table Reloaded može exportirati i importirati takozvanu dump-datoteku "
819
+ "koja sadrži sve tablice, njene postavke i ostale postavke plugina."
820
+
821
+ # @ wp-table-reloaded
822
+ #: views/view-options.php:182
823
+ msgid ""
824
+ "This file can be used as a backup or to move all data to another WordPress "
825
+ "site."
826
+ msgstr ""
827
+ "Ova datoteka se može koristiti kao backup ili da biste premjestili podatke "
828
+ "na drugu Wordpress stranicu."
829
+
830
+ # @ wp-table-reloaded
831
+ #: views/view-options.php:185
832
+ msgid "Export a dump file"
833
+ msgstr "Exportiraj dump datoteku"
834
+
835
+ # @ wp-table-reloaded
836
+ #: views/view-options.php:187
837
+ msgid ""
838
+ "To export all Tables and their settings, click the button below to generate "
839
+ "and download a dump file."
840
+ msgstr ""
841
+ "Da biste eksportirali sve tablice i postavke, kliknite dugme dolje da biste "
842
+ "generirali i preuzeli dump datoteku."
843
+
844
+ # @ wp-table-reloaded
845
+ #: views/view-options.php:187
846
+ msgid ""
847
+ "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that "
848
+ "file under any circumstances as you will destroy the file!"
849
+ msgstr ""
850
+ "<strong>Upozorenje:</strong> nipošto nemojte direktno mijenjati podatke u "
851
+ "datoteci jer će biti neiskoristiva!"
852
+
853
+ # @ wp-table-reloaded
854
+ #: views/view-export.php:10 views/view-options.php:190
855
+ msgid "Create and Download Dump File"
856
+ msgstr "Stvori i Preuzmi Dump Datoteku"
857
+
858
+ # @ wp-table-reloaded
859
+ #: views/view-options.php:196
860
+ msgid "Import a dump file"
861
+ msgstr "Importiraj dump datoteku"
862
+
863
+ # @ wp-table-reloaded
864
+ #: views/view-options.php:198
865
+ msgid ""
866
+ "To import a WP-Table Reloaded dump file and restore the included data, "
867
+ "upload the file from your computer."
868
+ msgstr ""
869
+ "Da biste importirali WP-Table Reloaded dump datoteku, uploadajte je sa "
870
+ "svojeg računala."
871
+
872
+ # @ wp-table-reloaded
873
+ #: views/view-options.php:198
874
+ msgid ""
875
+ "All current data of this WP-Table Reloaded installation (Tables, Options, "
876
+ "Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
877
+ msgstr ""
878
+ "Svi postojeći podatci u ovoj instalaciji WP-Table Reloaded će <strong>BITI "
879
+ "PREBRISANI</strong> s podacima iz datoteke!"
880
+
881
+ # @ wp-table-reloaded
882
+ #: views/view-options.php:198
883
+ msgid "Do not proceed, if you do not understand this!"
884
+ msgstr "Ukoliko ne razumijete ovu opciju, nemojte nastaviti!"
885
+
886
+ # @ wp-table-reloaded
887
+ #: views/view-options.php:198
888
+ msgid ""
889
+ "It is highly recommended to export and backup the data of this installation "
890
+ "before importing another dump file (see above)."
891
+ msgstr ""
892
+ "Veoma je preporučeno da eksportirate i napravite backup podataka trenutne "
893
+ "instalacije prije nego unosite podatke iz dump datoteke (pogledaj iznad)."
894
+
895
+ # @ wp-table-reloaded
896
+ #: views/view-options.php:204
897
+ msgid "Select Dump File"
898
+ msgstr "Odaberi Dump Datoteku"
899
+
900
+ # @ wp-table-reloaded
901
+ #: views/view-options.php:206
902
+ msgid "Import Dump File"
903
+ msgstr "Importaj Dump Datoteku"
904
+
905
+ # @ wp-table-reloaded
906
+ #: views/view-options.php:216
907
+ msgid "Manually Uninstall WP-Table Reloaded"
908
+ msgstr "Ručno Deinstaliraj WP-Table Reloaded"
909
+
910
+ # @ wp-table-reloaded
911
+ #: views/view-options.php:218
912
+ msgid ""
913
+ "Uninstalling <strong>will permanently delete</strong> all tables, data, and "
914
+ "options, that belong to WP-Table Reloaded from the database, including all "
915
+ "tables you added or imported."
916
+ msgstr ""
917
+ "Deinstalacija će <strong>trajno izbrisati</strong> sve tablice, podatke i "
918
+ "postavke koje pripadaju WP-Table Reloaded iz baze podataka, uključujući sve "
919
+ "tablice koje ste dodali ili importirali."
920
+
921
+ # @ wp-table-reloaded
922
+ #: views/view-options.php:218
923
+ msgid ""
924
+ "You will manually need to remove the plugin's files from the plugin folder "
925
+ "afterwards."
926
+ msgstr ""
927
+ "Kasnije morate ručno maknuti datoteke plugina iz Wordpress Plugins "
928
+ "direktorija."
929
+
930
+ # @ wp-table-reloaded
931
+ #: views/view-options.php:218
932
+ msgid ""
933
+ "Be very careful with this and only click the button if you know what you are "
934
+ "doing!"
935
+ msgstr ""
936
+ "Budite veoma oprezni s ovim i kliknite dugme samo ako znate što radite!"
937
+
938
+ # @ wp-table-reloaded
939
+ #: views/view-options.php:222
940
+ msgid "Uninstall Plugin WP-Table Reloaded"
941
+ msgstr "Deinstaliraj Plugin WP-Table Reloaded"
942
+
943
+ # @ wp-table-reloaded
944
+ #: controllers/controller-admin.php:1087 views/view-options.php:233
945
+ msgid "You do not have sufficient rights to access the Plugin Options."
946
+ msgstr "Nemate omogućen pristup da biste vidjeli Opcije Plugina."
947
+
948
+ # @ wp-table-reloaded
949
+ #: views/view-export.php:10
950
+ msgid ""
951
+ "It is recommended to export and backup the data of important tables "
952
+ "regularly."
953
+ msgstr ""
954
+ "Preporučeno je da eksportirate i radite backup važnih tablica učestalo."
955
+
956
+ # @ wp-table-reloaded
957
+ #: views/view-export.php:10
958
+ msgid ""
959
+ "Select the table, the desired export format and (for CSV only) a delimiter."
960
+ msgstr ""
961
+ "Odaberite tablicu, željeni format za eksportiranje i delimiter (razdjeljnik, "
962
+ "najčešće zarez) ukoliko se radi o CSV datoteci."
963
+
964
+ # @ wp-table-reloaded
965
+ #: views/view-export.php:10
966
+ msgid ""
967
+ "You may choose to download the export file. Otherwise it will be shown on "
968
+ "this page."
969
+ msgstr ""
970
+ "Možete preuzeti eksportiranu datoteku. Ukoliko je ne preuzmete biti će "
971
+ "prikazana na ovoj stranici."
972
+
973
+ # @ wp-table-reloaded
974
+ #: views/view-export.php:10
975
+ msgid ""
976
+ "Be aware that only the table data, but no options or settings are exported."
977
+ msgstr ""
978
+ "Napomena: samo tablice i njeni podaci će biti eksportirani, bez opcija i "
979
+ "postavki."
980
+
981
+ # @ wp-table-reloaded
982
+ #: views/view-export.php:10
983
+ #, php-format
984
+ msgid ""
985
+ "To backup all tables, including their settings, at once use the &quot;"
986
+ "%s&quot; button in the &quot;%s&quot;."
987
+ msgstr ""
988
+ "Da biste napravili backup svih tablica uključujući i postavke odjednom, "
989
+ "možete korisitit &quot;%s&quot; dugme u &quot;%s&quot;."
990
+
991
+ # @ wp-table-reloaded
992
+ #: controllers/controller-admin.php:1270 controllers/controller-admin.php:1312
993
+ #: views/view-edit.php:350 views/view-edit.php:365 views/view-export.php:10
994
+ msgid "Plugin Options"
995
+ msgstr "Opcije Plugina"
996
+
997
+ # @ wp-table-reloaded
998
+ #: views/view-export.php:18
999
+ msgid "Select Table to Export"
1000
+ msgstr "Odaberite Tablicu za Export"
1001
+
1002
+ # @ wp-table-reloaded
1003
+ #: views/view-export.php:34
1004
+ msgid "Select Export Format"
1005
+ msgstr "Odaberite Format Export Datoteke"
1006
+
1007
+ # @ wp-table-reloaded
1008
+ #: views/view-export.php:44
1009
+ msgid "Select Delimiter to use"
1010
+ msgstr "Odaberite Razdjeljnik podataka"
1011
+
1012
+ # @ wp-table-reloaded
1013
+ #: views/view-export.php:51
1014
+ msgid "Only needed for CSV export."
1015
+ msgstr "Potrebno samo za CSV datoteke."
1016
+
1017
+ # @ wp-table-reloaded
1018
+ #: views/view-export.php:54
1019
+ msgid "Download file"
1020
+ msgstr "Preuzmi datoteku"
1021
+
1022
+ # @ wp-table-reloaded
1023
+ #: views/view-export.php:55
1024
+ msgid "Yes, I want to download the export file."
1025
+ msgstr "Da, želim preuzeti export datoteku."
1026
+
1027
+ # @ wp-table-reloaded
1028
+ #: views/view-edit.php:477 views/view-export.php:60
1029
+ msgid "Export Table"
1030
+ msgstr "Export Tablice"
1031
+
1032
+ # @ wp-table-reloaded
1033
+ #: views/view-edit.php:8
1034
+ msgid "On this page, you can edit the content of the table."
1035
+ msgstr "Na ovoj stranici možete mijenjati sadržaj tablice."
1036
+
1037
+ # @ wp-table-reloaded
1038
+ #: views/view-edit.php:8
1039
+ msgid ""
1040
+ "It is also possible to change the table structure by inserting, deleting, "
1041
+ "moving, and swapping columns and rows."
1042
+ msgstr ""
1043
+ "Također je moguće mijenjati strukturu tablice dodavanjem, brisanjem, "
1044
+ "premještanjem i razmjenom redaka i stupaca."
1045
+
1046
+ # @ wp-table-reloaded
1047
+ #: views/view-edit.php:15
1048
+ msgid "Table Information"
1049
+ msgstr "Informacije Tablice"
1050
+
1051
+ # @ wp-table-reloaded
1052
+ #: views/view-edit.php:19
1053
+ msgid "Table ID"
1054
+ msgstr "ID Tablice"
1055
+
1056
+ # @ wp-table-reloaded
1057
+ #: controllers/controller-admin.php:1750 views/view-edit.php:41
1058
+ #: views/view-edit.php:253 views/view-edit.php:413 views/view-edit.php:464
1059
+ msgid "Update Changes"
1060
+ msgstr "Snimi Promjene"
1061
+
1062
+ # @ wp-table-reloaded
1063
+ #: views/view-edit.php:42 views/view-edit.php:254 views/view-edit.php:414
1064
+ #: views/view-edit.php:465
1065
+ msgid "Save and go back"
1066
+ msgstr "Snimi i idi nazad"
1067
+
1068
+ # @ wp-table-reloaded
1069
+ #: views/view-edit.php:51
1070
+ msgid "Table Contents"
1071
+ msgstr "Sadržaj Tablice"
1072
+
1073
+ # @ wp-table-reloaded
1074
+ #: views/view-edit.php:104
1075
+ msgid "Data Manipulation"
1076
+ msgstr "Rukovanje Podacima"
1077
+
1078
+ # @ wp-table-reloaded
1079
+ #: views/view-edit.php:115
1080
+ msgid "Insert Image"
1081
+ msgstr "Unesi Sliku"
1082
+
1083
+ # @ wp-table-reloaded
1084
+ #: views/view-edit.php:124
1085
+ msgid "ascending"
1086
+ msgstr "uzlaznom"
1087
+
1088
+ # @ wp-table-reloaded
1089
+ #: views/view-edit.php:125
1090
+ msgid "descending"
1091
+ msgstr "silaznom"
1092
+
1093
+ # @ wp-table-reloaded
1094
+ #: views/view-edit.php:128
1095
+ #, php-format
1096
+ msgid "Sort table by column %s in %s order"
1097
+ msgstr "Sortiraj tablicu sa stupcem %s u %s poretku"
1098
+
1099
+ # @ wp-table-reloaded
1100
+ #: views/view-edit.php:130
1101
+ msgid "Sort"
1102
+ msgstr "Sortiranje"
1103
+
1104
+ # @ wp-table-reloaded
1105
+ #: views/view-edit.php:135 views/view-edit.php:139
1106
+ msgctxt "item"
1107
+ msgid "Hide"
1108
+ msgstr "Sakrij"
1109
+
1110
+ # @ wp-table-reloaded
1111
+ #: views/view-edit.php:136 views/view-edit.php:140
1112
+ msgctxt "item"
1113
+ msgid "Unhide"
1114
+ msgstr "Prikaži"
1115
+
1116
+ # @ wp-table-reloaded
1117
+ #: views/view-edit.php:137
1118
+ #, php-format
1119
+ msgctxt "hide_unhide"
1120
+ msgid "Selected rows: %s %s"
1121
+ msgstr "Označeni redovi: %s %s"
1122
+
1123
+ # @ wp-table-reloaded
1124
+ #: views/view-edit.php:141
1125
+ #, php-format
1126
+ msgctxt "hide_unhide"
1127
+ msgid "Selected columns: %s %s"
1128
+ msgstr "Označeni stupci: %s %s"
1129
+
1130
+ # @ wp-table-reloaded
1131
+ #: views/view-edit.php:144
1132
+ msgid "Combine cells in a row:"
1133
+ msgstr "Spoji ćelije u retku:"
1134
+
1135
+ # @ wp-table-reloaded
1136
+ #: views/view-edit.php:145
1137
+ msgid "Add colspan"
1138
+ msgstr "Produži ćeliju kroz stupce"
1139
+
1140
+ # @ wp-table-reloaded
1141
+ #: views/view-edit.php:148
1142
+ msgid "Combine cells in a column:"
1143
+ msgstr "Spoji ćelije u stupcu:"
1144
+
1145
+ # @ wp-table-reloaded
1146
+ #: views/view-edit.php:149
1147
+ msgid "Add rowspan"
1148
+ msgstr "Produži ćeliju kroz redak"
1149
+
1150
+ # @ wp-table-reloaded
1151
+ #: views/view-edit.php:155
1152
+ msgid "Insert row"
1153
+ msgstr "Dodaj redak"
1154
+
1155
+ # @ wp-table-reloaded
1156
+ #: views/view-edit.php:157
1157
+ #, php-format
1158
+ msgctxt "insert_delete"
1159
+ msgid "Selected rows: %s %s"
1160
+ msgstr "Označeni redovi: %s %s"
1161
+
1162
+ # @ wp-table-reloaded
1163
+ #: views/view-edit.php:159
1164
+ msgid "Insert column"
1165
+ msgstr "Dodaj stupac"
1166
+
1167
+ # @ wp-table-reloaded
1168
+ #: views/view-edit.php:161
1169
+ #, php-format
1170
+ msgctxt "insert_delete"
1171
+ msgid "Selected columns: %s %s"
1172
+ msgstr "Označeni stupci: %s %s"
1173
+
1174
+ # @ wp-table-reloaded
1175
+ #: views/view-edit.php:171
1176
+ #, php-format
1177
+ msgid "Add %s row(s)"
1178
+ msgstr "Dodaj %s redova"
1179
+
1180
+ # @ wp-table-reloaded
1181
+ #: views/view-edit.php:172 views/view-edit.php:175 views/view-edit.php:459
1182
+ msgid "Add"
1183
+ msgstr "Dodaj"
1184
+
1185
+ # @ wp-table-reloaded
1186
+ #: views/view-edit.php:174
1187
+ #, php-format
1188
+ msgid "Add %s column(s)"
1189
+ msgstr "Dodaj %s stupaca"
1190
+
1191
+ # @ wp-table-reloaded
1192
+ #: views/view-edit.php:189
1193
+ #, php-format
1194
+ msgid "Swap rows %s and %s"
1195
+ msgstr "Razmjesti retke %s i %s"
1196
+
1197
+ # @ wp-table-reloaded
1198
+ #: views/view-edit.php:191 views/view-edit.php:206
1199
+ msgid "Swap"
1200
+ msgstr "Razmjesti"
1201
+
1202
+ # @ wp-table-reloaded
1203
+ #: views/view-edit.php:204
1204
+ #, php-format
1205
+ msgid "Swap columns %s and %s"
1206
+ msgstr "Razmjesti stupce %s i %s"
1207
+
1208
+ # @ wp-table-reloaded
1209
+ #: views/view-edit.php:219 views/view-edit.php:239
1210
+ msgid "before"
1211
+ msgstr "prije"
1212
+
1213
+ # @ wp-table-reloaded
1214
+ #: views/view-edit.php:220 views/view-edit.php:240
1215
+ msgid "after"
1216
+ msgstr "poslije"
1217
+
1218
+ # @ wp-table-reloaded
1219
+ #: views/view-edit.php:223
1220
+ #, php-format
1221
+ msgid "Move row %s %s row %s"
1222
+ msgstr "Premjesti redak %s %s retka %s"
1223
+
1224
+ # @ wp-table-reloaded
1225
+ #: views/view-edit.php:225 views/view-edit.php:245
1226
+ msgid "Move"
1227
+ msgstr "Premjesti"
1228
+
1229
+ # @ wp-table-reloaded
1230
+ #: views/view-edit.php:243
1231
+ #, php-format
1232
+ msgid "Move column %s %s column %s"
1233
+ msgstr "Premjesti stupac %s %s stupca %s"
1234
+
1235
+ # @ wp-table-reloaded
1236
+ #: views/view-edit.php:262
1237
+ msgid "Table Styling Options"
1238
+ msgstr "Opcije Stila Tablice"
1239
+
1240
+ # @ wp-table-reloaded
1241
+ #: views/view-edit.php:264
1242
+ msgid "These settings will only be used for this table."
1243
+ msgstr "Ove postavke će biti korištene samo za ovu tablicu."
1244
+
1245
+ # @ wp-table-reloaded
1246
+ #: views/view-edit.php:267
1247
+ msgid "Alternating row colors"
1248
+ msgstr "Alternativne boje redaka"
1249
+
1250
+ # @ wp-table-reloaded
1251
+ #: views/view-edit.php:268
1252
+ msgid "Every second row has an alternating background color."
1253
+ msgstr "Svaki drugi redak ima drukčiju pozadinsku boju."
1254
+
1255
+ # @ wp-table-reloaded
1256
+ #: views/view-edit.php:271
1257
+ msgid "Row Highlighting"
1258
+ msgstr "Istaknuti Redak"
1259
+
1260
+ # @ wp-table-reloaded
1261
+ #: views/view-edit.php:272
1262
+ msgid ""
1263
+ "Highlight a row by changing its background color while the mouse cursor "
1264
+ "hovers above it."
1265
+ msgstr ""
1266
+ "Možete istaknuti redak mijenjanjem pozadinske boje kada je miš iznad njega."
1267
+
1268
+ # @ wp-table-reloaded
1269
+ #: views/view-edit.php:275
1270
+ msgid "Table head"
1271
+ msgstr "Zaglavlje tablice"
1272
+
1273
+ # @ wp-table-reloaded
1274
+ #: views/view-edit.php:276
1275
+ msgid ""
1276
+ "The first row of your table is the table head (HTML tags &lt;thead&gt; and "
1277
+ "&lt;th&gt;)."
1278
+ msgstr ""
1279
+ "Prvi redak tablice je zaglavlje (HTML oznake &lt;thead&gt; i &lt;th&gt;)."
1280
+
1281
+ # @ wp-table-reloaded
1282
+ #: views/view-edit.php:279
1283
+ msgid "Table footer"
1284
+ msgstr "Podnožje tablice"
1285
+
1286
+ # @ wp-table-reloaded
1287
+ #: views/view-edit.php:280
1288
+ msgid ""
1289
+ "The last row of your table is the table footer (HTML tags &lt;tfoot&gt; and "
1290
+ "&lt;th&gt;)."
1291
+ msgstr ""
1292
+ "Posljednji redak u tablici je podnožje (HTML oznake &lt;tfoot&gt; i &lt;"
1293
+ "th&gt;)."
1294
+
1295
+ # @ wp-table-reloaded
1296
+ #: views/view-edit.php:289 views/view-edit.php:306
1297
+ msgid "above"
1298
+ msgstr "iznad"
1299
+
1300
+ # @ wp-table-reloaded
1301
+ #: views/view-edit.php:291 views/view-edit.php:308
1302
+ msgid "below"
1303
+ msgstr "ispod"
1304
+
1305
+ # @ wp-table-reloaded
1306
+ #: views/view-edit.php:294
1307
+ #, php-format
1308
+ msgid "The Table Name shall be written %s the table (HTML tag &lt;h2&gt;)."
1309
+ msgstr "Ime tablice će biti prikazano %s tablice (HTML oznaka &lt;h2&gt;)."
1310
+
1311
+ # @ wp-table-reloaded
1312
+ #: views/view-edit.php:300
1313
+ msgid "Table Description"
1314
+ msgstr "Opis Tablice"
1315
+
1316
+ # @ wp-table-reloaded
1317
+ #: views/view-edit.php:311
1318
+ #, php-format
1319
+ msgid "The Table Description shall be written %s the table."
1320
+ msgstr "Opis tablice će biti prikazan %s tablice."
1321
+
1322
+ # @ wp-table-reloaded
1323
+ #: views/view-edit.php:317
1324
+ msgid "Cache Table Output"
1325
+ msgstr "Cache Prikaza Tablice"
1326
+
1327
+ # @ wp-table-reloaded
1328
+ #: views/view-edit.php:318
1329
+ msgid ""
1330
+ "The resulting HTML output of the table shall be cached in the WordPress "
1331
+ "database cache for faster page generation."
1332
+ msgstr ""
1333
+ "HTML kod za prikaz vaše tablice će biti cache-an (snimljen u memoriju) u "
1334
+ "Wordpress bazi podataka da bi se stranica brže prikazala."
1335
+
1336
+ # @ wp-table-reloaded
1337
+ #: views/view-edit.php:322
1338
+ msgid ""
1339
+ "Enter a string that will be given to the table as an additional class for "
1340
+ "styling with CSS."
1341
+ msgstr ""
1342
+ "Unesite string koji će biti dodan tablici kao dodatna klasa koji možete "
1343
+ "stilizirati putem CSS-a."
1344
+
1345
+ # @ wp-table-reloaded
1346
+ #: views/view-edit.php:325
1347
+ msgid "Use JavaScript library"
1348
+ msgstr "Koristi JavaScript biblioteku"
1349
+
1350
+ # @ wp-table-reloaded
1351
+ #: views/view-edit.php:331 views/view-edit.php:335 views/view-edit.php:347
1352
+ msgid "You can change further settings for this library below."
1353
+ msgstr "Možete dodatno promijeniti postavke za ovu biblioteku dolje."
1354
+
1355
+ # @ wp-table-reloaded
1356
+ #: views/view-edit.php:339 views/view-edit.php:343
1357
+ msgid "The table will then be sortable by the visitor."
1358
+ msgstr "Ovu tablicu će posjetitelji moći sortirati."
1359
+
1360
+ # @ wp-table-reloaded
1361
+ #: views/view-edit.php:350
1362
+ #, php-format
1363
+ msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
1364
+ msgstr "Da, koristi &quot;%s&quot; JavaScript biblioteku s ovom tablicom."
1365
+
1366
+ # @ wp-table-reloaded
1367
+ #: views/view-edit.php:350
1368
+ #, php-format
1369
+ msgid ""
1370
+ "You must enable the use of a JavaScript library on the &quot;%s&quot; screen "
1371
+ "first."
1372
+ msgstr ""
1373
+ "Prvo morate omogućiti korištenje JavaScript biblioteke na &quot;%s&quot; "
1374
+ "ekranu."
1375
+
1376
+ # @ wp-table-reloaded
1377
+ #: views/view-edit.php:361
1378
+ msgid "DataTables JavaScript Features"
1379
+ msgstr "DataTables JavaScript Mogućnosti"
1380
+
1381
+ # @ wp-table-reloaded
1382
+ #: views/view-edit.php:363
1383
+ msgid ""
1384
+ "You can enable certain features for the DataTables JavaScript library here."
1385
+ msgstr ""
1386
+ "Ovdje možete uključiti određene mogućnosti DataTables JavaScript biblioteke."
1387
+
1388
+ # @ wp-table-reloaded
1389
+ #: views/view-edit.php:363
1390
+ msgid ""
1391
+ "More information on these features can be found on the <a href=\"http://www."
1392
+ "datatables.net/\">DataTables website</a>."
1393
+ msgstr ""
1394
+ "Više informacija o ovom mogućnostima možete pronaći na <a href=\"http://www."
1395
+ "datatables.net/\">DataTables web stranici</a>."
1396
+
1397
+ # @ wp-table-reloaded
1398
+ #: views/view-edit.php:365
1399
+ #, php-format
1400
+ msgid ""
1401
+ "You can currently not change these options, because you have not enabled the "
1402
+ "&quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript "
1403
+ "library on the &quot;%s&quot; screen."
1404
+ msgstr ""
1405
+ "Trenutno ne možete mijenjati ove postavke jer niste omogućili &quot;"
1406
+ "DataTables&quot; ili &quot;DataTables+TableTools&quot; JavaScript biblioteku "
1407
+ "na &quot;%s&quot; ekranu."
1408
+
1409
+ # @ wp-table-reloaded
1410
+ #: views/view-edit.php:365
1411
+ msgid ""
1412
+ "It is not possible to use these features with the &quot;Tablesorter&quot; or "
1413
+ "&quot;Tablesorter Extended&quot; libraries."
1414
+ msgstr ""
1415
+ "Nije moguće koristiti ove mogućnosti sa &quot;Tablesorter&quot;- ili &quot;"
1416
+ "Tablesorter Extended&quot; bibliotekama."
1417
+
1418
+ # @ wp-table-reloaded
1419
+ #: views/view-edit.php:369
1420
+ msgid "Sorting"
1421
+ msgstr "Sortiranje"
1422
+
1423
+ # @ wp-table-reloaded
1424
+ #: views/view-edit.php:370
1425
+ msgid "Yes, enable sorting of table data by the visitor."
1426
+ msgstr "Da, omogući korisnicima sortiranje podataka u tablici."
1427
+
1428
+ # @ wp-table-reloaded
1429
+ #: views/view-edit.php:373
1430
+ msgid "Pagination"
1431
+ msgstr "Paginacija"
1432
+
1433
+ # @ wp-table-reloaded
1434
+ #: views/view-edit.php:378
1435
+ msgid ""
1436
+ "Yes, enable pagination (showing only a certain number of rows) of the table "
1437
+ "by the visitor."
1438
+ msgstr ""
1439
+ "Da, omogući paginaciju (prikazuje se samo određeni broj redaka) tablice "
1440
+ "posjetiteljima."
1441
+
1442
+ # @ wp-table-reloaded
1443
+ #: views/view-edit.php:380
1444
+ #, php-format
1445
+ msgid "Show %1$s rows of the table per page."
1446
+ msgstr "Prikaži %1$s redaka tablice po stranici."
1447
+
1448
+ # @ wp-table-reloaded
1449
+ #: views/view-edit.php:386
1450
+ msgid "Length Change"
1451
+ msgstr "Promjena Duljine"
1452
+
1453
+ # @ wp-table-reloaded
1454
+ #: views/view-edit.php:387
1455
+ msgid ""
1456
+ "Yes, allow the visitor to change the number of rows shown when using "
1457
+ "pagination."
1458
+ msgstr ""
1459
+ "Da, omogući posjetiteljima da promijene broj prikazanih redaka kada se "
1460
+ "koristi paginacija."
1461
+
1462
+ # @ wp-table-reloaded
1463
+ #: views/view-edit.php:391
1464
+ msgid ""
1465
+ "Yes, enable the visitor to filter or search the table. Only rows with the "
1466
+ "search word in them are shown."
1467
+ msgstr ""
1468
+ "Da, omogući posjetiteljima da filtriraju i pretražuju tablicu. Samo redovi s "
1469
+ "ključnim riječima za pretraživanje se prikazuju."
1470
+
1471
+ # @ wp-table-reloaded
1472
+ #: views/view-edit.php:394
1473
+ msgid "Info Bar"
1474
+ msgstr "Info Bar"
1475
+
1476
+ # @ wp-table-reloaded
1477
+ #: views/view-edit.php:395
1478
+ msgid ""
1479
+ "Yes, show the table information display. This shows information and "
1480
+ "statistics about the currently visible data, including filtering."
1481
+ msgstr ""
1482
+ "Da, prikaži informacije o tablici. Ovo prikazuje informacije i statistike o "
1483
+ "trenutno vidljivim podacima, uključujući filtriranje."
1484
+
1485
+ # @ wp-table-reloaded
1486
+ #: views/view-edit.php:398
1487
+ msgid "TableTools"
1488
+ msgstr "TableTools"
1489
+
1490
+ # @ wp-table-reloaded
1491
+ #: views/view-edit.php:400
1492
+ msgid ""
1493
+ "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save "
1494
+ "to XLS, Print Table) for this table."
1495
+ msgstr ""
1496
+ "Da, aktiviraj TableTools funkcije (kopiranje u međuspremnik, snimanje u CSV, "
1497
+ "XLS, ispis) za ovu tablicu."
1498
+
1499
+ # @ wp-table-reloaded
1500
+ #: views/view-edit.php:401
1501
+ msgid ""
1502
+ "This option can only be used with the &quot;DataTables+TableTools&quot; "
1503
+ "JavaScript library."
1504
+ msgstr ""
1505
+ "Ova opcija može samo biti korištena sa &quot;DataTables+TableTools&quot; "
1506
+ "JavaScript bibliotekom."
1507
+
1508
+ # @ wp-table-reloaded
1509
+ #: views/view-edit.php:405
1510
+ msgid "Custom Commands"
1511
+ msgstr "Proizvoljne Komande"
1512
+
1513
+ # @ wp-table-reloaded
1514
+ #: views/view-edit.php:406
1515
+ msgid ""
1516
+ "Enter additional DataTables JavaScript parameters that will be included with "
1517
+ "the script call here."
1518
+ msgstr ""
1519
+ "Unesite dodatne DataTables JavaScript parametre koji će biti uključeni sa "
1520
+ "skriptom ovdje."
1521
+
1522
+ # @ wp-table-reloaded
1523
+ #: views/view-edit.php:406
1524
+ msgid ""
1525
+ "For advanced use only. Read the <a href=\"http://www.datatables.net/"
1526
+ "\">DataTables documentation</a> before."
1527
+ msgstr ""
1528
+ "Samo za napredne korisnike. Pročitajte <a href=\"http://www.datatables.net/"
1529
+ "\">DataTables Dokumentaciju</a> prije."
1530
+
1531
+ # @ wp-table-reloaded
1532
+ #: views/view-edit.php:422
1533
+ msgid "Custom Data Fields"
1534
+ msgstr "Proizvoljna Podatkovna Polja"
1535
+
1536
+ # @ wp-table-reloaded
1537
+ #: views/view-edit.php:424
1538
+ msgid "Custom Data Fields can be used to add extra metadata to a table."
1539
+ msgstr ""
1540
+ "Proizvoljna podatkovna polja mogu se koristiti da biste unijeli dodatne "
1541
+ "podatke u tablicu."
1542
+
1543
+ # @ wp-table-reloaded
1544
+ #: views/view-edit.php:424
1545
+ msgid ""
1546
+ "For example, this could be information about the source or the creator of "
1547
+ "the data."
1548
+ msgstr "Na primjer, ovo može biti informacija o izvoru ili autoru podataka."
1549
+
1550
+ # @ wp-table-reloaded
1551
+ #: views/view-edit.php:426
1552
+ #, php-format
1553
+ msgid ""
1554
+ "You can show this data in the same way as tables by using the shortcode "
1555
+ "<strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1556
+ msgstr ""
1557
+ "Ove podatke možete prikazati na isti način kao i tablice koristeći skraćeni "
1558
+ "kod <strong>[table-info id=%s field=\"&lt;ime-polja&gt;\" /]</strong>."
1559
+
1560
+ # @ wp-table-reloaded
1561
+ #: views/view-edit.php:432
1562
+ msgid "Field Name"
1563
+ msgstr "Ime Polja"
1564
+
1565
+ # @ wp-table-reloaded
1566
+ #: views/view-edit.php:433
1567
+ msgid "Value"
1568
+ msgstr "Vrijednost"
1569
+
1570
+ # @ wp-table-reloaded
1571
+ #: views/view-edit.php:447
1572
+ msgid "Delete Field"
1573
+ msgstr "Izbriši Polje"
1574
+
1575
+ # @ wp-table-reloaded
1576
+ #: views/view-edit.php:449
1577
+ msgid "View shortcode"
1578
+ msgstr "Vidi skraćeni kod"
1579
+
1580
+ # @ wp-table-reloaded
1581
+ #: views/view-edit.php:458
1582
+ msgid ""
1583
+ "To add a new Custom Data Field, enter its name (only lowercase letters, "
1584
+ "numbers, _ and -)."
1585
+ msgstr ""
1586
+ "Da biste dodali novo proizvoljno podatkovno polje, unesite ime (samo mala "
1587
+ "slova, brojevi, _ i -)."
1588
+
1589
+ # @ wp-table-reloaded
1590
+ #: views/view-edit.php:459
1591
+ msgid "Custom Data Field Name"
1592
+ msgstr "Ime Proizvoljnog Podatkovnog Polja"
1593
+
1594
+ # @ wp-table-reloaded
1595
+ #: views/view-edit.php:473
1596
+ msgid "Other actions"
1597
+ msgstr "Ostale Akcije"
1598
+
1599
+ # @ wp-table-reloaded
1600
+ #: views/view-edit.php:476
1601
+ msgid "Delete Table"
1602
+ msgstr "Izbriši Tablicu"
1603
+
1604
+ # @ wp-table-reloaded
1605
+ #: views/view-about.php:5
1606
+ msgid "Plugin Purpose"
1607
+ msgstr "Svrha Plugina"
1608
+
1609
+ # @ wp-table-reloaded
1610
+ #: views/view-about.php:7
1611
+ msgid ""
1612
+ "WP-Table Reloaded allows you to create and manage tables in the admin-area "
1613
+ "of WordPress."
1614
+ msgstr ""
1615
+ "WP-Table Reloaded vam omogućuje da stvarate i upravljate tablicama u "
1616
+ "administratorskom sučelju Wordpress-a."
1617
+
1618
+ # @ wp-table-reloaded
1619
+ #: views/view-about.php:7
1620
+ msgid ""
1621
+ "Those tables may contain strings, numbers and even HTML (e.g. to include "
1622
+ "images or links)."
1623
+ msgstr ""
1624
+ "Tablice mogu sadržavati stringove, brojeve pa čak i HTML (npr. da biste "
1625
+ "dodali slike ili linkove)."
1626
+
1627
+ # @ wp-table-reloaded
1628
+ #: views/view-about.php:7
1629
+ msgid ""
1630
+ "You can then show the tables in your posts, on your pages or in text-widgets "
1631
+ "by using a shortcode."
1632
+ msgstr ""
1633
+ "Tada možete prikazati tablice u vašim člancima, stranicama ili tekstualnim "
1634
+ "widgetima koristeći skraćeni kod."
1635
+
1636
+ # @ wp-table-reloaded
1637
+ #: views/view-about.php:7
1638
+ msgid ""
1639
+ "If you want to show your tables anywhere else in your theme, you can use a "
1640
+ "template tag function."
1641
+ msgstr ""
1642
+ "Ukoliko želite prikazivati vaše tablice drugdje u temi, možete koristiti "
1643
+ "posebni tag/funkciju."
1644
+
1645
+ # @ wp-table-reloaded
1646
+ #: views/view-about.php:12
1647
+ msgid "Usage"
1648
+ msgstr "Upute"
1649
+
1650
+ # @ wp-table-reloaded
1651
+ #: views/view-about.php:14
1652
+ msgid "At first you should add or import a table."
1653
+ msgstr "Za početak trebate dodati ili importirati tablicu."
1654
+
1655
+ # @ wp-table-reloaded
1656
+ #: views/view-about.php:14
1657
+ msgid ""
1658
+ "This means that you either let the plugin create an empty table for you or "
1659
+ "that you load an existing table from either a CSV, XML or HTML file."
1660
+ msgstr ""
1661
+ "To znači da možete dopustiti pluginu da kreira praznu tablicu za vas ili da "
1662
+ "možete importirati postojeću tablicu iz CSV, XML ili HTML datoteke."
1663
+
1664
+ # @ wp-table-reloaded
1665
+ #: views/view-about.php:14
1666
+ msgid ""
1667
+ "Then you can edit your data or change the structure of your table (e.g. by "
1668
+ "inserting or deleting rows or columns, swaping rows or columns or sorting "
1669
+ "them) and select specific table options like alternating row colors or "
1670
+ "whether to print the name or description, if you want."
1671
+ msgstr ""
1672
+ "Tada možete mijenjati vaše podatke ili promijeniti strukturu vaše tablice "
1673
+ "(npr. dodavanjem ili brisanjem redaka ili stupaca, njihovim razmještanjem "
1674
+ "ili sortiranjem), i odabrati posebne opcije tabice poput alternativnih boja "
1675
+ "redaka ili opcija prikaza imena ili opisa tablice, ukoliko to želite."
1676
+
1677
+ # @ wp-table-reloaded
1678
+ #: views/view-about.php:14
1679
+ msgid ""
1680
+ "To easily add a link or an image to a cell, use the provided buttons. Those "
1681
+ "will ask you for the URL and a title. Then you can click into a cell and the "
1682
+ "corresponding HTML will be added to it for you."
1683
+ msgstr ""
1684
+ "Da biste lako dodali link ili sliku u ćeliju, koristite dostupnu dugmad koja "
1685
+ "će vas tražiti URL i naziv. Tada možete kliknuti na ćeliju i potrebni HTML "
1686
+ "kod će biti dodan za vas."
1687
+
1688
+ # @ wp-table-reloaded
1689
+ #: views/view-about.php:14
1690
+ #, php-format
1691
+ msgid ""
1692
+ "You can also select the desired table from a list (after clicking the button "
1693
+ "&quot;%s&quot; in the editor toolbar) and the corresponding shortcode will "
1694
+ "be added for you."
1695
+ msgstr ""
1696
+ "Također možete odabrati željenu tablicu iz liste (nakon klika na dugme &quot;"
1697
+ "%s&quot; u Editor-u) i potrebni skraćeni kod će automatski biti dodan."
1698
+
1699
+ # @ wp-table-reloaded
1700
+ #: views/view-about.php:14
1701
+ msgid "Tables can be styled by changing and adding CSS commands."
1702
+ msgstr "Tablice se mogu stilizirati mijenjanjem ili dodavanjem CSS komandi."
1703
+
1704
+ # @ wp-table-reloaded
1705
+ #: views/view-about.php:14
1706
+ msgid ""
1707
+ "The plugin ships with default CSS Stylesheets, which can be customized with "
1708
+ "own code or replaced with other Stylesheets."
1709
+ msgstr ""
1710
+ "Plugin ima već postavljene CSS stilove, koje možete promijeniti s vašim "
1711
+ "kodom ili zamijeniti s nekim drugim."
1712
+
1713
+ # @ wp-table-reloaded
1714
+ #: views/view-about.php:14
1715
+ msgid ""
1716
+ "For this, each table is given certain CSS classes that can be used as CSS "
1717
+ "selectors."
1718
+ msgstr ""
1719
+ "Za ovo, svakoj tablici je dana određena CSS klasa koja može biti korištena "
1720
+ "kao CSS selektor."
1721
+
1722
+ # @ wp-table-reloaded
1723
+ #: views/view-about.php:14
1724
+ #, php-format
1725
+ msgid ""
1726
+ "Please see the <a href=\"%s\">documentation</a> for a list of these "
1727
+ "selectors and for styling examples."
1728
+ msgstr ""
1729
+ "Molimo pogledajte <a href=\"%s\">Dokumentaciju</a> za popis ovih selektora i "
1730
+ "primjere stiliziranja."
1731
+
1732
+ # @ wp-table-reloaded
1733
+ #: views/view-about.php:19
1734
+ msgid "More Information and Documentation"
1735
+ msgstr "Više Informacija i Dokumentacija"
1736
+
1737
+ # @ wp-table-reloaded
1738
+ #: classes/helper.class.php:40 views/view-about.php:21
1739
+ #, php-format
1740
+ msgid ""
1741
+ "More information about WP-Table Reloaded can be found on the <a href=\"%s"
1742
+ "\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress "
1743
+ "Plugin Directory</a>."
1744
+ msgstr ""
1745
+ "Više informacija o WP-Table Reloaded možete pronaći na <a href=\"%s\">Plugin "
1746
+ "Web stranici</a> ili na stranici u <a href=\"%s\">WordPress Plugin "
1747
+ "direktoriju</a>."
1748
+
1749
+ # @ wp-table-reloaded
1750
+ #: classes/helper.class.php:41 views/view-about.php:21
1751
+ #, php-format
1752
+ msgid "For technical information, see the <a href=\"%s\">documentation</a>."
1753
+ msgstr "Za tehničke informacije, pogledajte <a href=\"%s\">Dokumentaciju</a>."
1754
+
1755
+ # @ wp-table-reloaded
1756
+ #: views/view-about.php:26
1757
+ msgid "Help and Support"
1758
+ msgstr "Pomoć i Podrška"
1759
+
1760
+ # @ wp-table-reloaded
1761
+ #: classes/helper.class.php:42 views/view-about.php:28
1762
+ #, php-format
1763
+ msgid ""
1764
+ "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress "
1765
+ "Support Forums</a>."
1766
+ msgstr ""
1767
+ "<a href=\"%s\">Podrška</a> je dana kroz <a href=\"%s\">WordPress Podrška "
1768
+ "Forum</a>."
1769
+
1770
+ # @ wp-table-reloaded
1771
+ #: classes/helper.class.php:43 views/view-about.php:28
1772
+ #, php-format
1773
+ msgid ""
1774
+ "Before asking for support, please carefully read the <a href=\"%s"
1775
+ "\">Frequently Asked Questions</a> where you will find answered to the most "
1776
+ "common questions, and search through the forums."
1777
+ msgstr ""
1778
+ "Prije nego zatražite korisničku podršku, molimo da pažljivo pročitate <a "
1779
+ "href=\"%s\">Učestalo Postavljana Pitanja (FAQ)</a> gdje možete pronaći "
1780
+ "većinu rješenja, te također možete pretražiti forum."
1781
+
1782
+ # @ wp-table-reloaded
1783
+ #: views/view-about.php:28
1784
+ #, php-format
1785
+ msgid ""
1786
+ "If you do not find an answer there, please <a href=\"%s\">open a new thread</"
1787
+ "a> in the WordPress Support Forums with the tag &quot;wp-table-"
1788
+ "reloaded&quot;."
1789
+ msgstr ""
1790
+ "Ako ne nađete odgovor tamo, molimo da <a href=\"%s\">otvorite novu temu</a> "
1791
+ "na WordPress Podršci Forumu sa tagom &quot;wp-table-reloaded&quot;."
1792
+
1793
+ # @ wp-table-reloaded
1794
+ #: views/view-about.php:33
1795
+ msgid "Author and License"
1796
+ msgstr "Autor i Licenca"
1797
+
1798
+ # @ wp-table-reloaded
1799
+ #: views/view-about.php:35
1800
+ #, php-format
1801
+ msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
1802
+ msgstr "Ovaj plugin je napisao <a href=\"%s\">Tobias B&auml;thge</a>."
1803
+
1804
+ # @ wp-table-reloaded
1805
+ #: views/view-about.php:35
1806
+ msgid "It is licensed as Free Software under GPL 2."
1807
+ msgstr "Licenciran je kao <em>besplatni software</em> pod GPL 2 licencom."
1808
+
1809
+ # @ wp-table-reloaded
1810
+ #: classes/helper.class.php:44 views/view-about.php:35
1811
+ #, php-format
1812
+ msgid ""
1813
+ "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is "
1814
+ "recommended."
1815
+ msgstr ""
1816
+ "Ako vam se sviđa plugin, <strong><a href=\"%s\">donacije</a></strong> su "
1817
+ "dobrodošle."
1818
+
1819
+ # @ wp-table-reloaded
1820
+ #: views/view-about.php:35
1821
+ #, php-format
1822
+ msgid ""
1823
+ "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
1824
+ msgstr ""
1825
+ "Molimo da ocijenite plugin na <a href=\"%s\">WordPress Plugin Direktoriju</"
1826
+ "a>."
1827
+
1828
+ # @ wp-table-reloaded
1829
+ #: views/view-about.php:35
1830
+ msgid ""
1831
+ "Donations and good ratings encourage me to further develop the plugin and to "
1832
+ "provide countless hours of support. Any amount is appreciated! Thanks!"
1833
+ msgstr ""
1834
+ "Donacije i dobre ocjene me podržavaju da dalje razvijam plugin i dajem "
1835
+ "podršku korisnicima. Bilo koji iznos je cijenjen! Hvala!"
1836
+
1837
+ # @ wp-table-reloaded
1838
+ #: views/view-about.php:40
1839
+ msgid "Credits and Thanks"
1840
+ msgstr "Zasluge i Zahvale"
1841
+
1842
+ # @ wp-table-reloaded
1843
+ #: views/view-about.php:43
1844
+ msgid ""
1845
+ "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for "
1846
+ "the original wp-Table plugin,"
1847
+ msgstr ""
1848
+ "Hvala <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> za originalni "
1849
+ "wp-Table plugin,"
1850
+
1851
+ # @ wp-table-reloaded
1852
+ #: views/view-about.php:44
1853
+ msgid ""
1854
+ "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables "
1855
+ "jQuery plugin</a>,"
1856
+ msgstr ""
1857
+ "Allan Jardine za <a href=\"http://www.datatables.net/\">DataTables jQuery "
1858
+ "plugin</a>,"
1859
+
1860
+ # @ wp-table-reloaded
1861
+ #: views/view-about.php:45
1862
+ msgid ""
1863
+ "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter "
1864
+ "jQuery plugin</a>,"
1865
+ msgstr ""
1866
+ "Christian Bach za <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery "
1867
+ "plugin</a>,"
1868
+
1869
+ # @ wp-table-reloaded
1870
+ #: views/view-about.php:46
1871
+ msgid ""
1872
+ "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/"
1873
+ "\">Tablesorter Extended</a>,"
1874
+ msgstr ""
1875
+ "Soeren Krings za ekstenziju <a href=\"http://tablesorter.openwerk.de/"
1876
+ "\">Tablesorter Extended</a>,"
1877
+
1878
+ # @ wp-table-reloaded
1879
+ #: views/view-about.php:47
1880
+ msgid "the submitters of translations:"
1881
+ msgstr "prevoditelji:"
1882
+
1883
+ # @ wp-table-reloaded
1884
+ #: views/view-about.php:82
1885
+ #, php-format
1886
+ msgid "%s (thanks to %s)"
1887
+ msgstr "%s (hvala %s)"
1888
+
1889
+ # @ wp-table-reloaded
1890
+ #: views/view-about.php:85
1891
+ msgid ""
1892
+ "and to all donors, contributors, supporters, reviewers and users of the "
1893
+ "plugin!"
1894
+ msgstr ""
1895
+ "i svim donorima, onima koji podržavaju i doprinose pluginu te naravno "
1896
+ "korisnicima!"
1897
+
1898
+ # @ wp-table-reloaded
1899
+ #: views/view-about.php:91
1900
+ msgid "Debug and Version Information"
1901
+ msgstr "Debug i Informacije o Verziji"
1902
+
1903
+ # @ wp-table-reloaded
1904
+ #: views/view-about.php:94
1905
+ msgid "You are using the following versions of the software."
1906
+ msgstr "Vi koristite sljedeće verzije software-a."
1907
+
1908
+ # @ wp-table-reloaded
1909
+ #: views/view-about.php:94
1910
+ msgid "Please provide this information in bug reports."
1911
+ msgstr "Molimo da pošaljete ove podatke u vašim pitanjima podršci."
1912
+
1913
+ # @ wp-table-reloaded
1914
+ #: views/view-about.php:97
1915
+ msgid "Plugin installed"
1916
+ msgstr "Plugin instaliran"
1917
+
1918
+ # @ wp-table-reloaded
1919
+ #: views/view-ajax_preview.php:3
1920
+ msgid "This is a preview of your table."
1921
+ msgstr "Ovo je pregled vaše tablice."
1922
+
1923
+ # @ wp-table-reloaded
1924
+ #: views/view-ajax_preview.php:4
1925
+ msgid "Because of CSS styling, the table might look different on your page!"
1926
+ msgstr ""
1927
+ "Zbog CSS stiliziranja, tablica može izgledati drukčije na vašoj stranici!"
1928
+
1929
+ # @ wp-table-reloaded
1930
+ #: views/view-ajax_preview.php:4
1931
+ msgid "The JavaScript libraries are also not available in this preview."
1932
+ msgstr "JavaScript biblioteke također nisu dostupne u ovom pregledu."
1933
+
1934
+ # @ wp-table-reloaded
1935
+ #: controllers/controller-admin.php:256
1936
+ msgid "Belarusian"
1937
+ msgstr "Bjeloruski"
1938
+
1939
+ # @ wp-table-reloaded
1940
+ #: controllers/controller-admin.php:258
1941
+ msgid "Czech"
1942
+ msgstr "Češki"
1943
+
1944
+ # @ wp-table-reloaded
1945
+ #: controllers/controller-admin.php:259
1946
+ msgid "German"
1947
+ msgstr "Njemački"
1948
+
1949
+ # @ wp-table-reloaded
1950
+ #: controllers/controller-admin.php:260
1951
+ msgid "English"
1952
+ msgstr "Engleski"
1953
+
1954
+ # @ wp-table-reloaded
1955
+ #: controllers/controller-admin.php:261
1956
+ msgid "Spanish"
1957
+ msgstr "Španjolski"
1958
+
1959
+ # @ wp-table-reloaded
1960
+ #: controllers/controller-admin.php:262
1961
+ msgid "Finnish"
1962
+ msgstr "Finski"
1963
+
1964
+ # @ wp-table-reloaded
1965
+ #: controllers/controller-admin.php:263
1966
+ msgid "French"
1967
+ msgstr "Francuski"
1968
+
1969
+ # @ wp-table-reloaded
1970
+ #: controllers/controller-admin.php:265
1971
+ msgid "Hindi"
1972
+ msgstr "Indijski"
1973
+
1974
+ # @ wp-table-reloaded
1975
+ #: controllers/controller-admin.php:267
1976
+ msgid "Italian"
1977
+ msgstr "Talijanski"
1978
+
1979
+ # @ wp-table-reloaded
1980
+ #: controllers/controller-admin.php:268
1981
+ msgid "Japanese"
1982
+ msgstr "Japanski"
1983
+
1984
+ # @ wp-table-reloaded
1985
+ #: controllers/controller-admin.php:269
1986
+ msgid "Dutch"
1987
+ msgstr "Nizozemski"
1988
+
1989
+ # @ wp-table-reloaded
1990
+ #: controllers/controller-admin.php:270
1991
+ msgid "Polish"
1992
+ msgstr "Poljski"
1993
+
1994
+ # @ wp-table-reloaded
1995
+ #: controllers/controller-admin.php:271
1996
+ msgid "Brazilian Portuguese"
1997
+ msgstr "Brazilsko-Portugalski"
1998
+
1999
+ # @ wp-table-reloaded
2000
+ #: controllers/controller-admin.php:273
2001
+ msgid "Russian"
2002
+ msgstr "Ruski"
2003
+
2004
+ # @ wp-table-reloaded
2005
+ #: controllers/controller-admin.php:274
2006
+ msgid "Slovak"
2007
+ msgstr "Slovački"
2008
+
2009
+ # @ wp-table-reloaded
2010
+ #: controllers/controller-admin.php:275
2011
+ msgid "Swedish"
2012
+ msgstr "Švedski"
2013
+
2014
+ # @ wp-table-reloaded
2015
+ #: controllers/controller-admin.php:276
2016
+ msgid "Ukrainian"
2017
+ msgstr "Ukrajinski"
2018
+
2019
+ # @ wp-table-reloaded
2020
+ #: controllers/controller-admin.php:277
2021
+ msgid "Chinese (Simplified)"
2022
+ msgstr "Kineski (pojednostavljen)"
2023
+
2024
+ # @ wp-table-reloaded
2025
+ #: controllers/controller-admin.php:307
2026
+ #, php-format
2027
+ msgid ""
2028
+ "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, "
2029
+ "please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s"
2030
+ "\">documentation</a>, and the <a href=\"%s\">support</a> section."
2031
+ msgstr ""
2032
+ "Dobrodošli na WP-Table Reloaded %s. Ukoliko naiđete na problem ili imate "
2033
+ "pitanje, molimo da pogledate <a href=\"%s\">FAQ</a>, <a href=\"%s"
2034
+ "\">Dokumentaciju</a> i <a href=\"%s\">podršku</a>."
2035
+
2036
+ # @ wp-table-reloaded
2037
+ #: controllers/controller-admin.php:308
2038
+ #, php-format
2039
+ msgid "Thank you for upgrading to WP-Table Reloaded %s."
2040
+ msgstr "Hvala što ste preuzeli WP-Table Reloaded %s."
2041
+
2042
+ # @ wp-table-reloaded
2043
+ #: controllers/controller-admin.php:308
2044
+ #, php-format
2045
+ msgid ""
2046
+ "Please read the <a href=\"%s\">release announcement</a> for more information."
2047
+ msgstr ""
2048
+ "Molimo pročitajte <a href=\"%s\">objavu verzije</a> za dodatne informacije."
2049
+
2050
+ # @ wp-table-reloaded
2051
+ #: controllers/controller-admin.php:308
2052
+ #, php-format
2053
+ msgid ""
2054
+ "If you like the new features and enhancements, I would appreciate a small <a "
2055
+ "href=\"%s\">donation</a>. Thank you."
2056
+ msgstr ""
2057
+ "Ako vam se sviđaju nove mogućnosti i promjene, vaše <a href=\"%s\">donacije</"
2058
+ "a> su dobrodošle. Hvala vam."
2059
+
2060
+ # @ wp-table-reloaded
2061
+ #: controllers/controller-admin.php:313
2062
+ msgid "Hide this message"
2063
+ msgstr "Sakrij ovu poruku"
2064
+
2065
+ # @ wp-table-reloaded
2066
+ #: controllers/controller-admin.php:321
2067
+ msgid ""
2068
+ "Thanks for using this plugin! You've installed WP-Table Reloaded over a "
2069
+ "month ago."
2070
+ msgstr ""
2071
+ "Hvala što koristite ovaj plugin! Instalirali ste WP-Table Reloaded prije "
2072
+ "više od mjesec dana."
2073
+
2074
+ # @ wp-table-reloaded
2075
+ #: controllers/controller-admin.php:321
2076
+ #, php-format
2077
+ msgid ""
2078
+ "If it works and you are satisfied with the results of managing your %s "
2079
+ "table, isn't it worth at least one dollar or euro?"
2080
+ msgid_plural ""
2081
+ "If it works and you are satisfied with the results of managing your %s "
2082
+ "tables, isn't it worth at least one dollar or euro?"
2083
+ msgstr[0] ""
2084
+ "Ukoliko vam plugin radi i zadovoljni ste rezultatima upravljanja vaše %s "
2085
+ "tablice, možda je to vrijedno barem jedan euro?"
2086
+ msgstr[1] ""
2087
+ "Ukoliko vam plugin radi i zadovoljni ste rezultatima upravljanja vaših %s "
2088
+ "tablica, možda je to vrijedno barem jedan euro?"
2089
+
2090
+ # @ wp-table-reloaded
2091
+ #: controllers/controller-admin.php:322
2092
+ #, php-format
2093
+ msgid ""
2094
+ "<a href=\"%s\">Donations</a> help me to continue support and development of "
2095
+ "this <i>free</i> software - things for which I spend countless hours of my "
2096
+ "free time! Thank you!"
2097
+ msgstr ""
2098
+ "<a href=\"%s\">Donacije</a> mi pomažu nastaviti s korisničkom podrškom i "
2099
+ "razvojem ovog <i>besplatnog</i> software-a na koji trošim nebrojene sate "
2100
+ "svojeg slobodnog vremena. Hvala vam!"
2101
+
2102
+ # @ wp-table-reloaded
2103
+ #: controllers/controller-admin.php:323
2104
+ msgid "Sure, no problem!"
2105
+ msgstr "Naravno, nema problema!"
2106
+
2107
+ # @ wp-table-reloaded
2108
+ #: controllers/controller-admin.php:324
2109
+ msgid "I already donated."
2110
+ msgstr "Već sam donirao/la!"
2111
+
2112
+ # @ wp-table-reloaded
2113
+ #: controllers/controller-admin.php:325
2114
+ msgid "No, thanks. Don't ask again."
2115
+ msgstr "Ne, hvala. Ne pitaj opet."
2116
+
2117
+ # @ wp-table-reloaded
2118
+ #: controllers/controller-admin.php:353
2119
+ #, php-format
2120
+ msgid "Table &quot;%s&quot; added successfully."
2121
+ msgstr "Tablica &quot;%s&quot; je uspješno dodana."
2122
+
2123
+ # @ wp-table-reloaded
2124
+ #: controllers/controller-admin.php:384
2125
+ #, php-format
2126
+ msgid ""
2127
+ "Table edited successfully. This Table now has the ID %s. You'll need to "
2128
+ "adjust existing shortcodes accordingly."
2129
+ msgstr ""
2130
+ "Tablica je uspješno izmijenjena. Ova tablica sada ima ID %s. Trebate "
2131
+ "promijeniti vaše skraćene kodove prema tome."
2132
+
2133
+ # @ wp-table-reloaded
2134
+ #: controllers/controller-admin.php:386
2135
+ #, php-format
2136
+ msgid ""
2137
+ "The ID could not be changed from %s to %s, because there already is a Table "
2138
+ "with that ID."
2139
+ msgstr ""
2140
+ "ID tablice ne može biti promijenjen iz %s u %s, jer već postoji tablica s "
2141
+ "tim ID-om."
2142
+
2143
+ # @ wp-table-reloaded
2144
+ #: controllers/controller-admin.php:389
2145
+ msgid "Table edited successfully."
2146
+ msgstr "Tablica uspješno izmijenjena."
2147
+
2148
+ # @ wp-table-reloaded
2149
+ #: controllers/controller-admin.php:438
2150
+ msgid "Rows swapped successfully."
2151
+ msgstr "Redovi uspješno zamijenjeni."
2152
+
2153
+ # @ wp-table-reloaded
2154
+ #: controllers/controller-admin.php:459
2155
+ msgid "Columns swapped successfully."
2156
+ msgstr "Stupci uspješno zamijenjeni."
2157
+
2158
+ # @ wp-table-reloaded
2159
+ #: controllers/controller-admin.php:500
2160
+ msgid "Table sorted successfully."
2161
+ msgstr "Tablica uspješno sortirana."
2162
+
2163
+ # @ wp-table-reloaded
2164
+ #: controllers/controller-admin.php:523
2165
+ msgid "Row moved successfully."
2166
+ msgstr "Redak uspješno premješten."
2167
+
2168
+ # @ wp-table-reloaded
2169
+ #: controllers/controller-admin.php:550
2170
+ msgid "Column moved successfully."
2171
+ msgstr "Stupac uspješno premješten."
2172
+
2173
+ # @ wp-table-reloaded
2174
+ #: controllers/controller-admin.php:558
2175
+ msgid "Row could not be deleted."
2176
+ msgid_plural "Rows could not be deleted."
2177
+ msgstr[0] "Redak ne može biti obrisan."
2178
+ msgstr[1] "Redovi ne mogu biti obrisani."
2179
+
2180
+ # @ wp-table-reloaded
2181
+ #: controllers/controller-admin.php:567
2182
+ msgid "Row deleted successfully."
2183
+ msgid_plural "Rows deleted successfully."
2184
+ msgstr[0] "Redak uspješno izbrisan."
2185
+ msgstr[1] "Redovi uspješno izbrisani."
2186
+
2187
+ # @ wp-table-reloaded
2188
+ #: controllers/controller-admin.php:577
2189
+ msgid "Column could not be deleted."
2190
+ msgid_plural "Columns could not be deleted."
2191
+ msgstr[0] "Stupac ne može biti izbrisan."
2192
+ msgstr[1] "Stupci ne mogu biti izbrisani."
2193
+
2194
+ # @ wp-table-reloaded
2195
+ #: controllers/controller-admin.php:590
2196
+ msgid "Column deleted successfully."
2197
+ msgid_plural "Columns deleted successfully."
2198
+ msgstr[0] "Stupac uspješno izbrisan."
2199
+ msgstr[1] "Stupci uspješno izbrisani."
2200
+
2201
+ # @ wp-table-reloaded
2202
+ #: controllers/controller-admin.php:613
2203
+ msgid "Row inserted successfully."
2204
+ msgid_plural "Rows inserted successfully."
2205
+ msgstr[0] "Redak uspješno dodan."
2206
+ msgstr[1] "Redovi uspješno dodani."
2207
+
2208
+ # @ wp-table-reloaded
2209
+ #: controllers/controller-admin.php:640
2210
+ msgid "Column inserted successfully."
2211
+ msgid_plural "Columns inserted successfully."
2212
+ msgstr[0] "Stupac uspješno dodan."
2213
+ msgstr[1] "Stupci uspješno dodani."
2214
+
2215
+ # @ wp-table-reloaded
2216
+ #: controllers/controller-admin.php:655
2217
+ msgid "Row added successfully."
2218
+ msgid_plural "Rows added successfully."
2219
+ msgstr[0] "Redak uspješno dodan."
2220
+ msgstr[1] "Redovi uspješno dodani."
2221
+
2222
+ # @ wp-table-reloaded
2223
+ #: controllers/controller-admin.php:669
2224
+ msgid "Column added successfully."
2225
+ msgid_plural "Columns added successfully."
2226
+ msgstr[0] "Stupac uspješno dodan."
2227
+ msgstr[1] "Stupci uspješno dodani."
2228
+
2229
+ # @ wp-table-reloaded
2230
+ #: controllers/controller-admin.php:676
2231
+ msgid "Could not add Custom Data Field, because you did not enter a name."
2232
+ msgstr ""
2233
+ "Nije moguće dodati Proizvoljno Podatkovno Polje, jer niste unijeli ime."
2234
+
2235
+ # @ wp-table-reloaded
2236
+ #: controllers/controller-admin.php:681
2237
+ msgid ""
2238
+ "Could not add Custom Data Field, because the name you entered is reserved "
2239
+ "for other table data."
2240
+ msgstr ""
2241
+ "Nije moguće dodati Proizvoljno Podatkovno Polje, jer je ime koje ste unijeli "
2242
+ "rezervirano za druge podatke u tablici."
2243
+
2244
+ # @ wp-table-reloaded
2245
+ #: controllers/controller-admin.php:687
2246
+ msgid ""
2247
+ "Could not add Custom Data Field, because the name contained illegal "
2248
+ "characters."
2249
+ msgstr ""
2250
+ "Nije moguće dodati Proizvoljno Podatkovno Polje, jer ime ima neželjene "
2251
+ "znakove."
2252
+
2253
+ # @ wp-table-reloaded
2254
+ #: controllers/controller-admin.php:691
2255
+ msgid ""
2256
+ "Could not add Custom Data Field, because a Field with that name already "
2257
+ "exists."
2258
+ msgstr ""
2259
+ "Nije moguće dodati Proizvoljno Podatkovno Polje, jer polje s tim imenom već "
2260
+ "postoji."
2261
+
2262
+ # @ wp-table-reloaded
2263
+ #: controllers/controller-admin.php:697
2264
+ msgid "Custom Data Field added successfully."
2265
+ msgstr "Proizvoljno Podatkovno Polje uspješno dodano."
2266
+
2267
+ # @ wp-table-reloaded
2268
+ #: controllers/controller-admin.php:737 controllers/controller-admin.php:793
2269
+ msgid "Copy of"
2270
+ msgstr "Kopija od"
2271
+
2272
+ # @ wp-table-reloaded
2273
+ #: controllers/controller-admin.php:741
2274
+ msgid "Table copied successfully."
2275
+ msgid_plural "Tables copied successfully."
2276
+ msgstr[0] "Tablica uspješno kopirana."
2277
+ msgstr[1] "Tablice uspješno kopirane."
2278
+
2279
+ # @ wp-table-reloaded
2280
+ #: controllers/controller-admin.php:747
2281
+ msgid "Table deleted successfully."
2282
+ msgid_plural "Tables deleted successfully."
2283
+ msgstr[0] "Tablica uspješno izbrisana."
2284
+ msgstr[1] "Tablice uspješno izbrisane."
2285
+
2286
+ # @ wp-table-reloaded
2287
+ #: controllers/controller-admin.php:768 controllers/controller-admin.php:923
2288
+ #: controllers/controller-admin.php:961
2289
+ msgid "Table imported successfully."
2290
+ msgid_plural "Tables imported successfully."
2291
+ msgstr[0] "Tablica importirana uspješno."
2292
+ msgstr[1] "Tablice importirane uspješno."
2293
+
2294
+ # @ wp-table-reloaded
2295
+ #: controllers/controller-admin.php:775
2296
+ msgid "You did not select any tables!"
2297
+ msgstr "Niste odabrali nijednu tablicu!"
2298
+
2299
+ # @ wp-table-reloaded
2300
+ #: controllers/controller-admin.php:798
2301
+ #, php-format
2302
+ msgid "Table &quot;%s&quot; copied successfully."
2303
+ msgstr "Tablica &quot;%s&quot; je uspješno kopirana."
2304
+
2305
+ # @ wp-table-reloaded
2306
+ #: controllers/controller-admin.php:816
2307
+ #, php-format
2308
+ msgid "Table &quot;%s&quot; deleted successfully."
2309
+ msgstr "Tablica &quot;%s&quot; je uspješno izbrisana."
2310
+
2311
+ # @ wp-table-reloaded
2312
+ #: controllers/controller-admin.php:824
2313
+ msgid "Custom Data Field deleted successfully."
2314
+ msgstr "Proizvoljno Podatkovno Polje uspješno izbrisano."
2315
+
2316
+ # @ wp-table-reloaded
2317
+ #: controllers/controller-admin.php:826
2318
+ msgid "Custom Data Field could not be deleted."
2319
+ msgstr "Proizvoljno Podatkovno Polje ne može biti izbrisano."
2320
+
2321
+ # @ wp-table-reloaded
2322
+ #: controllers/controller-admin.php:832
2323
+ msgid "Delete failed."
2324
+ msgstr "Brisanje nije uspjelo."
2325
+
2326
+ # @ wp-table-reloaded
2327
+ #: controllers/controller-admin.php:864 controllers/controller-admin.php:874
2328
+ #: controllers/controller-admin.php:885
2329
+ msgid "Imported Table"
2330
+ msgstr "Importirana Tablica"
2331
+
2332
+ # @ wp-table-reloaded
2333
+ #: controllers/controller-admin.php:865 controllers/controller-admin.php:886
2334
+ #, php-format
2335
+ msgid "from %s"
2336
+ msgstr "iz %s"
2337
+
2338
+ # @ wp-table-reloaded
2339
+ #: controllers/controller-admin.php:875
2340
+ msgid "via form"
2341
+ msgstr "sa formom"
2342
+
2343
+ # @ wp-table-reloaded
2344
+ #: controllers/controller-admin.php:902 controllers/controller-admin.php:939
2345
+ msgid "Table could not be imported."
2346
+ msgstr "Tablica nije mogla biti importana."
2347
+
2348
+ # @ wp-table-reloaded
2349
+ #: controllers/controller-admin.php:919
2350
+ #, php-format
2351
+ msgid "Table %s (%s) replaced successfully."
2352
+ msgstr "Tablica %s (%s) uspješno zamijenjena."
2353
+
2354
+ # @ wp-table-reloaded
2355
+ #: controllers/controller-admin.php:969 controllers/controller-admin.php:1164
2356
+ msgid "You do not have sufficient rights to perform this action."
2357
+ msgstr "Nemate dovoljno prava za ovu akciju."
2358
+
2359
+ # @ wp-table-reloaded
2360
+ #: controllers/controller-admin.php:976
2361
+ msgid "You did not upload a WP-Table Reloaded dump file."
2362
+ msgstr "Niste uploadali WP-Table Reloaded dump datoteku."
2363
+
2364
+ # @ wp-table-reloaded
2365
+ #: controllers/controller-admin.php:985
2366
+ msgid "The uploaded dump file is empty. Please upload a valid dump file."
2367
+ msgstr ""
2368
+ "Dump datoteka koju ste uploadali je prazna. Molimo uploadajte važeću dump "
2369
+ "datoteku."
2370
+
2371
+ # @ wp-table-reloaded
2372
+ #: controllers/controller-admin.php:1013
2373
+ msgid "All Tables, Settings and Options were successfully imported."
2374
+ msgstr "Sve tablice, postavke i opcije su uspješno importirane."
2375
+
2376
+ # @ wp-table-reloaded
2377
+ #: controllers/controller-admin.php:1042
2378
+ #, php-format
2379
+ msgid "Table &quot;%s&quot; exported successfully."
2380
+ msgstr "Tablice &quot;%s&quot; je uspješno eksportirana."
2381
+
2382
+ # @ wp-table-reloaded
2383
+ #: controllers/controller-admin.php:1145
2384
+ msgid "Options saved successfully."
2385
+ msgstr "Postavke uspješno snimljene."
2386
+
2387
+ # @ wp-table-reloaded
2388
+ #: controllers/controller-admin.php:1148
2389
+ #, php-format
2390
+ msgid "<a href=\"%s\">Click here to Proceed.</a>"
2391
+ msgstr "<a href=\"%s\">Kliknite ovdje za nastavak</a>."
2392
+
2393
+ # @ wp-table-reloaded
2394
+ #: controllers/controller-admin.php:1214
2395
+ msgid "There is no table with this ID!"
2396
+ msgstr "Ne postoji tablica s ovim ID-em."
2397
+
2398
+ # @ wp-table-reloaded
2399
+ #: controllers/controller-admin.php:1241
2400
+ msgid ""
2401
+ "Thank you very much! Your donation is highly appreciated. You just "
2402
+ "contributed to the further development of WP-Table Reloaded!"
2403
+ msgstr ""
2404
+ "Mnogo vam hvala! Vaša donacija je veoma cijenjena. Upravo ste doprinijeli "
2405
+ "daljnjem razvoju WP-Table Reloaded plugina!"
2406
+
2407
+ # @ wp-table-reloaded
2408
+ #: controllers/controller-admin.php:1243
2409
+ #, php-format
2410
+ msgid ""
2411
+ "No problem! I still hope you enjoy the benefits that WP-Table Reloaded "
2412
+ "brings to you. If you should want to change your mind, you'll always find "
2413
+ "the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</"
2414
+ "a>."
2415
+ msgstr ""
2416
+ "Nema problema! I dalje se nadam da ćete uživati u prednostima koje vam WP-"
2417
+ "Table Reloaded donosi. Ako se predomislite, uvijek možete pronaći &quot;"
2418
+ "%s&quot; link na <a href=\"%s\">WP-Table Reloaded web stranici</a>."
2419
+
2420
+ # @ wp-table-reloaded
2421
+ #: controllers/controller-admin.php:1243 controllers/controller-admin.php:1682
2422
+ msgid "Donate"
2423
+ msgstr "Donirajte"
2424
+
2425
+ # @ wp-table-reloaded
2426
+ #: controllers/controller-admin.php:1266 controllers/controller-admin.php:1273
2427
+ msgid "List of Tables"
2428
+ msgstr "Popis Tablica"
2429
+
2430
+ # @ wp-table-reloaded
2431
+ #. translators: plugin header field 'Name'
2432
+ #: controllers/controller-admin.php:1266 controllers/controller-admin.php:1270
2433
+ #: controllers/controller-admin.php:1272 wp-table-reloaded.php:0
2434
+ msgid "WP-Table Reloaded"
2435
+ msgstr "WP-Table Reloaded"
2436
+
2437
+ # @ wp-table-reloaded
2438
+ #: controllers/controller-admin.php:1267 controllers/controller-admin.php:1303
2439
+ msgid "Add new Table"
2440
+ msgstr "Dodaj novu Tablicu"
2441
+
2442
+ # @ wp-table-reloaded
2443
+ #: controllers/controller-admin.php:1268 controllers/controller-admin.php:1304
2444
+ msgid "Import a Table"
2445
+ msgstr "Import Tablice"
2446
+
2447
+ # @ wp-table-reloaded
2448
+ #: controllers/controller-admin.php:1269 controllers/controller-admin.php:1305
2449
+ msgid "Export a Table"
2450
+ msgstr "Export Tablice"
2451
+
2452
+ # @ wp-table-reloaded
2453
+ #: controllers/controller-admin.php:1271
2454
+ msgid "About WP-Table Reloaded"
2455
+ msgstr "Više o WP-Table Reloaded"
2456
+
2457
+ # @ wp-table-reloaded
2458
+ #: controllers/controller-admin.php:1279
2459
+ #, php-format
2460
+ msgid "Edit Table &quot;%s&quot; (ID %s)"
2461
+ msgstr "Izmjena Tablice &quot;%s&quot; (ID %s)"
2462
+
2463
+ # @ wp-table-reloaded
2464
+ #: controllers/controller-admin.php:1280
2465
+ #, php-format
2466
+ msgid "Preview of Table &quot;%s&quot; (ID %s)"
2467
+ msgstr "Pregled Tablice &quot;%s&quot; (ID %s)"
2468
+
2469
+ # @ wp-table-reloaded
2470
+ #: controllers/controller-admin.php:1313
2471
+ msgid "About the plugin"
2472
+ msgstr "Više o pluginu"
2473
+
2474
+ # @ wp-table-reloaded
2475
+ #: controllers/controller-admin.php:1678
2476
+ msgid "WP-Table Reloaded Plugin Page"
2477
+ msgstr "WP-Table Reloaded Plugin Stranica"
2478
+
2479
+ # @ wp-table-reloaded
2480
+ #: controllers/controller-admin.php:1678
2481
+ msgid "Plugin Page"
2482
+ msgstr "Plugin Stranica"
2483
+
2484
+ # @ wp-table-reloaded
2485
+ #: controllers/controller-admin.php:1679
2486
+ msgid "Frequently Asked Questions"
2487
+ msgstr "Često Postavljana Pitanja"
2488
+
2489
+ # @ wp-table-reloaded
2490
+ #: controllers/controller-admin.php:1679
2491
+ msgid "FAQ"
2492
+ msgstr "FAQ"
2493
+
2494
+ # @ wp-table-reloaded
2495
+ #: controllers/controller-admin.php:1680
2496
+ msgid "Support"
2497
+ msgstr "Podrška"
2498
+
2499
+ # @ wp-table-reloaded
2500
+ #: controllers/controller-admin.php:1681
2501
+ msgid "Plugin Documentation"
2502
+ msgstr "Dokumentacija Plugina"
2503
+
2504
+ # @ wp-table-reloaded
2505
+ #: controllers/controller-admin.php:1681
2506
+ msgid "Documentation"
2507
+ msgstr "Dokumentacija"
2508
+
2509
+ # @ wp-table-reloaded
2510
+ #: controllers/controller-admin.php:1682
2511
+ msgid "Support WP-Table Reloaded with your donation!"
2512
+ msgstr "Podržite WP-Table Reloaded sa donacijom!"
2513
+
2514
+ # @ wp-table-reloaded
2515
+ #: controllers/controller-admin.php:1721
2516
+ msgid ""
2517
+ "Do you really want to activate this? You should only do that right before "
2518
+ "uninstallation!"
2519
+ msgstr ""
2520
+ "Da li stvarno želite aktivirati ovo? To biste trebali samo prije "
2521
+ "deinstalacije."
2522
+
2523
+ # @ wp-table-reloaded
2524
+ #: controllers/controller-admin.php:1722
2525
+ msgid "URL of link to insert"
2526
+ msgstr "URL linka za unos"
2527
+
2528
+ # @ wp-table-reloaded
2529
+ #: controllers/controller-admin.php:1723
2530
+ msgid "Text of link"
2531
+ msgstr "Tekst linka"
2532
+
2533
+ # @ wp-table-reloaded
2534
+ #: controllers/controller-admin.php:1724
2535
+ msgid ""
2536
+ "To insert the following HTML code for a link into a cell, just click the "
2537
+ "cell after closing this dialog."
2538
+ msgstr ""
2539
+ "Da biste unijeli sljedeći HTML kod za link u ćeliju, samo kliknite na ćeliju "
2540
+ "nakon zatvaranja ovog dijaloga."
2541
+
2542
+ # @ wp-table-reloaded
2543
+ #: controllers/controller-admin.php:1725
2544
+ msgid ""
2545
+ "To insert an image, click &quot;OK&quot; and then click into the cell into "
2546
+ "which you want to insert the image."
2547
+ msgstr ""
2548
+ "Da biste unijeli sliku, kliknite &quot;OK&quot; i tada na ćeliju u koju "
2549
+ "želite unijeti sliku."
2550
+
2551
+ # @ wp-table-reloaded
2552
+ #: controllers/controller-admin.php:1725
2553
+ msgid ""
2554
+ "The Media Library will open, from which you can select the desired image or "
2555
+ "insert the image URL."
2556
+ msgstr ""
2557
+ "Media Library će se otvoriti, iz kojeg možete odabrati željene slike ili "
2558
+ "unijeti URL na sliku."
2559
+
2560
+ # @ wp-table-reloaded
2561
+ #: controllers/controller-admin.php:1725
2562
+ #, php-format
2563
+ msgid "Click the &quot;%s&quot; button to insert the image."
2564
+ msgstr "Kliknite na &quot;%s&quot; dugme da biste unijeli sliku."
2565
+
2566
+ # @ default
2567
+ #: controllers/controller-admin.php:1725
2568
+ msgid "Insert into Post"
2569
+ msgstr "Unesi u Članak"
2570
+
2571
+ # @ wp-table-reloaded
2572
+ #: controllers/controller-admin.php:1726
2573
+ msgid ""
2574
+ "To combine cells within a row, click into the cell to the right of the cell "
2575
+ "that has the content the combined cells shall have."
2576
+ msgstr ""
2577
+ "Da biste spojili ćelije u retku, kliknite u ćeliju desno od ćelije koja ima "
2578
+ "sadržaj koji će naknadno spojene ćelije imati."
2579
+
2580
+ # @ wp-table-reloaded
2581
+ #: controllers/controller-admin.php:1727
2582
+ msgid ""
2583
+ "To combine cells within a column, click into the cell below the cell that "
2584
+ "has the content the combined cells shall have."
2585
+ msgstr ""
2586
+ "Da biste spojili ćelije u stupcu, kliknite na ćeliju ispod ćelije koja ima "
2587
+ "sadržaj koju će naknadno spojene ćelije imati."
2588
+
2589
+ # @ wp-table-reloaded
2590
+ #: controllers/controller-admin.php:1728
2591
+ msgid "Do you want to copy the selected tables?"
2592
+ msgstr "Želite li kopirati označene tablice?"
2593
+
2594
+ # @ wp-table-reloaded
2595
+ #: controllers/controller-admin.php:1729
2596
+ msgid ""
2597
+ "The selected tables and all content will be erased. Do you really want to "
2598
+ "delete them?"
2599
+ msgstr ""
2600
+ "Označene tablice i sav sadržaj biti će izbrisan. Da li ih stvarno želite "
2601
+ "obrisati?"
2602
+
2603
+ # @ wp-table-reloaded
2604
+ #: controllers/controller-admin.php:1730
2605
+ msgid ""
2606
+ "Do you really want to import the selected tables from the wp-Table plugin?"
2607
+ msgstr "Da li stvarno želite importirati označene tablice iz wp-Table plugina?"
2608
+
2609
+ # @ wp-table-reloaded
2610
+ #: controllers/controller-admin.php:1731
2611
+ msgid "Do you want to copy this table?"
2612
+ msgstr "Želite li kopirati ovu tablicu?"
2613
+
2614
+ # @ wp-table-reloaded
2615
+ #: controllers/controller-admin.php:1732
2616
+ msgid ""
2617
+ "The complete table and all content will be erased. Do you really want to "
2618
+ "delete it?"
2619
+ msgstr ""
2620
+ "Cijela tablica i sav sadržaj biti će izbrisan. Da li ju stvarno želite "
2621
+ "izbrisati?"
2622
+
2623
+ # @ wp-table-reloaded
2624
+ #: controllers/controller-admin.php:1733
2625
+ msgid "Do you really want to delete the selected rows?"
2626
+ msgstr "Da li stvarno želite izbrisati odabrane redove?"
2627
+
2628
+ # @ wp-table-reloaded
2629
+ #: controllers/controller-admin.php:1734
2630
+ msgid "Do you really want to delete the selected columns?"
2631
+ msgstr "Da li stvarno želite izbrisati označene stupce?"
2632
+
2633
+ # @ wp-table-reloaded
2634
+ #: controllers/controller-admin.php:1735 controllers/controller-admin.php:1739
2635
+ #: controllers/controller-admin.php:1741
2636
+ msgid "You have not selected any rows."
2637
+ msgstr "Niste odabrali nijedan redak."
2638
+
2639
+ # @ wp-table-reloaded
2640
+ #: controllers/controller-admin.php:1736 controllers/controller-admin.php:1740
2641
+ #: controllers/controller-admin.php:1742
2642
+ msgid "You have not selected any columns."
2643
+ msgstr "Niste odabrali nijedan stupac."
2644
+
2645
+ # @ wp-table-reloaded
2646
+ #: controllers/controller-admin.php:1737
2647
+ msgid "You can not delete all rows of the table at once!"
2648
+ msgstr "Ne možete izbrisati sve redove iz tablice odjednom!"
2649
+
2650
+ # @ wp-table-reloaded
2651
+ #: controllers/controller-admin.php:1738
2652
+ msgid "You can not delete all columns of the table at once!"
2653
+ msgstr "Ne možete izbrisati sve stupce iz tablice odjednom!"
2654
+
2655
+ # @ wp-table-reloaded
2656
+ #: controllers/controller-admin.php:1743
2657
+ msgid "Do you really want to import this table from the wp-Table plugin?"
2658
+ msgstr "Da li stvarno želite importirati ovu tablicu iz wp-Table plugina?"
2659
+
2660
+ # @ wp-table-reloaded
2661
+ #: controllers/controller-admin.php:1744
2662
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
2663
+ msgstr ""
2664
+ "Da li stvarno želite deinstalirati plugin i izbrisati SVE njegove podatke?"
2665
+
2666
+ # @ wp-table-reloaded
2667
+ #: controllers/controller-admin.php:1745
2668
+ msgid "Are you really sure?"
2669
+ msgstr "Jeste li stvarno sigurni?"
2670
+
2671
+ # @ wp-table-reloaded
2672
+ #: controllers/controller-admin.php:1746
2673
+ msgid "Do you really want to change the ID of the table?"
2674
+ msgstr "Da li stvarno želite promijeniti ID tablice?"
2675
+
2676
+ # @ wp-table-reloaded
2677
+ #: controllers/controller-admin.php:1747
2678
+ msgid "To show this Custom Data Field, use this shortcode:"
2679
+ msgstr ""
2680
+ "Da biste prikazali ovo Proizvoljno Podatkovno Polje, koristite ovaj skraćeni "
2681
+ "kod:"
2682
+
2683
+ # @ wp-table-reloaded
2684
+ #: controllers/controller-admin.php:1748
2685
+ msgid "To show this table, use this shortcode:"
2686
+ msgstr "Da biste prikazali ovu tablicu, koristite ovaj skraćeni kod:"
2687
+
2688
+ # @ wp-table-reloaded
2689
+ #: controllers/controller-admin.php:1749
2690
+ msgid ""
2691
+ "Warning: You will lose all current Tables and Settings! You should create a "
2692
+ "backup first. Be warned!"
2693
+ msgstr ""
2694
+ "Upozorenje: Izgubiti ćete sve trenutne tablice i postavke! Prvo biste "
2695
+ "trebali napraviti backup. Upozoreni ste!"
2696
+
2697
+ # @ wp-table-reloaded
2698
+ #: controllers/controller-admin.php:1750
2699
+ msgid ""
2700
+ "You have made changes to the content of this table and not yet saved them."
2701
+ msgstr "Napravili ste promjene u sadržaju ove tablice i niste ih spremili."
2702
+
2703
+ # @ wp-table-reloaded
2704
+ #: controllers/controller-admin.php:1750
2705
+ #, php-format
2706
+ msgid ""
2707
+ "You should first click &quot;%s&quot; or they will be lost if you navigate "
2708
+ "away from this page."
2709
+ msgstr ""
2710
+ "Prvo biste trebali kliknuti na &quot;%s&quot; u protivnom se promjene neće "
2711
+ "spremiti."
2712
+
2713
+ # @ wp-table-reloaded
2714
+ #: controllers/controller-admin.php:1800
2715
+ msgid "Insert a Table"
2716
+ msgstr "Dodaj Tablicu"
2717
+
2718
+ # @ wp-table-reloaded
2719
+ #: controllers/controller-admin.php:1857
2720
+ msgid "Please wait..."
2721
+ msgstr "Molimo pričekajte..."
2722
+
2723
+ # @ wp-table-reloaded
2724
+ #: controllers/controller-admin.php:1858
2725
+ msgid "Show _MENU_ Tables"
2726
+ msgstr "Prikaži _MENU_ Tablice"
2727
+
2728
+ # @ wp-table-reloaded
2729
+ #: controllers/controller-admin.php:1859
2730
+ msgid "All"
2731
+ msgstr "Sve"
2732
+
2733
+ # @ wp-table-reloaded
2734
+ #: controllers/controller-admin.php:1861
2735
+ msgid "_START_ to _END_ of _TOTAL_ Tables"
2736
+ msgstr "_POČETAK_ do _KRAJ_ od _TOTAL_ Tablica"
2737
+
2738
+ # @ wp-table-reloaded
2739
+ #: controllers/controller-admin.php:1862
2740
+ msgid "(filtered from _MAX_ Tables)"
2741
+ msgstr "(filtrirano iz _MAX_ Tablica)"
2742
+
2743
+ # @ wp-table-reloaded
2744
+ #: controllers/controller-admin.php:1863
2745
+ msgid "Filter:"
2746
+ msgstr "Filter:"
2747
+
2748
+ # @ wp-table-reloaded
2749
+ #: controllers/controller-admin.php:1864
2750
+ msgid "First"
2751
+ msgstr "Prvo"
2752
+
2753
+ # @ wp-table-reloaded
2754
+ #: controllers/controller-admin.php:1865
2755
+ msgid "Back"
2756
+ msgstr "Natrag"
2757
+
2758
+ # @ wp-table-reloaded
2759
+ #: controllers/controller-admin.php:1866
2760
+ msgid "Next"
2761
+ msgstr "Dalje"
2762
+
2763
+ # @ wp-table-reloaded
2764
+ #: controllers/controller-admin.php:1867
2765
+ msgid "Last"
2766
+ msgstr "Posljednje"
2767
+
2768
+ # @ wp-table-reloaded
2769
+ #: classes/export.class.php:28 classes/import.class.php:36
2770
+ msgid "CSV - Character-Separated Values"
2771
+ msgstr "CSV - Character-Separated Values"
2772
+
2773
+ # @ wp-table-reloaded
2774
+ #: classes/export.class.php:29 classes/import.class.php:37
2775
+ msgid "HTML - Hypertext Markup Language"
2776
+ msgstr "HTML - Hypertext Markup Language"
2777
+
2778
+ # @ wp-table-reloaded
2779
+ #: classes/export.class.php:30 classes/import.class.php:38
2780
+ msgid "XML - eXtended Markup Language"
2781
+ msgstr "XML - eXtended Markup Language"
2782
+
2783
+ # @ wp-table-reloaded
2784
+ #: classes/export.class.php:33
2785
+ msgid "; (semicolon)"
2786
+ msgstr "; (točka-zarez)"
2787
+
2788
+ # @ wp-table-reloaded
2789
+ #: classes/export.class.php:34
2790
+ msgid ", (comma)"
2791
+ msgstr ", (zarez)"
2792
+
2793
+ # @ wp-table-reloaded
2794
+ #: classes/export.class.php:35
2795
+ msgid ": (colon)"
2796
+ msgstr ": (dvotočka)"
2797
+
2798
+ # @ wp-table-reloaded
2799
+ #: classes/export.class.php:36
2800
+ msgid ". (dot)"
2801
+ msgstr ". (točka)"
2802
+
2803
+ # @ wp-table-reloaded
2804
+ #: classes/export.class.php:37
2805
+ msgid "| (pipe)"
2806
+ msgstr "| (linija)"
2807
+
2808
+ # @ wp-table-reloaded
2809
+ #: classes/helper.class.php:74
2810
+ msgid ""
2811
+ "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-"
2812
+ "table-reloaded-english/\">WP-Table Reloaded</a>."
2813
+ msgstr ""
2814
+ "Hvala što koristite <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-"
2815
+ "table-reloaded-english/\">WP-Table Reloaded</a>."
2816
+
2817
+ # @ wp-table-reloaded
2818
+ #: classes/helper.class.php:74
2819
+ #, php-format
2820
+ msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
2821
+ msgstr "Podržite plugin s vašom <a href=\"%s\">donacijom</a>!"
2822
+
2823
+ # @ wp-table-reloaded
2824
+ #: classes/helper.class.php:104 classes/helper.class.php:109
2825
+ msgid "Table cells can span across more than one column or row."
2826
+ msgstr "Ćelije tablice mogu biti prikazane kroz više stupaca ili redaka."
2827
+
2828
+ # @ wp-table-reloaded
2829
+ #: classes/helper.class.php:104
2830
+ msgid ""
2831
+ "Combining consecutive cells within the same row is called \"colspanning\"."
2832
+ msgstr "Kombiniranje uzastopnih ćelija u istom retku se zove \"colspanning\"."
2833
+
2834
+ # @ wp-table-reloaded
2835
+ #: classes/helper.class.php:104
2836
+ msgid ""
2837
+ "To combine cells, add the keyword #colspan# to the cell to the right of the "
2838
+ "one with the content for the combined cell by using the corresponding button."
2839
+ msgstr ""
2840
+ "Da biste kombinirali ćelije, dodajte ključnu riječ #colspan# u ćeliju desno "
2841
+ "od ćelije sa sadržajem koji će preostati prikazan koristeći predviđeno dugme."
2842
+
2843
+ # @ wp-table-reloaded
2844
+ #: classes/helper.class.php:104 classes/helper.class.php:109
2845
+ msgid "Repeat this to add the keyword to all cells that shall be connected."
2846
+ msgstr ""
2847
+ "Ponavljajte ovo da biste dodali ključnu riječ u sve ćelije koje želite "
2848
+ "povezati."
2849
+
2850
+ # @ wp-table-reloaded
2851
+ #: classes/helper.class.php:104 classes/helper.class.php:109
2852
+ msgid ""
2853
+ "Be aware that the JavaScript libraries will not work on tables which have "
2854
+ "combined cells."
2855
+ msgstr ""
2856
+ "Zapamtite da JavaScript biblioteke neće raditi na tablicama sa spojenim "
2857
+ "ćelijama."
2858
+
2859
+ # @ wp-table-reloaded
2860
+ #: classes/helper.class.php:109
2861
+ msgid ""
2862
+ "Combining consecutive cells within the same column is called \"rowspanning\"."
2863
+ msgstr "Kombiniranje uzastopnih ćelija u istom stupcu se zove \"rowspanning\"."
2864
+
2865
+ # @ wp-table-reloaded
2866
+ #: classes/helper.class.php:109
2867
+ msgid ""
2868
+ "To combine cells, add the keyword #rowspan# to the cell below the one with "
2869
+ "the content for the combined cell by using the corresponding button."
2870
+ msgstr ""
2871
+ "Da biste kombinirali ćelije, dodajte ključnu riječ #rowspan# u ćeliju ispod "
2872
+ "ćelije sa sadržajem koji će preostati prikazan koristeći predviđeno dugme."
2873
+
2874
+ # @ wp-table-reloaded
2875
+ #: classes/helper.class.php:118
2876
+ msgid "Help"
2877
+ msgstr "Pomoć"
2878
+
2879
+ # @ wp-table-reloaded
2880
+ #. translators: plugin header field 'PluginURI'
2881
+ #: wp-table-reloaded.php:0
2882
+ msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2883
+ msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2884
+
2885
+ # @ wp-table-reloaded
2886
+ #. translators: plugin header field 'Description'
2887
+ #: wp-table-reloaded.php:0
2888
+ msgid ""
2889
+ "This plugin allows you to create and easily manage tables in the admin-area "
2890
+ "of WordPress. A comfortable backend allows an easy manipulation of table "
2891
+ "data. You can then include the tables into your posts, on your pages or in "
2892
+ "text widgets by using a shortcode or a template tag function. Tables can be "
2893
+ "imported and exported from/to CSV, XML and HTML."
2894
+ msgstr ""
2895
+ "Ovaj plugin vam omogućuje stvaranje i jednostavno upravljanje tablicama u "
2896
+ "administratorskom sučelju Wordpress-a. Ugodno sučelje vam omogućava lako "
2897
+ "manipuliranje podacima u tablici. Možete dodati tablice u vaše članke, "
2898
+ "stranice ili u tekstualne widgete koristeći skraćeni kod ili kod za "
2899
+ "predložak. Tablice mogu biti importirane iz i u CSV, XML i HTML."
2900
+
2901
+ # @ wp-table-reloaded
2902
+ #. translators: plugin header field 'AuthorURI'
2903
+ #: wp-table-reloaded.php:0
2904
+ msgid "http://tobias.baethge.com/"
2905
+ msgstr "http://tobias.baethge.com/"
2906
+
2907
+ # @ wp-table-reloaded
2908
+ #: controllers/controller-admin.php:266
2909
+ msgid "Indonesian"
2910
+ msgstr "Indonezijski"
2911
+
2912
+ # @ wp-table-reloaded
2913
+ #: controllers/controller-admin.php:272
2914
+ msgid "Portuguese (Portugal)"
2915
+ msgstr "Portugalski (Portugal)"
2916
+
2917
+ # @ wp-table-reloaded
2918
+ #: views/view-edit.php:321
2919
+ msgid "Extra CSS Class"
2920
+ msgstr "Dodatna CSS Klasa"
2921
+
2922
+ # @ wp-table-reloaded
2923
+ #: views/view-edit.php:322
2924
+ msgid "This is not the place to enter \"Custom CSS\" code!"
2925
+ msgstr "Ovo nije mjesto za unos \"Custom CSS\" koda!"
2926
+
2927
+ # @ wp-table-reloaded
2928
+ #: controllers/controller-admin.php:308
2929
+ msgid "This version includes several bugfixes and a few enhancements."
2930
+ msgstr "Ova verzija sadrži nekoliko ispravaka grešaka i nekoliko poboljšanja."
2931
+
2932
+ # @ wp-table-reloaded
2933
+ #: controllers/controller-admin.php:257
2934
+ msgid "Bulgarian"
2935
+ msgstr "Bugarski"
2936
+
2937
+ # @ wp-table-reloaded
2938
+ #: controllers/controller-admin.php:264
2939
+ msgid "Hebrew"
2940
+ msgstr "Hebrejski"
2941
+
2942
+ # @ wp-table-reloaded
2943
+ #: views/view-edit.php:390
2944
+ msgid "Filtering/Search"
2945
+ msgstr "Filtriranje/Pretraga"
2946
+
2947
+ # @ wp-table-reloaded
2948
+ #. translators: plugin header field 'Author'
2949
+ #: wp-table-reloaded.php:0
2950
+ msgid "Tobias Bäthge"
2951
+ msgstr "Tobias Bäthge"
2952
+
2953
+ # @ wp-table-reloaded
2954
+ #. translators: plugin header field 'Version'
2955
+ #: wp-table-reloaded.php:0
2956
+ msgid "1.9.3-dev"
2957
+ msgstr "1.9.3-dev"
languages/wp-table-reloaded-pt_BR.mo CHANGED
Binary file
languages/wp-table-reloaded-pt_BR.po CHANGED
@@ -2,2351 +2,2877 @@ 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-12-19 11:51+0100\n"
7
  "Last-Translator: Tobias Baethge <wordpress@tobias.baethge.com>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-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-Textdomain-Support: yes\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #@ wp-table-reloaded
22
- #: php/wp-table-reloaded-export.class.php:30
23
- #: php/wp-table-reloaded-import.class.php:38
24
  msgid "CSV - Character-Separated Values"
25
  msgstr "CSV - Valores Separados por Vírgula"
26
 
27
- #@ wp-table-reloaded
28
- #: php/wp-table-reloaded-export.class.php:31
29
- #: php/wp-table-reloaded-import.class.php:39
30
  msgid "HTML - Hypertext Markup Language"
31
  msgstr "HTML - Linguagem de Marcação de Texto"
32
 
33
- #@ wp-table-reloaded
34
- #: php/wp-table-reloaded-export.class.php:32
35
- #: php/wp-table-reloaded-import.class.php:40
36
  msgid "XML - eXtended Markup Language"
37
  msgstr "XML - eXtended Markup Language"
38
 
39
- #@ wp-table-reloaded
40
- #: php/wp-table-reloaded-export.class.php:35
41
  msgid "; (semicolon)"
42
  msgstr "; (ponto e vírgula)"
43
 
44
- #@ wp-table-reloaded
45
- #: php/wp-table-reloaded-export.class.php:36
46
  msgid ", (comma)"
47
  msgstr ", (vírgula)"
48
 
49
- #@ wp-table-reloaded
50
- #: php/wp-table-reloaded-export.class.php:37
51
  msgid ": (colon)"
52
  msgstr ": (dois pontos)"
53
 
54
- #@ wp-table-reloaded
55
- #: php/wp-table-reloaded-export.class.php:38
56
  msgid ". (dot)"
57
  msgstr ". (ponto)"
58
 
59
- #@ wp-table-reloaded
60
- #: php/wp-table-reloaded-export.class.php:39
61
  msgid "| (pipe)"
62
  msgstr "| (pipe)"
63
 
64
- #@ wp-table-reloaded
65
- #: wp-table-reloaded-admin.php:353
66
- msgid "Table edited successfully."
67
- msgstr "Tabela editada com sucesso."
 
 
 
 
 
 
 
68
 
69
- #@ wp-table-reloaded
70
- #: wp-table-reloaded-admin.php:399
71
- msgid "Rows swapped successfully."
72
- msgstr "Linhas trocadas com sucesso."
 
73
 
74
- #@ wp-table-reloaded
75
- #: wp-table-reloaded-admin.php:420
76
- msgid "Columns swapped successfully."
77
- msgstr "Colunas trocadas com sucesso."
 
 
 
 
 
78
 
79
- #@ wp-table-reloaded
80
- #: wp-table-reloaded-admin.php:451
81
- msgid "Table sorted successfully."
82
- msgstr "Tabela ordenada com sucesso."
 
 
 
 
 
 
 
83
 
84
- #@ wp-table-reloaded
85
- #: wp-table-reloaded-admin.php:680
86
- #: wp-table-reloaded-admin.php:735
87
- msgid "Copy of"
88
- msgstr "Cópia de"
 
 
 
 
89
 
90
- #@ wp-table-reloaded
91
- #: wp-table-reloaded-admin.php:684
92
- msgid "Table copied successfully."
93
- msgid_plural "Tables copied successfully."
94
- msgstr[0] "Tabela copiada com sucesso."
95
- msgstr[1] "Tabelas copiadas com sucesso."
 
 
96
 
97
- #@ wp-table-reloaded
98
- #: wp-table-reloaded-admin.php:690
99
- msgid "Table deleted successfully."
100
- msgid_plural "Tables deleted successfully."
101
- msgstr[0] "Tabela excluída com sucesso."
102
- msgstr[1] "Tabelas excluídas com sucesso."
103
 
104
- #@ wp-table-reloaded
105
- #: wp-table-reloaded-admin.php:711
106
- #: wp-table-reloaded-admin.php:845
107
- #: wp-table-reloaded-admin.php:883
108
- msgid "Table imported successfully."
109
- msgid_plural "Tables imported successfully."
110
- msgstr[0] "Tabela importada com sucesso."
111
- msgstr[1] "Tabelas importadas com sucesso."
112
 
113
- #@ wp-table-reloaded
114
- #: wp-table-reloaded-admin.php:718
115
- msgid "You did not select any tables!"
116
- msgstr "Você não selecionou tabela alguma."
 
117
 
118
- #@ wp-table-reloaded
119
- #: wp-table-reloaded-admin.php:772
120
- msgid "Delete failed."
121
- msgstr "A exclusão falhou."
 
 
 
122
 
123
- #@ wp-table-reloaded
124
- #: wp-table-reloaded-admin.php:799
125
- #: wp-table-reloaded-admin.php:808
126
- #: wp-table-reloaded-admin.php:818
127
- msgid "Imported Table"
128
- msgstr "Tabela Importada"
129
 
130
- #@ wp-table-reloaded
131
- #: wp-table-reloaded-admin.php:809
132
- msgid "via form"
133
- msgstr "via formulário"
 
 
 
134
 
135
- #@ wp-table-reloaded
136
- #: wp-table-reloaded-admin.php:829
137
- #: wp-table-reloaded-admin.php:860
138
- msgid "Table could not be imported."
139
- msgstr "Não foi possível importar a tabela."
140
 
141
- #@ wp-table-reloaded
142
- #: wp-table-reloaded-admin.php:1051
143
- msgid "Options saved successfully."
144
- msgstr "Opções salvas com sucesso."
 
 
 
145
 
146
- #@ wp-table-reloaded
147
- #: wp-table-reloaded-admin.php:1076
148
- #: wp-table-reloaded-admin.php:1238
149
- #: wp-table-reloaded-admin.php:2103
150
- msgid "WP-Table Reloaded"
151
- msgstr "WP-Table Reloaded"
152
 
153
- #@ wp-table-reloaded
154
- #: php/wp-table-reloaded-helper.class.php:87
155
- #: wp-table-reloaded-admin.php:1077
156
- msgid "Plugin deactivated successfully."
157
- msgstr "Plugin desativado com sucesso."
158
 
159
- #@ wp-table-reloaded
160
- #: php/wp-table-reloaded-helper.class.php:87
161
- #: wp-table-reloaded-admin.php:1078
162
- msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
163
- 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."
164
 
165
- #@ wp-table-reloaded
166
- #: wp-table-reloaded-admin.php:1094
167
- #: wp-table-reloaded-admin.php:1238
168
- msgid "List of Tables"
169
- msgstr "Lista de Tabelas"
170
 
171
- #@ wp-table-reloaded
172
- #: wp-table-reloaded-admin.php:1097
173
- #: wp-table-reloaded-admin.php:1241
174
- msgid "This is a list of all available tables."
175
- msgstr "Esta é uma lista de todas as tabelas disponíveis."
176
 
177
- #@ wp-table-reloaded
178
- #: wp-table-reloaded-admin.php:1097
179
- msgid "You may insert a table into a post or page here."
180
- msgstr "Você pode inserir uma tabela em um artigo (post) ou página aqui."
181
 
182
- #@ wp-table-reloaded
183
- #: wp-table-reloaded-admin.php:1107
184
- #: wp-table-reloaded-admin.php:1115
185
- #: wp-table-reloaded-admin.php:1252
186
- #: wp-table-reloaded-admin.php:1262
187
- #: wp-table-reloaded-admin.php:1963
188
- #: wp-table-reloaded-admin.php:1972
189
- msgid "ID"
190
- msgstr "ID"
191
 
192
- #@ wp-table-reloaded
193
- #: wp-table-reloaded-admin.php:1108
194
- #: wp-table-reloaded-admin.php:1116
195
- #: wp-table-reloaded-admin.php:1254
196
- #: wp-table-reloaded-admin.php:1264
197
- #: wp-table-reloaded-admin.php:1349
198
- #: wp-table-reloaded-admin.php:1402
199
- #: wp-table-reloaded-admin.php:1701
200
- #: wp-table-reloaded-admin.php:1964
201
- #: wp-table-reloaded-admin.php:1973
202
- msgid "Table Name"
203
- msgstr "Nome da Tabela"
204
 
205
- #@ wp-table-reloaded
206
- #: wp-table-reloaded-admin.php:1109
207
- #: wp-table-reloaded-admin.php:1117
208
- #: wp-table-reloaded-admin.php:1255
209
- #: wp-table-reloaded-admin.php:1265
210
- #: wp-table-reloaded-admin.php:1353
211
- #: wp-table-reloaded-admin.php:1406
212
- #: wp-table-reloaded-admin.php:1965
213
- #: wp-table-reloaded-admin.php:1974
214
- msgid "Description"
215
- msgstr "Descrição"
216
 
217
- #@ wp-table-reloaded
218
- #: wp-table-reloaded-admin.php:1110
219
- #: wp-table-reloaded-admin.php:1118
220
- #: wp-table-reloaded-admin.php:1809
221
- #: wp-table-reloaded-admin.php:1966
222
- #: wp-table-reloaded-admin.php:1975
223
- msgid "Action"
224
- msgstr "Ação"
225
 
226
- #@ wp-table-reloaded
227
- #: wp-table-reloaded-admin.php:1098
228
- #: wp-table-reloaded-admin.php:1138
229
- msgid "Insert"
230
- msgstr "Inserir"
231
 
232
- #@ wp-table-reloaded
233
- #: wp-table-reloaded-admin.php:1299
234
- msgid "Edit"
235
- msgstr "Editar"
236
 
237
- #@ wp-table-reloaded
238
- #: wp-table-reloaded-admin.php:1302
239
- msgid "Copy"
240
- msgstr "Copiar"
241
 
242
- #@ wp-table-reloaded
243
- #: wp-table-reloaded-admin.php:1303
244
- msgid "Export"
245
- msgstr "Exportar"
246
 
247
- #@ wp-table-reloaded
248
- #: wp-table-reloaded-admin.php:1304
249
- #: wp-table-reloaded-admin.php:1550
250
- #: wp-table-reloaded-admin.php:1566
251
- msgid "Delete"
252
- msgstr "Excluir"
253
 
254
- #@ wp-table-reloaded
255
- #: wp-table-reloaded-admin.php:1318
256
- #: wp-table-reloaded-admin.php:2004
257
- msgid "Bulk actions:"
258
- msgstr "Ações em lote:"
259
 
260
- #@ wp-table-reloaded
261
- #: wp-table-reloaded-admin.php:1318
262
- msgid "Copy Tables"
263
- msgstr "Copiar Tabelas"
264
 
265
- #@ wp-table-reloaded
266
- #: wp-table-reloaded-admin.php:1318
267
- msgid "Delete Tables"
268
- msgstr "Excluir Tabelas"
269
 
270
- #@ wp-table-reloaded
271
- #: php/wp-table-reloaded-helper.class.php:72
272
- #: wp-table-reloaded-admin.php:1337
273
- #: wp-table-reloaded-admin.php:2401
274
- msgid "Add new Table"
275
- msgstr "Adicionar nova Tabela"
276
 
277
- #@ wp-table-reloaded
278
- #: wp-table-reloaded-admin.php:1350
279
- msgid "Enter Table Name"
280
- msgstr "Digite o Nome da Tabela"
281
 
282
- #@ wp-table-reloaded
283
- #: wp-table-reloaded-admin.php:1354
284
- msgid "Enter Description"
285
- msgstr "Digite a Descrição"
286
 
287
- #@ wp-table-reloaded
288
- #: wp-table-reloaded-admin.php:1357
289
- msgid "Number of Rows"
290
- msgstr "Número de Linhas"
291
 
292
- #@ wp-table-reloaded
293
- #: wp-table-reloaded-admin.php:1361
294
- msgid "Number of Columns"
295
- msgstr "Número de Colunas"
296
 
297
- #@ wp-table-reloaded
298
- #: wp-table-reloaded-admin.php:1368
299
- msgid "Add Table"
300
- msgstr "Adicionar Tabela"
301
 
302
- #@ wp-table-reloaded
303
- #: wp-table-reloaded-admin.php:1394
304
- msgid "Table Information"
305
- msgstr "Informações da Tabela"
306
 
307
- #@ wp-table-reloaded
308
- #: wp-table-reloaded-admin.php:1420
309
- #: wp-table-reloaded-admin.php:1675
310
- #: wp-table-reloaded-admin.php:1788
311
- #: wp-table-reloaded-admin.php:1839
312
- #: wp-table-reloaded-admin.php:2844
313
- msgid "Update Changes"
314
- msgstr "Atualizar Mudanças"
 
 
 
315
 
316
- #@ wp-table-reloaded
317
- #: wp-table-reloaded-admin.php:1421
318
- #: wp-table-reloaded-admin.php:1676
319
- #: wp-table-reloaded-admin.php:1789
320
- #: wp-table-reloaded-admin.php:1840
321
- msgid "Save and go back"
322
- msgstr "Salvar e voltar"
323
 
324
- #@ wp-table-reloaded
325
- #: wp-table-reloaded-admin.php:1424
326
- #: wp-table-reloaded-admin.php:1679
327
- #: wp-table-reloaded-admin.php:1792
328
- #: wp-table-reloaded-admin.php:1843
329
- #: wp-table-reloaded-admin.php:2238
330
- msgid "Cancel"
331
- msgstr "Cancelar"
332
 
333
- #@ wp-table-reloaded
334
- #: wp-table-reloaded-admin.php:1430
335
- msgid "Table Contents"
336
- msgstr "Conteúdo da Tabela"
 
 
 
 
 
337
 
338
- #@ wp-table-reloaded
339
- #: wp-table-reloaded-admin.php:1394
340
- #: wp-table-reloaded-admin.php:1430
341
- #: wp-table-reloaded-admin.php:1483
342
- #: wp-table-reloaded-admin.php:1684
343
- #: wp-table-reloaded-admin.php:1745
344
- #: wp-table-reloaded-admin.php:1797
345
- #: wp-table-reloaded-admin.php:2123
346
- #: wp-table-reloaded-admin.php:2166
347
- #: wp-table-reloaded-admin.php:2183
348
- #: wp-table-reloaded-admin.php:2251
349
- #: wp-table-reloaded-admin.php:2262
350
- #: wp-table-reloaded-admin.php:2371
351
- msgid "Expand"
352
- msgstr "Expandir"
353
 
354
- #@ wp-table-reloaded
355
- #: wp-table-reloaded-admin.php:1483
356
- msgid "Data Manipulation"
357
- msgstr "Manipulação de Conteúdo"
358
 
359
- #@ wp-table-reloaded
360
- #: wp-table-reloaded-admin.php:1605
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  #, php-format
362
- msgid "Swap rows %s and %s"
363
- msgstr "Trocar linhas %s e %s"
 
 
 
 
 
 
364
 
365
- #@ wp-table-reloaded
366
- #: wp-table-reloaded-admin.php:1607
367
- #: wp-table-reloaded-admin.php:1624
368
- msgid "Swap"
369
- msgstr "Trocar"
370
 
371
- #@ wp-table-reloaded
372
- #: wp-table-reloaded-admin.php:1622
 
 
 
 
 
 
 
 
 
 
373
  #, php-format
374
- msgid "Swap columns %s and %s"
375
- msgstr "Trocar colunas %s e %s"
376
 
377
- #@ wp-table-reloaded
378
- #: wp-table-reloaded-admin.php:1488
379
- #: wp-table-reloaded-admin.php:2159
380
- msgid "Insert Link"
381
- msgstr "Inserir Link"
 
 
 
 
382
 
383
- #@ wp-table-reloaded
384
- #: wp-table-reloaded-admin.php:1489
385
- msgid "Insert Image"
386
- msgstr "Inserir Imagem"
 
 
 
 
 
387
 
388
- #@ wp-table-reloaded
389
- #: wp-table-reloaded-admin.php:1499
390
- msgid "ascending"
391
- msgstr "crescente"
392
 
393
- #@ wp-table-reloaded
394
- #: wp-table-reloaded-admin.php:1500
395
- msgid "descending"
396
- msgstr "decrescente"
397
 
398
- #@ wp-table-reloaded
399
- #: wp-table-reloaded-admin.php:1503
400
- #, php-format
401
- msgid "Sort table by column %s in %s order"
402
- msgstr "Ordenar tabela pela coluna %s em ordem %s"
403
 
404
- #@ wp-table-reloaded
405
- #: wp-table-reloaded-admin.php:1505
406
- msgid "Sort"
407
- msgstr "Ordenar"
408
 
409
- #@ wp-table-reloaded
410
- #: wp-table-reloaded-admin.php:1686
411
- msgid "These settings will only be used for this table."
412
- msgstr "Estas configurações serão utilizadas somente para esta tabela."
413
 
414
- #@ wp-table-reloaded
415
- #: wp-table-reloaded-admin.php:1689
416
- msgid "Alternating row colors"
417
- msgstr "Alternar cores das linhas"
418
 
419
- #@ wp-table-reloaded
420
- #: wp-table-reloaded-admin.php:1706
421
- msgid "The Table Description will be written under the table."
422
- msgstr "A Descrição será escrita embaixo da tabela."
 
 
423
 
424
- #@ wp-table-reloaded
425
- #: wp-table-reloaded-admin.php:1848
426
- msgid "Other actions"
427
- msgstr "Outras ações"
 
 
428
 
429
- #@ wp-table-reloaded
430
- #: wp-table-reloaded-admin.php:1851
431
- msgid "Delete Table"
432
- msgstr "Excluir Tabela"
 
 
433
 
434
- #@ wp-table-reloaded
435
- #: wp-table-reloaded-admin.php:1852
436
- #: wp-table-reloaded-admin.php:2082
437
- msgid "Export Table"
438
- msgstr "Exportar Tabela"
 
439
 
440
- #@ wp-table-reloaded
441
- #: php/wp-table-reloaded-helper.class.php:75
442
- #: wp-table-reloaded-admin.php:1864
443
- #: wp-table-reloaded-admin.php:2402
444
- msgid "Import a Table"
445
- msgstr "Importar uma Tabela"
446
 
447
- #@ wp-table-reloaded
448
- #: wp-table-reloaded-admin.php:1875
449
- msgid "Select Import Format"
450
- msgstr "Selecionar o Formato de Importação"
 
 
451
 
452
- #@ wp-table-reloaded
453
- #: wp-table-reloaded-admin.php:1918
454
- msgid "Select File with Table to Import"
455
- msgstr "Selecionar o Arquivo com a Tabela a ser Importada"
 
 
456
 
457
- #@ wp-table-reloaded
458
- #: wp-table-reloaded-admin.php:1930
459
- msgid "Paste data with Table to Import"
460
- msgstr "Colar conteúdo com a Tabela para Importar"
 
 
461
 
462
- #@ wp-table-reloaded
463
- #: wp-table-reloaded-admin.php:1936
464
- msgid "Import Table"
465
- msgstr "Importar Tabela"
 
 
466
 
467
- #@ wp-table-reloaded
468
- #: wp-table-reloaded-admin.php:1950
469
- msgid "Import from original wp-Table plugin"
470
- msgstr "Importar do plugin wp-Table original"
 
 
 
 
471
 
472
- #@ wp-table-reloaded
473
- #: wp-table-reloaded-admin.php:1996
474
- msgid "Import"
475
- msgstr "Importar"
 
 
 
 
476
 
477
- #@ wp-table-reloaded
478
- #: wp-table-reloaded-admin.php:2004
479
- msgid "Import Tables"
480
- msgstr "Importar Tabelas"
 
 
 
 
481
 
482
- #@ wp-table-reloaded
483
- #: wp-table-reloaded-admin.php:2010
484
- msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
485
- msgstr "O plugin wp-Table, de Alex Rabe, parece estar instalado, mas nenhuma tabela foi encontrada."
486
 
487
- #@ wp-table-reloaded
488
- #: php/wp-table-reloaded-helper.class.php:78
489
- #: wp-table-reloaded-admin.php:2029
490
- #: wp-table-reloaded-admin.php:2403
491
- msgid "Export a Table"
492
- msgstr "Exportar uma Tabela"
493
 
494
- #@ wp-table-reloaded
495
- #: wp-table-reloaded-admin.php:2041
496
- msgid "Select Table to Export"
497
- msgstr "Selecionar Tabela para Exportar"
 
 
498
 
499
- #@ wp-table-reloaded
500
- #: wp-table-reloaded-admin.php:2056
501
- msgid "Select Export Format"
502
- msgstr "Selecionar Formato para Exportação"
 
 
503
 
504
- #@ wp-table-reloaded
505
- #: wp-table-reloaded-admin.php:2066
506
- msgid "Select Delimiter to use"
507
- msgstr "Selecionar Delimitador para usar"
 
 
 
508
 
509
- #@ wp-table-reloaded
510
- #: wp-table-reloaded-admin.php:2076
511
- msgid "Download file"
512
- msgstr "Fazer Download do arquivo"
513
 
514
- #@ wp-table-reloaded
515
- #: wp-table-reloaded-admin.php:2077
516
- msgid "Yes, I want to download the export file."
517
- msgstr "Sim, eu quero fazer o download do arquivo exportado."
 
518
 
519
- #@ wp-table-reloaded
520
- #: wp-table-reloaded-admin.php:2123
521
- msgid "Frontend Options"
522
- msgstr "Opções de Interface"
 
523
 
524
- #@ wp-table-reloaded
525
- #: wp-table-reloaded-admin.php:2235
526
- msgid "Save Options"
527
- msgstr "Salvar Opções"
528
 
529
- #@ wp-table-reloaded
530
- #: wp-table-reloaded-admin.php:2288
531
- msgid "Uninstall Plugin WP-Table Reloaded"
532
- msgstr "Desinstalar o Plugin WP-Table Reloaded"
533
 
534
- #@ wp-table-reloaded
535
- #: wp-table-reloaded-admin.php:2316
536
- msgid "Plugin Purpose"
537
- msgstr "Proposta do Plugin"
538
 
539
- #@ wp-table-reloaded
540
- #: wp-table-reloaded-admin.php:2318
541
- msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
542
- msgstr "Estas tabelas podem conter texto, números e até HTML (por exemplo, incluir imagens ou links)."
 
543
 
544
- #@ wp-table-reloaded
545
- #: wp-table-reloaded-admin.php:2318
546
- msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
547
- msgstr "Se você quiser mostrar suas tabelas em qualquer outro lugar no seu tema, você pode usar uma \"template tag function\"."
 
548
 
549
- #@ wp-table-reloaded
550
- #: wp-table-reloaded-admin.php:2323
551
- msgid "Usage"
552
- msgstr "Uso"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
 
554
- #@ wp-table-reloaded
555
- #: wp-table-reloaded-admin.php:2325
556
- msgid "At first you should add or import a table."
557
- msgstr "Primeiro você deve adicionar ou importar uma tabela."
558
 
559
- #@ wp-table-reloaded
560
- #: wp-table-reloaded-admin.php:2325
561
- 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."
562
- 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."
563
 
564
- #@ wp-table-reloaded
565
- #: wp-table-reloaded-admin.php:2325
566
- 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."
567
- 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."
 
568
 
569
- #@ wp-table-reloaded
570
- #: wp-table-reloaded-admin.php:2325
571
- 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."
572
- 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ê."
573
 
574
- #@ wp-table-reloaded
575
- #: wp-table-reloaded-admin.php:2331
576
- msgid "More Information and Documentation"
577
- msgstr "Mais Informações e Documentação"
 
578
 
579
- #@ wp-table-reloaded
580
- #: wp-table-reloaded-admin.php:2347
581
- msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
582
- 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!"
 
583
 
584
- #@ wp-table-reloaded
585
- #: wp-table-reloaded-admin.php:2352
586
- msgid "Credits and Thanks"
587
- msgstr "Créditos e Agradecimentos"
588
 
589
- #@ wp-table-reloaded
590
- #: wp-table-reloaded-admin.php:2355
591
- msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
592
- msgstr "Meu muito obrigado para o <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> pelo plugin original \"wp-Table plugin\","
593
 
594
- #@ wp-table-reloaded
595
- #: wp-table-reloaded-admin.php:2357
596
- msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
597
- msgstr "Christian Bach pelo <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
598
 
599
- #@ wp-table-reloaded
600
- #: wp-table-reloaded-admin.php:2359
601
- msgid "the submitters of translations:"
602
- msgstr "o pessoal que contriuiu com traduções:"
603
 
604
- #@ wp-table-reloaded
605
- #: wp-table-reloaded-admin.php:2361
606
- msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
607
- msgstr "Czech (obrigado <a href=\"http://separatista.net/\">Separatista</a>)"
608
 
609
- #@ wp-table-reloaded
610
- #: wp-table-reloaded-admin.php:2364
611
- msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
612
- msgstr "Swedish (obrigado <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
613
 
614
- #@ wp-table-reloaded
615
- #: wp-table-reloaded-admin.php:2365
616
- msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
617
- msgstr "pra todos que doaram, contribuíram, ajudaram, apoiaram e também pra todos os usuários do plugin!"
618
 
619
- #@ wp-table-reloaded
620
- #: wp-table-reloaded-admin.php:2371
621
- msgid "Debug and Version Information"
622
- msgstr "Informações de Versão e Debug"
623
 
624
- #@ wp-table-reloaded
625
- #: php/wp-table-reloaded-helper.class.php:66
626
- #: wp-table-reloaded-admin.php:2400
627
- msgid "List Tables"
628
- msgstr "Listar Tabelas"
629
 
630
- #@ wp-table-reloaded
631
- #: php/wp-table-reloaded-helper.class.php:81
632
- #: wp-table-reloaded-admin.php:275
633
- #: wp-table-reloaded-admin.php:1734
634
- #: wp-table-reloaded-admin.php:1749
635
- #: wp-table-reloaded-admin.php:2033
636
- #: wp-table-reloaded-admin.php:2103
637
- #: wp-table-reloaded-admin.php:2409
638
- msgid "Plugin Options"
639
- msgstr "Opções do Plugin"
640
 
641
- #@ wp-table-reloaded
642
- #: wp-table-reloaded-admin.php:2817
643
- msgid "Do you really want to activate this? You should only do that right before uninstallation!"
644
- msgstr "Você deseja mesmo ativar isto? Você deve fazer isso exatamente antes de desinstalar!"
 
 
 
 
645
 
646
- #@ wp-table-reloaded
647
- #: wp-table-reloaded-admin.php:2818
648
  msgid "URL of link to insert"
649
  msgstr "URL do link para inserir"
650
 
651
- #@ wp-table-reloaded
652
- #: wp-table-reloaded-admin.php:2819
653
  msgid "Text of link"
654
  msgstr "Texto do link"
655
 
656
- #@ wp-table-reloaded
657
- #: wp-table-reloaded-admin.php:2822
658
- msgid "Do you want to copy the selected tables?"
659
- msgstr "Você deseja copiar as tabelas selecionadas?"
 
 
 
 
660
 
661
- #@ wp-table-reloaded
662
- #: wp-table-reloaded-admin.php:2823
663
- msgid "The selected tables and all content will be erased. Do you really want to delete them?"
664
- msgstr "As tabelas selecionadas, e todo o seu conteúdo, serão excluídas. Você deseja mesmo excluí-las?"
 
 
 
 
 
665
 
666
- #@ wp-table-reloaded
667
- #: wp-table-reloaded-admin.php:2824
668
- msgid "Do you really want to import the selected tables from the wp-Table plugin?"
669
- msgstr "Você deseja mesmo importar as tabelas selecionadas do plugin wp-Table?"
 
 
 
 
670
 
671
- #@ wp-table-reloaded
672
- #: wp-table-reloaded-admin.php:2825
673
- msgid "Do you want to copy this table?"
674
- msgstr "Você deseja copiar esta tabela?"
 
675
 
676
- #@ wp-table-reloaded
677
- #: wp-table-reloaded-admin.php:2826
678
- msgid "The complete table and all content will be erased. Do you really want to delete it?"
679
- msgstr "Todas as tabelas e seu conteúdo serão excluídos. Você deseja mesmo excluí-las?"
680
 
681
- #@ wp-table-reloaded
682
- #: wp-table-reloaded-admin.php:2837
683
- msgid "Do you really want to import this table from the wp-Table plugin?"
684
- msgstr "Você deseja mesmo importar esta tabela do plugin wp-Table?"
 
 
 
685
 
686
- #@ wp-table-reloaded
687
- #: wp-table-reloaded-admin.php:2838
688
- msgid "Do you really want to uninstall the plugin and delete ALL data?"
689
- msgstr "Você deseja mesmo desinstalar o plugin e excluir todo o conteúdo?"
 
 
 
690
 
691
- #@ wp-table-reloaded
692
- #: wp-table-reloaded-admin.php:2839
693
- msgid "Are you really sure?"
694
- msgstr "Tem certeza?"
695
 
696
- #@ wp-table-reloaded
697
- #: wp-table-reloaded-admin.php:1241
698
- #: wp-table-reloaded-admin.php:2325
699
- #: wp-table-reloaded-admin.php:2892
700
- msgid "Table"
701
- msgstr "Tabela"
 
 
702
 
703
- #@ wp-table-reloaded
704
- #: wp-table-reloaded-admin.php:348
705
- #, php-format
706
- msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
707
- msgstr "Tabela editada com sucesso. Essa tabela agora tem o ID %s. Você precisará ajustar manualmente os códigos já existentes."
708
 
709
- #@ wp-table-reloaded
710
- #: wp-table-reloaded-admin.php:350
711
- #, php-format
712
- msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
713
- msgstr "O ID não pode ser alterado de %s para %s porque já existe uma Tabela com esse ID."
714
 
715
- #@ wp-table-reloaded
716
- #: wp-table-reloaded-admin.php:602
717
- msgid "Row added successfully."
718
- msgid_plural "Rows added successfully."
719
- msgstr[0] "Linha adicionada com sucesso."
720
- msgstr[1] "Linhas adicionadas com sucesso."
 
 
721
 
722
- #@ wp-table-reloaded
723
- #: wp-table-reloaded-admin.php:616
724
- msgid "Column added successfully."
725
- msgid_plural "Columns added successfully."
726
- msgstr[0] "Coluna adicionada com sucesso."
727
- msgstr[1] "Colunas adicionadasc om sucesso."
728
 
729
- #@ wp-table-reloaded
730
- #: wp-table-reloaded-admin.php:800
731
- #: wp-table-reloaded-admin.php:819
732
- #, php-format
733
- msgid "from %s"
734
- msgstr "de %s"
735
 
736
- #@ wp-table-reloaded
737
- #: wp-table-reloaded-admin.php:841
738
- #, php-format
739
- msgid "Table %s (%s) replaced successfully."
740
- msgstr "Tabela %s (%s) substituída com sucesso."
741
 
742
- #@ wp-table-reloaded
743
- #: wp-table-reloaded-admin.php:1398
744
- msgid "Table ID"
745
- msgstr "ID da Tabela"
 
746
 
747
- #@ wp-table-reloaded
748
- #: wp-table-reloaded-admin.php:1587
749
- #, php-format
750
- msgid "Add %s row(s)"
751
- msgstr "Adiciona %s linha(s)"
752
 
753
- #@ wp-table-reloaded
754
- #: wp-table-reloaded-admin.php:1588
755
- #: wp-table-reloaded-admin.php:1591
756
- #: wp-table-reloaded-admin.php:1834
757
- msgid "Add"
758
- msgstr "Adicionar"
759
 
760
- #@ wp-table-reloaded
761
- #: wp-table-reloaded-admin.php:1590
762
- #, php-format
763
- msgid "Add %s column(s)"
764
- msgstr "Adicionar %s coluna(s)"
765
 
766
- #@ wp-table-reloaded
767
- #: wp-table-reloaded-admin.php:1886
768
- msgid "Add or Replace Table?"
769
- msgstr "Adicionar ou Substituir Tabela?"
770
 
771
- #@ wp-table-reloaded
772
- #: wp-table-reloaded-admin.php:1888
773
- msgid "Add as new Table"
774
- msgstr "Adicionar como uma nova Tabela"
775
 
776
- #@ wp-table-reloaded
777
- #: wp-table-reloaded-admin.php:1889
778
- msgid "Replace existing Table"
779
- msgstr "Substituir Tabela existente"
780
 
781
- #@ wp-table-reloaded
782
- #: wp-table-reloaded-admin.php:1893
783
- msgid "Select existing Table to Replace"
784
- msgstr "Selecionar Tabela para Substituir"
785
 
786
- #@ wp-table-reloaded
787
- #: wp-table-reloaded-admin.php:1911
788
- msgid "File upload"
789
- msgstr "Upload de arquivo"
790
 
791
- #@ wp-table-reloaded
792
- #: wp-table-reloaded-admin.php:1912
793
- msgid "URL"
794
- msgstr "URL"
 
 
 
 
795
 
796
- #@ wp-table-reloaded
797
- #: wp-table-reloaded-admin.php:1913
798
- msgid "Manual input"
799
- msgstr "Inserção manual"
 
800
 
801
- #@ wp-table-reloaded
802
- #: wp-table-reloaded-admin.php:1914
803
- msgid "File on server"
804
- msgstr "Arquivo no servidor"
 
 
 
 
 
805
 
806
- #@ wp-table-reloaded
807
- #: wp-table-reloaded-admin.php:1926
808
- msgid "Path to file on server"
809
- msgstr "Caminho para o arquivo no servidor"
 
810
 
811
- #@ wp-table-reloaded
812
- #: wp-table-reloaded-admin.php:2360
813
- msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
814
- msgstr "Brazilian Portugues (obrigado para <a href=\"http://www.pensarics.com/\">Rics</a>)"
 
815
 
816
- #@ wp-table-reloaded
817
- #: wp-table-reloaded-admin.php:2840
818
- msgid "Do you really want to change the ID of the table?"
819
- msgstr "Você realmente deseja mudar o ID desta tabela?"
 
820
 
821
- #@ wp-table-reloaded
822
- #: wp-table-reloaded-admin.php:290
823
- #, php-format
824
- 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?"
825
- 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?"
826
 
827
- #@ wp-table-reloaded
828
- #: wp-table-reloaded-admin.php:291
829
- #, php-format
830
- 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!"
831
- 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!"
832
 
833
- #@ wp-table-reloaded
834
- #: wp-table-reloaded-admin.php:292
835
- msgid "Sure, no problem!"
836
- msgstr "Claro, sem problemas!"
837
 
838
- #@ wp-table-reloaded
839
- #: wp-table-reloaded-admin.php:293
840
- msgid "I already donated."
841
- msgstr "Eu fiz uma doação."
 
842
 
843
- #@ wp-table-reloaded
844
- #: wp-table-reloaded-admin.php:294
845
- msgid "No, thanks. Don't ask again."
846
- msgstr "Não, obrigado. Não pergunte novamente."
847
 
848
- #@ wp-table-reloaded
849
- #: wp-table-reloaded-admin.php:472
850
- msgid "Row moved successfully."
851
- msgstr "Linha movida com sucesso."
852
 
853
- #@ wp-table-reloaded
854
- #: wp-table-reloaded-admin.php:497
855
- msgid "Column moved successfully."
856
- msgstr "Coluna movida com sucesso."
857
 
858
- #@ wp-table-reloaded
859
- #: wp-table-reloaded-admin.php:623
860
- msgid "Could not add Custom Data Field, because you did not enter a name."
861
- msgstr "Não foi possível inserir o Campo de Dados Personalizado porque você não digitou um nome."
862
 
863
- #@ wp-table-reloaded
864
- #: wp-table-reloaded-admin.php:628
865
- msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
866
- 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."
867
 
868
- #@ wp-table-reloaded
869
- #: wp-table-reloaded-admin.php:634
870
- msgid "Could not add Custom Data Field, because the name contained illegal characters."
871
- msgstr "Não foi possível adicionar o Campo de Dados Personalizado porque o nome contém caracteres ilegais."
872
 
873
- #@ wp-table-reloaded
874
- #: wp-table-reloaded-admin.php:638
875
- msgid "Could not add Custom Data Field, because a Field with that name already exists."
876
- msgstr "Não foi possível adicionar o Campo de Dados Personalizado porque já existe um Campo com este nome."
877
 
878
- #@ wp-table-reloaded
879
- #: wp-table-reloaded-admin.php:644
880
- msgid "Custom Data Field added successfully."
881
- msgstr "Campo de Dados Personalizado adicionado com sucesso."
882
 
883
- #@ wp-table-reloaded
884
- #: wp-table-reloaded-admin.php:764
885
- msgid "Custom Data Field deleted successfully."
886
- msgstr "Campo de Dados Personalizado apagado com sucesso."
 
 
 
 
887
 
888
- #@ wp-table-reloaded
889
- #: wp-table-reloaded-admin.php:766
890
- msgid "Custom Data Field could not be deleted."
891
- msgstr "Campo de Dados Personalizado não pode ser apagado."
 
 
 
 
892
 
893
- #@ wp-table-reloaded
894
- #: wp-table-reloaded-admin.php:1171
895
- msgid "Because of CSS styling, the table might look different on your page!"
896
- msgstr "Por causa dos estilos CSS, a tabela pode parecer diferente na sua página!"
 
 
 
 
897
 
898
- #@ wp-table-reloaded
899
- #: wp-table-reloaded-admin.php:1185
900
- msgid "There is no table with this ID!"
901
- msgstr "Não existe tabela com este ID!"
 
 
 
 
902
 
903
- #@ wp-table-reloaded
904
- #: wp-table-reloaded-admin.php:1221
905
- msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
906
- msgstr "Muito obrigado! Sua doação é muito bem-vinda. Você acaba de contribuir para o desenvolvimento do WP-Table Reloaded!"
907
 
908
- #@ wp-table-reloaded
909
- #: wp-table-reloaded-admin.php:1256
910
- #: wp-table-reloaded-admin.php:1266
911
- #: wp-table-reloaded-admin.php:1411
912
- msgid "Last Modified"
913
- msgstr "Última Modificação"
914
 
915
- #@ wp-table-reloaded
916
- #: wp-table-reloaded-admin.php:1278
917
- msgid "(no name)"
918
- msgstr "(sem nome)"
 
 
 
 
919
 
920
- #@ wp-table-reloaded
921
- #: wp-table-reloaded-admin.php:1279
922
- msgid "(no description)"
923
- msgstr "(sem descrição)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
924
 
925
- #@ wp-table-reloaded
926
- #: wp-table-reloaded-admin.php:1283
927
- #: wp-table-reloaded-admin.php:1412
928
- msgid "by"
929
- msgstr "por"
 
 
 
 
 
 
930
 
931
- #@ wp-table-reloaded
932
- #: wp-table-reloaded-admin.php:1297
933
  #, php-format
934
- msgid "Edit %s"
935
- msgstr "Editar %s"
 
 
 
 
 
 
936
 
937
- #@ wp-table-reloaded
938
- #: wp-table-reloaded-admin.php:1301
939
- msgid "Shortcode"
940
- msgstr "Código"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
941
 
942
- #@ wp-table-reloaded
943
- #: wp-table-reloaded-admin.php:1305
944
  #, php-format
945
- msgid "Preview of Table %s"
946
- msgstr "Visualização da Tabela %s"
 
 
 
 
947
 
948
- #@ wp-table-reloaded
949
- #: wp-table-reloaded-admin.php:1306
950
- msgid "Preview"
951
- msgstr "Visualizar"
952
 
953
- #@ wp-table-reloaded
954
- #: wp-table-reloaded-admin.php:1638
955
- #: wp-table-reloaded-admin.php:1660
956
- msgid "before"
957
- msgstr "antes"
958
 
959
- #@ wp-table-reloaded
960
- #: wp-table-reloaded-admin.php:1639
961
- #: wp-table-reloaded-admin.php:1661
962
- msgid "after"
963
- msgstr "depois"
 
 
 
 
 
 
 
 
 
 
 
964
 
965
- #@ wp-table-reloaded
966
- #: wp-table-reloaded-admin.php:1642
967
  #, php-format
968
- msgid "Move row %s %s row %s"
969
- msgstr "Mover linha %s %s linha %s"
970
 
971
- #@ wp-table-reloaded
972
- #: wp-table-reloaded-admin.php:1644
973
- #: wp-table-reloaded-admin.php:1666
974
- msgid "Move"
975
- msgstr "Mover"
976
 
977
- #@ wp-table-reloaded
978
- #: wp-table-reloaded-admin.php:1664
979
  #, php-format
980
- msgid "Move column %s %s column %s"
981
- msgstr "Mover coluna %s %s coluna %s"
 
 
 
982
 
983
- #@ wp-table-reloaded
984
- #: wp-table-reloaded-admin.php:1797
985
- msgid "Custom Data Fields"
986
- msgstr "Campos de Dados Personalizados"
 
 
 
 
 
987
 
988
- #@ wp-table-reloaded
989
- #: wp-table-reloaded-admin.php:1799
990
- msgid "Custom Data Fields can be used to add extra metadata to a table."
991
- msgstr "Campos de Dados Personalizados podem ser usados para adicionar novos metadados para uma tabela."
992
 
993
- #@ wp-table-reloaded
994
- #: wp-table-reloaded-admin.php:1799
995
- msgid "For example, this could be information about the source or the creator of the data."
996
- msgstr "Por exemplo, isso poderiam ser informações sobre a origem ou o criador dos dados."
 
 
 
 
997
 
998
- #@ wp-table-reloaded
999
- #: wp-table-reloaded-admin.php:1801
1000
- #, php-format
1001
- msgid "You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1002
- msgstr "Você pode mostrar estes dados da mesma maneira que as tabelas usando o código <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
 
 
 
1003
 
1004
- #@ wp-table-reloaded
1005
- #: wp-table-reloaded-admin.php:1807
1006
- msgid "Field Name"
1007
- msgstr "Nome do Campo"
 
 
 
 
1008
 
1009
- #@ wp-table-reloaded
1010
- #: wp-table-reloaded-admin.php:1808
1011
- msgid "Value"
1012
- msgstr "Valor"
 
 
 
 
1013
 
1014
- #@ wp-table-reloaded
1015
- #: wp-table-reloaded-admin.php:1822
1016
- msgid "Delete Field"
1017
- msgstr "Apagar Campo"
1018
 
1019
- #@ wp-table-reloaded
1020
- #: wp-table-reloaded-admin.php:1824
1021
- msgid "View shortcode"
1022
- msgstr "Ver código"
1023
 
1024
- #@ wp-table-reloaded
1025
- #: wp-table-reloaded-admin.php:1833
1026
- msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
1027
- msgstr "Para adicionar um novo Campo de Dados Personalizado, digite seu nome (somente letras minúsculas, números, _ e -)."
 
 
 
 
1028
 
1029
- #@ wp-table-reloaded
1030
- #: wp-table-reloaded-admin.php:1834
1031
- msgid "Custom Data Field Name"
1032
- msgstr "Nome do Campo de Dados Personalizado"
1033
 
1034
- #@ wp-table-reloaded
1035
- #: wp-table-reloaded-admin.php:2033
1036
- msgid "Be aware that only the table data, but no options or settings are exported."
1037
- msgstr "Esteja ciente de que apenas a tabela de dados, sem opções ou configurações, será exportada."
 
 
 
 
 
1038
 
1039
- #@ wp-table-reloaded
1040
- #: wp-table-reloaded-admin.php:2284
1041
- msgid "Be very careful with this and only click the button if you know what you are doing!"
1042
- msgstr "Tenha muito cuidado com isso e apenas clique no botão se você sabe o que está fazendo!"
 
 
 
 
1043
 
1044
- #@ wp-table-reloaded
1045
- #: wp-table-reloaded-admin.php:2310
1046
- msgid "About WP-Table Reloaded"
1047
- msgstr "Sobre o WP-Table Reloaded"
1048
 
1049
- #@ wp-table-reloaded
1050
- #: wp-table-reloaded-admin.php:2362
1051
- msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
1052
- msgstr "Japão (obrigado <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
1053
 
1054
- #@ wp-table-reloaded
1055
- #: wp-table-reloaded-admin.php:2377
1056
  msgid "Plugin installed"
1057
  msgstr "Plugin instalado"
1058
 
1059
- #@ wp-table-reloaded
1060
- #: wp-table-reloaded-admin.php:2821
1061
- msgid "To insert an image, click the cell into which you want to insert the image."
1062
- msgstr "Para inserir uma imagem, clique na célula dentro da qual pretente inserir a imagem."
 
 
 
 
1063
 
1064
- #@ wp-table-reloaded
1065
- #: wp-table-reloaded-admin.php:2821
1066
- msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
1067
- msgstr "A Biblioteca de Mídia irá abrir, a partir da qual você pode selecionar a imagem desejada ou inserir o URL da imagem."
1068
 
1069
- #: wp-table-reloaded-admin.php:2821
1070
- msgid "Insert into Post"
1071
- msgstr ""
 
 
 
 
1072
 
1073
- #@ wp-table-reloaded
1074
- #: wp-table-reloaded-admin.php:2841
1075
- msgid "To show this Custom Data Field, use this shortcode:"
1076
- msgstr "Para mostrar este Campo de Dados Personalizado use este código:"
1077
 
1078
- #@ wp-table-reloaded
1079
- #: wp-table-reloaded-admin.php:2842
1080
- msgid "To show this table, use this shortcode:"
1081
- msgstr "Para mostrar esta tabela, use este código:"
 
 
 
1082
 
1083
- #@ wp-table-reloaded
1084
- #: php/wp-table-reloaded-helper.class.php:143
1085
- msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
1086
- msgstr "Obrigado por usar o a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
1087
-
1088
- #@ wp-table-reloaded
1089
- #: php/wp-table-reloaded-helper.class.php:66
1090
- #: php/wp-table-reloaded-helper.class.php:69
1091
- #: php/wp-table-reloaded-helper.class.php:72
1092
- #: php/wp-table-reloaded-helper.class.php:75
1093
- #: php/wp-table-reloaded-helper.class.php:78
1094
- #: php/wp-table-reloaded-helper.class.php:81
1095
- #: php/wp-table-reloaded-helper.class.php:84
1096
- #, php-format
1097
- msgid "This is the &quot;%s&quot; screen."
1098
- msgstr "Esta é a tela &quot;%s&quot;."
1099
-
1100
- #@ wp-table-reloaded
1101
- #: php/wp-table-reloaded-helper.class.php:69
1102
- #: wp-table-reloaded-admin.php:2108
1103
- #: wp-table-reloaded-admin.php:2159
1104
- #: wp-table-reloaded-admin.php:2171
1105
- #: wp-table-reloaded-admin.php:2175
1106
- msgid "Edit Table"
1107
- msgstr "Editar Tabela"
1108
 
1109
- #@ wp-table-reloaded
1110
- #: php/wp-table-reloaded-helper.class.php:84
1111
- #: wp-table-reloaded-admin.php:2410
1112
- msgid "About the plugin"
1113
- msgstr "Sobre o plugin"
1114
 
1115
- #@ wp-table-reloaded
1116
- #: php/wp-table-reloaded-helper.class.php:96
1117
- #: wp-table-reloaded-admin.php:2333
1118
- #, php-format
1119
- msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
1120
- msgstr "Mais informações sobre o WP-Table Reloaded podem ser encontradas no <a href=\"%s\">website do plugin</a> ou na sua página no <a href=\"%s\">Diretório de Plugins do WordPress</a> (em inglês)."
1121
 
1122
- #@ wp-table-reloaded
1123
- #: php/wp-table-reloaded-helper.class.php:97
1124
- #: wp-table-reloaded-admin.php:2333
1125
- #, php-format
1126
- msgid "For technical information, see the <a href=\"%s\">documentation</a>."
1127
- msgstr "Para informações técnicas, veja a <a href=\"%s\">documentação</a>."
1128
 
1129
- #@ wp-table-reloaded
1130
- #: php/wp-table-reloaded-helper.class.php:98
1131
- #: wp-table-reloaded-admin.php:2340
1132
- #, php-format
1133
- msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
1134
- msgstr "O <a href=\"%s\">Suporte</a> é oferecido através dos <a href=\"%s\">Fóruns de Suporte do WordPress</a>."
1135
 
1136
- #@ wp-table-reloaded
1137
- #: php/wp-table-reloaded-helper.class.php:99
1138
- #: wp-table-reloaded-admin.php:2340
1139
- #, php-format
1140
- msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
1141
- msgstr "Antes de solicitar o suporte, por favor, leia atentamente as <a href=\"%s\">Perguntas Mais Frequentes</a>, onde você provavelmente encontrará a resposta para a maioria das suas dúvidas e faça também uma busca nos fóruns."
1142
 
1143
- #@ wp-table-reloaded
1144
- #: php/wp-table-reloaded-helper.class.php:100
1145
- #: wp-table-reloaded-admin.php:2347
1146
  #, php-format
1147
- msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
1148
- msgstr "Se você gostou do plugin, considere <a href=\"%s\"><strong>uma doação</strong></a>."
 
 
 
 
 
 
1149
 
1150
- #@ wp-table-reloaded
1151
- #: php/wp-table-reloaded-helper.class.php:143
1152
- #, php-format
1153
- msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
1154
- msgstr "Apóie o plugin com a sua <a href=\"%s\">doação</a>!"
1155
 
1156
- #@ wp-table-reloaded
1157
- #: wp-table-reloaded-admin.php:271
1158
- #, php-format
1159
- msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
1160
- msgstr "Bem vindo ao WP-Table Reloaded %s. Se você tiver qualquer dúvida ou problema, por favor, veja o <a href=\"%s\">FAQ</a>, a <a href=\"%s\">documentação</a> e a seção de <a href=\"%s\">suporte</a>."
 
1161
 
1162
- #@ wp-table-reloaded
1163
- #: wp-table-reloaded-admin.php:275
1164
- #, php-format
1165
- msgid "Thank you for upgrading to WP-Table Reloaded %s."
1166
- msgstr "Obrigado por atualizar para o WP-Table Reloaded %s."
1167
 
1168
- #@ wp-table-reloaded
1169
- #: wp-table-reloaded-admin.php:275
1170
- msgid "This version adds support for the DataTables JavaScript library (with features like sorting, pagination, and filtering) and includes a lot more enhancements."
1171
- msgstr "Esta versão adiciona suporte à biblioteca DataTables JavaScript (com funções de classificação, paginação e filtros) e inclui muitas outras melhorias."
1172
 
1173
- #@ wp-table-reloaded
1174
- #: wp-table-reloaded-admin.php:275
1175
- #, php-format
1176
- msgid "Please read the <a href=\"%s\">release announcement</a> for more information and check your settings in the <a href=\"%s\">%s</a>."
1177
- msgstr "Por favor, leia as <a href=\"%s\">notas de versão (release announcement)</a> para mais informações e verifique suas configurações em <a href=\"%s\">%s</a>."
1178
 
1179
- #@ wp-table-reloaded
1180
- #: wp-table-reloaded-admin.php:275
1181
- #, php-format
1182
- msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
1183
- msgstr "Se você gostou das novas funcionalidades e melhorias, considere uma pequena <a href=\"%s\">doação</a>. Obrigado."
1184
 
1185
- #@ wp-table-reloaded
1186
- #: wp-table-reloaded-admin.php:282
1187
- msgid "Hide this message"
1188
- msgstr "Esconder esta mensagem"
1189
 
1190
- #@ wp-table-reloaded
1191
- #: wp-table-reloaded-admin.php:320
1192
- #, php-format
1193
- msgid "Table &quot;%s&quot; added successfully."
1194
- msgstr "Tabela &quot;%s&quot; adicionada com sucesso."
 
 
 
1195
 
1196
- #@ wp-table-reloaded
1197
- #: wp-table-reloaded-admin.php:505
1198
- msgid "Row could not be deleted."
1199
- msgid_plural "Rows could not be deleted."
1200
- msgstr[0] "A linha não pôde ser apagada."
1201
- msgstr[1] "As linhas não puderam ser apagadas."
1202
 
1203
- #@ wp-table-reloaded
1204
- #: wp-table-reloaded-admin.php:514
1205
- msgid "Row deleted successfully."
1206
- msgid_plural "Rows deleted successfully."
1207
- msgstr[0] "A linha foi apagada com sucesso."
1208
- msgstr[1] "As linhas foram apagadas com sucesso."
1209
 
1210
- #@ wp-table-reloaded
1211
- #: wp-table-reloaded-admin.php:524
1212
- msgid "Column could not be deleted."
1213
- msgid_plural "Columns could not be deleted."
1214
- msgstr[0] "A coluna não pôde ser apagada."
1215
- msgstr[1] "As colunas não puderam ser apagadas."
1216
 
1217
- #@ wp-table-reloaded
1218
- #: wp-table-reloaded-admin.php:537
1219
- msgid "Column deleted successfully."
1220
- msgid_plural "Columns deleted successfully."
1221
- msgstr[0] "A coluna foi apagada com sucesso."
1222
- msgstr[1] "As colunas foram apagadas com sucesso."
1223
 
1224
- #@ wp-table-reloaded
1225
- #: wp-table-reloaded-admin.php:560
1226
- msgid "Row inserted successfully."
1227
- msgid_plural "Rows inserted successfully."
1228
- msgstr[0] "Linha adicionada com sucesso."
1229
- msgstr[1] "Linhas adicionadas com sucesso."
1230
 
1231
- #@ wp-table-reloaded
1232
- #: wp-table-reloaded-admin.php:587
1233
- msgid "Column inserted successfully."
1234
- msgid_plural "Columns inserted successfully."
1235
- msgstr[0] "Coluna adicionada com sucesso."
1236
- msgstr[1] "Colunas adicionadas com sucesso."
1237
 
1238
- #@ wp-table-reloaded
1239
- #: wp-table-reloaded-admin.php:740
1240
- #, php-format
1241
- msgid "Table &quot;%s&quot; copied successfully."
1242
- msgstr "Tabela &quot;%s&quot; copiada com sucesso."
1243
 
1244
- #@ wp-table-reloaded
1245
- #: wp-table-reloaded-admin.php:756
1246
- #, php-format
1247
- msgid "Table &quot;%s&quot; deleted successfully."
1248
- msgstr "Tabela &quot;%s&quot; apagada com sucesso."
1249
 
1250
- #@ wp-table-reloaded
1251
- #: wp-table-reloaded-admin.php:890
1252
- #: wp-table-reloaded-admin.php:1062
1253
- msgid "You do not have sufficient rights to perform this action."
1254
- msgstr "Você não tem permissão para executar essa ação."
1255
 
1256
- #@ wp-table-reloaded
1257
- #: wp-table-reloaded-admin.php:897
1258
- msgid "You did not upload a WP-Table Reloaded dump file."
1259
- msgstr "Você não fez o upload do arquivo de dump do WP-Table Reloaded."
1260
 
1261
- #@ wp-table-reloaded
1262
- #: wp-table-reloaded-admin.php:906
1263
- msgid "The uploaded dump file is empty. Please upload a valid dump file."
1264
- msgstr "O arquivo de dump enviado está vazio. Por favor, envie um arquivo de dump válido."
1265
 
1266
- #@ wp-table-reloaded
1267
- #: wp-table-reloaded-admin.php:935
1268
- msgid "All Tables, Settings and Options were successfully imported."
1269
- msgstr "Todas as Tabelas, Configurações e Opções foram importadas com sucesso."
1270
 
1271
- #@ wp-table-reloaded
1272
- #: wp-table-reloaded-admin.php:962
1273
  #, php-format
1274
- msgid "Table &quot;%s&quot; exported successfully."
1275
- msgstr "Tabela &quot;%s&quot; exportada com sucesso."
1276
 
1277
- #@ wp-table-reloaded
1278
- #: wp-table-reloaded-admin.php:1003
1279
- #: wp-table-reloaded-admin.php:2299
1280
- msgid "You do not have sufficient rights to access the Plugin Options."
1281
- msgstr "Você não tem permissão para acessar as opções do plugin."
 
 
 
 
 
 
 
 
 
 
 
1282
 
1283
- #@ wp-table-reloaded
1284
- #: wp-table-reloaded-admin.php:1098
1285
  #, php-format
1286
- msgid "Click the &quot;%s&quot; link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
1287
- msgstr "Clique no link &quot;%s&quot; depois da tabela desejada e o código correspondente será inserido no editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
1288
-
1289
- #@ wp-table-reloaded
1290
- #: wp-table-reloaded-admin.php:1147
1291
- #: wp-table-reloaded-admin.php:1327
1292
- #: wp-table-reloaded-admin.php:2094
1293
- #: wp-table-reloaded-admin.php:2926
1294
- msgid "No tables were found."
1295
- msgstr "Nenhuma tabela foi encontrada."
1296
 
1297
- #@ wp-table-reloaded
1298
- #: wp-table-reloaded-admin.php:1167
1299
  #, php-format
1300
- msgid "Preview of Table &quot;%s&quot; (ID %s)"
1301
- msgstr "Amostra da Tabela &quot;%s&quot; (ID %s)"
 
1302
 
1303
- #@ wp-table-reloaded
1304
- #: wp-table-reloaded-admin.php:1170
1305
- msgid "This is a preview of your table."
1306
- msgstr "Esta é uma amostra da sua tabela."
1307
 
1308
- #@ wp-table-reloaded
1309
- #: wp-table-reloaded-admin.php:1171
1310
- msgid "The JavaScript libraries are also not available in this preview."
1311
- msgstr "As bibliotecas JavaScript também não estão disponíveis nessa amostra."
1312
 
1313
- #@ wp-table-reloaded
1314
- #: wp-table-reloaded-admin.php:1172
1315
- #: wp-table-reloaded-admin.php:1241
1316
- #: wp-table-reloaded-admin.php:1388
1317
- #: wp-table-reloaded-admin.php:2325
1318
- #, php-format
1319
- msgid "To insert the table into a page, post or text-widget, copy the shortcode <strong>[table id=%s /]</strong> and paste it into the corresponding place in the editor."
1320
- msgstr "Para inserir uma tabela em uma página, post ou widget de texto, copie o código <strong>[table id=%s /]</strong> e cole no lugar desejado no editor."
1321
 
1322
- #@ wp-table-reloaded
1323
- #: wp-table-reloaded-admin.php:1223
1324
- #, php-format
1325
- 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 &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
1326
- msgstr "Sem problemas! Eu ainda desejo que você aproveite os benefícios que o WP-Table Reloaded traz à você. Se mudar de idéia, você sempre encontrará o botão &quot;%s&quot; no <a href=\"%s\">site do WP-Table Reloaded</a>."
1327
 
1328
- #@ wp-table-reloaded
1329
- #: wp-table-reloaded-admin.php:1223
1330
- #: wp-table-reloaded-admin.php:2779
1331
- #: wp-table-reloaded-admin.php:2791
1332
- msgid "Donate"
1333
- msgstr "Contribua"
1334
 
1335
- #@ wp-table-reloaded
1336
- #: wp-table-reloaded-admin.php:1241
1337
- msgid "You may add, edit, copy, delete or preview tables here."
1338
- msgstr "Você poderá adicionar, editar, copiar, apagar ou ver uma amostra das tabelas aqui."
1339
 
1340
- #@ wp-table-reloaded
1341
- #: wp-table-reloaded-admin.php:1241
1342
- msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
1343
- msgstr "Cada tabela tem um ID único que precisa ser substituído nesse código."
 
 
 
 
 
 
 
1344
 
1345
- #@ wp-table-reloaded
1346
- #: wp-table-reloaded-admin.php:1241
1347
  #, php-format
1348
- msgid "You can also click the button &quot;%s&quot; in the editor toolbar to select and insert a table."
1349
- msgstr "Você também pode clicar no botão &quot;%s&quot; no editor para selecionar e inserir uma tabela."
 
1350
 
1351
- #@ wp-table-reloaded
1352
- #: wp-table-reloaded-admin.php:1327
1353
- #: wp-table-reloaded-admin.php:2094
1354
  #, php-format
1355
- msgid "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to get started!"
1356
- msgstr "Você deve <a href=\"%s\">adicionar</a> ou <a href=\"%s\">importar</a> uma tabela para começar."
1357
-
1358
- #@ wp-table-reloaded
1359
- #: wp-table-reloaded-admin.php:1341
1360
- msgid "To add a new table, enter its name, a description (optional) and the number of rows and columns."
1361
- msgstr "Para adicionar uma nova tabela, digite seu nome, uma descrição (opcional) e o número de linhas e colunas."
1362
 
1363
- #@ wp-table-reloaded
1364
- #: wp-table-reloaded-admin.php:1341
1365
- msgid "You may also add, insert or delete rows and columns later."
1366
- msgstr "Você também poderá inserir ou apagar linhas e colunas depois."
1367
 
1368
- #@ wp-table-reloaded
1369
- #: wp-table-reloaded-admin.php:1384
1370
  #, php-format
1371
- msgid "Edit Table &quot;%s&quot; (ID %s)"
1372
- msgstr "Editar tabela &quot;%s&quot; (ID %s)"
1373
 
1374
- #@ wp-table-reloaded
1375
- #: wp-table-reloaded-admin.php:1387
1376
- msgid "On this page, you can edit the content of the table."
1377
- msgstr "Nesta página você poderá editar o conteúdo da tabela."
 
1378
 
1379
- #@ wp-table-reloaded
1380
- #: wp-table-reloaded-admin.php:1387
1381
- msgid "It is also possible to change the table structure by inserting, deleting, moving, and swapping columns and rows."
1382
- msgstr "Também é possível mudar a estrutura da tabela inserindo, apagando, movendo e reorganizando colunas e linhas."
1383
-
1384
- #@ wp-table-reloaded
1385
- #: wp-table-reloaded-admin.php:1394
1386
- #: wp-table-reloaded-admin.php:1430
1387
- #: wp-table-reloaded-admin.php:1483
1388
- #: wp-table-reloaded-admin.php:1684
1389
- #: wp-table-reloaded-admin.php:1745
1390
- #: wp-table-reloaded-admin.php:1797
1391
- #: wp-table-reloaded-admin.php:2123
1392
- #: wp-table-reloaded-admin.php:2166
1393
- #: wp-table-reloaded-admin.php:2183
1394
- #: wp-table-reloaded-admin.php:2251
1395
- #: wp-table-reloaded-admin.php:2262
1396
- #: wp-table-reloaded-admin.php:2371
1397
- msgid "Hide|expand"
1398
- msgstr "Esconder|expand"
1399
-
1400
- #@ wp-table-reloaded
1401
- #: wp-table-reloaded-admin.php:1394
1402
- #: wp-table-reloaded-admin.php:1430
1403
- #: wp-table-reloaded-admin.php:1483
1404
- #: wp-table-reloaded-admin.php:1684
1405
- #: wp-table-reloaded-admin.php:1745
1406
- #: wp-table-reloaded-admin.php:1797
1407
- #: wp-table-reloaded-admin.php:2123
1408
- #: wp-table-reloaded-admin.php:2166
1409
- #: wp-table-reloaded-admin.php:2183
1410
- #: wp-table-reloaded-admin.php:2251
1411
- #: wp-table-reloaded-admin.php:2262
1412
- #: wp-table-reloaded-admin.php:2371
1413
- msgctxt "expand"
1414
- msgid "Hide"
1415
- msgstr "Esconder"
1416
 
1417
- #@ wp-table-reloaded
1418
- #: wp-table-reloaded-admin.php:1520
1419
- #: wp-table-reloaded-admin.php:1558
1420
- msgid "Selected rows:"
1421
- msgstr "Linhas selecionadas:"
1422
-
1423
- #@ wp-table-reloaded
1424
- #: wp-table-reloaded-admin.php:1511
1425
- #: wp-table-reloaded-admin.php:1527
1426
- msgid "Hide|item"
1427
- msgstr "Esconder|item"
1428
-
1429
- #@ wp-table-reloaded
1430
- #: wp-table-reloaded-admin.php:1511
1431
- #: wp-table-reloaded-admin.php:1527
1432
- msgctxt "item"
1433
- msgid "Hide"
1434
- msgstr "Esconder"
1435
 
1436
- #@ wp-table-reloaded
1437
- #: wp-table-reloaded-admin.php:1512
1438
- #: wp-table-reloaded-admin.php:1528
1439
- msgid "Unhide|item"
1440
- msgstr "Mostrar|item"
1441
 
1442
- #@ wp-table-reloaded
1443
- #: wp-table-reloaded-admin.php:1512
1444
- #: wp-table-reloaded-admin.php:1528
1445
- msgctxt "item"
1446
- msgid "Unhide"
1447
- msgstr "Mostrar"
1448
 
1449
- #@ wp-table-reloaded
1450
- #: wp-table-reloaded-admin.php:1536
1451
- #: wp-table-reloaded-admin.php:1574
1452
- msgid "Selected columns:"
1453
- msgstr "Colunas selecionadas:"
1454
 
1455
- #@ wp-table-reloaded
1456
- #: wp-table-reloaded-admin.php:1549
1457
- msgid "Insert row"
1458
- msgstr "Inserir linha"
1459
 
1460
- #@ wp-table-reloaded
1461
- #: wp-table-reloaded-admin.php:1565
1462
- msgid "Insert column"
1463
- msgstr "Inserir coluna"
 
1464
 
1465
- #@ wp-table-reloaded
1466
- #: wp-table-reloaded-admin.php:1684
1467
  msgid "Table Styling Options"
1468
  msgstr "Opções de Estilo da Tabela"
1469
 
1470
- #@ wp-table-reloaded
1471
- #: wp-table-reloaded-admin.php:1690
 
 
 
 
 
 
 
 
 
 
1472
  msgid "Every second row has an alternating background color."
1473
  msgstr "Cada segunda linha tem uma cor alternada de fundo."
1474
 
1475
- #@ wp-table-reloaded
1476
- #: wp-table-reloaded-admin.php:1693
 
 
 
 
 
 
 
 
 
 
 
 
1477
  msgid "Table head"
1478
  msgstr "Cabeçalho da tabela"
1479
 
1480
- #@ wp-table-reloaded
1481
- #: wp-table-reloaded-admin.php:1694
1482
- msgid "The first row of your table is the table head (HTML tag &lt;th&gt;)."
 
 
 
1483
  msgstr "A primeira linha da sua tabela é o cabeçalho (Tag HTML &lt;th&gt;)."
1484
 
1485
- #@ wp-table-reloaded
1486
- #: wp-table-reloaded-admin.php:1697
1487
  msgid "Table footer"
1488
  msgstr "Rodapé da tabela"
1489
 
1490
- #@ wp-table-reloaded
1491
- #: wp-table-reloaded-admin.php:1698
1492
- msgid "The last row of your table is the table footer (HTML tag &lt;th&gt;)."
 
 
 
1493
  msgstr "A última linha da sua tabela é o rodapé (Tag HTML &lt;th&gt;)."
1494
 
1495
- #@ wp-table-reloaded
1496
- #: wp-table-reloaded-admin.php:1702
1497
- msgid "The Table Name will be written above the table (HTML tag &lt;h2&gt;)."
 
 
 
 
 
 
 
 
 
1498
  msgstr "O Nome da Tabela será escrito acima da tabela (tag HTML &lt;h2&gt;)."
1499
 
1500
- #@ wp-table-reloaded
1501
- #: wp-table-reloaded-admin.php:1705
1502
  msgid "Table Description"
1503
  msgstr "Descrição da Tabela"
1504
 
1505
- #@ wp-table-reloaded
1506
- #: wp-table-reloaded-admin.php:1709
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1507
  msgid "Use JavaScript library"
1508
  msgstr "Usar biblioteca JavaScript"
1509
 
1510
- #@ wp-table-reloaded
1511
- #: wp-table-reloaded-admin.php:1715
1512
- #: wp-table-reloaded-admin.php:1719
1513
- #: wp-table-reloaded-admin.php:1731
1514
  msgid "You can change further settings for this library below."
1515
- msgstr "Você pode alterar as configurações adicionais para esta biblioteca abaixo."
 
1516
 
1517
- #@ wp-table-reloaded
1518
- #: wp-table-reloaded-admin.php:1723
1519
- #: wp-table-reloaded-admin.php:1727
1520
  msgid "The table will then be sortable by the visitor."
1521
  msgstr "A tabela será então classificável pelo visitante."
1522
 
1523
- #@ wp-table-reloaded
1524
- #: wp-table-reloaded-admin.php:1734
1525
  #, php-format
1526
  msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
1527
  msgstr "Sim, use o &quot;% s&quot; biblioteca JavaScript com essa tabela."
1528
 
1529
- #@ wp-table-reloaded
1530
- #: wp-table-reloaded-admin.php:1734
1531
  #, php-format
1532
- msgid "You must enable the use of a JavaScript library on the &quot;%s&quot; screen first."
1533
- msgstr "Você deve habilitar o uso de uma biblioteca JavaScript na tela &quot;%s&quot; primeiro."
 
 
 
 
1534
 
1535
- #@ wp-table-reloaded
1536
- #: wp-table-reloaded-admin.php:1745
1537
  msgid "DataTables JavaScript Features"
1538
  msgstr "Funcionalidades JavaScript DataTables"
1539
 
1540
- #@ wp-table-reloaded
1541
- #: wp-table-reloaded-admin.php:1747
1542
- msgid "You can enable certain features for the DataTables JavaScript library here."
1543
- msgstr "Você pode ativar certos recursos para a biblioteca JavaScript DataTables aqui."
 
 
 
1544
 
1545
- #@ wp-table-reloaded
1546
- #: wp-table-reloaded-admin.php:1747
1547
- msgid "More information on these features can be found on the <a href=\"http://www.datatables.net/\">DataTables website</a>."
1548
- msgstr "Mais informações sobre esses recursos podem ser encontrados no <a href=\"http://www.datatables.net/\">site do DataTables</a>."
 
 
 
 
1549
 
1550
- #@ wp-table-reloaded
1551
- #: wp-table-reloaded-admin.php:1749
1552
  #, php-format
1553
- msgid "You can currently not change these options, because you have not enabled the &quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript library on the &quot;%s&quot; screen."
1554
- msgstr "Você não pode mudar estas opções no momento, porque você não habilitou o &quot;DataTables&quot; ou a biblioteca JavaScript &quot;DataTables+TableTools&quot; na tela &quot;%s&quot;"
 
 
 
 
 
 
1555
 
1556
- #@ wp-table-reloaded
1557
- #: wp-table-reloaded-admin.php:1749
1558
- msgid "It is not possible to use these features with the &quot;Tablesorter&quot; or &quot;Tablesorter Extended&quot; libraries."
1559
- msgstr "Não é possível usar essas funcionalidades com as bibliotecas &quot;Tablesorter&quot; ou &quot;Tablesorter Extended&quot;."
 
 
 
 
1560
 
1561
- #@ wp-table-reloaded
1562
- #: wp-table-reloaded-admin.php:1753
1563
  msgid "Sorting"
1564
  msgstr "Organizando"
1565
 
1566
- #@ wp-table-reloaded
1567
- #: wp-table-reloaded-admin.php:1754
1568
  msgid "Yes, enable sorting of table data by the visitor."
1569
  msgstr "Sim, ativar a classificação dos dados da tabela pelo visitante."
1570
 
1571
- #@ wp-table-reloaded
1572
- #: wp-table-reloaded-admin.php:1757
1573
  msgid "Pagination"
1574
  msgstr "Paginação"
1575
 
1576
- #@ wp-table-reloaded
1577
- #: wp-table-reloaded-admin.php:1758
1578
- msgid "Yes, enable pagination of the table (showing only a certain number of rows) by the visitor."
1579
- msgstr "Sim, ativar paginação da tabela (mostrando apenas um determinado número de linhas) pelo visitante."
 
 
 
 
 
 
 
 
 
 
1580
 
1581
- #@ wp-table-reloaded
1582
- #: wp-table-reloaded-admin.php:1761
1583
  msgid "Length Change"
1584
  msgstr "Mudança de Tamanho"
1585
 
1586
- #@ wp-table-reloaded
1587
- #: wp-table-reloaded-admin.php:1762
1588
- msgid "Yes, allow visitor to change the number of rows shown when using pagination."
1589
- msgstr "Sim, permitir que visitantes para alterar o número de linhas mostradas pelo uso da paginação."
 
 
 
 
 
1590
 
1591
- #@ wp-table-reloaded
1592
- #: wp-table-reloaded-admin.php:1765
1593
- msgid "Filtering"
 
1594
  msgstr "Filtragem"
1595
 
1596
- #@ wp-table-reloaded
1597
- #: wp-table-reloaded-admin.php:1766
1598
- msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
1599
- msgstr "Sim, ativar o visitante para filtrar ou pesquisar na tabela. Apenas as linhas com a palavra de pesquisa neles são mostradas."
 
 
 
 
1600
 
1601
- #@ wp-table-reloaded
1602
- #: wp-table-reloaded-admin.php:1769
1603
  msgid "Info Bar"
1604
  msgstr "Barra de Informações"
1605
 
1606
- #@ wp-table-reloaded
1607
- #: wp-table-reloaded-admin.php:1770
1608
- msgid "Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering."
1609
- msgstr "Sim, mostrar o ecrã de informação da tabela. Esta informação mostra e estatísticas sobre os dados visíveis no momento, incluindo filtragem."
 
 
 
 
1610
 
1611
- #@ wp-table-reloaded
1612
- #: wp-table-reloaded-admin.php:1773
1613
  msgid "TableTools"
1614
  msgstr "TableTools "
1615
 
1616
- #@ wp-table-reloaded
1617
- #: wp-table-reloaded-admin.php:1775
1618
- msgid "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save to XLS, Print Table) for this table."
1619
- msgstr "Sim, ativar as funções TableTools (Copiar para Memória, Salvar para CSV, Salvar para XLS, Imprimir Tabela) para essa tabela."
 
 
 
 
1620
 
1621
- #@ wp-table-reloaded
1622
- #: wp-table-reloaded-admin.php:1776
1623
- msgid "This option can only be used with the &quot;DataTables+TableTools&quot; JavaScript library."
1624
- msgstr "Essa opção pode ser usada com a biblioteca JavaScript &quot;DataTables+TableTools&quot;."
 
 
 
 
1625
 
1626
- #@ wp-table-reloaded
1627
- #: wp-table-reloaded-admin.php:1780
1628
  msgid "Custom Commands"
1629
  msgstr "Comandos personalizados"
1630
 
1631
- #@ wp-table-reloaded
1632
- #: wp-table-reloaded-admin.php:1781
1633
- msgid "Enter additional DataTables JavaScript parameters that will be included with the script call here."
1634
- msgstr "Digite DataTables JavaScript parâmetros adicionais que serão incluídos com a chamada script aqui."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1635
 
1636
- #@ wp-table-reloaded
1637
- #: wp-table-reloaded-admin.php:1781
1638
- msgid "For advanced use only. Read the <a href=\"http://www.datatables.net/\">DataTables documentation</a> before."
1639
- msgstr "Para uso avançado somente. Leia a <a href=\"http://www.datatables.net/\">documentação do DataTables</a> antes."
 
 
 
 
 
1640
 
1641
- #@ wp-table-reloaded
1642
- #: wp-table-reloaded-admin.php:1868
1643
  msgid "WP-Table Reloaded can import tables from existing data."
1644
  msgstr "WP-Table Reloaded pode importar tabelas a partir de dados existentes."
1645
 
1646
- #@ wp-table-reloaded
1647
- #: wp-table-reloaded-admin.php:1868
1648
  msgid "This may be a CSV, XML or HTML file, each with a certain structure."
1649
  msgstr "Este pode ser um CSV, XML ou HTML, cada um com uma certa estrutura."
1650
 
1651
- #@ wp-table-reloaded
1652
- #: wp-table-reloaded-admin.php:1868
1653
- msgid "To import an existing table, please select its format and the source for the import."
1654
- msgstr "Para importar uma tabela existente, selecione o seu formato e fonte para a importação."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1655
 
1656
- #@ wp-table-reloaded
1657
- #: wp-table-reloaded-admin.php:1868
1658
- msgid "You can also decide, if you want to import it as a new table or replace an existing table."
1659
- msgstr "Você também pode decidir, se você quer importá-lo como uma nova tabela ou substituir uma tabela existente."
1660
 
1661
- #@ wp-table-reloaded
1662
- #: wp-table-reloaded-admin.php:1909
1663
  msgid "Select source for Import"
1664
  msgstr "Selecione uma fonte para a Importação"
1665
 
1666
- #@ wp-table-reloaded
1667
- #: wp-table-reloaded-admin.php:1922
1668
- msgid "URL to Import Table from"
1669
- msgstr "URL para importar a tabela"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1670
 
1671
- #@ wp-table-reloaded
1672
- #: wp-table-reloaded-admin.php:2033
1673
- msgid "It is recommended to export and backup the data of important tables regularly."
1674
- msgstr "Recomenda-se para exportar e fazer backup dos dados de tabelas importantes regularmente."
1675
 
1676
- #@ wp-table-reloaded
1677
- #: wp-table-reloaded-admin.php:2033
1678
- msgid "Select the table, the desired export format and (for CSV only) a delimiter."
1679
- msgstr "Selecione a tabela, o formato desejado e de exportação (para CSV apenas) um delimitador."
1680
 
1681
- #@ wp-table-reloaded
1682
- #: wp-table-reloaded-admin.php:2033
1683
- msgid "You may choose to download the export file. Otherwise it will be shown on this page."
1684
- msgstr "Você pode optar por baixar o arquivo de exportação. Caso contrário, ele será mostrado nesta página."
1685
 
1686
- #@ wp-table-reloaded
1687
- #: wp-table-reloaded-admin.php:2033
1688
  #, php-format
1689
- msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
1690
- msgstr "Para fazer backup de todas as tabelas, incluindo as suas definições, uma vez usar o &quot;%s&quot; no botão &quot;%s&quot;."
1691
 
1692
- #@ wp-table-reloaded
1693
- #: wp-table-reloaded-admin.php:2033
1694
- #: wp-table-reloaded-admin.php:2256
1695
- msgid "Create and Download Dump File"
1696
- msgstr "Criar e Baixe o arquivo de Dump"
1697
 
1698
- #@ wp-table-reloaded
1699
- #: wp-table-reloaded-admin.php:2073
1700
- msgid "Only needed for CSV export."
1701
- msgstr " é necessário para exportação CSV."
 
 
 
 
 
1702
 
1703
- #@ wp-table-reloaded
1704
- #: wp-table-reloaded-admin.php:2107
1705
- msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
1706
- msgstr "WP-Table Reloaded tem várias opções que afetam o comportamento plugin em diferentes áreas."
 
 
 
 
1707
 
1708
- #@ wp-table-reloaded
1709
- #: wp-table-reloaded-admin.php:2108
1710
- msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
1711
- msgstr "Opções Frontend influenciar a produção e os recursos utilizados em páginas de quadros, mensagens de texto ou widgets."
 
 
 
 
1712
 
1713
- #@ wp-table-reloaded
1714
- #: wp-table-reloaded-admin.php:2108
1715
  #, php-format
1716
- msgid "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; screen."
1717
- msgstr "Opções da área de Infra-Estrutura de controle do plugin admin, por exemplo, o &quot;%s&quot; tela."
 
 
 
 
1718
 
1719
- #@ wp-table-reloaded
1720
- #: wp-table-reloaded-admin.php:2108
 
 
 
 
 
 
1721
  msgid "Administrators have access to further Admin Options."
1722
  msgstr "Os administradores têm acesso a novas Admin Options."
1723
 
1724
- #@ wp-table-reloaded
1725
- #: wp-table-reloaded-admin.php:2127
 
 
 
 
 
1726
  msgid "JavaScript library"
1727
  msgstr "Biblioteca JavaScript"
1728
 
1729
- #@ wp-table-reloaded
1730
- #: wp-table-reloaded-admin.php:2128
1731
  msgid "Yes, enable the use of a JavaScript library."
1732
  msgstr "Sim, permitir a utilização de uma biblioteca JavaScript."
1733
 
1734
- #@ wp-table-reloaded
1735
- #: wp-table-reloaded-admin.php:2128
1736
- msgid "WP-Table Reloaded includes three JavaScript libraries that can add useful features, like sorting, pagination, and filtering, to a table."
1737
- msgstr "WP-Table Reloaded inclui três bibliotecas JavaScript que podem adicionar funcionalidades úteis, como a classificação, paginação, e filtragem, a uma tabela."
 
 
 
 
 
1738
 
1739
- #@ wp-table-reloaded
1740
- #: wp-table-reloaded-admin.php:2132
1741
  msgid "Select the library to use:"
1742
  msgstr "Selecione a biblioteca para uso:"
1743
 
1744
- #@ wp-table-reloaded
1745
- #: wp-table-reloaded-admin.php:2133
1746
- #: wp-table-reloaded-admin.php:2213
1747
  msgid "recommended"
1748
  msgstr "recomendado"
1749
 
1750
- #@ wp-table-reloaded
1751
- #: wp-table-reloaded-admin.php:2137
1752
  #, php-format
1753
- msgid "(You can read more about each library's features on the <a href=\"%s\">plugin's website</a>.)"
1754
- msgstr "(Você pode ler mais sobre as características de cada biblioteca no <a href=\"%s\">site do plugin</a>.)"
 
 
 
 
1755
 
1756
- #@ wp-table-reloaded
1757
- #: wp-table-reloaded-admin.php:2140
1758
  msgid "Default CSS"
1759
  msgstr "CSS Padrão"
1760
 
1761
- #@ wp-table-reloaded
1762
- #: wp-table-reloaded-admin.php:2142
1763
- msgid "Yes, include and load the plugin's default CSS Stylesheets. This is highly recommended, if you use one of the JavaScript libraries!"
1764
- msgstr "Sim, incluir e carregar folhas de estilo padrão do plugin CSS. Isto é altamente recomendado, se você usar uma das bibliotecas JavaScript!"
 
 
 
 
1765
 
1766
- #@ wp-table-reloaded
1767
- #: wp-table-reloaded-admin.php:2146
1768
  msgid "Custom CSS"
1769
  msgstr "CSS Personalizado"
1770
 
1771
- #@ wp-table-reloaded
1772
- #: wp-table-reloaded-admin.php:2148
1773
  msgid "Yes, include and load the following custom CSS commands."
1774
  msgstr "Sim, incluir e carregar os seguintes comandos personalizados CSS."
1775
 
1776
- #@ wp-table-reloaded
1777
- #: wp-table-reloaded-admin.php:2148
1778
  msgid "This should be used to change the table layout and styling."
1779
  msgstr "Isso deve ser usado para alterar o layout da tabela e styling."
1780
 
1781
- #@ wp-table-reloaded
1782
- #: wp-table-reloaded-admin.php:2154
1783
- #, php-format
1784
- msgid "You can get styling examples from the <a href=\"%s\">plugin's website</a>."
1785
  msgstr "Você pode obter exemplos de styling <a href=\"%s\">site do plugin</a>."
1786
 
1787
- #@ wp-table-reloaded
1788
- #: wp-table-reloaded-admin.php:2154
1789
  #, php-format
1790
- msgid "Information on available CSS selectors can be found in the <a href=\"%s\">documentation</a>."
1791
- msgstr "Informações sobre seletores CSS disponíveis pode ser encontrada na <a href=\\\"%s\\\">documentação</a>."
 
 
 
 
1792
 
1793
- #@ wp-table-reloaded
1794
- #: wp-table-reloaded-admin.php:2158
1795
  msgid "Links in new window"
1796
  msgstr "Links em nova janela"
1797
 
1798
- #@ wp-table-reloaded
1799
- #: wp-table-reloaded-admin.php:2159
1800
  #, php-format
1801
- msgid "Yes, open links that are inserted with the &quot;%s&quot; button on the &quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
1802
- msgstr "Sim, os links abertos que são inseridos com o botão &quot;%s&quot; na tela &quot;%s&quot; em uma nova janela do navegador <strong>a partir de agora.</strong>"
 
 
 
 
 
 
 
 
 
 
1803
 
1804
- #@ wp-table-reloaded
1805
- #: wp-table-reloaded-admin.php:2166
1806
  msgid "Backend Options"
1807
  msgstr "Backend Opções"
1808
 
1809
- #@ wp-table-reloaded
1810
- #: wp-table-reloaded-admin.php:2170
1811
  msgid "Exit warning"
1812
  msgstr "Aviso de saída"
1813
 
1814
- #@ wp-table-reloaded
1815
- #: wp-table-reloaded-admin.php:2171
1816
  #, php-format
1817
- msgid "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have not yet saved my changes."
1818
- msgstr "Sim, mostra uma mensagem de aviso, se eu deixar a tela &quot;%s&quot; e ainda não salvou minhas alterações."
 
 
 
 
1819
 
1820
- #@ wp-table-reloaded
1821
- #: wp-table-reloaded-admin.php:2174
1822
  msgid "Growing textareas"
1823
  msgstr "Textareas crescentes"
1824
 
1825
- #@ wp-table-reloaded
1826
- #: wp-table-reloaded-admin.php:2175
1827
  #, php-format
1828
- msgid "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are focussed."
1829
- msgstr "Sim, ampliar o textareas na tela &quot;%s&quot; quando eles estão focadas."
 
 
 
1830
 
1831
- #@ wp-table-reloaded
1832
- #: wp-table-reloaded-admin.php:2183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1833
  msgid "Admin Options"
1834
  msgstr "Admin Options"
1835
 
1836
- #@ wp-table-reloaded
1837
- #: wp-table-reloaded-admin.php:2185
1838
- #: wp-table-reloaded-admin.php:2276
1839
- #: wp-table-reloaded-admin.php:2290
1840
  msgid "This area are only available to site administrators!"
1841
  msgstr "Esta área só estão disponíveis para os administradores do site!"
1842
 
1843
- #@ wp-table-reloaded
1844
- #: wp-table-reloaded-admin.php:2185
1845
  msgid "You can therefore not change these options."
1846
  msgstr "Você não pode alterar estas opções."
1847
 
1848
- #@ wp-table-reloaded
1849
- #: wp-table-reloaded-admin.php:2190
1850
  msgid "Plugin Access"
1851
  msgstr "Plugin de Acesso"
1852
 
1853
- #@ wp-table-reloaded
1854
- #: wp-table-reloaded-admin.php:2191
1855
  msgid "To access WP-Table Reloaded, a user needs to be:"
1856
  msgstr "Para acessar WP-Table Reloaded, um usuário precisa ser:"
1857
 
1858
- #: wp-table-reloaded-admin.php:2192
1859
- #: wp-table-reloaded-admin.php:2203
1860
- msgid "Administrator|User role"
1861
- msgstr ""
1862
-
1863
- #: wp-table-reloaded-admin.php:2192
1864
- #: wp-table-reloaded-admin.php:2203
1865
  msgctxt "User role"
1866
  msgid "Administrator"
1867
- msgstr ""
1868
 
1869
- #: wp-table-reloaded-admin.php:2193
1870
- #: wp-table-reloaded-admin.php:2204
1871
- msgid "Editor|User role"
1872
- msgstr ""
1873
-
1874
- #: wp-table-reloaded-admin.php:2193
1875
- #: wp-table-reloaded-admin.php:2204
1876
  msgctxt "User role"
1877
  msgid "Editor"
1878
- msgstr ""
1879
-
1880
- #: wp-table-reloaded-admin.php:2194
1881
- #: wp-table-reloaded-admin.php:2205
1882
- msgid "Author|User role"
1883
- msgstr ""
1884
 
1885
- #: wp-table-reloaded-admin.php:2194
1886
- #: wp-table-reloaded-admin.php:2205
1887
  msgctxt "User role"
1888
  msgid "Author"
1889
- msgstr ""
1890
-
1891
- #: wp-table-reloaded-admin.php:2195
1892
- msgid "Contributor|User role"
1893
- msgstr ""
1894
 
1895
- #: wp-table-reloaded-admin.php:2195
1896
  msgctxt "User role"
1897
  msgid "Contributor"
1898
- msgstr ""
1899
 
1900
- #@ wp-table-reloaded
1901
- #: wp-table-reloaded-admin.php:2201
1902
  msgid "Plugin Options Access"
1903
  msgstr "Opções de Acesso do Plugin"
1904
 
1905
- #@ wp-table-reloaded
1906
- #: wp-table-reloaded-admin.php:2202
1907
  msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
1908
- msgstr "Para acessar as opções do plugin do WP-Table Reloaded, um usuário precisa ser:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1909
 
1910
- #@ wp-table-reloaded
1911
- #: wp-table-reloaded-admin.php:2206
1912
- msgid "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
1913
- msgstr "Admin Options, despejo de importação do arquivo, e Manual Plugin Desinstalar sempre são acessíveis apenas pelos administradores, independentemente desta definição."
1914
 
1915
- #@ wp-table-reloaded
1916
- #: wp-table-reloaded-admin.php:2211
1917
  msgid "Admin menu entry"
1918
  msgstr "Admin entrada do menu"
1919
 
1920
- #@ wp-table-reloaded
1921
- #: wp-table-reloaded-admin.php:2212
1922
  msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
1923
  msgstr "WP-Table Reloaded será apresentado nesta secção do menu admin:"
1924
 
1925
- #: wp-table-reloaded-admin.php:2213
1926
  msgid "Tools"
1927
- msgstr ""
1928
 
1929
- #: wp-table-reloaded-admin.php:2214
1930
  msgid "Posts"
1931
- msgstr ""
1932
 
1933
- #: wp-table-reloaded-admin.php:2215
1934
  msgid "Pages"
1935
- msgstr ""
1936
 
1937
- #: wp-table-reloaded-admin.php:2216
1938
  msgid "Plugins"
1939
- msgstr ""
1940
 
1941
- #: wp-table-reloaded-admin.php:2217
1942
  msgid "Settings"
1943
- msgstr ""
1944
 
1945
- #: wp-table-reloaded-admin.php:2218
1946
  msgid "Dashboard"
1947
- msgstr ""
1948
 
1949
- #@ wp-table-reloaded
1950
- #: wp-table-reloaded-admin.php:2219
1951
  msgid "Top-Level"
1952
  msgstr "Nível Superior"
1953
 
1954
- #@ wp-table-reloaded
1955
- #: wp-table-reloaded-admin.php:2220
1956
- msgid "Change will take effect after another page load after saving."
1957
- msgstr "Alteração terá efeito após o outro carregamento da página depois de salvar."
 
 
 
 
 
 
 
 
 
 
 
 
 
1958
 
1959
- #@ wp-table-reloaded
1960
- #: wp-table-reloaded-admin.php:2224
 
 
 
 
 
 
 
 
1961
  msgid "Remove upon Deactivation"
1962
  msgstr "Remover na Desativação"
1963
 
1964
- #@ wp-table-reloaded
1965
- #: wp-table-reloaded-admin.php:2225
1966
- msgid "Yes, remove all plugin related data from the database when the plugin is deactivated."
1967
- msgstr "Sim, remover todos os dados relacionados com plugin do banco de dados quando o plugin está desativado."
 
 
 
 
1968
 
1969
- #@ wp-table-reloaded
1970
- #: wp-table-reloaded-admin.php:2225
1971
  msgid "Should be activated directly before deactivation only!"
1972
  msgstr "Deve ser ativado imediatamente antes desativação só!"
1973
 
1974
- #@ wp-table-reloaded
1975
- #: wp-table-reloaded-admin.php:2245
1976
  msgid "WP-Table Reloaded Data Export and Backup"
1977
  msgstr "WP-Table Reloaded e Exportação de dados de backup"
1978
 
1979
- #@ wp-table-reloaded
1980
- #: wp-table-reloaded-admin.php:2248
1981
- msgid "WP-Table Reloaded can export and import a so-called dump file that contains all tables, their settings and the plugin's options."
1982
- msgstr "WP-Table Reloaded pode exportar e importar um chamado arquivo de despejo que contém todas as tabelas, suas configurações e opções do plugin."
 
 
 
 
1983
 
1984
- #@ wp-table-reloaded
1985
- #: wp-table-reloaded-admin.php:2248
1986
- msgid "This file can be used as a backup or to move all data to another WordPress site."
1987
- msgstr "Este arquivo pode ser usado como um backup ou para mover todos os dados para outro site WordPress."
 
 
 
 
1988
 
1989
- #@ wp-table-reloaded
1990
- #: wp-table-reloaded-admin.php:2251
1991
  msgid "Export a dump file"
1992
  msgstr "Exportar um arquivo de Dump"
1993
 
1994
- #@ wp-table-reloaded
1995
- #: wp-table-reloaded-admin.php:2253
1996
- msgid "To export all Tables and their settings, click the button below to generate and download a dump file."
1997
- msgstr "Para exportar todas as tabelas e suas configurações, clique no botão abaixo para gerar e fazer download de um arquivo de dump."
 
 
 
 
1998
 
1999
- #@ wp-table-reloaded
2000
- #: wp-table-reloaded-admin.php:2253
2001
- msgid "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!"
2002
- msgstr "<strong>Aviso: Não</strong> editar o conteúdo desse arquivo em nenhuma circunstância como você vai destruir o arquivo!"
 
 
 
 
2003
 
2004
- #@ wp-table-reloaded
2005
- #: wp-table-reloaded-admin.php:2262
2006
  msgid "Import a dump file"
2007
  msgstr "Importar um arquivo de dump"
2008
 
2009
- #@ wp-table-reloaded
2010
- #: wp-table-reloaded-admin.php:2264
2011
- msgid "To import a WP-Table Reloaded dump file and restore the included data, upload the file from your computer."
2012
- msgstr "Para importar um arquivo de deump do WP-Table Reloaded e restaurar os dados incluídos, faça o upload do arquivo do seu computador."
 
 
 
 
2013
 
2014
- #@ wp-table-reloaded
2015
- #: wp-table-reloaded-admin.php:2264
2016
- msgid "All current data of this WP-Table Reloaded installation (Tables, Options, Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
2017
- msgstr "Todos os dados atuais do WP-Table instalação Reloaded (Tabelas, Opções, Definições) <strong>serão substituídos</strong> com os dados do arquivo!"
 
 
 
 
2018
 
2019
- #@ wp-table-reloaded
2020
- #: wp-table-reloaded-admin.php:2264
2021
  msgid "Do not proceed, if you do not understand this!"
2022
  msgstr "Não prossiga se você não entender isto!"
2023
 
2024
- #@ wp-table-reloaded
2025
- #: wp-table-reloaded-admin.php:2264
2026
- msgid "It is highly recommended to export and backup the data of this installation before importing another dump file (see above)."
2027
- msgstr "É altamente recomendável para exportar e fazer backup dos dados da instalação antes de importar outro arquivo de despejo (veja acima)."
 
 
 
 
2028
 
2029
- #@ wp-table-reloaded
2030
- #: wp-table-reloaded-admin.php:2270
2031
  msgid "Select Dump File"
2032
  msgstr "Selecione o arquivo de Dump"
2033
 
2034
- #@ wp-table-reloaded
2035
- #: wp-table-reloaded-admin.php:2272
2036
  msgid "Import Dump File"
2037
  msgstr "Importar arquivo de Dump"
2038
 
2039
- #@ wp-table-reloaded
2040
- #: wp-table-reloaded-admin.php:2282
2041
  msgid "Manually Uninstall WP-Table Reloaded"
2042
  msgstr "Desinstalar manualmente WP-Table Reloaded"
2043
 
2044
- #@ wp-table-reloaded
2045
- #: wp-table-reloaded-admin.php:2284
2046
- msgid "Uninstalling <strong>will permanently delete</strong> all tables, data, and options, that belong to WP-Table Reloaded from the database, including all tables you added or imported."
2047
- msgstr "A desinstalação <strong>irá apagar permanentemente</strong> todas as tabelas, dados e opções, que pertencem WP-Quadro Reloaded do banco de dados, incluindo todas as tabelas que você adicionou ou importado."
2048
-
2049
- #@ wp-table-reloaded
2050
- #: wp-table-reloaded-admin.php:2284
2051
- msgid "You will manually need to remove the plugin's files from the plugin folder afterwards."
2052
- msgstr "Você precisará remover manualmente os arquivos do plugin na pasta plugin depois."
2053
-
2054
- #@ wp-table-reloaded
2055
- #: wp-table-reloaded-admin.php:2318
2056
- msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
2057
- msgstr "WP-Table Reloaded lhe permite criar e gerenciar tabelas na área de admin do WordPress."
2058
-
2059
- #@ wp-table-reloaded
2060
- #: wp-table-reloaded-admin.php:2318
2061
- msgid "You can then show the tables in your posts, on your pages or in text-widgets by using a shortcode."
2062
- msgstr "Você pode então mostrar as tabelas em suas mensagens, em suas páginas ou em texto widgets usando um shortcode."
2063
-
2064
- #@ wp-table-reloaded
2065
- #: wp-table-reloaded-admin.php:2325
2066
- #, php-format
2067
- msgid "You can also select the desired table from a list (after clicking the button &quot;%s&quot; in the editor toolbar) and the corresponding shortcode will be added for you."
2068
- msgstr "Você também pode selecionar a tabela desejada de uma lista (após clicar no botão &quot;%s&quot; na barra de ferramentas do editor) e os shortcode correspondente será adicionado para você."
2069
-
2070
- #@ wp-table-reloaded
2071
- #: wp-table-reloaded-admin.php:2325
2072
- msgid "Tables can be styled by changing and adding CSS commands."
2073
- msgstr "As tabelas podem ser decorados, alterando e adicionando comandos CSS."
2074
-
2075
- #@ wp-table-reloaded
2076
- #: wp-table-reloaded-admin.php:2325
2077
- msgid "The plugin ships with default CSS Stylesheets, which can be customized with own code or replaced with other Stylesheets."
2078
- msgstr "Os navios plugin com folhas de estilo CSS padrão, que pode ser personalizado com um código próprio ou substituídas por outras folhas de estilo."
2079
-
2080
- #@ wp-table-reloaded
2081
- #: wp-table-reloaded-admin.php:2325
2082
- msgid "For this, each table is given certain CSS classes that can be used as CSS selectors."
2083
- msgstr "Para isso, cada tabela é dada certas classes de CSS que podem ser utilizados como seletores CSS."
2084
-
2085
- #@ wp-table-reloaded
2086
- #: wp-table-reloaded-admin.php:2325
2087
- #, php-format
2088
- msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
2089
- msgstr "Consulte a <a href=\"%s\">documentação</a> para obter uma lista destes seletores e para denominar exemplos."
2090
-
2091
- #@ wp-table-reloaded
2092
- #: wp-table-reloaded-admin.php:2338
2093
- msgid "Help and Support"
2094
- msgstr "Ajuda e Suporte"
2095
-
2096
- #@ wp-table-reloaded
2097
- #: wp-table-reloaded-admin.php:2340
2098
- #, php-format
2099
- msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
2100
- msgstr "Se você não encontrar uma resposta lá, por favor, <a href=\"%s\">abra um novo tópico</a> no Fórum do WordPress com a tag &quot;wp-table-reloaded&quot;."
2101
-
2102
- #@ wp-table-reloaded
2103
- #: wp-table-reloaded-admin.php:2345
2104
- msgid "Author and License"
2105
- msgstr "Autor e Licença"
2106
-
2107
- #@ wp-table-reloaded
2108
- #: wp-table-reloaded-admin.php:2347
2109
- #, php-format
2110
- msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
2111
- msgstr "Este plugin foi escrito por <a href=\"%s\">Tobias B&auml;thge</a>."
2112
-
2113
- #@ wp-table-reloaded
2114
- #: wp-table-reloaded-admin.php:2347
2115
- msgid "It is licensed as Free Software under GPL 2."
2116
- msgstr "É licenciado como Software Livre sob a GPL 2."
2117
-
2118
- #@ wp-table-reloaded
2119
- #: wp-table-reloaded-admin.php:2347
2120
- #, php-format
2121
- msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
2122
- msgstr "Por favor, classifique o plugin no <a href=\"%s\">WordPress Plugin Directory</a>."
2123
-
2124
- #@ wp-table-reloaded
2125
- #: wp-table-reloaded-admin.php:2356
2126
- msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
2127
- msgstr "Allan Jardine para o <a href=\"http://www.datatables.net/\">jQuery plugin DataTables,</a>"
2128
-
2129
- #@ wp-table-reloaded
2130
- #: wp-table-reloaded-admin.php:2358
2131
- msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
2132
- msgstr "Soeren Krings a sua extensão <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
2133
-
2134
- #@ wp-table-reloaded
2135
- #: wp-table-reloaded-admin.php:2363
2136
- msgid "Slovak (thanks to <a href=\"http://lukas.cerro.sk/\">55.lukas</a>)"
2137
- msgstr "Eslovaco (graças a <a href=\"http://lukas.cerro.sk/\">55.lukas)</a>"
2138
-
2139
- #@ wp-table-reloaded
2140
- #: wp-table-reloaded-admin.php:2374
2141
- msgid "You are using the following versions of the software."
2142
- msgstr "Você está usando as seguintes versões do software."
2143
-
2144
- #@ wp-table-reloaded
2145
- #: wp-table-reloaded-admin.php:2374
2146
- msgid "Please provide this information in bug reports."
2147
- msgstr "Favor fornecer essas informações em relatórios de bugs."
2148
-
2149
- #@ wp-table-reloaded
2150
- #: wp-table-reloaded-admin.php:2775
2151
- msgid "WP-Table Reloaded Plugin Page"
2152
- msgstr "Página do plugin WP-Table Reloaded"
2153
-
2154
- #@ wp-table-reloaded
2155
- #: wp-table-reloaded-admin.php:2775
2156
- msgid "Plugin Page"
2157
- msgstr "Página do Plugin"
2158
-
2159
- #@ wp-table-reloaded
2160
- #: wp-table-reloaded-admin.php:2776
2161
- #: wp-table-reloaded-admin.php:2789
2162
- msgid "Frequently Asked Questions"
2163
- msgstr "Perguntas Frequentes"
2164
-
2165
- #@ wp-table-reloaded
2166
- #: wp-table-reloaded-admin.php:2776
2167
- #: wp-table-reloaded-admin.php:2789
2168
- msgid "FAQ"
2169
- msgstr "FAQ"
2170
-
2171
- #@ wp-table-reloaded
2172
- #: wp-table-reloaded-admin.php:2777
2173
- #: wp-table-reloaded-admin.php:2792
2174
- msgid "Support"
2175
- msgstr "Suporte"
2176
-
2177
- #@ wp-table-reloaded
2178
- #: wp-table-reloaded-admin.php:2778
2179
- #: wp-table-reloaded-admin.php:2790
2180
- msgid "Plugin Documentation"
2181
- msgstr "Documentação do Plugin"
2182
-
2183
- #@ wp-table-reloaded
2184
- #: wp-table-reloaded-admin.php:2778
2185
- #: wp-table-reloaded-admin.php:2790
2186
- msgid "Documentation"
2187
- msgstr "Documentação"
2188
-
2189
- #@ wp-table-reloaded
2190
- #: wp-table-reloaded-admin.php:2779
2191
- #: wp-table-reloaded-admin.php:2791
2192
- msgid "Support WP-Table Reloaded with your donation!"
2193
- msgstr "Suporte WP-Table dro Reloaded com a sua doação!"
2194
-
2195
- #@ wp-table-reloaded
2196
- #: wp-table-reloaded-admin.php:2820
2197
- msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
2198
- msgstr "Para inserir o seguinte código HTML para um link em uma célula, basta clicar na célula depois de fechar este diálogo."
2199
-
2200
- #@ wp-table-reloaded
2201
- #: wp-table-reloaded-admin.php:2821
2202
- #, php-format
2203
- msgid "Click the &quot;%s&quot; button to insert the image."
2204
- msgstr "Clique o botão &quot;%s&quot; para inserir a imagem."
2205
-
2206
- #@ wp-table-reloaded
2207
- #: wp-table-reloaded-admin.php:2827
2208
- msgid "Do you really want to delete the selected rows?"
2209
- msgstr "Você realmente deseja excluir os registros selecionados?"
2210
-
2211
- #@ wp-table-reloaded
2212
- #: wp-table-reloaded-admin.php:2828
2213
- msgid "Do you really want to delete the selected columns?"
2214
- msgstr "Você realmente quer apagar as colunas selecionadas?"
2215
-
2216
- #@ wp-table-reloaded
2217
- #: wp-table-reloaded-admin.php:2829
2218
- #: wp-table-reloaded-admin.php:2833
2219
- #: wp-table-reloaded-admin.php:2835
2220
- msgid "You have not selected any rows."
2221
- msgstr "Você não selecionou nenhum linhas."
2222
-
2223
- #@ wp-table-reloaded
2224
- #: wp-table-reloaded-admin.php:2830
2225
- #: wp-table-reloaded-admin.php:2834
2226
- #: wp-table-reloaded-admin.php:2836
2227
- msgid "You have not selected any columns."
2228
- msgstr "Você não selecionou nenhum colunas."
2229
-
2230
- #@ wp-table-reloaded
2231
- #: wp-table-reloaded-admin.php:2831
2232
- msgid "You can not delete all rows of the table at once!"
2233
- msgstr "Você não pode excluir todas as linhas da tabela de uma só vez!"
2234
-
2235
- #@ wp-table-reloaded
2236
- #: wp-table-reloaded-admin.php:2832
2237
- msgid "You can not delete all columns of the table at once!"
2238
- msgstr "Você não pode excluir todas as colunas da tabela de uma só vez!"
2239
-
2240
- #@ wp-table-reloaded
2241
- #: wp-table-reloaded-admin.php:2843
2242
- msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
2243
- msgstr "Atenção: Você perderá todos os quadros atuais e Configurações! Você deve criar um backup primeiro. Esteja avisado!"
2244
-
2245
- #@ wp-table-reloaded
2246
- #: wp-table-reloaded-admin.php:2844
2247
- msgid "You have made changes to the content of this table and not yet saved them."
2248
- msgstr "Você fez mudanças no conteúdo desta tabela e ainda não salvou."
2249
-
2250
- #@ wp-table-reloaded
2251
- #: wp-table-reloaded-admin.php:2844
2252
- #, php-format
2253
- msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
2254
- msgstr "Você deve clicar primeiro no &quot;%s&quot; ou eles serão perdidos se você navegue fora desta página."
2255
-
2256
- #@ wp-table-reloaded
2257
- #: wp-table-reloaded-admin.php:2924
2258
- msgid "Please wait..."
2259
- msgstr "Aguarde ..."
2260
-
2261
- #@ wp-table-reloaded
2262
- #: wp-table-reloaded-admin.php:2925
2263
- msgid "Show _MENU_ Tables"
2264
- msgstr "Mostrar _MENU_ Tabelas"
2265
-
2266
- #@ wp-table-reloaded
2267
- #: wp-table-reloaded-admin.php:2927
2268
- msgid "_START_ to _END_ of _TOTAL_ Tables"
2269
- msgstr "_START_ par _END_ de _TOTAL_ Tabelas"
2270
-
2271
- #@ wp-table-reloaded
2272
- #: wp-table-reloaded-admin.php:2929
2273
- msgid "(filtered from _MAX_ Tables)"
2274
- msgstr "(filtrado de _MAX_ Tabelas)"
2275
-
2276
- #@ wp-table-reloaded
2277
- #: wp-table-reloaded-admin.php:2931
2278
- msgid "Filter:"
2279
- msgstr "Filtro:"
2280
-
2281
- #@ wp-table-reloaded
2282
- #: wp-table-reloaded-admin.php:2932
2283
- msgid "First"
2284
- msgstr "Primeiro"
2285
-
2286
- #@ wp-table-reloaded
2287
- #: wp-table-reloaded-admin.php:2933
2288
- msgid "Back"
2289
- msgstr "Voltar"
2290
-
2291
- #@ wp-table-reloaded
2292
- #: wp-table-reloaded-admin.php:2934
2293
- msgid "Next"
2294
- msgstr "Próximo"
2295
-
2296
- #@ wp-table-reloaded
2297
- #: wp-table-reloaded-admin.php:2935
2298
- msgid "Last"
2299
- msgstr "Último"
2300
-
2301
- #@ wp-table-reloaded
2302
- #: wp-table-reloaded-admin.php:1515
2303
- #, php-format
2304
- msgid "Selected rows: %s %s|hide_unhide"
2305
- msgstr ""
2306
-
2307
- #@ wp-table-reloaded
2308
- #: wp-table-reloaded-admin.php:1517
2309
- #, php-format
2310
- msgctxt "hide_unhide"
2311
- msgid "Selected rows: %s %s"
2312
- msgstr ""
2313
-
2314
- #@ wp-table-reloaded
2315
- #: wp-table-reloaded-admin.php:1531
2316
- #, php-format
2317
- msgid "Selected columns: %s %s|hide_unhide"
2318
  msgstr ""
 
 
 
2319
 
2320
- #@ wp-table-reloaded
2321
- #: wp-table-reloaded-admin.php:1533
2322
- #, php-format
2323
- msgctxt "hide_unhide"
2324
- msgid "Selected columns: %s %s"
2325
  msgstr ""
 
 
2326
 
2327
- #@ wp-table-reloaded
2328
- #: wp-table-reloaded-admin.php:1553
2329
- #, php-format
2330
- msgid "Selected rows: %s %s|insert_delete"
 
2331
  msgstr ""
 
 
2332
 
2333
- #@ wp-table-reloaded
2334
- #: wp-table-reloaded-admin.php:1555
2335
- #, php-format
2336
- msgctxt "insert_delete"
2337
- msgid "Selected rows: %s %s"
2338
- msgstr ""
2339
 
2340
- #@ wp-table-reloaded
2341
- #: wp-table-reloaded-admin.php:1569
2342
- #, php-format
2343
- msgid "Selected columns: %s %s|insert_delete"
2344
- msgstr ""
2345
 
2346
- #@ wp-table-reloaded
2347
- #: wp-table-reloaded-admin.php:1571
2348
- #, php-format
2349
- msgctxt "insert_delete"
2350
- msgid "Selected columns: %s %s"
 
 
2351
  msgstr ""
2352
-
 
2
  msgstr ""
3
  "Project-Id-Version: WP-Table Reloaded v1.2.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-11-23 14:45-0300\n"
6
+ "PO-Revision-Date: 2012-11-23 15:20-0300\n"
7
  "Last-Translator: Tobias Baethge <wordpress@tobias.baethge.com>\n"
8
  "Language-Team: \n"
9
+ "Language: pt_BR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_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-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ # @ wp-table-reloaded
23
+ #: classes/export.class.php:28 classes/import.class.php:36
 
24
  msgid "CSV - Character-Separated Values"
25
  msgstr "CSV - Valores Separados por Vírgula"
26
 
27
+ # @ wp-table-reloaded
28
+ #: classes/export.class.php:29 classes/import.class.php:37
 
29
  msgid "HTML - Hypertext Markup Language"
30
  msgstr "HTML - Linguagem de Marcação de Texto"
31
 
32
+ # @ wp-table-reloaded
33
+ #: classes/export.class.php:30 classes/import.class.php:38
 
34
  msgid "XML - eXtended Markup Language"
35
  msgstr "XML - eXtended Markup Language"
36
 
37
+ # @ wp-table-reloaded
38
+ #: classes/export.class.php:33
39
  msgid "; (semicolon)"
40
  msgstr "; (ponto e vírgula)"
41
 
42
+ # @ wp-table-reloaded
43
+ #: classes/export.class.php:34
44
  msgid ", (comma)"
45
  msgstr ", (vírgula)"
46
 
47
+ # @ wp-table-reloaded
48
+ #: classes/export.class.php:35
49
  msgid ": (colon)"
50
  msgstr ": (dois pontos)"
51
 
52
+ # @ wp-table-reloaded
53
+ #: classes/export.class.php:36
54
  msgid ". (dot)"
55
  msgstr ". (ponto)"
56
 
57
+ # @ wp-table-reloaded
58
+ #: classes/export.class.php:37
59
  msgid "| (pipe)"
60
  msgstr "| (pipe)"
61
 
62
+ # @ wp-table-reloaded
63
+ #: classes/helper.class.php:40 views/view-about.php:21
64
+ #, php-format
65
+ msgid ""
66
+ "More information about WP-Table Reloaded can be found on the <a href=\"%s"
67
+ "\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress "
68
+ "Plugin Directory</a>."
69
+ msgstr ""
70
+ "Mais informações sobre o WP-Table Reloaded podem ser encontradas no <a href="
71
+ "\"%s\">website do plugin</a> ou na sua página no <a href=\"%s\">Diretório de "
72
+ "Plugins do WordPress</a> (em inglês)."
73
 
74
+ # @ wp-table-reloaded
75
+ #: classes/helper.class.php:41 views/view-about.php:21
76
+ #, php-format
77
+ msgid "For technical information, see the <a href=\"%s\">documentation</a>."
78
+ msgstr "Para informações técnicas, veja a <a href=\"%s\">documentação</a>."
79
 
80
+ # @ wp-table-reloaded
81
+ #: classes/helper.class.php:42 views/view-about.php:28
82
+ #, php-format
83
+ msgid ""
84
+ "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress "
85
+ "Support Forums</a>."
86
+ msgstr ""
87
+ "O <a href=\"%s\">Suporte</a> é oferecido através dos <a href=\"%s\">Fóruns "
88
+ "de Suporte do WordPress</a>."
89
 
90
+ # @ wp-table-reloaded
91
+ #: classes/helper.class.php:43 views/view-about.php:28
92
+ #, php-format
93
+ msgid ""
94
+ "Before asking for support, please carefully read the <a href=\"%s"
95
+ "\">Frequently Asked Questions</a> where you will find answered to the most "
96
+ "common questions, and search through the forums."
97
+ msgstr ""
98
+ "Antes de solicitar o suporte, por favor, leia atentamente as <a href=\"%s"
99
+ "\">Perguntas Mais Frequentes</a>, onde você provavelmente encontrará a "
100
+ "resposta para a maioria das suas dúvidas e faça também uma busca nos fóruns."
101
 
102
+ # @ wp-table-reloaded
103
+ #: classes/helper.class.php:44 views/view-about.php:35
104
+ #, php-format
105
+ msgid ""
106
+ "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is "
107
+ "recommended."
108
+ msgstr ""
109
+ "Se você gostou do plugin, considere <a href=\"%s\"><strong>uma doação</"
110
+ "strong></a>."
111
 
112
+ # @ wp-table-reloaded
113
+ #: classes/helper.class.php:74
114
+ msgid ""
115
+ "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-"
116
+ "table-reloaded-english/\">WP-Table Reloaded</a>."
117
+ msgstr ""
118
+ "Obrigado por usar o a href=\"http://tobias.baethge.com/wordpress-plugins/wp-"
119
+ "table-reloaded-english/\">WP-Table Reloaded</a>."
120
 
121
+ # @ wp-table-reloaded
122
+ #: classes/helper.class.php:74
123
+ #, php-format
124
+ msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
125
+ msgstr "Apóie o plugin com a sua <a href=\"%s\">doação</a>!"
 
126
 
127
+ #: classes/helper.class.php:104 classes/helper.class.php:109
128
+ msgid "Table cells can span across more than one column or row."
129
+ msgstr ""
130
+ "As células da tabela podem se expandir para mais de uma coluna ou linha"
 
 
 
 
131
 
132
+ #: classes/helper.class.php:104
133
+ msgid ""
134
+ "Combining consecutive cells within the same row is called \"colspanning\"."
135
+ msgstr ""
136
+ "Combinando células consectutivas na mesma linhas é chamado \"colspanning\"."
137
 
138
+ #: classes/helper.class.php:104
139
+ msgid ""
140
+ "To combine cells, add the keyword #colspan# to the cell to the right of the "
141
+ "one with the content for the combined cell by using the corresponding button."
142
+ msgstr ""
143
+ "Para combinar células, adicione a palavra #colspan# na célula a direita da "
144
+ "célula que terá o conteúdo combinado usando o botão correspondente."
145
 
146
+ #: classes/helper.class.php:104 classes/helper.class.php:109
147
+ msgid "Repeat this to add the keyword to all cells that shall be connected."
148
+ msgstr ""
149
+ "Repita isso para adicionar a palavra-chave em todas as cálulas que devem ser "
150
+ "conectadas"
 
151
 
152
+ #: classes/helper.class.php:104 classes/helper.class.php:109
153
+ msgid ""
154
+ "Be aware that the JavaScript libraries will not work on tables which have "
155
+ "combined cells."
156
+ msgstr ""
157
+ "Esteja ciente que as bibliotecas em javascript não funcionarão para tabelas "
158
+ "com células combinadas"
159
 
160
+ #: classes/helper.class.php:109
161
+ msgid ""
162
+ "Combining consecutive cells within the same column is called \"rowspanning\"."
163
+ msgstr ""
164
+ "Combinando células consectutivas na mesma coluna é chamado \"rowspanning\"."
165
 
166
+ #: classes/helper.class.php:109
167
+ msgid ""
168
+ "To combine cells, add the keyword #rowspan# to the cell below the one with "
169
+ "the content for the combined cell by using the corresponding button."
170
+ msgstr ""
171
+ "Para combinar células, adicione a palavra #rowspan# na célula abaixo da "
172
+ "célula que terá o conteúdo combinado usando o botão correspondente."
173
 
174
+ #: classes/helper.class.php:118
175
+ msgid "Help"
176
+ msgstr "Ajuda"
 
 
 
177
 
178
+ # @ wp-table-reloaded
179
+ #: classes/render.class.php:141 views/view-list.php:60
180
+ msgid "Edit"
181
+ msgstr "Editar"
 
182
 
183
+ #: controllers/controller-admin.php:255
184
+ msgid "Arabic"
185
+ msgstr "Árabe"
 
 
186
 
187
+ #: controllers/controller-admin.php:256
188
+ msgid "Belarusian"
189
+ msgstr "Bielorrusso"
 
 
190
 
191
+ #: controllers/controller-admin.php:257
192
+ msgid "Bulgarian"
193
+ msgstr "Búlgaro"
 
 
194
 
195
+ #: controllers/controller-admin.php:258
196
+ msgid "Czech"
197
+ msgstr "Tcheco"
 
198
 
199
+ #: controllers/controller-admin.php:259
200
+ msgid "German"
201
+ msgstr "Alemão"
 
 
 
 
 
 
202
 
203
+ #: controllers/controller-admin.php:260
204
+ msgid "English"
205
+ msgstr "Inglês"
 
 
 
 
 
 
 
 
 
206
 
207
+ #: controllers/controller-admin.php:261
208
+ msgid "Spanish"
209
+ msgstr "Espanhol"
 
 
 
 
 
 
 
 
210
 
211
+ #: controllers/controller-admin.php:262
212
+ msgid "Finnish"
213
+ msgstr "Finlandês"
 
 
 
 
 
214
 
215
+ #: controllers/controller-admin.php:263
216
+ msgid "French"
217
+ msgstr "Francês"
 
 
218
 
219
+ #: controllers/controller-admin.php:264
220
+ msgid "Hebrew"
221
+ msgstr "Hebraico"
 
222
 
223
+ #: controllers/controller-admin.php:265
224
+ msgid "Hindi"
225
+ msgstr "Hindú"
 
226
 
227
+ #: controllers/controller-admin.php:266
228
+ msgid "Indonesian"
229
+ msgstr "Indonésio"
 
230
 
231
+ #: controllers/controller-admin.php:267
232
+ msgid "Italian"
233
+ msgstr "Italiano"
 
 
 
234
 
235
+ #: controllers/controller-admin.php:268
236
+ msgid "Japanese"
237
+ msgstr "Japonês"
 
 
238
 
239
+ #: controllers/controller-admin.php:269
240
+ msgid "Dutch"
241
+ msgstr "Holandês"
 
242
 
243
+ #: controllers/controller-admin.php:270
244
+ msgid "Polish"
245
+ msgstr "Polonês"
 
246
 
247
+ #: controllers/controller-admin.php:271
248
+ msgid "Brazilian Portuguese"
249
+ msgstr "Português Brasileiro"
 
 
 
250
 
251
+ #: controllers/controller-admin.php:272
252
+ msgid "Portuguese (Portugal)"
253
+ msgstr "Português (Portugal)"
 
254
 
255
+ #: controllers/controller-admin.php:273
256
+ msgid "Russian"
257
+ msgstr "Russo"
 
258
 
259
+ #: controllers/controller-admin.php:274
260
+ msgid "Slovak"
261
+ msgstr "Eslovaco"
 
262
 
263
+ #: controllers/controller-admin.php:275
264
+ msgid "Swedish"
265
+ msgstr "Sueco"
 
266
 
267
+ #: controllers/controller-admin.php:276
268
+ msgid "Ukrainian"
269
+ msgstr "Ucraniano"
 
270
 
271
+ #: controllers/controller-admin.php:277
272
+ msgid "Chinese (Simplified)"
273
+ msgstr "Chinês (Simplificado)"
 
274
 
275
+ # @ wp-table-reloaded
276
+ #: controllers/controller-admin.php:307
277
+ #, php-format
278
+ msgid ""
279
+ "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, "
280
+ "please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s"
281
+ "\">documentation</a>, and the <a href=\"%s\">support</a> section."
282
+ msgstr ""
283
+ "Bem vindo ao WP-Table Reloaded %s. Se você tiver qualquer dúvida ou "
284
+ "problema, por favor, veja o <a href=\"%s\">FAQ</a>, a <a href=\"%s"
285
+ "\">documentação</a> e a seção de <a href=\"%s\">suporte</a>."
286
 
287
+ # @ wp-table-reloaded
288
+ #: controllers/controller-admin.php:308
289
+ #, php-format
290
+ msgid "Thank you for upgrading to WP-Table Reloaded %s."
291
+ msgstr "Obrigado por atualizar para o WP-Table Reloaded %s."
 
 
292
 
293
+ #: controllers/controller-admin.php:308
294
+ msgid "This version includes several bugfixes and a few enhancements."
295
+ msgstr "Essa versão contém diversas correções e algumas melhorias"
 
 
 
 
 
296
 
297
+ # @ wp-table-reloaded
298
+ #: controllers/controller-admin.php:308
299
+ #, fuzzy, php-format
300
+ msgid ""
301
+ "Please read the <a href=\"%s\">release announcement</a> for more information."
302
+ msgstr ""
303
+ "Por favor, leia as <a href=\"%s\">notas de versão (release announcement)</a> "
304
+ "para mais informações e verifique suas configurações em <a href=\"%s\">%s</"
305
+ "a>."
306
 
307
+ # @ wp-table-reloaded
308
+ #: controllers/controller-admin.php:308
309
+ #, php-format
310
+ msgid ""
311
+ "If you like the new features and enhancements, I would appreciate a small <a "
312
+ "href=\"%s\">donation</a>. Thank you."
313
+ msgstr ""
314
+ "Se você gostou das novas funcionalidades e melhorias, considere uma pequena "
315
+ "<a href=\"%s\">doação</a>. Obrigado."
 
 
 
 
 
 
316
 
317
+ # @ wp-table-reloaded
318
+ #: controllers/controller-admin.php:313
319
+ msgid "Hide this message"
320
+ msgstr "Esconder esta mensagem"
321
 
322
+ #: controllers/controller-admin.php:321
323
+ msgid ""
324
+ "Thanks for using this plugin! You've installed WP-Table Reloaded over a "
325
+ "month ago."
326
+ msgstr ""
327
+ "Obrigado por utilizar esse plugin! Você instalou o WP-Table Reloaded a mais "
328
+ "de um mês atrás."
329
+
330
+ # @ wp-table-reloaded
331
+ #: controllers/controller-admin.php:321
332
+ #, fuzzy, php-format
333
+ msgid ""
334
+ "If it works and you are satisfied with the results of managing your %s "
335
+ "table, isn't it worth at least one dollar or euro?"
336
+ msgid_plural ""
337
+ "If it works and you are satisfied with the results of managing your %s "
338
+ "tables, isn't it worth at least one dollar or euro?"
339
+ msgstr[0] ""
340
+ "Obrigado por usar este plugin! Você instalou WP-Table Reloaded mais de um "
341
+ "mês atrás. Se funcionar e você estiver satisfeito com os resultados da "
342
+ "gestão de suas %s tabelas, será que não vale, pelo menos, um dólar ou euro?"
343
+ msgstr[1] ""
344
+ "Obrigado por usar este plugin! Você instalou WP-Table Reloaded mais de um "
345
+ "mês atrás. Se funcionar e você estiver satisfeito com os resultados da "
346
+ "gestão de suas %s tabelas, será que não vale, pelo menos, um dólar ou euro?"
347
+
348
+ # @ wp-table-reloaded
349
+ #: controllers/controller-admin.php:322
350
  #, php-format
351
+ msgid ""
352
+ "<a href=\"%s\">Donations</a> help me to continue support and development of "
353
+ "this <i>free</i> software - things for which I spend countless hours of my "
354
+ "free time! Thank you!"
355
+ msgstr ""
356
+ "As <a href=\"%s\">doações</a> me ajudam a continuar mantendo o suporte e o "
357
+ "desenvolvimento deste software <i>gratuito</i> - coisas para as quais eu "
358
+ "gasto incontáveis horas do meu tempo livre! Obrigado!"
359
 
360
+ # @ wp-table-reloaded
361
+ #: controllers/controller-admin.php:323
362
+ msgid "Sure, no problem!"
363
+ msgstr "Claro, sem problemas!"
 
364
 
365
+ # @ wp-table-reloaded
366
+ #: controllers/controller-admin.php:324
367
+ msgid "I already donated."
368
+ msgstr "Eu já fiz uma doação."
369
+
370
+ # @ wp-table-reloaded
371
+ #: controllers/controller-admin.php:325
372
+ msgid "No, thanks. Don't ask again."
373
+ msgstr "Não, obrigado. Não pergunte novamente."
374
+
375
+ # @ wp-table-reloaded
376
+ #: controllers/controller-admin.php:353
377
  #, php-format
378
+ msgid "Table &quot;%s&quot; added successfully."
379
+ msgstr "Tabela &quot;%s&quot; adicionada com sucesso."
380
 
381
+ # @ wp-table-reloaded
382
+ #: controllers/controller-admin.php:384
383
+ #, php-format
384
+ msgid ""
385
+ "Table edited successfully. This Table now has the ID %s. You'll need to "
386
+ "adjust existing shortcodes accordingly."
387
+ msgstr ""
388
+ "Tabela editada com sucesso. Essa tabela agora tem o ID %s. Você precisará "
389
+ "ajustar manualmente os códigos já existentes."
390
 
391
+ # @ wp-table-reloaded
392
+ #: controllers/controller-admin.php:386
393
+ #, php-format
394
+ msgid ""
395
+ "The ID could not be changed from %s to %s, because there already is a Table "
396
+ "with that ID."
397
+ msgstr ""
398
+ "O ID não pode ser alterado de %s para %s porque já existe uma Tabela com "
399
+ "esse ID."
400
 
401
+ # @ wp-table-reloaded
402
+ #: controllers/controller-admin.php:389
403
+ msgid "Table edited successfully."
404
+ msgstr "Tabela editada com sucesso."
405
 
406
+ # @ wp-table-reloaded
407
+ #: controllers/controller-admin.php:438
408
+ msgid "Rows swapped successfully."
409
+ msgstr "Linhas trocadas com sucesso."
410
 
411
+ # @ wp-table-reloaded
412
+ #: controllers/controller-admin.php:459
413
+ msgid "Columns swapped successfully."
414
+ msgstr "Colunas trocadas com sucesso."
 
415
 
416
+ # @ wp-table-reloaded
417
+ #: controllers/controller-admin.php:500
418
+ msgid "Table sorted successfully."
419
+ msgstr "Tabela ordenada com sucesso."
420
 
421
+ # @ wp-table-reloaded
422
+ #: controllers/controller-admin.php:523
423
+ msgid "Row moved successfully."
424
+ msgstr "Linha movida com sucesso."
425
 
426
+ # @ wp-table-reloaded
427
+ #: controllers/controller-admin.php:550
428
+ msgid "Column moved successfully."
429
+ msgstr "Coluna movida com sucesso."
430
 
431
+ # @ wp-table-reloaded
432
+ #: controllers/controller-admin.php:558
433
+ msgid "Row could not be deleted."
434
+ msgid_plural "Rows could not be deleted."
435
+ msgstr[0] "A linha não pôde ser apagada."
436
+ msgstr[1] "As linhas não puderam ser apagadas."
437
 
438
+ # @ wp-table-reloaded
439
+ #: controllers/controller-admin.php:567
440
+ msgid "Row deleted successfully."
441
+ msgid_plural "Rows deleted successfully."
442
+ msgstr[0] "A linha foi apagada com sucesso."
443
+ msgstr[1] "As linhas foram apagadas com sucesso."
444
 
445
+ # @ wp-table-reloaded
446
+ #: controllers/controller-admin.php:577
447
+ msgid "Column could not be deleted."
448
+ msgid_plural "Columns could not be deleted."
449
+ msgstr[0] "A coluna não pôde ser apagada."
450
+ msgstr[1] "As colunas não puderam ser apagadas."
451
 
452
+ # @ wp-table-reloaded
453
+ #: controllers/controller-admin.php:590
454
+ msgid "Column deleted successfully."
455
+ msgid_plural "Columns deleted successfully."
456
+ msgstr[0] "A coluna foi apagada com sucesso."
457
+ msgstr[1] "As colunas foram apagadas com sucesso."
458
 
459
+ # @ wp-table-reloaded
460
+ #: controllers/controller-admin.php:613
461
+ msgid "Row inserted successfully."
462
+ msgid_plural "Rows inserted successfully."
463
+ msgstr[0] "Linha adicionada com sucesso."
464
+ msgstr[1] "Linhas adicionadas com sucesso."
465
 
466
+ # @ wp-table-reloaded
467
+ #: controllers/controller-admin.php:640
468
+ msgid "Column inserted successfully."
469
+ msgid_plural "Columns inserted successfully."
470
+ msgstr[0] "Coluna adicionada com sucesso."
471
+ msgstr[1] "Colunas adicionadas com sucesso."
472
 
473
+ # @ wp-table-reloaded
474
+ #: controllers/controller-admin.php:655
475
+ msgid "Row added successfully."
476
+ msgid_plural "Rows added successfully."
477
+ msgstr[0] "Linha adicionada com sucesso."
478
+ msgstr[1] "Linhas adicionadas com sucesso."
479
 
480
+ # @ wp-table-reloaded
481
+ #: controllers/controller-admin.php:669
482
+ msgid "Column added successfully."
483
+ msgid_plural "Columns added successfully."
484
+ msgstr[0] "Coluna adicionada com sucesso."
485
+ msgstr[1] "Colunas adicionadasc om sucesso."
486
 
487
+ # @ wp-table-reloaded
488
+ #: controllers/controller-admin.php:676
489
+ msgid "Could not add Custom Data Field, because you did not enter a name."
490
+ msgstr ""
491
+ "Não foi possível inserir o Campo de Dados Personalizado porque você não "
492
+ "digitou um nome."
493
 
494
+ # @ wp-table-reloaded
495
+ #: controllers/controller-admin.php:681
496
+ msgid ""
497
+ "Could not add Custom Data Field, because the name you entered is reserved "
498
+ "for other table data."
499
+ msgstr ""
500
+ "Não foi possível adicionar o Campo de Dados Personalizado porque o nome que "
501
+ "você escolheu está reservado por outra tabela de dados."
502
 
503
+ # @ wp-table-reloaded
504
+ #: controllers/controller-admin.php:687
505
+ msgid ""
506
+ "Could not add Custom Data Field, because the name contained illegal "
507
+ "characters."
508
+ msgstr ""
509
+ "Não foi possível adicionar o Campo de Dados Personalizado porque o nome "
510
+ "contém caracteres ilegais."
511
 
512
+ # @ wp-table-reloaded
513
+ #: controllers/controller-admin.php:691
514
+ msgid ""
515
+ "Could not add Custom Data Field, because a Field with that name already "
516
+ "exists."
517
+ msgstr ""
518
+ "Não foi possível adicionar o Campo de Dados Personalizado porque já existe "
519
+ "um Campo com este nome."
520
 
521
+ # @ wp-table-reloaded
522
+ #: controllers/controller-admin.php:697
523
+ msgid "Custom Data Field added successfully."
524
+ msgstr "Campo de Dados Personalizado adicionado com sucesso."
525
 
526
+ # @ wp-table-reloaded
527
+ #: controllers/controller-admin.php:737 controllers/controller-admin.php:793
528
+ msgid "Copy of"
529
+ msgstr "Cópia de"
 
 
530
 
531
+ # @ wp-table-reloaded
532
+ #: controllers/controller-admin.php:741
533
+ msgid "Table copied successfully."
534
+ msgid_plural "Tables copied successfully."
535
+ msgstr[0] "Tabela copiada com sucesso."
536
+ msgstr[1] "Tabelas copiadas com sucesso."
537
 
538
+ # @ wp-table-reloaded
539
+ #: controllers/controller-admin.php:747
540
+ msgid "Table deleted successfully."
541
+ msgid_plural "Tables deleted successfully."
542
+ msgstr[0] "Tabela excluída com sucesso."
543
+ msgstr[1] "Tabelas excluídas com sucesso."
544
 
545
+ # @ wp-table-reloaded
546
+ #: controllers/controller-admin.php:768 controllers/controller-admin.php:923
547
+ #: controllers/controller-admin.php:961
548
+ msgid "Table imported successfully."
549
+ msgid_plural "Tables imported successfully."
550
+ msgstr[0] "Tabela importada com sucesso."
551
+ msgstr[1] "Tabelas importadas com sucesso."
552
 
553
+ # @ wp-table-reloaded
554
+ #: controllers/controller-admin.php:775
555
+ msgid "You did not select any tables!"
556
+ msgstr "Você não selecionou tabela alguma."
557
 
558
+ # @ wp-table-reloaded
559
+ #: controllers/controller-admin.php:798
560
+ #, php-format
561
+ msgid "Table &quot;%s&quot; copied successfully."
562
+ msgstr "Tabela &quot;%s&quot; copiada com sucesso."
563
 
564
+ # @ wp-table-reloaded
565
+ #: controllers/controller-admin.php:816
566
+ #, php-format
567
+ msgid "Table &quot;%s&quot; deleted successfully."
568
+ msgstr "Tabela &quot;%s&quot; apagada com sucesso."
569
 
570
+ # @ wp-table-reloaded
571
+ #: controllers/controller-admin.php:824
572
+ msgid "Custom Data Field deleted successfully."
573
+ msgstr "Campo de Dados Personalizado apagado com sucesso."
574
 
575
+ # @ wp-table-reloaded
576
+ #: controllers/controller-admin.php:826
577
+ msgid "Custom Data Field could not be deleted."
578
+ msgstr "Campo de Dados Personalizado não pode ser apagado."
579
 
580
+ # @ wp-table-reloaded
581
+ #: controllers/controller-admin.php:832
582
+ msgid "Delete failed."
583
+ msgstr "A exclusão falhou."
584
 
585
+ # @ wp-table-reloaded
586
+ #: controllers/controller-admin.php:864 controllers/controller-admin.php:874
587
+ #: controllers/controller-admin.php:885
588
+ msgid "Imported Table"
589
+ msgstr "Tabela Importada"
590
 
591
+ # @ wp-table-reloaded
592
+ #: controllers/controller-admin.php:865 controllers/controller-admin.php:886
593
+ #, php-format
594
+ msgid "from %s"
595
+ msgstr "de %s"
596
 
597
+ # @ wp-table-reloaded
598
+ #: controllers/controller-admin.php:875
599
+ msgid "via form"
600
+ msgstr "via formulário"
601
+
602
+ # @ wp-table-reloaded
603
+ #: controllers/controller-admin.php:902 controllers/controller-admin.php:939
604
+ msgid "Table could not be imported."
605
+ msgstr "Não foi possível importar a tabela."
606
+
607
+ # @ wp-table-reloaded
608
+ #: controllers/controller-admin.php:919
609
+ #, php-format
610
+ msgid "Table %s (%s) replaced successfully."
611
+ msgstr "Tabela %s (%s) substituída com sucesso."
612
+
613
+ # @ wp-table-reloaded
614
+ #: controllers/controller-admin.php:969 controllers/controller-admin.php:1164
615
+ msgid "You do not have sufficient rights to perform this action."
616
+ msgstr "Você não tem permissão para executar essa ação."
617
+
618
+ # @ wp-table-reloaded
619
+ #: controllers/controller-admin.php:976
620
+ msgid "You did not upload a WP-Table Reloaded dump file."
621
+ msgstr "Você não fez o upload do arquivo de dump do WP-Table Reloaded."
622
+
623
+ # @ wp-table-reloaded
624
+ #: controllers/controller-admin.php:985
625
+ msgid "The uploaded dump file is empty. Please upload a valid dump file."
626
+ msgstr ""
627
+ "O arquivo de dump enviado está vazio. Por favor, envie um arquivo de dump "
628
+ "válido."
629
+
630
+ # @ wp-table-reloaded
631
+ #: controllers/controller-admin.php:1013
632
+ msgid "All Tables, Settings and Options were successfully imported."
633
+ msgstr "Todas as Tabelas, Configurações e Opções foram importadas com sucesso."
634
+
635
+ # @ wp-table-reloaded
636
+ #: controllers/controller-admin.php:1042
637
+ #, php-format
638
+ msgid "Table &quot;%s&quot; exported successfully."
639
+ msgstr "Tabela &quot;%s&quot; exportada com sucesso."
640
+
641
+ # @ wp-table-reloaded
642
+ #: controllers/controller-admin.php:1087 views/view-options.php:233
643
+ msgid "You do not have sufficient rights to access the Plugin Options."
644
+ msgstr "Você não tem permissão para acessar as opções do plugin."
645
+
646
+ # @ wp-table-reloaded
647
+ #: controllers/controller-admin.php:1145
648
+ msgid "Options saved successfully."
649
+ msgstr "Opções salvas com sucesso."
650
+
651
+ #: controllers/controller-admin.php:1148
652
+ #, php-format
653
+ msgid "<a href=\"%s\">Click here to Proceed.</a>"
654
+ msgstr "<a href=\"%s\">Clique aqui para proceder.</a>"
655
+
656
+ # @ wp-table-reloaded
657
+ #: controllers/controller-admin.php:1214
658
+ msgid "There is no table with this ID!"
659
+ msgstr "Não existe tabela com este ID!"
660
+
661
+ # @ wp-table-reloaded
662
+ #: controllers/controller-admin.php:1241
663
+ msgid ""
664
+ "Thank you very much! Your donation is highly appreciated. You just "
665
+ "contributed to the further development of WP-Table Reloaded!"
666
+ msgstr ""
667
+ "Muito obrigado! Sua doação é muito bem-vinda. Você acaba de contribuir para "
668
+ "o desenvolvimento do WP-Table Reloaded!"
669
+
670
+ # @ wp-table-reloaded
671
+ #: controllers/controller-admin.php:1243
672
+ #, php-format
673
+ msgid ""
674
+ "No problem! I still hope you enjoy the benefits that WP-Table Reloaded "
675
+ "brings to you. If you should want to change your mind, you'll always find "
676
+ "the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</"
677
+ "a>."
678
+ msgstr ""
679
+ "Sem problemas! Eu ainda desejo que você aproveite os benefícios que o WP-"
680
+ "Table Reloaded traz à você. Se mudar de idéia, você sempre encontrará o "
681
+ "botão &quot;%s&quot; no <a href=\"%s\">site do WP-Table Reloaded</a>."
682
+
683
+ # @ wp-table-reloaded
684
+ #: controllers/controller-admin.php:1243 controllers/controller-admin.php:1682
685
+ msgid "Donate"
686
+ msgstr "Contribua"
687
+
688
+ # @ wp-table-reloaded
689
+ #: controllers/controller-admin.php:1266 controllers/controller-admin.php:1273
690
+ msgid "List of Tables"
691
+ msgstr "Lista de Tabelas"
692
+
693
+ # @ wp-table-reloaded
694
+ #: controllers/controller-admin.php:1266 controllers/controller-admin.php:1270
695
+ #: controllers/controller-admin.php:1272
696
+ msgid "WP-Table Reloaded"
697
+ msgstr "WP-Table Reloaded"
698
+
699
+ # @ wp-table-reloaded
700
+ #: controllers/controller-admin.php:1267 controllers/controller-admin.php:1303
701
+ msgid "Add new Table"
702
+ msgstr "Adicionar nova Tabela"
703
 
704
+ # @ wp-table-reloaded
705
+ #: controllers/controller-admin.php:1268 controllers/controller-admin.php:1304
706
+ msgid "Import a Table"
707
+ msgstr "Importar uma Tabela"
708
 
709
+ # @ wp-table-reloaded
710
+ #: controllers/controller-admin.php:1269 controllers/controller-admin.php:1305
711
+ msgid "Export a Table"
712
+ msgstr "Exportar uma Tabela"
713
 
714
+ # @ wp-table-reloaded
715
+ #: controllers/controller-admin.php:1270 controllers/controller-admin.php:1312
716
+ #: views/view-edit.php:350 views/view-edit.php:365 views/view-export.php:10
717
+ msgid "Plugin Options"
718
+ msgstr "Opções do Plugin"
719
 
720
+ # @ wp-table-reloaded
721
+ #: controllers/controller-admin.php:1271
722
+ msgid "About WP-Table Reloaded"
723
+ msgstr "Sobre o WP-Table Reloaded"
724
 
725
+ # @ wp-table-reloaded
726
+ #: controllers/controller-admin.php:1279
727
+ #, php-format
728
+ msgid "Edit Table &quot;%s&quot; (ID %s)"
729
+ msgstr "Editar tabela &quot;%s&quot; (ID %s)"
730
 
731
+ # @ wp-table-reloaded
732
+ #: controllers/controller-admin.php:1280
733
+ #, php-format
734
+ msgid "Preview of Table &quot;%s&quot; (ID %s)"
735
+ msgstr "Amostra da Tabela &quot;%s&quot; (ID %s)"
736
 
737
+ # @ wp-table-reloaded
738
+ #: controllers/controller-admin.php:1302 views/view-options.php:83
739
+ msgid "List Tables"
740
+ msgstr "Listar Tabelas"
741
 
742
+ # @ wp-table-reloaded
743
+ #: controllers/controller-admin.php:1313
744
+ msgid "About the plugin"
745
+ msgstr "Sobre o plugin"
746
 
747
+ # @ wp-table-reloaded
748
+ #: controllers/controller-admin.php:1678
749
+ msgid "WP-Table Reloaded Plugin Page"
750
+ msgstr "Página do plugin WP-Table Reloaded"
751
 
752
+ # @ wp-table-reloaded
753
+ #: controllers/controller-admin.php:1678
754
+ msgid "Plugin Page"
755
+ msgstr "Página do Plugin"
756
 
757
+ # @ wp-table-reloaded
758
+ #: controllers/controller-admin.php:1679
759
+ msgid "Frequently Asked Questions"
760
+ msgstr "Perguntas Frequentes"
761
 
762
+ # @ wp-table-reloaded
763
+ #: controllers/controller-admin.php:1679
764
+ msgid "FAQ"
765
+ msgstr "FAQ"
766
 
767
+ # @ wp-table-reloaded
768
+ #: controllers/controller-admin.php:1680
769
+ msgid "Support"
770
+ msgstr "Suporte"
771
 
772
+ # @ wp-table-reloaded
773
+ #: controllers/controller-admin.php:1681
774
+ msgid "Plugin Documentation"
775
+ msgstr "Documentação do Plugin"
776
 
777
+ # @ wp-table-reloaded
778
+ #: controllers/controller-admin.php:1681
779
+ msgid "Documentation"
780
+ msgstr "Documentação"
 
781
 
782
+ # @ wp-table-reloaded
783
+ #: controllers/controller-admin.php:1682
784
+ msgid "Support WP-Table Reloaded with your donation!"
785
+ msgstr "Suporte WP-Table dro Reloaded com a sua doação!"
 
 
 
 
 
 
786
 
787
+ # @ wp-table-reloaded
788
+ #: controllers/controller-admin.php:1721
789
+ msgid ""
790
+ "Do you really want to activate this? You should only do that right before "
791
+ "uninstallation!"
792
+ msgstr ""
793
+ "Você deseja mesmo ativar isto? Você só deve fazer isso exatamente antes de "
794
+ "desinstalar!"
795
 
796
+ # @ wp-table-reloaded
797
+ #: controllers/controller-admin.php:1722
798
  msgid "URL of link to insert"
799
  msgstr "URL do link para inserir"
800
 
801
+ # @ wp-table-reloaded
802
+ #: controllers/controller-admin.php:1723
803
  msgid "Text of link"
804
  msgstr "Texto do link"
805
 
806
+ # @ wp-table-reloaded
807
+ #: controllers/controller-admin.php:1724
808
+ msgid ""
809
+ "To insert the following HTML code for a link into a cell, just click the "
810
+ "cell after closing this dialog."
811
+ msgstr ""
812
+ "Para inserir o seguinte código HTML para um link em uma célula, basta clicar "
813
+ "na célula depois de fechar este diálogo."
814
 
815
+ # @ wp-table-reloaded
816
+ #: controllers/controller-admin.php:1725
817
+ #, fuzzy
818
+ msgid ""
819
+ "To insert an image, click &quot;OK&quot; and then click into the cell into "
820
+ "which you want to insert the image."
821
+ msgstr ""
822
+ "Para inserir uma imagem, clique na célula dentro da qual pretente inserir a "
823
+ "imagem."
824
 
825
+ # @ wp-table-reloaded
826
+ #: controllers/controller-admin.php:1725
827
+ msgid ""
828
+ "The Media Library will open, from which you can select the desired image or "
829
+ "insert the image URL."
830
+ msgstr ""
831
+ "A Biblioteca de Mídia irá abrir, a partir da qual você pode selecionar a "
832
+ "imagem desejada ou inserir o URL da imagem."
833
 
834
+ # @ wp-table-reloaded
835
+ #: controllers/controller-admin.php:1725
836
+ #, php-format
837
+ msgid "Click the &quot;%s&quot; button to insert the image."
838
+ msgstr "Clique o botão &quot;%s&quot; para inserir a imagem."
839
 
840
+ #: controllers/controller-admin.php:1725
841
+ msgid "Insert into Post"
842
+ msgstr "Inserir no Post"
 
843
 
844
+ #: controllers/controller-admin.php:1726
845
+ msgid ""
846
+ "To combine cells within a row, click into the cell to the right of the cell "
847
+ "that has the content the combined cells shall have."
848
+ msgstr ""
849
+ "Para combinar células na mesma linha, clique na célula a direita da célula "
850
+ "com o conteúdo que as células combinadas devem ter."
851
 
852
+ #: controllers/controller-admin.php:1727
853
+ msgid ""
854
+ "To combine cells within a column, click into the cell below the cell that "
855
+ "has the content the combined cells shall have."
856
+ msgstr ""
857
+ "Para combinar células na mesma coluna, clique na célula abaixo da célula com "
858
+ "o conteúdo que as células combinadas devem ter."
859
 
860
+ # @ wp-table-reloaded
861
+ #: controllers/controller-admin.php:1728
862
+ msgid "Do you want to copy the selected tables?"
863
+ msgstr "Você deseja copiar as tabelas selecionadas?"
864
 
865
+ # @ wp-table-reloaded
866
+ #: controllers/controller-admin.php:1729
867
+ msgid ""
868
+ "The selected tables and all content will be erased. Do you really want to "
869
+ "delete them?"
870
+ msgstr ""
871
+ "As tabelas selecionadas, e todo o seu conteúdo, serão excluídas. Você deseja "
872
+ "mesmo excluí-las?"
873
 
874
+ # @ wp-table-reloaded
875
+ #: controllers/controller-admin.php:1730
876
+ msgid ""
877
+ "Do you really want to import the selected tables from the wp-Table plugin?"
878
+ msgstr "Você deseja mesmo importar as tabelas selecionadas do plugin wp-Table?"
879
 
880
+ # @ wp-table-reloaded
881
+ #: controllers/controller-admin.php:1731
882
+ msgid "Do you want to copy this table?"
883
+ msgstr "Você deseja copiar esta tabela?"
 
884
 
885
+ # @ wp-table-reloaded
886
+ #: controllers/controller-admin.php:1732
887
+ msgid ""
888
+ "The complete table and all content will be erased. Do you really want to "
889
+ "delete it?"
890
+ msgstr ""
891
+ "Todas as tabelas e seu conteúdo serão excluídos. Você deseja mesmo excluí-"
892
+ "las?"
893
 
894
+ # @ wp-table-reloaded
895
+ #: controllers/controller-admin.php:1733
896
+ msgid "Do you really want to delete the selected rows?"
897
+ msgstr "Você realmente deseja excluir os registros selecionados?"
 
 
898
 
899
+ # @ wp-table-reloaded
900
+ #: controllers/controller-admin.php:1734
901
+ msgid "Do you really want to delete the selected columns?"
902
+ msgstr "Você realmente quer apagar as colunas selecionadas?"
 
 
903
 
904
+ # @ wp-table-reloaded
905
+ #: controllers/controller-admin.php:1735 controllers/controller-admin.php:1739
906
+ #: controllers/controller-admin.php:1741
907
+ msgid "You have not selected any rows."
908
+ msgstr "Você não selecionou nenhum linhas."
909
 
910
+ # @ wp-table-reloaded
911
+ #: controllers/controller-admin.php:1736 controllers/controller-admin.php:1740
912
+ #: controllers/controller-admin.php:1742
913
+ msgid "You have not selected any columns."
914
+ msgstr "Você não selecionou nenhum colunas."
915
 
916
+ # @ wp-table-reloaded
917
+ #: controllers/controller-admin.php:1737
918
+ msgid "You can not delete all rows of the table at once!"
919
+ msgstr "Você não pode excluir todas as linhas da tabela de uma só vez!"
 
920
 
921
+ # @ wp-table-reloaded
922
+ #: controllers/controller-admin.php:1738
923
+ msgid "You can not delete all columns of the table at once!"
924
+ msgstr "Você não pode excluir todas as colunas da tabela de uma só vez!"
 
 
925
 
926
+ # @ wp-table-reloaded
927
+ #: controllers/controller-admin.php:1743
928
+ msgid "Do you really want to import this table from the wp-Table plugin?"
929
+ msgstr "Você deseja mesmo importar esta tabela do plugin wp-Table?"
 
930
 
931
+ # @ wp-table-reloaded
932
+ #: controllers/controller-admin.php:1744
933
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
934
+ msgstr "Você deseja mesmo desinstalar o plugin e excluir todo o conteúdo?"
935
 
936
+ # @ wp-table-reloaded
937
+ #: controllers/controller-admin.php:1745
938
+ msgid "Are you really sure?"
939
+ msgstr "Tem certeza?"
940
 
941
+ # @ wp-table-reloaded
942
+ #: controllers/controller-admin.php:1746
943
+ msgid "Do you really want to change the ID of the table?"
944
+ msgstr "Você realmente deseja mudar o ID desta tabela?"
945
 
946
+ # @ wp-table-reloaded
947
+ #: controllers/controller-admin.php:1747
948
+ msgid "To show this Custom Data Field, use this shortcode:"
949
+ msgstr "Para mostrar este Campo de Dados Personalizado use este código:"
950
 
951
+ # @ wp-table-reloaded
952
+ #: controllers/controller-admin.php:1748
953
+ msgid "To show this table, use this shortcode:"
954
+ msgstr "Para mostrar esta tabela, use este código:"
955
 
956
+ # @ wp-table-reloaded
957
+ #: controllers/controller-admin.php:1749
958
+ msgid ""
959
+ "Warning: You will lose all current Tables and Settings! You should create a "
960
+ "backup first. Be warned!"
961
+ msgstr ""
962
+ "Atenção: Você perderá todos os quadros atuais e Configurações! Você deve "
963
+ "criar um backup primeiro. Esteja avisado!"
964
 
965
+ # @ wp-table-reloaded
966
+ #: controllers/controller-admin.php:1750
967
+ msgid ""
968
+ "You have made changes to the content of this table and not yet saved them."
969
+ msgstr "Você fez mudanças no conteúdo desta tabela e ainda não salvou."
970
 
971
+ # @ wp-table-reloaded
972
+ #: controllers/controller-admin.php:1750
973
+ #, php-format
974
+ msgid ""
975
+ "You should first click &quot;%s&quot; or they will be lost if you navigate "
976
+ "away from this page."
977
+ msgstr ""
978
+ "Você deve clicar primeiro no &quot;%s&quot; ou eles serão perdidos se você "
979
+ "navegue fora desta página."
980
 
981
+ # @ wp-table-reloaded
982
+ #: controllers/controller-admin.php:1750 views/view-edit.php:41
983
+ #: views/view-edit.php:253 views/view-edit.php:413 views/view-edit.php:464
984
+ msgid "Update Changes"
985
+ msgstr "Atualizar Mudanças"
986
 
987
+ # @ wp-table-reloaded
988
+ #: controllers/controller-admin.php:1799 views/view-about.php:14
989
+ #: views/view-list.php:2
990
+ msgid "Table"
991
+ msgstr "Tabela"
992
 
993
+ # @ wp-table-reloaded
994
+ #: controllers/controller-admin.php:1800
995
+ #, fuzzy
996
+ msgid "Insert a Table"
997
+ msgstr "Importar uma Tabela"
998
 
999
+ # @ wp-table-reloaded
1000
+ #: controllers/controller-admin.php:1857
1001
+ msgid "Please wait..."
1002
+ msgstr "Aguarde ..."
 
1003
 
1004
+ # @ wp-table-reloaded
1005
+ #: controllers/controller-admin.php:1858
1006
+ msgid "Show _MENU_ Tables"
1007
+ msgstr "Mostrar _MENU_ Tabelas"
 
1008
 
1009
+ #: controllers/controller-admin.php:1859
1010
+ msgid "All"
1011
+ msgstr "Todos"
 
1012
 
1013
+ # @ wp-table-reloaded
1014
+ #: controllers/controller-admin.php:1860 views/view-ajax_list.php:53
1015
+ #: views/view-export.php:72 views/view-list.php:87
1016
+ msgid "No tables were found."
1017
+ msgstr "Nenhuma tabela foi encontrada."
1018
 
1019
+ # @ wp-table-reloaded
1020
+ #: controllers/controller-admin.php:1861
1021
+ msgid "_START_ to _END_ of _TOTAL_ Tables"
1022
+ msgstr "_START_ par _END_ de _TOTAL_ Tabelas"
1023
 
1024
+ # @ wp-table-reloaded
1025
+ #: controllers/controller-admin.php:1862
1026
+ msgid "(filtered from _MAX_ Tables)"
1027
+ msgstr "(filtrado de _MAX_ Tabelas)"
1028
 
1029
+ # @ wp-table-reloaded
1030
+ #: controllers/controller-admin.php:1863
1031
+ msgid "Filter:"
1032
+ msgstr "Filtro:"
1033
 
1034
+ # @ wp-table-reloaded
1035
+ #: controllers/controller-admin.php:1864
1036
+ msgid "First"
1037
+ msgstr "Primeiro"
1038
 
1039
+ # @ wp-table-reloaded
1040
+ #: controllers/controller-admin.php:1865
1041
+ msgid "Back"
1042
+ msgstr "Voltar"
1043
 
1044
+ # @ wp-table-reloaded
1045
+ #: controllers/controller-admin.php:1866
1046
+ msgid "Next"
1047
+ msgstr "Próximo"
1048
 
1049
+ # @ wp-table-reloaded
1050
+ #: controllers/controller-admin.php:1867
1051
+ msgid "Last"
1052
+ msgstr "Último"
1053
 
1054
+ # @ wp-table-reloaded
1055
+ #: views/view-about.php:5
1056
+ msgid "Plugin Purpose"
1057
+ msgstr "Proposta do Plugin"
1058
 
1059
+ # @ wp-table-reloaded
1060
+ #: views/view-about.php:7
1061
+ msgid ""
1062
+ "WP-Table Reloaded allows you to create and manage tables in the admin-area "
1063
+ "of WordPress."
1064
+ msgstr ""
1065
+ "WP-Table Reloaded lhe permite criar e gerenciar tabelas na área de admin do "
1066
+ "WordPress."
1067
 
1068
+ # @ wp-table-reloaded
1069
+ #: views/view-about.php:7
1070
+ msgid ""
1071
+ "Those tables may contain strings, numbers and even HTML (e.g. to include "
1072
+ "images or links)."
1073
+ msgstr ""
1074
+ "Estas tabelas podem conter texto, números e até HTML (por exemplo, incluir "
1075
+ "imagens ou links)."
1076
 
1077
+ # @ wp-table-reloaded
1078
+ #: views/view-about.php:7
1079
+ msgid ""
1080
+ "You can then show the tables in your posts, on your pages or in text-widgets "
1081
+ "by using a shortcode."
1082
+ msgstr ""
1083
+ "Você pode então mostrar as tabelas em suas mensagens, em suas páginas ou em "
1084
+ "texto widgets usando um shortcode."
1085
 
1086
+ # @ wp-table-reloaded
1087
+ #: views/view-about.php:7
1088
+ msgid ""
1089
+ "If you want to show your tables anywhere else in your theme, you can use a "
1090
+ "template tag function."
1091
+ msgstr ""
1092
+ "Se você quiser mostrar suas tabelas em qualquer outro lugar no seu tema, "
1093
+ "você pode usar uma \"template tag function\"."
1094
 
1095
+ # @ wp-table-reloaded
1096
+ #: views/view-about.php:12
1097
+ msgid "Usage"
1098
+ msgstr "Uso"
1099
 
1100
+ # @ wp-table-reloaded
1101
+ #: views/view-about.php:14
1102
+ msgid "At first you should add or import a table."
1103
+ msgstr "Primeiro você deve adicionar ou importar uma tabela."
 
 
1104
 
1105
+ # @ wp-table-reloaded
1106
+ #: views/view-about.php:14
1107
+ msgid ""
1108
+ "This means that you either let the plugin create an empty table for you or "
1109
+ "that you load an existing table from either a CSV, XML or HTML file."
1110
+ msgstr ""
1111
+ "Isso quer dizer que ou você deixa o plugin criar uma tabela vazia pra você, "
1112
+ "ou você deve importar uma tabela existente de um arquivo CSV, XML ou HTML."
1113
 
1114
+ # @ wp-table-reloaded
1115
+ #: views/view-about.php:14
1116
+ msgid ""
1117
+ "Then you can edit your data or change the structure of your table (e.g. by "
1118
+ "inserting or deleting rows or columns, swaping rows or columns or sorting "
1119
+ "them) and select specific table options like alternating row colors or "
1120
+ "whether to print the name or description, if you want."
1121
+ msgstr ""
1122
+ "Depois disso você poderá editar o conteúdo ou mudar a estrutura da tabela "
1123
+ "(por exemplo, inserindo ou excluindo linhas e colunas, trocando elas de "
1124
+ "lugar ou organizando toda essa informação) e também selecionar opções "
1125
+ "especificamente para cada tabela, alternando as cores das linhas ou "
1126
+ "escolhendo se deseja ou não mostrar o nome da tabela e sua descrição."
1127
+
1128
+ # @ wp-table-reloaded
1129
+ #: views/view-about.php:14
1130
+ msgid ""
1131
+ "To easily add a link or an image to a cell, use the provided buttons. Those "
1132
+ "will ask you for the URL and a title. Then you can click into a cell and the "
1133
+ "corresponding HTML will be added to it for you."
1134
+ msgstr ""
1135
+ "Para adicionar facilmente um link ou imagem em uma célula, uso o botão "
1136
+ "específico. Ele irá pedir um endereço URL e um título, então você poderá "
1137
+ "clicar numa célula e o HTML correspondente será incluído pra você."
1138
 
1139
+ # @ wp-table-reloaded
1140
+ #: views/view-about.php:14 views/view-ajax_preview.php:5 views/view-edit.php:9
1141
+ #: views/view-list.php:2
1142
+ #, php-format
1143
+ msgid ""
1144
+ "To insert the table into a page, post or text-widget, copy the shortcode "
1145
+ "<strong>[table id=%s /]</strong> and paste it into the corresponding place "
1146
+ "in the editor."
1147
+ msgstr ""
1148
+ "Para inserir uma tabela em uma página, post ou widget de texto, copie o "
1149
+ "código <strong>[table id=%s /]</strong> e cole no lugar desejado no editor."
1150
 
1151
+ # @ wp-table-reloaded
1152
+ #: views/view-about.php:14
1153
  #, php-format
1154
+ msgid ""
1155
+ "You can also select the desired table from a list (after clicking the button "
1156
+ "&quot;%s&quot; in the editor toolbar) and the corresponding shortcode will "
1157
+ "be added for you."
1158
+ msgstr ""
1159
+ "Você também pode selecionar a tabela desejada de uma lista (após clicar no "
1160
+ "botão &quot;%s&quot; na barra de ferramentas do editor) e os shortcode "
1161
+ "correspondente será adicionado para você."
1162
 
1163
+ # @ wp-table-reloaded
1164
+ #: views/view-about.php:14
1165
+ msgid "Tables can be styled by changing and adding CSS commands."
1166
+ msgstr "As tabelas podem ser decorados, alterando e adicionando comandos CSS."
1167
+
1168
+ # @ wp-table-reloaded
1169
+ #: views/view-about.php:14
1170
+ msgid ""
1171
+ "The plugin ships with default CSS Stylesheets, which can be customized with "
1172
+ "own code or replaced with other Stylesheets."
1173
+ msgstr ""
1174
+ "Os navios plugin com folhas de estilo CSS padrão, que pode ser personalizado "
1175
+ "com um código próprio ou substituídas por outras folhas de estilo."
1176
+
1177
+ # @ wp-table-reloaded
1178
+ #: views/view-about.php:14
1179
+ msgid ""
1180
+ "For this, each table is given certain CSS classes that can be used as CSS "
1181
+ "selectors."
1182
+ msgstr ""
1183
+ "Para isso, cada tabela é dada certas classes de CSS que podem ser utilizados "
1184
+ "como seletores CSS."
1185
 
1186
+ # @ wp-table-reloaded
1187
+ #: views/view-about.php:14
1188
  #, php-format
1189
+ msgid ""
1190
+ "Please see the <a href=\"%s\">documentation</a> for a list of these "
1191
+ "selectors and for styling examples."
1192
+ msgstr ""
1193
+ "Consulte a <a href=\"%s\">documentação</a> para obter uma lista destes "
1194
+ "seletores e para denominar exemplos."
1195
 
1196
+ # @ wp-table-reloaded
1197
+ #: views/view-about.php:19
1198
+ msgid "More Information and Documentation"
1199
+ msgstr "Mais Informações e Documentação"
1200
 
1201
+ # @ wp-table-reloaded
1202
+ #: views/view-about.php:26
1203
+ msgid "Help and Support"
1204
+ msgstr "Ajuda e Suporte"
 
1205
 
1206
+ # @ wp-table-reloaded
1207
+ #: views/view-about.php:28
1208
+ #, php-format
1209
+ msgid ""
1210
+ "If you do not find an answer there, please <a href=\"%s\">open a new thread</"
1211
+ "a> in the WordPress Support Forums with the tag &quot;wp-table-"
1212
+ "reloaded&quot;."
1213
+ msgstr ""
1214
+ "Se você não encontrar uma resposta lá, por favor, <a href=\"%s\">abra um "
1215
+ "novo tópico</a> no Fórum do WordPress com a tag &quot;wp-table-"
1216
+ "reloaded&quot;."
1217
+
1218
+ # @ wp-table-reloaded
1219
+ #: views/view-about.php:33
1220
+ msgid "Author and License"
1221
+ msgstr "Autor e Licença"
1222
 
1223
+ # @ wp-table-reloaded
1224
+ #: views/view-about.php:35
1225
  #, php-format
1226
+ msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
1227
+ msgstr "Este plugin foi escrito por <a href=\"%s\">Tobias B&auml;thge</a>."
1228
 
1229
+ # @ wp-table-reloaded
1230
+ #: views/view-about.php:35
1231
+ msgid "It is licensed as Free Software under GPL 2."
1232
+ msgstr "É licenciado como Software Livre sob a GPL 2."
 
1233
 
1234
+ # @ wp-table-reloaded
1235
+ #: views/view-about.php:35
1236
  #, php-format
1237
+ msgid ""
1238
+ "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
1239
+ msgstr ""
1240
+ "Por favor, classifique o plugin no <a href=\"%s\">WordPress Plugin "
1241
+ "Directory</a>."
1242
 
1243
+ # @ wp-table-reloaded
1244
+ #: views/view-about.php:35
1245
+ msgid ""
1246
+ "Donations and good ratings encourage me to further develop the plugin and to "
1247
+ "provide countless hours of support. Any amount is appreciated! Thanks!"
1248
+ msgstr ""
1249
+ "Doações e boas avaliações me dão ânimo para continuar desenvolvendo o plugin "
1250
+ "e oferecendo incontáveis horas de suporte. Qualquer quantia é muito bem-"
1251
+ "vinda! Obrigado!"
1252
 
1253
+ # @ wp-table-reloaded
1254
+ #: views/view-about.php:40
1255
+ msgid "Credits and Thanks"
1256
+ msgstr "Créditos e Agradecimentos"
1257
 
1258
+ # @ wp-table-reloaded
1259
+ #: views/view-about.php:43
1260
+ msgid ""
1261
+ "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for "
1262
+ "the original wp-Table plugin,"
1263
+ msgstr ""
1264
+ "Meu muito obrigado para o <a href=\"http://alexrabe.boelinger.com/\">Alex "
1265
+ "Rabe</a> pelo plugin original \"wp-Table plugin\","
1266
 
1267
+ # @ wp-table-reloaded
1268
+ #: views/view-about.php:44
1269
+ msgid ""
1270
+ "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables "
1271
+ "jQuery plugin</a>,"
1272
+ msgstr ""
1273
+ "Allan Jardine para o <a href=\"http://www.datatables.net/\">jQuery plugin "
1274
+ "DataTables,</a>"
1275
 
1276
+ # @ wp-table-reloaded
1277
+ #: views/view-about.php:45
1278
+ msgid ""
1279
+ "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter "
1280
+ "jQuery plugin</a>,"
1281
+ msgstr ""
1282
+ "Christian Bach pelo <a href=\"http://www.tablesorter.com/\">Tablesorter "
1283
+ "jQuery plugin</a>,"
1284
 
1285
+ # @ wp-table-reloaded
1286
+ #: views/view-about.php:46
1287
+ msgid ""
1288
+ "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/"
1289
+ "\">Tablesorter Extended</a>,"
1290
+ msgstr ""
1291
+ "Soeren Krings a sua extensão <a href=\"http://tablesorter.openwerk.de/"
1292
+ "\">Tablesorter Extended</a>,"
1293
 
1294
+ # @ wp-table-reloaded
1295
+ #: views/view-about.php:47
1296
+ msgid "the submitters of translations:"
1297
+ msgstr "o pessoal que contriuiu com traduções:"
1298
 
1299
+ #: views/view-about.php:82
1300
+ #, php-format
1301
+ msgid "%s (thanks to %s)"
1302
+ msgstr "%s (obrigado à %s)"
1303
 
1304
+ # @ wp-table-reloaded
1305
+ #: views/view-about.php:85
1306
+ msgid ""
1307
+ "and to all donors, contributors, supporters, reviewers and users of the "
1308
+ "plugin!"
1309
+ msgstr ""
1310
+ "pra todos que doaram, contribuíram, ajudaram, apoiaram e também pra todos os "
1311
+ "usuários do plugin!"
1312
 
1313
+ # @ wp-table-reloaded
1314
+ #: views/view-about.php:91
1315
+ msgid "Debug and Version Information"
1316
+ msgstr "Informações de Versão e Debug"
1317
 
1318
+ # @ wp-table-reloaded
1319
+ #: views/view-about.php:91 views/view-edit.php:15 views/view-edit.php:51
1320
+ #: views/view-edit.php:104 views/view-edit.php:262 views/view-edit.php:361
1321
+ #: views/view-edit.php:422 views/view-options.php:19 views/view-options.php:70
1322
+ #: views/view-options.php:91 views/view-options.php:185
1323
+ #: views/view-options.php:196
1324
+ msgctxt "expand"
1325
+ msgid "Hide"
1326
+ msgstr "Esconder"
1327
 
1328
+ # @ wp-table-reloaded
1329
+ #: views/view-about.php:91 views/view-edit.php:15 views/view-edit.php:51
1330
+ #: views/view-edit.php:104 views/view-edit.php:262 views/view-edit.php:361
1331
+ #: views/view-edit.php:422 views/view-options.php:19 views/view-options.php:70
1332
+ #: views/view-options.php:91 views/view-options.php:185
1333
+ #: views/view-options.php:196
1334
+ msgid "Expand"
1335
+ msgstr "Expandir"
1336
 
1337
+ # @ wp-table-reloaded
1338
+ #: views/view-about.php:94
1339
+ msgid "You are using the following versions of the software."
1340
+ msgstr "Você está usando as seguintes versões do software."
1341
 
1342
+ # @ wp-table-reloaded
1343
+ #: views/view-about.php:94
1344
+ msgid "Please provide this information in bug reports."
1345
+ msgstr "Favor fornecer essas informações em relatórios de bugs."
1346
 
1347
+ # @ wp-table-reloaded
1348
+ #: views/view-about.php:97
1349
  msgid "Plugin installed"
1350
  msgstr "Plugin instalado"
1351
 
1352
+ # @ wp-table-reloaded
1353
+ #: views/view-add.php:4
1354
+ msgid ""
1355
+ "To add a new table, enter its name, a description (optional) and the number "
1356
+ "of rows and columns."
1357
+ msgstr ""
1358
+ "Para adicionar uma nova tabela, digite seu nome, uma descrição (opcional) e "
1359
+ "o número de linhas e colunas."
1360
 
1361
+ # @ wp-table-reloaded
1362
+ #: views/view-add.php:4
1363
+ msgid "You may also add, insert or delete rows and columns later."
1364
+ msgstr "Você também poderá inserir ou apagar linhas e colunas depois."
1365
 
1366
+ # @ wp-table-reloaded
1367
+ #: views/view-add.php:13 views/view-ajax_list.php:14
1368
+ #: views/view-ajax_list.php:22 views/view-edit.php:23 views/view-edit.php:283
1369
+ #: views/view-import.php:100 views/view-import.php:109 views/view-list.php:15
1370
+ #: views/view-list.php:25
1371
+ msgid "Table Name"
1372
+ msgstr "Nome da Tabela"
1373
 
1374
+ # @ wp-table-reloaded
1375
+ #: views/view-add.php:14
1376
+ msgid "Enter Table Name"
1377
+ msgstr "Digite o Nome da Tabela"
1378
 
1379
+ # @ wp-table-reloaded
1380
+ #: views/view-add.php:17 views/view-ajax_list.php:15
1381
+ #: views/view-ajax_list.php:23 views/view-edit.php:27
1382
+ #: views/view-import.php:101 views/view-import.php:110 views/view-list.php:16
1383
+ #: views/view-list.php:26
1384
+ msgid "Description"
1385
+ msgstr "Descrição"
1386
 
1387
+ # @ wp-table-reloaded
1388
+ #: views/view-add.php:18
1389
+ msgid "Enter Description"
1390
+ msgstr "Digite a Descrição"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1391
 
1392
+ # @ wp-table-reloaded
1393
+ #: views/view-add.php:21
1394
+ msgid "Number of Rows"
1395
+ msgstr "Número de Linhas"
 
1396
 
1397
+ # @ wp-table-reloaded
1398
+ #: views/view-add.php:25
1399
+ msgid "Number of Columns"
1400
+ msgstr "Número de Colunas"
 
 
1401
 
1402
+ # @ wp-table-reloaded
1403
+ #: views/view-add.php:32
1404
+ msgid "Add Table"
1405
+ msgstr "Adicionar Tabela"
 
 
1406
 
1407
+ # @ wp-table-reloaded
1408
+ #: views/view-ajax_list.php:3 views/view-list.php:2
1409
+ msgid "This is a list of all available tables."
1410
+ msgstr "Esta é uma lista de todas as tabelas disponíveis."
 
 
1411
 
1412
+ # @ wp-table-reloaded
1413
+ #: views/view-ajax_list.php:3
1414
+ msgid "You may insert a table into a post or page here."
1415
+ msgstr "Você pode inserir uma tabela em um artigo (post) ou página aqui."
 
 
1416
 
1417
+ # @ wp-table-reloaded
1418
+ #: views/view-ajax_list.php:4
 
1419
  #, php-format
1420
+ msgid ""
1421
+ "Click the &quot;%s&quot; link after the desired table and the corresponding "
1422
+ "shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</"
1423
+ "strong>)."
1424
+ msgstr ""
1425
+ "Clique no link &quot;%s&quot; depois da tabela desejada e o código "
1426
+ "correspondente será inserido no editor (<strong>[table id=&lt;ID&gt; /]</"
1427
+ "strong>)."
1428
 
1429
+ # @ wp-table-reloaded
1430
+ #: views/view-ajax_list.php:4 views/view-ajax_list.php:44
1431
+ msgid "Insert"
1432
+ msgstr "Inserir"
 
1433
 
1434
+ # @ wp-table-reloaded
1435
+ #: views/view-ajax_list.php:13 views/view-ajax_list.php:21
1436
+ #: views/view-import.php:99 views/view-import.php:108 views/view-list.php:13
1437
+ #: views/view-list.php:23
1438
+ msgid "ID"
1439
+ msgstr "ID"
1440
 
1441
+ # @ wp-table-reloaded
1442
+ #: views/view-ajax_list.php:16 views/view-ajax_list.php:24
1443
+ #: views/view-edit.php:434 views/view-import.php:102 views/view-import.php:111
1444
+ msgid "Action"
1445
+ msgstr "Ação"
1446
 
1447
+ # @ wp-table-reloaded
1448
+ #: views/view-ajax_preview.php:3
1449
+ msgid "This is a preview of your table."
1450
+ msgstr "Esta é uma amostra da sua tabela."
1451
 
1452
+ # @ wp-table-reloaded
1453
+ #: views/view-ajax_preview.php:4
1454
+ msgid "Because of CSS styling, the table might look different on your page!"
1455
+ msgstr ""
1456
+ "Por causa dos estilos CSS, a tabela pode parecer diferente na sua página!"
1457
 
1458
+ # @ wp-table-reloaded
1459
+ #: views/view-ajax_preview.php:4
1460
+ msgid "The JavaScript libraries are also not available in this preview."
1461
+ msgstr "As bibliotecas JavaScript também não estão disponíveis nessa amostra."
 
1462
 
1463
+ # @ wp-table-reloaded
1464
+ #: views/view-edit.php:8
1465
+ msgid "On this page, you can edit the content of the table."
1466
+ msgstr "Nesta página você poderá editar o conteúdo da tabela."
1467
 
1468
+ # @ wp-table-reloaded
1469
+ #: views/view-edit.php:8
1470
+ msgid ""
1471
+ "It is also possible to change the table structure by inserting, deleting, "
1472
+ "moving, and swapping columns and rows."
1473
+ msgstr ""
1474
+ "Também é possível mudar a estrutura da tabela inserindo, apagando, movendo "
1475
+ "e reorganizando colunas e linhas."
1476
 
1477
+ # @ wp-table-reloaded
1478
+ #: views/view-edit.php:15
1479
+ msgid "Table Information"
1480
+ msgstr "Informações da Tabela"
 
 
1481
 
1482
+ # @ wp-table-reloaded
1483
+ #: views/view-edit.php:19
1484
+ msgid "Table ID"
1485
+ msgstr "ID da Tabela"
 
 
1486
 
1487
+ # @ wp-table-reloaded
1488
+ #: views/view-edit.php:32 views/view-list.php:17 views/view-list.php:27
1489
+ msgid "Last Modified"
1490
+ msgstr "Última Modificação"
 
 
1491
 
1492
+ # @ wp-table-reloaded
1493
+ #: views/view-edit.php:33 views/view-list.php:44
1494
+ msgid "by"
1495
+ msgstr "por"
 
 
1496
 
1497
+ # @ wp-table-reloaded
1498
+ #: views/view-edit.php:42 views/view-edit.php:254 views/view-edit.php:414
1499
+ #: views/view-edit.php:465
1500
+ msgid "Save and go back"
1501
+ msgstr "Salvar e voltar"
 
1502
 
1503
+ # @ wp-table-reloaded
1504
+ #: views/view-edit.php:45 views/view-edit.php:257 views/view-edit.php:417
1505
+ #: views/view-edit.php:468 views/view-options.php:65
1506
+ #: views/view-options.php:172
1507
+ msgid "Cancel"
1508
+ msgstr "Cancelar"
1509
 
1510
+ # @ wp-table-reloaded
1511
+ #: views/view-edit.php:51
1512
+ msgid "Table Contents"
1513
+ msgstr "Conteúdo da Tabela"
 
1514
 
1515
+ # @ wp-table-reloaded
1516
+ #: views/view-edit.php:104
1517
+ msgid "Data Manipulation"
1518
+ msgstr "Manipulação de Conteúdo"
 
1519
 
1520
+ # @ wp-table-reloaded
1521
+ #: views/view-edit.php:114 views/view-options.php:55
1522
+ msgid "Insert Link"
1523
+ msgstr "Inserir Link"
 
1524
 
1525
+ # @ wp-table-reloaded
1526
+ #: views/view-edit.php:115
1527
+ msgid "Insert Image"
1528
+ msgstr "Inserir Imagem"
1529
 
1530
+ # @ wp-table-reloaded
1531
+ #: views/view-edit.php:124
1532
+ msgid "ascending"
1533
+ msgstr "crescente"
1534
 
1535
+ # @ wp-table-reloaded
1536
+ #: views/view-edit.php:125
1537
+ msgid "descending"
1538
+ msgstr "decrescente"
1539
 
1540
+ # @ wp-table-reloaded
1541
+ #: views/view-edit.php:128
1542
  #, php-format
1543
+ msgid "Sort table by column %s in %s order"
1544
+ msgstr "Ordenar tabela pela coluna %s em ordem %s"
1545
 
1546
+ # @ wp-table-reloaded
1547
+ #: views/view-edit.php:130
1548
+ msgid "Sort"
1549
+ msgstr "Ordenar"
1550
+
1551
+ # @ wp-table-reloaded
1552
+ #: views/view-edit.php:135 views/view-edit.php:139
1553
+ msgctxt "item"
1554
+ msgid "Hide"
1555
+ msgstr "Esconder"
1556
+
1557
+ # @ wp-table-reloaded
1558
+ #: views/view-edit.php:136 views/view-edit.php:140
1559
+ msgctxt "item"
1560
+ msgid "Unhide"
1561
+ msgstr "Mostrar"
1562
 
1563
+ # @ wp-table-reloaded
1564
+ #: views/view-edit.php:137
1565
  #, php-format
1566
+ msgctxt "hide_unhide"
1567
+ msgid "Selected rows: %s %s"
1568
+ msgstr "Linhas selecionadas: %s %s"
 
 
 
 
 
 
 
1569
 
1570
+ # @ wp-table-reloaded
1571
+ #: views/view-edit.php:141
1572
  #, php-format
1573
+ msgctxt "hide_unhide"
1574
+ msgid "Selected columns: %s %s"
1575
+ msgstr "Colunas selecionadas: %s %s"
1576
 
1577
+ #: views/view-edit.php:144
1578
+ msgid "Combine cells in a row:"
1579
+ msgstr "Combinar células em uma linha"
 
1580
 
1581
+ #: views/view-edit.php:145
1582
+ msgid "Add colspan"
1583
+ msgstr "Adicionar colspan"
 
1584
 
1585
+ #: views/view-edit.php:148
1586
+ msgid "Combine cells in a column:"
1587
+ msgstr "Combinar células em uma coluna:"
 
 
 
 
 
1588
 
1589
+ # @ wp-table-reloaded
1590
+ #: views/view-edit.php:149
1591
+ msgid "Add rowspan"
1592
+ msgstr "Adicionar rowspan"
 
1593
 
1594
+ # @ wp-table-reloaded
1595
+ #: views/view-edit.php:155
1596
+ msgid "Insert row"
1597
+ msgstr "Inserir linha"
 
 
1598
 
1599
+ # @ wp-table-reloaded
1600
+ #: views/view-edit.php:156 views/view-edit.php:160 views/view-list.php:65
1601
+ msgid "Delete"
1602
+ msgstr "Excluir"
1603
 
1604
+ # @ wp-table-reloaded
1605
+ #: views/view-edit.php:157
1606
+ #, php-format
1607
+ msgctxt "insert_delete"
1608
+ msgid "Selected rows: %s %s"
1609
+ msgstr "Linhas selecionadas: %s %s"
1610
+
1611
+ # @ wp-table-reloaded
1612
+ #: views/view-edit.php:159
1613
+ msgid "Insert column"
1614
+ msgstr "Inserir coluna"
1615
 
1616
+ # @ wp-table-reloaded
1617
+ #: views/view-edit.php:161
1618
  #, php-format
1619
+ msgctxt "insert_delete"
1620
+ msgid "Selected columns: %s %s"
1621
+ msgstr "Colunas selecionadas: %s %s"
1622
 
1623
+ # @ wp-table-reloaded
1624
+ #: views/view-edit.php:171
 
1625
  #, php-format
1626
+ msgid "Add %s row(s)"
1627
+ msgstr "Adiciona %s linha(s)"
 
 
 
 
 
1628
 
1629
+ # @ wp-table-reloaded
1630
+ #: views/view-edit.php:172 views/view-edit.php:175 views/view-edit.php:459
1631
+ msgid "Add"
1632
+ msgstr "Adicionar"
1633
 
1634
+ # @ wp-table-reloaded
1635
+ #: views/view-edit.php:174
1636
  #, php-format
1637
+ msgid "Add %s column(s)"
1638
+ msgstr "Adicionar %s coluna(s)"
1639
 
1640
+ # @ wp-table-reloaded
1641
+ #: views/view-edit.php:189
1642
+ #, php-format
1643
+ msgid "Swap rows %s and %s"
1644
+ msgstr "Trocar linhas %s e %s"
1645
 
1646
+ # @ wp-table-reloaded
1647
+ #: views/view-edit.php:191 views/view-edit.php:206
1648
+ msgid "Swap"
1649
+ msgstr "Trocar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1650
 
1651
+ # @ wp-table-reloaded
1652
+ #: views/view-edit.php:204
1653
+ #, php-format
1654
+ msgid "Swap columns %s and %s"
1655
+ msgstr "Trocar colunas %s e %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
1656
 
1657
+ # @ wp-table-reloaded
1658
+ #: views/view-edit.php:219 views/view-edit.php:239
1659
+ msgid "before"
1660
+ msgstr "antes"
 
1661
 
1662
+ # @ wp-table-reloaded
1663
+ #: views/view-edit.php:220 views/view-edit.php:240
1664
+ msgid "after"
1665
+ msgstr "depois"
 
 
1666
 
1667
+ # @ wp-table-reloaded
1668
+ #: views/view-edit.php:223
1669
+ #, php-format
1670
+ msgid "Move row %s %s row %s"
1671
+ msgstr "Mover linha %s %s linha %s"
1672
 
1673
+ # @ wp-table-reloaded
1674
+ #: views/view-edit.php:225 views/view-edit.php:245
1675
+ msgid "Move"
1676
+ msgstr "Mover"
1677
 
1678
+ # @ wp-table-reloaded
1679
+ #: views/view-edit.php:243
1680
+ #, php-format
1681
+ msgid "Move column %s %s column %s"
1682
+ msgstr "Mover coluna %s %s coluna %s"
1683
 
1684
+ # @ wp-table-reloaded
1685
+ #: views/view-edit.php:262
1686
  msgid "Table Styling Options"
1687
  msgstr "Opções de Estilo da Tabela"
1688
 
1689
+ # @ wp-table-reloaded
1690
+ #: views/view-edit.php:264
1691
+ msgid "These settings will only be used for this table."
1692
+ msgstr "Estas configurações serão utilizadas somente para esta tabela."
1693
+
1694
+ # @ wp-table-reloaded
1695
+ #: views/view-edit.php:267
1696
+ msgid "Alternating row colors"
1697
+ msgstr "Alternar cores das linhas"
1698
+
1699
+ # @ wp-table-reloaded
1700
+ #: views/view-edit.php:268
1701
  msgid "Every second row has an alternating background color."
1702
  msgstr "Cada segunda linha tem uma cor alternada de fundo."
1703
 
1704
+ #: views/view-edit.php:271
1705
+ msgid "Row Highlighting"
1706
+ msgstr "Destacar Linha"
1707
+
1708
+ #: views/view-edit.php:272
1709
+ msgid ""
1710
+ "Highlight a row by changing its background color while the mouse cursor "
1711
+ "hovers above it."
1712
+ msgstr ""
1713
+ "Destaque uma linha para mudar a cor de fundo enquanto o mouse estiver sobre "
1714
+ "ela"
1715
+
1716
+ # @ wp-table-reloaded
1717
+ #: views/view-edit.php:275
1718
  msgid "Table head"
1719
  msgstr "Cabeçalho da tabela"
1720
 
1721
+ # @ wp-table-reloaded
1722
+ #: views/view-edit.php:276
1723
+ #, fuzzy
1724
+ msgid ""
1725
+ "The first row of your table is the table head (HTML tags &lt;thead&gt; and "
1726
+ "&lt;th&gt;)."
1727
  msgstr "A primeira linha da sua tabela é o cabeçalho (Tag HTML &lt;th&gt;)."
1728
 
1729
+ # @ wp-table-reloaded
1730
+ #: views/view-edit.php:279
1731
  msgid "Table footer"
1732
  msgstr "Rodapé da tabela"
1733
 
1734
+ # @ wp-table-reloaded
1735
+ #: views/view-edit.php:280
1736
+ #, fuzzy
1737
+ msgid ""
1738
+ "The last row of your table is the table footer (HTML tags &lt;tfoot&gt; and "
1739
+ "&lt;th&gt;)."
1740
  msgstr "A última linha da sua tabela é o rodapé (Tag HTML &lt;th&gt;)."
1741
 
1742
+ #: views/view-edit.php:289 views/view-edit.php:306
1743
+ msgid "above"
1744
+ msgstr "acima"
1745
+
1746
+ #: views/view-edit.php:291 views/view-edit.php:308
1747
+ msgid "below"
1748
+ msgstr "abaixo"
1749
+
1750
+ # @ wp-table-reloaded
1751
+ #: views/view-edit.php:294
1752
+ #, fuzzy, php-format
1753
+ msgid "The Table Name shall be written %s the table (HTML tag &lt;h2&gt;)."
1754
  msgstr "O Nome da Tabela será escrito acima da tabela (tag HTML &lt;h2&gt;)."
1755
 
1756
+ # @ wp-table-reloaded
1757
+ #: views/view-edit.php:300
1758
  msgid "Table Description"
1759
  msgstr "Descrição da Tabela"
1760
 
1761
+ # @ wp-table-reloaded
1762
+ #: views/view-edit.php:311
1763
+ #, fuzzy, php-format
1764
+ msgid "The Table Description shall be written %s the table."
1765
+ msgstr "A Descrição será escrita embaixo da tabela."
1766
+
1767
+ #: views/view-edit.php:317
1768
+ msgid "Cache Table Output"
1769
+ msgstr "Salvar a Tabela em Cache"
1770
+
1771
+ #: views/view-edit.php:318
1772
+ msgid ""
1773
+ "The resulting HTML output of the table shall be cached in the WordPress "
1774
+ "database cache for faster page generation."
1775
+ msgstr ""
1776
+ "O HTML resultante da tabela será salvo em cache no banco de dados do "
1777
+ "WordPress para aumentar a velocidqade de carregamento da página"
1778
+
1779
+ #: views/view-edit.php:321
1780
+ msgid "Extra CSS Class"
1781
+ msgstr "Classe CSS Extra"
1782
+
1783
+ #: views/view-edit.php:322
1784
+ msgid ""
1785
+ "Enter a string that will be given to the table as an additional class for "
1786
+ "styling with CSS."
1787
+ msgstr ""
1788
+ "Adicione uma palavra para adicionar como classe na tabela e facilitar a "
1789
+ "estilização"
1790
+
1791
+ #: views/view-edit.php:322
1792
+ msgid "This is not the place to enter \"Custom CSS\" code!"
1793
+ msgstr "Esse não é o local para adicionar \"CSS Customizado\"!"
1794
+
1795
+ # @ wp-table-reloaded
1796
+ #: views/view-edit.php:325
1797
  msgid "Use JavaScript library"
1798
  msgstr "Usar biblioteca JavaScript"
1799
 
1800
+ # @ wp-table-reloaded
1801
+ #: views/view-edit.php:331 views/view-edit.php:335 views/view-edit.php:347
 
 
1802
  msgid "You can change further settings for this library below."
1803
+ msgstr ""
1804
+ "Você pode alterar as configurações adicionais para esta biblioteca abaixo."
1805
 
1806
+ # @ wp-table-reloaded
1807
+ #: views/view-edit.php:339 views/view-edit.php:343
 
1808
  msgid "The table will then be sortable by the visitor."
1809
  msgstr "A tabela será então classificável pelo visitante."
1810
 
1811
+ # @ wp-table-reloaded
1812
+ #: views/view-edit.php:350
1813
  #, php-format
1814
  msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
1815
  msgstr "Sim, use o &quot;% s&quot; biblioteca JavaScript com essa tabela."
1816
 
1817
+ # @ wp-table-reloaded
1818
+ #: views/view-edit.php:350
1819
  #, php-format
1820
+ msgid ""
1821
+ "You must enable the use of a JavaScript library on the &quot;%s&quot; screen "
1822
+ "first."
1823
+ msgstr ""
1824
+ "Você deve habilitar o uso de uma biblioteca JavaScript na tela &quot;"
1825
+ "%s&quot; primeiro."
1826
 
1827
+ # @ wp-table-reloaded
1828
+ #: views/view-edit.php:361
1829
  msgid "DataTables JavaScript Features"
1830
  msgstr "Funcionalidades JavaScript DataTables"
1831
 
1832
+ # @ wp-table-reloaded
1833
+ #: views/view-edit.php:363
1834
+ msgid ""
1835
+ "You can enable certain features for the DataTables JavaScript library here."
1836
+ msgstr ""
1837
+ "Você pode ativar certos recursos para a biblioteca JavaScript DataTables "
1838
+ "aqui."
1839
 
1840
+ # @ wp-table-reloaded
1841
+ #: views/view-edit.php:363
1842
+ msgid ""
1843
+ "More information on these features can be found on the <a href=\"http://www."
1844
+ "datatables.net/\">DataTables website</a>."
1845
+ msgstr ""
1846
+ "Mais informações sobre esses recursos podem ser encontrados no <a href="
1847
+ "\"http://www.datatables.net/\">site do DataTables</a>."
1848
 
1849
+ # @ wp-table-reloaded
1850
+ #: views/view-edit.php:365
1851
  #, php-format
1852
+ msgid ""
1853
+ "You can currently not change these options, because you have not enabled the "
1854
+ "&quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript "
1855
+ "library on the &quot;%s&quot; screen."
1856
+ msgstr ""
1857
+ "Você não pode mudar estas opções no momento, porque você não habilitou o "
1858
+ "&quot;DataTables&quot; ou a biblioteca JavaScript &quot;DataTables"
1859
+ "+TableTools&quot; na tela &quot;%s&quot;"
1860
 
1861
+ # @ wp-table-reloaded
1862
+ #: views/view-edit.php:365
1863
+ msgid ""
1864
+ "It is not possible to use these features with the &quot;Tablesorter&quot; or "
1865
+ "&quot;Tablesorter Extended&quot; libraries."
1866
+ msgstr ""
1867
+ "Não é possível usar essas funcionalidades com as bibliotecas &quot;"
1868
+ "Tablesorter&quot; ou &quot;Tablesorter Extended&quot;."
1869
 
1870
+ # @ wp-table-reloaded
1871
+ #: views/view-edit.php:369
1872
  msgid "Sorting"
1873
  msgstr "Organizando"
1874
 
1875
+ # @ wp-table-reloaded
1876
+ #: views/view-edit.php:370
1877
  msgid "Yes, enable sorting of table data by the visitor."
1878
  msgstr "Sim, ativar a classificação dos dados da tabela pelo visitante."
1879
 
1880
+ # @ wp-table-reloaded
1881
+ #: views/view-edit.php:373
1882
  msgid "Pagination"
1883
  msgstr "Paginação"
1884
 
1885
+ # @ wp-table-reloaded
1886
+ #: views/view-edit.php:378
1887
+ #, fuzzy
1888
+ msgid ""
1889
+ "Yes, enable pagination (showing only a certain number of rows) of the table "
1890
+ "by the visitor."
1891
+ msgstr ""
1892
+ "Sim, ativar paginação da tabela (mostrando apenas um determinado número de "
1893
+ "linhas) pelo visitante."
1894
+
1895
+ #: views/view-edit.php:380
1896
+ #, php-format
1897
+ msgid "Show %1$s rows of the table per page."
1898
+ msgstr "Mostrar %1$s linhas da tabela por página."
1899
 
1900
+ # @ wp-table-reloaded
1901
+ #: views/view-edit.php:386
1902
  msgid "Length Change"
1903
  msgstr "Mudança de Tamanho"
1904
 
1905
+ # @ wp-table-reloaded
1906
+ #: views/view-edit.php:387
1907
+ #, fuzzy
1908
+ msgid ""
1909
+ "Yes, allow the visitor to change the number of rows shown when using "
1910
+ "pagination."
1911
+ msgstr ""
1912
+ "Sim, permitir que visitantes para alterar o número de linhas mostradas pelo "
1913
+ "uso da paginação."
1914
 
1915
+ # @ wp-table-reloaded
1916
+ #: views/view-edit.php:390
1917
+ #, fuzzy
1918
+ msgid "Filtering/Search"
1919
  msgstr "Filtragem"
1920
 
1921
+ # @ wp-table-reloaded
1922
+ #: views/view-edit.php:391
1923
+ msgid ""
1924
+ "Yes, enable the visitor to filter or search the table. Only rows with the "
1925
+ "search word in them are shown."
1926
+ msgstr ""
1927
+ "Sim, ativar o visitante para filtrar ou pesquisar na tabela. Apenas as "
1928
+ "linhas com a palavra de pesquisa neles são mostradas."
1929
 
1930
+ # @ wp-table-reloaded
1931
+ #: views/view-edit.php:394
1932
  msgid "Info Bar"
1933
  msgstr "Barra de Informações"
1934
 
1935
+ # @ wp-table-reloaded
1936
+ #: views/view-edit.php:395
1937
+ msgid ""
1938
+ "Yes, show the table information display. This shows information and "
1939
+ "statistics about the currently visible data, including filtering."
1940
+ msgstr ""
1941
+ "Sim, mostrar o ecrã de informação da tabela. Esta informação mostra e "
1942
+ "estatísticas sobre os dados visíveis no momento, incluindo filtragem."
1943
 
1944
+ # @ wp-table-reloaded
1945
+ #: views/view-edit.php:398
1946
  msgid "TableTools"
1947
  msgstr "TableTools "
1948
 
1949
+ # @ wp-table-reloaded
1950
+ #: views/view-edit.php:400
1951
+ msgid ""
1952
+ "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save "
1953
+ "to XLS, Print Table) for this table."
1954
+ msgstr ""
1955
+ "Sim, ativar as funções TableTools (Copiar para Memória, Salvar para CSV, "
1956
+ "Salvar para XLS, Imprimir Tabela) para essa tabela."
1957
 
1958
+ # @ wp-table-reloaded
1959
+ #: views/view-edit.php:401
1960
+ msgid ""
1961
+ "This option can only be used with the &quot;DataTables+TableTools&quot; "
1962
+ "JavaScript library."
1963
+ msgstr ""
1964
+ "Essa opção só pode ser usada com a biblioteca JavaScript &quot;DataTables"
1965
+ "+TableTools&quot;."
1966
 
1967
+ # @ wp-table-reloaded
1968
+ #: views/view-edit.php:405
1969
  msgid "Custom Commands"
1970
  msgstr "Comandos personalizados"
1971
 
1972
+ # @ wp-table-reloaded
1973
+ #: views/view-edit.php:406
1974
+ msgid ""
1975
+ "Enter additional DataTables JavaScript parameters that will be included with "
1976
+ "the script call here."
1977
+ msgstr ""
1978
+ "Digite DataTables JavaScript parâmetros adicionais que serão incluídos com a "
1979
+ "chamada script aqui."
1980
+
1981
+ # @ wp-table-reloaded
1982
+ #: views/view-edit.php:406
1983
+ msgid ""
1984
+ "For advanced use only. Read the <a href=\"http://www.datatables.net/"
1985
+ "\">DataTables documentation</a> before."
1986
+ msgstr ""
1987
+ "Para uso avançado somente. Leia a <a href=\"http://www.datatables.net/"
1988
+ "\">documentação do DataTables</a> antes."
1989
+
1990
+ # @ wp-table-reloaded
1991
+ #: views/view-edit.php:422
1992
+ msgid "Custom Data Fields"
1993
+ msgstr "Campos de Dados Personalizados"
1994
+
1995
+ # @ wp-table-reloaded
1996
+ #: views/view-edit.php:424
1997
+ msgid "Custom Data Fields can be used to add extra metadata to a table."
1998
+ msgstr ""
1999
+ "Campos de Dados Personalizados podem ser usados para adicionar novos "
2000
+ "metadados para uma tabela."
2001
+
2002
+ # @ wp-table-reloaded
2003
+ #: views/view-edit.php:424
2004
+ msgid ""
2005
+ "For example, this could be information about the source or the creator of "
2006
+ "the data."
2007
+ msgstr ""
2008
+ "Por exemplo, isso poderiam ser informações sobre a origem ou o criador dos "
2009
+ "dados."
2010
+
2011
+ # @ wp-table-reloaded
2012
+ #: views/view-edit.php:426
2013
+ #, php-format
2014
+ msgid ""
2015
+ "You can show this data in the same way as tables by using the shortcode "
2016
+ "<strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
2017
+ msgstr ""
2018
+ "Você pode mostrar estes dados da mesma maneira que as tabelas usando o "
2019
+ "código <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
2020
+
2021
+ # @ wp-table-reloaded
2022
+ #: views/view-edit.php:432
2023
+ msgid "Field Name"
2024
+ msgstr "Nome do Campo"
2025
+
2026
+ # @ wp-table-reloaded
2027
+ #: views/view-edit.php:433
2028
+ msgid "Value"
2029
+ msgstr "Valor"
2030
+
2031
+ # @ wp-table-reloaded
2032
+ #: views/view-edit.php:447
2033
+ msgid "Delete Field"
2034
+ msgstr "Apagar Campo"
2035
+
2036
+ # @ wp-table-reloaded
2037
+ #: views/view-edit.php:449
2038
+ msgid "View shortcode"
2039
+ msgstr "Ver código"
2040
+
2041
+ # @ wp-table-reloaded
2042
+ #: views/view-edit.php:458
2043
+ msgid ""
2044
+ "To add a new Custom Data Field, enter its name (only lowercase letters, "
2045
+ "numbers, _ and -)."
2046
+ msgstr ""
2047
+ "Para adicionar um novo Campo de Dados Personalizado, digite seu nome "
2048
+ "(somente letras minúsculas, números, _ e -)."
2049
+
2050
+ # @ wp-table-reloaded
2051
+ #: views/view-edit.php:459
2052
+ msgid "Custom Data Field Name"
2053
+ msgstr "Nome do Campo de Dados Personalizado"
2054
+
2055
+ # @ wp-table-reloaded
2056
+ #: views/view-edit.php:473
2057
+ msgid "Other actions"
2058
+ msgstr "Outras ações"
2059
+
2060
+ # @ wp-table-reloaded
2061
+ #: views/view-edit.php:476
2062
+ msgid "Delete Table"
2063
+ msgstr "Excluir Tabela"
2064
+
2065
+ # @ wp-table-reloaded
2066
+ #: views/view-edit.php:477 views/view-export.php:60
2067
+ msgid "Export Table"
2068
+ msgstr "Exportar Tabela"
2069
+
2070
+ # @ wp-table-reloaded
2071
+ #: views/view-export.php:10
2072
+ msgid ""
2073
+ "It is recommended to export and backup the data of important tables "
2074
+ "regularly."
2075
+ msgstr ""
2076
+ "Recomenda-se para exportar e fazer backup dos dados de tabelas importantes "
2077
+ "regularmente."
2078
+
2079
+ # @ wp-table-reloaded
2080
+ #: views/view-export.php:10
2081
+ msgid ""
2082
+ "Select the table, the desired export format and (for CSV only) a delimiter."
2083
+ msgstr ""
2084
+ "Selecione a tabela, o formato desejado e de exportação (para CSV apenas) um "
2085
+ "delimitador."
2086
+
2087
+ # @ wp-table-reloaded
2088
+ #: views/view-export.php:10
2089
+ msgid ""
2090
+ "You may choose to download the export file. Otherwise it will be shown on "
2091
+ "this page."
2092
+ msgstr ""
2093
+ "Você pode optar por baixar o arquivo de exportação. Caso contrário, ele será "
2094
+ "mostrado nesta página."
2095
+
2096
+ # @ wp-table-reloaded
2097
+ #: views/view-export.php:10
2098
+ msgid ""
2099
+ "Be aware that only the table data, but no options or settings are exported."
2100
+ msgstr ""
2101
+ "Esteja ciente de que apenas a tabela de dados, sem opções ou configurações, "
2102
+ "será exportada."
2103
+
2104
+ # @ wp-table-reloaded
2105
+ #: views/view-export.php:10
2106
+ #, php-format
2107
+ msgid ""
2108
+ "To backup all tables, including their settings, at once use the &quot;"
2109
+ "%s&quot; button in the &quot;%s&quot;."
2110
+ msgstr ""
2111
+ "Para fazer backup de todas as tabelas, incluindo as suas definições, uma vez "
2112
+ "usar o &quot;%s&quot; no botão &quot;%s&quot;."
2113
+
2114
+ # @ wp-table-reloaded
2115
+ #: views/view-export.php:10 views/view-options.php:190
2116
+ msgid "Create and Download Dump File"
2117
+ msgstr "Criar e Baixe o arquivo de Dump"
2118
+
2119
+ # @ wp-table-reloaded
2120
+ #: views/view-export.php:18
2121
+ msgid "Select Table to Export"
2122
+ msgstr "Selecionar Tabela para Exportar"
2123
+
2124
+ # @ wp-table-reloaded
2125
+ #: views/view-export.php:34
2126
+ msgid "Select Export Format"
2127
+ msgstr "Selecionar Formato para Exportação"
2128
+
2129
+ # @ wp-table-reloaded
2130
+ #: views/view-export.php:44
2131
+ msgid "Select Delimiter to use"
2132
+ msgstr "Selecionar Delimitador para usar"
2133
+
2134
+ # @ wp-table-reloaded
2135
+ #: views/view-export.php:51
2136
+ msgid "Only needed for CSV export."
2137
+ msgstr "Só é necessário para exportação CSV."
2138
+
2139
+ # @ wp-table-reloaded
2140
+ #: views/view-export.php:54
2141
+ msgid "Download file"
2142
+ msgstr "Fazer Download do arquivo"
2143
+
2144
+ # @ wp-table-reloaded
2145
+ #: views/view-export.php:55
2146
+ msgid "Yes, I want to download the export file."
2147
+ msgstr "Sim, eu quero fazer o download do arquivo exportado."
2148
 
2149
+ # @ wp-table-reloaded
2150
+ #: views/view-export.php:72 views/view-list.php:87
2151
+ #, php-format
2152
+ msgid ""
2153
+ "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to "
2154
+ "get started!"
2155
+ msgstr ""
2156
+ "Você deve <a href=\"%s\">adicionar</a> ou <a href=\"%s\">importar</a> uma "
2157
+ "tabela para começar."
2158
 
2159
+ # @ wp-table-reloaded
2160
+ #: views/view-import.php:3
2161
  msgid "WP-Table Reloaded can import tables from existing data."
2162
  msgstr "WP-Table Reloaded pode importar tabelas a partir de dados existentes."
2163
 
2164
+ # @ wp-table-reloaded
2165
+ #: views/view-import.php:3
2166
  msgid "This may be a CSV, XML or HTML file, each with a certain structure."
2167
  msgstr "Este pode ser um CSV, XML ou HTML, cada um com uma certa estrutura."
2168
 
2169
+ # @ wp-table-reloaded
2170
+ #: views/view-import.php:3
2171
+ msgid ""
2172
+ "To import an existing table, please select its format and the source for the "
2173
+ "import."
2174
+ msgstr ""
2175
+ "Para importar uma tabela existente, selecione o seu formato e fonte para a "
2176
+ "importação."
2177
+
2178
+ # @ wp-table-reloaded
2179
+ #: views/view-import.php:3
2180
+ msgid ""
2181
+ "You can also decide, if you want to import it as a new table or replace an "
2182
+ "existing table."
2183
+ msgstr ""
2184
+ "Você também pode decidir, se você quer importá-lo como uma nova tabela ou "
2185
+ "substituir uma tabela existente."
2186
+
2187
+ # @ wp-table-reloaded
2188
+ #: views/view-import.php:10
2189
+ msgid "Select Import Format"
2190
+ msgstr "Selecionar o Formato de Importação"
2191
+
2192
+ # @ wp-table-reloaded
2193
+ #: views/view-import.php:21
2194
+ msgid "Add or Replace Table?"
2195
+ msgstr "Adicionar ou Substituir Tabela?"
2196
+
2197
+ # @ wp-table-reloaded
2198
+ #: views/view-import.php:23
2199
+ msgid "Add as new Table"
2200
+ msgstr "Adicionar como uma nova Tabela"
2201
+
2202
+ # @ wp-table-reloaded
2203
+ #: views/view-import.php:24
2204
+ msgid "Replace existing Table"
2205
+ msgstr "Substituir Tabela existente"
2206
 
2207
+ # @ wp-table-reloaded
2208
+ #: views/view-import.php:28
2209
+ msgid "Select existing Table to Replace"
2210
+ msgstr "Selecionar Tabela para Substituir"
2211
 
2212
+ # @ wp-table-reloaded
2213
+ #: views/view-import.php:45
2214
  msgid "Select source for Import"
2215
  msgstr "Selecione uma fonte para a Importação"
2216
 
2217
+ # @ wp-table-reloaded
2218
+ #: views/view-import.php:47
2219
+ msgid "File upload"
2220
+ msgstr "Upload de arquivo"
2221
+
2222
+ # @ wp-table-reloaded
2223
+ #: views/view-import.php:48
2224
+ msgid "URL"
2225
+ msgstr "URL"
2226
+
2227
+ # @ wp-table-reloaded
2228
+ #: views/view-import.php:49
2229
+ msgid "Manual input"
2230
+ msgstr "Inserção manual"
2231
+
2232
+ # @ wp-table-reloaded
2233
+ #: views/view-import.php:50
2234
+ msgid "File on server"
2235
+ msgstr "Arquivo no servidor"
2236
+
2237
+ # @ wp-table-reloaded
2238
+ #: views/view-import.php:54
2239
+ msgid "Select File with Table to Import"
2240
+ msgstr "Selecionar o Arquivo com a Tabela a ser Importada"
2241
+
2242
+ # @ wp-table-reloaded
2243
+ #: views/view-import.php:58
2244
+ msgid "URL to Import Table from"
2245
+ msgstr "URL para importar a tabela"
2246
+
2247
+ # @ wp-table-reloaded
2248
+ #: views/view-import.php:62
2249
+ msgid "Path to file on server"
2250
+ msgstr "Caminho para o arquivo no servidor"
2251
+
2252
+ # @ wp-table-reloaded
2253
+ #: views/view-import.php:66
2254
+ msgid "Paste data with Table to Import"
2255
+ msgstr "Colar conteúdo com a Tabela para Importar"
2256
+
2257
+ # @ wp-table-reloaded
2258
+ #: views/view-import.php:72
2259
+ msgid "Import Table"
2260
+ msgstr "Importar Tabela"
2261
+
2262
+ # @ wp-table-reloaded
2263
+ #: views/view-import.php:86
2264
+ msgid "Import from original wp-Table plugin"
2265
+ msgstr "Importar do plugin wp-Table original"
2266
+
2267
+ # @ wp-table-reloaded
2268
+ #: views/view-import.php:132
2269
+ msgid "Import"
2270
+ msgstr "Importar"
2271
+
2272
+ # @ wp-table-reloaded
2273
+ #: views/view-import.php:140 views/view-list.php:78
2274
+ msgid "Bulk actions:"
2275
+ msgstr "Ações em lote:"
2276
+
2277
+ # @ wp-table-reloaded
2278
+ #: views/view-import.php:140
2279
+ msgid "Import Tables"
2280
+ msgstr "Importar Tabelas"
2281
+
2282
+ # @ wp-table-reloaded
2283
+ #: views/view-import.php:146
2284
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
2285
+ msgstr ""
2286
+ "O plugin wp-Table, de Alex Rabe, parece estar instalado, mas nenhuma tabela "
2287
+ "foi encontrada."
2288
+
2289
+ # @ wp-table-reloaded
2290
+ #: views/view-list.php:2
2291
+ msgid "You may add, edit, copy, delete or preview tables here."
2292
+ msgstr ""
2293
+ "Você poderá adicionar, editar, copiar, apagar ou ver uma amostra das tabelas "
2294
+ "aqui."
2295
+
2296
+ # @ wp-table-reloaded
2297
+ #: views/view-list.php:2
2298
+ msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
2299
+ msgstr "Cada tabela tem um ID único que precisa ser substituído nesse código."
2300
+
2301
+ # @ wp-table-reloaded
2302
+ #: views/view-list.php:2
2303
+ #, php-format
2304
+ msgid ""
2305
+ "You can also click the button &quot;%s&quot; in the editor toolbar to select "
2306
+ "and insert a table."
2307
+ msgstr ""
2308
+ "Você também pode clicar no botão &quot;%s&quot; no editor para selecionar e "
2309
+ "inserir uma tabela."
2310
+
2311
+ # @ wp-table-reloaded
2312
+ #: views/view-list.php:39
2313
+ msgid "(no name)"
2314
+ msgstr "(sem nome)"
2315
+
2316
+ # @ wp-table-reloaded
2317
+ #: views/view-list.php:40
2318
+ msgid "(no description)"
2319
+ msgstr "(sem descrição)"
2320
+
2321
+ # @ wp-table-reloaded
2322
+ #: views/view-list.php:58
2323
+ #, php-format
2324
+ msgid "Edit %s"
2325
+ msgstr "Editar %s"
2326
 
2327
+ # @ wp-table-reloaded
2328
+ #: views/view-list.php:62
2329
+ msgid "Shortcode"
2330
+ msgstr "Código"
2331
 
2332
+ # @ wp-table-reloaded
2333
+ #: views/view-list.php:63
2334
+ msgid "Copy"
2335
+ msgstr "Copiar"
2336
 
2337
+ # @ wp-table-reloaded
2338
+ #: views/view-list.php:64
2339
+ msgid "Export"
2340
+ msgstr "Exportar"
2341
 
2342
+ # @ wp-table-reloaded
2343
+ #: views/view-list.php:66
2344
  #, php-format
2345
+ msgid "Preview of Table %s"
2346
+ msgstr "Visualização da Tabela %s"
2347
 
2348
+ # @ wp-table-reloaded
2349
+ #: views/view-list.php:67
2350
+ msgid "Preview"
2351
+ msgstr "Visualizar"
 
2352
 
2353
+ # @ wp-table-reloaded
2354
+ #: views/view-list.php:78
2355
+ msgid "Copy Tables"
2356
+ msgstr "Copiar Tabelas"
2357
+
2358
+ # @ wp-table-reloaded
2359
+ #: views/view-list.php:78
2360
+ msgid "Delete Tables"
2361
+ msgstr "Excluir Tabelas"
2362
 
2363
+ # @ wp-table-reloaded
2364
+ #: views/view-options.php:3
2365
+ msgid ""
2366
+ "WP-Table Reloaded has several options which affect the plugin behavior in "
2367
+ "different areas."
2368
+ msgstr ""
2369
+ "WP-Table Reloaded tem várias opções que afetam o comportamento plugin em "
2370
+ "diferentes áreas."
2371
 
2372
+ # @ wp-table-reloaded
2373
+ #: views/view-options.php:4
2374
+ msgid ""
2375
+ "Frontend Options influence the output and used features of tables in pages, "
2376
+ "posts or text-widgets."
2377
+ msgstr ""
2378
+ "Opções Frontend influenciar a produção e os recursos utilizados em páginas "
2379
+ "de quadros, mensagens de texto ou widgets."
2380
 
2381
+ # @ wp-table-reloaded
2382
+ #: views/view-options.php:4
2383
  #, php-format
2384
+ msgid ""
2385
+ "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; "
2386
+ "screen."
2387
+ msgstr ""
2388
+ "Opções da área de Infra-Estrutura de controle do plugin admin, por exemplo, "
2389
+ "o &quot;%s&quot; tela."
2390
 
2391
+ # @ wp-table-reloaded
2392
+ #: views/view-options.php:4 views/view-options.php:55
2393
+ #: views/view-options.php:75 views/view-options.php:79
2394
+ msgid "Edit Table"
2395
+ msgstr "Editar Tabela"
2396
+
2397
+ # @ wp-table-reloaded
2398
+ #: views/view-options.php:4
2399
  msgid "Administrators have access to further Admin Options."
2400
  msgstr "Os administradores têm acesso a novas Admin Options."
2401
 
2402
+ # @ wp-table-reloaded
2403
+ #: views/view-options.php:19
2404
+ msgid "Frontend Options"
2405
+ msgstr "Opções de Interface"
2406
+
2407
+ # @ wp-table-reloaded
2408
+ #: views/view-options.php:23
2409
  msgid "JavaScript library"
2410
  msgstr "Biblioteca JavaScript"
2411
 
2412
+ # @ wp-table-reloaded
2413
+ #: views/view-options.php:24
2414
  msgid "Yes, enable the use of a JavaScript library."
2415
  msgstr "Sim, permitir a utilização de uma biblioteca JavaScript."
2416
 
2417
+ # @ wp-table-reloaded
2418
+ #: views/view-options.php:24
2419
+ msgid ""
2420
+ "WP-Table Reloaded includes three JavaScript libraries that can add useful "
2421
+ "features, like sorting, pagination, and filtering, to a table."
2422
+ msgstr ""
2423
+ "WP-Table Reloaded inclui três bibliotecas JavaScript que podem adicionar "
2424
+ "funcionalidades úteis, como a classificação, paginação, e filtragem, a uma "
2425
+ "tabela."
2426
 
2427
+ # @ wp-table-reloaded
2428
+ #: views/view-options.php:28
2429
  msgid "Select the library to use:"
2430
  msgstr "Selecione a biblioteca para uso:"
2431
 
2432
+ # @ wp-table-reloaded
2433
+ #: views/view-options.php:29 views/view-options.php:131
 
2434
  msgid "recommended"
2435
  msgstr "recomendado"
2436
 
2437
+ # @ wp-table-reloaded
2438
+ #: views/view-options.php:33
2439
  #, php-format
2440
+ msgid ""
2441
+ "(You can read more about each library's features on the <a href=\"%s"
2442
+ "\">plugin's website</a>.)"
2443
+ msgstr ""
2444
+ "(Você pode ler mais sobre as características de cada biblioteca no <a href="
2445
+ "\"%s\">site do plugin</a>.)"
2446
 
2447
+ # @ wp-table-reloaded
2448
+ #: views/view-options.php:36
2449
  msgid "Default CSS"
2450
  msgstr "CSS Padrão"
2451
 
2452
+ # @ wp-table-reloaded
2453
+ #: views/view-options.php:38
2454
+ msgid ""
2455
+ "Yes, include and load the plugin's default CSS Stylesheets. This is highly "
2456
+ "recommended, if you use one of the JavaScript libraries!"
2457
+ msgstr ""
2458
+ "Sim, incluir e carregar folhas de estilo padrão do plugin CSS. Isto é "
2459
+ "altamente recomendado, se você usar uma das bibliotecas JavaScript!"
2460
 
2461
+ # @ wp-table-reloaded
2462
+ #: views/view-options.php:42
2463
  msgid "Custom CSS"
2464
  msgstr "CSS Personalizado"
2465
 
2466
+ # @ wp-table-reloaded
2467
+ #: views/view-options.php:44
2468
  msgid "Yes, include and load the following custom CSS commands."
2469
  msgstr "Sim, incluir e carregar os seguintes comandos personalizados CSS."
2470
 
2471
+ # @ wp-table-reloaded
2472
+ #: views/view-options.php:44
2473
  msgid "This should be used to change the table layout and styling."
2474
  msgstr "Isso deve ser usado para alterar o layout da tabela e styling."
2475
 
2476
+ # @ wp-table-reloaded
2477
+ #: views/view-options.php:50
2478
+ #, fuzzy, php-format
2479
+ msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
2480
  msgstr "Você pode obter exemplos de styling <a href=\"%s\">site do plugin</a>."
2481
 
2482
+ # @ wp-table-reloaded
2483
+ #: views/view-options.php:50
2484
  #, php-format
2485
+ msgid ""
2486
+ "Information on available CSS selectors can be found in the <a href=\"%s"
2487
+ "\">documentation</a>."
2488
+ msgstr ""
2489
+ "Informações sobre seletores CSS disponíveis pode ser encontrada na <a href=\\"
2490
+ "\"%s\\\">documentação</a>."
2491
 
2492
+ # @ wp-table-reloaded
2493
+ #: views/view-options.php:54
2494
  msgid "Links in new window"
2495
  msgstr "Links em nova janela"
2496
 
2497
+ # @ wp-table-reloaded
2498
+ #: views/view-options.php:55
2499
  #, php-format
2500
+ msgid ""
2501
+ "Yes, open links that are inserted with the &quot;%s&quot; button on the "
2502
+ "&quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
2503
+ msgstr ""
2504
+ "Sim, os links abertos que são inseridos com o botão &quot;%s&quot; na tela "
2505
+ "&quot;%s&quot; em uma nova janela do navegador <strong>a partir de agora.</"
2506
+ "strong>"
2507
+
2508
+ # @ wp-table-reloaded
2509
+ #: views/view-options.php:62 views/view-options.php:169
2510
+ msgid "Save Options"
2511
+ msgstr "Salvar Opções"
2512
 
2513
+ # @ wp-table-reloaded
2514
+ #: views/view-options.php:70
2515
  msgid "Backend Options"
2516
  msgstr "Backend Opções"
2517
 
2518
+ # @ wp-table-reloaded
2519
+ #: views/view-options.php:74
2520
  msgid "Exit warning"
2521
  msgstr "Aviso de saída"
2522
 
2523
+ # @ wp-table-reloaded
2524
+ #: views/view-options.php:75
2525
  #, php-format
2526
+ msgid ""
2527
+ "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have "
2528
+ "not yet saved my changes."
2529
+ msgstr ""
2530
+ "Sim, mostra uma mensagem de aviso, se eu deixar a tela &quot;%s&quot; e "
2531
+ "ainda não salvou minhas alterações."
2532
 
2533
+ # @ wp-table-reloaded
2534
+ #: views/view-options.php:78
2535
  msgid "Growing textareas"
2536
  msgstr "Textareas crescentes"
2537
 
2538
+ # @ wp-table-reloaded
2539
+ #: views/view-options.php:79
2540
  #, php-format
2541
+ msgid ""
2542
+ "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are "
2543
+ "focussed."
2544
+ msgstr ""
2545
+ "Sim, ampliar o textareas na tela &quot;%s&quot; quando eles estão focadas."
2546
 
2547
+ # @ wp-table-reloaded
2548
+ #: views/view-options.php:82
2549
+ #, fuzzy
2550
+ msgid "List of Tables features"
2551
+ msgstr "Lista de Tabelas"
2552
+
2553
+ # @ wp-table-reloaded
2554
+ #: views/view-options.php:83
2555
+ #, fuzzy, php-format
2556
+ msgid ""
2557
+ "Yes, use the DataTables JavaScript features (sorting, pagination, filtering) "
2558
+ "on the &quot;%s&quot; screen."
2559
+ msgstr ""
2560
+ "Esta versão adiciona suporte à biblioteca DataTables JavaScript (com funções "
2561
+ "de classificação, paginação e filtros) e inclui muitas outras melhorias."
2562
+
2563
+ # @ wp-table-reloaded
2564
+ #: views/view-options.php:91
2565
  msgid "Admin Options"
2566
  msgstr "Admin Options"
2567
 
2568
+ # @ wp-table-reloaded
2569
+ #: views/view-options.php:93 views/view-options.php:210
2570
+ #: views/view-options.php:224
 
2571
  msgid "This area are only available to site administrators!"
2572
  msgstr "Esta área só estão disponíveis para os administradores do site!"
2573
 
2574
+ # @ wp-table-reloaded
2575
+ #: views/view-options.php:93
2576
  msgid "You can therefore not change these options."
2577
  msgstr "Você não pode alterar estas opções."
2578
 
2579
+ # @ wp-table-reloaded
2580
+ #: views/view-options.php:98
2581
  msgid "Plugin Access"
2582
  msgstr "Plugin de Acesso"
2583
 
2584
+ # @ wp-table-reloaded
2585
+ #: views/view-options.php:99
2586
  msgid "To access WP-Table Reloaded, a user needs to be:"
2587
  msgstr "Para acessar WP-Table Reloaded, um usuário precisa ser:"
2588
 
2589
+ #: views/view-options.php:100 views/view-options.php:111
 
 
 
 
 
 
2590
  msgctxt "User role"
2591
  msgid "Administrator"
2592
+ msgstr "Administrador"
2593
 
2594
+ #: views/view-options.php:101 views/view-options.php:112
 
 
 
 
 
 
2595
  msgctxt "User role"
2596
  msgid "Editor"
2597
+ msgstr "Editor"
 
 
 
 
 
2598
 
2599
+ #: views/view-options.php:102 views/view-options.php:113
 
2600
  msgctxt "User role"
2601
  msgid "Author"
2602
+ msgstr "Autor"
 
 
 
 
2603
 
2604
+ #: views/view-options.php:103
2605
  msgctxt "User role"
2606
  msgid "Contributor"
2607
+ msgstr "Colaborador"
2608
 
2609
+ # @ wp-table-reloaded
2610
+ #: views/view-options.php:109
2611
  msgid "Plugin Options Access"
2612
  msgstr "Opções de Acesso do Plugin"
2613
 
2614
+ # @ wp-table-reloaded
2615
+ #: views/view-options.php:110
2616
  msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
2617
+ msgstr ""
2618
+ "Para acessar as opções do plugin do WP-Table Reloaded, um usuário precisa "
2619
+ "ser:"
2620
+
2621
+ # @ wp-table-reloaded
2622
+ #: views/view-options.php:114
2623
+ msgid ""
2624
+ "Admin Options, Dump file Import, and Manual Plugin Uninstall are always "
2625
+ "accessible by Administrators only, regardless of this setting."
2626
+ msgstr ""
2627
+ "Admin Options, despejo de importação do arquivo, e Manual Plugin Desinstalar "
2628
+ "sempre são acessíveis apenas pelos administradores, independentemente desta "
2629
+ "definição."
2630
+
2631
+ # @ wp-table-reloaded
2632
+ #: views/view-options.php:118
2633
+ #, fuzzy
2634
+ msgid "Plugin Language"
2635
+ msgstr "Página do Plugin"
2636
+
2637
+ # @ wp-table-reloaded
2638
+ #: views/view-options.php:119
2639
+ #, fuzzy
2640
+ msgid "WP-Table Reloaded shall be shown in this language:"
2641
+ msgstr "WP-Table Reloaded será apresentado nesta secção do menu admin:"
2642
 
2643
+ #: views/view-options.php:120
2644
+ #, php-format
2645
+ msgid "WordPress Default (currently %s)"
2646
+ msgstr "Padrão WordPress (atualmente %s)"
2647
 
2648
+ # @ wp-table-reloaded
2649
+ #: views/view-options.php:129
2650
  msgid "Admin menu entry"
2651
  msgstr "Admin entrada do menu"
2652
 
2653
+ # @ wp-table-reloaded
2654
+ #: views/view-options.php:130
2655
  msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
2656
  msgstr "WP-Table Reloaded será apresentado nesta secção do menu admin:"
2657
 
2658
+ #: views/view-options.php:131
2659
  msgid "Tools"
2660
+ msgstr "Ferramentas"
2661
 
2662
+ #: views/view-options.php:132
2663
  msgid "Posts"
2664
+ msgstr "Posts"
2665
 
2666
+ #: views/view-options.php:139
2667
  msgid "Pages"
2668
+ msgstr "Páginas"
2669
 
2670
+ #: views/view-options.php:140
2671
  msgid "Plugins"
2672
+ msgstr "Plugins"
2673
 
2674
+ #: views/view-options.php:141
2675
  msgid "Settings"
2676
+ msgstr "Configurações"
2677
 
2678
+ #: views/view-options.php:142
2679
  msgid "Dashboard"
2680
+ msgstr "Painel"
2681
 
2682
+ # @ wp-table-reloaded
2683
+ #: views/view-options.php:143
2684
  msgid "Top-Level"
2685
  msgstr "Nível Superior"
2686
 
2687
+ # @ wp-table-reloaded
2688
+ #: views/view-options.php:148
2689
+ #, fuzzy
2690
+ msgid "Frontend Edit Link"
2691
+ msgstr "Opções de Interface"
2692
+
2693
+ #: views/view-options.php:149
2694
+ msgid ""
2695
+ "Yes, show an \"Edit\" link to users with sufficient rights near every table "
2696
+ "on the frontend."
2697
+ msgstr ""
2698
+ "Sim, mostrar um link \"Editar\" no fim das tabelas do site aos usuários com "
2699
+ "permissão para fazer alterações."
2700
+
2701
+ #: views/view-options.php:153
2702
+ msgid "WordPress Search"
2703
+ msgstr "Busca WordPress"
2704
 
2705
+ #: views/view-options.php:154
2706
+ msgid ""
2707
+ "Yes, the WordPress Search shall also find posts and pages that contain the "
2708
+ "search term inside a table."
2709
+ msgstr ""
2710
+ "Sim, o WordPress também poderá encontrar palavras-chave nas buscas dentro de "
2711
+ "tabelas nas páginas ou posts."
2712
+
2713
+ # @ wp-table-reloaded
2714
+ #: views/view-options.php:158
2715
  msgid "Remove upon Deactivation"
2716
  msgstr "Remover na Desativação"
2717
 
2718
+ # @ wp-table-reloaded
2719
+ #: views/view-options.php:159
2720
+ msgid ""
2721
+ "Yes, remove all plugin related data from the database when the plugin is "
2722
+ "deactivated."
2723
+ msgstr ""
2724
+ "Sim, remover todos os dados relacionados com plugin do banco de dados quando "
2725
+ "o plugin está desativado."
2726
 
2727
+ # @ wp-table-reloaded
2728
+ #: views/view-options.php:159
2729
  msgid "Should be activated directly before deactivation only!"
2730
  msgstr "Deve ser ativado imediatamente antes desativação só!"
2731
 
2732
+ # @ wp-table-reloaded
2733
+ #: views/view-options.php:179
2734
  msgid "WP-Table Reloaded Data Export and Backup"
2735
  msgstr "WP-Table Reloaded e Exportação de dados de backup"
2736
 
2737
+ # @ wp-table-reloaded
2738
+ #: views/view-options.php:182
2739
+ msgid ""
2740
+ "WP-Table Reloaded can export and import a so-called dump file that contains "
2741
+ "all tables, their settings and the plugin's options."
2742
+ msgstr ""
2743
+ "WP-Table Reloaded pode exportar e importar um chamado arquivo de despejo que "
2744
+ "contém todas as tabelas, suas configurações e opções do plugin."
2745
 
2746
+ # @ wp-table-reloaded
2747
+ #: views/view-options.php:182
2748
+ msgid ""
2749
+ "This file can be used as a backup or to move all data to another WordPress "
2750
+ "site."
2751
+ msgstr ""
2752
+ "Este arquivo pode ser usado como um backup ou para mover todos os dados para "
2753
+ "outro site WordPress."
2754
 
2755
+ # @ wp-table-reloaded
2756
+ #: views/view-options.php:185
2757
  msgid "Export a dump file"
2758
  msgstr "Exportar um arquivo de Dump"
2759
 
2760
+ # @ wp-table-reloaded
2761
+ #: views/view-options.php:187
2762
+ msgid ""
2763
+ "To export all Tables and their settings, click the button below to generate "
2764
+ "and download a dump file."
2765
+ msgstr ""
2766
+ "Para exportar todas as tabelas e suas configurações, clique no botão abaixo "
2767
+ "para gerar e fazer download de um arquivo de dump."
2768
 
2769
+ # @ wp-table-reloaded
2770
+ #: views/view-options.php:187
2771
+ msgid ""
2772
+ "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that "
2773
+ "file under any circumstances as you will destroy the file!"
2774
+ msgstr ""
2775
+ "<strong>Aviso: Não</strong> editar o conteúdo desse arquivo em nenhuma "
2776
+ "circunstância como você vai destruir o arquivo!"
2777
 
2778
+ # @ wp-table-reloaded
2779
+ #: views/view-options.php:196
2780
  msgid "Import a dump file"
2781
  msgstr "Importar um arquivo de dump"
2782
 
2783
+ # @ wp-table-reloaded
2784
+ #: views/view-options.php:198
2785
+ msgid ""
2786
+ "To import a WP-Table Reloaded dump file and restore the included data, "
2787
+ "upload the file from your computer."
2788
+ msgstr ""
2789
+ "Para importar um arquivo de deump do WP-Table Reloaded e restaurar os dados "
2790
+ "incluídos, faça o upload do arquivo do seu computador."
2791
 
2792
+ # @ wp-table-reloaded
2793
+ #: views/view-options.php:198
2794
+ msgid ""
2795
+ "All current data of this WP-Table Reloaded installation (Tables, Options, "
2796
+ "Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
2797
+ msgstr ""
2798
+ "Todos os dados atuais do WP-Table instalação Reloaded (Tabelas, Opções, "
2799
+ "Definições) <strong>serão substituídos</strong> com os dados do arquivo!"
2800
 
2801
+ # @ wp-table-reloaded
2802
+ #: views/view-options.php:198
2803
  msgid "Do not proceed, if you do not understand this!"
2804
  msgstr "Não prossiga se você não entender isto!"
2805
 
2806
+ # @ wp-table-reloaded
2807
+ #: views/view-options.php:198
2808
+ msgid ""
2809
+ "It is highly recommended to export and backup the data of this installation "
2810
+ "before importing another dump file (see above)."
2811
+ msgstr ""
2812
+ "É altamente recomendável para exportar e fazer backup dos dados da "
2813
+ "instalação antes de importar outro arquivo de despejo (veja acima)."
2814
 
2815
+ # @ wp-table-reloaded
2816
+ #: views/view-options.php:204
2817
  msgid "Select Dump File"
2818
  msgstr "Selecione o arquivo de Dump"
2819
 
2820
+ # @ wp-table-reloaded
2821
+ #: views/view-options.php:206
2822
  msgid "Import Dump File"
2823
  msgstr "Importar arquivo de Dump"
2824
 
2825
+ # @ wp-table-reloaded
2826
+ #: views/view-options.php:216
2827
  msgid "Manually Uninstall WP-Table Reloaded"
2828
  msgstr "Desinstalar manualmente WP-Table Reloaded"
2829
 
2830
+ # @ wp-table-reloaded
2831
+ #: views/view-options.php:218
2832
+ msgid ""
2833
+ "Uninstalling <strong>will permanently delete</strong> all tables, data, and "
2834
+ "options, that belong to WP-Table Reloaded from the database, including all "
2835
+ "tables you added or imported."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2836
  msgstr ""
2837
+ "A desinstalação <strong>irá apagar permanentemente</strong> todas as "
2838
+ "tabelas, dados e opções, que pertencem WP-Quadro Reloaded do banco de dados, "
2839
+ "incluindo todas as tabelas que você adicionou ou importado."
2840
 
2841
+ # @ wp-table-reloaded
2842
+ #: views/view-options.php:218
2843
+ msgid ""
2844
+ "You will manually need to remove the plugin's files from the plugin folder "
2845
+ "afterwards."
2846
  msgstr ""
2847
+ "Você precisará remover manualmente os arquivos do plugin na pasta plugin "
2848
+ "depois."
2849
 
2850
+ # @ wp-table-reloaded
2851
+ #: views/view-options.php:218
2852
+ msgid ""
2853
+ "Be very careful with this and only click the button if you know what you are "
2854
+ "doing!"
2855
  msgstr ""
2856
+ "Tenha muito cuidado com isso e apenas clique no botão se você sabe o que "
2857
+ "está fazendo!"
2858
 
2859
+ # @ wp-table-reloaded
2860
+ #: views/view-options.php:222
2861
+ msgid "Uninstall Plugin WP-Table Reloaded"
2862
+ msgstr "Desinstalar o Plugin WP-Table Reloaded"
 
 
2863
 
2864
+ # @ wp-table-reloaded
2865
+ #: views/view-uninstall.php:3
2866
+ msgid "Plugin deactivated successfully."
2867
+ msgstr "Plugin desativado com sucesso."
 
2868
 
2869
+ # @ wp-table-reloaded
2870
+ #: views/view-uninstall.php:4
2871
+ #, fuzzy
2872
+ msgid ""
2873
+ "All tables, data and options were deleted. You may now manually remove the "
2874
+ "plugin's subfolder from your WordPress plugin folder or use the \"Delete\" "
2875
+ "link on the Plugins page."
2876
  msgstr ""
2877
+ "Todas as tabelas, informações e opções foram excluídas. Você já pode excluir "
2878
+ "a pasta deste plugin da pasta de plugins do WordPress."
languages/wp-table-reloaded-ru_RU.mo CHANGED
Binary file
languages/wp-table-reloaded-ru_RU.po CHANGED
@@ -1,820 +1,974 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP-Table Reloaded RU (1.7)\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
  "POT-Creation-Date: 2010-03-04 21:16+0000\n"
6
- "PO-Revision-Date: \n"
7
  "Last-Translator: Gordon\n"
8
  "Language-Team: WordPress4You <info@wordpress4you.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;\n"
13
  "X-Poedit-Language: Russian\n"
14
  "X-Poedit-Country: RUSSIAN FEDERATION\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-Basepath: .\n"
 
18
  "X-Poedit-SearchPath-0: ./wp-table-reloaded\n"
 
19
 
20
  #: classes/export.class.php:28
21
  #: classes/import.class.php:36
 
22
  msgid "CSV - Character-Separated Values"
23
  msgstr "CSV - Character-Separated Values (значения разделенные знаками)"
24
 
25
  #: classes/export.class.php:29
26
  #: classes/import.class.php:37
 
27
  msgid "HTML - Hypertext Markup Language"
28
  msgstr "HTML - Hypertext Markup Language (язык разметки гипертекста)"
29
 
30
  #: classes/export.class.php:30
31
  #: classes/import.class.php:38
 
32
  msgid "XML - eXtended Markup Language"
33
  msgstr "XML - eXtended Markup Language (расширенный язык разметки)"
34
 
35
  #: classes/export.class.php:33
 
36
  msgid "; (semicolon)"
37
  msgstr "; (точка с запятой)"
38
 
39
  #: classes/export.class.php:34
 
40
  msgid ", (comma)"
41
  msgstr ", (запятая)"
42
 
43
  #: classes/export.class.php:35
 
44
  msgid ": (colon)"
45
  msgstr ": (двоеточие)"
46
 
47
  #: classes/export.class.php:36
 
48
  msgid ". (dot)"
49
  msgstr ". (точка)"
50
 
51
  #: classes/export.class.php:37
 
52
  msgid "| (pipe)"
53
  msgstr "| (вертикальная черта)"
54
 
55
  #: classes/helper.class.php:40
56
- #: views/view-about.php:22
57
  #, php-format
 
58
  msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
59
  msgstr "Подробную информацию o WP-Table Reloaded можете получить на <a href=\"%s\">сайте плагина</a> или на странице <a href=\"%s\">WordPress Plugin Directory</a>."
60
 
61
  #: classes/helper.class.php:41
62
- #: views/view-about.php:22
63
  #, php-format
 
64
  msgid "For technical information, see the <a href=\"%s\">documentation</a>."
65
- msgstr "Техническую информацию можете найти в <a href=\"%s\">докумантеции</a>."
66
 
67
  #: classes/helper.class.php:42
68
- #: views/view-about.php:29
69
  #, php-format
 
70
  msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
71
  msgstr "<a href=\"%s\">Поддержка</a> осуществляется через <a href=\"%s\">Форум поддержки WordPress</a> (английский)."
72
 
73
  #: classes/helper.class.php:43
74
- #: views/view-about.php:29
75
  #, php-format
 
76
  msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
77
- msgstr "Перед тем, как обратиться за помощью, поищите ответы на форуме и внимательно прочитайте <a href=\"%s\">Часто задаваемые вопросы</a>, где вы можете найти ответы на наиболее часто задаваемые вопросы."
78
 
79
  #: classes/helper.class.php:44
80
- #: views/view-about.php:36
81
  #, php-format
 
82
  msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
83
  msgstr "Если вам понравился плагин, мы будем благодарны вам за <a href=\"%s\"><strong>пожертвование</strong></a>."
84
 
85
  #: classes/helper.class.php:74
 
86
  msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
87
  msgstr "Мы благодарны вам за то, что вы используете <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
88
 
89
  #: classes/helper.class.php:74
90
  #, php-format
 
91
  msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
92
  msgstr "Пожалуйста, поддержите плагин вашими <a href=\"%s\">пожертвованиями</a>!"
93
 
94
  #: classes/helper.class.php:104
95
  #: classes/helper.class.php:109
 
96
  msgid "Table cells can span across more than one column or row."
97
  msgstr "Ячейка таблицы может занимать больше одной строчки или столбца."
98
 
99
  #: classes/helper.class.php:104
 
100
  msgid "Combining consecutive cells within the same row is called \"colspanning\"."
101
  msgstr "Соединение ячеек в одной строке называется \"colspanning\"."
102
 
103
  #: classes/helper.class.php:104
 
104
  msgid "To combine cells, add the keyword #colspan# to the cell to the right of the one with the content for the combined cell by using the corresponding button."
105
  msgstr "Для того, что бы соединить ячейки в ряду, добавьте ключевое слово #colspan# в самую правую ячейку и нажмите соответствующую кнопку."
106
 
107
  #: classes/helper.class.php:104
108
  #: classes/helper.class.php:109
 
109
  msgid "Repeat this to add the keyword to all cells that shall be connected."
110
  msgstr "Повторите эту операцию для всех ячеек которые нужно соединить."
111
 
112
  #: classes/helper.class.php:104
113
  #: classes/helper.class.php:109
 
114
  msgid "Be aware that the JavaScript libraries will not work on tables which have combined cells."
115
  msgstr "Учтите, что библиотеки JavaScript не будут работать с таблицами, имеющими объедененные ячейки."
116
 
117
  #: classes/helper.class.php:109
 
118
  msgid "Combining consecutive cells within the same column is called \"rowspanning\"."
119
  msgstr "Соединение ячеек в одном столбце называется \"rowspanning\"."
120
 
121
  #: classes/helper.class.php:109
 
122
  msgid "To combine cells, add the keyword #rowspan# to the cell below the one with the content for the combined cell by using the corresponding button."
123
  msgstr "Для того, что бы соединить ячейки в столбце, добавьте ключевое слово #rowspan# в самую нижнюю ячейку и нажмите соответствующую кнопку."
124
 
125
  #: classes/helper.class.php:118
 
126
  msgid "Help"
127
  msgstr "Помощь"
128
 
129
- #: classes/render.class.php:140
130
  #: views/view-list.php:60
 
 
131
  msgid "Edit"
132
  msgstr "Редактировать"
133
 
134
- #: controllers/controller-admin.php:256
 
135
  msgid "Czech"
136
  msgstr "чешский"
137
 
138
- #: controllers/controller-admin.php:257
 
139
  msgid "German"
140
  msgstr "немецкий"
141
 
142
- #: controllers/controller-admin.php:258
 
143
  msgid "English"
144
  msgstr "английский"
145
 
146
- #: controllers/controller-admin.php:259
 
147
  msgid "Spanish"
148
  msgstr "испанский"
149
 
150
- #: controllers/controller-admin.php:260
 
151
  msgid "Finnish"
152
  msgstr "финский"
153
 
154
- #: controllers/controller-admin.php:261
 
155
  msgid "Hindi"
156
  msgstr "хинди"
157
 
158
- #: controllers/controller-admin.php:262
 
159
  msgid "Italian"
160
  msgstr "итальянский"
161
 
162
- #: controllers/controller-admin.php:263
 
163
  msgid "Japanese"
164
  msgstr "японский"
165
 
166
- #: controllers/controller-admin.php:264
 
167
  msgid "Brazilian Portuguese"
168
  msgstr "бразильский/партугальский"
169
 
170
- #: controllers/controller-admin.php:265
 
171
  msgid "Chinese (Simplified)"
172
  msgstr "Китайский (Упрощенный)"
173
 
174
- #: controllers/controller-admin.php:266
 
175
  msgid "Russian"
176
  msgstr "русский"
177
 
178
- #: controllers/controller-admin.php:267
 
179
  msgid "Slovak"
180
  msgstr "словацкий"
181
 
182
- #: controllers/controller-admin.php:268
 
183
  msgid "Swedish"
184
  msgstr "шведский"
185
 
186
- #: controllers/controller-admin.php:270
187
- msgid "Albanian"
188
- msgstr "албанский"
189
-
190
- #: controllers/controller-admin.php:271
191
- msgid "Belorussian"
192
- msgstr "белорусский"
193
-
194
- #: controllers/controller-admin.php:272
195
- msgid "Estonian"
196
- msgstr "эстонский"
197
-
198
- #: controllers/controller-admin.php:273
199
  msgid "French"
200
  msgstr "французский"
201
 
202
- #: controllers/controller-admin.php:274
 
203
  msgid "Polish"
204
  msgstr "польский"
205
 
206
- #: controllers/controller-admin.php:275
207
- msgid "Turkish"
208
- msgstr "турецкий"
209
-
210
- #: controllers/controller-admin.php:301
211
  #, php-format
 
212
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
213
  msgstr "Добро пожаловать WP-Table Reloaded %s. Если у вас возникнут какие-либо вопросы или затруднения, пожалуйста ознакомьтесь с <a href=\"%s\">часто задаваемыми вопросами</a> и <a href=\"%s\">документацией</a>, или обращайтесь в секцию <a href=\"%s\">поддержки</a> ."
214
 
215
- #: controllers/controller-admin.php:302
216
  #, php-format
 
217
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
218
  msgstr "Спасибо, за то что обновили свою версию WP-Table Reloaded %s."
219
 
220
- #: controllers/controller-admin.php:302
221
- msgid "This version includes several enhancements, like an updated DataTables library, a &quot;Table&quot; button in the toolbar of the visual editor, and several other things."
222
- msgstr "Новая версия содержит ряд улучшений, таких как обновленные библиотеки DataTables, кнопку &quot;Таблицы&quot; на панели инструментов визуального редактора и некоторые другие."
223
-
224
- #: controllers/controller-admin.php:302
225
  #, php-format
 
226
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
227
  msgstr "Для того, что бы получить более подробную информацию, прочтите <a href=\"%s\">сообщение о релизе</a>."
228
 
229
- #: controllers/controller-admin.php:302
230
  #, php-format
 
231
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
232
  msgstr "Если вам понравились новые функции и возможности, я буду благодарен за небольшое <a href=\"%s\">пожертвование</a>. Спасибо."
233
 
234
- #: controllers/controller-admin.php:307
 
235
  msgid "Hide this message"
236
  msgstr "Скрыть это сообщение."
237
 
238
- #: controllers/controller-admin.php:315
 
239
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
240
  msgstr "Спасибо за то, что используете этот плагин. Вы пользуетесь WP-Table Reloaded уже более месяца."
241
 
242
- #: controllers/controller-admin.php:315
243
  #, php-format
 
244
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
245
  msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
246
  msgstr[0] "Если всё работает и вы довольны тем, как управляете вашей %s таблицей, то возможно, это стоит один доллар или евро?"
247
  msgstr[1] "Если всё работает и вы довольны тем, как управляете вашими %s таблицами, то возможно, это стоит один доллар или евро?"
248
 
249
- #: controllers/controller-admin.php:316
250
  #, php-format
 
251
  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!"
252
  msgstr "<a href=\"%s\">Пожертвования</a> помогут мне поддерживать и развивать этот <i>бесплатный</i> плагин. Спасибо!"
253
 
254
- #: controllers/controller-admin.php:317
 
255
  msgid "Sure, no problem!"
256
  msgstr "Да, без проблем!"
257
 
258
- #: controllers/controller-admin.php:318
 
259
  msgid "I already donated."
260
  msgstr "Я уже сделал пожертвование."
261
 
262
- #: controllers/controller-admin.php:319
 
263
  msgid "No, thanks. Don't ask again."
264
  msgstr "Нет, спасибо. Больше не спрашивайте."
265
 
266
- #: controllers/controller-admin.php:347
267
  #, php-format
 
268
  msgid "Table &quot;%s&quot; added successfully."
269
  msgstr "Таблица &quot;%s&quot; была успешно добавленна."
270
 
271
- #: controllers/controller-admin.php:378
272
  #, php-format
 
273
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
274
  msgstr "Таблица успешно отредактированна. Теперь эта таблица имеет такое ID %s. Вам необходимо изменить существующие коды соответственно."
275
 
276
- #: controllers/controller-admin.php:380
277
  #, php-format
 
278
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
279
  msgstr "ID нельзя изменить с %s нa %s, потому что уже существует таблица с таким ID."
280
 
281
- #: controllers/controller-admin.php:383
 
282
  msgid "Table edited successfully."
283
  msgstr "Таблица была успешно отредактированна."
284
 
285
- #: controllers/controller-admin.php:430
 
286
  msgid "Rows swapped successfully."
287
  msgstr "Ряды успешно заменены."
288
 
289
- #: controllers/controller-admin.php:451
 
290
  msgid "Columns swapped successfully."
291
  msgstr "Столбцы успешно заменены."
292
 
293
- #: controllers/controller-admin.php:480
 
294
  msgid "Table sorted successfully."
295
  msgstr "Таблица успешно отсортированна."
296
 
297
- #: controllers/controller-admin.php:501
 
298
  msgid "Row moved successfully."
299
  msgstr "Ряд успешно перемещен."
300
 
301
- #: controllers/controller-admin.php:526
 
302
  msgid "Column moved successfully."
303
  msgstr "Столбец успешно перемещен."
304
 
305
- #: controllers/controller-admin.php:534
 
306
  msgid "Row could not be deleted."
307
  msgid_plural "Rows could not be deleted."
308
  msgstr[0] "Строка не может быть удален."
309
  msgstr[1] "Строки не могут быть удалены."
310
 
311
- #: controllers/controller-admin.php:543
 
312
  msgid "Row deleted successfully."
313
  msgid_plural "Rows deleted successfully."
314
  msgstr[0] "Ряд удален успешно."
315
  msgstr[1] "Ряды удалены успешно."
316
 
317
- #: controllers/controller-admin.php:553
 
318
  msgid "Column could not be deleted."
319
  msgid_plural "Columns could not be deleted."
320
  msgstr[0] "Столбец не может быть удален."
321
  msgstr[1] "Столбцы не могут быть удалены."
322
 
323
- #: controllers/controller-admin.php:566
 
324
  msgid "Column deleted successfully."
325
  msgid_plural "Columns deleted successfully."
326
  msgstr[0] "Столбец удален успешно."
327
  msgstr[1] "Столбцы удалены успешно."
328
 
329
- #: controllers/controller-admin.php:589
 
330
  msgid "Row inserted successfully."
331
  msgid_plural "Rows inserted successfully."
332
  msgstr[0] "Ряд вставлен успешно."
333
  msgstr[1] "Ряды вставлены успешно."
334
 
335
- #: controllers/controller-admin.php:616
 
336
  msgid "Column inserted successfully."
337
  msgid_plural "Columns inserted successfully."
338
  msgstr[0] "Столбец вставлен успешно."
339
  msgstr[1] "Столбцы вставлены успешно."
340
 
341
- #: controllers/controller-admin.php:631
 
342
  msgid "Row added successfully."
343
  msgid_plural "Rows added successfully."
344
  msgstr[0] "Ряд добавлен успешно."
345
  msgstr[1] "Ряды добавлены успешно."
346
 
347
- #: controllers/controller-admin.php:645
 
348
  msgid "Column added successfully."
349
  msgid_plural "Columns added successfully."
350
  msgstr[0] "Столбец добавлен успешно."
351
  msgstr[1] "Столбцы добавлены успешно."
352
 
353
- #: controllers/controller-admin.php:652
 
354
  msgid "Could not add Custom Data Field, because you did not enter a name."
355
  msgstr "Пользовательское поле не может быть добавленно, так как не указанно имя."
356
 
357
- #: controllers/controller-admin.php:657
 
358
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
359
  msgstr "Пользовательское поле не может быть добавленно, так как имя, которое вы указали, зарезервированно за другим полем."
360
 
361
- #: controllers/controller-admin.php:663
 
362
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
363
  msgstr "Пользовательское поле не может быть добавленно, так как имя содержит недопустимые знаки."
364
 
365
- #: controllers/controller-admin.php:667
 
366
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
367
  msgstr "Пользовательское поле не может быть добавленно, так как поле с таким именем уже существует."
368
 
369
- #: controllers/controller-admin.php:673
 
370
  msgid "Custom Data Field added successfully."
371
  msgstr "Пользовательское поле добавленно успешно."
372
 
373
- #: controllers/controller-admin.php:713
374
- #: controllers/controller-admin.php:769
 
375
  msgid "Copy of"
376
  msgstr "Копия"
377
 
378
- #: controllers/controller-admin.php:717
 
379
  msgid "Table copied successfully."
380
  msgid_plural "Tables copied successfully."
381
  msgstr[0] "Таблица скопированна успешно."
382
  msgstr[1] "Таблицы скопированны успешно."
383
 
384
- #: controllers/controller-admin.php:723
 
385
  msgid "Table deleted successfully."
386
  msgid_plural "Tables deleted successfully."
387
  msgstr[0] "Таблица удалена успешно."
388
  msgstr[1] "Таблицы удалены успешно."
389
 
390
- #: controllers/controller-admin.php:744
391
- #: controllers/controller-admin.php:899
392
- #: controllers/controller-admin.php:937
 
393
  msgid "Table imported successfully."
394
  msgid_plural "Tables imported successfully."
395
  msgstr[0] "Таблица импортированна успешно."
396
  msgstr[1] "Таблицы импортированны успешно"
397
 
398
- #: controllers/controller-admin.php:751
 
399
  msgid "You did not select any tables!"
400
  msgstr "Ни одна таблица не выбранна."
401
 
402
- #: controllers/controller-admin.php:774
403
  #, php-format
 
404
  msgid "Table &quot;%s&quot; copied successfully."
405
  msgstr "Таблица &quot;%s&quot; скопированна успешно."
406
 
407
- #: controllers/controller-admin.php:792
408
  #, php-format
 
409
  msgid "Table &quot;%s&quot; deleted successfully."
410
  msgstr "Таблица &quot;%s&quot; удалена успешно."
411
 
412
- #: controllers/controller-admin.php:800
 
413
  msgid "Custom Data Field deleted successfully."
414
  msgstr "Пользовательское поле удалено успешно."
415
 
416
- #: controllers/controller-admin.php:802
 
417
  msgid "Custom Data Field could not be deleted."
418
  msgstr "Пользовательское поле не может быть удалено."
419
 
420
- #: controllers/controller-admin.php:808
 
421
  msgid "Delete failed."
422
  msgstr "Удаление не состоялось."
423
 
424
- #: controllers/controller-admin.php:840
425
- #: controllers/controller-admin.php:850
426
- #: controllers/controller-admin.php:861
 
427
  msgid "Imported Table"
428
  msgstr "Импортированная таблица."
429
 
430
- #: controllers/controller-admin.php:841
431
- #: controllers/controller-admin.php:862
432
  #, php-format
 
433
  msgid "from %s"
434
  msgstr "из %s"
435
 
436
- #: controllers/controller-admin.php:851
 
437
  msgid "via form"
438
  msgstr "через форму"
439
 
440
- #: controllers/controller-admin.php:878
441
- #: controllers/controller-admin.php:915
 
442
  msgid "Table could not be imported."
443
  msgstr "Таблица не может быть импортированна."
444
 
445
- #: controllers/controller-admin.php:895
446
  #, php-format
 
447
  msgid "Table %s (%s) replaced successfully."
448
  msgstr "Таблица %s (%s) заменена успешно."
449
 
450
- #: controllers/controller-admin.php:945
451
- #: controllers/controller-admin.php:1138
 
452
  msgid "You do not have sufficient rights to perform this action."
453
  msgstr "У вас недостаточно прав для выполнения этого действия."
454
 
455
- #: controllers/controller-admin.php:952
 
456
  msgid "You did not upload a WP-Table Reloaded dump file."
457
  msgstr "Вы не загрузили WP-Table Reloaded дамп файл."
458
 
459
- #: controllers/controller-admin.php:961
 
460
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
461
  msgstr "Вы загрузили пустой дамп файл. Пожалуйста, загрузите корректный дамп файл."
462
 
463
- #: controllers/controller-admin.php:990
 
464
  msgid "All Tables, Settings and Options were successfully imported."
465
  msgstr "Все таблицы, настройки и установки были успешно перенесены."
466
 
467
- #: controllers/controller-admin.php:1019
468
  #, php-format
 
469
  msgid "Table &quot;%s&quot; exported successfully."
470
  msgstr "Таблица &quot;%s&quot;экспортированна успешно."
471
 
472
- #: controllers/controller-admin.php:1064
473
- #: views/view-options.php:232
 
474
  msgid "You do not have sufficient rights to access the Plugin Options."
475
- msgstr "У вас недостаточно прав для доступа к Plugin Options."
476
 
477
- #: controllers/controller-admin.php:1119
 
478
  msgid "Options saved successfully."
479
  msgstr "Опции сохранены успешно."
480
 
481
- #: controllers/controller-admin.php:1122
482
  #, php-format
 
483
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
484
  msgstr "<a href=\"%s\">Продолжить.</a>"
485
 
486
- #: controllers/controller-admin.php:1188
 
487
  msgid "There is no table with this ID!"
488
  msgstr "Таблица с таким ID не существует."
489
 
490
- #: controllers/controller-admin.php:1225
 
491
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
492
  msgstr "Очень признателен вам за пожертвование. Вы сделали свой вклад в развитие WP-Table Reloaded!"
493
 
494
- #: controllers/controller-admin.php:1227
495
  #, php-format
 
496
  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 &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
497
- msgstr ""
498
 
499
- #: controllers/controller-admin.php:1227
500
- #: controllers/controller-admin.php:1655
 
501
  msgid "Donate"
502
  msgstr "Пожертвование"
503
 
504
- #: controllers/controller-admin.php:1250
505
- #: controllers/controller-admin.php:1257
 
506
  msgid "List of Tables"
507
  msgstr "Список таблиц"
508
 
509
- #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.7-beta1) #-#-#-#-#
510
- #. Plugin Name of an extension
511
- #: controllers/controller-admin.php:1250
512
- #: controllers/controller-admin.php:1254
513
- #: controllers/controller-admin.php:1256
 
514
  msgid "WP-Table Reloaded"
515
  msgstr "WP-Table Reloaded"
516
 
517
- #: controllers/controller-admin.php:1251
518
- #: controllers/controller-admin.php:1287
 
519
  msgid "Add new Table"
520
  msgstr "Добавить новую таблицу"
521
 
522
- #: controllers/controller-admin.php:1252
523
- #: controllers/controller-admin.php:1288
 
524
  msgid "Import a Table"
525
  msgstr "Импортировать таблицу"
526
 
527
- #: controllers/controller-admin.php:1253
528
- #: controllers/controller-admin.php:1289
 
529
  msgid "Export a Table"
530
  msgstr "Экспортировать таблицу"
531
 
532
- #: controllers/controller-admin.php:1254
533
- #: controllers/controller-admin.php:1295
534
- #: views/view-edit.php:342
535
- #: views/view-edit.php:357
536
  #: views/view-export.php:10
 
537
  msgid "Plugin Options"
538
  msgstr "Настройки плагина"
539
 
540
- #: controllers/controller-admin.php:1255
 
541
  msgid "About WP-Table Reloaded"
542
  msgstr "О WP-Table Reloaded"
543
 
544
- #: controllers/controller-admin.php:1263
545
  #, php-format
 
546
  msgid "Edit Table &quot;%s&quot; (ID %s)"
547
  msgstr "Редактировать таблицу &quot;%s&quot; (ID %s)"
548
 
549
- #: controllers/controller-admin.php:1264
550
  #, php-format
 
551
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
552
  msgstr "Предварительный просмотр таблицы &quot;%s&quot; (ID %s)"
553
 
554
- #: controllers/controller-admin.php:1286
 
 
555
  msgid "List Tables"
556
  msgstr "Отобразить таблицы"
557
 
558
- #: controllers/controller-admin.php:1296
 
559
  msgid "About the plugin"
560
  msgstr "О плагине"
561
 
562
- #: controllers/controller-admin.php:1651
 
563
  msgid "WP-Table Reloaded Plugin Page"
564
  msgstr "Страница плагина WP-Table Reloaded"
565
 
566
- #: controllers/controller-admin.php:1651
 
567
  msgid "Plugin Page"
568
  msgstr "Страница плагина"
569
 
570
- #: controllers/controller-admin.php:1652
 
571
  msgid "Frequently Asked Questions"
572
  msgstr "Часто задаваемые вопросы"
573
 
574
- #: controllers/controller-admin.php:1652
 
575
  msgid "FAQ"
576
  msgstr "FAQ"
577
 
578
- #: controllers/controller-admin.php:1653
 
579
  msgid "Support"
580
  msgstr "Поддержка"
581
 
582
- #: controllers/controller-admin.php:1654
 
583
  msgid "Plugin Documentation"
584
  msgstr "Документация плагина"
585
 
586
- #: controllers/controller-admin.php:1654
 
587
  msgid "Documentation"
588
  msgstr "Документация"
589
 
590
- #: controllers/controller-admin.php:1655
 
591
  msgid "Support WP-Table Reloaded with your donation!"
592
  msgstr "Поддержите WP-Table Reloaded с помощью своих пожертвований !"
593
 
594
- #: controllers/controller-admin.php:1694
 
595
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
596
  msgstr "Вы уверенны ? Это следует сделать перед удалением плагина!"
597
 
598
- #: controllers/controller-admin.php:1695
 
599
  msgid "URL of link to insert"
600
  msgstr "URL ссылки"
601
 
602
- #: controllers/controller-admin.php:1696
 
603
  msgid "Text of link"
604
  msgstr "Текст ссылки"
605
 
606
- #: controllers/controller-admin.php:1697
 
607
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
608
  msgstr "Чтобы поместить в ячейку HTML код ссылки, кликните на ячейке после того, как закроете это диалоговое окно."
609
 
610
- #: controllers/controller-admin.php:1698
 
611
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
612
  msgstr "Чтобы вставить картинку, кликните на ту ячейку куда вы хотите поместить картинку."
613
 
614
- #: controllers/controller-admin.php:1698
 
615
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
616
  msgstr "Откроется окно медиа библиотеки, где вы сможете выбрать картинку или вставить URL картинки."
617
 
618
- #: controllers/controller-admin.php:1698
619
  #, php-format
 
620
  msgid "Click the &quot;%s&quot; button to insert the image."
621
  msgstr "Кликните &quot;%s&quot; кнопку, чтобы вставить картинку."
622
 
623
- #: controllers/controller-admin.php:1698
 
624
  msgid "Insert into Post"
625
  msgstr "Вставить в пост."
626
 
627
- #: controllers/controller-admin.php:1699
 
628
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
629
  msgstr "Чтобы объединить ячейки в ряду, нужно кликнуть на ячейку которая стоит справа от той, в которой находится содержимое, которое вы хотите поместить в объединенные ячейки."
630
 
631
- #: controllers/controller-admin.php:1700
 
632
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
633
  msgstr "Чтобы объединить ячейки в столбце, нужно кликнуть на ячейку которая стоит под той, в которой находится содержимое, которое вы хотите поместить в объединенные ячейки."
634
 
635
- #: controllers/controller-admin.php:1701
 
636
  msgid "Do you want to copy the selected tables?"
637
  msgstr "Вы хотите скопировать выделенные таблицы?"
638
 
639
- #: controllers/controller-admin.php:1702
 
640
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
641
  msgstr "Выделенные таблицы и всё содержимое будут удаленны. Вы действительно хотите их удалить?"
642
 
643
- #: controllers/controller-admin.php:1703
 
644
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
645
  msgstr "Вы действительно хотите импортировать выделенные таблицы из wp-Table plugin?"
646
 
647
- #: controllers/controller-admin.php:1704
 
648
  msgid "Do you want to copy this table?"
649
  msgstr "Вы хотите скопировать эту таблицу?"
650
 
651
- #: controllers/controller-admin.php:1705
 
652
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
653
  msgstr "Всу таблицы и содержимое будут удаленны. Вы действительно хотите их удалить?"
654
 
655
- #: controllers/controller-admin.php:1706
 
656
  msgid "Do you really want to delete the selected rows?"
657
  msgstr "Вы действительно хотите удалить выделенные ряды?"
658
 
659
- #: controllers/controller-admin.php:1707
 
660
  msgid "Do you really want to delete the selected columns?"
661
  msgstr "Вы действительно хотите удалить выделенные столбцы?"
662
 
663
- #: controllers/controller-admin.php:1708
664
- #: controllers/controller-admin.php:1712
665
- #: controllers/controller-admin.php:1714
 
666
  msgid "You have not selected any rows."
667
  msgstr "Вы не выбрали ни одного ряда."
668
 
669
- #: controllers/controller-admin.php:1709
670
- #: controllers/controller-admin.php:1713
671
- #: controllers/controller-admin.php:1715
 
672
  msgid "You have not selected any columns."
673
  msgstr "Вы не выбрали ни одного столбца."
674
 
675
- #: controllers/controller-admin.php:1710
 
676
  msgid "You can not delete all rows of the table at once!"
677
  msgstr "Вы не можете удалить сразу все ряды в таблице!"
678
 
679
- #: controllers/controller-admin.php:1711
 
680
  msgid "You can not delete all columns of the table at once!"
681
  msgstr "Вы не можете удалить сразу все столбцы в таблице!"
682
 
683
- #: controllers/controller-admin.php:1716
 
684
  msgid "Do you really want to import this table from the wp-Table plugin?"
685
  msgstr "Вы действительно хотите импортировать эту таблицу из wp-Table plugin?"
686
 
687
- #: controllers/controller-admin.php:1717
 
688
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
689
  msgstr "Вы действительно хотите удалить плагин и ВСЕ данные?"
690
 
691
- #: controllers/controller-admin.php:1718
 
692
  msgid "Are you really sure?"
693
  msgstr "Вы уверенны?"
694
 
695
- #: controllers/controller-admin.php:1719
 
696
  msgid "Do you really want to change the ID of the table?"
697
  msgstr "Вы действительно хотите изменить ID таблицы?"
698
 
699
- #: controllers/controller-admin.php:1720
 
700
  msgid "To show this Custom Data Field, use this shortcode:"
701
  msgstr "Чтобы отобразить это пользовательское поле используйте код:"
702
 
703
- #: controllers/controller-admin.php:1721
 
704
  msgid "To show this table, use this shortcode:"
705
  msgstr "Чтобы отобразить эту таблицу используйте код:"
706
 
707
- #: controllers/controller-admin.php:1722
 
708
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
709
  msgstr "Внимание: вы потеряете все таблицы и натройки! Вам нужно создать резервную копию."
710
 
711
- #: controllers/controller-admin.php:1723
 
712
  msgid "You have made changes to the content of this table and not yet saved them."
713
  msgstr "Вы внесли изменеия в содержимое этой таблицы, но не сохранили их."
714
 
715
- #: controllers/controller-admin.php:1723
716
  #, php-format
 
717
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
718
  msgstr "Вам нужно кликнуть &quot;%s&quot; или данные будут потерянны в случае если вы покините эту страницу."
719
 
720
- #: controllers/controller-admin.php:1723
721
  #: views/view-edit.php:41
722
  #: views/view-edit.php:253
723
- #: views/view-edit.php:405
724
- #: views/view-edit.php:456
 
725
  msgid "Update Changes"
726
  msgstr "Обновить изменения."
727
 
728
- #: controllers/controller-admin.php:1766
729
  #: views/view-about.php:14
730
  #: views/view-list.php:2
 
731
  msgid "Table"
732
  msgstr "таблица"
733
 
734
- #: controllers/controller-admin.php:1767
 
735
  msgid "Insert a Table"
736
  msgstr "Вставить таблицу"
737
 
738
- #: controllers/controller-admin.php:1828
 
739
  msgid "Please wait..."
740
  msgstr "Пожалуйста, подождите..."
741
 
742
- #: controllers/controller-admin.php:1829
 
743
  msgid "Show _MENU_ Tables"
744
  msgstr "Показать _MENU_ таблиц"
745
 
746
- #: controllers/controller-admin.php:1830
747
  #: views/view-ajax_list.php:53
748
- #: views/view-export.php:71
749
- #: views/view-list.php:88
 
750
  msgid "No tables were found."
751
  msgstr "Ни одной таблицы не найденно."
752
 
753
- #: controllers/controller-admin.php:1831
 
754
  msgid "_START_ to _END_ of _TOTAL_ Tables"
755
- msgstr "Показать _START_ до _END_ из _TOTAL_ таблиц"
756
 
757
- #: controllers/controller-admin.php:1832
 
758
  msgid "(filtered from _MAX_ Tables)"
759
  msgstr "(выбранно из _MAX_ таблиц)"
760
 
761
- #: controllers/controller-admin.php:1833
 
762
  msgid "Filter:"
763
  msgstr "Отфильтровать:"
764
 
765
- #: controllers/controller-admin.php:1834
 
766
  msgid "First"
767
  msgstr "Первый"
768
 
769
- #: controllers/controller-admin.php:1835
 
770
  msgid "Back"
771
  msgstr "Назад"
772
 
773
- #: controllers/controller-admin.php:1836
 
774
  msgid "Next"
775
  msgstr "Следующий"
776
 
777
- #: controllers/controller-admin.php:1837
 
778
  msgid "Last"
779
  msgstr "Последний"
780
 
781
  #: views/view-about.php:5
 
782
  msgid "Plugin Purpose"
783
  msgstr "Назначение плагина."
784
 
785
  #: views/view-about.php:7
 
786
  msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
787
- msgstr "WP-Table Reloaded дает вам возможность создавать таблицы и управлять ими в админ части WordPress."
788
 
789
  #: views/view-about.php:7
 
790
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
791
  msgstr "Эти таблицы могут содержать текст, числа и даже HTML (например картинки и ссылки)"
792
 
793
  #: views/view-about.php:7
 
794
  msgid "You can then show the tables in your posts, on your pages or in text-widgets by using a shortcode."
795
  msgstr "Затем вы можете поместить таблицы в ваш пост, на ваши страницы или виджеты, используя код."
796
 
797
  #: views/view-about.php:7
 
798
  msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
799
  msgstr "Если вы хотите использовать таблицы где-либо еще в вашей теме, вы можете использовать функцию шаблона."
800
 
801
  #: views/view-about.php:12
 
802
  msgid "Usage"
803
  msgstr "Использование"
804
 
805
  #: views/view-about.php:14
 
806
  msgid "At first you should add or import a table."
807
  msgstr "Сначала вам нужно добавить и импортировать таблицу."
808
 
809
  #: views/view-about.php:14
 
810
  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."
811
  msgstr "Это значит, что вы позволили плагину создать пустую таблицу или загрузили уже существующую таблицу из CSV, XML или HTML файла."
812
 
813
  #: views/view-about.php:14
 
814
  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."
815
  msgstr "После вы можете редактировать ваши данные или изменять структуру таблицы (например добавляя ряды или столбцы, меняя местами ряды или столбцы, или сортируя их) и выбирать специфические опции таблицы, такие как альтернативный цвет фона строки и отображение имени и описания."
816
 
817
  #: views/view-about.php:14
 
818
  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."
819
  msgstr "Для того, чтобы добавить картинку или ссылку в ячейку, используйте соответствующие кнопки. "
820
 
@@ -823,151 +977,181 @@ msgstr "Для того, чтобы добавить картинку или с
823
  #: views/view-edit.php:9
824
  #: views/view-list.php:2
825
  #, php-format
 
826
  msgid "To insert the table into a page, post or text-widget, copy the shortcode <strong>[table id=%s /]</strong> and paste it into the corresponding place in the editor."
827
  msgstr "Для того, чтобы добавить таблицу на страницу, в пост или в текстовый виджет, скопируйте код <strong>[table id=%s /]</strong> и поместите в соответствуещее место в редакторе."
828
 
829
  #: views/view-about.php:14
830
  #, php-format
 
831
  msgid "You can also select the desired table from a list (after clicking the button &quot;%s&quot; in the editor toolbar) and the corresponding shortcode will be added for you."
832
  msgstr "Вы так же можете выбрать желаемую таблицу из списка (для этого нужно нажать кнопку &quot;%s&quot; на панели инструментов редактора) и соответствующий код будет добавлен."
833
 
834
  #: views/view-about.php:14
 
835
  msgid "Tables can be styled by changing and adding CSS commands."
836
  msgstr "Внешний вид таблицы может быть изменен с помощью добавления и изменения CSS директив."
837
 
838
  #: views/view-about.php:14
 
839
  msgid "The plugin ships with default CSS Stylesheets, which can be customized with own code or replaced with other Stylesheets."
840
  msgstr "Плагин предоставляется с листом стилей по умолчанию, который может быть дополнен вашим собственным кодом или заменен на другой лист стилей."
841
 
842
  #: views/view-about.php:14
 
843
  msgid "For this, each table is given certain CSS classes that can be used as CSS selectors."
844
  msgstr "Для этого каждая таблица снабжена своими классами в листе стилей, которые могут быть использованны как селекторы стилей."
845
 
846
  #: views/view-about.php:14
847
  #, php-format
 
848
  msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
849
  msgstr "Списки селекторов и примеры стилей вы можете найти в <a href=\"%s\">документации</a>."
850
 
851
- #: views/view-about.php:20
 
852
  msgid "More Information and Documentation"
853
  msgstr "Информация и документация."
854
 
855
- #: views/view-about.php:27
 
856
  msgid "Help and Support"
857
- msgstr "Помощ и поддержка"
858
 
859
- #: views/view-about.php:29
860
  #, php-format
 
861
  msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
862
  msgstr "Если вы не нашли ответ на свой вопрос, пожалуйста, <a href=\"%s\">создайте новую тему</a> на форуме поддержки WordPress с ключевым словом &quot;wp-table-reloaded&quot;."
863
 
864
- #: views/view-about.php:34
 
865
  msgid "Author and License"
866
  msgstr "Автор и лицензия"
867
 
868
- #: views/view-about.php:36
869
  #, php-format
 
870
  msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
871
  msgstr "Плагин написал <a href=\"%s\">Tobias B&auml;thge</a>"
872
 
873
- #: views/view-about.php:36
 
874
  msgid "It is licensed as Free Software under GPL 2."
875
  msgstr "Программа распространяется по лицензии GPL 2."
876
 
877
- #: views/view-about.php:36
878
  #, php-format
 
879
  msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
880
  msgstr "Пожалуйста дайте оценку плагину в <a href=\"%s\"> директории плагинов WordPress</a>."
881
 
882
- #: views/view-about.php:36
 
883
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
884
  msgstr "Пожертвования и высокие рейтинги помогают дальнейшему развитию плагина и его поддержке. Приветствуется любое пожертвование! Спасибо!"
885
 
886
- #: views/view-about.php:41
 
887
  msgid "Credits and Thanks"
888
  msgstr "Благодарность"
889
 
890
- #: views/view-about.php:44
 
891
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
892
  msgstr "Спасибо за то, что обратились на <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> для того, чтобы получить wp-Table плагин,"
893
 
894
- #: views/view-about.php:45
 
895
  msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
896
  msgstr "Allan Jardine за плагином <a href=\"http://www.datatables.net/\">DataTables jQuery </a>,"
897
 
898
- #: views/view-about.php:46
 
899
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
900
  msgstr "Christian Bach за плагином <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery</a>,"
901
 
902
- #: views/view-about.php:47
 
903
  msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
904
  msgstr "Soerenu Kringsovi за его расширение <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
905
 
906
- #: views/view-about.php:48
 
907
  msgid "the submitters of translations:"
908
  msgstr "переводчикам:"
909
 
910
- #: views/view-about.php:76
911
  #, php-format
 
912
  msgid "%s (thanks to %s)"
913
  msgstr "%s (благодаря %s)"
914
 
915
- #: views/view-about.php:79
 
916
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
917
  msgstr "и всем спонсорам, разработчикам, обозревателям и тем кто использует плагин!"
918
 
919
- #: views/view-about.php:85
 
920
  msgid "Debug and Version Information"
921
  msgstr "Отладка и информация о версиях"
922
 
923
- #: views/view-about.php:85
924
  #: views/view-edit.php:15
925
  #: views/view-edit.php:51
926
  #: views/view-edit.php:104
927
  #: views/view-edit.php:262
928
- #: views/view-edit.php:353
929
- #: views/view-edit.php:414
930
  #: views/view-options.php:19
931
  #: views/view-options.php:70
932
- #: views/view-options.php:87
933
- #: views/view-options.php:184
934
- #: views/view-options.php:195
 
935
  msgctxt "expand"
936
  msgid "Hide"
937
- msgstr "Скрыть"
938
 
939
- #: views/view-about.php:85
940
  #: views/view-edit.php:15
941
  #: views/view-edit.php:51
942
  #: views/view-edit.php:104
943
  #: views/view-edit.php:262
944
- #: views/view-edit.php:353
945
- #: views/view-edit.php:414
946
  #: views/view-options.php:19
947
  #: views/view-options.php:70
948
- #: views/view-options.php:87
949
- #: views/view-options.php:184
950
- #: views/view-options.php:195
 
951
  msgid "Expand"
952
- msgstr "Отобразить"
953
 
954
- #: views/view-about.php:88
 
955
  msgid "You are using the following versions of the software."
956
- msgstr "Вы используете слудующую версию программы."
957
 
958
- #: views/view-about.php:88
 
959
  msgid "Please provide this information in bug reports."
960
  msgstr "Предоставьте эту информацию как отчет об ошибке."
961
 
962
- #: views/view-about.php:91
 
963
  msgid "Plugin installed"
964
  msgstr "Плагин установлен."
965
 
966
  #: views/view-add.php:4
 
967
  msgid "To add a new table, enter its name, a description (optional) and the number of rows and columns."
968
- msgstr "Для того, чтобы добавить новую таблицу введите её имя, описание (опционно) и укажите количество рядов и колонок."
969
 
970
  #: views/view-add.php:4
 
971
  msgid "You may also add, insert or delete rows and columns later."
972
  msgstr "Вы можете добавить или удалить ряды и колонки позже."
973
 
@@ -976,14 +1160,16 @@ msgstr "Вы можете добавить или удалить ряды и к
976
  #: views/view-ajax_list.php:22
977
  #: views/view-edit.php:23
978
  #: views/view-edit.php:283
979
- #: views/view-import.php:99
980
- #: views/view-import.php:108
981
  #: views/view-list.php:15
982
  #: views/view-list.php:25
 
983
  msgid "Table Name"
984
- msgstr "Имя таблицы"
985
 
986
  #: views/view-add.php:14
 
987
  msgid "Enter Table Name"
988
  msgstr "Укажите имя таблицы"
989
 
@@ -991,1348 +1177,1396 @@ msgstr "Укажите имя таблицы"
991
  #: views/view-ajax_list.php:15
992
  #: views/view-ajax_list.php:23
993
  #: views/view-edit.php:27
994
- #: views/view-import.php:100
995
- #: views/view-import.php:109
996
  #: views/view-list.php:16
997
  #: views/view-list.php:26
 
998
  msgid "Description"
999
  msgstr "Описание"
1000
 
1001
  #: views/view-add.php:18
 
1002
  msgid "Enter Description"
1003
  msgstr "Введите описание"
1004
 
1005
  #: views/view-add.php:21
 
1006
  msgid "Number of Rows"
1007
  msgstr "Количество рядов"
1008
 
1009
  #: views/view-add.php:25
 
1010
  msgid "Number of Columns"
1011
  msgstr "Количество колонок"
1012
 
1013
  #: views/view-add.php:32
 
1014
  msgid "Add Table"
1015
  msgstr "Добавить таблицу"
1016
 
1017
  #: views/view-ajax_list.php:3
1018
  #: views/view-list.php:2
 
1019
  msgid "This is a list of all available tables."
1020
  msgstr "Список всех доступных таблиц."
1021
 
1022
  #: views/view-ajax_list.php:3
 
1023
  msgid "You may insert a table into a post or page here."
1024
  msgstr "Здесь вы можете добавить таблицу в сообщение или на страницу."
1025
 
1026
  #: views/view-ajax_list.php:4
1027
  #, php-format
 
1028
  msgid "Click the &quot;%s&quot; link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
1029
  msgstr "Нажмите на ссылку &quot;%s&quot; после желаемой таблицы и соответствующий код будет добавлен в редактор (<strong>[table id=&lt;ID&gt; /]</strong>)."
1030
 
1031
  #: views/view-ajax_list.php:4
1032
  #: views/view-ajax_list.php:44
 
1033
  msgid "Insert"
1034
  msgstr "Поместить"
1035
 
1036
  #: views/view-ajax_list.php:13
1037
  #: views/view-ajax_list.php:21
1038
- #: views/view-import.php:98
1039
- #: views/view-import.php:107
1040
  #: views/view-list.php:13
1041
  #: views/view-list.php:23
 
1042
  msgid "ID"
1043
  msgstr "ID"
1044
 
1045
  #: views/view-ajax_list.php:16
1046
  #: views/view-ajax_list.php:24
1047
- #: views/view-edit.php:426
1048
- #: views/view-import.php:101
1049
- #: views/view-import.php:110
 
1050
  msgid "Action"
1051
  msgstr "Действие"
1052
 
1053
  #: views/view-ajax_preview.php:3
 
1054
  msgid "This is a preview of your table."
1055
  msgstr "Предварительный просмотр вашей таблицы."
1056
 
1057
  #: views/view-ajax_preview.php:4
 
1058
  msgid "Because of CSS styling, the table might look different on your page!"
1059
  msgstr "Благодаря листу стилей, внешний вид таблицы на вашей странице может отличаться."
1060
 
1061
  #: views/view-ajax_preview.php:4
 
1062
  msgid "The JavaScript libraries are also not available in this preview."
1063
  msgstr "JavaScript библиотеки также не доступны для предварительного просмотра."
1064
 
1065
  #: views/view-edit.php:8
 
1066
  msgid "On this page, you can edit the content of the table."
1067
  msgstr "На этой странице вы можете редактировать содержимое таблицы."
1068
 
1069
  #: views/view-edit.php:8
 
1070
  msgid "It is also possible to change the table structure by inserting, deleting, moving, and swapping columns and rows."
1071
  msgstr "Также, возможно изменять структуру таблицы путем добавления, изъятия и перемещения рядов и колонок."
1072
 
1073
  #: views/view-edit.php:15
 
1074
  msgid "Table Information"
1075
  msgstr "Информация о таблице"
1076
 
1077
  #: views/view-edit.php:19
 
1078
  msgid "Table ID"
1079
  msgstr "ID таблицы"
1080
 
1081
  #: views/view-edit.php:32
1082
  #: views/view-list.php:17
1083
  #: views/view-list.php:27
 
1084
  msgid "Last Modified"
1085
  msgstr "Дата последнего изменения"
1086
 
1087
  #: views/view-edit.php:33
1088
  #: views/view-list.php:44
 
1089
  msgid "by"
1090
  msgstr "пользователем"
1091
 
1092
  #: views/view-edit.php:42
1093
  #: views/view-edit.php:254
1094
- #: views/view-edit.php:406
1095
- #: views/view-edit.php:457
 
1096
  msgid "Save and go back"
1097
  msgstr "Сохранить и вернуться"
1098
 
1099
  #: views/view-edit.php:45
1100
  #: views/view-edit.php:257
1101
- #: views/view-edit.php:409
1102
- #: views/view-edit.php:460
1103
  #: views/view-options.php:65
1104
- #: views/view-options.php:171
 
1105
  msgid "Cancel"
1106
  msgstr "Отмена"
1107
 
1108
  #: views/view-edit.php:51
 
1109
  msgid "Table Contents"
1110
  msgstr "Содержимое таблицы"
1111
 
1112
  #: views/view-edit.php:104
 
1113
  msgid "Data Manipulation"
1114
  msgstr "Манипуляция данными"
1115
 
1116
  #: views/view-edit.php:114
1117
  #: views/view-options.php:55
 
1118
  msgid "Insert Link"
1119
  msgstr "Поместить ссылку"
1120
 
1121
  #: views/view-edit.php:115
 
1122
  msgid "Insert Image"
1123
  msgstr "Поместить изображение"
1124
 
1125
  #: views/view-edit.php:124
 
1126
  msgid "ascending"
1127
  msgstr "по возрастанию"
1128
 
1129
  #: views/view-edit.php:125
 
1130
  msgid "descending"
1131
  msgstr "по убыванию"
1132
 
1133
  #: views/view-edit.php:128
1134
  #, php-format
 
1135
  msgid "Sort table by column %s in %s order"
1136
  msgstr "Отсортировать таблицы по столбцу %s в %s порядке"
1137
 
1138
  #: views/view-edit.php:130
 
1139
  msgid "Sort"
1140
  msgstr "Отсортировать"
1141
 
1142
  #: views/view-edit.php:135
1143
  #: views/view-edit.php:139
 
1144
  msgctxt "item"
1145
  msgid "Hide"
1146
  msgstr "Скрыть"
1147
 
1148
  #: views/view-edit.php:136
1149
  #: views/view-edit.php:140
 
1150
  msgctxt "item"
1151
  msgid "Unhide"
1152
  msgstr "Отобразить"
1153
 
1154
  #: views/view-edit.php:137
1155
  #, php-format
 
1156
  msgctxt "hide_unhide"
1157
  msgid "Selected rows: %s %s"
1158
  msgstr "Выбрать ряды: %s %s"
1159
 
1160
  #: views/view-edit.php:141
1161
  #, php-format
 
1162
  msgctxt "hide_unhide"
1163
  msgid "Selected columns: %s %s"
1164
  msgstr "Выбрать колонки: %s %s"
1165
 
1166
  #: views/view-edit.php:144
 
1167
  msgid "Combine cells in a row:"
1168
  msgstr "Объединить ячейки в ряд:"
1169
 
1170
  #: views/view-edit.php:145
 
1171
  msgid "Add colspan"
1172
  msgstr "Добавить colspan"
1173
 
1174
  #: views/view-edit.php:148
 
1175
  msgid "Combine cells in a column:"
1176
  msgstr "Объединить ячейки в столбец:"
1177
 
1178
  #: views/view-edit.php:149
 
1179
  msgid "Add rowspan"
1180
  msgstr "Добавить rowspan"
1181
 
1182
  #: views/view-edit.php:155
 
1183
  msgid "Insert row"
1184
  msgstr "Поместить ряд"
1185
 
1186
  #: views/view-edit.php:156
1187
  #: views/view-edit.php:160
1188
  #: views/view-list.php:65
 
1189
  msgid "Delete"
1190
  msgstr "Удалить"
1191
 
1192
  #: views/view-edit.php:157
1193
  #, php-format
 
1194
  msgctxt "insert_delete"
1195
  msgid "Selected rows: %s %s"
1196
  msgstr "Выбрать ряды: %s %s"
1197
 
1198
  #: views/view-edit.php:159
 
1199
  msgid "Insert column"
1200
  msgstr "Поместить столбец"
1201
 
1202
  #: views/view-edit.php:161
1203
  #, php-format
 
1204
  msgctxt "insert_delete"
1205
  msgid "Selected columns: %s %s"
1206
  msgstr "Выбрать столбцы: %s %s"
1207
 
1208
  #: views/view-edit.php:171
1209
  #, php-format
 
1210
  msgid "Add %s row(s)"
1211
  msgstr "Добавить %s ряды"
1212
 
1213
  #: views/view-edit.php:172
1214
  #: views/view-edit.php:175
1215
- #: views/view-edit.php:451
 
1216
  msgid "Add"
1217
  msgstr "Добавить"
1218
 
1219
  #: views/view-edit.php:174
1220
  #, php-format
 
1221
  msgid "Add %s column(s)"
1222
  msgstr "Добавить %s столбцы"
1223
 
1224
  #: views/view-edit.php:189
1225
  #, php-format
 
1226
  msgid "Swap rows %s and %s"
1227
  msgstr "Поменять местами %s и %s"
1228
 
1229
  #: views/view-edit.php:191
1230
  #: views/view-edit.php:206
 
1231
  msgid "Swap"
1232
  msgstr "Поменять местами"
1233
 
1234
  #: views/view-edit.php:204
1235
  #, php-format
 
1236
  msgid "Swap columns %s and %s"
1237
  msgstr "Поменять местами столбцы %s и %s"
1238
 
1239
  #: views/view-edit.php:219
1240
  #: views/view-edit.php:239
 
1241
  msgid "before"
1242
  msgstr "перед"
1243
 
1244
  #: views/view-edit.php:220
1245
  #: views/view-edit.php:240
 
1246
  msgid "after"
1247
  msgstr "после"
1248
 
1249
  #: views/view-edit.php:223
1250
  #, php-format
 
1251
  msgid "Move row %s %s row %s"
1252
  msgstr "Подвинуть ряд %s %s ряд %s"
1253
 
1254
  #: views/view-edit.php:225
1255
  #: views/view-edit.php:245
 
1256
  msgid "Move"
1257
  msgstr "Подвинуть"
1258
 
1259
  #: views/view-edit.php:243
1260
  #, php-format
 
1261
  msgid "Move column %s %s column %s"
1262
  msgstr "Подвинуть столбец %s %s столбец %s"
1263
 
1264
  #: views/view-edit.php:262
 
1265
  msgid "Table Styling Options"
1266
  msgstr "Настройки стиля таблицы"
1267
 
1268
  #: views/view-edit.php:264
 
1269
  msgid "These settings will only be used for this table."
1270
  msgstr "Эти установки будут использованны только для этой таблицы."
1271
 
1272
  #: views/view-edit.php:267
 
1273
  msgid "Alternating row colors"
1274
  msgstr "Альтернативные цвета рядов"
1275
 
1276
  #: views/view-edit.php:268
 
1277
  msgid "Every second row has an alternating background color."
1278
  msgstr "Каждый второй ряд будет иметь альтернативный цвет фона."
1279
 
1280
  #: views/view-edit.php:271
 
1281
  msgid "Row Highlighting"
1282
  msgstr "Подсветка ряда"
1283
 
1284
  #: views/view-edit.php:272
 
1285
  msgid "Highlight a row by changing its background color while the mouse cursor hovers above it."
1286
  msgstr "Ряд подсвечивается путем изменения цвета фона, когда на него наводится курсор мыши."
1287
 
1288
  #: views/view-edit.php:275
 
1289
  msgid "Table head"
1290
  msgstr "Заголовок таблицы"
1291
 
1292
  #: views/view-edit.php:276
 
1293
  msgid "The first row of your table is the table head (HTML tags &lt;thead&gt; and &lt;th&gt;)."
1294
- msgstr "Превый ряд вашей таблицы это её заголовок (ему присвоен HTML tag &lt;th&gt;)"
1295
 
1296
  #: views/view-edit.php:279
 
1297
  msgid "Table footer"
1298
  msgstr "Футер таблицы"
1299
 
1300
  #: views/view-edit.php:280
 
1301
  msgid "The last row of your table is the table footer (HTML tags &lt;tfoot&gt; and &lt;th&gt;)."
1302
  msgstr "Последний ряд вашей таблицы является её футером."
1303
 
1304
  #: views/view-edit.php:289
1305
  #: views/view-edit.php:306
 
1306
  msgid "above"
1307
  msgstr "над"
1308
 
1309
  #: views/view-edit.php:291
1310
  #: views/view-edit.php:308
 
1311
  msgid "below"
1312
  msgstr "под"
1313
 
1314
  #: views/view-edit.php:294
1315
  #, php-format
 
1316
  msgid "The Table Name shall be written %s the table (HTML tag &lt;h2&gt;)."
1317
- msgstr ""
1318
 
1319
  #: views/view-edit.php:300
 
1320
  msgid "Table Description"
1321
  msgstr "Описание таблицы"
1322
 
1323
  #: views/view-edit.php:311
1324
  #, php-format
 
1325
  msgid "The Table Description shall be written %s the table."
1326
- msgstr ""
1327
 
1328
- #: views/view-edit.php:317
 
1329
  msgid "Use JavaScript library"
1330
  msgstr "Использовать JavaScript библиотеку "
1331
 
1332
- #: views/view-edit.php:323
1333
- #: views/view-edit.php:327
1334
- #: views/view-edit.php:339
 
1335
  msgid "You can change further settings for this library below."
1336
  msgstr "Вы можете изменить настройки этой библиотеки ниже."
1337
 
1338
- #: views/view-edit.php:331
1339
- #: views/view-edit.php:335
 
1340
  msgid "The table will then be sortable by the visitor."
1341
  msgstr "Сортировка этой таблицы будет доступна пользователю."
1342
 
1343
- #: views/view-edit.php:342
1344
  #, php-format
 
1345
  msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
1346
  msgstr "Да, использовать &quot;%s&quot; JavaScript библиотеку для этой таблицы."
1347
 
1348
- #: views/view-edit.php:342
1349
  #, php-format
 
1350
  msgid "You must enable the use of a JavaScript library on the &quot;%s&quot; screen first."
1351
  msgstr "Вы должны включить поддержку JavaScript библиотеки на &quot;%s&quot;."
1352
 
1353
- #: views/view-edit.php:353
 
1354
  msgid "DataTables JavaScript Features"
1355
  msgstr "JavaScript возможности базы данных."
1356
 
1357
- #: views/view-edit.php:355
 
1358
  msgid "You can enable certain features for the DataTables JavaScript library here."
1359
  msgstr "Здесь вы можете включить некоторые возможности для базы данных JavaScript."
1360
 
1361
- #: views/view-edit.php:355
 
1362
  msgid "More information on these features can be found on the <a href=\"http://www.datatables.net/\">DataTables website</a>."
1363
  msgstr "За дополнительной информацией обращайтесь на <a href=\"http://www.datatables.net/\">сайт DataTables</a>."
1364
 
1365
- #: views/view-edit.php:357
1366
  #, php-format
 
1367
  msgid "You can currently not change these options, because you have not enabled the &quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript library on the &quot;%s&quot; screen."
1368
  msgstr "В данный момент эти опции изменить нельзя, потому что вы не активировали &quot;DataTables&quot; или &quot;DataTables+TableTools&quot; JavaScript библиотеку на &quot;%s&quot;."
1369
 
1370
- #: views/view-edit.php:357
 
1371
  msgid "It is not possible to use these features with the &quot;Tablesorter&quot; or &quot;Tablesorter Extended&quot; libraries."
1372
  msgstr "Эти функции нельзя использовать в сочетании с &quot;Tablesorter&quot; или &quot;Tablesorter Extended&quot; библиотеками."
1373
 
1374
- #: views/view-edit.php:361
 
1375
  msgid "Sorting"
1376
  msgstr "Сортировка"
1377
 
1378
- #: views/view-edit.php:362
 
1379
  msgid "Yes, enable sorting of table data by the visitor."
1380
  msgstr "Да, разрешить пользователям сортировать таблицу."
1381
 
1382
- #: views/view-edit.php:365
 
1383
  msgid "Pagination"
1384
  msgstr "Нумерация страниц"
1385
 
1386
- #: views/view-edit.php:370
 
1387
  msgid "Yes, enable pagination (showing only a certain number of rows) of the table by the visitor."
1388
  msgstr "Включит разбивку таблицы на страницы (отображать только определенное число строк)."
1389
 
1390
- #: views/view-edit.php:372
1391
  #, php-format
 
1392
  msgid "Show %1$s rows of the table per page."
1393
  msgstr "Отображать %1$s строк таблицы на страницу."
1394
 
1395
- #: views/view-edit.php:378
 
1396
  msgid "Length Change"
1397
  msgstr "Изменить длинну"
1398
 
1399
- #: views/view-edit.php:379
 
1400
  msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
1401
  msgstr "Разрешить пользователю менять количество рядов при использовании нумерации страниц."
1402
 
1403
- #: views/view-edit.php:382
1404
- msgid "Filtering"
1405
- msgstr "Фильтрование"
1406
-
1407
- #: views/view-edit.php:383
1408
  msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
1409
  msgstr "Разрешить пользователю фильтровать и искать таблицу. Отображены только ряды с искомым словом."
1410
 
1411
- #: views/view-edit.php:386
 
1412
  msgid "Info Bar"
1413
  msgstr "Панель информации"
1414
 
1415
- #: views/view-edit.php:387
 
1416
  msgid "Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering."
1417
  msgstr "Да, отображать информацию таблицы. Здесь отображена информация и статистика о текущих видимых данных, включая фильтрование."
1418
 
1419
- #: views/view-edit.php:390
 
1420
  msgid "TableTools"
1421
  msgstr "Инструменты таблицы"
1422
 
1423
- #: views/view-edit.php:392
 
1424
  msgid "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save to XLS, Print Table) for this table."
1425
  msgstr "Да, активаровать функцию \"инструменты таблицы\" ( \"скопировать в буфер обмена\", \"сохранить в CSV\", \"сохранить в XLS\", \"напечатать таблицу\") для этой таблицы."
1426
 
1427
- #: views/view-edit.php:393
 
1428
  msgid "This option can only be used with the &quot;DataTables+TableTools&quot; JavaScript library."
1429
  msgstr "Эту опцию возможно использовать только с &quot;DataTables+TableTools&quot; JavaScript библиотекой."
1430
 
1431
- #: views/view-edit.php:397
 
1432
  msgid "Custom Commands"
1433
  msgstr "Пользовательские команды"
1434
 
1435
- #: views/view-edit.php:398
 
1436
  msgid "Enter additional DataTables JavaScript parameters that will be included with the script call here."
1437
  msgstr "Ввести дополнительные DataTables JavaScript параметры которые будут добавленны к вызову этого скрипта."
1438
 
1439
- #: views/view-edit.php:398
 
1440
  msgid "For advanced use only. Read the <a href=\"http://www.datatables.net/\">DataTables documentation</a> before."
1441
  msgstr "Для опытных пользователей. Сначала прочитайте <a href=\"http://www.datatables.net/\">DataTables documentation</a>."
1442
 
1443
- #: views/view-edit.php:414
 
1444
  msgid "Custom Data Fields"
1445
- msgstr "Поля определенные пользователем"
1446
 
1447
- #: views/view-edit.php:416
 
1448
  msgid "Custom Data Fields can be used to add extra metadata to a table."
1449
- msgstr "Поля определенные пользователем могут использоваться для добавления дополнительной meta-данных в таблицу."
1450
 
1451
- #: views/view-edit.php:416
 
1452
  msgid "For example, this could be information about the source or the creator of the data."
1453
  msgstr "Например, это может быть информация об источнике или создателе информации. "
1454
 
1455
- #: views/view-edit.php:418
1456
  #, php-format
 
1457
  msgid "You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1458
  msgstr "Вы можете показывать это информацию так же как и таблицы, с помощью использования кода <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1459
 
1460
- #: views/view-edit.php:424
 
1461
  msgid "Field Name"
1462
  msgstr "Имя поля"
1463
 
1464
- #: views/view-edit.php:425
 
1465
  msgid "Value"
1466
  msgstr "Значение"
1467
 
1468
- #: views/view-edit.php:439
 
1469
  msgid "Delete Field"
1470
  msgstr "Удалить поле"
1471
 
1472
- #: views/view-edit.php:441
 
1473
  msgid "View shortcode"
1474
  msgstr "Посмотреть код"
1475
 
1476
- #: views/view-edit.php:450
 
1477
  msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
1478
- msgstr "Чтобы показать новое поле определенное пользователем, введите это имя (только прописными буквами, числами, _и-)."
1479
 
1480
- #: views/view-edit.php:451
 
1481
  msgid "Custom Data Field Name"
1482
- msgstr "Имя поля определенного пользователем"
1483
 
1484
- #: views/view-edit.php:465
 
1485
  msgid "Other actions"
1486
  msgstr "Другие действия"
1487
 
1488
- #: views/view-edit.php:468
 
1489
  msgid "Delete Table"
1490
  msgstr "Удалить таблицу"
1491
 
1492
- #: views/view-edit.php:469
1493
- #: views/view-export.php:59
 
1494
  msgid "Export Table"
1495
  msgstr "Экспортировать таблицу"
1496
 
1497
  #: views/view-export.php:10
 
1498
  msgid "It is recommended to export and backup the data of important tables regularly."
1499
  msgstr "Рекомендуется регулярно сохранять резервную копию."
1500
 
1501
  #: views/view-export.php:10
 
1502
  msgid "Select the table, the desired export format and (for CSV only) a delimiter."
1503
- msgstr "Выбрать таблицу, формат экспорта и (только для CSV) разделитель."
1504
 
1505
  #: views/view-export.php:10
 
1506
  msgid "You may choose to download the export file. Otherwise it will be shown on this page."
1507
  msgstr "Вы можете скачать экспорт-файл, иначе он будет отображен на этой странице."
1508
 
1509
  #: views/view-export.php:10
 
1510
  msgid "Be aware that only the table data, but no options or settings are exported."
1511
- msgstr "Знайте, что экспортируются только данные таблицы, а не настрайки и установки."
1512
 
1513
  #: views/view-export.php:10
1514
  #, php-format
 
1515
  msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
1516
  msgstr "Для того, чтобы сохранить таблицы и установки используйте &quot;%s&quot; кнопку в &quot;%s&quot;."
1517
 
1518
  #: views/view-export.php:10
1519
- #: views/view-options.php:189
 
1520
  msgid "Create and Download Dump File"
1521
  msgstr "Создать и загрузить Dump File"
1522
 
1523
  #: views/view-export.php:18
 
1524
  msgid "Select Table to Export"
1525
  msgstr "Выбрать таблицу для экспорта"
1526
 
1527
- #: views/view-export.php:33
 
1528
  msgid "Select Export Format"
1529
  msgstr "Выбрать формат экспорта"
1530
 
1531
- #: views/view-export.php:43
 
1532
  msgid "Select Delimiter to use"
1533
- msgstr "Выбрать разделитель"
1534
 
1535
- #: views/view-export.php:50
 
1536
  msgid "Only needed for CSV export."
1537
  msgstr "Нужно только для CSV экспорта."
1538
 
1539
- #: views/view-export.php:53
 
1540
  msgid "Download file"
1541
  msgstr "Загрузить файл"
1542
 
1543
- #: views/view-export.php:54
 
1544
  msgid "Yes, I want to download the export file."
1545
- msgstr "Да, я хочу загрузить экспортированный файл"
1546
 
1547
- #: views/view-export.php:71
1548
- #: views/view-list.php:88
1549
  #, php-format
 
1550
  msgid "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to get started!"
1551
  msgstr "Для того, чтобы начать, вам нужно <a href=\"%s\">добавить</a> или <a href=\"%s\">импортировать</a> таблицу!"
1552
 
1553
  #: views/view-import.php:3
 
1554
  msgid "WP-Table Reloaded can import tables from existing data."
1555
  msgstr "WP-Table Reloaded может импортировать таблицы из уже существующих данных."
1556
 
1557
  #: views/view-import.php:3
 
1558
  msgid "This may be a CSV, XML or HTML file, each with a certain structure."
1559
- msgstr "Это может быть CSV, XML или HTML файл, каждый с определенной структурой."
1560
 
1561
  #: views/view-import.php:3
 
1562
  msgid "To import an existing table, please select its format and the source for the import."
1563
  msgstr "Для того, чтобы импортировать уже существующую таблицу, выберите формат и источник импортирования."
1564
 
1565
  #: views/view-import.php:3
 
1566
  msgid "You can also decide, if you want to import it as a new table or replace an existing table."
1567
  msgstr "Вы можете импортировать таблицу как новую или заменить уже существующую."
1568
 
1569
  #: views/view-import.php:10
 
1570
  msgid "Select Import Format"
1571
- msgstr "Выбрать формат импорта."
1572
 
1573
  #: views/view-import.php:21
 
1574
  msgid "Add or Replace Table?"
1575
  msgstr "Добавить или заменить таблицу?"
1576
 
1577
  #: views/view-import.php:23
 
1578
  msgid "Add as new Table"
1579
  msgstr "Добавить таблицу как новую"
1580
 
1581
  #: views/view-import.php:24
 
1582
  msgid "Replace existing Table"
1583
  msgstr "Заменить существующую таблицу"
1584
 
1585
  #: views/view-import.php:28
 
1586
  msgid "Select existing Table to Replace"
1587
  msgstr "Выбрать существующую таблицу для замены"
1588
 
1589
- #: views/view-import.php:44
 
1590
  msgid "Select source for Import"
1591
- msgstr "Выбрать источник импорта"
1592
 
1593
- #: views/view-import.php:46
 
1594
  msgid "File upload"
1595
  msgstr "Загрузка файла"
1596
 
1597
- #: views/view-import.php:47
 
1598
  msgid "URL"
1599
  msgstr "URL адрес"
1600
 
1601
- #: views/view-import.php:48
 
1602
  msgid "Manual input"
1603
  msgstr "Ручное добавление"
1604
 
1605
- #: views/view-import.php:49
 
1606
  msgid "File on server"
1607
  msgstr "Файл на сервере"
1608
 
1609
- #: views/view-import.php:53
 
1610
  msgid "Select File with Table to Import"
1611
- msgstr "Выбрать файл с таблицей для импорта"
1612
 
1613
- #: views/view-import.php:57
 
1614
  msgid "URL to Import Table from"
1615
  msgstr "URL адрес с которого будет импортированна таблица"
1616
 
1617
- #: views/view-import.php:61
 
1618
  msgid "Path to file on server"
1619
  msgstr "Путь к файлу на сервере."
1620
 
1621
- #: views/view-import.php:65
 
1622
  msgid "Paste data with Table to Import"
1623
  msgstr "Вставьте данные содержащие таблицу, которую будете импортировать."
1624
 
1625
- #: views/view-import.php:71
 
1626
  msgid "Import Table"
1627
  msgstr "Импортировать таблицу"
1628
 
1629
- #: views/view-import.php:85
 
1630
  msgid "Import from original wp-Table plugin"
1631
  msgstr "Импортировать из оригинального wp-Table плагина."
1632
 
1633
- #: views/view-import.php:131
 
1634
  msgid "Import"
1635
  msgstr "Импортировать"
1636
 
1637
- #: views/view-import.php:139
1638
- #: views/view-list.php:79
 
1639
  msgid "Bulk actions:"
1640
  msgstr "Массовые действия:"
1641
 
1642
- #: views/view-import.php:139
 
1643
  msgid "Import Tables"
1644
  msgstr "Импортировать таблицы"
1645
 
1646
- #: views/view-import.php:145
 
1647
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
1648
- msgstr "wp-Table был установлен, но ни одной таблицы не найденно."
1649
 
1650
  #: views/view-list.php:2
 
1651
  msgid "You may add, edit, copy, delete or preview tables here."
1652
- msgstr "Здесь вы можете добавлять, редактировать или осуществлять предварительный просмотр таблицы."
1653
 
1654
  #: views/view-list.php:2
 
1655
  msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
1656
- msgstr "Каждая таблица имеет уникальный ID который нужно указать в этом коде."
1657
 
1658
  #: views/view-list.php:2
1659
  #, php-format
 
1660
  msgid "You can also click the button &quot;%s&quot; in the editor toolbar to select and insert a table."
1661
  msgstr "Для того, чтобы выбрать и вставить таблицу вы можете так же нажать кнопку &quot;%s&quot; на панели редактирования."
1662
 
1663
  #: views/view-list.php:39
 
1664
  msgid "(no name)"
1665
  msgstr "(имя не указанно)"
1666
 
1667
  #: views/view-list.php:40
 
1668
  msgid "(no description)"
1669
  msgstr "(без описания)"
1670
 
1671
  #: views/view-list.php:58
1672
  #, php-format
 
1673
  msgid "Edit %s"
1674
  msgstr "Редактировать %s"
1675
 
1676
  #: views/view-list.php:62
 
1677
  msgid "Shortcode"
1678
  msgstr "Код"
1679
 
1680
  #: views/view-list.php:63
 
1681
  msgid "Copy"
1682
  msgstr "Копировать"
1683
 
1684
  #: views/view-list.php:64
 
1685
  msgid "Export"
1686
  msgstr "Экспортировать"
1687
 
1688
  #: views/view-list.php:66
1689
  #, php-format
 
1690
  msgid "Preview of Table %s"
1691
  msgstr "Предварительный просмотр таблицы %s"
1692
 
1693
  #: views/view-list.php:67
 
1694
  msgid "Preview"
1695
  msgstr "Предварительный просмот"
1696
 
1697
- #: views/view-list.php:79
 
1698
  msgid "Copy Tables"
1699
  msgstr "Скопировать таблицы"
1700
 
1701
- #: views/view-list.php:79
 
1702
  msgid "Delete Tables"
1703
  msgstr "Удалить таблицы"
1704
 
1705
  #: views/view-options.php:3
 
1706
  msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
1707
  msgstr "WP-Table Reloaded имеет несколько настроек, отвечающих за поведение плагина в различных областях."
1708
 
1709
  #: views/view-options.php:4
 
1710
  msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
1711
- msgstr "Настройки темы влияют на отображение таблиц на страницах,в постах и текстовых виджетах."
1712
 
1713
  #: views/view-options.php:4
1714
  #, php-format
 
1715
  msgid "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; screen."
1716
- msgstr "Настройки админ части относятся к странице управления плагином (&quot;%s&quot;)."
1717
 
1718
  #: views/view-options.php:4
1719
  #: views/view-options.php:55
1720
  #: views/view-options.php:75
1721
  #: views/view-options.php:79
 
1722
  msgid "Edit Table"
1723
  msgstr "Редактировать"
1724
 
1725
  #: views/view-options.php:4
 
1726
  msgid "Administrators have access to further Admin Options."
1727
  msgstr "Администраторы имеют доступ к большему числу настроек."
1728
 
1729
  #: views/view-options.php:19
 
1730
  msgid "Frontend Options"
1731
  msgstr "Настройки внешнего вида"
1732
 
1733
  #: views/view-options.php:23
 
1734
  msgid "JavaScript library"
1735
  msgstr "JavaScript библиотека"
1736
 
1737
  #: views/view-options.php:24
 
1738
  msgid "Yes, enable the use of a JavaScript library."
1739
- msgstr "Включить использования JavaScript библиотек."
1740
 
1741
  #: views/view-options.php:24
 
1742
  msgid "WP-Table Reloaded includes three JavaScript libraries that can add useful features, like sorting, pagination, and filtering, to a table."
1743
- msgstr "WP-Table Reloaded включает три JavaScript библиотеки с помощью которых вы можете добавить в таблицу сортировку, постраничное отображение и фильтрованине."
1744
 
1745
  #: views/view-options.php:28
 
1746
  msgid "Select the library to use:"
1747
- msgstr "Выберете билиотеку для использования:"
1748
 
1749
  #: views/view-options.php:29
1750
- #: views/view-options.php:127
 
1751
  msgid "recommended"
1752
- msgstr "рекомендованно"
1753
 
1754
  #: views/view-options.php:33
1755
  #, php-format
 
1756
  msgid "(You can read more about each library's features on the <a href=\"%s\">plugin's website</a>.)"
1757
- msgstr "(Больше информации о свойствах каждой библиотеки вы можете получить на <a href=\"%s\">вэбсайт плагина</a>.)"
1758
 
1759
  #: views/view-options.php:36
 
1760
  msgid "Default CSS"
1761
  msgstr "CSS по умолчанию"
1762
 
1763
  #: views/view-options.php:38
 
1764
  msgid "Yes, include and load the plugin's default CSS Stylesheets. This is highly recommended, if you use one of the JavaScript libraries!"
1765
  msgstr "Использовать CSS по умолчанию. Это рекомендуется в случае использования библиотеки JavaScript."
1766
 
1767
  #: views/view-options.php:42
 
1768
  msgid "Custom CSS"
1769
  msgstr "Пользовательский CSS"
1770
 
1771
  #: views/view-options.php:44
 
1772
  msgid "Yes, include and load the following custom CSS commands."
1773
  msgstr "Использовать директивы пользовательского CSS."
1774
 
1775
  #: views/view-options.php:44
 
1776
  msgid "This should be used to change the table layout and styling."
1777
  msgstr "Используйте это для изменеия внешнего вида и стилей таблицы."
1778
 
1779
  #: views/view-options.php:50
1780
  #, php-format
 
1781
  msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
1782
- msgstr "Вы можете получить примеры стилей в <a href=\"%s\">FAQ</a>."
1783
 
1784
  #: views/view-options.php:50
1785
  #, php-format
 
1786
  msgid "Information on available CSS selectors can be found in the <a href=\"%s\">documentation</a>."
1787
  msgstr "Информацию о доступных CSS директивах можете найти в <a href=\"%s\">документации</a>."
1788
 
1789
  #: views/view-options.php:54
 
1790
  msgid "Links in new window"
1791
- msgstr "Открыть ссылку в новом окне."
1792
 
1793
  #: views/view-options.php:55
1794
  #, php-format
 
1795
  msgid "Yes, open links that are inserted with the &quot;%s&quot; button on the &quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
1796
- msgstr "Вставить ссылки которые были помещены с помощю &quot;%s&quot; кнопки на &quot;%s&quot; экран в новом окне броузера <strong>с нынешнего момента</strong>"
1797
 
1798
  #: views/view-options.php:62
1799
- #: views/view-options.php:168
 
1800
  msgid "Save Options"
1801
  msgstr "Сохранить опции"
1802
 
1803
  #: views/view-options.php:70
 
1804
  msgid "Backend Options"
1805
- msgstr "Опции админ части"
1806
 
1807
  #: views/view-options.php:74
 
1808
  msgid "Exit warning"
1809
  msgstr "Отображать предупреждение"
1810
 
1811
  #: views/view-options.php:75
1812
  #, php-format
 
1813
  msgid "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have not yet saved my changes."
1814
- msgstr "Да, показывать предупреждающее сообщение, если я хочу покинуть &quot;%s&quot; экран, но изменения не сохраненны."
1815
 
1816
  #: views/view-options.php:78
 
1817
  msgid "Growing textareas"
1818
- msgstr "Увеличивающиеся текстовые поля."
1819
 
1820
  #: views/view-options.php:79
1821
  #, php-format
 
1822
  msgid "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are focussed."
1823
  msgstr "Да, увеличить текстовые поля на &quot;%s&quot; экране когда они пребывают в фокусе."
1824
 
1825
- #: views/view-options.php:87
 
1826
  msgid "Admin Options"
1827
  msgstr "Настройки администратора"
1828
 
1829
- #: views/view-options.php:89
1830
- #: views/view-options.php:209
1831
- #: views/view-options.php:223
 
1832
  msgid "This area are only available to site administrators!"
1833
  msgstr "Это поле доступно только администратору."
1834
 
1835
- #: views/view-options.php:89
 
1836
  msgid "You can therefore not change these options."
1837
  msgstr "Вы не можете изменить эти настройки."
1838
 
1839
- #: views/view-options.php:94
 
1840
  msgid "Plugin Access"
1841
  msgstr "Доступ к плагину"
1842
 
1843
- #: views/view-options.php:95
 
1844
  msgid "To access WP-Table Reloaded, a user needs to be:"
1845
  msgstr "Для того, чтобы получить доступ к WP-Table Reloaded, пользователь должен быть:"
1846
 
1847
- #: views/view-options.php:96
1848
- #: views/view-options.php:107
 
1849
  msgctxt "User role"
1850
  msgid "Administrator"
1851
  msgstr "Administrator"
1852
 
1853
- #: views/view-options.php:97
1854
- #: views/view-options.php:108
 
1855
  msgctxt "User role"
1856
  msgid "Editor"
1857
  msgstr "Editor"
1858
 
1859
- #: views/view-options.php:98
1860
- #: views/view-options.php:109
 
1861
  msgctxt "User role"
1862
  msgid "Author"
1863
  msgstr "Author"
1864
 
1865
- #: views/view-options.php:99
 
1866
  msgctxt "User role"
1867
  msgid "Contributor"
1868
  msgstr "Contributor"
1869
 
1870
- #: views/view-options.php:105
 
1871
  msgid "Plugin Options Access"
1872
  msgstr "Доступ к настройкам"
1873
 
1874
- #: views/view-options.php:106
 
1875
  msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
1876
- msgstr "Для того, чтобы получить доступ к Plugin Options of WP-Table Reloaded, пользователь должен быть:"
1877
 
1878
- #: views/view-options.php:110
 
1879
  msgid "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
1880
- msgstr "Настройки администратора, импорт файла и ручное удаление плагина доступно только администратору, не зависимо от настроек."
1881
 
1882
- #: views/view-options.php:114
 
1883
  msgid "Plugin Language"
1884
  msgstr "Язык плагина"
1885
 
1886
- #: views/view-options.php:115
 
1887
  msgid "WP-Table Reloaded shall be shown in this language:"
1888
  msgstr "WP-Table Reloaded должен отображаться на этом языке:"
1889
 
1890
- #: views/view-options.php:116
1891
  #, php-format
 
1892
  msgid "WordPress Default (currently %s)"
1893
  msgstr "WordPress Default (текущее %s)"
1894
 
1895
- #: views/view-options.php:125
 
1896
  msgid "Admin menu entry"
1897
- msgstr "Вход в меню админ части"
1898
 
1899
- #: views/view-options.php:126
 
1900
  msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
1901
- msgstr "WP-Table Reloaded должен отображаться в этой секции меню админ части:"
1902
 
1903
- #: views/view-options.php:127
 
1904
  msgid "Tools"
1905
  msgstr "Настройки"
1906
 
1907
- #: views/view-options.php:128
 
1908
  msgid "Posts"
1909
  msgstr "Посты"
1910
 
1911
- #: views/view-options.php:138
 
1912
  msgid "Pages"
1913
  msgstr "Страницы"
1914
 
1915
- #: views/view-options.php:139
 
1916
  msgid "Plugins"
1917
  msgstr "Плагины"
1918
 
1919
- #: views/view-options.php:140
 
1920
  msgid "Settings"
1921
  msgstr "Установки"
1922
 
1923
- #: views/view-options.php:141
 
1924
  msgid "Dashboard"
1925
  msgstr "Панель управления"
1926
 
1927
- #: views/view-options.php:142
 
1928
  msgid "Top-Level"
1929
  msgstr "Верхний уровень"
1930
 
1931
- #: views/view-options.php:147
 
1932
  msgid "Frontend Edit Link"
1933
- msgstr "Редактирование внешнего вида."
1934
 
1935
- #: views/view-options.php:148
 
1936
  msgid "Yes, show an \"Edit\" link to users with sufficient rights near every table on the frontend."
1937
- msgstr "Да, показывать ссылку \"Редактировать\" около каждой таблицы, пользователю имеющему достаточно прав."
1938
 
1939
- #: views/view-options.php:152
 
1940
  msgid "WordPress Search"
1941
- msgstr "Поиск по WordPress."
1942
 
1943
- #: views/view-options.php:153
 
1944
  msgid "Yes, the WordPress Search shall also find posts and pages that contain the search term inside a table."
1945
  msgstr "Отображать результаты поиска по постам и страницам при поиске по ячейкам таблицы."
1946
 
1947
- #: views/view-options.php:157
 
1948
  msgid "Remove upon Deactivation"
1949
  msgstr "Удалить при деактивации"
1950
 
1951
- #: views/view-options.php:158
 
1952
  msgid "Yes, remove all plugin related data from the database when the plugin is deactivated."
1953
  msgstr "При деактивации плагина удалить всю информацию о плагине."
1954
 
1955
- #: views/view-options.php:158
 
1956
  msgid "Should be activated directly before deactivation only!"
1957
- msgstr "Активация должна быть проведена исключительно перед деактивацией!"
1958
 
1959
- #: views/view-options.php:178
 
1960
  msgid "WP-Table Reloaded Data Export and Backup"
1961
- msgstr "Сохранение и экспорт информации по WP-Table Reloaded"
1962
 
1963
- #: views/view-options.php:181
 
1964
  msgid "WP-Table Reloaded can export and import a so-called dump file that contains all tables, their settings and the plugin's options."
1965
- msgstr "WP-Table Reloaded может экспортировать и импортировать дамп-файлы которые содержатся во всех таблицах, их установки и опции плагина."
1966
 
1967
- #: views/view-options.php:181
 
1968
  msgid "This file can be used as a backup or to move all data to another WordPress site."
1969
  msgstr "Этот файл может быть использован как резервная копия или для перемещения всей информации на другой WordPress сайт."
1970
 
1971
- #: views/view-options.php:184
 
1972
  msgid "Export a dump file"
1973
- msgstr "экспортировать дамп-файл"
1974
 
1975
- #: views/view-options.php:186
 
1976
  msgid "To export all Tables and their settings, click the button below to generate and download a dump file."
1977
  msgstr "Чтобы экспортировать все таблицы и их настройки, нажмите на слудующую кнопку для создания и загрузки дамп-файла. "
1978
 
1979
- #: views/view-options.php:186
 
1980
  msgid "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!"
1981
  msgstr "<strong>Внимание</strong>: не при каких обстоятельствах <strong>не редактируйте</strong> этот файл. Вы можете его уничтожить!"
1982
 
1983
- #: views/view-options.php:195
 
1984
  msgid "Import a dump file"
1985
  msgstr "Импортировать дамп-файл"
1986
 
1987
- #: views/view-options.php:197
 
1988
  msgid "To import a WP-Table Reloaded dump file and restore the included data, upload the file from your computer."
1989
  msgstr "Для того, чтобы импортировать WP-Table Reloaded дамп-файл и восстановить всю информацию, загрузите файл с вашего компьютера."
1990
 
1991
- #: views/view-options.php:197
 
1992
  msgid "All current data of this WP-Table Reloaded installation (Tables, Options, Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
1993
  msgstr "Все текущие данные этой таблицы WP-Reloaded установка (Таблицы, Параметры, Настройки) <strong> будут перезаписаны </ STRONG> с данными из файла!"
1994
 
1995
- #: views/view-options.php:197
 
1996
  msgid "Do not proceed, if you do not understand this!"
1997
  msgstr "Не продолжайте, если вы этого не понимаете!"
1998
 
1999
- #: views/view-options.php:197
 
2000
  msgid "It is highly recommended to export and backup the data of this installation before importing another dump file (see above)."
2001
  msgstr "Настоятельно рекомендуется для экспорта и резервного копирования данных этой установки перед импортом следующего файла дампа (см. выше)."
2002
 
2003
- #: views/view-options.php:203
 
2004
  msgid "Select Dump File"
2005
  msgstr "Выбрать дамп-файл"
2006
 
2007
- #: views/view-options.php:205
 
2008
  msgid "Import Dump File"
2009
  msgstr "Импортировать дамп-файл"
2010
 
2011
- #: views/view-options.php:215
 
2012
  msgid "Manually Uninstall WP-Table Reloaded"
2013
  msgstr "Вручную удалить WP-Table Reloaded"
2014
 
2015
- #: views/view-options.php:217
 
2016
  msgid "Uninstalling <strong>will permanently delete</strong> all tables, data, and options, that belong to WP-Table Reloaded from the database, including all tables you added or imported."
2017
- msgstr "<strong>Удаление</strong> плагина повлечет за собой удаление всех таблиц, данных и параметров, которые принадлежат к WP-Reloaded, из базы данных, в том числе из всех таблиц что вы добавили или импортировали."
2018
 
2019
- #: views/view-options.php:217
 
2020
  msgid "You will manually need to remove the plugin's files from the plugin folder afterwards."
2021
- msgstr "За тем вам необходимо вручную удалить файлы плагина из папки плагинов."
2022
 
2023
- #: views/view-options.php:217
 
2024
  msgid "Be very careful with this and only click the button if you know what you are doing!"
2025
- msgstr "Будьте очень осторожны с этим и нажмите на кнопку,только в том случае, если вы знаете, что делаете!"
2026
 
2027
- #: views/view-options.php:221
 
2028
  msgid "Uninstall Plugin WP-Table Reloaded"
2029
  msgstr "Удалить плагин WP-Table Reloaded"
2030
 
2031
  #: views/view-uninstall.php:3
 
2032
  msgid "Plugin deactivated successfully."
2033
  msgstr "Плагин деактивирован успешно"
2034
 
2035
  #: views/view-uninstall.php:4
 
2036
  msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
2037
  msgstr "Были удалены все таблицы, данные и параметры. Теперь Вы можете вручную удалить папку плагина из папки плагинов WordPress или используйте \"Delete\" ссылки на странице Плагины."
2038
 
2039
- #. Plugin URI of an extension
 
 
2040
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2041
  msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2042
 
2043
- #. Description of an extension
 
 
2044
  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."
2045
  msgstr "Этот плагин позволяет вам создавать и легко управлять таблицами в админ-площади WordPress. Удобные бэкэнды позволяют легко манипулировать табличными данными. Вы можете включать таблицы в вашем посте, на своих страницах или в тексте с помощью виджетов Shortcode или тег шаблона функции. Таблицы могут быть импортированы и экспортированы в / из CSV, XML и HTML."
2046
 
2047
- #. Author of an extension
2048
- msgid "Tobias B&auml;thge"
2049
- msgstr "Tobias B&auml;thge"
2050
-
2051
- #. Author URI of an extension
2052
  msgid "http://tobias.baethge.com/"
2053
  msgstr "http://tobias.baethge.com/"
2054
 
2055
- #~ msgid ""
2056
- #~ "Among other things, this version adds support for \"colspan\" and "
2057
- #~ "\"rowspan\" of table cells and enables the WP Search to search through "
2058
- #~ "tables."
2059
- #~ msgstr ""
2060
- #~ "Помимо прочего, в этой версии появилась поддержка атрибутов \"colspan\" и "
2061
- #~ "\"rowspan\", а так же поиск по таблицам."
2062
- #~ msgid "This is the &quot;%s&quot; screen."
2063
- #~ msgstr "Aktuálně se nacházíte v nabídce &quot;%s&quot;."
2064
- #~ msgid ""
2065
- #~ "This version adds support for the DataTables JavaScript library (with "
2066
- #~ "features like sorting, pagination, and filtering) and includes a lot more "
2067
- #~ "enhancements."
2068
- #~ msgstr ""
2069
- #~ "Nová verze přináší zejména podporu JavaScriptové knihovny DataTables "
2070
- #~ "(umožňuje např. řazení, stránkování a filtrování tabulek) a obsahuje i "
2071
- #~ "mnoho dalších vylepšení."
2072
- #~ msgid "Hide|expand"
2073
- #~ msgstr "Skrýt|expand"
2074
- #~ msgid "Hide|item"
2075
- #~ msgstr "Skrýt|item"
2076
- #~ msgid "Unhide|item"
2077
- #~ msgstr "Zviditelnit|item"
2078
- #~ msgid "Selected rows: %s %s|hide_unhide"
2079
- #~ msgstr "Označené řádky: %s %s|hide_unhide"
2080
- #~ msgid "Selected rows:"
2081
- #~ msgstr "Označené řádky:"
2082
- #~ msgid "Selected columns: %s %s|hide_unhide"
2083
- #~ msgstr "Označené sloupce: %s %s|hide_unhide"
2084
- #~ msgid "Selected columns:"
2085
- #~ msgstr "Označené sloupce:"
2086
- #~ msgid "Selected rows: %s %s|insert_delete"
2087
- #~ msgstr "%s nad označené řádky nebo je %s|insert_delete"
2088
- #~ msgid "Selected columns: %s %s|insert_delete"
2089
- #~ msgstr "%s nalevo od označených sloupců nebo je %s|insert_delete"
2090
- #~ msgid "Administrator|User role"
2091
- #~ msgstr "Administrátor|User role"
2092
- #~ msgid "Editor|User role"
2093
- #~ msgstr "Šéfredaktor|User role"
2094
- #~ msgid "Author|User role"
2095
- #~ msgstr "Redaktor|User role"
2096
- #~ msgid "Contributor|User role"
2097
- #~ msgstr "Spolupracovník|User role"
2098
- #~ msgid "Change will take effect after another page load after saving."
2099
- #~ msgstr ""
2100
- #~ "Případná změna se projeví až když toto nastavení uložíte a poté ještě "
2101
- #~ "jednou obnovíte stránku."
2102
- #~ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
2103
- #~ msgstr "albánština (<a href=\"http://www.romeolab.com/\">Romeo</a>)"
2104
- #~ msgid ""
2105
- #~ "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</"
2106
- #~ "a>)"
2107
- #~ msgstr "běloruština (<a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
2108
- #~ msgid ""
2109
- #~ "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/"
2110
- #~ "\">Rics</a>)"
2111
- #~ msgstr ""
2112
- #~ "brazilská portugalština (<a href=\"http://www.pensarics.com/\">Rics</a>)"
2113
- #~ msgid ""
2114
- #~ "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
2115
- #~ msgstr "čeština (<a href=\"http://www.separatista.net/\">Separatista</a>)"
2116
- #~ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
2117
- #~ msgstr "francouzština (<a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
2118
- #~ msgid ""
2119
- #~ "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</"
2120
- #~ "a>)"
2121
- #~ msgstr "italština (<a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
2122
- #~ msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
2123
- #~ msgstr "japonština (<a href=\"http://www.u-1.net/\">Yuuichi</a>)"
2124
- #~ msgid "Polish (thanks to Alex Kortan)"
2125
- #~ msgstr "polština (Alex Kortan)"
2126
- #~ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
2127
- #~ msgstr "ruština (<a href=\"http://wp-skins.info/\">Truper</a>)"
2128
- #~ msgid "Slovak (thanks to <a href=\"http://lukas.cerro.sk/\">55.lukas</a>)"
2129
- #~ msgstr "slovenština (<a href=\"http://lukas.cerro.sk/\">55.lukas</a>)"
2130
- #~ msgid ""
2131
- #~ "Spanish (thanks to <a href=\"http://theindependentproject.com/"
2132
- #~ "\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</"
2133
- #~ "a>)"
2134
- #~ msgstr ""
2135
- #~ "španělština (<a href=\"http://theindependentproject.com/\">Alejandro "
2136
- #~ "Urrutia</a> a <a href=\"http://halles.cl/\">Matias Halles</a>)"
2137
- #~ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
2138
- #~ msgstr "švédština (<a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
2139
- #~ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
2140
- #~ msgstr "turečtina (<a href=\"http://www.wpuzmani.com/\">Semih</a>)"
2141
- #~ msgid "Insert failed."
2142
- #~ msgstr "Při vkládání došlo k chybě."
2143
- #~ msgid ""
2144
- #~ "If you want to show a table in your pages, posts or text-widgets, use the "
2145
- #~ "shortcode <strong>[table id=&lt;the_table_ID&gt; /]</strong> or click the "
2146
- #~ "button \"Table\" in the editor toolbar."
2147
- #~ msgstr ""
2148
- #~ "Pokud chcete některou tabulku vložit do příspěvku, stránky nebo textového "
2149
- #~ "widgetu, použijte buď zkrácený zápis <strong>[table id=&lt;"
2150
- #~ "the_table_ID&gt; /]</strong> nebo přímo tlačítko \"tabulky\" v HTML "
2151
- #~ "editoru."
2152
- #~ msgid ""
2153
- #~ "You may edit the content of the table here. It is also possible to add or "
2154
- #~ "delete columns and rows."
2155
- #~ msgstr ""
2156
- #~ "Zde můžete upravovat samotný obsah tabulky, stejně jako přidávat nebo "
2157
- #~ "mazat sloupce a řádky."
2158
- #~ msgid "Row hidden"
2159
- #~ msgstr "Skrýt řádek"
2160
- #~ msgid "Column hidden"
2161
- #~ msgstr "Skrýt sloupec"
2162
- #~ msgid "Use Table Headline"
2163
- #~ msgstr "Použít záhlaví tabulky"
2164
- #~ msgid "Print Table Name"
2165
- #~ msgstr "Zobrazit název tabulky"
2166
- #~ msgid "Use Tablesorter"
2167
- #~ msgstr "Použít Tablesorter"
2168
- #~ msgid ""
2169
- #~ "You may sort a table using the <a href=\"http://www.tablesorter.com/"
2170
- #~ "\">Tablesorter-jQuery-Plugin</a>."
2171
- #~ msgstr ""
2172
- #~ "Můžete čtenářům povolit vlastní interaktivní řazení dat v tabulce pomocí "
2173
- #~ "<a href=\"http://www.tablesorter.com/\">jQuery pluginu Tablesorter</a>."
2174
- #~ msgid ""
2175
- #~ "<small>Attention: You must have Tablesorter enabled on the \"Plugin "
2176
- #~ "Options\" screen and the option \"Use Table Headline\" has to be enabled "
2177
- #~ "above for this to work!</small>"
2178
- #~ msgstr ""
2179
- #~ "<small>Upozornění: Musíte Tablesorter nejdříve globálně povolit nahoře v "
2180
- #~ "menu \"Nastavení pluginu\" a zároveň musí být u konkrétní tabulky "
2181
- #~ "zaškrtnuta možnost \"Použít záhlaví tabulky\", aby vše správně fungovalo!"
2182
- #~ "</small>"
2183
- #~ msgid "You may also select the import source."
2184
- #~ msgstr ""
2185
- #~ "Můžete si také vybrat zdroj, odkud chcete tabulková data importovat."
2186
- #~ msgid "General Plugin Options"
2187
- #~ msgstr "Obecné nastavení pluginu"
2188
- #~ msgid "They will effect all tables or the general plugin behavior."
2189
- #~ msgstr ""
2190
- #~ "Toto nastavení ovlivní všechny tabulky nebo obecné vlastnosti pluginu."
2191
- #~ msgid "Enable Tablesorter-JavaScript?"
2192
- #~ msgstr "Povolit Tablesorter?"
2193
- #~ msgid ""
2194
- #~ "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter "
2195
- #~ "jQuery plugin</a>. This can be used to make tables sortable (can be "
2196
- #~ "activated for each table separately in its options)."
2197
- #~ msgstr ""
2198
- #~ "Ano, povolit jQuery plugin <a href=\"http://www.tablesorter.com/"
2199
- #~ "\">Tablesorter</a>. Tato volba umožňuje čtenářům, aby si mohli sami "
2200
- #~ "interaktivně a libovolně řadit data v tabulce tak, jak potřebují (může "
2201
- #~ "být aktivováno také selektivně pro každou tabulku jednotlivě v nastavení "
2202
- #~ "tabulky)."
2203
- #~ msgid "Enter custom CSS"
2204
- #~ msgstr "Vložit vlastní CSS"
2205
- #~ msgid ""
2206
- #~ "You might get a better website performance, if you add the CSS styling to "
2207
- #~ "your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
2208
- #~ msgstr ""
2209
- #~ "Můžete zvýšit výkon svého webu také tím, že vlastní tabulkové CSS styly "
2210
- #~ "místo do tohoto pole přidáte přímo do souboru \"style.css\" ve vaší "
2211
- #~ "šabloně (tento soubor je umístěn konkrétně zde: <a href=\"%s\">%s</a>)."
2212
- #~ msgid ""
2213
- #~ "See the <a href=\"%s\">plugin website</a> for styling examples or use one "
2214
- #~ "of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s"
2215
- #~ "\">Example Style 2</a>"
2216
- #~ msgstr ""
2217
- #~ "Pro další informace o CSS stylování tabulek navštivte <a href=\"%s"
2218
- #~ "\">stránky pluginu</a>, nebo použijte přímo některý z následujících "
2219
- #~ "vzorů: <a href=\"%s\">Příklad 1</a>, <a href=\"%s\">Příklad 2</a>."
2220
- #~ msgid "Just copy the contents of a file into the textarea."
2221
- #~ msgstr ""
2222
- #~ "Stačí pouze nakopírovat CSS získané z konkrétního příkladu do pole pro "
2223
- #~ "vložení vlastního CSS."
2224
- #~ msgid ""
2225
- #~ "Another possibility is, to include a CSS file (e.g. from your theme "
2226
- #~ "folder) with the CSS @import command: %s"
2227
- #~ msgstr ""
2228
- #~ "Další možností je pak použití vlastního samostatného CSS souboru "
2229
- #~ "(uloženého např. v adresáři vaší šablony) pomocí importního CSS příkazu: %"
2230
- #~ "s"
2231
- #~ msgid "Use Tablesorter Extended?"
2232
- #~ msgstr "Použít Rozšířený Tablesorter?"
2233
- #~ msgid ""
2234
- #~ "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk."
2235
- #~ "de\">S&ouml;ren Krings</a> instead of original Tablesorter script "
2236
- #~ "(EXPERIMENTAL FEATURE!)."
2237
- #~ msgstr ""
2238
- #~ "Ano, chci použít raději Rozšířený Tablesorter, jehož autorem je <a href="
2239
- #~ "\"http://tablesorter.openwerk.de\">S&ouml;ren Krings</a>, místo původního "
2240
- #~ "jQuery skriptu Tablesorter (POZOR: Tato funkce je zatím v testovacím "
2241
- #~ "režimu!)."
2242
- #~ msgid ""
2243
- #~ "Yes, uninstall everything when the plugin is deactivated. Attention: You "
2244
- #~ "should only enable this checkbox directly before deactivating the plugin "
2245
- #~ "from the WordPress plugins page!"
2246
- #~ msgstr ""
2247
- #~ "Ano, chci všechno odinstalovat, pokud bude plugin deaktivován. "
2248
- #~ "Upozornění: Tuto možnost byste měli povolit pouze těsně před samotnou "
2249
- #~ "deaktivací tohoto pluginu v Přehledu pluginů!"
2250
- #~ msgid ""
2251
- #~ "(This setting does not influence the \"Manually Uninstall Plugin\" button "
2252
- #~ "below!)"
2253
- #~ msgstr ""
2254
- #~ "(Toto nastavení nijak neovlivňuje možnost \"Ruční odinstalace pluginu\", "
2255
- #~ "kterou můžete provést níže!)"
2256
- #~ msgid "Allow donation message?"
2257
- #~ msgstr "Povolit upozornění o peněžním daru?"
2258
- #~ msgid "Yes, show a donation message after 30 days of using the plugin."
2259
- #~ msgstr ""
2260
- #~ "Ano, chci zobrazit informace o možnosti peněžního daru po uplynutí 30 dní "
2261
- #~ "od nainstalování pluginu."
2262
- #~ msgid "Manually Uninstall Plugin"
2263
- #~ msgstr "Ručně odinstalovat plugin"
2264
- #~ msgid ""
2265
- #~ "To include the table into your posts, pages or text widgets, write the "
2266
- #~ "shortcode [table id=&lt;table-id&gt;] into them."
2267
- #~ msgstr ""
2268
- #~ "Pro vložení tabulky do příspěvku, stránky nebo textového widgetu pak "
2269
- #~ "stačí napsat pouze zkrácený zápis [table id=&lt;table-id&gt;]."
2270
- #~ msgid ""
2271
- #~ "You may also style your table via CSS. Example files are provided on the "
2272
- #~ "plugin website. Every table has the CSS class \"wp-table-reloaded\". Each "
2273
- #~ "table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
2274
- #~ msgstr ""
2275
- #~ "Můžete také upravovat zobrazování tabulek pomocí CSS stylů, konkrétní "
2276
- #~ "příklady naleznete na stránkách pluginu. Každá tabulka má proto v HTML "
2277
- #~ "přiřazeny CSS třídy \"wp-table-reloaded\" a \"wp-table-reloaded-&lt;table-"
2278
- #~ "id&gt;\"."
2279
- #~ msgid ""
2280
- #~ "You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;"
2281
- #~ "number&gt;\" to style rows and columns individually. Use this to style "
2282
- #~ "columns width and text alignment for example."
2283
- #~ msgstr ""
2284
- #~ "Můžete také používat CSS třídy \"column-&lt;number&gt;\" a \"row-&lt;"
2285
- #~ "number&gt;\" pro nastavení specifického zobrazení pro konkrétní řádky a "
2286
- #~ "sloupce. Pomocí těchto tříd také můžete nastavit např. šířku sloupců a "
2287
- #~ "zarovnání textu v tabulce."
2288
- #~ msgid ""
2289
- #~ "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-"
2290
- #~ "reloaded-english/documentation/\">documentation</a> or find out how to "
2291
- #~ "get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-"
2292
- #~ "reloaded-english/support/\">support</a>."
2293
- #~ msgstr ""
2294
- #~ "V případě problémů nahlédněte do <a href=\"http://tobias.baethge.com/"
2295
- #~ "wordpress-plugins/wp-table-reloaded-english/documentation/\">manuálu</a>, "
2296
- #~ "nebo se obraťte na autora s žádostí o <a href=\"http://tobias.baethge.com/"
2297
- #~ "wordpress-plugins/wp-table-reloaded-english/support/\">podporu</a>."
2298
- #~ msgid ""
2299
- #~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
2300
- #~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
2301
- #~ "<a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/"
2302
- #~ "\">WordPress Plugin Directory</a>."
2303
- #~ msgstr ""
2304
- #~ "Pokud se Vám plugin líbil a úspěšně ho využíváte, zvažte prosím možnost "
2305
- #~ "<a href=\"http://tobias.baethge.com/donate/\"><strong>peněžního daru</"
2306
- #~ "strong></a> a ohodnoťte plugin v <a href=\"http://wordpress.org/extend/"
2307
- #~ "plugins/wp-table-reloaded/\">oficiálním adresáři pluginů Wordpressu</a>."
2308
- #~ msgid "This is the \"List Tables\" screen."
2309
- #~ msgstr "Aktuálně se nacházíte v nabídce \"Správa tabulek\"."
2310
- #~ msgid "This is the \"Edit Table\" screen."
2311
- #~ msgstr "Aktuálně se nacházíte v nabídce \"Upravit tabulku\"."
2312
- #~ msgid "This is the \"Add new Table\" screen."
2313
- #~ msgstr "Aktuálně se nacházíte v nabídce \"Vytvořit tabulku\"."
2314
- #~ msgid "This is the \"Import a Table\" screen."
2315
- #~ msgstr "Aktuálně se nacházíte v nabídce \"Importovat tabulku\"."
2316
- #~ msgid "This is the \"Export a Table\" screen."
2317
- #~ msgstr "Aktuálně se nacházíte v nabídce \"Exportovat tabulku\"."
2318
- #~ msgid "URL of image to insert"
2319
- #~ msgstr "Vložte URL adresu obrázku"
2320
-
2321
- #, fuzzy
2322
- #~ msgid "&quot;alt&quot; text of the image"
2323
- #~ msgstr "Vložte ''alt'' text obrázku"
2324
- #~ msgid ""
2325
- #~ "To insert the following image into a cell, just click the cell after "
2326
- #~ "closing this dialog."
2327
- #~ msgstr ""
2328
- #~ "Abyste vložili tento obrázek do tabulky, tak si po uzavření tohoto okna "
2329
- #~ "pomocí tlačítka OK vyberte konkrétní místo v tabulce a klikněte tam."
2330
- #~ msgid "Information about the plugin"
2331
- #~ msgstr "Informace o pluginu"
2332
- #~ msgid "- or -"
2333
- #~ msgstr "- nebo -"
2334
- #~ msgid "(upload will be preferred over pasting)"
2335
- #~ msgstr ""
2336
- #~ "(při zpracování dat bude upřednostněn vybraný souboru před přímo "
2337
- #~ "vloženými daty)"
2338
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded v1.9.3\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
  "POT-Creation-Date: 2010-03-04 21:16+0000\n"
6
+ "PO-Revision-Date: 2012-11-13 18:20:53+0000\n"
7
  "Last-Translator: Gordon\n"
8
  "Language-Team: WordPress4You <info@wordpress4you.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: Russian\n"
14
  "X-Poedit-Country: RUSSIAN FEDERATION\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: ./wp-table-reloaded\n"
20
+ "X-Textdomain-Support: yes"
21
 
22
  #: classes/export.class.php:28
23
  #: classes/import.class.php:36
24
+ #@ wp-table-reloaded
25
  msgid "CSV - Character-Separated Values"
26
  msgstr "CSV - Character-Separated Values (значения разделенные знаками)"
27
 
28
  #: classes/export.class.php:29
29
  #: classes/import.class.php:37
30
+ #@ wp-table-reloaded
31
  msgid "HTML - Hypertext Markup Language"
32
  msgstr "HTML - Hypertext Markup Language (язык разметки гипертекста)"
33
 
34
  #: classes/export.class.php:30
35
  #: classes/import.class.php:38
36
+ #@ wp-table-reloaded
37
  msgid "XML - eXtended Markup Language"
38
  msgstr "XML - eXtended Markup Language (расширенный язык разметки)"
39
 
40
  #: classes/export.class.php:33
41
+ #@ wp-table-reloaded
42
  msgid "; (semicolon)"
43
  msgstr "; (точка с запятой)"
44
 
45
  #: classes/export.class.php:34
46
+ #@ wp-table-reloaded
47
  msgid ", (comma)"
48
  msgstr ", (запятая)"
49
 
50
  #: classes/export.class.php:35
51
+ #@ wp-table-reloaded
52
  msgid ": (colon)"
53
  msgstr ": (двоеточие)"
54
 
55
  #: classes/export.class.php:36
56
+ #@ wp-table-reloaded
57
  msgid ". (dot)"
58
  msgstr ". (точка)"
59
 
60
  #: classes/export.class.php:37
61
+ #@ wp-table-reloaded
62
  msgid "| (pipe)"
63
  msgstr "| (вертикальная черта)"
64
 
65
  #: classes/helper.class.php:40
66
+ #: views/view-about.php:21
67
  #, php-format
68
+ #@ wp-table-reloaded
69
  msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
70
  msgstr "Подробную информацию o WP-Table Reloaded можете получить на <a href=\"%s\">сайте плагина</a> или на странице <a href=\"%s\">WordPress Plugin Directory</a>."
71
 
72
  #: classes/helper.class.php:41
73
+ #: views/view-about.php:21
74
  #, php-format
75
+ #@ wp-table-reloaded
76
  msgid "For technical information, see the <a href=\"%s\">documentation</a>."
77
+ msgstr "Техническую информацию можете найти в <a href=\"%s\">документации</a>."
78
 
79
  #: classes/helper.class.php:42
80
+ #: views/view-about.php:28
81
  #, php-format
82
+ #@ wp-table-reloaded
83
  msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
84
  msgstr "<a href=\"%s\">Поддержка</a> осуществляется через <a href=\"%s\">Форум поддержки WordPress</a> (английский)."
85
 
86
  #: classes/helper.class.php:43
87
+ #: views/view-about.php:28
88
  #, php-format
89
+ #@ wp-table-reloaded
90
  msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
91
+ msgstr "Перед тем, как обратиться за помощью, поищите ответы на форуме и внимательно прочитайте <a href=\"%s\">Часто задаваемые вопросы</a>, где уже наверняка есть готовые ответы."
92
 
93
  #: classes/helper.class.php:44
94
+ #: views/view-about.php:35
95
  #, php-format
96
+ #@ wp-table-reloaded
97
  msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
98
  msgstr "Если вам понравился плагин, мы будем благодарны вам за <a href=\"%s\"><strong>пожертвование</strong></a>."
99
 
100
  #: classes/helper.class.php:74
101
+ #@ wp-table-reloaded
102
  msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
103
  msgstr "Мы благодарны вам за то, что вы используете <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
104
 
105
  #: classes/helper.class.php:74
106
  #, php-format
107
+ #@ wp-table-reloaded
108
  msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
109
  msgstr "Пожалуйста, поддержите плагин вашими <a href=\"%s\">пожертвованиями</a>!"
110
 
111
  #: classes/helper.class.php:104
112
  #: classes/helper.class.php:109
113
+ #@ wp-table-reloaded
114
  msgid "Table cells can span across more than one column or row."
115
  msgstr "Ячейка таблицы может занимать больше одной строчки или столбца."
116
 
117
  #: classes/helper.class.php:104
118
+ #@ wp-table-reloaded
119
  msgid "Combining consecutive cells within the same row is called \"colspanning\"."
120
  msgstr "Соединение ячеек в одной строке называется \"colspanning\"."
121
 
122
  #: classes/helper.class.php:104
123
+ #@ wp-table-reloaded
124
  msgid "To combine cells, add the keyword #colspan# to the cell to the right of the one with the content for the combined cell by using the corresponding button."
125
  msgstr "Для того, что бы соединить ячейки в ряду, добавьте ключевое слово #colspan# в самую правую ячейку и нажмите соответствующую кнопку."
126
 
127
  #: classes/helper.class.php:104
128
  #: classes/helper.class.php:109
129
+ #@ wp-table-reloaded
130
  msgid "Repeat this to add the keyword to all cells that shall be connected."
131
  msgstr "Повторите эту операцию для всех ячеек которые нужно соединить."
132
 
133
  #: classes/helper.class.php:104
134
  #: classes/helper.class.php:109
135
+ #@ wp-table-reloaded
136
  msgid "Be aware that the JavaScript libraries will not work on tables which have combined cells."
137
  msgstr "Учтите, что библиотеки JavaScript не будут работать с таблицами, имеющими объедененные ячейки."
138
 
139
  #: classes/helper.class.php:109
140
+ #@ wp-table-reloaded
141
  msgid "Combining consecutive cells within the same column is called \"rowspanning\"."
142
  msgstr "Соединение ячеек в одном столбце называется \"rowspanning\"."
143
 
144
  #: classes/helper.class.php:109
145
+ #@ wp-table-reloaded
146
  msgid "To combine cells, add the keyword #rowspan# to the cell below the one with the content for the combined cell by using the corresponding button."
147
  msgstr "Для того, что бы соединить ячейки в столбце, добавьте ключевое слово #rowspan# в самую нижнюю ячейку и нажмите соответствующую кнопку."
148
 
149
  #: classes/helper.class.php:118
150
+ #@ wp-table-reloaded
151
  msgid "Help"
152
  msgstr "Помощь"
153
 
154
+ #: classes/render.class.php:141
155
  #: views/view-list.php:60
156
+ #@ default
157
+ #@ wp-table-reloaded
158
  msgid "Edit"
159
  msgstr "Редактировать"
160
 
161
+ #: controllers/controller-admin.php:258
162
+ #@ wp-table-reloaded
163
  msgid "Czech"
164
  msgstr "чешский"
165
 
166
+ #: controllers/controller-admin.php:259
167
+ #@ wp-table-reloaded
168
  msgid "German"
169
  msgstr "немецкий"
170
 
171
+ #: controllers/controller-admin.php:260
172
+ #@ wp-table-reloaded
173
  msgid "English"
174
  msgstr "английский"
175
 
176
+ #: controllers/controller-admin.php:261
177
+ #@ wp-table-reloaded
178
  msgid "Spanish"
179
  msgstr "испанский"
180
 
181
+ #: controllers/controller-admin.php:262
182
+ #@ wp-table-reloaded
183
  msgid "Finnish"
184
  msgstr "финский"
185
 
186
+ #: controllers/controller-admin.php:265
187
+ #@ wp-table-reloaded
188
  msgid "Hindi"
189
  msgstr "хинди"
190
 
191
+ #: controllers/controller-admin.php:267
192
+ #@ wp-table-reloaded
193
  msgid "Italian"
194
  msgstr "итальянский"
195
 
196
+ #: controllers/controller-admin.php:268
197
+ #@ wp-table-reloaded
198
  msgid "Japanese"
199
  msgstr "японский"
200
 
201
+ #: controllers/controller-admin.php:271
202
+ #@ wp-table-reloaded
203
  msgid "Brazilian Portuguese"
204
  msgstr "бразильский/партугальский"
205
 
206
+ #: controllers/controller-admin.php:277
207
+ #@ wp-table-reloaded
208
  msgid "Chinese (Simplified)"
209
  msgstr "Китайский (Упрощенный)"
210
 
211
+ #: controllers/controller-admin.php:273
212
+ #@ wp-table-reloaded
213
  msgid "Russian"
214
  msgstr "русский"
215
 
216
+ #: controllers/controller-admin.php:274
217
+ #@ wp-table-reloaded
218
  msgid "Slovak"
219
  msgstr "словацкий"
220
 
221
+ #: controllers/controller-admin.php:275
222
+ #@ wp-table-reloaded
223
  msgid "Swedish"
224
  msgstr "шведский"
225
 
226
+ #: controllers/controller-admin.php:263
227
+ #@ wp-table-reloaded
 
 
 
 
 
 
 
 
 
 
 
228
  msgid "French"
229
  msgstr "французский"
230
 
231
+ #: controllers/controller-admin.php:270
232
+ #@ wp-table-reloaded
233
  msgid "Polish"
234
  msgstr "польский"
235
 
236
+ #: controllers/controller-admin.php:307
 
 
 
 
237
  #, php-format
238
+ #@ wp-table-reloaded
239
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
240
  msgstr "Добро пожаловать WP-Table Reloaded %s. Если у вас возникнут какие-либо вопросы или затруднения, пожалуйста ознакомьтесь с <a href=\"%s\">часто задаваемыми вопросами</a> и <a href=\"%s\">документацией</a>, или обращайтесь в секцию <a href=\"%s\">поддержки</a> ."
241
 
242
+ #: controllers/controller-admin.php:308
243
  #, php-format
244
+ #@ wp-table-reloaded
245
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
246
  msgstr "Спасибо, за то что обновили свою версию WP-Table Reloaded %s."
247
 
248
+ #: controllers/controller-admin.php:308
 
 
 
 
249
  #, php-format
250
+ #@ wp-table-reloaded
251
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
252
  msgstr "Для того, что бы получить более подробную информацию, прочтите <a href=\"%s\">сообщение о релизе</a>."
253
 
254
+ #: controllers/controller-admin.php:308
255
  #, php-format
256
+ #@ wp-table-reloaded
257
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
258
  msgstr "Если вам понравились новые функции и возможности, я буду благодарен за небольшое <a href=\"%s\">пожертвование</a>. Спасибо."
259
 
260
+ #: controllers/controller-admin.php:313
261
+ #@ wp-table-reloaded
262
  msgid "Hide this message"
263
  msgstr "Скрыть это сообщение."
264
 
265
+ #: controllers/controller-admin.php:321
266
+ #@ wp-table-reloaded
267
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
268
  msgstr "Спасибо за то, что используете этот плагин. Вы пользуетесь WP-Table Reloaded уже более месяца."
269
 
270
+ #: controllers/controller-admin.php:321
271
  #, php-format
272
+ #@ wp-table-reloaded
273
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
274
  msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
275
  msgstr[0] "Если всё работает и вы довольны тем, как управляете вашей %s таблицей, то возможно, это стоит один доллар или евро?"
276
  msgstr[1] "Если всё работает и вы довольны тем, как управляете вашими %s таблицами, то возможно, это стоит один доллар или евро?"
277
 
278
+ #: controllers/controller-admin.php:322
279
  #, php-format
280
+ #@ wp-table-reloaded
281
  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!"
282
  msgstr "<a href=\"%s\">Пожертвования</a> помогут мне поддерживать и развивать этот <i>бесплатный</i> плагин. Спасибо!"
283
 
284
+ #: controllers/controller-admin.php:323
285
+ #@ wp-table-reloaded
286
  msgid "Sure, no problem!"
287
  msgstr "Да, без проблем!"
288
 
289
+ #: controllers/controller-admin.php:324
290
+ #@ wp-table-reloaded
291
  msgid "I already donated."
292
  msgstr "Я уже сделал пожертвование."
293
 
294
+ #: controllers/controller-admin.php:325
295
+ #@ wp-table-reloaded
296
  msgid "No, thanks. Don't ask again."
297
  msgstr "Нет, спасибо. Больше не спрашивайте."
298
 
299
+ #: controllers/controller-admin.php:353
300
  #, php-format
301
+ #@ wp-table-reloaded
302
  msgid "Table &quot;%s&quot; added successfully."
303
  msgstr "Таблица &quot;%s&quot; была успешно добавленна."
304
 
305
+ #: controllers/controller-admin.php:384
306
  #, php-format
307
+ #@ wp-table-reloaded
308
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
309
  msgstr "Таблица успешно отредактированна. Теперь эта таблица имеет такое ID %s. Вам необходимо изменить существующие коды соответственно."
310
 
311
+ #: controllers/controller-admin.php:386
312
  #, php-format
313
+ #@ wp-table-reloaded
314
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
315
  msgstr "ID нельзя изменить с %s нa %s, потому что уже существует таблица с таким ID."
316
 
317
+ #: controllers/controller-admin.php:389
318
+ #@ wp-table-reloaded
319
  msgid "Table edited successfully."
320
  msgstr "Таблица была успешно отредактированна."
321
 
322
+ #: controllers/controller-admin.php:438
323
+ #@ wp-table-reloaded
324
  msgid "Rows swapped successfully."
325
  msgstr "Ряды успешно заменены."
326
 
327
+ #: controllers/controller-admin.php:459
328
+ #@ wp-table-reloaded
329
  msgid "Columns swapped successfully."
330
  msgstr "Столбцы успешно заменены."
331
 
332
+ #: controllers/controller-admin.php:500
333
+ #@ wp-table-reloaded
334
  msgid "Table sorted successfully."
335
  msgstr "Таблица успешно отсортированна."
336
 
337
+ #: controllers/controller-admin.php:523
338
+ #@ wp-table-reloaded
339
  msgid "Row moved successfully."
340
  msgstr "Ряд успешно перемещен."
341
 
342
+ #: controllers/controller-admin.php:550
343
+ #@ wp-table-reloaded
344
  msgid "Column moved successfully."
345
  msgstr "Столбец успешно перемещен."
346
 
347
+ #: controllers/controller-admin.php:558
348
+ #@ wp-table-reloaded
349
  msgid "Row could not be deleted."
350
  msgid_plural "Rows could not be deleted."
351
  msgstr[0] "Строка не может быть удален."
352
  msgstr[1] "Строки не могут быть удалены."
353
 
354
+ #: controllers/controller-admin.php:567
355
+ #@ wp-table-reloaded
356
  msgid "Row deleted successfully."
357
  msgid_plural "Rows deleted successfully."
358
  msgstr[0] "Ряд удален успешно."
359
  msgstr[1] "Ряды удалены успешно."
360
 
361
+ #: controllers/controller-admin.php:577
362
+ #@ wp-table-reloaded
363
  msgid "Column could not be deleted."
364
  msgid_plural "Columns could not be deleted."
365
  msgstr[0] "Столбец не может быть удален."
366
  msgstr[1] "Столбцы не могут быть удалены."
367
 
368
+ #: controllers/controller-admin.php:590
369
+ #@ wp-table-reloaded
370
  msgid "Column deleted successfully."
371
  msgid_plural "Columns deleted successfully."
372
  msgstr[0] "Столбец удален успешно."
373
  msgstr[1] "Столбцы удалены успешно."
374
 
375
+ #: controllers/controller-admin.php:613
376
+ #@ wp-table-reloaded
377
  msgid "Row inserted successfully."
378
  msgid_plural "Rows inserted successfully."
379
  msgstr[0] "Ряд вставлен успешно."
380
  msgstr[1] "Ряды вставлены успешно."
381
 
382
+ #: controllers/controller-admin.php:640
383
+ #@ wp-table-reloaded
384
  msgid "Column inserted successfully."
385
  msgid_plural "Columns inserted successfully."
386
  msgstr[0] "Столбец вставлен успешно."
387
  msgstr[1] "Столбцы вставлены успешно."
388
 
389
+ #: controllers/controller-admin.php:655
390
+ #@ wp-table-reloaded
391
  msgid "Row added successfully."
392
  msgid_plural "Rows added successfully."
393
  msgstr[0] "Ряд добавлен успешно."
394
  msgstr[1] "Ряды добавлены успешно."
395
 
396
+ #: controllers/controller-admin.php:669
397
+ #@ wp-table-reloaded
398
  msgid "Column added successfully."
399
  msgid_plural "Columns added successfully."
400
  msgstr[0] "Столбец добавлен успешно."
401
  msgstr[1] "Столбцы добавлены успешно."
402
 
403
+ #: controllers/controller-admin.php:676
404
+ #@ wp-table-reloaded
405
  msgid "Could not add Custom Data Field, because you did not enter a name."
406
  msgstr "Пользовательское поле не может быть добавленно, так как не указанно имя."
407
 
408
+ #: controllers/controller-admin.php:681
409
+ #@ wp-table-reloaded
410
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
411
  msgstr "Пользовательское поле не может быть добавленно, так как имя, которое вы указали, зарезервированно за другим полем."
412
 
413
+ #: controllers/controller-admin.php:687
414
+ #@ wp-table-reloaded
415
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
416
  msgstr "Пользовательское поле не может быть добавленно, так как имя содержит недопустимые знаки."
417
 
418
+ #: controllers/controller-admin.php:691
419
+ #@ wp-table-reloaded
420
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
421
  msgstr "Пользовательское поле не может быть добавленно, так как поле с таким именем уже существует."
422
 
423
+ #: controllers/controller-admin.php:697
424
+ #@ wp-table-reloaded
425
  msgid "Custom Data Field added successfully."
426
  msgstr "Пользовательское поле добавленно успешно."
427
 
428
+ #: controllers/controller-admin.php:737
429
+ #: controllers/controller-admin.php:793
430
+ #@ wp-table-reloaded
431
  msgid "Copy of"
432
  msgstr "Копия"
433
 
434
+ #: controllers/controller-admin.php:741
435
+ #@ wp-table-reloaded
436
  msgid "Table copied successfully."
437
  msgid_plural "Tables copied successfully."
438
  msgstr[0] "Таблица скопированна успешно."
439
  msgstr[1] "Таблицы скопированны успешно."
440
 
441
+ #: controllers/controller-admin.php:747
442
+ #@ wp-table-reloaded
443
  msgid "Table deleted successfully."
444
  msgid_plural "Tables deleted successfully."
445
  msgstr[0] "Таблица удалена успешно."
446
  msgstr[1] "Таблицы удалены успешно."
447
 
448
+ #: controllers/controller-admin.php:768
449
+ #: controllers/controller-admin.php:923
450
+ #: controllers/controller-admin.php:961
451
+ #@ wp-table-reloaded
452
  msgid "Table imported successfully."
453
  msgid_plural "Tables imported successfully."
454
  msgstr[0] "Таблица импортированна успешно."
455
  msgstr[1] "Таблицы импортированны успешно"
456
 
457
+ #: controllers/controller-admin.php:775
458
+ #@ wp-table-reloaded
459
  msgid "You did not select any tables!"
460
  msgstr "Ни одна таблица не выбранна."
461
 
462
+ #: controllers/controller-admin.php:798
463
  #, php-format
464
+ #@ wp-table-reloaded
465
  msgid "Table &quot;%s&quot; copied successfully."
466
  msgstr "Таблица &quot;%s&quot; скопированна успешно."
467
 
468
+ #: controllers/controller-admin.php:816
469
  #, php-format
470
+ #@ wp-table-reloaded
471
  msgid "Table &quot;%s&quot; deleted successfully."
472
  msgstr "Таблица &quot;%s&quot; удалена успешно."
473
 
474
+ #: controllers/controller-admin.php:824
475
+ #@ wp-table-reloaded
476
  msgid "Custom Data Field deleted successfully."
477
  msgstr "Пользовательское поле удалено успешно."
478
 
479
+ #: controllers/controller-admin.php:826
480
+ #@ wp-table-reloaded
481
  msgid "Custom Data Field could not be deleted."
482
  msgstr "Пользовательское поле не может быть удалено."
483
 
484
+ #: controllers/controller-admin.php:832
485
+ #@ wp-table-reloaded
486
  msgid "Delete failed."
487
  msgstr "Удаление не состоялось."
488
 
489
+ #: controllers/controller-admin.php:864
490
+ #: controllers/controller-admin.php:874
491
+ #: controllers/controller-admin.php:885
492
+ #@ wp-table-reloaded
493
  msgid "Imported Table"
494
  msgstr "Импортированная таблица."
495
 
496
+ #: controllers/controller-admin.php:865
497
+ #: controllers/controller-admin.php:886
498
  #, php-format
499
+ #@ wp-table-reloaded
500
  msgid "from %s"
501
  msgstr "из %s"
502
 
503
+ #: controllers/controller-admin.php:875
504
+ #@ wp-table-reloaded
505
  msgid "via form"
506
  msgstr "через форму"
507
 
508
+ #: controllers/controller-admin.php:902
509
+ #: controllers/controller-admin.php:939
510
+ #@ wp-table-reloaded
511
  msgid "Table could not be imported."
512
  msgstr "Таблица не может быть импортированна."
513
 
514
+ #: controllers/controller-admin.php:919
515
  #, php-format
516
+ #@ wp-table-reloaded
517
  msgid "Table %s (%s) replaced successfully."
518
  msgstr "Таблица %s (%s) заменена успешно."
519
 
520
+ #: controllers/controller-admin.php:969
521
+ #: controllers/controller-admin.php:1164
522
+ #@ wp-table-reloaded
523
  msgid "You do not have sufficient rights to perform this action."
524
  msgstr "У вас недостаточно прав для выполнения этого действия."
525
 
526
+ #: controllers/controller-admin.php:976
527
+ #@ wp-table-reloaded
528
  msgid "You did not upload a WP-Table Reloaded dump file."
529
  msgstr "Вы не загрузили WP-Table Reloaded дамп файл."
530
 
531
+ #: controllers/controller-admin.php:985
532
+ #@ wp-table-reloaded
533
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
534
  msgstr "Вы загрузили пустой дамп файл. Пожалуйста, загрузите корректный дамп файл."
535
 
536
+ #: controllers/controller-admin.php:1013
537
+ #@ wp-table-reloaded
538
  msgid "All Tables, Settings and Options were successfully imported."
539
  msgstr "Все таблицы, настройки и установки были успешно перенесены."
540
 
541
+ #: controllers/controller-admin.php:1042
542
  #, php-format
543
+ #@ wp-table-reloaded
544
  msgid "Table &quot;%s&quot; exported successfully."
545
  msgstr "Таблица &quot;%s&quot;экспортированна успешно."
546
 
547
+ #: controllers/controller-admin.php:1087
548
+ #: views/view-options.php:233
549
+ #@ wp-table-reloaded
550
  msgid "You do not have sufficient rights to access the Plugin Options."
551
+ msgstr "У вас недостаточно прав для доступа к настройкам плагина."
552
 
553
+ #: controllers/controller-admin.php:1145
554
+ #@ wp-table-reloaded
555
  msgid "Options saved successfully."
556
  msgstr "Опции сохранены успешно."
557
 
558
+ #: controllers/controller-admin.php:1148
559
  #, php-format
560
+ #@ wp-table-reloaded
561
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
562
  msgstr "<a href=\"%s\">Продолжить.</a>"
563
 
564
+ #: controllers/controller-admin.php:1214
565
+ #@ wp-table-reloaded
566
  msgid "There is no table with this ID!"
567
  msgstr "Таблица с таким ID не существует."
568
 
569
+ #: controllers/controller-admin.php:1241
570
+ #@ wp-table-reloaded
571
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
572
  msgstr "Очень признателен вам за пожертвование. Вы сделали свой вклад в развитие WP-Table Reloaded!"
573
 
574
+ #: controllers/controller-admin.php:1243
575
  #, php-format
576
+ #@ wp-table-reloaded
577
  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 &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
578
+ msgstr "Нет проблем! Я все еще надеюсь, вам нравятся возможности WP-Таблица Reloaded. Если вы все же изменили свое мнение, вы всегда найдете кнопку &quot;%s&quot; на сайте <a href=\"%s\">WP-Table Reloaded website</a>."
579
 
580
+ #: controllers/controller-admin.php:1243
581
+ #: controllers/controller-admin.php:1682
582
+ #@ wp-table-reloaded
583
  msgid "Donate"
584
  msgstr "Пожертвование"
585
 
586
+ #: controllers/controller-admin.php:1266
587
+ #: controllers/controller-admin.php:1273
588
+ #@ wp-table-reloaded
589
  msgid "List of Tables"
590
  msgstr "Список таблиц"
591
 
592
+ #. translators: plugin header field 'Name'
593
+ #: controllers/controller-admin.php:1266
594
+ #: controllers/controller-admin.php:1270
595
+ #: controllers/controller-admin.php:1272
596
+ #: wp-table-reloaded.php:0
597
+ #@ wp-table-reloaded
598
  msgid "WP-Table Reloaded"
599
  msgstr "WP-Table Reloaded"
600
 
601
+ #: controllers/controller-admin.php:1267
602
+ #: controllers/controller-admin.php:1303
603
+ #@ wp-table-reloaded
604
  msgid "Add new Table"
605
  msgstr "Добавить новую таблицу"
606
 
607
+ #: controllers/controller-admin.php:1268
608
+ #: controllers/controller-admin.php:1304
609
+ #@ wp-table-reloaded
610
  msgid "Import a Table"
611
  msgstr "Импортировать таблицу"
612
 
613
+ #: controllers/controller-admin.php:1269
614
+ #: controllers/controller-admin.php:1305
615
+ #@ wp-table-reloaded
616
  msgid "Export a Table"
617
  msgstr "Экспортировать таблицу"
618
 
619
+ #: controllers/controller-admin.php:1270
620
+ #: controllers/controller-admin.php:1312
621
+ #: views/view-edit.php:350
622
+ #: views/view-edit.php:365
623
  #: views/view-export.php:10
624
+ #@ wp-table-reloaded
625
  msgid "Plugin Options"
626
  msgstr "Настройки плагина"
627
 
628
+ #: controllers/controller-admin.php:1271
629
+ #@ wp-table-reloaded
630
  msgid "About WP-Table Reloaded"
631
  msgstr "О WP-Table Reloaded"
632
 
633
+ #: controllers/controller-admin.php:1279
634
  #, php-format
635
+ #@ wp-table-reloaded
636
  msgid "Edit Table &quot;%s&quot; (ID %s)"
637
  msgstr "Редактировать таблицу &quot;%s&quot; (ID %s)"
638
 
639
+ #: controllers/controller-admin.php:1280
640
  #, php-format
641
+ #@ wp-table-reloaded
642
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
643
  msgstr "Предварительный просмотр таблицы &quot;%s&quot; (ID %s)"
644
 
645
+ #: controllers/controller-admin.php:1302
646
+ #: views/view-options.php:83
647
+ #@ wp-table-reloaded
648
  msgid "List Tables"
649
  msgstr "Отобразить таблицы"
650
 
651
+ #: controllers/controller-admin.php:1313
652
+ #@ wp-table-reloaded
653
  msgid "About the plugin"
654
  msgstr "О плагине"
655
 
656
+ #: controllers/controller-admin.php:1678
657
+ #@ wp-table-reloaded
658
  msgid "WP-Table Reloaded Plugin Page"
659
  msgstr "Страница плагина WP-Table Reloaded"
660
 
661
+ #: controllers/controller-admin.php:1678
662
+ #@ wp-table-reloaded
663
  msgid "Plugin Page"
664
  msgstr "Страница плагина"
665
 
666
+ #: controllers/controller-admin.php:1679
667
+ #@ wp-table-reloaded
668
  msgid "Frequently Asked Questions"
669
  msgstr "Часто задаваемые вопросы"
670
 
671
+ #: controllers/controller-admin.php:1679
672
+ #@ wp-table-reloaded
673
  msgid "FAQ"
674
  msgstr "FAQ"
675
 
676
+ #: controllers/controller-admin.php:1680
677
+ #@ wp-table-reloaded
678
  msgid "Support"
679
  msgstr "Поддержка"
680
 
681
+ #: controllers/controller-admin.php:1681
682
+ #@ wp-table-reloaded
683
  msgid "Plugin Documentation"
684
  msgstr "Документация плагина"
685
 
686
+ #: controllers/controller-admin.php:1681
687
+ #@ wp-table-reloaded
688
  msgid "Documentation"
689
  msgstr "Документация"
690
 
691
+ #: controllers/controller-admin.php:1682
692
+ #@ wp-table-reloaded
693
  msgid "Support WP-Table Reloaded with your donation!"
694
  msgstr "Поддержите WP-Table Reloaded с помощью своих пожертвований !"
695
 
696
+ #: controllers/controller-admin.php:1721
697
+ #@ wp-table-reloaded
698
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
699
  msgstr "Вы уверенны ? Это следует сделать перед удалением плагина!"
700
 
701
+ #: controllers/controller-admin.php:1722
702
+ #@ wp-table-reloaded
703
  msgid "URL of link to insert"
704
  msgstr "URL ссылки"
705
 
706
+ #: controllers/controller-admin.php:1723
707
+ #@ wp-table-reloaded
708
  msgid "Text of link"
709
  msgstr "Текст ссылки"
710
 
711
+ #: controllers/controller-admin.php:1724
712
+ #@ wp-table-reloaded
713
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
714
  msgstr "Чтобы поместить в ячейку HTML код ссылки, кликните на ячейке после того, как закроете это диалоговое окно."
715
 
716
+ #: controllers/controller-admin.php:1725
717
+ #@ wp-table-reloaded
718
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
719
  msgstr "Чтобы вставить картинку, кликните на ту ячейку куда вы хотите поместить картинку."
720
 
721
+ #: controllers/controller-admin.php:1725
722
+ #@ wp-table-reloaded
723
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
724
  msgstr "Откроется окно медиа библиотеки, где вы сможете выбрать картинку или вставить URL картинки."
725
 
726
+ #: controllers/controller-admin.php:1725
727
  #, php-format
728
+ #@ wp-table-reloaded
729
  msgid "Click the &quot;%s&quot; button to insert the image."
730
  msgstr "Кликните &quot;%s&quot; кнопку, чтобы вставить картинку."
731
 
732
+ #: controllers/controller-admin.php:1725
733
+ #@ default
734
  msgid "Insert into Post"
735
  msgstr "Вставить в пост."
736
 
737
+ #: controllers/controller-admin.php:1726
738
+ #@ wp-table-reloaded
739
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
740
  msgstr "Чтобы объединить ячейки в ряду, нужно кликнуть на ячейку которая стоит справа от той, в которой находится содержимое, которое вы хотите поместить в объединенные ячейки."
741
 
742
+ #: controllers/controller-admin.php:1727
743
+ #@ wp-table-reloaded
744
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
745
  msgstr "Чтобы объединить ячейки в столбце, нужно кликнуть на ячейку которая стоит под той, в которой находится содержимое, которое вы хотите поместить в объединенные ячейки."
746
 
747
+ #: controllers/controller-admin.php:1728
748
+ #@ wp-table-reloaded
749
  msgid "Do you want to copy the selected tables?"
750
  msgstr "Вы хотите скопировать выделенные таблицы?"
751
 
752
+ #: controllers/controller-admin.php:1729
753
+ #@ wp-table-reloaded
754
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
755
  msgstr "Выделенные таблицы и всё содержимое будут удаленны. Вы действительно хотите их удалить?"
756
 
757
+ #: controllers/controller-admin.php:1730
758
+ #@ wp-table-reloaded
759
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
760
  msgstr "Вы действительно хотите импортировать выделенные таблицы из wp-Table plugin?"
761
 
762
+ #: controllers/controller-admin.php:1731
763
+ #@ wp-table-reloaded
764
  msgid "Do you want to copy this table?"
765
  msgstr "Вы хотите скопировать эту таблицу?"
766
 
767
+ #: controllers/controller-admin.php:1732
768
+ #@ wp-table-reloaded
769
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
770
  msgstr "Всу таблицы и содержимое будут удаленны. Вы действительно хотите их удалить?"
771
 
772
+ #: controllers/controller-admin.php:1733
773
+ #@ wp-table-reloaded
774
  msgid "Do you really want to delete the selected rows?"
775
  msgstr "Вы действительно хотите удалить выделенные ряды?"
776
 
777
+ #: controllers/controller-admin.php:1734
778
+ #@ wp-table-reloaded
779
  msgid "Do you really want to delete the selected columns?"
780
  msgstr "Вы действительно хотите удалить выделенные столбцы?"
781
 
782
+ #: controllers/controller-admin.php:1735
783
+ #: controllers/controller-admin.php:1739
784
+ #: controllers/controller-admin.php:1741
785
+ #@ wp-table-reloaded
786
  msgid "You have not selected any rows."
787
  msgstr "Вы не выбрали ни одного ряда."
788
 
789
+ #: controllers/controller-admin.php:1736
790
+ #: controllers/controller-admin.php:1740
791
+ #: controllers/controller-admin.php:1742
792
+ #@ wp-table-reloaded
793
  msgid "You have not selected any columns."
794
  msgstr "Вы не выбрали ни одного столбца."
795
 
796
+ #: controllers/controller-admin.php:1737
797
+ #@ wp-table-reloaded
798
  msgid "You can not delete all rows of the table at once!"
799
  msgstr "Вы не можете удалить сразу все ряды в таблице!"
800
 
801
+ #: controllers/controller-admin.php:1738
802
+ #@ wp-table-reloaded
803
  msgid "You can not delete all columns of the table at once!"
804
  msgstr "Вы не можете удалить сразу все столбцы в таблице!"
805
 
806
+ #: controllers/controller-admin.php:1743
807
+ #@ wp-table-reloaded
808
  msgid "Do you really want to import this table from the wp-Table plugin?"
809
  msgstr "Вы действительно хотите импортировать эту таблицу из wp-Table plugin?"
810
 
811
+ #: controllers/controller-admin.php:1744
812
+ #@ wp-table-reloaded
813
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
814
  msgstr "Вы действительно хотите удалить плагин и ВСЕ данные?"
815
 
816
+ #: controllers/controller-admin.php:1745
817
+ #@ wp-table-reloaded
818
  msgid "Are you really sure?"
819
  msgstr "Вы уверенны?"
820
 
821
+ #: controllers/controller-admin.php:1746
822
+ #@ wp-table-reloaded
823
  msgid "Do you really want to change the ID of the table?"
824
  msgstr "Вы действительно хотите изменить ID таблицы?"
825
 
826
+ #: controllers/controller-admin.php:1747
827
+ #@ wp-table-reloaded
828
  msgid "To show this Custom Data Field, use this shortcode:"
829
  msgstr "Чтобы отобразить это пользовательское поле используйте код:"
830
 
831
+ #: controllers/controller-admin.php:1748
832
+ #@ wp-table-reloaded
833
  msgid "To show this table, use this shortcode:"
834
  msgstr "Чтобы отобразить эту таблицу используйте код:"
835
 
836
+ #: controllers/controller-admin.php:1749
837
+ #@ wp-table-reloaded
838
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
839
  msgstr "Внимание: вы потеряете все таблицы и натройки! Вам нужно создать резервную копию."
840
 
841
+ #: controllers/controller-admin.php:1750
842
+ #@ wp-table-reloaded
843
  msgid "You have made changes to the content of this table and not yet saved them."
844
  msgstr "Вы внесли изменеия в содержимое этой таблицы, но не сохранили их."
845
 
846
+ #: controllers/controller-admin.php:1750
847
  #, php-format
848
+ #@ wp-table-reloaded
849
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
850
  msgstr "Вам нужно кликнуть &quot;%s&quot; или данные будут потерянны в случае если вы покините эту страницу."
851
 
852
+ #: controllers/controller-admin.php:1750
853
  #: views/view-edit.php:41
854
  #: views/view-edit.php:253
855
+ #: views/view-edit.php:413
856
+ #: views/view-edit.php:464
857
+ #@ wp-table-reloaded
858
  msgid "Update Changes"
859
  msgstr "Обновить изменения."
860
 
 
861
  #: views/view-about.php:14
862
  #: views/view-list.php:2
863
+ #@ wp-table-reloaded
864
  msgid "Table"
865
  msgstr "таблица"
866
 
867
+ #: controllers/controller-admin.php:1800
868
+ #@ wp-table-reloaded
869
  msgid "Insert a Table"
870
  msgstr "Вставить таблицу"
871
 
872
+ #: controllers/controller-admin.php:1857
873
+ #@ wp-table-reloaded
874
  msgid "Please wait..."
875
  msgstr "Пожалуйста, подождите..."
876
 
877
+ #: controllers/controller-admin.php:1858
878
+ #@ wp-table-reloaded
879
  msgid "Show _MENU_ Tables"
880
  msgstr "Показать _MENU_ таблиц"
881
 
882
+ #: controllers/controller-admin.php:1860
883
  #: views/view-ajax_list.php:53
884
+ #: views/view-export.php:72
885
+ #: views/view-list.php:87
886
+ #@ wp-table-reloaded
887
  msgid "No tables were found."
888
  msgstr "Ни одной таблицы не найденно."
889
 
890
+ #: controllers/controller-admin.php:1861
891
+ #@ wp-table-reloaded
892
  msgid "_START_ to _END_ of _TOTAL_ Tables"
893
+ msgstr "Показать с _START_ по _END_ таблицы из _TOTAL_."
894
 
895
+ #: controllers/controller-admin.php:1862
896
+ #@ wp-table-reloaded
897
  msgid "(filtered from _MAX_ Tables)"
898
  msgstr "(выбранно из _MAX_ таблиц)"
899
 
900
+ #: controllers/controller-admin.php:1863
901
+ #@ wp-table-reloaded
902
  msgid "Filter:"
903
  msgstr "Отфильтровать:"
904
 
905
+ #: controllers/controller-admin.php:1864
906
+ #@ wp-table-reloaded
907
  msgid "First"
908
  msgstr "Первый"
909
 
910
+ #: controllers/controller-admin.php:1865
911
+ #@ wp-table-reloaded
912
  msgid "Back"
913
  msgstr "Назад"
914
 
915
+ #: controllers/controller-admin.php:1866
916
+ #@ wp-table-reloaded
917
  msgid "Next"
918
  msgstr "Следующий"
919
 
920
+ #: controllers/controller-admin.php:1867
921
+ #@ wp-table-reloaded
922
  msgid "Last"
923
  msgstr "Последний"
924
 
925
  #: views/view-about.php:5
926
+ #@ wp-table-reloaded
927
  msgid "Plugin Purpose"
928
  msgstr "Назначение плагина."
929
 
930
  #: views/view-about.php:7
931
+ #@ wp-table-reloaded
932
  msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
933
+ msgstr "WP-Table Reloaded дает вам возможность создавать таблицы и управлять ими в Консоли администратора WordPress."
934
 
935
  #: views/view-about.php:7
936
+ #@ wp-table-reloaded
937
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
938
  msgstr "Эти таблицы могут содержать текст, числа и даже HTML (например картинки и ссылки)"
939
 
940
  #: views/view-about.php:7
941
+ #@ wp-table-reloaded
942
  msgid "You can then show the tables in your posts, on your pages or in text-widgets by using a shortcode."
943
  msgstr "Затем вы можете поместить таблицы в ваш пост, на ваши страницы или виджеты, используя код."
944
 
945
  #: views/view-about.php:7
946
+ #@ wp-table-reloaded
947
  msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
948
  msgstr "Если вы хотите использовать таблицы где-либо еще в вашей теме, вы можете использовать функцию шаблона."
949
 
950
  #: views/view-about.php:12
951
+ #@ wp-table-reloaded
952
  msgid "Usage"
953
  msgstr "Использование"
954
 
955
  #: views/view-about.php:14
956
+ #@ wp-table-reloaded
957
  msgid "At first you should add or import a table."
958
  msgstr "Сначала вам нужно добавить и импортировать таблицу."
959
 
960
  #: views/view-about.php:14
961
+ #@ wp-table-reloaded
962
  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."
963
  msgstr "Это значит, что вы позволили плагину создать пустую таблицу или загрузили уже существующую таблицу из CSV, XML или HTML файла."
964
 
965
  #: views/view-about.php:14
966
+ #@ wp-table-reloaded
967
  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."
968
  msgstr "После вы можете редактировать ваши данные или изменять структуру таблицы (например добавляя ряды или столбцы, меняя местами ряды или столбцы, или сортируя их) и выбирать специфические опции таблицы, такие как альтернативный цвет фона строки и отображение имени и описания."
969
 
970
  #: views/view-about.php:14
971
+ #@ wp-table-reloaded
972
  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."
973
  msgstr "Для того, чтобы добавить картинку или ссылку в ячейку, используйте соответствующие кнопки. "
974
 
977
  #: views/view-edit.php:9
978
  #: views/view-list.php:2
979
  #, php-format
980
+ #@ wp-table-reloaded
981
  msgid "To insert the table into a page, post or text-widget, copy the shortcode <strong>[table id=%s /]</strong> and paste it into the corresponding place in the editor."
982
  msgstr "Для того, чтобы добавить таблицу на страницу, в пост или в текстовый виджет, скопируйте код <strong>[table id=%s /]</strong> и поместите в соответствуещее место в редакторе."
983
 
984
  #: views/view-about.php:14
985
  #, php-format
986
+ #@ wp-table-reloaded
987
  msgid "You can also select the desired table from a list (after clicking the button &quot;%s&quot; in the editor toolbar) and the corresponding shortcode will be added for you."
988
  msgstr "Вы так же можете выбрать желаемую таблицу из списка (для этого нужно нажать кнопку &quot;%s&quot; на панели инструментов редактора) и соответствующий код будет добавлен."
989
 
990
  #: views/view-about.php:14
991
+ #@ wp-table-reloaded
992
  msgid "Tables can be styled by changing and adding CSS commands."
993
  msgstr "Внешний вид таблицы может быть изменен с помощью добавления и изменения CSS директив."
994
 
995
  #: views/view-about.php:14
996
+ #@ wp-table-reloaded
997
  msgid "The plugin ships with default CSS Stylesheets, which can be customized with own code or replaced with other Stylesheets."
998
  msgstr "Плагин предоставляется с листом стилей по умолчанию, который может быть дополнен вашим собственным кодом или заменен на другой лист стилей."
999
 
1000
  #: views/view-about.php:14
1001
+ #@ wp-table-reloaded
1002
  msgid "For this, each table is given certain CSS classes that can be used as CSS selectors."
1003
  msgstr "Для этого каждая таблица снабжена своими классами в листе стилей, которые могут быть использованны как селекторы стилей."
1004
 
1005
  #: views/view-about.php:14
1006
  #, php-format
1007
+ #@ wp-table-reloaded
1008
  msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
1009
  msgstr "Списки селекторов и примеры стилей вы можете найти в <a href=\"%s\">документации</a>."
1010
 
1011
+ #: views/view-about.php:19
1012
+ #@ wp-table-reloaded
1013
  msgid "More Information and Documentation"
1014
  msgstr "Информация и документация."
1015
 
1016
+ #: views/view-about.php:26
1017
+ #@ wp-table-reloaded
1018
  msgid "Help and Support"
1019
+ msgstr "Помощь и поддержка"
1020
 
1021
+ #: views/view-about.php:28
1022
  #, php-format
1023
+ #@ wp-table-reloaded
1024
  msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
1025
  msgstr "Если вы не нашли ответ на свой вопрос, пожалуйста, <a href=\"%s\">создайте новую тему</a> на форуме поддержки WordPress с ключевым словом &quot;wp-table-reloaded&quot;."
1026
 
1027
+ #: views/view-about.php:33
1028
+ #@ wp-table-reloaded
1029
  msgid "Author and License"
1030
  msgstr "Автор и лицензия"
1031
 
1032
+ #: views/view-about.php:35
1033
  #, php-format
1034
+ #@ wp-table-reloaded
1035
  msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
1036
  msgstr "Плагин написал <a href=\"%s\">Tobias B&auml;thge</a>"
1037
 
1038
+ #: views/view-about.php:35
1039
+ #@ wp-table-reloaded
1040
  msgid "It is licensed as Free Software under GPL 2."
1041
  msgstr "Программа распространяется по лицензии GPL 2."
1042
 
1043
+ #: views/view-about.php:35
1044
  #, php-format
1045
+ #@ wp-table-reloaded
1046
  msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
1047
  msgstr "Пожалуйста дайте оценку плагину в <a href=\"%s\"> директории плагинов WordPress</a>."
1048
 
1049
+ #: views/view-about.php:35
1050
+ #@ wp-table-reloaded
1051
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
1052
  msgstr "Пожертвования и высокие рейтинги помогают дальнейшему развитию плагина и его поддержке. Приветствуется любое пожертвование! Спасибо!"
1053
 
1054
+ #: views/view-about.php:40
1055
+ #@ wp-table-reloaded
1056
  msgid "Credits and Thanks"
1057
  msgstr "Благодарность"
1058
 
1059
+ #: views/view-about.php:43
1060
+ #@ wp-table-reloaded
1061
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
1062
  msgstr "Спасибо за то, что обратились на <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> для того, чтобы получить wp-Table плагин,"
1063
 
1064
+ #: views/view-about.php:44
1065
+ #@ wp-table-reloaded
1066
  msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
1067
  msgstr "Allan Jardine за плагином <a href=\"http://www.datatables.net/\">DataTables jQuery </a>,"
1068
 
1069
+ #: views/view-about.php:45
1070
+ #@ wp-table-reloaded
1071
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
1072
  msgstr "Christian Bach за плагином <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery</a>,"
1073
 
1074
+ #: views/view-about.php:46
1075
+ #@ wp-table-reloaded
1076
  msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
1077
  msgstr "Soerenu Kringsovi за его расширение <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
1078
 
1079
+ #: views/view-about.php:47
1080
+ #@ wp-table-reloaded
1081
  msgid "the submitters of translations:"
1082
  msgstr "переводчикам:"
1083
 
1084
+ #: views/view-about.php:82
1085
  #, php-format
1086
+ #@ wp-table-reloaded
1087
  msgid "%s (thanks to %s)"
1088
  msgstr "%s (благодаря %s)"
1089
 
1090
+ #: views/view-about.php:85
1091
+ #@ wp-table-reloaded
1092
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
1093
  msgstr "и всем спонсорам, разработчикам, обозревателям и тем кто использует плагин!"
1094
 
1095
+ #: views/view-about.php:91
1096
+ #@ wp-table-reloaded
1097
  msgid "Debug and Version Information"
1098
  msgstr "Отладка и информация о версиях"
1099
 
1100
+ #: views/view-about.php:91
1101
  #: views/view-edit.php:15
1102
  #: views/view-edit.php:51
1103
  #: views/view-edit.php:104
1104
  #: views/view-edit.php:262
1105
+ #: views/view-edit.php:361
1106
+ #: views/view-edit.php:422
1107
  #: views/view-options.php:19
1108
  #: views/view-options.php:70
1109
+ #: views/view-options.php:91
1110
+ #: views/view-options.php:185
1111
+ #: views/view-options.php:196
1112
+ #@ wp-table-reloaded
1113
  msgctxt "expand"
1114
  msgid "Hide"
1115
+ msgstr "Свернуть"
1116
 
1117
+ #: views/view-about.php:91
1118
  #: views/view-edit.php:15
1119
  #: views/view-edit.php:51
1120
  #: views/view-edit.php:104
1121
  #: views/view-edit.php:262
1122
+ #: views/view-edit.php:361
1123
+ #: views/view-edit.php:422
1124
  #: views/view-options.php:19
1125
  #: views/view-options.php:70
1126
+ #: views/view-options.php:91
1127
+ #: views/view-options.php:185
1128
+ #: views/view-options.php:196
1129
+ #@ wp-table-reloaded
1130
  msgid "Expand"
1131
+ msgstr "Раскрыть"
1132
 
1133
+ #: views/view-about.php:94
1134
+ #@ wp-table-reloaded
1135
  msgid "You are using the following versions of the software."
1136
+ msgstr "Вы используете следующую версию программы."
1137
 
1138
+ #: views/view-about.php:94
1139
+ #@ wp-table-reloaded
1140
  msgid "Please provide this information in bug reports."
1141
  msgstr "Предоставьте эту информацию как отчет об ошибке."
1142
 
1143
+ #: views/view-about.php:97
1144
+ #@ wp-table-reloaded
1145
  msgid "Plugin installed"
1146
  msgstr "Плагин установлен."
1147
 
1148
  #: views/view-add.php:4
1149
+ #@ wp-table-reloaded
1150
  msgid "To add a new table, enter its name, a description (optional) and the number of rows and columns."
1151
+ msgstr "Для того, чтобы добавить новую таблицу, введите её имя, описание (опционально) и укажите количество рядов и колонок."
1152
 
1153
  #: views/view-add.php:4
1154
+ #@ wp-table-reloaded
1155
  msgid "You may also add, insert or delete rows and columns later."
1156
  msgstr "Вы можете добавить или удалить ряды и колонки позже."
1157
 
1160
  #: views/view-ajax_list.php:22
1161
  #: views/view-edit.php:23
1162
  #: views/view-edit.php:283
1163
+ #: views/view-import.php:100
1164
+ #: views/view-import.php:109
1165
  #: views/view-list.php:15
1166
  #: views/view-list.php:25
1167
+ #@ wp-table-reloaded
1168
  msgid "Table Name"
1169
+ msgstr "Название таблицы"
1170
 
1171
  #: views/view-add.php:14
1172
+ #@ wp-table-reloaded
1173
  msgid "Enter Table Name"
1174
  msgstr "Укажите имя таблицы"
1175
 
1177
  #: views/view-ajax_list.php:15
1178
  #: views/view-ajax_list.php:23
1179
  #: views/view-edit.php:27
1180
+ #: views/view-import.php:101
1181
+ #: views/view-import.php:110
1182
  #: views/view-list.php:16
1183
  #: views/view-list.php:26
1184
+ #@ wp-table-reloaded
1185
  msgid "Description"
1186
  msgstr "Описание"
1187
 
1188
  #: views/view-add.php:18
1189
+ #@ wp-table-reloaded
1190
  msgid "Enter Description"
1191
  msgstr "Введите описание"
1192
 
1193
  #: views/view-add.php:21
1194
+ #@ wp-table-reloaded
1195
  msgid "Number of Rows"
1196
  msgstr "Количество рядов"
1197
 
1198
  #: views/view-add.php:25
1199
+ #@ wp-table-reloaded
1200
  msgid "Number of Columns"
1201
  msgstr "Количество колонок"
1202
 
1203
  #: views/view-add.php:32
1204
+ #@ wp-table-reloaded
1205
  msgid "Add Table"
1206
  msgstr "Добавить таблицу"
1207
 
1208
  #: views/view-ajax_list.php:3
1209
  #: views/view-list.php:2
1210
+ #@ wp-table-reloaded
1211
  msgid "This is a list of all available tables."
1212
  msgstr "Список всех доступных таблиц."
1213
 
1214
  #: views/view-ajax_list.php:3
1215
+ #@ wp-table-reloaded
1216
  msgid "You may insert a table into a post or page here."
1217
  msgstr "Здесь вы можете добавить таблицу в сообщение или на страницу."
1218
 
1219
  #: views/view-ajax_list.php:4
1220
  #, php-format
1221
+ #@ wp-table-reloaded
1222
  msgid "Click the &quot;%s&quot; link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
1223
  msgstr "Нажмите на ссылку &quot;%s&quot; после желаемой таблицы и соответствующий код будет добавлен в редактор (<strong>[table id=&lt;ID&gt; /]</strong>)."
1224
 
1225
  #: views/view-ajax_list.php:4
1226
  #: views/view-ajax_list.php:44
1227
+ #@ wp-table-reloaded
1228
  msgid "Insert"
1229
  msgstr "Поместить"
1230
 
1231
  #: views/view-ajax_list.php:13
1232
  #: views/view-ajax_list.php:21
1233
+ #: views/view-import.php:99
1234
+ #: views/view-import.php:108
1235
  #: views/view-list.php:13
1236
  #: views/view-list.php:23
1237
+ #@ wp-table-reloaded
1238
  msgid "ID"
1239
  msgstr "ID"
1240
 
1241
  #: views/view-ajax_list.php:16
1242
  #: views/view-ajax_list.php:24
1243
+ #: views/view-edit.php:434
1244
+ #: views/view-import.php:102
1245
+ #: views/view-import.php:111
1246
+ #@ wp-table-reloaded
1247
  msgid "Action"
1248
  msgstr "Действие"
1249
 
1250
  #: views/view-ajax_preview.php:3
1251
+ #@ wp-table-reloaded
1252
  msgid "This is a preview of your table."
1253
  msgstr "Предварительный просмотр вашей таблицы."
1254
 
1255
  #: views/view-ajax_preview.php:4
1256
+ #@ wp-table-reloaded
1257
  msgid "Because of CSS styling, the table might look different on your page!"
1258
  msgstr "Благодаря листу стилей, внешний вид таблицы на вашей странице может отличаться."
1259
 
1260
  #: views/view-ajax_preview.php:4
1261
+ #@ wp-table-reloaded
1262
  msgid "The JavaScript libraries are also not available in this preview."
1263
  msgstr "JavaScript библиотеки также не доступны для предварительного просмотра."
1264
 
1265
  #: views/view-edit.php:8
1266
+ #@ wp-table-reloaded
1267
  msgid "On this page, you can edit the content of the table."
1268
  msgstr "На этой странице вы можете редактировать содержимое таблицы."
1269
 
1270
  #: views/view-edit.php:8
1271
+ #@ wp-table-reloaded
1272
  msgid "It is also possible to change the table structure by inserting, deleting, moving, and swapping columns and rows."
1273
  msgstr "Также, возможно изменять структуру таблицы путем добавления, изъятия и перемещения рядов и колонок."
1274
 
1275
  #: views/view-edit.php:15
1276
+ #@ wp-table-reloaded
1277
  msgid "Table Information"
1278
  msgstr "Информация о таблице"
1279
 
1280
  #: views/view-edit.php:19
1281
+ #@ wp-table-reloaded
1282
  msgid "Table ID"
1283
  msgstr "ID таблицы"
1284
 
1285
  #: views/view-edit.php:32
1286
  #: views/view-list.php:17
1287
  #: views/view-list.php:27
1288
+ #@ wp-table-reloaded
1289
  msgid "Last Modified"
1290
  msgstr "Дата последнего изменения"
1291
 
1292
  #: views/view-edit.php:33
1293
  #: views/view-list.php:44
1294
+ #@ wp-table-reloaded
1295
  msgid "by"
1296
  msgstr "пользователем"
1297
 
1298
  #: views/view-edit.php:42
1299
  #: views/view-edit.php:254
1300
+ #: views/view-edit.php:414
1301
+ #: views/view-edit.php:465
1302
+ #@ wp-table-reloaded
1303
  msgid "Save and go back"
1304
  msgstr "Сохранить и вернуться"
1305
 
1306
  #: views/view-edit.php:45
1307
  #: views/view-edit.php:257
1308
+ #: views/view-edit.php:417
1309
+ #: views/view-edit.php:468
1310
  #: views/view-options.php:65
1311
+ #: views/view-options.php:172
1312
+ #@ wp-table-reloaded
1313
  msgid "Cancel"
1314
  msgstr "Отмена"
1315
 
1316
  #: views/view-edit.php:51
1317
+ #@ wp-table-reloaded
1318
  msgid "Table Contents"
1319
  msgstr "Содержимое таблицы"
1320
 
1321
  #: views/view-edit.php:104
1322
+ #@ wp-table-reloaded
1323
  msgid "Data Manipulation"
1324
  msgstr "Манипуляция данными"
1325
 
1326
  #: views/view-edit.php:114
1327
  #: views/view-options.php:55
1328
+ #@ wp-table-reloaded
1329
  msgid "Insert Link"
1330
  msgstr "Поместить ссылку"
1331
 
1332
  #: views/view-edit.php:115
1333
+ #@ wp-table-reloaded
1334
  msgid "Insert Image"
1335
  msgstr "Поместить изображение"
1336
 
1337
  #: views/view-edit.php:124
1338
+ #@ wp-table-reloaded
1339
  msgid "ascending"
1340
  msgstr "по возрастанию"
1341
 
1342
  #: views/view-edit.php:125
1343
+ #@ wp-table-reloaded
1344
  msgid "descending"
1345
  msgstr "по убыванию"
1346
 
1347
  #: views/view-edit.php:128
1348
  #, php-format
1349
+ #@ wp-table-reloaded
1350
  msgid "Sort table by column %s in %s order"
1351
  msgstr "Отсортировать таблицы по столбцу %s в %s порядке"
1352
 
1353
  #: views/view-edit.php:130
1354
+ #@ wp-table-reloaded
1355
  msgid "Sort"
1356
  msgstr "Отсортировать"
1357
 
1358
  #: views/view-edit.php:135
1359
  #: views/view-edit.php:139
1360
+ #@ wp-table-reloaded
1361
  msgctxt "item"
1362
  msgid "Hide"
1363
  msgstr "Скрыть"
1364
 
1365
  #: views/view-edit.php:136
1366
  #: views/view-edit.php:140
1367
+ #@ wp-table-reloaded
1368
  msgctxt "item"
1369
  msgid "Unhide"
1370
  msgstr "Отобразить"
1371
 
1372
  #: views/view-edit.php:137
1373
  #, php-format
1374
+ #@ wp-table-reloaded
1375
  msgctxt "hide_unhide"
1376
  msgid "Selected rows: %s %s"
1377
  msgstr "Выбрать ряды: %s %s"
1378
 
1379
  #: views/view-edit.php:141
1380
  #, php-format
1381
+ #@ wp-table-reloaded
1382
  msgctxt "hide_unhide"
1383
  msgid "Selected columns: %s %s"
1384
  msgstr "Выбрать колонки: %s %s"
1385
 
1386
  #: views/view-edit.php:144
1387
+ #@ wp-table-reloaded
1388
  msgid "Combine cells in a row:"
1389
  msgstr "Объединить ячейки в ряд:"
1390
 
1391
  #: views/view-edit.php:145
1392
+ #@ wp-table-reloaded
1393
  msgid "Add colspan"
1394
  msgstr "Добавить colspan"
1395
 
1396
  #: views/view-edit.php:148
1397
+ #@ wp-table-reloaded
1398
  msgid "Combine cells in a column:"
1399
  msgstr "Объединить ячейки в столбец:"
1400
 
1401
  #: views/view-edit.php:149
1402
+ #@ wp-table-reloaded
1403
  msgid "Add rowspan"
1404
  msgstr "Добавить rowspan"
1405
 
1406
  #: views/view-edit.php:155
1407
+ #@ wp-table-reloaded
1408
  msgid "Insert row"
1409
  msgstr "Поместить ряд"
1410
 
1411
  #: views/view-edit.php:156
1412
  #: views/view-edit.php:160
1413
  #: views/view-list.php:65
1414
+ #@ wp-table-reloaded
1415
  msgid "Delete"
1416
  msgstr "Удалить"
1417
 
1418
  #: views/view-edit.php:157
1419
  #, php-format
1420
+ #@ wp-table-reloaded
1421
  msgctxt "insert_delete"
1422
  msgid "Selected rows: %s %s"
1423
  msgstr "Выбрать ряды: %s %s"
1424
 
1425
  #: views/view-edit.php:159
1426
+ #@ wp-table-reloaded
1427
  msgid "Insert column"
1428
  msgstr "Поместить столбец"
1429
 
1430
  #: views/view-edit.php:161
1431
  #, php-format
1432
+ #@ wp-table-reloaded
1433
  msgctxt "insert_delete"
1434
  msgid "Selected columns: %s %s"
1435
  msgstr "Выбрать столбцы: %s %s"
1436
 
1437
  #: views/view-edit.php:171
1438
  #, php-format
1439
+ #@ wp-table-reloaded
1440
  msgid "Add %s row(s)"
1441
  msgstr "Добавить %s ряды"
1442
 
1443
  #: views/view-edit.php:172
1444
  #: views/view-edit.php:175
1445
+ #: views/view-edit.php:459
1446
+ #@ wp-table-reloaded
1447
  msgid "Add"
1448
  msgstr "Добавить"
1449
 
1450
  #: views/view-edit.php:174
1451
  #, php-format
1452
+ #@ wp-table-reloaded
1453
  msgid "Add %s column(s)"
1454
  msgstr "Добавить %s столбцы"
1455
 
1456
  #: views/view-edit.php:189
1457
  #, php-format
1458
+ #@ wp-table-reloaded
1459
  msgid "Swap rows %s and %s"
1460
  msgstr "Поменять местами %s и %s"
1461
 
1462
  #: views/view-edit.php:191
1463
  #: views/view-edit.php:206
1464
+ #@ wp-table-reloaded
1465
  msgid "Swap"
1466
  msgstr "Поменять местами"
1467
 
1468
  #: views/view-edit.php:204
1469
  #, php-format
1470
+ #@ wp-table-reloaded
1471
  msgid "Swap columns %s and %s"
1472
  msgstr "Поменять местами столбцы %s и %s"
1473
 
1474
  #: views/view-edit.php:219
1475
  #: views/view-edit.php:239
1476
+ #@ wp-table-reloaded
1477
  msgid "before"
1478
  msgstr "перед"
1479
 
1480
  #: views/view-edit.php:220
1481
  #: views/view-edit.php:240
1482
+ #@ wp-table-reloaded
1483
  msgid "after"
1484
  msgstr "после"
1485
 
1486
  #: views/view-edit.php:223
1487
  #, php-format
1488
+ #@ wp-table-reloaded
1489
  msgid "Move row %s %s row %s"
1490
  msgstr "Подвинуть ряд %s %s ряд %s"
1491
 
1492
  #: views/view-edit.php:225
1493
  #: views/view-edit.php:245
1494
+ #@ wp-table-reloaded
1495
  msgid "Move"
1496
  msgstr "Подвинуть"
1497
 
1498
  #: views/view-edit.php:243
1499
  #, php-format
1500
+ #@ wp-table-reloaded
1501
  msgid "Move column %s %s column %s"
1502
  msgstr "Подвинуть столбец %s %s столбец %s"
1503
 
1504
  #: views/view-edit.php:262
1505
+ #@ wp-table-reloaded
1506
  msgid "Table Styling Options"
1507
  msgstr "Настройки стиля таблицы"
1508
 
1509
  #: views/view-edit.php:264
1510
+ #@ wp-table-reloaded
1511
  msgid "These settings will only be used for this table."
1512
  msgstr "Эти установки будут использованны только для этой таблицы."
1513
 
1514
  #: views/view-edit.php:267
1515
+ #@ wp-table-reloaded
1516
  msgid "Alternating row colors"
1517
  msgstr "Альтернативные цвета рядов"
1518
 
1519
  #: views/view-edit.php:268
1520
+ #@ wp-table-reloaded
1521
  msgid "Every second row has an alternating background color."
1522
  msgstr "Каждый второй ряд будет иметь альтернативный цвет фона."
1523
 
1524
  #: views/view-edit.php:271
1525
+ #@ wp-table-reloaded
1526
  msgid "Row Highlighting"
1527
  msgstr "Подсветка ряда"
1528
 
1529
  #: views/view-edit.php:272
1530
+ #@ wp-table-reloaded
1531
  msgid "Highlight a row by changing its background color while the mouse cursor hovers above it."
1532
  msgstr "Ряд подсвечивается путем изменения цвета фона, когда на него наводится курсор мыши."
1533
 
1534
  #: views/view-edit.php:275
1535
+ #@ wp-table-reloaded
1536
  msgid "Table head"
1537
  msgstr "Заголовок таблицы"
1538
 
1539
  #: views/view-edit.php:276
1540
+ #@ wp-table-reloaded
1541
  msgid "The first row of your table is the table head (HTML tags &lt;thead&gt; and &lt;th&gt;)."
1542
+ msgstr "Первый ряд вашей таблицы - это её заголовок (ему присвоен HTML tag &lt;th&gt;)"
1543
 
1544
  #: views/view-edit.php:279
1545
+ #@ wp-table-reloaded
1546
  msgid "Table footer"
1547
  msgstr "Футер таблицы"
1548
 
1549
  #: views/view-edit.php:280
1550
+ #@ wp-table-reloaded
1551
  msgid "The last row of your table is the table footer (HTML tags &lt;tfoot&gt; and &lt;th&gt;)."
1552
  msgstr "Последний ряд вашей таблицы является её футером."
1553
 
1554
  #: views/view-edit.php:289
1555
  #: views/view-edit.php:306
1556
+ #@ wp-table-reloaded
1557
  msgid "above"
1558
  msgstr "над"
1559
 
1560
  #: views/view-edit.php:291
1561
  #: views/view-edit.php:308
1562
+ #@ wp-table-reloaded
1563
  msgid "below"
1564
  msgstr "под"
1565
 
1566
  #: views/view-edit.php:294
1567
  #, php-format
1568
+ #@ wp-table-reloaded
1569
  msgid "The Table Name shall be written %s the table (HTML tag &lt;h2&gt;)."
1570
+ msgstr "Название таблицы будет написано %s таблицей (HTML-тег &lt;h2&gt;)."
1571
 
1572
  #: views/view-edit.php:300
1573
+ #@ wp-table-reloaded
1574
  msgid "Table Description"
1575
  msgstr "Описание таблицы"
1576
 
1577
  #: views/view-edit.php:311
1578
  #, php-format
1579
+ #@ wp-table-reloaded
1580
  msgid "The Table Description shall be written %s the table."
1581
+ msgstr "Описание таблицы будет написано %s таблицей."
1582
 
1583
+ #: views/view-edit.php:325
1584
+ #@ wp-table-reloaded
1585
  msgid "Use JavaScript library"
1586
  msgstr "Использовать JavaScript библиотеку "
1587
 
1588
+ #: views/view-edit.php:331
1589
+ #: views/view-edit.php:335
1590
+ #: views/view-edit.php:347
1591
+ #@ wp-table-reloaded
1592
  msgid "You can change further settings for this library below."
1593
  msgstr "Вы можете изменить настройки этой библиотеки ниже."
1594
 
1595
+ #: views/view-edit.php:339
1596
+ #: views/view-edit.php:343
1597
+ #@ wp-table-reloaded
1598
  msgid "The table will then be sortable by the visitor."
1599
  msgstr "Сортировка этой таблицы будет доступна пользователю."
1600
 
1601
+ #: views/view-edit.php:350
1602
  #, php-format
1603
+ #@ wp-table-reloaded
1604
  msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
1605
  msgstr "Да, использовать &quot;%s&quot; JavaScript библиотеку для этой таблицы."
1606
 
1607
+ #: views/view-edit.php:350
1608
  #, php-format
1609
+ #@ wp-table-reloaded
1610
  msgid "You must enable the use of a JavaScript library on the &quot;%s&quot; screen first."
1611
  msgstr "Вы должны включить поддержку JavaScript библиотеки на &quot;%s&quot;."
1612
 
1613
+ #: views/view-edit.php:361
1614
+ #@ wp-table-reloaded
1615
  msgid "DataTables JavaScript Features"
1616
  msgstr "JavaScript возможности базы данных."
1617
 
1618
+ #: views/view-edit.php:363
1619
+ #@ wp-table-reloaded
1620
  msgid "You can enable certain features for the DataTables JavaScript library here."
1621
  msgstr "Здесь вы можете включить некоторые возможности для базы данных JavaScript."
1622
 
1623
+ #: views/view-edit.php:363
1624
+ #@ wp-table-reloaded
1625
  msgid "More information on these features can be found on the <a href=\"http://www.datatables.net/\">DataTables website</a>."
1626
  msgstr "За дополнительной информацией обращайтесь на <a href=\"http://www.datatables.net/\">сайт DataTables</a>."
1627
 
1628
+ #: views/view-edit.php:365
1629
  #, php-format
1630
+ #@ wp-table-reloaded
1631
  msgid "You can currently not change these options, because you have not enabled the &quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript library on the &quot;%s&quot; screen."
1632
  msgstr "В данный момент эти опции изменить нельзя, потому что вы не активировали &quot;DataTables&quot; или &quot;DataTables+TableTools&quot; JavaScript библиотеку на &quot;%s&quot;."
1633
 
1634
+ #: views/view-edit.php:365
1635
+ #@ wp-table-reloaded
1636
  msgid "It is not possible to use these features with the &quot;Tablesorter&quot; or &quot;Tablesorter Extended&quot; libraries."
1637
  msgstr "Эти функции нельзя использовать в сочетании с &quot;Tablesorter&quot; или &quot;Tablesorter Extended&quot; библиотеками."
1638
 
1639
+ #: views/view-edit.php:369
1640
+ #@ wp-table-reloaded
1641
  msgid "Sorting"
1642
  msgstr "Сортировка"
1643
 
1644
+ #: views/view-edit.php:370
1645
+ #@ wp-table-reloaded
1646
  msgid "Yes, enable sorting of table data by the visitor."
1647
  msgstr "Да, разрешить пользователям сортировать таблицу."
1648
 
1649
+ #: views/view-edit.php:373
1650
+ #@ wp-table-reloaded
1651
  msgid "Pagination"
1652
  msgstr "Нумерация страниц"
1653
 
1654
+ #: views/view-edit.php:378
1655
+ #@ wp-table-reloaded
1656
  msgid "Yes, enable pagination (showing only a certain number of rows) of the table by the visitor."
1657
  msgstr "Включит разбивку таблицы на страницы (отображать только определенное число строк)."
1658
 
1659
+ #: views/view-edit.php:380
1660
  #, php-format
1661
+ #@ wp-table-reloaded
1662
  msgid "Show %1$s rows of the table per page."
1663
  msgstr "Отображать %1$s строк таблицы на страницу."
1664
 
1665
+ #: views/view-edit.php:386
1666
+ #@ wp-table-reloaded
1667
  msgid "Length Change"
1668
  msgstr "Изменить длинну"
1669
 
1670
+ #: views/view-edit.php:387
1671
+ #@ wp-table-reloaded
1672
  msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
1673
  msgstr "Разрешить пользователю менять количество рядов при использовании нумерации страниц."
1674
 
1675
+ #: views/view-edit.php:391
1676
+ #@ wp-table-reloaded
 
 
 
1677
  msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
1678
  msgstr "Разрешить пользователю фильтровать и искать таблицу. Отображены только ряды с искомым словом."
1679
 
1680
+ #: views/view-edit.php:394
1681
+ #@ wp-table-reloaded
1682
  msgid "Info Bar"
1683
  msgstr "Панель информации"
1684
 
1685
+ #: views/view-edit.php:395
1686
+ #@ wp-table-reloaded
1687
  msgid "Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering."
1688
  msgstr "Да, отображать информацию таблицы. Здесь отображена информация и статистика о текущих видимых данных, включая фильтрование."
1689
 
1690
+ #: views/view-edit.php:398
1691
+ #@ wp-table-reloaded
1692
  msgid "TableTools"
1693
  msgstr "Инструменты таблицы"
1694
 
1695
+ #: views/view-edit.php:400
1696
+ #@ wp-table-reloaded
1697
  msgid "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save to XLS, Print Table) for this table."
1698
  msgstr "Да, активаровать функцию \"инструменты таблицы\" ( \"скопировать в буфер обмена\", \"сохранить в CSV\", \"сохранить в XLS\", \"напечатать таблицу\") для этой таблицы."
1699
 
1700
+ #: views/view-edit.php:401
1701
+ #@ wp-table-reloaded
1702
  msgid "This option can only be used with the &quot;DataTables+TableTools&quot; JavaScript library."
1703
  msgstr "Эту опцию возможно использовать только с &quot;DataTables+TableTools&quot; JavaScript библиотекой."
1704
 
1705
+ #: views/view-edit.php:405
1706
+ #@ wp-table-reloaded
1707
  msgid "Custom Commands"
1708
  msgstr "Пользовательские команды"
1709
 
1710
+ #: views/view-edit.php:406
1711
+ #@ wp-table-reloaded
1712
  msgid "Enter additional DataTables JavaScript parameters that will be included with the script call here."
1713
  msgstr "Ввести дополнительные DataTables JavaScript параметры которые будут добавленны к вызову этого скрипта."
1714
 
1715
+ #: views/view-edit.php:406
1716
+ #@ wp-table-reloaded
1717
  msgid "For advanced use only. Read the <a href=\"http://www.datatables.net/\">DataTables documentation</a> before."
1718
  msgstr "Для опытных пользователей. Сначала прочитайте <a href=\"http://www.datatables.net/\">DataTables documentation</a>."
1719
 
1720
+ #: views/view-edit.php:422
1721
+ #@ wp-table-reloaded
1722
  msgid "Custom Data Fields"
1723
+ msgstr "Пользовательские поля"
1724
 
1725
+ #: views/view-edit.php:424
1726
+ #@ wp-table-reloaded
1727
  msgid "Custom Data Fields can be used to add extra metadata to a table."
1728
+ msgstr "Пользовательские поля можно использовать для добавления дополнительных meta-данных в таблицу."
1729
 
1730
+ #: views/view-edit.php:424
1731
+ #@ wp-table-reloaded
1732
  msgid "For example, this could be information about the source or the creator of the data."
1733
  msgstr "Например, это может быть информация об источнике или создателе информации. "
1734
 
1735
+ #: views/view-edit.php:426
1736
  #, php-format
1737
+ #@ wp-table-reloaded
1738
  msgid "You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1739
  msgstr "Вы можете показывать это информацию так же как и таблицы, с помощью использования кода <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1740
 
1741
+ #: views/view-edit.php:432
1742
+ #@ wp-table-reloaded
1743
  msgid "Field Name"
1744
  msgstr "Имя поля"
1745
 
1746
+ #: views/view-edit.php:433
1747
+ #@ wp-table-reloaded
1748
  msgid "Value"
1749
  msgstr "Значение"
1750
 
1751
+ #: views/view-edit.php:447
1752
+ #@ wp-table-reloaded
1753
  msgid "Delete Field"
1754
  msgstr "Удалить поле"
1755
 
1756
+ #: views/view-edit.php:449
1757
+ #@ wp-table-reloaded
1758
  msgid "View shortcode"
1759
  msgstr "Посмотреть код"
1760
 
1761
+ #: views/view-edit.php:458
1762
+ #@ wp-table-reloaded
1763
  msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
1764
+ msgstr "Чтобы добавить новое пользовательское поле, введите его имя (только прописными латинскими буквами, числами, знак подчеркивания (_) или дефиса (-))."
1765
 
1766
+ #: views/view-edit.php:459
1767
+ #@ wp-table-reloaded
1768
  msgid "Custom Data Field Name"
1769
+ msgstr "Имя пользовательского поля "
1770
 
1771
+ #: views/view-edit.php:473
1772
+ #@ wp-table-reloaded
1773
  msgid "Other actions"
1774
  msgstr "Другие действия"
1775
 
1776
+ #: views/view-edit.php:476
1777
+ #@ wp-table-reloaded
1778
  msgid "Delete Table"
1779
  msgstr "Удалить таблицу"
1780
 
1781
+ #: views/view-edit.php:477
1782
+ #: views/view-export.php:60
1783
+ #@ wp-table-reloaded
1784
  msgid "Export Table"
1785
  msgstr "Экспортировать таблицу"
1786
 
1787
  #: views/view-export.php:10
1788
+ #@ wp-table-reloaded
1789
  msgid "It is recommended to export and backup the data of important tables regularly."
1790
  msgstr "Рекомендуется регулярно сохранять резервную копию."
1791
 
1792
  #: views/view-export.php:10
1793
+ #@ wp-table-reloaded
1794
  msgid "Select the table, the desired export format and (for CSV only) a delimiter."
1795
+ msgstr "Выберите таблицу, формат экспорта и, если это формат CSV, разделитель."
1796
 
1797
  #: views/view-export.php:10
1798
+ #@ wp-table-reloaded
1799
  msgid "You may choose to download the export file. Otherwise it will be shown on this page."
1800
  msgstr "Вы можете скачать экспорт-файл, иначе он будет отображен на этой странице."
1801
 
1802
  #: views/view-export.php:10
1803
+ #@ wp-table-reloaded
1804
  msgid "Be aware that only the table data, but no options or settings are exported."
1805
+ msgstr "Знайте, что экспортируются только данные таблицы, а не настройки и установки."
1806
 
1807
  #: views/view-export.php:10
1808
  #, php-format
1809
+ #@ wp-table-reloaded
1810
  msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
1811
  msgstr "Для того, чтобы сохранить таблицы и установки используйте &quot;%s&quot; кнопку в &quot;%s&quot;."
1812
 
1813
  #: views/view-export.php:10
1814
+ #: views/view-options.php:190
1815
+ #@ wp-table-reloaded
1816
  msgid "Create and Download Dump File"
1817
  msgstr "Создать и загрузить Dump File"
1818
 
1819
  #: views/view-export.php:18
1820
+ #@ wp-table-reloaded
1821
  msgid "Select Table to Export"
1822
  msgstr "Выбрать таблицу для экспорта"
1823
 
1824
+ #: views/view-export.php:34
1825
+ #@ wp-table-reloaded
1826
  msgid "Select Export Format"
1827
  msgstr "Выбрать формат экспорта"
1828
 
1829
+ #: views/view-export.php:44
1830
+ #@ wp-table-reloaded
1831
  msgid "Select Delimiter to use"
1832
+ msgstr "Использовать разделитель"
1833
 
1834
+ #: views/view-export.php:51
1835
+ #@ wp-table-reloaded
1836
  msgid "Only needed for CSV export."
1837
  msgstr "Нужно только для CSV экспорта."
1838
 
1839
+ #: views/view-export.php:54
1840
+ #@ wp-table-reloaded
1841
  msgid "Download file"
1842
  msgstr "Загрузить файл"
1843
 
1844
+ #: views/view-export.php:55
1845
+ #@ wp-table-reloaded
1846
  msgid "Yes, I want to download the export file."
1847
+ msgstr "Да, я хочу загрузить файл с экспортированными данными."
1848
 
1849
+ #: views/view-export.php:72
1850
+ #: views/view-list.php:87
1851
  #, php-format
1852
+ #@ wp-table-reloaded
1853
  msgid "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to get started!"
1854
  msgstr "Для того, чтобы начать, вам нужно <a href=\"%s\">добавить</a> или <a href=\"%s\">импортировать</a> таблицу!"
1855
 
1856
  #: views/view-import.php:3
1857
+ #@ wp-table-reloaded
1858
  msgid "WP-Table Reloaded can import tables from existing data."
1859
  msgstr "WP-Table Reloaded может импортировать таблицы из уже существующих данных."
1860
 
1861
  #: views/view-import.php:3
1862
+ #@ wp-table-reloaded
1863
  msgid "This may be a CSV, XML or HTML file, each with a certain structure."
1864
+ msgstr "Это может быть файл CSV, XML или HTM , каждый с определенной структурой."
1865
 
1866
  #: views/view-import.php:3
1867
+ #@ wp-table-reloaded
1868
  msgid "To import an existing table, please select its format and the source for the import."
1869
  msgstr "Для того, чтобы импортировать уже существующую таблицу, выберите формат и источник импортирования."
1870
 
1871
  #: views/view-import.php:3
1872
+ #@ wp-table-reloaded
1873
  msgid "You can also decide, if you want to import it as a new table or replace an existing table."
1874
  msgstr "Вы можете импортировать таблицу как новую или заменить уже существующую."
1875
 
1876
  #: views/view-import.php:10
1877
+ #@ wp-table-reloaded
1878
  msgid "Select Import Format"
1879
+ msgstr "Укажите формат импорта"
1880
 
1881
  #: views/view-import.php:21
1882
+ #@ wp-table-reloaded
1883
  msgid "Add or Replace Table?"
1884
  msgstr "Добавить или заменить таблицу?"
1885
 
1886
  #: views/view-import.php:23
1887
+ #@ wp-table-reloaded
1888
  msgid "Add as new Table"
1889
  msgstr "Добавить таблицу как новую"
1890
 
1891
  #: views/view-import.php:24
1892
+ #@ wp-table-reloaded
1893
  msgid "Replace existing Table"
1894
  msgstr "Заменить существующую таблицу"
1895
 
1896
  #: views/view-import.php:28
1897
+ #@ wp-table-reloaded
1898
  msgid "Select existing Table to Replace"
1899
  msgstr "Выбрать существующую таблицу для замены"
1900
 
1901
+ #: views/view-import.php:45
1902
+ #@ wp-table-reloaded
1903
  msgid "Select source for Import"
1904
+ msgstr "Укажите источник импорта"
1905
 
1906
+ #: views/view-import.php:47
1907
+ #@ wp-table-reloaded
1908
  msgid "File upload"
1909
  msgstr "Загрузка файла"
1910
 
1911
+ #: views/view-import.php:48
1912
+ #@ wp-table-reloaded
1913
  msgid "URL"
1914
  msgstr "URL адрес"
1915
 
1916
+ #: views/view-import.php:49
1917
+ #@ wp-table-reloaded
1918
  msgid "Manual input"
1919
  msgstr "Ручное добавление"
1920
 
1921
+ #: views/view-import.php:50
1922
+ #@ wp-table-reloaded
1923
  msgid "File on server"
1924
  msgstr "Файл на сервере"
1925
 
1926
+ #: views/view-import.php:54
1927
+ #@ wp-table-reloaded
1928
  msgid "Select File with Table to Import"
1929
+ msgstr "Выберите файл с таблицей для импорта"
1930
 
1931
+ #: views/view-import.php:58
1932
+ #@ wp-table-reloaded
1933
  msgid "URL to Import Table from"
1934
  msgstr "URL адрес с которого будет импортированна таблица"
1935
 
1936
+ #: views/view-import.php:62
1937
+ #@ wp-table-reloaded
1938
  msgid "Path to file on server"
1939
  msgstr "Путь к файлу на сервере."
1940
 
1941
+ #: views/view-import.php:66
1942
+ #@ wp-table-reloaded
1943
  msgid "Paste data with Table to Import"
1944
  msgstr "Вставьте данные содержащие таблицу, которую будете импортировать."
1945
 
1946
+ #: views/view-import.php:72
1947
+ #@ wp-table-reloaded
1948
  msgid "Import Table"
1949
  msgstr "Импортировать таблицу"
1950
 
1951
+ #: views/view-import.php:86
1952
+ #@ wp-table-reloaded
1953
  msgid "Import from original wp-Table plugin"
1954
  msgstr "Импортировать из оригинального wp-Table плагина."
1955
 
1956
+ #: views/view-import.php:132
1957
+ #@ wp-table-reloaded
1958
  msgid "Import"
1959
  msgstr "Импортировать"
1960
 
1961
+ #: views/view-import.php:140
1962
+ #: views/view-list.php:78
1963
+ #@ wp-table-reloaded
1964
  msgid "Bulk actions:"
1965
  msgstr "Массовые действия:"
1966
 
1967
+ #: views/view-import.php:140
1968
+ #@ wp-table-reloaded
1969
  msgid "Import Tables"
1970
  msgstr "Импортировать таблицы"
1971
 
1972
+ #: views/view-import.php:146
1973
+ #@ wp-table-reloaded
1974
  msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
1975
+ msgstr "wp-Table был установлен, но ни одной таблицы не найдено."
1976
 
1977
  #: views/view-list.php:2
1978
+ #@ wp-table-reloaded
1979
  msgid "You may add, edit, copy, delete or preview tables here."
1980
+ msgstr "Здесь вы можете добавлять, редактировать или просматривать таблицы."
1981
 
1982
  #: views/view-list.php:2
1983
+ #@ wp-table-reloaded
1984
  msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
1985
+ msgstr "Каждая таблица имеет уникальный номер (ID), который нужно указать в этом коде."
1986
 
1987
  #: views/view-list.php:2
1988
  #, php-format
1989
+ #@ wp-table-reloaded
1990
  msgid "You can also click the button &quot;%s&quot; in the editor toolbar to select and insert a table."
1991
  msgstr "Для того, чтобы выбрать и вставить таблицу вы можете так же нажать кнопку &quot;%s&quot; на панели редактирования."
1992
 
1993
  #: views/view-list.php:39
1994
+ #@ wp-table-reloaded
1995
  msgid "(no name)"
1996
  msgstr "(имя не указанно)"
1997
 
1998
  #: views/view-list.php:40
1999
+ #@ wp-table-reloaded
2000
  msgid "(no description)"
2001
  msgstr "(без описания)"
2002
 
2003
  #: views/view-list.php:58
2004
  #, php-format
2005
+ #@ wp-table-reloaded
2006
  msgid "Edit %s"
2007
  msgstr "Редактировать %s"
2008
 
2009
  #: views/view-list.php:62
2010
+ #@ wp-table-reloaded
2011
  msgid "Shortcode"
2012
  msgstr "Код"
2013
 
2014
  #: views/view-list.php:63
2015
+ #@ wp-table-reloaded
2016
  msgid "Copy"
2017
  msgstr "Копировать"
2018
 
2019
  #: views/view-list.php:64
2020
+ #@ wp-table-reloaded
2021
  msgid "Export"
2022
  msgstr "Экспортировать"
2023
 
2024
  #: views/view-list.php:66
2025
  #, php-format
2026
+ #@ wp-table-reloaded
2027
  msgid "Preview of Table %s"
2028
  msgstr "Предварительный просмотр таблицы %s"
2029
 
2030
  #: views/view-list.php:67
2031
+ #@ wp-table-reloaded
2032
  msgid "Preview"
2033
  msgstr "Предварительный просмот"
2034
 
2035
+ #: views/view-list.php:78
2036
+ #@ wp-table-reloaded
2037
  msgid "Copy Tables"
2038
  msgstr "Скопировать таблицы"
2039
 
2040
+ #: views/view-list.php:78
2041
+ #@ wp-table-reloaded
2042
  msgid "Delete Tables"
2043
  msgstr "Удалить таблицы"
2044
 
2045
  #: views/view-options.php:3
2046
+ #@ wp-table-reloaded
2047
  msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
2048
  msgstr "WP-Table Reloaded имеет несколько настроек, отвечающих за поведение плагина в различных областях."
2049
 
2050
  #: views/view-options.php:4
2051
+ #@ wp-table-reloaded
2052
  msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
2053
+ msgstr "Настройки темы влияют на отображение таблиц на страницах, в постах и текстовых виджетах."
2054
 
2055
  #: views/view-options.php:4
2056
  #, php-format
2057
+ #@ wp-table-reloaded
2058
  msgid "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; screen."
2059
+ msgstr "Настройки администратора относятся к странице управления плагином (&quot;%s&quot;)."
2060
 
2061
  #: views/view-options.php:4
2062
  #: views/view-options.php:55
2063
  #: views/view-options.php:75
2064
  #: views/view-options.php:79
2065
+ #@ wp-table-reloaded
2066
  msgid "Edit Table"
2067
  msgstr "Редактировать"
2068
 
2069
  #: views/view-options.php:4
2070
+ #@ wp-table-reloaded
2071
  msgid "Administrators have access to further Admin Options."
2072
  msgstr "Администраторы имеют доступ к большему числу настроек."
2073
 
2074
  #: views/view-options.php:19
2075
+ #@ wp-table-reloaded
2076
  msgid "Frontend Options"
2077
  msgstr "Настройки внешнего вида"
2078
 
2079
  #: views/view-options.php:23
2080
+ #@ wp-table-reloaded
2081
  msgid "JavaScript library"
2082
  msgstr "JavaScript библиотека"
2083
 
2084
  #: views/view-options.php:24
2085
+ #@ wp-table-reloaded
2086
  msgid "Yes, enable the use of a JavaScript library."
2087
+ msgstr "Использовать библиотеки JavaScript."
2088
 
2089
  #: views/view-options.php:24
2090
+ #@ wp-table-reloaded
2091
  msgid "WP-Table Reloaded includes three JavaScript libraries that can add useful features, like sorting, pagination, and filtering, to a table."
2092
+ msgstr "WP-Table Reloaded включает три библиотеки JavaScript, с помощью которых вы можете добавить в таблицу сортировку, постраничное отображение и фильтрацию данных."
2093
 
2094
  #: views/view-options.php:28
2095
+ #@ wp-table-reloaded
2096
  msgid "Select the library to use:"
2097
+ msgstr "Выберите библиотеку для использования:"
2098
 
2099
  #: views/view-options.php:29
2100
+ #: views/view-options.php:131
2101
+ #@ wp-table-reloaded
2102
  msgid "recommended"
2103
+ msgstr "желательно"
2104
 
2105
  #: views/view-options.php:33
2106
  #, php-format
2107
+ #@ wp-table-reloaded
2108
  msgid "(You can read more about each library's features on the <a href=\"%s\">plugin's website</a>.)"
2109
+ msgstr "(больше информации о свойствах каждой библиотеки вы можете получить на <a href=\"%s\">сайте плагина</a>.)"
2110
 
2111
  #: views/view-options.php:36
2112
+ #@ wp-table-reloaded
2113
  msgid "Default CSS"
2114
  msgstr "CSS по умолчанию"
2115
 
2116
  #: views/view-options.php:38
2117
+ #@ wp-table-reloaded
2118
  msgid "Yes, include and load the plugin's default CSS Stylesheets. This is highly recommended, if you use one of the JavaScript libraries!"
2119
  msgstr "Использовать CSS по умолчанию. Это рекомендуется в случае использования библиотеки JavaScript."
2120
 
2121
  #: views/view-options.php:42
2122
+ #@ wp-table-reloaded
2123
  msgid "Custom CSS"
2124
  msgstr "Пользовательский CSS"
2125
 
2126
  #: views/view-options.php:44
2127
+ #@ wp-table-reloaded
2128
  msgid "Yes, include and load the following custom CSS commands."
2129
  msgstr "Использовать директивы пользовательского CSS."
2130
 
2131
  #: views/view-options.php:44
2132
+ #@ wp-table-reloaded
2133
  msgid "This should be used to change the table layout and styling."
2134
  msgstr "Используйте это для изменеия внешнего вида и стилей таблицы."
2135
 
2136
  #: views/view-options.php:50
2137
  #, php-format
2138
+ #@ wp-table-reloaded
2139
  msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
2140
+ msgstr "Вы можете посмотреть примеры стилей в <a href=\"%s\">FAQ</a>."
2141
 
2142
  #: views/view-options.php:50
2143
  #, php-format
2144
+ #@ wp-table-reloaded
2145
  msgid "Information on available CSS selectors can be found in the <a href=\"%s\">documentation</a>."
2146
  msgstr "Информацию о доступных CSS директивах можете найти в <a href=\"%s\">документации</a>."
2147
 
2148
  #: views/view-options.php:54
2149
+ #@ wp-table-reloaded
2150
  msgid "Links in new window"
2151
+ msgstr "Открыть ссылку в новом окне"
2152
 
2153
  #: views/view-options.php:55
2154
  #, php-format
2155
+ #@ wp-table-reloaded
2156
  msgid "Yes, open links that are inserted with the &quot;%s&quot; button on the &quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
2157
+ msgstr "Вставить ссылки, которые были помещены с помощью кнопки &quot;%s&quot; на экран &quot;%s&quot; в новом окне браузера <strong>с этого момента</strong>"
2158
 
2159
  #: views/view-options.php:62
2160
+ #: views/view-options.php:169
2161
+ #@ wp-table-reloaded
2162
  msgid "Save Options"
2163
  msgstr "Сохранить опции"
2164
 
2165
  #: views/view-options.php:70
2166
+ #@ wp-table-reloaded
2167
  msgid "Backend Options"
2168
+ msgstr "Опции администратора"
2169
 
2170
  #: views/view-options.php:74
2171
+ #@ wp-table-reloaded
2172
  msgid "Exit warning"
2173
  msgstr "Отображать предупреждение"
2174
 
2175
  #: views/view-options.php:75
2176
  #, php-format
2177
+ #@ wp-table-reloaded
2178
  msgid "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have not yet saved my changes."
2179
+ msgstr "Да, показывать предупреждающее сообщение, если я хочу покинуть экран &quot;%s&quot;, но изменения не были сохранены."
2180
 
2181
  #: views/view-options.php:78
2182
+ #@ wp-table-reloaded
2183
  msgid "Growing textareas"
2184
+ msgstr "Увеличивающиеся текстовые поля"
2185
 
2186
  #: views/view-options.php:79
2187
  #, php-format
2188
+ #@ wp-table-reloaded
2189
  msgid "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are focussed."
2190
  msgstr "Да, увеличить текстовые поля на &quot;%s&quot; экране когда они пребывают в фокусе."
2191
 
2192
+ #: views/view-options.php:91
2193
+ #@ wp-table-reloaded
2194
  msgid "Admin Options"
2195
  msgstr "Настройки администратора"
2196
 
2197
+ #: views/view-options.php:93
2198
+ #: views/view-options.php:210
2199
+ #: views/view-options.php:224
2200
+ #@ wp-table-reloaded
2201
  msgid "This area are only available to site administrators!"
2202
  msgstr "Это поле доступно только администратору."
2203
 
2204
+ #: views/view-options.php:93
2205
+ #@ wp-table-reloaded
2206
  msgid "You can therefore not change these options."
2207
  msgstr "Вы не можете изменить эти настройки."
2208
 
2209
+ #: views/view-options.php:98
2210
+ #@ wp-table-reloaded
2211
  msgid "Plugin Access"
2212
  msgstr "Доступ к плагину"
2213
 
2214
+ #: views/view-options.php:99
2215
+ #@ wp-table-reloaded
2216
  msgid "To access WP-Table Reloaded, a user needs to be:"
2217
  msgstr "Для того, чтобы получить доступ к WP-Table Reloaded, пользователь должен быть:"
2218
 
2219
+ #: views/view-options.php:100
2220
+ #: views/view-options.php:111
2221
+ #@ default
2222
  msgctxt "User role"
2223
  msgid "Administrator"
2224
  msgstr "Administrator"
2225
 
2226
+ #: views/view-options.php:101
2227
+ #: views/view-options.php:112
2228
+ #@ default
2229
  msgctxt "User role"
2230
  msgid "Editor"
2231
  msgstr "Editor"
2232
 
2233
+ #: views/view-options.php:102
2234
+ #: views/view-options.php:113
2235
+ #@ default
2236
  msgctxt "User role"
2237
  msgid "Author"
2238
  msgstr "Author"
2239
 
2240
+ #: views/view-options.php:103
2241
+ #@ default
2242
  msgctxt "User role"
2243
  msgid "Contributor"
2244
  msgstr "Contributor"
2245
 
2246
+ #: views/view-options.php:109
2247
+ #@ wp-table-reloaded
2248
  msgid "Plugin Options Access"
2249
  msgstr "Доступ к настройкам"
2250
 
2251
+ #: views/view-options.php:110
2252
+ #@ wp-table-reloaded
2253
  msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
2254
+ msgstr "Для того, чтобы получить доступ к настройкам плагина WP-Table Reloaded, пользователь должен быть:"
2255
 
2256
+ #: views/view-options.php:114
2257
+ #@ wp-table-reloaded
2258
  msgid "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
2259
+ msgstr "Настройки администратора, импорт файла и ручное удаление плагина доступно только администратору, независимо от настроек."
2260
 
2261
+ #: views/view-options.php:118
2262
+ #@ wp-table-reloaded
2263
  msgid "Plugin Language"
2264
  msgstr "Язык плагина"
2265
 
2266
+ #: views/view-options.php:119
2267
+ #@ wp-table-reloaded
2268
  msgid "WP-Table Reloaded shall be shown in this language:"
2269
  msgstr "WP-Table Reloaded должен отображаться на этом языке:"
2270
 
2271
+ #: views/view-options.php:120
2272
  #, php-format
2273
+ #@ wp-table-reloaded
2274
  msgid "WordPress Default (currently %s)"
2275
  msgstr "WordPress Default (текущее %s)"
2276
 
2277
+ #: views/view-options.php:129
2278
+ #@ wp-table-reloaded
2279
  msgid "Admin menu entry"
2280
+ msgstr "Вход в меню администратора"
2281
 
2282
+ #: views/view-options.php:130
2283
+ #@ wp-table-reloaded
2284
  msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
2285
+ msgstr "WP-Table Reloaded должен отображаться в этой секции меню администратора:"
2286
 
2287
+ #: views/view-options.php:131
2288
+ #@ default
2289
  msgid "Tools"
2290
  msgstr "Настройки"
2291
 
2292
+ #: views/view-options.php:132
2293
+ #@ default
2294
  msgid "Posts"
2295
  msgstr "Посты"
2296
 
2297
+ #: views/view-options.php:139
2298
+ #@ default
2299
  msgid "Pages"
2300
  msgstr "Страницы"
2301
 
2302
+ #: views/view-options.php:140
2303
+ #@ default
2304
  msgid "Plugins"
2305
  msgstr "Плагины"
2306
 
2307
+ #: views/view-options.php:141
2308
+ #@ default
2309
  msgid "Settings"
2310
  msgstr "Установки"
2311
 
2312
+ #: views/view-options.php:142
2313
+ #@ default
2314
  msgid "Dashboard"
2315
  msgstr "Панель управления"
2316
 
2317
+ #: views/view-options.php:143
2318
+ #@ wp-table-reloaded
2319
  msgid "Top-Level"
2320
  msgstr "Верхний уровень"
2321
 
2322
+ #: views/view-options.php:148
2323
+ #@ wp-table-reloaded
2324
  msgid "Frontend Edit Link"
2325
+ msgstr "Редактирование внешнего вида"
2326
 
2327
+ #: views/view-options.php:149
2328
+ #@ wp-table-reloaded
2329
  msgid "Yes, show an \"Edit\" link to users with sufficient rights near every table on the frontend."
2330
+ msgstr "Да, показывать ссылку \"Редактировать\" около каждой таблицы, пользователю, имеющему достаточно прав."
2331
 
2332
+ #: views/view-options.php:153
2333
+ #@ wp-table-reloaded
2334
  msgid "WordPress Search"
2335
+ msgstr "Поиск по WordPress"
2336
 
2337
+ #: views/view-options.php:154
2338
+ #@ wp-table-reloaded
2339
  msgid "Yes, the WordPress Search shall also find posts and pages that contain the search term inside a table."
2340
  msgstr "Отображать результаты поиска по постам и страницам при поиске по ячейкам таблицы."
2341
 
2342
+ #: views/view-options.php:158
2343
+ #@ wp-table-reloaded
2344
  msgid "Remove upon Deactivation"
2345
  msgstr "Удалить при деактивации"
2346
 
2347
+ #: views/view-options.php:159
2348
+ #@ wp-table-reloaded
2349
  msgid "Yes, remove all plugin related data from the database when the plugin is deactivated."
2350
  msgstr "При деактивации плагина удалить всю информацию о плагине."
2351
 
2352
+ #: views/view-options.php:159
2353
+ #@ wp-table-reloaded
2354
  msgid "Should be activated directly before deactivation only!"
2355
+ msgstr "Активация должна быть проведена СТРОГО перед деактивацией!"
2356
 
2357
+ #: views/view-options.php:179
2358
+ #@ wp-table-reloaded
2359
  msgid "WP-Table Reloaded Data Export and Backup"
2360
+ msgstr "Сохранение и экспорт информации из WP-Table Reloaded"
2361
 
2362
+ #: views/view-options.php:182
2363
+ #@ wp-table-reloaded
2364
  msgid "WP-Table Reloaded can export and import a so-called dump file that contains all tables, their settings and the plugin's options."
2365
+ msgstr "WP-Table Reloaded может экспортировать и импортировать дамп-файлы - все данные, которые содержатся во всех таблицах, их настройки и опции плагина."
2366
 
2367
+ #: views/view-options.php:182
2368
+ #@ wp-table-reloaded
2369
  msgid "This file can be used as a backup or to move all data to another WordPress site."
2370
  msgstr "Этот файл может быть использован как резервная копия или для перемещения всей информации на другой WordPress сайт."
2371
 
2372
+ #: views/view-options.php:185
2373
+ #@ wp-table-reloaded
2374
  msgid "Export a dump file"
2375
+ msgstr "Экспортировать дамп-файл"
2376
 
2377
+ #: views/view-options.php:187
2378
+ #@ wp-table-reloaded
2379
  msgid "To export all Tables and their settings, click the button below to generate and download a dump file."
2380
  msgstr "Чтобы экспортировать все таблицы и их настройки, нажмите на слудующую кнопку для создания и загрузки дамп-файла. "
2381
 
2382
+ #: views/view-options.php:187
2383
+ #@ wp-table-reloaded
2384
  msgid "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!"
2385
  msgstr "<strong>Внимание</strong>: не при каких обстоятельствах <strong>не редактируйте</strong> этот файл. Вы можете его уничтожить!"
2386
 
2387
+ #: views/view-options.php:196
2388
+ #@ wp-table-reloaded
2389
  msgid "Import a dump file"
2390
  msgstr "Импортировать дамп-файл"
2391
 
2392
+ #: views/view-options.php:198
2393
+ #@ wp-table-reloaded
2394
  msgid "To import a WP-Table Reloaded dump file and restore the included data, upload the file from your computer."
2395
  msgstr "Для того, чтобы импортировать WP-Table Reloaded дамп-файл и восстановить всю информацию, загрузите файл с вашего компьютера."
2396
 
2397
+ #: views/view-options.php:198
2398
+ #@ wp-table-reloaded
2399
  msgid "All current data of this WP-Table Reloaded installation (Tables, Options, Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
2400
  msgstr "Все текущие данные этой таблицы WP-Reloaded установка (Таблицы, Параметры, Настройки) <strong> будут перезаписаны </ STRONG> с данными из файла!"
2401
 
2402
+ #: views/view-options.php:198
2403
+ #@ wp-table-reloaded
2404
  msgid "Do not proceed, if you do not understand this!"
2405
  msgstr "Не продолжайте, если вы этого не понимаете!"
2406
 
2407
+ #: views/view-options.php:198
2408
+ #@ wp-table-reloaded
2409
  msgid "It is highly recommended to export and backup the data of this installation before importing another dump file (see above)."
2410
  msgstr "Настоятельно рекомендуется для экспорта и резервного копирования данных этой установки перед импортом следующего файла дампа (см. выше)."
2411
 
2412
+ #: views/view-options.php:204
2413
+ #@ wp-table-reloaded
2414
  msgid "Select Dump File"
2415
  msgstr "Выбрать дамп-файл"
2416
 
2417
+ #: views/view-options.php:206
2418
+ #@ wp-table-reloaded
2419
  msgid "Import Dump File"
2420
  msgstr "Импортировать дамп-файл"
2421
 
2422
+ #: views/view-options.php:216
2423
+ #@ wp-table-reloaded
2424
  msgid "Manually Uninstall WP-Table Reloaded"
2425
  msgstr "Вручную удалить WP-Table Reloaded"
2426
 
2427
+ #: views/view-options.php:218
2428
+ #@ wp-table-reloaded
2429
  msgid "Uninstalling <strong>will permanently delete</strong> all tables, data, and options, that belong to WP-Table Reloaded from the database, including all tables you added or imported."
2430
+ msgstr "<strong>Удаление</strong> плагина повлечет за собой удаление всех таблиц, данных и параметров, которые принадлежат к WP-Reloaded, из базы данных WordPress, в том числе из всех таблиц, что вы добавили или импортировали."
2431
 
2432
+ #: views/view-options.php:218
2433
+ #@ wp-table-reloaded
2434
  msgid "You will manually need to remove the plugin's files from the plugin folder afterwards."
2435
+ msgstr "Затем вам необходимо вручную удалить файлы плагина из папки плагинов (обычно это папка /wp-content/plugins/wp-table-reloaded."
2436
 
2437
+ #: views/view-options.php:218
2438
+ #@ wp-table-reloaded
2439
  msgid "Be very careful with this and only click the button if you know what you are doing!"
2440
+ msgstr "Будьте очень осторожны с этим и нажмите на кнопку ниже только в том случае, если вы знаете, что делаете!"
2441
 
2442
+ #: views/view-options.php:222
2443
+ #@ wp-table-reloaded
2444
  msgid "Uninstall Plugin WP-Table Reloaded"
2445
  msgstr "Удалить плагин WP-Table Reloaded"
2446
 
2447
  #: views/view-uninstall.php:3
2448
+ #@ wp-table-reloaded
2449
  msgid "Plugin deactivated successfully."
2450
  msgstr "Плагин деактивирован успешно"
2451
 
2452
  #: views/view-uninstall.php:4
2453
+ #@ wp-table-reloaded
2454
  msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
2455
  msgstr "Были удалены все таблицы, данные и параметры. Теперь Вы можете вручную удалить папку плагина из папки плагинов WordPress или используйте \"Delete\" ссылки на странице Плагины."
2456
 
2457
+ #. translators: plugin header field 'PluginURI'
2458
+ #: wp-table-reloaded.php:0
2459
+ #@ wp-table-reloaded
2460
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2461
  msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2462
 
2463
+ #. translators: plugin header field 'Description'
2464
+ #: wp-table-reloaded.php:0
2465
+ #@ wp-table-reloaded
2466
  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."
2467
  msgstr "Этот плагин позволяет вам создавать и легко управлять таблицами в админ-площади WordPress. Удобные бэкэнды позволяют легко манипулировать табличными данными. Вы можете включать таблицы в вашем посте, на своих страницах или в тексте с помощью виджетов Shortcode или тег шаблона функции. Таблицы могут быть импортированы и экспортированы в / из CSV, XML и HTML."
2468
 
2469
+ #. translators: plugin header field 'AuthorURI'
2470
+ #: wp-table-reloaded.php:0
2471
+ #@ wp-table-reloaded
 
 
2472
  msgid "http://tobias.baethge.com/"
2473
  msgstr "http://tobias.baethge.com/"
2474
 
2475
+ #: controllers/controller-admin.php:256
2476
+ #@ wp-table-reloaded
2477
+ msgid "Belarusian"
2478
+ msgstr ""
2479
+
2480
+ #: controllers/controller-admin.php:257
2481
+ #@ wp-table-reloaded
2482
+ msgid "Bulgarian"
2483
+ msgstr ""
2484
+
2485
+ #: controllers/controller-admin.php:264
2486
+ #@ wp-table-reloaded
2487
+ msgid "Hebrew"
2488
+ msgstr ""
2489
+
2490
+ #: controllers/controller-admin.php:266
2491
+ #@ wp-table-reloaded
2492
+ msgid "Indonesian"
2493
+ msgstr ""
2494
+
2495
+ #: controllers/controller-admin.php:269
2496
+ #@ wp-table-reloaded
2497
+ msgid "Dutch"
2498
+ msgstr ""
2499
+
2500
+ #: controllers/controller-admin.php:272
2501
+ #@ wp-table-reloaded
2502
+ msgid "Portuguese (Portugal)"
2503
+ msgstr ""
2504
+
2505
+ #: controllers/controller-admin.php:276
2506
+ #@ wp-table-reloaded
2507
+ msgid "Ukrainian"
2508
+ msgstr ""
2509
+
2510
+ #: controllers/controller-admin.php:308
2511
+ #@ wp-table-reloaded
2512
+ msgid "This version includes several bugfixes and a few enhancements."
2513
+ msgstr "Эта версия включает в себя исправления и несколько улучшений."
2514
+
2515
+ #: controllers/controller-admin.php:1859
2516
+ #@ wp-table-reloaded
2517
+ msgid "All"
2518
+ msgstr "Все"
2519
+
2520
+ #: views/view-edit.php:317
2521
+ #@ wp-table-reloaded
2522
+ msgid "Cache Table Output"
2523
+ msgstr "Кешировать вывод таблицы"
2524
+
2525
+ #: views/view-edit.php:318
2526
+ #@ wp-table-reloaded
2527
+ msgid "The resulting HTML output of the table shall be cached in the WordPress database cache for faster page generation."
2528
+ msgstr результате HTML-вывод таблицы будет кэширован в базе данных WordPress, что позволит быстрее формировать страницу для вывода на экран."
2529
+
2530
+ #: views/view-edit.php:321
2531
+ #@ wp-table-reloaded
2532
+ msgid "Extra CSS Class"
2533
+ msgstr "Классы Extra CSS"
2534
+
2535
+ #: views/view-edit.php:322
2536
+ #@ wp-table-reloaded
2537
+ msgid "Enter a string that will be given to the table as an additional class for styling with CSS."
2538
+ msgstr "Введите строку, которая будет дана в таблице в качестве дополнительного класса для стилизации с CSS."
2539
+
2540
+ #: views/view-edit.php:322
2541
+ #@ wp-table-reloaded
2542
+ msgid "This is not the place to enter \"Custom CSS\" code!"
2543
+ msgstr "Это не место для ввода \"Custom CSS \" кода!"
2544
+
2545
+ #: views/view-edit.php:390
2546
+ #@ wp-table-reloaded
2547
+ msgid "Filtering/Search"
2548
+ msgstr "Фильтрация/Поиск"
2549
+
2550
+ #: views/view-options.php:82
2551
+ #@ wp-table-reloaded
2552
+ msgid "List of Tables features"
2553
+ msgstr "Список функций таблицы"
2554
+
2555
+ #: views/view-options.php:83
2556
+ #, php-format
2557
+ #@ wp-table-reloaded
2558
+ msgid "Yes, use the DataTables JavaScript features (sorting, pagination, filtering) on the &quot;%s&quot; screen."
2559
+ msgstr "Да, использовать возможности DataTables JavaScript (сортировка, разбивка на страницы, фильтры) на экране &quot;%s&quot;."
2560
+
2561
+ #. translators: plugin header field 'Author'
2562
+ #: wp-table-reloaded.php:0
2563
+ #@ wp-table-reloaded
2564
+ msgid "Tobias Bäthge"
2565
+ msgstr ""
2566
+
2567
+ #. translators: plugin header field 'Version'
2568
+ #: wp-table-reloaded.php:0
2569
+ #@ wp-table-reloaded
2570
+ msgid "1.9.3"
2571
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2572
 
readme.txt CHANGED
@@ -1,277 +1,315 @@
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: 3.0
6
- Tested up to: 3.3
7
- Stable tag: 1.9.2
8
-
9
- WP-Table Reloaded enables you to create and manage tables, without having to write HTML code, and it adds valuable functions for your visitors.
10
-
11
- == Description ==
12
-
13
- WP-Table Reloaded enables you to create and manage tables in your WP's admin area. No HTML knowledge is needed. A comfortable backend allows to easily edit table data. Tables can contain any type of data and additional JavaScript libraries can be used to extend it with features like sorting, pagination, filtering, and more. You can include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
14
-
15
- = More information =
16
- Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
17
-
18
- If you like this plugin, please rate it here in the WordPress Plugin Directory, make a [donation](http://tobias.baethge.com/donate/), or [flattr it](https://flattr.com/thing/118856/WP-Table-Reloaded). Thank you!
19
-
20
- = Informationen auf Deutsch =
21
- Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Daf&uuml;r werden keine HTML-Kenntnisse ben&ouml;tigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zus&auml;tzlich k&ouml;nnen einer Tabelle mit einer JavaScript-Bibliothek weitere F&auml;higkeiten, wie Sortieren, Paginierung und Filterung hinzugef&uuml;gt werden.
22
-
23
- Weitere Informationen auf Deutsch: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/
24
-
25
- Wenn dir das Plugin gef&auml;llt, bewerte es bitte hier im WordPress Plugin Directory, [spende](http://tobias.baethge.com/donate/) oder [&quot;flattere&quot;](https://flattr.com/thing/118856/WP-Table-Reloaded). Danke!
26
-
27
- == Screenshots ==
28
-
29
- Screenshots are available on http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
30
-
31
- == Installation ==
32
-
33
- 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).
34
-
35
- Manual Installation works just as for most other WordPress plugins:
36
-
37
- 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.
38
-
39
- 1. Activate the Plugin "WP-Table Reloaded" on your "Plugins" page.
40
-
41
- 1. Create and manage tables via "WP-Table Reloaded" in the "Tools" section.
42
-
43
- 1. Include a table by adding the shortcode [table id=&lt;your-table's-id&gt; /] to your post, page or text widget.
44
-
45
- 1. You might want to add styling features via the option in the "Plugin Options" screen, where you can enter your CSS directly.
46
-
47
- == Frequently Asked Questions ==
48
-
49
- = Where can I find answers to Frequently Asked Questions? =
50
-
51
- A wide group of questions, regarding different features or styling has been answered in the [FAQ section](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/faq/) on the plugin's website.
52
-
53
- = Can I use wp-Table and WP-Table Reloaded together? =
54
-
55
- Yes! You can have both wp-Table and WP-Table Reloaded installed in your WordPress! They will not interfere (as they are not using anything together). They are completely independent from each other.
56
- If WP-Table Reloaded finds the wp-Table database tables, it can import the found tables into it's own format, so that you can completely upgrade from wp-Table to WP-Table Reloaded.
57
-
58
- = Support? =
59
-
60
- For support questions, bug reports, or feature requests, please use the [WordPress Support Forums](http://wordpress.org/tags/wp-table-reloaded). Please [search](http://wordpress.org/support/) through the forums first, then [open a new thread](http://wordpress.org/tags/wp-table-reloaded) with the tag "wp-table-reloaded". Thank you!
61
-
62
- = Requirements? =
63
-
64
- In short: WordPress 3.0 or higher, the latest version of WordPress is recommended
65
-
66
- = Languages and Localization? =
67
-
68
- The plugin currently includes the following languages:
69
- Arabic, Belarusian, Brazilian Portuguese, Chinese (Simplified), Czech, Dutch, English, Finnish, French, German, Hindi, Indonesian, Italian, Japanese, Polish, Russian, Slovak, Spanish, Swedish, and Ukrainian.
70
-
71
- 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.
72
- There is also a .pot-file available to use in the "languages" subfolder. Of course you can also use poEdit as your editor, which also works nicely.
73
-
74
- = Where can I get more information? =
75
-
76
- Please visit the [official plugin website](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/) for the latest information on this plugin.
77
-
78
- Die Webseite des Plugins ist auch [auf Deutsch](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/) verf&uuml;gbar.
79
-
80
- == Usage ==
81
-
82
- After installing the plugin, you can add, import, export, edit, copy, delete, ... tables via the "WP-Table Reloaded" screen which appears under the "Tools" section in your Admin menu.
83
- Everything should be self-explaining there.
84
-
85
- To show one of your tables in a post, on a page or in a text widget, just include the shortcode [table id=&lt;the-id&gt; /] to your post/page/text-widget, where &lt;the-id&gt is the ID of your table (can be found on the left side of the "List tables" screen.)
86
-
87
- After that you might want to change the style of the table. You can do this by entering CSS commands into the "Custom CSS" textarea on the "Plugin Options" screen.
88
- You may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and/or description, ...) by checking the appropriate options on the "Edit table" screen.
89
-
90
- == Acknowledgements ==
91
-
92
- Thanks go to [Alex Rabe](http://alexrabe.boelinger.com/) for the initial wp-Table plugin!
93
- Special thanks go to [Allan Jardine](http://www.datatables.net/) for the DataTables-jQuery-plugin.
94
- Thanks go to [Christian Bach](http://tablesorter.com/docs/) for the TableSorter-jQuery-plugin and to [S&ouml;ren Krings](http://tablesorter.openwerk.de/) for the TableSorter-Extended-jQuery-plugin.
95
- Thanks to all language file translators!
96
- Thanks to every donor, supporter and bug reporter!
97
-
98
- == License ==
99
-
100
- This plugin is Free Software, released under the GPL, version 2.
101
- You may use it free of charge for any purposes.
102
- I kindly ask you for link somewhere on your website to http://tobias.baethge.com/. This is not required!
103
- I'm also happy about [donations](http://tobias.baethge.com/donate/) or something from [my wishlist](http://tobias.baethge.com/wishlist)! Thanks!
104
-
105
- == Changelog ==
106
-
107
- = Version 1.9.2 =
108
- * bugfix: Correct column width of "Edit" screen input fields in Internet Explorer 9
109
- * bugfix: Fix bug when a moved columns/rows were not moved to the correct place
110
- * bugfix: Restore functionality of the "Delete" link on the "List of Tables"
111
- * update: Added new DataTables version 1.8.2
112
- * enhancement: several code changes for better compatibility, adjustments to current WordPress versions
113
- * Dropped support for outdated WordPress versions 2.8 and 2.9
114
- * languages: Added Irish, Hebrew and Portuguese (Portugal), updated other languages, renamed Finnish language code to "fi"
115
-
116
- = Version 1.9.1 =
117
- * bugfix: update handling was broken in 1.9
118
-
119
- = Version 1.9 =
120
- * feature: option to have the generated table HTML cached in a WordPress transient for faster page generation
121
- * feature: tables can get additional custom CSS classes, e.g. for easier layout and styling, and grouping tables
122
- * feature: Updated DataTables JavaScript library to 1.7.5
123
- * enhancement: adjustments to make the plugin work better with WordPress 3.1
124
- * enhancement: Add cell content as a parameter for the CSS class filter
125
- * enhancement: Additional ID-based CSS classes for the table name and description texts
126
- * enhancement: JavaScript features on "List of Tables" screen can be customized more
127
- * enhancement: cleaned up and optimized some code
128
- * languages: Added Arabic and Dutch, updated other languages
129
-
130
- = Version 1.8 =
131
- * feature: Updated JavaScript libraries to DataTables 1.7 and TableTools 1.1.4
132
- * enhancement: Template tag functions now accept strings and arrays for passing parameters
133
- * enhancement: Backwards compatibility for deprecated functions, don't use deprecated functions anymore
134
- * enhancement: Sort on "Edit" screen no longer moves header or footer row, if they are activated
135
- * enhancement: Added plugin filter hook to change table content prior to rendering
136
- * enhancement: Added "summary" attribute filter for &lt;table&gt; HTML element
137
- * enhancement: RTL-languages supported in frontend CSS
138
- * enhancement: Adjusted default CSS for new default theme "TwentyTen"
139
- * bugfix: Fixed search to not find table IDs with the same beginning
140
- * bugfix: Fixed problem with certain call-by-reference functions in certain versions of PHP
141
- * bugfix: valid HTML on "Plugin Options" screen
142
- * bugfix: Fixed notice due to not initialized variable
143
- * bugfix: Fixed DataTables translations for Danish and Norwegian
144
- * languages: Added Polish and Belarusian
145
- * languages: Added Romanian for DataTables
146
-
147
- = Version 1.7 =
148
- * feature: add "Table" button to the visual editor (TinyMCE)
149
- * feature: update DataTables JavaScript library to version 1.6.2, including TableTools
150
- * enhancement: add option for initial number of rows per pagination page
151
- * enhancement: add value "all" to the four Shortcode parameters show_rows, hide_rows, show_columns, hide_columns
152
- * enhancement: add WP-Table Reloaded screen icon to all plugin screens and the Top-Level menu entry
153
- * enhancement: add two template tag functions that return the output instead of echoing it
154
- * bugfix: fix problem with admin menu parent pages, make them ready for WP 3.0
155
- * bugfix: import/replace replaces only data; name, description, options, and visibility settings are kept
156
- * languages: added French, Chinese (Simplified), Russian, and Ukrainian
157
-
158
- = Version 1.6.1 =
159
- * enhancement: let WP Search also search table name and description
160
- * enhancement: replacing a table during an import will leave options untouched and only replace table data
161
- * bugfix: better fix for DataTables invisibility issue in IE 7
162
- * enhancement: add 3 new plugin filters for frontend
163
- * bugfix: fix for problem with search, if data is empty somehow
164
-
165
- = Version 1.6 =
166
- * feature: Support for "rowspan" and "colspan" in tables
167
- * feature: WP Search will now also search in tables
168
- * feature: Possibility to select the plugin language
169
- * feature: Highlight row (background-color change when hovering)
170
- * feature: Option to show an "Edit Table" link on the frontend
171
- * enhancement: select fields for position of name and description
172
- * internal plugin restructuring
173
- * dropped support for outdated WordPress 2.7
174
-
175
- = Version 1.5 =
176
- * added the DataTables JavaScript library with these features: sorting, pagination, filtering, TableTools
177
- * heavily redesigned the "Edit Table" screen: Bulk operations for inserting, deleting, ...
178
- * Warning message if changes not yet saved
179
- * added features to the "Plugin Options": set access requirements (user roles) to the plugin and the Options, Change position of the plugin in the admin menu, better loading/inclusion of CSS
180
- * many, many plugin filters and actions for plugin customization
181
- * export/import a dump file (with ALL tables/options/settings at once)
182
- * fixed some minor bugs, errors and glitches
183
- * dropped support for outdated WordPress 2.6
184
-
185
- = Version 1.4.2a =
186
- * fixed bug: JavaScript errors in IE6 and 7 on Import screen
187
- * fixed bug: escapaping of delimiter when exporting was broken
188
- * added check for functions from mbstring library
189
-
190
- = Version 1.4.1 =
191
- * fixed small bug that led to occasional JavaScript timeout errors when editing large tables
192
-
193
- = Version 1.4 =
194
- * restyled "List of Tables" to suit WP 2.7/2.8 layout, list now sortable
195
- * added Table and shortcode Preview in the backend
196
- * "Insert Image" now allows inserting images from the WP Media Library
197
- * added possibility to show/hide rows/columns with checkboxes in the backend
198
- * textarea for cell data now grows when focussed
199
- * added "Custom Data Fields" to be able to store table meta data, accessible with a shortcode
200
- * added "Last edited" (time and user) information
201
- * fixed many minor bugs, errors and glitches (improved HTML validation)
202
- * optimized and restructured big parts of the code
203
- * dropped support for WordPress 2.5
204
- * added Italian and Japanese language files
205
-
206
- = Version 1.3 =
207
- * fixed bug with shortcode in text widgets for WP 2.8
208
- * added Brazilian Portuguese language file
209
- * fixed small bug with "Table" button in editor toolbar
210
- * table ID can now be changed and existing tables can be replaced upon import
211
- * possibility to add multiple rows/columns; import from URLs/webserver
212
- * WordPress shortcodes are supported within table cells
213
- * inputs are now textareas to allow easier editing of larger texts
214
-
215
- = Version 1.2.1 =
216
- * fixed syntax errors that appeared for some users
217
- * added Polish language file
218
-
219
- = Version 1.2 =
220
- * editor toolbar button to insert tables
221
- * bulk actions
222
- * improved CSS and JS loading and performance
223
- * template tag function; new CSV import/export class
224
- * table specific settings can be overwritten by shortcode parameters
225
- * new language: Czech
226
- * fixed a few minor bugs
227
- * smaller enhancements and text corrections
228
-
229
- = Version 1.1 =
230
- * changed way of CSS handling (database option instead of file)
231
- * fixed bug for users with PHP4 (certain function doesn't exist there)
232
- * added two additional shortcode parameters
233
- * added buttons to easily add links and images
234
-
235
- = Version 1.0(.1) =
236
- * Language files
237
- * more import/export (including directly from wp-Table!)
238
- * shortcode supported in text widgets
239
-
240
- = Version 0.9.2 =
241
- * fixed bug with plugin deactivation hook
242
- * added missing css-file
243
-
244
- = Version 0.9.1 =
245
- * first good release with all mentioned functions working well
246
-
247
- = Version 0.9 beta 1b =
248
- * small bug which prevented showing of tables (but still not everything implemented)
249
-
250
- = Version 0.9 beta 1 =
251
- * First release (not everything functional)
252
-
253
- == Upgrade Notice ==
254
-
255
- = 1.9.2 =
256
- This upgrade includes several bugfixes and a few enhancements, like an updated DataTables library.
257
-
258
- = 1.9.1 =
259
- This upgrade includes a few new features, like output caching and a custom table CSS class, and several enhancements.
260
-
261
- = 1.9 =
262
- This upgrade includes a few new features, like output caching and a custom table CSS class, and several enhancements.
263
-
264
- = 1.8 =
265
- This upgrade includes an updated DataTables library, enhances several features and fixes a few small issues.
266
-
267
- = 1.7 =
268
- This upgrade includes an updated DataTables library, adds a "Table" button in the toolbar of the visual editor, and enhances several other things.
269
-
270
- = 1.6.1 =
271
- This upgrade fixes a few minor bugs and enhances the WP Search integration and the import.
272
-
273
- = 1.6 =
274
- This upgrade adds features like "colspan"/"rowspan" support, support for the WP Search, and more. WordPress 2.8 or higher is now required!
275
-
276
- = 1.5 =
277
- This upgrade contains a new JavaScript library for sorting, pagination, and filtering, and many more improvements to the interface.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 3.1
6
+ Tested up to: 3.5.1
7
+ Stable tag: 1.9.3
8
+
9
+ WP-Table Reloaded is outdated! Please do not install it, but use its official successor TablePress! For more information, see http://tablepress.org/
10
+
11
+ == Description ==
12
+
13
+ > #### Attention: WP-Table Reloaded has been replaced with TablePress!
14
+ > If you are starting a new project, please do not use WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/extend/plugins/tablepress/) plugin, which is the official and designated successor of WP-Table Reloaded.
15
+ > For users of WP-Table Reloaded, no immediate action is necessary, but it is recommended that you [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress soon.
16
+
17
+ WP-Table Reloaded enables you to create and manage tables in your WP's admin area. No HTML knowledge is needed. A comfortable backend allows to easily edit table data. Tables can contain any type of data and additional JavaScript libraries can be used to extend it with features like sorting, pagination, filtering, and more. You can include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
18
+
19
+ = More information =
20
+ Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
21
+
22
+ If you like this plugin, please rate it here in the WordPress Plugin Directory, make a [donation](http://tobias.baethge.com/donate/), or [flattr it](https://flattr.com/thing/118856/WP-Table-Reloaded). Thank you!
23
+
24
+ = Informationen auf Deutsch =
25
+ Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Dafür werden keine HTML-Kenntnisse benötigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zusätzlich können einer Tabelle mit einer JavaScript-Bibliothek weitere Fähigkeiten, wie Sortieren, Paginierung und Filterung hinzugefügt werden.
26
+
27
+ Weitere Informationen auf Deutsch: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/
28
+
29
+ Wenn dir das Plugin gefällt, bewerte es bitte hier im WordPress Plugin Directory, [spende](http://tobias.baethge.com/donate/) oder [&quot;flattere&quot;](https://flattr.com/thing/118856/WP-Table-Reloaded). Danke!
30
+
31
+ == Screenshots ==
32
+
33
+ > #### Attention: WP-Table Reloaded has been replaced with TablePress!
34
+ > If you are starting a new project, please do not use WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/extend/plugins/tablepress/) plugin, which is the official and designated successor of WP-Table Reloaded.
35
+ > For users of WP-Table Reloaded, no immediate action is necessary, but it is recommended that you [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress soon.
36
+
37
+ Screenshots are available on http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
38
+
39
+ == Installation ==
40
+
41
+ > #### Attention: WP-Table Reloaded has been replaced with TablePress!
42
+ > If you are starting a new project, please do not use WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/extend/plugins/tablepress/) plugin, which is the official and designated successor of WP-Table Reloaded.
43
+ > For users of WP-Table Reloaded, no immediate action is necessary, but it is recommended that you [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress soon.
44
+
45
+ The easiest way is through your WordPress Admin area. Go to the plugin section and search for "WP-Table Reloaded" in the WordPress Plugin Directory. Then you can click "Install" and the following steps will be done for you automatically. You just have to activate the plugin (step 5).
46
+
47
+ Manual Installation works just as for most other WordPress plugins:
48
+
49
+ 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.
50
+
51
+ 1. Activate the Plugin "WP-Table Reloaded" on your "Plugins" page.
52
+
53
+ 1. Create and manage tables via "WP-Table Reloaded" in the "Tools" section.
54
+
55
+ 1. Include a table by adding the shortcode [table id=&lt;your-table's-id&gt; /] to your post, page or text widget.
56
+
57
+ 1. You might want to add styling features via the option in the "Plugin Options" screen, where you can enter your CSS directly.
58
+
59
+ == Frequently Asked Questions ==
60
+
61
+ > #### Attention: WP-Table Reloaded has been replaced with TablePress!
62
+ > If you are starting a new project, please do not use WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/extend/plugins/tablepress/) plugin, which is the official and designated successor of WP-Table Reloaded.
63
+ > For users of WP-Table Reloaded, no immediate action is necessary, but it is recommended that you [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress soon.
64
+
65
+ = Where can I find answers to Frequently Asked Questions? =
66
+
67
+ A wide group of questions, regarding different features or styling has been answered in the [FAQ section](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/faq/) on the plugin's website.
68
+
69
+ = Can I use wp-Table and WP-Table Reloaded together? =
70
+
71
+ Yes! You can have both wp-Table and WP-Table Reloaded installed in your WordPress! They will not interfere (as they are not using anything together). They are completely independent from each other.
72
+ If WP-Table Reloaded finds the wp-Table database tables, it can import the found tables into it's own format, so that you can completely upgrade from wp-Table to WP-Table Reloaded.
73
+
74
+ = Support? =
75
+
76
+ For support questions, bug reports, or feature requests, please use the [WordPress Support Forums](http://wordpress.org/support/plugin/wp-table-reloaded). Please [search](http://wordpress.org/support/) through the forums first, and then only [open a new thread](http://wordpress.org/support/plugin/wp-table-reloaded) if you don't find an existing answer. Thank you!
77
+
78
+ = Requirements? =
79
+
80
+ In short: WordPress 3.1 or higher, the latest version of WordPress is recommended.
81
+
82
+ = Languages and Localization? =
83
+
84
+ The plugin currently includes the following languages:
85
+ Arabic, Belarusian, Brazilian Portuguese, Bulgarian, Chinese (Simplified), Czech, Dutch, English, Finnish, French, German, Hebrew, Hindi, Indonesian, Italian, Japanese, Polish, Russian, Slovak, Spanish, Swedish, and Ukrainian.
86
+
87
+ 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.
88
+ There is also a .pot-file available to use in the "languages" subfolder. Of course you can also use poEdit as your editor, which also works nicely.
89
+
90
+ = Where can I get more information? =
91
+
92
+ Please visit the [official plugin website](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/) for the latest information on this plugin.
93
+
94
+ Die Webseite des Plugins ist auch [auf Deutsch](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/) verfügbar.
95
+
96
+ == Usage ==
97
+
98
+ > #### Attention: WP-Table Reloaded has been replaced with TablePress!
99
+ > If you are starting a new project, please do not use WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/extend/plugins/tablepress/) plugin, which is the official and designated successor of WP-Table Reloaded.
100
+ > For users of WP-Table Reloaded, no immediate action is necessary, but it is recommended that you [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress soon.
101
+
102
+ After installing the plugin, you can add, import, export, edit, copy, delete, ... tables via the "WP-Table Reloaded" screen which appears under the "Tools" section in your Admin menu.
103
+ Everything should be self-explaining there.
104
+
105
+ To show one of your tables in a post, on a page or in a text widget, just include the shortcode [table id=&lt;the-id&gt; /] to your post/page/text-widget, where &lt;the-id&gt is the ID of your table (can be found on the left side of the "List tables" screen.)
106
+
107
+ After that you might want to change the style of the table. You can do this by entering CSS commands into the "Custom CSS" textarea on the "Plugin Options" screen.
108
+ You may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and/or description, ...) by checking the appropriate options on the "Edit table" screen.
109
+
110
+ == Acknowledgements ==
111
+
112
+ Thanks go to [Alex Rabe](http://alexrabe.boelinger.com/) for the initial wp-Table plugin!
113
+ Special thanks go to [Allan Jardine](http://www.datatables.net/) for the DataTables-jQuery-plugin.
114
+ Thanks go to [Christian Bach](http://tablesorter.com/docs/) for the TableSorter-jQuery-plugin and to [Sören Krings](http://tablesorter.openwerk.de/) for the TableSorter-Extended-jQuery-plugin.
115
+ Thanks to all language file translators!
116
+ Thanks to every donor, supporter and bug reporter!
117
+
118
+ == License ==
119
+
120
+ This plugin is Free Software, released under the GPL, version 2.
121
+ You may use it free of charge for any purposes.
122
+ I kindly ask you for link somewhere on your website to http://tobias.baethge.com/. This is not required!
123
+ I'm also happy about [donations](http://tobias.baethge.com/donate/) or something from [my wishlist](http://tobias.baethge.com/wishlist)! Thanks!
124
+
125
+ == Changelog ==
126
+
127
+ > #### Attention: WP-Table Reloaded has been replaced with TablePress!
128
+ > If you are starting a new project, please do not use WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/extend/plugins/tablepress/) plugin, which is the official and designated successor of WP-Table Reloaded.
129
+ > For users of WP-Table Reloaded, no immediate action is necessary, but it is recommended that you [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress soon.
130
+
131
+ = Version 1.9.3 =
132
+ * enhancement: reduce problems with blank space below tables, caused by a no-longer necessary minimum height
133
+ * enhancement: improve behavior and returned results of integration of the WP search
134
+ * enhancement: many improvements to the performance of JavaScript code on the WP-Table Reloaded screens
135
+ * enhancement: improvements in possibilities for developer interaction (additional plugin filters, etc.)
136
+ * bugfix: fixed naming of the sorting arrow images, which where wrongly pointing in the opposite direction
137
+ * bugfix: fixes to handling of the "Insert Image" thickbox
138
+ * bugfix: a few minor fixes to logical errors in JavaScript code on the WP-Table Reloaded screens
139
+ * Dropped support for outdated WordPress version 3.0
140
+ * languages: Added Bulgarian
141
+
142
+ = Version 1.9.2 =
143
+ * bugfix: Correct column width of "Edit" screen input fields in Internet Explorer 9
144
+ * bugfix: Fix bug when a moved columns/rows were not moved to the correct place
145
+ * bugfix: Restore functionality of the "Delete" link on the "List of Tables"
146
+ * update: Added new DataTables version 1.8.2
147
+ * enhancement: several code changes for better compatibility, adjustments to current WordPress versions
148
+ * Dropped support for outdated WordPress versions 2.8 and 2.9
149
+ * languages: Added Irish, Hebrew and Portuguese (Portugal), updated other languages, renamed Finnish language code to "fi"
150
+
151
+ = Version 1.9.1 =
152
+ * bugfix: update handling was broken in 1.9
153
+
154
+ = Version 1.9 =
155
+ * feature: option to have the generated table HTML cached in a WordPress transient for faster page generation
156
+ * feature: tables can get additional custom CSS classes, e.g. for easier layout and styling, and grouping tables
157
+ * feature: Updated DataTables JavaScript library to 1.7.5
158
+ * enhancement: adjustments to make the plugin work better with WordPress 3.1
159
+ * enhancement: Add cell content as a parameter for the CSS class filter
160
+ * enhancement: Additional ID-based CSS classes for the table name and description texts
161
+ * enhancement: JavaScript features on "List of Tables" screen can be customized more
162
+ * enhancement: cleaned up and optimized some code
163
+ * languages: Added Arabic and Dutch, updated other languages
164
+
165
+ = Version 1.8 =
166
+ * feature: Updated JavaScript libraries to DataTables 1.7 and TableTools 1.1.4
167
+ * enhancement: Template tag functions now accept strings and arrays for passing parameters
168
+ * enhancement: Backwards compatibility for deprecated functions, don't use deprecated functions anymore
169
+ * enhancement: Sort on "Edit" screen no longer moves header or footer row, if they are activated
170
+ * enhancement: Added plugin filter hook to change table content prior to rendering
171
+ * enhancement: Added "summary" attribute filter for &lt;table&gt; HTML element
172
+ * enhancement: RTL-languages supported in frontend CSS
173
+ * enhancement: Adjusted default CSS for new default theme "TwentyTen"
174
+ * bugfix: Fixed search to not find table IDs with the same beginning
175
+ * bugfix: Fixed problem with certain call-by-reference functions in certain versions of PHP
176
+ * bugfix: valid HTML on "Plugin Options" screen
177
+ * bugfix: Fixed notice due to not initialized variable
178
+ * bugfix: Fixed DataTables translations for Danish and Norwegian
179
+ * languages: Added Polish and Belarusian
180
+ * languages: Added Romanian for DataTables
181
+
182
+ = Version 1.7 =
183
+ * feature: add "Table" button to the visual editor (TinyMCE)
184
+ * feature: update DataTables JavaScript library to version 1.6.2, including TableTools
185
+ * enhancement: add option for initial number of rows per pagination page
186
+ * enhancement: add value "all" to the four Shortcode parameters show_rows, hide_rows, show_columns, hide_columns
187
+ * enhancement: add WP-Table Reloaded screen icon to all plugin screens and the Top-Level menu entry
188
+ * enhancement: add two template tag functions that return the output instead of echoing it
189
+ * bugfix: fix problem with admin menu parent pages, make them ready for WP 3.0
190
+ * bugfix: import/replace replaces only data; name, description, options, and visibility settings are kept
191
+ * languages: added French, Chinese (Simplified), Russian, and Ukrainian
192
+
193
+ = Version 1.6.1 =
194
+ * enhancement: let WP Search also search table name and description
195
+ * enhancement: replacing a table during an import will leave options untouched and only replace table data
196
+ * bugfix: better fix for DataTables invisibility issue in IE 7
197
+ * enhancement: add 3 new plugin filters for frontend
198
+ * bugfix: fix for problem with search, if data is empty somehow
199
+
200
+ = Version 1.6 =
201
+ * feature: Support for "rowspan" and "colspan" in tables
202
+ * feature: WP Search will now also search in tables
203
+ * feature: Possibility to select the plugin language
204
+ * feature: Highlight row (background-color change when hovering)
205
+ * feature: Option to show an "Edit Table" link on the frontend
206
+ * enhancement: select fields for position of name and description
207
+ * internal plugin restructuring
208
+ * dropped support for outdated WordPress 2.7
209
+
210
+ = Version 1.5 =
211
+ * added the DataTables JavaScript library with these features: sorting, pagination, filtering, TableTools
212
+ * heavily redesigned the "Edit Table" screen: Bulk operations for inserting, deleting, ...
213
+ * Warning message if changes not yet saved
214
+ * added features to the "Plugin Options": set access requirements (user roles) to the plugin and the Options, Change position of the plugin in the admin menu, better loading/inclusion of CSS
215
+ * many, many plugin filters and actions for plugin customization
216
+ * export/import a dump file (with ALL tables/options/settings at once)
217
+ * fixed some minor bugs, errors and glitches
218
+ * dropped support for outdated WordPress 2.6
219
+
220
+ = Version 1.4.2a =
221
+ * fixed bug: JavaScript errors in IE6 and 7 on Import screen
222
+ * fixed bug: escapaping of delimiter when exporting was broken
223
+ * added check for functions from mbstring library
224
+
225
+ = Version 1.4.1 =
226
+ * fixed small bug that led to occasional JavaScript timeout errors when editing large tables
227
+
228
+ = Version 1.4 =
229
+ * restyled "List of Tables" to suit WP 2.7/2.8 layout, list now sortable
230
+ * added Table and shortcode Preview in the backend
231
+ * "Insert Image" now allows inserting images from the WP Media Library
232
+ * added possibility to show/hide rows/columns with checkboxes in the backend
233
+ * textarea for cell data now grows when focussed
234
+ * added "Custom Data Fields" to be able to store table meta data, accessible with a shortcode
235
+ * added "Last edited" (time and user) information
236
+ * fixed many minor bugs, errors and glitches (improved HTML validation)
237
+ * optimized and restructured big parts of the code
238
+ * dropped support for WordPress 2.5
239
+ * added Italian and Japanese language files
240
+
241
+ = Version 1.3 =
242
+ * fixed bug with shortcode in text widgets for WP 2.8
243
+ * added Brazilian Portuguese language file
244
+ * fixed small bug with "Table" button in editor toolbar
245
+ * table ID can now be changed and existing tables can be replaced upon import
246
+ * possibility to add multiple rows/columns; import from URLs/webserver
247
+ * WordPress shortcodes are supported within table cells
248
+ * inputs are now textareas to allow easier editing of larger texts
249
+
250
+ = Version 1.2.1 =
251
+ * fixed syntax errors that appeared for some users
252
+ * added Polish language file
253
+
254
+ = Version 1.2 =
255
+ * editor toolbar button to insert tables
256
+ * bulk actions
257
+ * improved CSS and JS loading and performance
258
+ * template tag function; new CSV import/export class
259
+ * table specific settings can be overwritten by shortcode parameters
260
+ * new language: Czech
261
+ * fixed a few minor bugs
262
+ * smaller enhancements and text corrections
263
+
264
+ = Version 1.1 =
265
+ * changed way of CSS handling (database option instead of file)
266
+ * fixed bug for users with PHP4 (certain function doesn't exist there)
267
+ * added two additional shortcode parameters
268
+ * added buttons to easily add links and images
269
+
270
+ = Version 1.0(.1) =
271
+ * Language files
272
+ * more import/export (including directly from wp-Table!)
273
+ * shortcode supported in text widgets
274
+
275
+ = Version 0.9.2 =
276
+ * fixed bug with plugin deactivation hook
277
+ * added missing css-file
278
+
279
+ = Version 0.9.1 =
280
+ * first good release with all mentioned functions working well
281
+
282
+ = Version 0.9 beta 1b =
283
+ * small bug which prevented showing of tables (but still not everything implemented)
284
+
285
+ = Version 0.9 beta 1 =
286
+ * First release (not everything functional)
287
+
288
+ == Upgrade Notice ==
289
+
290
+ = 1.9.3 =
291
+ This upgrade includes several bugfixes and a few enhancements, and is a recommended maintenance release.
292
+
293
+ = 1.9.2 =
294
+ This upgrade includes several bugfixes and a few enhancements, like an updated DataTables library.
295
+
296
+ = 1.9.1 =
297
+ This upgrade includes a few new features, like output caching and a custom table CSS class, and several enhancements.
298
+
299
+ = 1.9 =
300
+ This upgrade includes a few new features, like output caching and a custom table CSS class, and several enhancements.
301
+
302
+ = 1.8 =
303
+ This upgrade includes an updated DataTables library, enhances several features and fixes a few small issues.
304
+
305
+ = 1.7 =
306
+ This upgrade includes an updated DataTables library, adds a "Table" button in the toolbar of the visual editor, and enhances several other things.
307
+
308
+ = 1.6.1 =
309
+ This upgrade fixes a few minor bugs and enhances the WP Search integration and the import.
310
+
311
+ = 1.6 =
312
+ This upgrade adds features like "colspan"/"rowspan" support, support for the WP Search, and more. WordPress 2.8 or higher is now required!
313
+
314
+ = 1.5 =
315
+ This upgrade contains a new JavaScript library for sorting, pagination, and filtering, and many more improvements to the interface.
views/view-about.php CHANGED
@@ -25,7 +25,7 @@
25
  <div class="postbox">
26
  <h3 class="hndle"><span><?php _e( 'Help and Support', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
27
  <div class="inside">
28
- <p><?php printf( __( '<a href="%s">Support</a> is provided through the <a href="%s">WordPress Support Forums</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/support/', 'http://www.wordpress.org/support/' ); ?> <?php printf( __( 'Before asking for support, please carefully read the <a href="%s">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/faq/' ); ?></p><p><?php printf( __( 'If you do not find an answer there, please <a href="%s">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://wordpress.org/tags/wp-table-reloaded' ); ?></p>
29
  </div>
30
  </div>
31
 
@@ -49,12 +49,14 @@
49
  $credits_links = array(
50
  'ar' => '<a href="http://jdwel.com/">Mohammed Kashmiry</a>',
51
  'be_BY' => '<a href="http://www.mikheev.biz/">Slava Mikheev</a>',
 
52
  'cs_CZ' => '<a href="http://separatista.net/">Separatista</a>',
53
  'es_ES' => '<a href="http://halles.cl/">Matias Halles</a>', // <a href="http://theindependentproject.com/">Alejandro Urrutia</a>
54
  'fi' => 'Jaakko',
55
  'fr_FR' => '<a href="http://www.ningbohotelreview.com/">NingboHOTELreview</a>',
56
  'he_IL' => '<a href="http://www.site2goal.co.il/">Mulli Bahr</a>',
57
  'hi_IN' => '<a href="http://outshinesolutions.com/">Outshine Solutions</a>',
 
58
  'id_ID' => '<a href="http://sys-talk.com/">Dedy Sofyan</a>, <a href="http://kelayang.com/">Kelayang</a>',
59
  'it_IT' => '<a href="http://www.scrical.it/">Gabriella Mazzon</a>',
60
  'ja' => '<a href="http://www.u-1.net/">Yuuichi</a>',
25
  <div class="postbox">
26
  <h3 class="hndle"><span><?php _e( 'Help and Support', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
27
  <div class="inside">
28
+ <p><?php printf( __( '<a href="%s">Support</a> is provided through the <a href="%s">WordPress Support Forums</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/support/', 'http://www.wordpress.org/support/' ); ?> <?php printf( __( 'Before asking for support, please carefully read the <a href="%s">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/faq/' ); ?></p><p><?php printf( __( 'If you do not find an answer there, please <a href="%s">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://wordpress.org/support/plugin/wp-table-reloaded' ); ?></p>
29
  </div>
30
  </div>
31
 
49
  $credits_links = array(
50
  'ar' => '<a href="http://jdwel.com/">Mohammed Kashmiry</a>',
51
  'be_BY' => '<a href="http://www.mikheev.biz/">Slava Mikheev</a>',
52
+ 'bg_BG' => '<a href="http://www.ajoft.com/">Gill Ajoft</a>',
53
  'cs_CZ' => '<a href="http://separatista.net/">Separatista</a>',
54
  'es_ES' => '<a href="http://halles.cl/">Matias Halles</a>', // <a href="http://theindependentproject.com/">Alejandro Urrutia</a>
55
  'fi' => 'Jaakko',
56
  'fr_FR' => '<a href="http://www.ningbohotelreview.com/">NingboHOTELreview</a>',
57
  'he_IL' => '<a href="http://www.site2goal.co.il/">Mulli Bahr</a>',
58
  'hi_IN' => '<a href="http://outshinesolutions.com/">Outshine Solutions</a>',
59
+ 'hr' => '<a href="http://katanaswords.info/">Nik</a>',
60
  'id_ID' => '<a href="http://sys-talk.com/">Dedy Sofyan</a>, <a href="http://kelayang.com/">Kelayang</a>',
61
  'it_IT' => '<a href="http://www.scrical.it/">Gabriella Mazzon</a>',
62
  'ja' => '<a href="http://www.u-1.net/">Yuuichi</a>',
views/view-edit.php CHANGED
@@ -112,7 +112,7 @@
112
 
113
  <tr><td>
114
  <a id="a-insert-link" class="button-primary" href="javascript:void(0);"><?php _e( 'Insert Link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a>
115
- <a id="a-insert-image" href="<?php echo admin_url( 'media-upload.php' ); ?>?type=image&amp;tab=library&amp;TB_iframe=true" class="button-primary" onclick="javascript:return false;"><?php _e( 'Insert Image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a>
116
  </td><td>
117
  <?php
118
  $col_select = '<select ' . $row_disabled . 'name="sort[col]">';
@@ -387,7 +387,7 @@
387
  <td><input type="checkbox" name="table[options][datatables_lengthchange]" id="table_options_datatables_lengthchange"<?php checked( $table['options']['datatables_lengthchange'] ); ?><?php echo ( !$datatables_enabled || !$table['options']['use_tablesorter'] || !$table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="true" /> <label for="table_options_datatables_lengthchange"><?php _e( 'Yes, allow the visitor to change the number of rows shown when using pagination.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
388
  </tr>
389
  <tr>
390
- <th scope="row"><?php _e( 'Filtering', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
391
  <td><input type="checkbox" name="table[options][datatables_filter]" id="table_options_datatables_filter"<?php checked( $table['options']['datatables_filter'] ); ?><?php echo ( !$datatables_enabled || !$table['options']['use_tablesorter'] || !$table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="true" /> <label for="table_options_datatables_filter"><?php _e( 'Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
392
  </tr>
393
  <tr>
112
 
113
  <tr><td>
114
  <a id="a-insert-link" class="button-primary" href="javascript:void(0);"><?php _e( 'Insert Link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a>
115
+ <a id="a-insert-image" href="<?php echo admin_url( 'media-upload.php' ); ?>?post_id=0&amp;type=image&amp;tab=library&amp;TB_iframe=true" class="button-primary" onclick="javascript:return false;" title="<?php _e( 'Insert Image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>"><?php _e( 'Insert Image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a>
116
  </td><td>
117
  <?php
118
  $col_select = '<select ' . $row_disabled . 'name="sort[col]">';
387
  <td><input type="checkbox" name="table[options][datatables_lengthchange]" id="table_options_datatables_lengthchange"<?php checked( $table['options']['datatables_lengthchange'] ); ?><?php echo ( !$datatables_enabled || !$table['options']['use_tablesorter'] || !$table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="true" /> <label for="table_options_datatables_lengthchange"><?php _e( 'Yes, allow the visitor to change the number of rows shown when using pagination.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
388
  </tr>
389
  <tr>
390
+ <th scope="row"><?php _e( 'Filtering/Search', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
391
  <td><input type="checkbox" name="table[options][datatables_filter]" id="table_options_datatables_filter"<?php checked( $table['options']['datatables_filter'] ); ?><?php echo ( !$datatables_enabled || !$table['options']['use_tablesorter'] || !$table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="true" /> <label for="table_options_datatables_filter"><?php _e( 'Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
392
  </tr>
393
  <tr>
wp-table-reloaded.php CHANGED
@@ -3,16 +3,16 @@
3
  * WordPress plugin "WP-Table Reloaded" main file, responsible for initiating the plugin
4
  *
5
  * @package WP-Table Reloaded
6
- * @author Tobias B&auml;thge
7
- * @version 1.9.2
8
  */
9
 
10
  /*
11
  Plugin Name: WP-Table Reloaded
12
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
13
  Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
14
- Version: 1.9.2
15
- Author: Tobias B&auml;thge
16
  Author URI: http://tobias.baethge.com/
17
  Author eMail: wordpress@tobias.baethge.com
18
  Text Domain: wp-table-reloaded
@@ -21,7 +21,7 @@ License: GPL 2
21
  Donate URI: http://tobias.baethge.com/donate/
22
  */
23
 
24
- /* Copyright 2009-2011 Tobias B&auml;thge
25
 
26
  This program is free software; you can redistribute it and/or modify
27
  it under the terms of the GNU General Public License, version 2, as
@@ -47,7 +47,7 @@ if ( !defined( 'WP_TABLE_RELOADED_BASENAME' ) )
47
  if ( !defined( 'WP_TABLE_RELOADED__FILE__' ) )
48
  define( 'WP_TABLE_RELOADED__FILE__', __FILE__ );
49
  if ( !defined( 'WP_TABLE_RELOADED_PLUGIN_VERSION' ) )
50
- define( 'WP_TABLE_RELOADED_PLUGIN_VERSION', '1.9.2' );
51
 
52
  /**
53
  * Decide whether admin controller or frontend controller is loaded
@@ -58,7 +58,7 @@ if ( is_admin() ) {
58
  } else {
59
  include_once ( WP_TABLE_RELOADED_ABSPATH . 'controllers/controller-frontend.php' );
60
  add_action( 'init', '_wp_table_reloaded_controller_frontend_constructor' );
61
-
62
  /**
63
  * Call constructor on init hook
64
  */
3
  * WordPress plugin "WP-Table Reloaded" main file, responsible for initiating the plugin
4
  *
5
  * @package WP-Table Reloaded
6
+ * @author Tobias Bäthge
7
+ * @version 1.9.3
8
  */
9
 
10
  /*
11
  Plugin Name: WP-Table Reloaded
12
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
13
  Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
14
+ Version: 1.9.3
15
+ Author: Tobias Bäthge
16
  Author URI: http://tobias.baethge.com/
17
  Author eMail: wordpress@tobias.baethge.com
18
  Text Domain: wp-table-reloaded
21
  Donate URI: http://tobias.baethge.com/donate/
22
  */
23
 
24
+ /* Copyright 2009-2013 Tobias Bäthge
25
 
26
  This program is free software; you can redistribute it and/or modify
27
  it under the terms of the GNU General Public License, version 2, as
47
  if ( !defined( 'WP_TABLE_RELOADED__FILE__' ) )
48
  define( 'WP_TABLE_RELOADED__FILE__', __FILE__ );
49
  if ( !defined( 'WP_TABLE_RELOADED_PLUGIN_VERSION' ) )
50
+ define( 'WP_TABLE_RELOADED_PLUGIN_VERSION', '1.9.3' );
51
 
52
  /**
53
  * Decide whether admin controller or frontend controller is loaded
58
  } else {
59
  include_once ( WP_TABLE_RELOADED_ABSPATH . 'controllers/controller-frontend.php' );
60
  add_action( 'init', '_wp_table_reloaded_controller_frontend_constructor' );
61
+
62
  /**
63
  * Call constructor on init hook
64
  */