wpDataTables Lite - Version 2.1.9

Version Description

  • Improvement: Added auto-save functionality after insert media in Simple tables
  • Improvement: Added translate functions on some strings
  • Improvement: Added new hooks for enqueuing scripts in admin area and filters for elementor widgets
  • BugFix: Fixed issue with font in material skin and background in graphite skin.
  • BugFix: Fixed issue with class name in Global font color settings.
  • Compatibility with WordPress 5.6.2 approved.
  • Other small bug fixes and stability improvements.
Download this release

Release Info

Developer wpDataTables
Plugin Icon 128x128 wpDataTables Lite
Version 2.1.9
Comparing to
See all releases

Code changes from version 2.1.8 to 2.1.9

Files changed (34) hide show
  1. assets/css/bootstrap/wpdatatables-bootstrap.css +3 -0
  2. assets/css/wdt-skins/graphite.css +10 -10
  3. assets/css/wdt-skins/material.css +6 -4
  4. assets/js/wpdatatables/admin/constructor/wdt.simpleTable.js +1 -0
  5. assets/js/wpdatatables/admin/table-settings/table_config_object.js +0 -2
  6. assets/js/wpdatatables/wdt.chartWizard.js +1 -1
  7. assets/js/wpdatatables/wpdatatables_edit_table.js +0 -4
  8. config/config.inc.php +1 -1
  9. controllers/wdt_admin.php +1 -0
  10. languages/en_US/{wpdatatables.mo → wpdatatables-en_US.mo} +0 -0
  11. languages/en_US/{wpdatatables.po → wpdatatables-en_US.po} +694 -519
  12. languages/fr_FR/wpdatatables-fr_FR.mo +0 -0
  13. languages/fr_FR/wpdatatables-fr_FR.po +704 -554
  14. languages/hu_HU/wpdatatables-hu_HU.mo +0 -0
  15. languages/hu_HU/wpdatatables-hu_HU.po +694 -519
  16. languages/nl_NL/nl_NL.mo +0 -0
  17. languages/nl_NL/nl_NL.po +695 -520
  18. languages/nl_NL/wpdatatables-nl_NL.mo +0 -0
  19. languages/nl_NL/wpdatatables-nl_NL.po +695 -520
  20. languages/pl_PL/wpdatatables-pl_PL.mo +0 -0
  21. languages/pl_PL/wpdatatables-pl_PL.po +701 -546
  22. languages/ru_RU/wpdatatables-ru_RU.mo +0 -0
  23. languages/ru_RU/wpdatatables-ru_RU.po +701 -546
  24. languages/sl_SI/wpdatatables-sl_SI.mo +0 -0
  25. languages/sl_SI/wpdatatables-sl_SI.po +704 -554
  26. readme.txt +13 -2
  27. source/class.wdtbrowsechartstable.php +7 -7
  28. source/class.wdtbrowsetable.php +6 -6
  29. source/class.wdttools.php +2 -82
  30. source/class.wpdatacolumn.php +0 -124
  31. source/class.wpdatatable.php +0 -28
  32. templates/admin/dashboard/dashboard.inc.php +7 -6
  33. templates/admin/settings/settings.inc.php +4 -0
  34. templates/admin/table-settings/table_settings_block.inc.php +16 -9
assets/css/bootstrap/wpdatatables-bootstrap.css CHANGED
@@ -2166,6 +2166,9 @@
2166
  .wpdt-c .opacity-6 {
2167
  opacity: .6;
2168
  }
 
 
 
2169
 
2170
  @media (min-width: 768px) {
2171
  .wpdt-c .col-sm-0-8,
2166
  .wpdt-c .opacity-6 {
2167
  opacity: .6;
2168
  }
2169
+ .wpdt-c .opacity-5 {
2170
+ opacity: .5;
2171
+ }
2172
 
2173
  @media (min-width: 768px) {
2174
  .wpdt-c .col-sm-0-8,
assets/css/wdt-skins/graphite.css CHANGED
@@ -18,11 +18,11 @@
18
  .wpDataTablesWrapper table.wpDataTable thead th.sorting,
19
  .wpDataTablesWrapper .wdt-checkbox-filter.btn {
20
  background-color: #313131; /* th background color */
21
- background-image: -webkit-gradient(linear,0 0,0 100%,from(#4c4c4c),to(#313131)) !important;
22
- background-image: -webkit-linear-gradient(top,#4c4c4c,#313131) !important;
23
- background-image: -o-linear-gradient(top,#4c4c4c,#313131) !important;
24
- background-image: linear-gradient(to bottom,#4c4c4c,#313131) !important;
25
- background-image: -moz-linear-gradient(top,#4c4c4c,#313131) !important;
26
  background-repeat: repeat-x;
27
  filter: progid:dximagetransform.microsoft.gradient(startColorstr= '#ff4c4c4c',endColorstr= '#ff313131',GradientType= 0) !important;
28
  border-color: #000000; /* th border color */
@@ -56,11 +56,11 @@
56
  .wpDataTablesWrapper table.wpDataTable thead th.sorting:hover,
57
  .wpDataTablesWrapper .wdt-checkbox-filter.btn:hover {
58
  background-color: #000000; /* th active/hover background color */
59
- background-image: -webkit-gradient(linear,0 0,0 100%,from(#313131),to(#000)) !important;
60
- background-image: -webkit-linear-gradient(top,#313131,#000) !important;
61
- background-image: -o-linear-gradient(top,#313131,#000) !important;
62
- background-image: linear-gradient(to bottom,#313131,#000) !important;
63
- background-image: -moz-linear-gradient(top,#313131,#000) !important;
64
  filter: progid:dximagetransform.microsoft.gradient(startColorstr= '#ff313131',endColorstr= '#ff000000',GradientType= 0) !important;
65
  }
66
 
18
  .wpDataTablesWrapper table.wpDataTable thead th.sorting,
19
  .wpDataTablesWrapper .wdt-checkbox-filter.btn {
20
  background-color: #313131; /* th background color */
21
+ background-image: -webkit-gradient(linear,0 0,0 100%,from(#4c4c4c),to(#313131));
22
+ background-image: -webkit-linear-gradient(top,#4c4c4c,#313131);
23
+ background-image: -o-linear-gradient(top,#4c4c4c,#313131);
24
+ background-image: linear-gradient(to bottom,#4c4c4c,#313131);
25
+ background-image: -moz-linear-gradient(top,#4c4c4c,#313131);
26
  background-repeat: repeat-x;
27
  filter: progid:dximagetransform.microsoft.gradient(startColorstr= '#ff4c4c4c',endColorstr= '#ff313131',GradientType= 0) !important;
28
  border-color: #000000; /* th border color */
56
  .wpDataTablesWrapper table.wpDataTable thead th.sorting:hover,
57
  .wpDataTablesWrapper .wdt-checkbox-filter.btn:hover {
58
  background-color: #000000; /* th active/hover background color */
59
+ background-image: -webkit-gradient(linear,0 0,0 100%,from(#313131),to(#000));
60
+ background-image: -webkit-linear-gradient(top,#313131,#000);
61
+ background-image: -o-linear-gradient(top,#313131,#000);
62
+ background-image: linear-gradient(to bottom,#313131,#000);
63
+ background-image: -moz-linear-gradient(top,#313131,#000);
64
  filter: progid:dximagetransform.microsoft.gradient(startColorstr= '#ff313131',endColorstr= '#ff000000',GradientType= 0) !important;
65
  }
66
 
assets/css/wdt-skins/material.css CHANGED
@@ -8,11 +8,13 @@
8
  font-size: 13px;
9
  }
10
 
11
- .wpdt-c table thead th,
12
- .wpdt-c table tbody td,
13
- .wpdt-c table tfoot td{
14
- font-family: 'Roboto', sans-serif !important;
15
  font-weight: 100;
 
 
 
 
16
  color: rgba(0, 0, 0, 0.87);
17
  }
18
 
8
  font-size: 13px;
9
  }
10
 
11
+ .wpdt-c table.wpDataTable {
12
+ font-family: 'Roboto', sans-serif;
 
 
13
  font-weight: 100;
14
+ }
15
+ .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th,
16
+ .wpdt-c .wpDataTablesWrapper table.wpDataTable tbody td,
17
+ .wpdt-c .wpDataTablesWrapper table.wpDataTable tfoot td {
18
  color: rgba(0, 0, 0, 0.87);
19
  }
20
 
assets/js/wpdatatables/admin/constructor/wdt.simpleTable.js CHANGED
@@ -1217,6 +1217,7 @@
1217
  wp.media.editor.send.attachment = function (props, attachment) {
1218
  window.wpActiveEditor = null;
1219
  wpdtEditor.setDataAtCell(highlightRow, highlightCol, adoptToHTML(attachment, props));
 
1220
  };
1221
  if (typeof wp !== 'undefined' && wp.media && wp.media.editor)
1222
  wp.media.editor.open();
1217
  wp.media.editor.send.attachment = function (props, attachment) {
1218
  window.wpActiveEditor = null;
1219
  wpdtEditor.setDataAtCell(highlightRow, highlightCol, adoptToHTML(attachment, props));
1220
+ $('.wdt-save-data').click();
1221
  };
1222
  if (typeof wp !== 'undefined' && wp.media && wp.media.editor)
1223
  wp.media.editor.open();
assets/js/wpdatatables/admin/table-settings/table_config_object.js CHANGED
@@ -88,7 +88,6 @@ var wpdatatable_config = {
88
  case 'xml':
89
  case 'json':
90
  case 'serialized':
91
- jQuery('.placeholders-settings-tab').animateFadeOut();
92
  jQuery('.wdt-table-settings #wdt-browse-button').removeClass('hidden');
93
  if( jQuery('.wdt-table-settings .input-path-block').hasClass('hidden') ) {
94
  jQuery('.wdt-table-settings .input-path-block').animateFadeIn();
@@ -184,7 +183,6 @@ var wpdatatable_config = {
184
  wpdatatable_config.table_type == 'manual' ?
185
  !jQuery('.editing-settings-tab').is(':visible') ? jQuery('.editing-settings-tab').animateFadeIn() : null :
186
  jQuery('.editing-settings-tab').addClass('hidden');
187
- jQuery('.placeholders-settings-tab').addClass('hidden');
188
  jQuery('#wdt-input-url').val( content );
189
  }
190
  jQuery('button.wdt-apply').prop( 'disabled', '' );
88
  case 'xml':
89
  case 'json':
90
  case 'serialized':
 
91
  jQuery('.wdt-table-settings #wdt-browse-button').removeClass('hidden');
92
  if( jQuery('.wdt-table-settings .input-path-block').hasClass('hidden') ) {
93
  jQuery('.wdt-table-settings .input-path-block').animateFadeIn();
183
  wpdatatable_config.table_type == 'manual' ?
184
  !jQuery('.editing-settings-tab').is(':visible') ? jQuery('.editing-settings-tab').animateFadeIn() : null :
185
  jQuery('.editing-settings-tab').addClass('hidden');
 
186
  jQuery('#wdt-input-url').val( content );
187
  }
188
  jQuery('button.wdt-apply').prop( 'disabled', '' );
assets/js/wpdatatables/wdt.chartWizard.js CHANGED
@@ -348,7 +348,7 @@ var wdtChartColumnsData = {};
348
  renderChart(false);
349
  });
350
 
351
- nextStepButton.show().addClass('wdt-save-chart').html('<i class="wpdt-icon-save"></i>Save chart')
352
 
353
  $('.wdt-preload-layer').animateFadeOut();
354
  }
348
  renderChart(false);
349
  });
350
 
351
+ nextStepButton.show().addClass('wdt-save-chart').html('<i class="wpdt-icon-save"></i>' + wpdatatablesEditStrings.saveChart)
352
 
353
  $('.wdt-preload-layer').animateFadeOut();
354
  }
assets/js/wpdatatables/wpdatatables_edit_table.js CHANGED
@@ -463,10 +463,6 @@ var additional_options;
463
  }
464
  data.hide_before_loaded = $('#wdtHideBeforeLoaded').is(':checked');
465
  data.table_id = $('#wpDataTableId').val();
466
- data.current_user_placeholder = $('#wdtCurrentUserIdPlaceholderDefault').val();
467
- data.var1_placeholder = $('#wdtVar1PlaceholderDefault').val();
468
- data.var2_placeholder = $('#wdtVar2PlaceholderDefault').val();
469
- data.var3_placeholder = $('#wdtVar3PlaceholderDefault').val();
470
 
471
  if ( typeof additional_options != 'undefined' ) {
472
  for ( var i = 0; i < additional_options.length; i++ ) {
463
  }
464
  data.hide_before_loaded = $('#wdtHideBeforeLoaded').is(':checked');
465
  data.table_id = $('#wpDataTableId').val();
 
 
 
 
466
 
467
  if ( typeof additional_options != 'undefined' ) {
468
  for ( var i = 0; i < additional_options.length; i++ ) {
config/config.inc.php CHANGED
@@ -9,7 +9,7 @@ defined('ABSPATH') or die("Cannot access pages directly.");
9
 
10
  // Current version
11
 
12
- define('WDT_CURRENT_VERSION', '2.1.8');
13
 
14
  /**
15
  * Regular Expressions
9
 
10
  // Current version
11
 
12
+ define('WDT_CURRENT_VERSION', '2.1.9');
13
 
14
  /**
15
  * Regular Expressions
controllers/wdt_admin.php CHANGED
@@ -231,6 +231,7 @@ function wdtAdminEnqueue($hook) {
231
  wdtAddOnsEnqueue();
232
  break;
233
  }
 
234
  }
235
 
236
  add_action('admin_enqueue_scripts', 'wdtAdminEnqueue');
231
  wdtAddOnsEnqueue();
232
  break;
233
  }
234
+ do_action('wpdatatables_enqueue_on_admin_pages');
235
  }
236
 
237
  add_action('admin_enqueue_scripts', 'wdtAdminEnqueue');
languages/en_US/{wpdatatables.mo → wpdatatables-en_US.mo} RENAMED
Binary file
languages/en_US/{wpdatatables.po → wpdatatables-en_US.po} RENAMED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-01-15 17:04+0100\n"
5
- "PO-Revision-Date: 2021-01-15 17:04+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
@@ -110,13 +110,13 @@ msgstr ""
110
  msgid "Go Premium"
111
  msgstr ""
112
 
113
- #: controllers/wdt_admin.php:516 controllers/wdt_admin.php:565
114
- #: controllers/wdt_admin.php:608 controllers/wdt_admin.php:629
115
- #: controllers/wdt_admin.php:676 controllers/wdt_admin.php:702
116
- #: controllers/wdt_admin.php:721 controllers/wdt_admin.php:741
117
- #: controllers/wdt_admin.php:760 controllers/wdt_admin.php:780
118
- #: controllers/wdt_admin.php:800 controllers/wdt_admin.php:820
119
- #: controllers/wdt_admin.php:839
120
  msgid "You do not have sufficient permissions to access this page."
121
  msgstr ""
122
 
@@ -218,6 +218,27 @@ msgid ""
218
  "placeholders and also for Export file name."
219
  msgstr ""
220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  #: source/class.wdtbrowsechartstable.php:141
222
  #: source/class.wdtbrowsetable.php:168
223
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
@@ -240,7 +261,7 @@ msgid "Configure"
240
  msgstr ""
241
 
242
  #: source/class.wdtbrowsechartstable.php:162
243
- #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:303
244
  #: templates/admin/browse/bulk_actions.inc.php:14
245
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
246
  msgid "Delete"
@@ -322,6 +343,11 @@ msgstr ""
322
  msgid "No wpDataCharts in the system yet."
323
  msgstr ""
324
 
 
 
 
 
 
325
  #: source/class.wdtbrowsetable.php:231
326
  msgid "MySQL"
327
  msgstr ""
@@ -330,15 +356,15 @@ msgstr ""
330
  msgid "Manual"
331
  msgstr ""
332
 
333
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2216
334
- #: source/class.wpdatatable.php:2286
335
- #: templates/admin/table-settings/table_settings_block.inc.php:1031
336
  msgid "Excel"
337
  msgstr ""
338
 
339
- #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2225
340
- #: source/class.wpdatatable.php:2296
341
- #: templates/admin/table-settings/table_settings_block.inc.php:1032
342
  msgid "CSV"
343
  msgstr ""
344
 
@@ -351,7 +377,7 @@ msgid "JSON"
351
  msgstr ""
352
 
353
  #: source/class.wdtbrowsetable.php:249
354
- #: templates/admin/table-settings/table_settings_block.inc.php:111
355
  #: templates/edit_table.inc.php:91
356
  msgid "Serialized PHP array"
357
  msgstr ""
@@ -441,22 +467,22 @@ msgstr ""
441
  msgid "Attachment"
442
  msgstr ""
443
 
444
- #: source/class.wdttools.php:159
445
  msgid ""
446
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
447
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
448
  "to the web</b> "
449
  msgstr ""
450
 
451
- #: source/class.wdttools.php:287
452
  msgid "Back to date"
453
  msgstr ""
454
 
455
- #: source/class.wdttools.php:288
456
  msgid "Browse"
457
  msgstr ""
458
 
459
- #: source/class.wdttools.php:289 source/class.wdttools.php:410
460
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
461
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
462
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
@@ -474,24 +500,24 @@ msgstr ""
474
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
475
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
476
  #: templates/admin/table-settings/table_preview_block.inc.php:86
477
- #: templates/admin/table-settings/table_settings_block.inc.php:40
478
  #: templates/common/delete_modal.inc.php:39
479
  msgid "Cancel"
480
  msgstr ""
481
 
482
- #: source/class.wdttools.php:290
483
  msgid " field cannot be empty!"
484
  msgstr ""
485
 
486
- #: source/class.wdttools.php:291
487
  msgid "Use selected file"
488
  msgstr ""
489
 
490
- #: source/class.wdttools.php:292
491
  msgid "Choose file"
492
  msgstr ""
493
 
494
- #: source/class.wdttools.php:293 templates/admin/common/error_modal.inc.php:23
495
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
496
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
497
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
@@ -499,379 +525,389 @@ msgstr ""
499
  msgid "Close"
500
  msgstr ""
501
 
502
- #: source/class.wdttools.php:294
503
  msgid "Column has been added!"
504
  msgstr ""
505
 
506
- #: source/class.wdttools.php:295
507
  msgid "Column header cannot be empty!"
508
  msgstr ""
509
 
510
- #: source/class.wdttools.php:296
511
  msgid "Please confirm column deletion!"
512
  msgstr ""
513
 
514
- #: source/class.wdttools.php:297
515
  msgid "Column has been removed!"
516
  msgstr ""
517
 
518
- #: source/class.wdttools.php:298
519
  msgid "Please select columns that you want to use in table"
520
  msgstr ""
521
 
522
- #: source/class.wdttools.php:299 source/class.wpdatatable.php:2234
523
- #: source/class.wpdatatable.php:2306
524
- #: templates/admin/table-settings/table_settings_block.inc.php:1033
525
  msgid "Copy"
526
  msgstr ""
527
 
528
- #: source/class.wdttools.php:300
529
  msgid "There was an error trying to insert a new row!"
530
  msgstr ""
531
 
532
- #: source/class.wdttools.php:301
533
  msgid "Data has been saved!"
534
  msgstr ""
535
 
536
- #: source/class.wdttools.php:302
537
  msgid "detach"
538
  msgstr ""
539
 
540
- #: source/class.wdttools.php:304
541
  msgid "Delete selected"
542
  msgstr ""
543
 
544
- #: source/class.wdttools.php:305 templates/settings.inc.php:553
545
  #: templates/settings.inc.php:627
546
  msgid "Error!"
547
  msgstr ""
548
 
549
- #: source/class.wdttools.php:306
550
  msgid "Please upload or choose a file from Media Library!"
551
  msgstr ""
552
 
553
- #: source/class.wdttools.php:307
554
  msgid "From"
555
  msgstr ""
556
 
557
- #: source/class.wdttools.php:308
558
  msgid "Please provide a valid e-mail address for field"
559
  msgstr ""
560
 
561
- #: source/class.wdttools.php:309
562
  msgid "Please provide a valid URL link for field"
563
  msgstr ""
564
 
565
- #: source/class.wdttools.php:310
566
  msgid "You have entered invalid value. Press ESC to cancel."
567
  msgstr ""
568
 
569
- #: source/class.wdttools.php:311 source/class.wdttools.php:340
570
  msgid "Show _MENU_ entries"
571
  msgstr ""
572
 
573
- #: source/class.wdttools.php:312
574
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
575
  msgid "Merge"
576
  msgstr ""
577
 
578
- #: source/class.wdttools.php:313
579
  msgid "New column"
580
  msgstr ""
581
 
582
- #: source/class.wdttools.php:314
583
  msgid "Number of columns can not be empty or 0"
584
  msgstr ""
585
 
586
- #: source/class.wdttools.php:315
587
  msgid "Number of rows can not be empty or 0"
588
  msgstr ""
589
 
590
- #: source/class.wdttools.php:317
591
  msgid ": activate to sort column ascending"
592
  msgstr ""
593
 
594
- #: source/class.wdttools.php:318
595
  msgid ": activate to sort column descending"
596
  msgstr ""
597
 
598
- #: source/class.wdttools.php:320
599
  msgid "Ok"
600
  msgstr ""
601
 
602
- #: source/class.wdttools.php:322
603
  msgid "First"
604
  msgstr ""
605
 
606
- #: source/class.wdttools.php:323
607
  msgid "Last"
608
  msgstr ""
609
 
610
- #: source/class.wdttools.php:324
611
  msgid "Next"
612
  msgstr ""
613
 
614
- #: source/class.wdttools.php:325
615
  msgid "Previous"
616
  msgstr ""
617
 
618
- #: source/class.wdttools.php:327
619
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
620
  msgid "Replace"
621
  msgstr ""
622
 
623
- #: source/class.wdttools.php:328
624
  msgid "Row has been deleted!"
625
  msgstr ""
626
 
627
- #: source/class.wdttools.php:329
 
 
 
 
628
  msgid "Select a file to use in table"
629
  msgstr ""
630
 
631
- #: source/class.wdttools.php:330
632
  msgid "Select an Excel or CSV file"
633
  msgstr ""
634
 
635
- #: source/class.wdttools.php:331
636
  msgid "No data available in table"
637
  msgstr ""
638
 
639
- #: source/class.wdttools.php:332
640
  msgid "Plugin settings saved successfully"
641
  msgstr ""
642
 
643
- #: source/class.wdttools.php:333
644
  msgid ""
645
  "Unable to save settings of plugin. Please try again or contact us over "
646
  "Support page."
647
  msgstr ""
648
 
649
- #: source/class.wdttools.php:334
650
  msgid "Shortcode has been copied to the clipboard."
651
  msgstr ""
652
 
653
- #: source/class.wdttools.php:335
654
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
655
  msgstr ""
656
 
657
- #: source/class.wdttools.php:336
658
  msgid "Showing 0 to 0 of 0 entries"
659
  msgstr ""
660
 
661
- #: source/class.wdttools.php:337
662
  msgid "(filtered from _MAX_ total entries)"
663
  msgstr ""
664
 
665
- #: source/class.wdttools.php:339
666
  msgid ","
667
  msgstr ""
668
 
669
- #: source/class.wdttools.php:341
670
  msgid "Loading..."
671
  msgstr ""
672
 
673
- #: source/class.wdttools.php:342
674
  msgid "Processing..."
675
  msgstr ""
676
 
677
- #: source/class.wdttools.php:343
678
  msgid "SQL error"
679
  msgstr ""
680
 
681
- #: source/class.wdttools.php:344
682
  msgid "Search: "
683
  msgstr ""
684
 
685
- #: source/class.wdttools.php:345 templates/settings.inc.php:559
686
  #: templates/settings.inc.php:625
687
  msgid "Success!"
688
  msgstr ""
689
 
690
- #: source/class.wdttools.php:346
691
  msgid "No matching records found"
692
  msgstr ""
693
 
694
- #: source/class.wdttools.php:347
695
  msgid ""
696
  "System info data has been copied to the clipboard. You can now paste it in "
697
  "file or in support topic."
698
  msgstr ""
699
 
700
- #: source/class.wdttools.php:348
701
  msgid "Table saved successfully!"
702
  msgstr ""
703
 
704
- #: source/class.wdttools.php:349
705
  msgid "To"
706
  msgstr ""
707
 
708
- #: source/class.wdttools.php:385
709
  #: templates/admin/common/premium_modal.inc.php:17
 
 
710
  msgid "This is a premium feature"
711
  msgstr ""
712
 
713
- #: source/class.wdttools.php:386
714
  #: templates/admin/common/premium_modal.inc.php:26
 
 
715
  msgid "This feature is available only in premium version of wpDataTables"
716
  msgstr ""
717
 
718
- #: source/class.wdttools.php:387
719
  #: templates/admin/getting-started/getting_started.inc.php:133
720
  #: templates/admin/getting-started/getting_started.inc.php:145
721
  #: templates/admin/getting-started/getting_started.inc.php:157
722
  #: templates/admin/getting-started/getting_started.inc.php:169
 
 
723
  msgid "Compare and View Pricing"
724
  msgstr ""
725
 
726
- #: source/class.wdttools.php:406
727
  msgid "Field cannot be empty!"
728
  msgstr ""
729
 
730
- #: source/class.wdttools.php:407
731
  msgid "Please choose chart type."
732
  msgstr ""
733
 
734
- #: source/class.wdttools.php:408
735
  msgid "Please select wpDataTable from dropdown."
736
  msgstr ""
737
 
738
- #: source/class.wdttools.php:409
739
  msgid "Columns field cannot be empty"
740
  msgstr ""
741
 
742
- #: source/class.wdttools.php:411
743
  msgid ""
744
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
745
  "clicking on Cancel button."
746
  msgstr ""
747
 
748
- #: source/class.wdttools.php:412
749
  msgid "Finish Tutorial"
750
  msgstr ""
751
 
752
- #: source/class.wdttools.php:413
753
  msgid "Continue"
754
  msgstr ""
755
 
756
- #: source/class.wdttools.php:414
757
  msgid "Start"
758
  msgstr ""
759
 
760
- #: source/class.wdttools.php:415
761
  msgid "Skip Tutorial"
762
  msgstr ""
763
 
764
- #: source/class.wdttools.php:418 source/class.wdttools.php:484
765
- #: source/class.wdttools.php:526
766
  msgid "Welcome to the tutorial!"
767
  msgstr ""
768
 
769
- #: source/class.wdttools.php:419 source/class.wdttools.php:485
770
- #: source/class.wdttools.php:527
771
  msgid "Hello "
772
  msgstr ""
773
 
774
- #: source/class.wdttools.php:419
775
  msgid ""
776
  ", in this tutorial, we will show you how to create a simple table from "
777
  "scratch by choosing a custom number of columns and rows. How to customize "
778
  "each cell, merge cells and a lot more."
779
  msgstr ""
780
 
781
- #: source/class.wdttools.php:422
782
  msgid " Let's create a new wpDataTable from scratch!"
783
  msgstr ""
784
 
785
- #: source/class.wdttools.php:423 source/class.wdttools.php:489
786
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
787
  msgstr ""
788
 
789
- #: source/class.wdttools.php:426
790
  msgid "Choose this option"
791
  msgstr ""
792
 
793
- #: source/class.wdttools.php:427
794
  msgid "Please select 'Create a simple table from scratch'."
795
  msgstr ""
796
 
797
- #: source/class.wdttools.php:430 source/class.wdttools.php:496
798
  msgid "Click Next"
799
  msgstr ""
800
 
801
- #: source/class.wdttools.php:431 source/class.wdttools.php:497
802
  msgid "Please click the 'Next' button to continue."
803
  msgstr ""
804
 
805
- #: source/class.wdttools.php:434
806
  msgid "Welcome to the Simple table wizard!"
807
  msgstr ""
808
 
809
- #: source/class.wdttools.php:435
810
  msgid "Please click 'Continue' button to move on."
811
  msgstr ""
812
 
813
- #: source/class.wdttools.php:438
814
  msgid "Choose a name for your table"
815
  msgstr ""
816
 
817
- #: source/class.wdttools.php:439
818
  msgid "After inserting table name, click 'Continue' to move on."
819
  msgstr ""
820
 
821
- #: source/class.wdttools.php:442
822
  msgid "Choose the number of columns for your table"
823
  msgstr ""
824
 
825
- #: source/class.wdttools.php:443
826
  msgid ""
827
  "Please choose how many columns it will have. Remember that you can always "
828
  "add or reduce the number of columns later. Click 'Continue' when you finish."
829
  msgstr ""
830
 
831
- #: source/class.wdttools.php:446
832
  msgid "Choose the number of rows for your table."
833
  msgstr ""
834
 
835
- #: source/class.wdttools.php:447
836
  msgid ""
837
  "Please choose how many rows it will have. Remember that you can always add "
838
  "or reduce the number of rows later. Click 'Continue' when you finish."
839
  msgstr ""
840
 
841
- #: source/class.wdttools.php:450
842
  msgid "Click on the 'Generate Table' button"
843
  msgstr ""
844
 
845
- #: source/class.wdttools.php:451
846
  msgid "When you click on the button, the empty table will be ready for you. "
847
  msgstr ""
848
 
849
- #: source/class.wdttools.php:454
850
  msgid "We are generating the table..."
851
  msgstr ""
852
 
853
- #: source/class.wdttools.php:455
854
  msgid "Please, when you see the table, click 'Continue' to move on."
855
  msgstr ""
856
 
857
- #: source/class.wdttools.php:458
858
  msgid ""
859
  "Nice job! You just configured your table and it is ready to fill it with "
860
  "data."
861
  msgstr ""
862
 
863
- #: source/class.wdttools.php:459
864
  msgid ""
865
  "Now we will guide you on how to insert data and check table layout throw "
866
  "Simple table editor, table toolbar and table preview. Please click "
867
  "'Continue' to move on."
868
  msgstr ""
869
 
870
- #: source/class.wdttools.php:462
871
  msgid "This is Simple table editor"
872
  msgstr ""
873
 
874
- #: source/class.wdttools.php:463
875
  msgid ""
876
  "Here you can populate your table with data. <br><br>You can move around the "
877
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
@@ -880,11 +916,11 @@ msgid ""
880
  "line of the row header. Click 'Continue' to move on."
881
  msgstr ""
882
 
883
- #: source/class.wdttools.php:466
884
  msgid "Check out the Simple table toolbar"
885
  msgstr ""
886
 
887
- #: source/class.wdttools.php:467
888
  msgid ""
889
  "Here you can style and insert custom data for each cell or range of cells. "
890
  "You can add or delete columns and rows, merge cells, customize sections by "
@@ -892,39 +928,39 @@ msgid ""
892
  "ratings or custom HTML code."
893
  msgstr ""
894
 
895
- #: source/class.wdttools.php:470
896
  msgid "Responsive table views"
897
  msgstr ""
898
 
899
- #: source/class.wdttools.php:471
900
  msgid ""
901
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
902
  "tab that you need, so you can make sure your table looks excellent across "
903
  "all devices. "
904
  msgstr ""
905
 
906
- #: source/class.wdttools.php:474
907
  msgid "Real-time preview"
908
  msgstr ""
909
 
910
- #: source/class.wdttools.php:475
911
  msgid ""
912
  "Here you will see how your table will look like on the page. Please click "
913
  "'Continue' to move on."
914
  msgstr ""
915
 
916
- #: source/class.wdttools.php:478
917
  msgid "Congrats! Your table is ready."
918
  msgstr ""
919
 
920
- #: source/class.wdttools.php:479
921
  msgid ""
922
  "Now you can copy the shortcode for this table, and check out how it looks on "
923
  "your website when you paste it to a post or page. You can always come back "
924
  "and edit the table as you like."
925
  msgstr ""
926
 
927
- #: source/class.wdttools.php:485
928
  msgid ""
929
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
930
  "existing data source. \"Linked\" in this context means that if you create a "
@@ -933,54 +969,54 @@ msgid ""
933
  "reflected in the table."
934
  msgstr ""
935
 
936
- #: source/class.wdttools.php:488
937
  msgid "Let's create a new wpDataTable!"
938
  msgstr ""
939
 
940
- #: source/class.wdttools.php:492
941
  msgid "Choose this option."
942
  msgstr ""
943
 
944
- #: source/class.wdttools.php:493
945
  msgid "Please select 'Create a table linked to an existing data source'."
946
  msgstr ""
947
 
948
- #: source/class.wdttools.php:500
949
- #: templates/admin/table-settings/table_settings_block.inc.php:95
950
  msgid "Input data source type"
951
  msgstr ""
952
 
953
- #: source/class.wdttools.php:501
954
  msgid "Please select a data source type that you need."
955
  msgstr ""
956
 
957
- #: source/class.wdttools.php:504
958
  msgid "Select Data source type"
959
  msgstr ""
960
 
961
- #: source/class.wdttools.php:505
962
  msgid ""
963
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
964
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
965
  "are available in Premium version)"
966
  msgstr ""
967
 
968
- #: source/class.wdttools.php:508
969
- #: templates/admin/table-settings/table_settings_block.inc.php:122
970
  msgid "Input file path or URL"
971
  msgstr ""
972
 
973
- #: source/class.wdttools.php:509
974
  msgid ""
975
  "Upload your file or provide the full URL here. When you finish click "
976
  "'Continue' button."
977
  msgstr ""
978
 
979
- #: source/class.wdttools.php:512
980
  msgid "Click Save Changes"
981
  msgstr ""
982
 
983
- #: source/class.wdttools.php:513
984
  msgid ""
985
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
986
  "get an error message after button click and you are not able to solve it, "
@@ -989,117 +1025,117 @@ msgid ""
989
  "click Skip tutorial."
990
  msgstr ""
991
 
992
- #: source/class.wdttools.php:516
993
  msgid "The table is creating..."
994
  msgstr ""
995
 
996
- #: source/class.wdttools.php:517
997
  msgid ""
998
  "Now the table is creating. Wait until you see it in the background and then "
999
  "click 'Continue'."
1000
  msgstr ""
1001
 
1002
- #: source/class.wdttools.php:520
1003
  msgid "Nice job! You just created your first wpDataTable!"
1004
  msgstr ""
1005
 
1006
- #: source/class.wdttools.php:521
1007
  msgid ""
1008
  "Now you can copy the shortcode for this table, and check out how it looks on "
1009
  "your website when you paste it to a post or page."
1010
  msgstr ""
1011
 
1012
- #: source/class.wdttools.php:527
1013
  msgid ""
1014
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1015
  "plugin."
1016
  msgstr ""
1017
 
1018
- #: source/class.wdttools.php:530
1019
  msgid "Let's create a new wpDataTables Chart!"
1020
  msgstr ""
1021
 
1022
- #: source/class.wdttools.php:531
1023
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1024
  msgstr ""
1025
 
1026
- #: source/class.wdttools.php:534
1027
  msgid "Welcome to the Chart Wizard!"
1028
  msgstr ""
1029
 
1030
- #: source/class.wdttools.php:535
1031
  msgid ""
1032
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1033
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1034
  msgstr ""
1035
 
1036
- #: source/class.wdttools.php:538
1037
  msgid "Follow the steps in the Chart Wizard"
1038
  msgstr ""
1039
 
1040
- #: source/class.wdttools.php:539
1041
  msgid ""
1042
  "By following these steps, you will finish building your chart in the Chart "
1043
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1044
  "'Continue' button to move forward."
1045
  msgstr ""
1046
 
1047
- #: source/class.wdttools.php:542
1048
  msgid "Choose a name for your Chart"
1049
  msgstr ""
1050
 
1051
- #: source/class.wdttools.php:543
1052
  msgid "Click 'Continue' button when you’re ready to move forward."
1053
  msgstr ""
1054
 
1055
- #: source/class.wdttools.php:546
1056
  msgid "In wpDataTables you can find several charts render engines."
1057
  msgstr ""
1058
 
1059
- #: source/class.wdttools.php:547
1060
  msgid ""
1061
  "Click on the dropdown, and you will see several options that you can choose "
1062
  "from.(Google charts are only available) <br><br>To continue, click on the "
1063
  "dropdown."
1064
  msgstr ""
1065
 
1066
- #: source/class.wdttools.php:550
1067
  msgid "Choose Google chart engine."
1068
  msgstr ""
1069
 
1070
- #: source/class.wdttools.php:551
1071
  msgid ""
1072
  "By clicking on Google chart options, you will choose the engine that will "
1073
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1074
  "to move forward."
1075
  msgstr ""
1076
 
1077
- #: source/class.wdttools.php:554
1078
  msgid "Different charts types. "
1079
  msgstr ""
1080
 
1081
- #: source/class.wdttools.php:555
1082
  msgid ""
1083
  "Here you can choose a chart type. Please, click on the chart type that you "
1084
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1085
  "forward."
1086
  msgstr ""
1087
 
1088
- #: source/class.wdttools.php:558
1089
  msgid "The first step is finished!"
1090
  msgstr ""
1091
 
1092
- #: source/class.wdttools.php:559
1093
  msgid "Let's move on. Please, click 'Next' to continue."
1094
  msgstr ""
1095
 
1096
- #: source/class.wdttools.php:562
1097
  msgid ""
1098
  "Now you need to choose a wpDataTable based on which we will build a chart "
1099
  "for you"
1100
  msgstr ""
1101
 
1102
- #: source/class.wdttools.php:563
1103
  msgid ""
1104
  "Click on the dropdown, and all your tables will be listed. The columns of "
1105
  "the table that you choose will be used for creating the chart.<br><br>If you "
@@ -1107,59 +1143,59 @@ msgid ""
1107
  "button and create wpDataTable that would contain the data to visualize first."
1108
  msgstr ""
1109
 
1110
- #: source/class.wdttools.php:566
1111
  msgid "Pick your wpDataTable"
1112
  msgstr ""
1113
 
1114
- #: source/class.wdttools.php:567
1115
  msgid ""
1116
  "Pick a wpDataTable from which you want to render a chart and when you "
1117
  "finish, please click 'Continue' to move on."
1118
  msgstr ""
1119
 
1120
- #: source/class.wdttools.php:570
1121
  msgid "The second step is finished!"
1122
  msgstr ""
1123
 
1124
- #: source/class.wdttools.php:571
1125
  msgid ""
1126
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1127
  msgstr ""
1128
 
1129
- #: source/class.wdttools.php:574
1130
  msgid "Just a heads up!"
1131
  msgstr ""
1132
 
1133
- #: source/class.wdttools.php:575
1134
  msgid ""
1135
  "Here you will choose from which columns you will create a chart.<br><br> "
1136
  "Please click 'Continue' button to move forward."
1137
  msgstr ""
1138
 
1139
- #: source/class.wdttools.php:578
1140
  msgid "Meet the wpDataTable Column Blocks"
1141
  msgstr ""
1142
 
1143
- #: source/class.wdttools.php:579
1144
  msgid ""
1145
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1146
  "or click on the arrow to move the desired column to the 'Columns used in the "
1147
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1148
  msgstr ""
1149
 
1150
- #: source/class.wdttools.php:582
1151
  msgid "Well done!"
1152
  msgstr ""
1153
 
1154
- #: source/class.wdttools.php:583
1155
  msgid "Just two more steps to go. Please click 'Next' to continue."
1156
  msgstr ""
1157
 
1158
- #: source/class.wdttools.php:586
1159
  msgid "Chart settings and chart preview."
1160
  msgstr ""
1161
 
1162
- #: source/class.wdttools.php:587
1163
  msgid ""
1164
  "Here you can adjust chart settings, different parameters are grouped in "
1165
  "section; adjusting the parameters will be reflected in the preview of your "
@@ -1167,51 +1203,51 @@ msgid ""
1167
  "button to move forward."
1168
  msgstr ""
1169
 
1170
- #: source/class.wdttools.php:590
1171
  msgid "In this sidebar, you can find the chart settings section."
1172
  msgstr ""
1173
 
1174
- #: source/class.wdttools.php:591
1175
  msgid ""
1176
  "By clicking on each section, you can set your desired parameters per section."
1177
  "<br><br> Please click 'Continue' button to move on."
1178
  msgstr ""
1179
 
1180
- #: source/class.wdttools.php:594
1181
  msgid "Here are the available chart options"
1182
  msgstr ""
1183
 
1184
- #: source/class.wdttools.php:595
1185
  msgid ""
1186
  "Set different chart options for the chosen section to get your desired chart "
1187
  "look.<br><br> Please click 'Continue' button to move on."
1188
  msgstr ""
1189
 
1190
- #: source/class.wdttools.php:598
1191
  msgid "How your chart will look like on the page of your website"
1192
  msgstr ""
1193
 
1194
- #: source/class.wdttools.php:599
1195
  msgid ""
1196
  "Here you can see a preview of your chart based on the settings you have "
1197
  "chosen.<br><br> Please click 'Continue' button to move on."
1198
  msgstr ""
1199
 
1200
- #: source/class.wdttools.php:602
1201
  msgid "You can save your chart now"
1202
  msgstr ""
1203
 
1204
- #: source/class.wdttools.php:603
1205
  msgid ""
1206
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1207
  "button and all your settings for this chart will be saved in the database."
1208
  msgstr ""
1209
 
1210
- #: source/class.wdttools.php:606
1211
  msgid "Congrats! Your first chart is ready!"
1212
  msgstr ""
1213
 
1214
- #: source/class.wdttools.php:607
1215
  msgid ""
1216
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1217
  "page. <br><br>You may now finish this tutorial. "
@@ -1225,44 +1261,44 @@ msgstr ""
1225
  msgid "You are mixing data types (several date axes and several number)"
1226
  msgstr ""
1227
 
1228
- #: source/class.wpdatatable.php:1895
1229
  msgid ""
1230
  "You are trying to load a table of an unknown type. Probably you did not "
1231
  "activate the addon which is required to use this table type."
1232
  msgstr ""
1233
 
1234
- #: source/class.wpdatatable.php:2134 source/class.wpdatatable.php:2137
1235
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1236
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1237
- #: templates/admin/table-settings/table_settings_block.inc.php:312
1238
  #: templates/edit_table.inc.php:409
1239
  msgid "All"
1240
  msgstr ""
1241
 
1242
- #: source/class.wpdatatable.php:2195 source/class.wpdatatable.php:2264
1243
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1244
  msgid "Columns"
1245
  msgstr ""
1246
 
1247
- #: source/class.wpdatatable.php:2205 source/class.wpdatatable.php:2274
1248
- #: templates/admin/table-settings/table_settings_block.inc.php:1030
1249
  msgid "Print"
1250
  msgstr ""
1251
 
1252
- #: source/class.wpdatatable.php:2244 source/class.wpdatatable.php:2317
1253
- #: templates/admin/table-settings/table_settings_block.inc.php:1034
1254
  msgid "PDF"
1255
  msgstr ""
1256
 
1257
- #: source/class.wpdatatable.php:2252
1258
  msgid "Export"
1259
  msgstr ""
1260
 
1261
- #: source/class.wpdatatable.php:2330
1262
  msgid "Search table"
1263
  msgstr ""
1264
 
1265
- #: source/class.wpdatatable.php:2331
1266
  msgid "Showing _MENU_ Entries"
1267
  msgstr ""
1268
 
@@ -1281,7 +1317,7 @@ msgstr ""
1281
  msgid "if you have some questions or problems with the plugin."
1282
  msgstr ""
1283
 
1284
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:498
1285
  msgid "wpDataTables Addons"
1286
  msgstr ""
1287
 
@@ -1295,12 +1331,12 @@ msgid ""
1295
  msgstr ""
1296
 
1297
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1298
- #: templates/admin/dashboard/dashboard.inc.php:569
1299
  msgid "Report Builder"
1300
  msgstr ""
1301
 
1302
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1303
- #: templates/admin/dashboard/dashboard.inc.php:573
1304
  msgid ""
1305
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1306
  "XLSX documents filled in with actual data from your database."
@@ -1326,7 +1362,7 @@ msgid "NEW"
1326
  msgstr ""
1327
 
1328
  #: templates/admin/addons/addons.inc.php:40
1329
- #: templates/admin/dashboard/dashboard.inc.php:516
1330
  msgid "Master Detail Tables for wpDataTables"
1331
  msgstr ""
1332
 
@@ -1347,7 +1383,7 @@ msgid "Learn more"
1347
  msgstr ""
1348
 
1349
  #: templates/admin/addons/addons.inc.php:67
1350
- #: templates/admin/dashboard/dashboard.inc.php:543
1351
  msgid "Powerful Filters for wpDataTables"
1352
  msgstr ""
1353
 
@@ -1359,24 +1395,24 @@ msgid ""
1359
  msgstr ""
1360
 
1361
  #: templates/admin/addons/addons.inc.php:120
1362
- #: templates/admin/dashboard/dashboard.inc.php:596
1363
  msgid "Formidable Forms integration for wpDataTables"
1364
  msgstr ""
1365
 
1366
  #: templates/admin/addons/addons.inc.php:123
1367
- #: templates/admin/dashboard/dashboard.inc.php:600
1368
  msgid ""
1369
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1370
  "create wpDataTables from Formidable Forms entries data."
1371
  msgstr ""
1372
 
1373
  #: templates/admin/addons/addons.inc.php:143
1374
- #: templates/admin/dashboard/dashboard.inc.php:622
1375
  msgid "Gravity Forms integration for wpDataTables"
1376
  msgstr ""
1377
 
1378
  #: templates/admin/addons/addons.inc.php:146
1379
- #: templates/admin/dashboard/dashboard.inc.php:626
1380
  msgid ""
1381
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1382
  "wpDataTables from Gravity Forms entries data."
@@ -1452,7 +1488,7 @@ msgid "Chart title & type"
1452
  msgstr ""
1453
 
1454
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1455
- #: templates/admin/table-settings/table_settings_block.inc.php:59
1456
  #: templates/chart_wizard.inc.php:36
1457
  msgid "Data source"
1458
  msgstr ""
@@ -1495,6 +1531,7 @@ msgstr ""
1495
 
1496
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1497
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
 
1498
  #: templates/edit_table.inc.php:730
1499
  msgid "Color"
1500
  msgstr ""
@@ -1710,8 +1747,8 @@ msgstr ""
1710
  #: templates/admin/getting-started/getting_started.inc.php:144
1711
  #: templates/admin/getting-started/getting_started.inc.php:156
1712
  #: templates/admin/getting-started/getting_started.inc.php:168
1713
- #: templates/admin/table-settings/table_settings_block.inc.php:105
1714
- #: templates/admin/table-settings/table_settings_block.inc.php:108
1715
  msgid "Available in Premium"
1716
  msgstr ""
1717
 
@@ -1835,10 +1872,6 @@ msgstr ""
1835
  msgid "Axes"
1836
  msgstr ""
1837
 
1838
- #: templates/admin/chart_wizard/steps/step4.inc.php:17
1839
- msgid "Title"
1840
- msgstr ""
1841
-
1842
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1843
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1844
  msgid "Tooltip"
@@ -1927,6 +1960,8 @@ msgstr ""
1927
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
1928
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
1929
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
 
 
1930
  msgid "Background color"
1931
  msgstr ""
1932
 
@@ -1945,6 +1980,7 @@ msgstr ""
1945
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
1946
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
1947
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
 
1948
  msgid "Border color"
1949
  msgstr ""
1950
 
@@ -1983,6 +2019,7 @@ msgstr ""
1983
 
1984
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
1985
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
 
1986
  msgid "Font size"
1987
  msgstr ""
1988
 
@@ -2344,14 +2381,14 @@ msgstr ""
2344
  #: templates/admin/dashboard/dashboard.inc.php:30
2345
  #: templates/admin/getting-started/getting_started.inc.php:34
2346
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2347
- #: templates/admin/settings/settings.inc.php:96
2348
  #: templates/admin/support/support.inc.php:31
2349
  #: templates/admin/support/support.inc.php:47
2350
  #: templates/admin/system-info/system_info.inc.php:29
2351
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2352
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2353
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2354
- #: templates/admin/table-settings/table_settings_block.inc.php:1197
2355
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2356
  msgid "View Documentation"
2357
  msgstr ""
@@ -2580,180 +2617,181 @@ msgid "Version "
2580
  msgstr ""
2581
 
2582
  #: templates/admin/dashboard/dashboard.inc.php:340
2583
- msgid ""
2584
- "A minor update with a couple of features, bug fixes and stability "
2585
- "improvements:"
2586
  msgstr ""
2587
 
2588
  #: templates/admin/dashboard/dashboard.inc.php:345
2589
  msgid ""
2590
- "<strong>Feature:</strong> New option to set column data to be available/"
2591
- "disabled in global search results."
2592
  msgstr ""
2593
 
2594
  #: templates/admin/dashboard/dashboard.inc.php:346
2595
  msgid ""
2596
- "<strong>Feature:</strong> New option to set NOFOLLOW relation for links in "
2597
- "simple and data tables."
2598
  msgstr ""
2599
 
2600
  #: templates/admin/dashboard/dashboard.inc.php:347
2601
  msgid ""
2602
- "<strong>BugFix:</strong> Fixed issue with saving page in Divi builder with "
2603
- "simple table shortcode."
2604
  msgstr ""
2605
 
2606
  #: templates/admin/dashboard/dashboard.inc.php:348
2607
  msgid ""
2608
- "<strong>BugFix:</strong> Fixed issue with not showing tabs in backend after "
2609
- "switch."
2610
  msgstr ""
2611
 
2612
  #: templates/admin/dashboard/dashboard.inc.php:349
2613
  msgid ""
2614
- "<strong>BugFix:</strong> Fixed issue with tooltip in backend when is loaded "
2615
- "jQuery UI."
2616
  msgstr ""
2617
 
2618
  #: templates/admin/dashboard/dashboard.inc.php:350
 
 
 
 
2619
  msgid "Other small bug fixes and stability improvements."
2620
  msgstr ""
2621
 
2622
- #: templates/admin/dashboard/dashboard.inc.php:362
2623
  msgid "Go Premium!"
2624
  msgstr ""
2625
 
2626
- #: templates/admin/dashboard/dashboard.inc.php:368
2627
  msgid "View Comparison"
2628
  msgstr ""
2629
 
2630
- #: templates/admin/dashboard/dashboard.inc.php:376
2631
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2632
  msgid ""
2633
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2634
  "of the powerful features."
2635
  msgstr ""
2636
 
2637
- #: templates/admin/dashboard/dashboard.inc.php:380
2638
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2639
  msgid "Create a table manually"
2640
  msgstr ""
2641
 
2642
- #: templates/admin/dashboard/dashboard.inc.php:383
2643
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2644
  msgid "Creating tables from Google Spreadsheet"
2645
  msgstr ""
2646
 
2647
- #: templates/admin/dashboard/dashboard.inc.php:386
2648
  msgid ""
2649
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2650
  "tables via Google Sheet API"
2651
  msgstr ""
2652
 
2653
- #: templates/admin/dashboard/dashboard.inc.php:389
2654
  msgid ""
2655
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2656
  "tables from Private Google Spreadsheet"
2657
  msgstr ""
2658
 
2659
- #: templates/admin/dashboard/dashboard.inc.php:392
2660
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2661
  msgid "Creating MySQL-based tables from database"
2662
  msgstr ""
2663
 
2664
- #: templates/admin/dashboard/dashboard.inc.php:395
2665
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2666
  msgid "Creating MySQL-based tables from Wordpress post types"
2667
  msgstr ""
2668
 
2669
- #: templates/admin/dashboard/dashboard.inc.php:398
2670
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2671
  #: templates/edit_table.inc.php:329
2672
  msgid "Advanced filtering"
2673
  msgstr ""
2674
 
2675
- #: templates/admin/dashboard/dashboard.inc.php:401
2676
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2677
- #: templates/admin/table-settings/table_settings_block.inc.php:144
2678
  #: templates/edit_table.inc.php:282
2679
  msgid "Server-side processing"
2680
  msgstr ""
2681
 
2682
- #: templates/admin/dashboard/dashboard.inc.php:404
2683
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2684
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2685
  msgstr ""
2686
 
2687
- #: templates/admin/dashboard/dashboard.inc.php:407
2688
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2689
  msgid "Front-end table editing"
2690
  msgstr ""
2691
 
2692
- #: templates/admin/dashboard/dashboard.inc.php:410
2693
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2694
  msgid "Excel-like editing"
2695
  msgstr ""
2696
 
2697
- #: templates/admin/dashboard/dashboard.inc.php:413
2698
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2699
  msgid "Creating charts with Highcharts"
2700
  msgstr ""
2701
 
2702
- #: templates/admin/dashboard/dashboard.inc.php:416
2703
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2704
  msgid "Creating charts with Chart.js"
2705
  msgstr ""
2706
 
2707
- #: templates/admin/dashboard/dashboard.inc.php:419
2708
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2709
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2710
  #: templates/edit_table.inc.php:301
2711
  msgid "Responsive"
2712
  msgstr ""
2713
 
2714
- #: templates/admin/dashboard/dashboard.inc.php:422
2715
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2716
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2717
  #: templates/edit_table.inc.php:750
2718
  msgid "Conditional formatting"
2719
  msgstr ""
2720
 
2721
- #: templates/admin/dashboard/dashboard.inc.php:425
2722
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2723
  msgid "Calculating Tools"
2724
  msgstr ""
2725
 
2726
- #: templates/admin/dashboard/dashboard.inc.php:428
2727
  msgid "Formula columns"
2728
  msgstr ""
2729
 
2730
- #: templates/admin/dashboard/dashboard.inc.php:431
2731
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2732
- #: templates/admin/table-settings/table_settings_block.inc.php:79
2733
  msgid "Placeholders"
2734
  msgstr ""
2735
 
2736
- #: templates/admin/dashboard/dashboard.inc.php:434
2737
  msgid "Premium support"
2738
  msgstr ""
2739
 
2740
- #: templates/admin/dashboard/dashboard.inc.php:438
2741
  msgid "Get Premium Today"
2742
  msgstr ""
2743
 
2744
- #: templates/admin/dashboard/dashboard.inc.php:445
2745
  msgid "News Blog"
2746
  msgstr ""
2747
 
2748
- #: templates/admin/dashboard/dashboard.inc.php:450
2749
  msgid "Checkout useful articles from wpdatatables.com"
2750
  msgstr ""
2751
 
2752
- #: templates/admin/dashboard/dashboard.inc.php:473
2753
  msgid "Please install and enable PHP extensions xml and dom on your server."
2754
  msgstr ""
2755
 
2756
- #: templates/admin/dashboard/dashboard.inc.php:481
2757
  msgid ""
2758
  "Never miss notifications about new cool features, promotions,\n"
2759
  " giveaways or freebies – subscribe to our "
@@ -2761,48 +2799,48 @@ msgid ""
2761
  " about 1 message per month and never spam!"
2762
  msgstr ""
2763
 
2764
- #: templates/admin/dashboard/dashboard.inc.php:499
2765
  msgid "Premium "
2766
  msgstr ""
2767
 
2768
- #: templates/admin/dashboard/dashboard.inc.php:502
2769
  msgid ""
2770
  "While wpDataTables itself provides quite a large amount of features and "
2771
  "unlimited customisation, flexibility, you can achieve even more with our "
2772
  "premium addons.(requires wpDataTables Premium version)"
2773
  msgstr ""
2774
 
2775
- #: templates/admin/dashboard/dashboard.inc.php:520
2776
  msgid ""
2777
  "A wpDataTables addon which allows showing additional details for a specific "
2778
  "row in a popup or a separate page or post."
2779
  msgstr ""
2780
 
2781
- #: templates/admin/dashboard/dashboard.inc.php:526
2782
- #: templates/admin/dashboard/dashboard.inc.php:553
2783
- #: templates/admin/dashboard/dashboard.inc.php:579
2784
- #: templates/admin/dashboard/dashboard.inc.php:606
2785
- #: templates/admin/dashboard/dashboard.inc.php:632
2786
- #: templates/admin/dashboard/dashboard.inc.php:665
2787
  msgid "Learn More"
2788
  msgstr ""
2789
 
2790
- #: templates/admin/dashboard/dashboard.inc.php:547
2791
  msgid ""
2792
  "An add-on for wpDataTables that provides powerful filtering features: "
2793
  "cascade filtering, applying filters on button click, hide table before "
2794
  "filtering."
2795
  msgstr ""
2796
 
2797
- #: templates/admin/dashboard/dashboard.inc.php:643
2798
  msgid "Need free booking plugin?"
2799
  msgstr ""
2800
 
2801
- #: templates/admin/dashboard/dashboard.inc.php:652
2802
  msgid "Appointments and Events WordPress Booking Plugin"
2803
  msgstr ""
2804
 
2805
- #: templates/admin/dashboard/dashboard.inc.php:655
2806
  msgid ""
2807
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2808
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2813,26 +2851,26 @@ msgid ""
2813
  "each month."
2814
  msgstr ""
2815
 
2816
- #: templates/admin/dashboard/dashboard.inc.php:658
2817
  msgid "Rating: 4.3 - ‎97 reviews"
2818
  msgstr ""
2819
 
2820
- #: templates/admin/dashboard/dashboard.inc.php:661
2821
  msgid "Free Download"
2822
  msgstr ""
2823
 
2824
- #: templates/admin/dashboard/dashboard.inc.php:676
2825
  #: templates/admin/getting-started/getting_started.inc.php:184
2826
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2827
  #: templates/admin/support/support.inc.php:78
2828
  #: templates/admin/system-info/system_info.inc.php:509
2829
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2830
  msgid "Made by"
2831
  msgstr ""
2832
 
2833
- #: templates/admin/dashboard/dashboard.inc.php:684
2834
  #: templates/admin/getting-started/getting_started.inc.php:192
2835
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2836
  #: templates/admin/support/support.inc.php:45
2837
  #: templates/admin/support/support.inc.php:86
2838
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2841,9 +2879,9 @@ msgstr ""
2841
  msgid "Documentation"
2842
  msgstr ""
2843
 
2844
- #: templates/admin/dashboard/dashboard.inc.php:688
2845
  #: templates/admin/getting-started/getting_started.inc.php:196
2846
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2847
  #: templates/admin/support/support.inc.php:24
2848
  #: templates/admin/support/support.inc.php:90
2849
  #: templates/admin/system-info/system_info.inc.php:521
@@ -2969,7 +3007,7 @@ msgid "Lite vs Premium comparison"
2969
  msgstr ""
2970
 
2971
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
2972
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
2973
  msgid "Go Premium Now"
2974
  msgstr ""
2975
 
@@ -2982,7 +3020,7 @@ msgid "Lite"
2982
  msgstr ""
2983
 
2984
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
2985
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:471
2986
  msgid "Premium"
2987
  msgstr ""
2988
 
@@ -3012,8 +3050,10 @@ msgstr ""
3012
 
3013
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3014
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3015
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3016
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
 
 
3017
  msgid "NEW!"
3018
  msgstr ""
3019
 
@@ -3030,15 +3070,16 @@ msgstr ""
3030
 
3031
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3032
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3033
- #: templates/admin/table-settings/table_settings_block.inc.php:626
3034
- #: templates/admin/table-settings/table_settings_block.inc.php:634
3035
  msgid "Sorting"
3036
  msgstr ""
3037
 
3038
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3039
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3040
- #: templates/admin/table-settings/table_settings_block.inc.php:489
3041
- #: templates/admin/table-settings/table_settings_block.inc.php:497
 
3042
  msgid "Pagination"
3043
  msgstr ""
3044
 
@@ -3065,7 +3106,7 @@ msgid "Customize charts"
3065
  msgstr ""
3066
 
3067
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3068
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:465
3069
  msgid "Limited"
3070
  msgstr ""
3071
 
@@ -3073,37 +3114,41 @@ msgstr ""
3073
  msgid "Some options are not available."
3074
  msgstr ""
3075
 
3076
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
3077
- msgid "Creating tables via Google Sheet API"
3078
  msgstr ""
3079
 
3080
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
 
 
 
 
3081
  msgid "Creating tables from Private Google Spreadsheet"
3082
  msgstr ""
3083
 
3084
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:461
3085
  msgid "Support"
3086
  msgstr ""
3087
 
3088
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:467
3089
  msgid "Response time is slow and can be up to 5 business days."
3090
  msgstr ""
3091
 
3092
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3093
  msgid ""
3094
  "* Please note that wpDataTables add-ons are not included in premium version "
3095
  "of plugin."
3096
  msgstr ""
3097
 
3098
  #: templates/admin/settings/settings.inc.php:33
3099
- #: templates/admin/settings/settings.inc.php:91
3100
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3101
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3102
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3103
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3104
  #: templates/admin/table-settings/table_preview_block.inc.php:89
3105
- #: templates/admin/table-settings/table_settings_block.inc.php:47
3106
  #: templates/admin/table-settings/table_settings_block.inc.php:48
 
3107
  msgid "Save Changes"
3108
  msgstr ""
3109
 
@@ -3127,16 +3172,23 @@ msgstr ""
3127
  msgid "Custom JS and CSS"
3128
  msgstr ""
3129
 
3130
- #: templates/admin/settings/settings.inc.php:88 templates/settings.inc.php:434
 
 
 
 
3131
  msgid "Reset colors and fonts to default"
3132
  msgstr ""
3133
 
3134
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3135
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
 
 
3136
  msgid "Font"
3137
  msgstr ""
3138
 
3139
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
 
3140
  #: templates/settings.inc.php:428
3141
  msgid ""
3142
  "This font will be used in rendered tables. Leave blank not to override "
@@ -3144,41 +3196,51 @@ msgid ""
3144
  msgstr ""
3145
 
3146
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
 
3147
  msgid "Define the font size"
3148
  msgstr ""
3149
 
3150
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3151
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3152
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
 
 
3153
  msgid "Font color"
3154
  msgstr ""
3155
 
3156
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
 
3157
  msgid "This color is used for the main font in table cells."
3158
  msgstr ""
3159
 
3160
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3161
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
 
3162
  msgid "Header"
3163
  msgstr ""
3164
 
3165
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
 
3166
  msgid "The color is used for background of the table header."
3167
  msgstr ""
3168
 
3169
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
 
3170
  msgid "This color is used for the border in the table header."
3171
  msgstr ""
3172
 
3173
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
 
3174
  msgid "This color is used for the font in the table header."
3175
  msgstr ""
3176
 
3177
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
 
3178
  msgid "Active and hover color\t"
3179
  msgstr ""
3180
 
3181
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
 
3182
  msgid ""
3183
  "This color is used when you hover the mouse above the table header, or when "
3184
  "you choose a column."
@@ -3189,38 +3251,47 @@ msgid "Table border "
3189
  msgstr ""
3190
 
3191
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
 
3192
  msgid "Inner border"
3193
  msgstr ""
3194
 
3195
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
 
3196
  msgid "This color is used for the inner border in the table between cells."
3197
  msgstr ""
3198
 
3199
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
 
3200
  msgid "Outer border"
3201
  msgstr ""
3202
 
3203
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
 
3204
  msgid "This color is used for the outer border of the whole table body."
3205
  msgstr ""
3206
 
3207
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
 
3208
  msgid "Table borders"
3209
  msgstr ""
3210
 
3211
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
 
3212
  msgid "When this is checked, borders in table will be removed "
3213
  msgstr ""
3214
 
3215
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
 
3216
  msgid "Remove borders in table"
3217
  msgstr ""
3218
 
3219
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
 
3220
  msgid "Header border"
3221
  msgstr ""
3222
 
3223
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
 
3224
  msgid "When this is checked,borders in header will be removed "
3225
  msgstr ""
3226
 
@@ -3229,62 +3300,76 @@ msgid "Remove borders in header"
3229
  msgstr ""
3230
 
3231
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
 
3232
  msgid "Row color"
3233
  msgstr ""
3234
 
3235
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
 
3236
  msgid "Even row background"
3237
  msgstr ""
3238
 
3239
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
 
3240
  msgid "This color is used for for background in even rows."
3241
  msgstr ""
3242
 
3243
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
 
3244
  msgid "Odd row background"
3245
  msgstr ""
3246
 
3247
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
 
3248
  msgid "This color is used for for background in odd rows."
3249
  msgstr ""
3250
 
3251
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
 
3252
  msgid "Hover row"
3253
  msgstr ""
3254
 
3255
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
 
3256
  msgid ""
3257
  "This color is used for to highlight the row when you hover your mouse above "
3258
  "it."
3259
  msgstr ""
3260
 
3261
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
 
3262
  msgid "Background for selected rows"
3263
  msgstr ""
3264
 
3265
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
 
3266
  msgid "This color is used for background in selected rows."
3267
  msgstr ""
3268
 
3269
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
 
3270
  msgid "Cell color"
3271
  msgstr ""
3272
 
3273
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
 
3274
  msgid "Sorted columns, even rows"
3275
  msgstr ""
3276
 
3277
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
 
3278
  msgid ""
3279
  "This color is used for background in cells which are in the active columns "
3280
  "(columns used for sorting) in even rows."
3281
  msgstr ""
3282
 
3283
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
 
3284
  msgid "Sorted columns, odd rows"
3285
  msgstr ""
3286
 
3287
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
 
3288
  msgid ""
3289
  "This color is used for background in cells which are in the active columns "
3290
  "(columns used for sorting) in odd rows."
@@ -3376,43 +3461,53 @@ msgid ""
3376
  msgstr ""
3377
 
3378
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
 
3379
  msgid "This color is used for the background of the pagination"
3380
  msgstr ""
3381
 
3382
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
 
3383
  msgid "This color is used for the color of the links in the pagination."
3384
  msgstr ""
3385
 
3386
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
 
3387
  msgid "Current page background color"
3388
  msgstr ""
3389
 
3390
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
 
3391
  msgid "The color is used for background of the current page"
3392
  msgstr ""
3393
 
3394
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
 
3395
  msgid "Current page color"
3396
  msgstr ""
3397
 
3398
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
 
3399
  msgid "This color is used for the color of the current page."
3400
  msgstr ""
3401
 
3402
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
 
3403
  msgid "Other pages hover background color"
3404
  msgstr ""
3405
 
3406
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
 
3407
  msgid ""
3408
  "This background color is used when you hover the mouse above the other pages"
3409
  msgstr ""
3410
 
3411
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
 
3412
  msgid "Other pages hover color"
3413
  msgstr ""
3414
 
3415
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
 
3416
  msgid "This color is used when you hover the mouse above the other pages."
3417
  msgstr ""
3418
 
@@ -3428,6 +3523,7 @@ msgid ""
3428
  msgstr ""
3429
 
3430
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
 
3431
  #: templates/settings.inc.php:463
3432
  msgid "Custom wpDataTables CSS"
3433
  msgstr ""
@@ -3447,15 +3543,18 @@ msgid "Use minified version of Javascript files"
3447
  msgstr ""
3448
 
3449
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
 
3450
  #: templates/settings.inc.php:45
3451
  msgid "Interface language"
3452
  msgstr ""
3453
 
3454
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
 
3455
  msgid "Pick the language which will be used in tables interface."
3456
  msgstr ""
3457
 
3458
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
 
3459
  msgid "English (default)"
3460
  msgstr ""
3461
 
@@ -3468,278 +3567,286 @@ msgstr ""
3468
  msgid "Pick the date format to use in date column type."
3469
  msgstr ""
3470
 
3471
- #: templates/admin/settings/tabs/main_plugin_settings.php:73
3472
  #: templates/settings.inc.php:119
3473
  msgid "Time format"
3474
  msgstr ""
3475
 
3476
- #: templates/admin/settings/tabs/main_plugin_settings.php:75
3477
  msgid "Pick the time format to use in datetime and time column type."
3478
  msgstr ""
3479
 
3480
- #: templates/admin/settings/tabs/main_plugin_settings.php:90
3481
  msgid "Parse shortcodes"
3482
  msgstr ""
3483
 
3484
- #: templates/admin/settings/tabs/main_plugin_settings.php:92
3485
  msgid ""
3486
  "If the option is enabled, you can use shortcodes of other plugins for "
3487
  "generating content."
3488
  msgstr ""
3489
 
3490
- #: templates/admin/settings/tabs/main_plugin_settings.php:96
3491
  msgid "Parse shortcodes in strings"
3492
  msgstr ""
3493
 
3494
- #: templates/admin/settings/tabs/main_plugin_settings.php:103
 
3495
  #: templates/settings.inc.php:74
3496
  msgid "Base skin"
3497
  msgstr ""
3498
 
3499
- #: templates/admin/settings/tabs/main_plugin_settings.php:105
 
3500
  msgid "Choose the base skin for the plugin."
3501
  msgstr ""
3502
 
3503
- #: templates/admin/settings/tabs/main_plugin_settings.php:111
 
3504
  msgid "Material"
3505
  msgstr ""
3506
 
3507
- #: templates/admin/settings/tabs/main_plugin_settings.php:112
 
3508
  msgid "Light"
3509
  msgstr ""
3510
 
3511
- #: templates/admin/settings/tabs/main_plugin_settings.php:113
 
3512
  msgid "Graphite"
3513
  msgstr ""
3514
 
3515
- #: templates/admin/settings/tabs/main_plugin_settings.php:114
 
3516
  msgid "Aqua"
3517
  msgstr ""
3518
 
3519
- #: templates/admin/settings/tabs/main_plugin_settings.php:115
 
3520
  msgid "Purple"
3521
  msgstr ""
3522
 
3523
- #: templates/admin/settings/tabs/main_plugin_settings.php:116
 
3524
  msgid "Dark"
3525
  msgstr ""
3526
 
3527
- #: templates/admin/settings/tabs/main_plugin_settings.php:124
3528
  #: templates/settings.inc.php:131
3529
  msgid "Number format"
3530
  msgstr ""
3531
 
3532
- #: templates/admin/settings/tabs/main_plugin_settings.php:126
3533
  #: templates/settings.inc.php:138
3534
  msgid "Pick the number format (thousands and decimals separator)"
3535
  msgstr ""
3536
 
3537
- #: templates/admin/settings/tabs/main_plugin_settings.php:143
3538
  #: templates/settings.inc.php:86
3539
  msgid "Render advanced filter"
3540
  msgstr ""
3541
 
3542
- #: templates/admin/settings/tabs/main_plugin_settings.php:145
3543
  msgid ""
3544
  "Choose where you would like to render the advanced filter for tables where "
3545
  "enabled."
3546
  msgstr ""
3547
 
3548
- #: templates/admin/settings/tabs/main_plugin_settings.php:151
3549
  #: templates/settings.inc.php:90
3550
  msgid "In the header"
3551
  msgstr ""
3552
 
3553
- #: templates/admin/settings/tabs/main_plugin_settings.php:152
3554
  #: templates/settings.inc.php:91
3555
  msgid "In the footer"
3556
  msgstr ""
3557
 
3558
- #: templates/admin/settings/tabs/main_plugin_settings.php:160
3559
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3560
  #: templates/settings.inc.php:143
3561
  msgid "Decimal places"
3562
  msgstr ""
3563
 
3564
- #: templates/admin/settings/tabs/main_plugin_settings.php:162
3565
  msgid "Define the amount of decimal places for the float numbers."
3566
  msgstr ""
3567
 
3568
- #: templates/admin/settings/tabs/main_plugin_settings.php:187
3569
  msgid "CSV delimiter"
3570
  msgstr ""
3571
 
3572
- #: templates/admin/settings/tabs/main_plugin_settings.php:189
3573
  msgid "Pick the CSV delimiter"
3574
  msgstr ""
3575
 
3576
- #: templates/admin/settings/tabs/main_plugin_settings.php:208
3577
  msgid "Tables sorting direction in admin page"
3578
  msgstr ""
3579
 
3580
- #: templates/admin/settings/tabs/main_plugin_settings.php:210
3581
  msgid ""
3582
  "Here you can set sorting direction by id for browse tables and charts. By "
3583
  "default is ascending order."
3584
  msgstr ""
3585
 
3586
- #: templates/admin/settings/tabs/main_plugin_settings.php:216
3587
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3588
  #: templates/edit_table.inc.php:663
3589
  msgid "Ascending"
3590
  msgstr ""
3591
 
3592
- #: templates/admin/settings/tabs/main_plugin_settings.php:217
3593
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3594
  #: templates/edit_table.inc.php:665
3595
  msgid "Descending"
3596
  msgstr ""
3597
 
3598
- #: templates/admin/settings/tabs/main_plugin_settings.php:228
3599
  #: templates/settings.inc.php:171
3600
  msgid "Tablet width"
3601
  msgstr ""
3602
 
3603
- #: templates/admin/settings/tabs/main_plugin_settings.php:230
3604
  #: templates/settings.inc.php:175
3605
  msgid ""
3606
  "Here you can specify width of the screen (in pixels) that will be treated as "
3607
  "a tablet. You can set it wider if you want responsive effect on desktops."
3608
  msgstr ""
3609
 
3610
- #: templates/admin/settings/tabs/main_plugin_settings.php:254
3611
  #: templates/settings.inc.php:181
3612
  msgid "Mobile width"
3613
  msgstr ""
3614
 
3615
- #: templates/admin/settings/tabs/main_plugin_settings.php:256
3616
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3617
  msgstr ""
3618
 
3619
- #: templates/admin/settings/tabs/main_plugin_settings.php:281
3620
  #: templates/settings.inc.php:61
3621
  msgid "Tables per admin page"
3622
  msgstr ""
3623
 
3624
- #: templates/admin/settings/tabs/main_plugin_settings.php:283
3625
  msgid "How many tables to show in the browse page."
3626
  msgstr ""
3627
 
3628
- #: templates/admin/settings/tabs/main_plugin_settings.php:299
3629
  msgid "Align numbers"
3630
  msgstr ""
3631
 
3632
- #: templates/admin/settings/tabs/main_plugin_settings.php:301
3633
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3634
  msgstr ""
3635
 
3636
- #: templates/admin/settings/tabs/main_plugin_settings.php:305
3637
  #: templates/settings.inc.php:161
3638
  msgid "Align numbers to the right"
3639
  msgstr ""
3640
 
3641
- #: templates/admin/settings/tabs/main_plugin_settings.php:315
3642
  msgid "Sum functions label"
3643
  msgstr ""
3644
 
3645
- #: templates/admin/settings/tabs/main_plugin_settings.php:317
3646
  msgid ""
3647
  "Enter a label that will be used for Sum functions. If you leave it blank "
3648
  "default label will be Σ ="
3649
  msgstr ""
3650
 
3651
- #: templates/admin/settings/tabs/main_plugin_settings.php:335
3652
  msgid "Average functions label"
3653
  msgstr ""
3654
 
3655
- #: templates/admin/settings/tabs/main_plugin_settings.php:337
3656
  msgid ""
3657
  "Enter a label that will be used for Average functions. If you leave it blank "
3658
  "default label will be Avg ="
3659
  msgstr ""
3660
 
3661
- #: templates/admin/settings/tabs/main_plugin_settings.php:360
3662
  msgid "Minimum functions label"
3663
  msgstr ""
3664
 
3665
- #: templates/admin/settings/tabs/main_plugin_settings.php:362
3666
  msgid ""
3667
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3668
  "default label will be Min ="
3669
  msgstr ""
3670
 
3671
- #: templates/admin/settings/tabs/main_plugin_settings.php:380
3672
  msgid "Maximum functions label"
3673
  msgstr ""
3674
 
3675
- #: templates/admin/settings/tabs/main_plugin_settings.php:382
3676
  msgid ""
3677
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3678
  "default label will be Max ="
3679
  msgstr ""
3680
 
3681
- #: templates/admin/settings/tabs/main_plugin_settings.php:408
3682
  msgid "Include full bootstrap front-end"
3683
  msgstr ""
3684
 
3685
- #: templates/admin/settings/tabs/main_plugin_settings.php:410
3686
- #: templates/admin/settings/tabs/main_plugin_settings.php:421
3687
  msgid ""
3688
  "It is recommended to uncheck this option if bootstrap.js is already included "
3689
  "in one of the theme files. Unchecked option means that there is still "
3690
  "bootstrap.js included just in noconflict mode which should prevent errors."
3691
  msgstr ""
3692
 
3693
- #: templates/admin/settings/tabs/main_plugin_settings.php:414
3694
  msgid "Include full bootstrap.js on the front-end"
3695
  msgstr ""
3696
 
3697
- #: templates/admin/settings/tabs/main_plugin_settings.php:419
3698
  msgid "Include full bootstrap back-end"
3699
  msgstr ""
3700
 
3701
- #: templates/admin/settings/tabs/main_plugin_settings.php:425
3702
  msgid "Include full bootstrap.js on the back-end"
3703
  msgstr ""
3704
 
3705
- #: templates/admin/settings/tabs/main_plugin_settings.php:433
3706
- #: templates/admin/settings/tabs/main_plugin_settings.php:439
3707
  #: templates/settings.inc.php:32
3708
  msgid "Show plugin credentials below tables"
3709
  msgstr ""
3710
 
3711
- #: templates/admin/settings/tabs/main_plugin_settings.php:435
3712
  #: templates/settings.inc.php:32
3713
  msgid ""
3714
  "If you want to support our project, please, keep this checkbox as checked"
3715
  msgstr ""
3716
 
3717
- #: templates/admin/settings/tabs/main_plugin_settings.php:444
3718
  msgid "Prevent deleting tables in database"
3719
  msgstr ""
3720
 
3721
- #: templates/admin/settings/tabs/main_plugin_settings.php:446
3722
  msgid ""
3723
  "It is recommended to leave this option as checked if you what to keep your "
3724
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3725
  "this option, it will be deleted all tables in database after deleting plugin"
3726
  msgstr ""
3727
 
3728
- #: templates/admin/settings/tabs/main_plugin_settings.php:450
3729
  msgid ""
3730
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3731
  msgstr ""
3732
 
3733
- #: templates/admin/settings/tabs/main_plugin_settings.php:457
3734
  msgid "Remove Getting Started page"
3735
  msgstr ""
3736
 
3737
- #: templates/admin/settings/tabs/main_plugin_settings.php:459
3738
  msgid ""
3739
  "Check this option if you want to remove Getting Started page from admin menu."
3740
  msgstr ""
3741
 
3742
- #: templates/admin/settings/tabs/main_plugin_settings.php:463
3743
  msgid "Remove \"Getting Started\" page from admin menu."
3744
  msgstr ""
3745
 
@@ -4003,10 +4110,6 @@ msgstr ""
4003
  msgid "Column header"
4004
  msgstr ""
4005
 
4006
- #: templates/admin/table-settings/add_column_modal.inc.php:47
4007
- msgid "Type"
4008
- msgstr ""
4009
-
4010
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4011
  msgid "Insert after"
4012
  msgstr ""
@@ -4043,7 +4146,7 @@ msgstr ""
4043
 
4044
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4045
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4046
- #: templates/admin/table-settings/table_settings_block.inc.php:63
4047
  msgid "Display"
4048
  msgstr ""
4049
 
@@ -4056,7 +4159,7 @@ msgid "Global Filtering"
4056
  msgstr ""
4057
 
4058
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4059
- #: templates/admin/table-settings/table_settings_block.inc.php:71
4060
  msgid "Editing"
4061
  msgstr ""
4062
 
@@ -4493,7 +4596,7 @@ msgid "Allow filtering"
4493
  msgstr ""
4494
 
4495
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4496
- #: templates/admin/table-settings/table_settings_block.inc.php:665
4497
  msgid "Global search"
4498
  msgstr ""
4499
 
@@ -5033,26 +5136,26 @@ msgid "Clear data"
5033
  msgstr ""
5034
 
5035
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5036
- #: templates/admin/table-settings/table_settings_block.inc.php:199
5037
  #: templates/edit_table.inc.php:58
5038
  msgid "Table title"
5039
  msgstr ""
5040
 
5041
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5042
- #: templates/admin/table-settings/table_settings_block.inc.php:207
5043
  #: templates/edit_table.inc.php:67
5044
  msgid "Show table title"
5045
  msgstr ""
5046
 
5047
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5048
- #: templates/admin/table-settings/table_settings_block.inc.php:214
5049
  msgid ""
5050
  "Enable this to show the table title in a h3 block above the table, disable "
5051
  "to hide."
5052
  msgstr ""
5053
 
5054
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5055
- #: templates/admin/table-settings/table_settings_block.inc.php:222
5056
  msgid "Show table title on the page"
5057
  msgstr ""
5058
 
@@ -5119,54 +5222,54 @@ msgid "Scrollable"
5119
  msgstr ""
5120
 
5121
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5122
- #: templates/admin/table-settings/table_settings_block.inc.php:363
5123
  msgid "Scrollable table"
5124
  msgstr ""
5125
 
5126
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5127
- #: templates/admin/table-settings/table_settings_block.inc.php:370
5128
  msgid "Enable this to enable a horizontal scrollbar below the table."
5129
  msgstr ""
5130
 
5131
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5132
- #: templates/admin/table-settings/table_settings_block.inc.php:379
5133
  msgid "Show a horizontal scrollbar"
5134
  msgstr ""
5135
 
5136
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5137
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5138
- #: templates/admin/table-settings/table_settings_block.inc.php:423
5139
- #: templates/admin/table-settings/table_settings_block.inc.php:431
5140
  msgid "Limit table width"
5141
  msgstr ""
5142
 
5143
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5144
- #: templates/admin/table-settings/table_settings_block.inc.php:438
5145
  msgid "Enable this to restrict table width to page width."
5146
  msgstr ""
5147
 
5148
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5149
- #: templates/admin/table-settings/table_settings_block.inc.php:447
5150
  msgid "Limit table width to page width"
5151
  msgstr ""
5152
 
5153
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5154
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5155
- #: templates/admin/table-settings/table_settings_block.inc.php:454
5156
- #: templates/admin/table-settings/table_settings_block.inc.php:462
5157
  #: templates/edit_table.inc.php:392
5158
  msgid "Word wrap"
5159
  msgstr ""
5160
 
5161
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5162
- #: templates/admin/table-settings/table_settings_block.inc.php:469
5163
  msgid ""
5164
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5165
  "height."
5166
  msgstr ""
5167
 
5168
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5169
- #: templates/admin/table-settings/table_settings_block.inc.php:477
5170
  msgid "Wrap words to newlines"
5171
  msgstr ""
5172
 
@@ -5228,54 +5331,58 @@ msgstr ""
5228
  msgid "EXCEL-LIKE"
5229
  msgstr ""
5230
 
5231
- #: templates/admin/table-settings/table_settings_block.inc.php:67
5232
  msgid "Sorting and filtering"
5233
  msgstr ""
5234
 
5235
- #: templates/admin/table-settings/table_settings_block.inc.php:75
5236
- #: templates/admin/table-settings/table_settings_block.inc.php:990
5237
  msgid "Table Tools"
5238
  msgstr ""
5239
 
5240
- #: templates/admin/table-settings/table_settings_block.inc.php:97
 
 
 
 
5241
  msgid ""
5242
  "Please choose a type of the input data source - it can be a MySQL query, a "
5243
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5244
  msgstr ""
5245
 
5246
- #: templates/admin/table-settings/table_settings_block.inc.php:104
5247
  msgid "Select a data source type"
5248
  msgstr ""
5249
 
5250
- #: templates/admin/table-settings/table_settings_block.inc.php:105
5251
  msgid "SQL query "
5252
  msgstr ""
5253
 
5254
- #: templates/admin/table-settings/table_settings_block.inc.php:106
5255
  #: templates/edit_table.inc.php:85
5256
  msgid "CSV file"
5257
  msgstr ""
5258
 
5259
- #: templates/admin/table-settings/table_settings_block.inc.php:107
5260
  #: templates/edit_table.inc.php:86
5261
  msgid "Excel file"
5262
  msgstr ""
5263
 
5264
- #: templates/admin/table-settings/table_settings_block.inc.php:108
5265
  msgid "Google Spreadsheet "
5266
  msgstr ""
5267
 
5268
- #: templates/admin/table-settings/table_settings_block.inc.php:109
5269
  #: templates/edit_table.inc.php:89
5270
  msgid "XML file"
5271
  msgstr ""
5272
 
5273
- #: templates/admin/table-settings/table_settings_block.inc.php:110
5274
  #: templates/edit_table.inc.php:90
5275
  msgid "JSON file"
5276
  msgstr ""
5277
 
5278
- #: templates/admin/table-settings/table_settings_block.inc.php:124
5279
  msgid ""
5280
  "Upload your file or provide the full URL here. For CSV or Excel input "
5281
  "sources only URLs or paths from same domain are supported. For Google "
@@ -5283,30 +5390,30 @@ msgid ""
5283
  "the URL."
5284
  msgstr ""
5285
 
5286
- #: templates/admin/table-settings/table_settings_block.inc.php:130
5287
  msgid "Paste URL or path, or click Browse to choose"
5288
  msgstr ""
5289
 
5290
- #: templates/admin/table-settings/table_settings_block.inc.php:134
5291
  msgid "Browse..."
5292
  msgstr ""
5293
 
5294
- #: templates/admin/table-settings/table_settings_block.inc.php:146
5295
  msgid ""
5296
  "If it is turned on, all sorting, filtering, pagination and other data "
5297
  "interaction will be done by MySQL server. This feature is recommended if you "
5298
  "have more than 2000-3000 rows. Mandatory for editable tables."
5299
  msgstr ""
5300
 
5301
- #: templates/admin/table-settings/table_settings_block.inc.php:151
5302
  msgid "Enable server-side processing"
5303
  msgstr ""
5304
 
5305
- #: templates/admin/table-settings/table_settings_block.inc.php:165
5306
  msgid "MySQL Query"
5307
  msgstr ""
5308
 
5309
- #: templates/admin/table-settings/table_settings_block.inc.php:167
5310
  msgid ""
5311
  "Enter the text of your MySQL query here - please make sure it returns actual "
5312
  "data first. You can use a number of placeholders to make the dataset in the "
@@ -5314,335 +5421,335 @@ msgid ""
5314
  "with different shortcodes."
5315
  msgstr ""
5316
 
5317
- #: templates/admin/table-settings/table_settings_block.inc.php:174
5318
  #: templates/edit_table.inc.php:292
5319
  msgid "Auto-refresh"
5320
  msgstr ""
5321
 
5322
- #: templates/admin/table-settings/table_settings_block.inc.php:176
5323
  msgid ""
5324
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5325
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5326
  "refresh."
5327
  msgstr ""
5328
 
5329
- #: templates/admin/table-settings/table_settings_block.inc.php:181
5330
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5331
  msgstr ""
5332
 
5333
- #: templates/admin/table-settings/table_settings_block.inc.php:230
5334
  msgid "Responsiveness"
5335
  msgstr ""
5336
 
5337
- #: templates/admin/table-settings/table_settings_block.inc.php:238
5338
  msgid "Responsive design"
5339
  msgstr ""
5340
 
5341
- #: templates/admin/table-settings/table_settings_block.inc.php:245
5342
  msgid "Enable this to allow responsiveness in the table."
5343
  msgstr ""
5344
 
5345
- #: templates/admin/table-settings/table_settings_block.inc.php:246
5346
  msgid ""
5347
  "Please do not forget to define which columns will be hidden on mobiles and "
5348
  "tablets in the column settings!"
5349
  msgstr ""
5350
 
5351
- #: templates/admin/table-settings/table_settings_block.inc.php:254
5352
  msgid "Allow collapsing on mobiles and tablets"
5353
  msgstr ""
5354
 
5355
- #: templates/admin/table-settings/table_settings_block.inc.php:262
5356
  msgid "Hide until loaded"
5357
  msgstr ""
5358
 
5359
- #: templates/admin/table-settings/table_settings_block.inc.php:264
5360
  msgid ""
5361
  "Enable to make whole table hidden until it is initialized to prevent "
5362
  "unformatted data flashing"
5363
  msgstr ""
5364
 
5365
- #: templates/admin/table-settings/table_settings_block.inc.php:269
5366
  msgid "Hide the table before it is fully loaded"
5367
  msgstr ""
5368
 
5369
- #: templates/admin/table-settings/table_settings_block.inc.php:281
5370
  msgid "Default rows per page"
5371
  msgstr ""
5372
 
5373
- #: templates/admin/table-settings/table_settings_block.inc.php:289
5374
- #: templates/admin/table-settings/table_settings_block.inc.php:324
5375
  msgid "Rows per page"
5376
  msgstr ""
5377
 
5378
- #: templates/admin/table-settings/table_settings_block.inc.php:296
5379
  msgid "How many rows to show per page by default."
5380
  msgstr ""
5381
 
5382
- #: templates/admin/table-settings/table_settings_block.inc.php:332
5383
  msgid "Show X entries"
5384
  msgstr ""
5385
 
5386
- #: templates/admin/table-settings/table_settings_block.inc.php:339
5387
  msgid ""
5388
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5389
  "frontend."
5390
  msgstr ""
5391
 
5392
- #: templates/admin/table-settings/table_settings_block.inc.php:347
5393
  msgid "Show \"Show X entries\" dropdown"
5394
  msgstr ""
5395
 
5396
- #: templates/admin/table-settings/table_settings_block.inc.php:371
5397
  msgid "This should be turned off if you want to set columns width manually."
5398
  msgstr ""
5399
 
5400
- #: templates/admin/table-settings/table_settings_block.inc.php:392
5401
- #: templates/admin/table-settings/table_settings_block.inc.php:400
5402
  msgid "Info block"
5403
  msgstr ""
5404
 
5405
- #: templates/admin/table-settings/table_settings_block.inc.php:407
5406
  msgid ""
5407
  "Enable to show a block of information about the number of records below the "
5408
  "table."
5409
  msgstr ""
5410
 
5411
- #: templates/admin/table-settings/table_settings_block.inc.php:415
5412
  msgid "Show information block below the table"
5413
  msgstr ""
5414
 
5415
- #: templates/admin/table-settings/table_settings_block.inc.php:439
5416
  msgid ""
5417
  "This should be turned on if you want to set columns width manually. Should "
5418
  "be on to use word wrapping."
5419
  msgstr ""
5420
 
5421
- #: templates/admin/table-settings/table_settings_block.inc.php:501
5422
  msgid "Enable to show a pagination"
5423
  msgstr ""
5424
 
5425
- #: templates/admin/table-settings/table_settings_block.inc.php:509
5426
  msgid "Show pagination block below the table"
5427
  msgstr ""
5428
 
5429
- #: templates/admin/table-settings/table_settings_block.inc.php:517
5430
- #: templates/admin/table-settings/table_settings_block.inc.php:525
5431
  msgid "Pagination Alignment"
5432
  msgstr ""
5433
 
5434
- #: templates/admin/table-settings/table_settings_block.inc.php:529
5435
  msgid "Here you can set pagination position: right, center or left."
5436
  msgstr ""
5437
 
5438
- #: templates/admin/table-settings/table_settings_block.inc.php:537
5439
  msgid "Right"
5440
  msgstr ""
5441
 
5442
- #: templates/admin/table-settings/table_settings_block.inc.php:538
5443
  msgid "Center"
5444
  msgstr ""
5445
 
5446
- #: templates/admin/table-settings/table_settings_block.inc.php:539
5447
  msgid "Left"
5448
  msgstr ""
5449
 
5450
- #: templates/admin/table-settings/table_settings_block.inc.php:548
5451
- #: templates/admin/table-settings/table_settings_block.inc.php:556
5452
  msgid "Pagination Layout"
5453
  msgstr ""
5454
 
5455
- #: templates/admin/table-settings/table_settings_block.inc.php:560
5456
  msgid "Here you can choose between different pagination layout."
5457
  msgstr ""
5458
 
5459
- #: templates/admin/table-settings/table_settings_block.inc.php:568
5460
  msgid ""
5461
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5462
  msgstr ""
5463
 
5464
- #: templates/admin/table-settings/table_settings_block.inc.php:569
5465
  msgid "\"Previous\" and \"Next\" buttons only"
5466
  msgstr ""
5467
 
5468
- #: templates/admin/table-settings/table_settings_block.inc.php:570
5469
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5470
  msgstr ""
5471
 
5472
- #: templates/admin/table-settings/table_settings_block.inc.php:571
5473
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5474
  msgstr ""
5475
 
5476
- #: templates/admin/table-settings/table_settings_block.inc.php:572
5477
  msgid "Page number buttons only"
5478
  msgstr ""
5479
 
5480
- #: templates/admin/table-settings/table_settings_block.inc.php:573
5481
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5482
  msgstr ""
5483
 
5484
- #: templates/admin/table-settings/table_settings_block.inc.php:595
5485
  msgid "Advanced column filters"
5486
  msgstr ""
5487
 
5488
- #: templates/admin/table-settings/table_settings_block.inc.php:603
5489
  msgid "Advanced filter"
5490
  msgstr ""
5491
 
5492
- #: templates/admin/table-settings/table_settings_block.inc.php:610
5493
  msgid ""
5494
  "Enable to show an advanced filter for each of the columns, filters can be "
5495
  "shown in table footer, header or in a separate form."
5496
  msgstr ""
5497
 
5498
- #: templates/admin/table-settings/table_settings_block.inc.php:618
5499
  msgid "Enable advanced column filters"
5500
  msgstr ""
5501
 
5502
- #: templates/admin/table-settings/table_settings_block.inc.php:641
5503
  msgid ""
5504
  "If this is enabled, each column header will be clickable; clicking will sort "
5505
  "the whole table by the content of this column cells ascending or descending."
5506
  msgstr ""
5507
 
5508
- #: templates/admin/table-settings/table_settings_block.inc.php:649
5509
  msgid "Allow sorting for the table"
5510
  msgstr ""
5511
 
5512
- #: templates/admin/table-settings/table_settings_block.inc.php:657
5513
  msgid "Main search block"
5514
  msgstr ""
5515
 
5516
- #: templates/admin/table-settings/table_settings_block.inc.php:672
5517
  msgid ""
5518
  "If this is enabled, a search block will be displayed on the top right of the "
5519
  "table, allowing to search through whole table with a single input."
5520
  msgstr ""
5521
 
5522
- #: templates/admin/table-settings/table_settings_block.inc.php:680
5523
  msgid "Enable search block"
5524
  msgstr ""
5525
 
5526
- #: templates/admin/table-settings/table_settings_block.inc.php:694
5527
  msgid "Filters in a form"
5528
  msgstr ""
5529
 
5530
- #: templates/admin/table-settings/table_settings_block.inc.php:701
5531
  #: templates/edit_table.inc.php:340
5532
  msgid "Filter in form"
5533
  msgstr ""
5534
 
5535
- #: templates/admin/table-settings/table_settings_block.inc.php:708
5536
  msgid ""
5537
  "Enable to show the advanced column filter in a form above the table, instead "
5538
  "of showing in the table footer/header."
5539
  msgstr ""
5540
 
5541
- #: templates/admin/table-settings/table_settings_block.inc.php:716
5542
  msgid "Show filters in a form above the table"
5543
  msgstr ""
5544
 
5545
- #: templates/admin/table-settings/table_settings_block.inc.php:724
5546
  msgid "Clear filters button"
5547
  msgstr ""
5548
 
5549
- #: templates/admin/table-settings/table_settings_block.inc.php:731
5550
  #: templates/frontend/filter_form.inc.php:32
5551
  msgid "Clear filters"
5552
  msgstr ""
5553
 
5554
- #: templates/admin/table-settings/table_settings_block.inc.php:735
5555
  msgid "Enable to show the clear filters button."
5556
  msgstr ""
5557
 
5558
- #: templates/admin/table-settings/table_settings_block.inc.php:736
5559
  msgid ""
5560
  "If filter in form is enabled, clear button will be rendered after the last "
5561
  "filter."
5562
  msgstr ""
5563
 
5564
- #: templates/admin/table-settings/table_settings_block.inc.php:741
5565
  msgid ""
5566
  "Otherwise, clear filter button will be rendered above the table next to "
5567
  "\"Table Tools\" buttons."
5568
  msgstr ""
5569
 
5570
- #: templates/admin/table-settings/table_settings_block.inc.php:753
5571
  msgid "Show clear filters button"
5572
  msgstr ""
5573
 
5574
- #: templates/admin/table-settings/table_settings_block.inc.php:773
5575
  msgid "Allow editing"
5576
  msgstr ""
5577
 
5578
- #: templates/admin/table-settings/table_settings_block.inc.php:781
5579
  #: templates/edit_table.inc.php:180
5580
  msgid "Front-end editing"
5581
  msgstr ""
5582
 
5583
- #: templates/admin/table-settings/table_settings_block.inc.php:788
5584
  msgid "Allow editing the table from the front-end."
5585
  msgstr ""
5586
 
5587
- #: templates/admin/table-settings/table_settings_block.inc.php:796
5588
  msgid "Allow front-end editing"
5589
  msgstr ""
5590
 
5591
- #: templates/admin/table-settings/table_settings_block.inc.php:804
5592
  msgid "Popover edit block"
5593
  msgstr ""
5594
 
5595
- #: templates/admin/table-settings/table_settings_block.inc.php:812
5596
  #: templates/edit_table.inc.php:232
5597
  msgid "Popover tools"
5598
  msgstr ""
5599
 
5600
- #: templates/admin/table-settings/table_settings_block.inc.php:819
5601
  msgid ""
5602
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5603
  "popover when you click on any row, instead of Table Tools block above the "
5604
  "table."
5605
  msgstr ""
5606
 
5607
- #: templates/admin/table-settings/table_settings_block.inc.php:827
5608
  msgid "Editing buttons in a popover"
5609
  msgstr ""
5610
 
5611
- #: templates/admin/table-settings/table_settings_block.inc.php:835
5612
- #: templates/admin/table-settings/table_settings_block.inc.php:843
5613
  msgid "In-line editing"
5614
  msgstr ""
5615
 
5616
- #: templates/admin/table-settings/table_settings_block.inc.php:850
5617
  msgid ""
5618
  "If this is enabled, front-end users will be able to edit cells by double-"
5619
  "clicking them, not only with the editor dialog."
5620
  msgstr ""
5621
 
5622
- #: templates/admin/table-settings/table_settings_block.inc.php:858
5623
  msgid "Allow in-line editing"
5624
  msgstr ""
5625
 
5626
- #: templates/admin/table-settings/table_settings_block.inc.php:873
5627
  #: templates/edit_table.inc.php:192
5628
  msgid "MySQL table name for editing"
5629
  msgstr ""
5630
 
5631
- #: templates/admin/table-settings/table_settings_block.inc.php:875
5632
  msgid ""
5633
  "Name of the MySQL table which will be updated when edited from front-end."
5634
  msgstr ""
5635
 
5636
- #: templates/admin/table-settings/table_settings_block.inc.php:880
5637
  msgid "MySQL table name"
5638
  msgstr ""
5639
 
5640
- #: templates/admin/table-settings/table_settings_block.inc.php:889
5641
  #: templates/edit_table.inc.php:203
5642
  msgid "ID column for editing"
5643
  msgstr ""
5644
 
5645
- #: templates/admin/table-settings/table_settings_block.inc.php:891
5646
  msgid ""
5647
  "Choose the column values from which will be used as row identifiers. MUST be "
5648
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
@@ -5650,146 +5757,214 @@ msgid ""
5650
  "\"id\" or \"ID\" on MySQL side."
5651
  msgstr ""
5652
 
5653
- #: templates/admin/table-settings/table_settings_block.inc.php:905
5654
  #: templates/edit_table.inc.php:267
5655
  msgid "Editor roles"
5656
  msgstr ""
5657
 
5658
- #: templates/admin/table-settings/table_settings_block.inc.php:907
5659
  msgid ""
5660
  "If you want only specific user roles to be able to edit the table, choose in "
5661
  "this dropdown. Leave unchecked to allow editing for everyone."
5662
  msgstr ""
5663
 
5664
- #: templates/admin/table-settings/table_settings_block.inc.php:912
5665
  msgid "Everyone"
5666
  msgstr ""
5667
 
5668
- #: templates/admin/table-settings/table_settings_block.inc.php:913
5669
  msgid "Administrators"
5670
  msgstr ""
5671
 
5672
- #: templates/admin/table-settings/table_settings_block.inc.php:914
5673
  msgid "Editors"
5674
  msgstr ""
5675
 
5676
- #: templates/admin/table-settings/table_settings_block.inc.php:915
5677
  msgid "Authors"
5678
  msgstr ""
5679
 
5680
- #: templates/admin/table-settings/table_settings_block.inc.php:916
5681
  msgid "Contributors"
5682
  msgstr ""
5683
 
5684
- #: templates/admin/table-settings/table_settings_block.inc.php:917
5685
  msgid "Subscribers"
5686
  msgstr ""
5687
 
5688
- #: templates/admin/table-settings/table_settings_block.inc.php:932
5689
  msgid "Users see and edit only own data"
5690
  msgstr ""
5691
 
5692
- #: templates/admin/table-settings/table_settings_block.inc.php:940
5693
  msgid "Users see and edit only their own data"
5694
  msgstr ""
5695
 
5696
- #: templates/admin/table-settings/table_settings_block.inc.php:947
5697
  msgid ""
5698
  "If this is enabled, users will see and edit only the rows that are related "
5699
  "to them or were created by them (associated using the User ID column)."
5700
  msgstr ""
5701
 
5702
- #: templates/admin/table-settings/table_settings_block.inc.php:955
5703
  msgid "Limit editing to own data only"
5704
  msgstr ""
5705
 
5706
- #: templates/admin/table-settings/table_settings_block.inc.php:963
5707
  #: templates/edit_table.inc.php:250
5708
  msgid "User ID column"
5709
  msgstr ""
5710
 
5711
- #: templates/admin/table-settings/table_settings_block.inc.php:965
5712
  msgid ""
5713
  "Choose the column values from which will be used as User identifiers. "
5714
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
5715
  "an integer on MySQL side."
5716
  msgstr ""
5717
 
5718
- #: templates/admin/table-settings/table_settings_block.inc.php:998
5719
  #: templates/edit_table.inc.php:350
5720
  msgid "Table tools"
5721
  msgstr ""
5722
 
5723
- #: templates/admin/table-settings/table_settings_block.inc.php:1005
5724
  msgid ""
5725
  "If this is enabled, a toolbar with useful tools will be shown above the table"
5726
  msgstr ""
5727
 
5728
- #: templates/admin/table-settings/table_settings_block.inc.php:1013
5729
  msgid "Enable Table Tools"
5730
  msgstr ""
5731
 
5732
- #: templates/admin/table-settings/table_settings_block.inc.php:1021
5733
  msgid "Buttons"
5734
  msgstr ""
5735
 
5736
- #: templates/admin/table-settings/table_settings_block.inc.php:1023
5737
  msgid "Choose which buttons to show in the Table Tools block."
5738
  msgstr ""
5739
 
5740
- #: templates/admin/table-settings/table_settings_block.inc.php:1029
5741
  msgid "Columns visibility"
5742
  msgstr ""
5743
 
5744
- #: templates/admin/table-settings/table_settings_block.inc.php:1051
5745
  msgid ""
5746
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
5747
  "that will be replaced with some actual values at the execution time; usually "
5748
- "this is used for MySQL queries."
 
 
5749
  msgstr ""
5750
 
5751
- #: templates/admin/table-settings/table_settings_block.inc.php:1063
5752
- #: templates/admin/table-settings/table_settings_block.inc.php:1078
5753
- #: templates/admin/table-settings/table_settings_block.inc.php:1093
5754
  msgid ""
5755
  "This placeholder will be replaced with any value that you will provide in a "
5756
  "shortcode. Provide a default value here that will be used for table "
5757
  "generation and when a different one is not defined in the shortcode."
5758
  msgstr ""
5759
 
5760
- #: templates/admin/table-settings/table_settings_block.inc.php:1083
5761
- #: templates/admin/table-settings/table_settings_block.inc.php:1098
5762
- #: templates/admin/table-settings/table_settings_block.inc.php:1120
5763
- #: templates/admin/table-settings/table_settings_block.inc.php:1138
5764
- #: templates/admin/table-settings/table_settings_block.inc.php:1155
5765
- #: templates/admin/table-settings/table_settings_block.inc.php:1176
 
 
 
 
 
 
 
5766
  msgid "Default for table generation"
5767
  msgstr ""
5768
 
5769
- #: templates/admin/table-settings/table_settings_block.inc.php:1114
5770
  msgid ""
5771
  "This placeholder will be replaced with the ID of currently logged in user. "
5772
  "Provide a value here to be used for table generation"
5773
  msgstr ""
5774
 
5775
- #: templates/admin/table-settings/table_settings_block.inc.php:1130
5776
  msgid ""
5777
  "This placeholder will be replaced with the login of currently logged in "
5778
  "user. Provide a value here to be used for table generation"
5779
  msgstr ""
5780
 
5781
- #: templates/admin/table-settings/table_settings_block.inc.php:1148
5782
  msgid ""
5783
- "This placeholder will be replaced with the current prefix of WordPress "
5784
- "database. Provide a value here to be used for table generation"
5785
  msgstr ""
5786
 
5787
- #: templates/admin/table-settings/table_settings_block.inc.php:1171
5788
  msgid ""
5789
  "This placeholder will be replaced with the ID of current post. Provide a "
5790
  "value here to be used for table generation"
5791
  msgstr ""
5792
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5793
  #: templates/admin/welcome_page/welcome_page.inc.php:26
5794
  #: templates/admin/welcome_page/welcome_page.inc.php:333
5795
  msgid "Go to Dashboard"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-02-26 13:10+0100\n"
5
+ "PO-Revision-Date: 2021-02-26 13:10+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
110
  msgid "Go Premium"
111
  msgstr ""
112
 
113
+ #: controllers/wdt_admin.php:517 controllers/wdt_admin.php:566
114
+ #: controllers/wdt_admin.php:609 controllers/wdt_admin.php:630
115
+ #: controllers/wdt_admin.php:677 controllers/wdt_admin.php:703
116
+ #: controllers/wdt_admin.php:722 controllers/wdt_admin.php:742
117
+ #: controllers/wdt_admin.php:761 controllers/wdt_admin.php:781
118
+ #: controllers/wdt_admin.php:801 controllers/wdt_admin.php:821
119
+ #: controllers/wdt_admin.php:840
120
  msgid "You do not have sufficient permissions to access this page."
121
  msgstr ""
122
 
218
  "placeholders and also for Export file name."
219
  msgstr ""
220
 
221
+ #: source/class.wdtbrowsechartstable.php:29 source/class.wdtbrowsetable.php:30
222
+ msgid "ID"
223
+ msgstr ""
224
+
225
+ #: source/class.wdtbrowsechartstable.php:30 source/class.wdtbrowsetable.php:31
226
+ #: templates/admin/chart_wizard/steps/step4.inc.php:17
227
+ msgid "Title"
228
+ msgstr ""
229
+
230
+ #: source/class.wdtbrowsechartstable.php:31
231
+ msgid "Render Engine"
232
+ msgstr ""
233
+
234
+ #: source/class.wdtbrowsechartstable.php:32
235
+ msgid "Chart Type"
236
+ msgstr ""
237
+
238
+ #: source/class.wdtbrowsechartstable.php:33 source/class.wdtbrowsetable.php:33
239
+ msgid "Shortcode"
240
+ msgstr ""
241
+
242
  #: source/class.wdtbrowsechartstable.php:141
243
  #: source/class.wdtbrowsetable.php:168
244
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
261
  msgstr ""
262
 
263
  #: source/class.wdtbrowsechartstable.php:162
264
+ #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
265
  #: templates/admin/browse/bulk_actions.inc.php:14
266
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
267
  msgid "Delete"
343
  msgid "No wpDataCharts in the system yet."
344
  msgstr ""
345
 
346
+ #: source/class.wdtbrowsetable.php:32
347
+ #: templates/admin/table-settings/add_column_modal.inc.php:47
348
+ msgid "Type"
349
+ msgstr ""
350
+
351
  #: source/class.wdtbrowsetable.php:231
352
  msgid "MySQL"
353
  msgstr ""
356
  msgid "Manual"
357
  msgstr ""
358
 
359
+ #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2188
360
+ #: source/class.wpdatatable.php:2258
361
+ #: templates/admin/table-settings/table_settings_block.inc.php:1050
362
  msgid "Excel"
363
  msgstr ""
364
 
365
+ #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2197
366
+ #: source/class.wpdatatable.php:2268
367
+ #: templates/admin/table-settings/table_settings_block.inc.php:1051
368
  msgid "CSV"
369
  msgstr ""
370
 
377
  msgstr ""
378
 
379
  #: source/class.wdtbrowsetable.php:249
380
+ #: templates/admin/table-settings/table_settings_block.inc.php:120
381
  #: templates/edit_table.inc.php:91
382
  msgid "Serialized PHP array"
383
  msgstr ""
467
  msgid "Attachment"
468
  msgstr ""
469
 
470
+ #: source/class.wdttools.php:78
471
  msgid ""
472
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
473
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
474
  "to the web</b> "
475
  msgstr ""
476
 
477
+ #: source/class.wdttools.php:206
478
  msgid "Back to date"
479
  msgstr ""
480
 
481
+ #: source/class.wdttools.php:207
482
  msgid "Browse"
483
  msgstr ""
484
 
485
+ #: source/class.wdttools.php:208 source/class.wdttools.php:330
486
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
487
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
488
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
500
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
501
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
502
  #: templates/admin/table-settings/table_preview_block.inc.php:86
503
+ #: templates/admin/table-settings/table_settings_block.inc.php:41
504
  #: templates/common/delete_modal.inc.php:39
505
  msgid "Cancel"
506
  msgstr ""
507
 
508
+ #: source/class.wdttools.php:209
509
  msgid " field cannot be empty!"
510
  msgstr ""
511
 
512
+ #: source/class.wdttools.php:210
513
  msgid "Use selected file"
514
  msgstr ""
515
 
516
+ #: source/class.wdttools.php:211
517
  msgid "Choose file"
518
  msgstr ""
519
 
520
+ #: source/class.wdttools.php:212 templates/admin/common/error_modal.inc.php:23
521
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
522
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
523
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
525
  msgid "Close"
526
  msgstr ""
527
 
528
+ #: source/class.wdttools.php:213
529
  msgid "Column has been added!"
530
  msgstr ""
531
 
532
+ #: source/class.wdttools.php:214
533
  msgid "Column header cannot be empty!"
534
  msgstr ""
535
 
536
+ #: source/class.wdttools.php:215
537
  msgid "Please confirm column deletion!"
538
  msgstr ""
539
 
540
+ #: source/class.wdttools.php:216
541
  msgid "Column has been removed!"
542
  msgstr ""
543
 
544
+ #: source/class.wdttools.php:217
545
  msgid "Please select columns that you want to use in table"
546
  msgstr ""
547
 
548
+ #: source/class.wdttools.php:218 source/class.wpdatatable.php:2206
549
+ #: source/class.wpdatatable.php:2278
550
+ #: templates/admin/table-settings/table_settings_block.inc.php:1052
551
  msgid "Copy"
552
  msgstr ""
553
 
554
+ #: source/class.wdttools.php:219
555
  msgid "There was an error trying to insert a new row!"
556
  msgstr ""
557
 
558
+ #: source/class.wdttools.php:220
559
  msgid "Data has been saved!"
560
  msgstr ""
561
 
562
+ #: source/class.wdttools.php:221
563
  msgid "detach"
564
  msgstr ""
565
 
566
+ #: source/class.wdttools.php:223
567
  msgid "Delete selected"
568
  msgstr ""
569
 
570
+ #: source/class.wdttools.php:224 templates/settings.inc.php:553
571
  #: templates/settings.inc.php:627
572
  msgid "Error!"
573
  msgstr ""
574
 
575
+ #: source/class.wdttools.php:225
576
  msgid "Please upload or choose a file from Media Library!"
577
  msgstr ""
578
 
579
+ #: source/class.wdttools.php:226
580
  msgid "From"
581
  msgstr ""
582
 
583
+ #: source/class.wdttools.php:227
584
  msgid "Please provide a valid e-mail address for field"
585
  msgstr ""
586
 
587
+ #: source/class.wdttools.php:228
588
  msgid "Please provide a valid URL link for field"
589
  msgstr ""
590
 
591
+ #: source/class.wdttools.php:229
592
  msgid "You have entered invalid value. Press ESC to cancel."
593
  msgstr ""
594
 
595
+ #: source/class.wdttools.php:230 source/class.wdttools.php:260
596
  msgid "Show _MENU_ entries"
597
  msgstr ""
598
 
599
+ #: source/class.wdttools.php:231
600
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
601
  msgid "Merge"
602
  msgstr ""
603
 
604
+ #: source/class.wdttools.php:232
605
  msgid "New column"
606
  msgstr ""
607
 
608
+ #: source/class.wdttools.php:233
609
  msgid "Number of columns can not be empty or 0"
610
  msgstr ""
611
 
612
+ #: source/class.wdttools.php:234
613
  msgid "Number of rows can not be empty or 0"
614
  msgstr ""
615
 
616
+ #: source/class.wdttools.php:236
617
  msgid ": activate to sort column ascending"
618
  msgstr ""
619
 
620
+ #: source/class.wdttools.php:237
621
  msgid ": activate to sort column descending"
622
  msgstr ""
623
 
624
+ #: source/class.wdttools.php:239
625
  msgid "Ok"
626
  msgstr ""
627
 
628
+ #: source/class.wdttools.php:241
629
  msgid "First"
630
  msgstr ""
631
 
632
+ #: source/class.wdttools.php:242
633
  msgid "Last"
634
  msgstr ""
635
 
636
+ #: source/class.wdttools.php:243
637
  msgid "Next"
638
  msgstr ""
639
 
640
+ #: source/class.wdttools.php:244
641
  msgid "Previous"
642
  msgstr ""
643
 
644
+ #: source/class.wdttools.php:246
645
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
646
  msgid "Replace"
647
  msgstr ""
648
 
649
+ #: source/class.wdttools.php:247
650
  msgid "Row has been deleted!"
651
  msgstr ""
652
 
653
+ #: source/class.wdttools.php:248
654
+ msgid "Save chart"
655
+ msgstr ""
656
+
657
+ #: source/class.wdttools.php:249
658
  msgid "Select a file to use in table"
659
  msgstr ""
660
 
661
+ #: source/class.wdttools.php:250
662
  msgid "Select an Excel or CSV file"
663
  msgstr ""
664
 
665
+ #: source/class.wdttools.php:251
666
  msgid "No data available in table"
667
  msgstr ""
668
 
669
+ #: source/class.wdttools.php:252
670
  msgid "Plugin settings saved successfully"
671
  msgstr ""
672
 
673
+ #: source/class.wdttools.php:253
674
  msgid ""
675
  "Unable to save settings of plugin. Please try again or contact us over "
676
  "Support page."
677
  msgstr ""
678
 
679
+ #: source/class.wdttools.php:254
680
  msgid "Shortcode has been copied to the clipboard."
681
  msgstr ""
682
 
683
+ #: source/class.wdttools.php:255
684
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
685
  msgstr ""
686
 
687
+ #: source/class.wdttools.php:256
688
  msgid "Showing 0 to 0 of 0 entries"
689
  msgstr ""
690
 
691
+ #: source/class.wdttools.php:257
692
  msgid "(filtered from _MAX_ total entries)"
693
  msgstr ""
694
 
695
+ #: source/class.wdttools.php:259
696
  msgid ","
697
  msgstr ""
698
 
699
+ #: source/class.wdttools.php:261
700
  msgid "Loading..."
701
  msgstr ""
702
 
703
+ #: source/class.wdttools.php:262
704
  msgid "Processing..."
705
  msgstr ""
706
 
707
+ #: source/class.wdttools.php:263
708
  msgid "SQL error"
709
  msgstr ""
710
 
711
+ #: source/class.wdttools.php:264
712
  msgid "Search: "
713
  msgstr ""
714
 
715
+ #: source/class.wdttools.php:265 templates/settings.inc.php:559
716
  #: templates/settings.inc.php:625
717
  msgid "Success!"
718
  msgstr ""
719
 
720
+ #: source/class.wdttools.php:266
721
  msgid "No matching records found"
722
  msgstr ""
723
 
724
+ #: source/class.wdttools.php:267
725
  msgid ""
726
  "System info data has been copied to the clipboard. You can now paste it in "
727
  "file or in support topic."
728
  msgstr ""
729
 
730
+ #: source/class.wdttools.php:268
731
  msgid "Table saved successfully!"
732
  msgstr ""
733
 
734
+ #: source/class.wdttools.php:269
735
  msgid "To"
736
  msgstr ""
737
 
738
+ #: source/class.wdttools.php:305
739
  #: templates/admin/common/premium_modal.inc.php:17
740
+ #: templates/admin/table-settings/table_settings_block.inc.php:1072
741
+ #: templates/admin/table-settings/table_settings_block.inc.php:1348
742
  msgid "This is a premium feature"
743
  msgstr ""
744
 
745
+ #: source/class.wdttools.php:306
746
  #: templates/admin/common/premium_modal.inc.php:26
747
+ #: templates/admin/table-settings/table_settings_block.inc.php:1073
748
+ #: templates/admin/table-settings/table_settings_block.inc.php:1349
749
  msgid "This feature is available only in premium version of wpDataTables"
750
  msgstr ""
751
 
752
+ #: source/class.wdttools.php:307
753
  #: templates/admin/getting-started/getting_started.inc.php:133
754
  #: templates/admin/getting-started/getting_started.inc.php:145
755
  #: templates/admin/getting-started/getting_started.inc.php:157
756
  #: templates/admin/getting-started/getting_started.inc.php:169
757
+ #: templates/admin/table-settings/table_settings_block.inc.php:1077
758
+ #: templates/admin/table-settings/table_settings_block.inc.php:1353
759
  msgid "Compare and View Pricing"
760
  msgstr ""
761
 
762
+ #: source/class.wdttools.php:326
763
  msgid "Field cannot be empty!"
764
  msgstr ""
765
 
766
+ #: source/class.wdttools.php:327
767
  msgid "Please choose chart type."
768
  msgstr ""
769
 
770
+ #: source/class.wdttools.php:328
771
  msgid "Please select wpDataTable from dropdown."
772
  msgstr ""
773
 
774
+ #: source/class.wdttools.php:329
775
  msgid "Columns field cannot be empty"
776
  msgstr ""
777
 
778
+ #: source/class.wdttools.php:331
779
  msgid ""
780
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
781
  "clicking on Cancel button."
782
  msgstr ""
783
 
784
+ #: source/class.wdttools.php:332
785
  msgid "Finish Tutorial"
786
  msgstr ""
787
 
788
+ #: source/class.wdttools.php:333
789
  msgid "Continue"
790
  msgstr ""
791
 
792
+ #: source/class.wdttools.php:334
793
  msgid "Start"
794
  msgstr ""
795
 
796
+ #: source/class.wdttools.php:335
797
  msgid "Skip Tutorial"
798
  msgstr ""
799
 
800
+ #: source/class.wdttools.php:338 source/class.wdttools.php:404
801
+ #: source/class.wdttools.php:446
802
  msgid "Welcome to the tutorial!"
803
  msgstr ""
804
 
805
+ #: source/class.wdttools.php:339 source/class.wdttools.php:405
806
+ #: source/class.wdttools.php:447
807
  msgid "Hello "
808
  msgstr ""
809
 
810
+ #: source/class.wdttools.php:339
811
  msgid ""
812
  ", in this tutorial, we will show you how to create a simple table from "
813
  "scratch by choosing a custom number of columns and rows. How to customize "
814
  "each cell, merge cells and a lot more."
815
  msgstr ""
816
 
817
+ #: source/class.wdttools.php:342
818
  msgid " Let's create a new wpDataTable from scratch!"
819
  msgstr ""
820
 
821
+ #: source/class.wdttools.php:343 source/class.wdttools.php:409
822
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
823
  msgstr ""
824
 
825
+ #: source/class.wdttools.php:346
826
  msgid "Choose this option"
827
  msgstr ""
828
 
829
+ #: source/class.wdttools.php:347
830
  msgid "Please select 'Create a simple table from scratch'."
831
  msgstr ""
832
 
833
+ #: source/class.wdttools.php:350 source/class.wdttools.php:416
834
  msgid "Click Next"
835
  msgstr ""
836
 
837
+ #: source/class.wdttools.php:351 source/class.wdttools.php:417
838
  msgid "Please click the 'Next' button to continue."
839
  msgstr ""
840
 
841
+ #: source/class.wdttools.php:354
842
  msgid "Welcome to the Simple table wizard!"
843
  msgstr ""
844
 
845
+ #: source/class.wdttools.php:355
846
  msgid "Please click 'Continue' button to move on."
847
  msgstr ""
848
 
849
+ #: source/class.wdttools.php:358
850
  msgid "Choose a name for your table"
851
  msgstr ""
852
 
853
+ #: source/class.wdttools.php:359
854
  msgid "After inserting table name, click 'Continue' to move on."
855
  msgstr ""
856
 
857
+ #: source/class.wdttools.php:362
858
  msgid "Choose the number of columns for your table"
859
  msgstr ""
860
 
861
+ #: source/class.wdttools.php:363
862
  msgid ""
863
  "Please choose how many columns it will have. Remember that you can always "
864
  "add or reduce the number of columns later. Click 'Continue' when you finish."
865
  msgstr ""
866
 
867
+ #: source/class.wdttools.php:366
868
  msgid "Choose the number of rows for your table."
869
  msgstr ""
870
 
871
+ #: source/class.wdttools.php:367
872
  msgid ""
873
  "Please choose how many rows it will have. Remember that you can always add "
874
  "or reduce the number of rows later. Click 'Continue' when you finish."
875
  msgstr ""
876
 
877
+ #: source/class.wdttools.php:370
878
  msgid "Click on the 'Generate Table' button"
879
  msgstr ""
880
 
881
+ #: source/class.wdttools.php:371
882
  msgid "When you click on the button, the empty table will be ready for you. "
883
  msgstr ""
884
 
885
+ #: source/class.wdttools.php:374
886
  msgid "We are generating the table..."
887
  msgstr ""
888
 
889
+ #: source/class.wdttools.php:375
890
  msgid "Please, when you see the table, click 'Continue' to move on."
891
  msgstr ""
892
 
893
+ #: source/class.wdttools.php:378
894
  msgid ""
895
  "Nice job! You just configured your table and it is ready to fill it with "
896
  "data."
897
  msgstr ""
898
 
899
+ #: source/class.wdttools.php:379
900
  msgid ""
901
  "Now we will guide you on how to insert data and check table layout throw "
902
  "Simple table editor, table toolbar and table preview. Please click "
903
  "'Continue' to move on."
904
  msgstr ""
905
 
906
+ #: source/class.wdttools.php:382
907
  msgid "This is Simple table editor"
908
  msgstr ""
909
 
910
+ #: source/class.wdttools.php:383
911
  msgid ""
912
  "Here you can populate your table with data. <br><br>You can move around the "
913
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
916
  "line of the row header. Click 'Continue' to move on."
917
  msgstr ""
918
 
919
+ #: source/class.wdttools.php:386
920
  msgid "Check out the Simple table toolbar"
921
  msgstr ""
922
 
923
+ #: source/class.wdttools.php:387
924
  msgid ""
925
  "Here you can style and insert custom data for each cell or range of cells. "
926
  "You can add or delete columns and rows, merge cells, customize sections by "
928
  "ratings or custom HTML code."
929
  msgstr ""
930
 
931
+ #: source/class.wdttools.php:390
932
  msgid "Responsive table views"
933
  msgstr ""
934
 
935
+ #: source/class.wdttools.php:391
936
  msgid ""
937
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
938
  "tab that you need, so you can make sure your table looks excellent across "
939
  "all devices. "
940
  msgstr ""
941
 
942
+ #: source/class.wdttools.php:394
943
  msgid "Real-time preview"
944
  msgstr ""
945
 
946
+ #: source/class.wdttools.php:395
947
  msgid ""
948
  "Here you will see how your table will look like on the page. Please click "
949
  "'Continue' to move on."
950
  msgstr ""
951
 
952
+ #: source/class.wdttools.php:398
953
  msgid "Congrats! Your table is ready."
954
  msgstr ""
955
 
956
+ #: source/class.wdttools.php:399
957
  msgid ""
958
  "Now you can copy the shortcode for this table, and check out how it looks on "
959
  "your website when you paste it to a post or page. You can always come back "
960
  "and edit the table as you like."
961
  msgstr ""
962
 
963
+ #: source/class.wdttools.php:405
964
  msgid ""
965
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
966
  "existing data source. \"Linked\" in this context means that if you create a "
969
  "reflected in the table."
970
  msgstr ""
971
 
972
+ #: source/class.wdttools.php:408
973
  msgid "Let's create a new wpDataTable!"
974
  msgstr ""
975
 
976
+ #: source/class.wdttools.php:412
977
  msgid "Choose this option."
978
  msgstr ""
979
 
980
+ #: source/class.wdttools.php:413
981
  msgid "Please select 'Create a table linked to an existing data source'."
982
  msgstr ""
983
 
984
+ #: source/class.wdttools.php:420
985
+ #: templates/admin/table-settings/table_settings_block.inc.php:101
986
  msgid "Input data source type"
987
  msgstr ""
988
 
989
+ #: source/class.wdttools.php:421
990
  msgid "Please select a data source type that you need."
991
  msgstr ""
992
 
993
+ #: source/class.wdttools.php:424
994
  msgid "Select Data source type"
995
  msgstr ""
996
 
997
+ #: source/class.wdttools.php:425
998
  msgid ""
999
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1000
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1001
  "are available in Premium version)"
1002
  msgstr ""
1003
 
1004
+ #: source/class.wdttools.php:428
1005
+ #: templates/admin/table-settings/table_settings_block.inc.php:131
1006
  msgid "Input file path or URL"
1007
  msgstr ""
1008
 
1009
+ #: source/class.wdttools.php:429
1010
  msgid ""
1011
  "Upload your file or provide the full URL here. When you finish click "
1012
  "'Continue' button."
1013
  msgstr ""
1014
 
1015
+ #: source/class.wdttools.php:432
1016
  msgid "Click Save Changes"
1017
  msgstr ""
1018
 
1019
+ #: source/class.wdttools.php:433
1020
  msgid ""
1021
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1022
  "get an error message after button click and you are not able to solve it, "
1025
  "click Skip tutorial."
1026
  msgstr ""
1027
 
1028
+ #: source/class.wdttools.php:436
1029
  msgid "The table is creating..."
1030
  msgstr ""
1031
 
1032
+ #: source/class.wdttools.php:437
1033
  msgid ""
1034
  "Now the table is creating. Wait until you see it in the background and then "
1035
  "click 'Continue'."
1036
  msgstr ""
1037
 
1038
+ #: source/class.wdttools.php:440
1039
  msgid "Nice job! You just created your first wpDataTable!"
1040
  msgstr ""
1041
 
1042
+ #: source/class.wdttools.php:441
1043
  msgid ""
1044
  "Now you can copy the shortcode for this table, and check out how it looks on "
1045
  "your website when you paste it to a post or page."
1046
  msgstr ""
1047
 
1048
+ #: source/class.wdttools.php:447
1049
  msgid ""
1050
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1051
  "plugin."
1052
  msgstr ""
1053
 
1054
+ #: source/class.wdttools.php:450
1055
  msgid "Let's create a new wpDataTables Chart!"
1056
  msgstr ""
1057
 
1058
+ #: source/class.wdttools.php:451
1059
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1060
  msgstr ""
1061
 
1062
+ #: source/class.wdttools.php:454
1063
  msgid "Welcome to the Chart Wizard!"
1064
  msgstr ""
1065
 
1066
+ #: source/class.wdttools.php:455
1067
  msgid ""
1068
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1069
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1070
  msgstr ""
1071
 
1072
+ #: source/class.wdttools.php:458
1073
  msgid "Follow the steps in the Chart Wizard"
1074
  msgstr ""
1075
 
1076
+ #: source/class.wdttools.php:459
1077
  msgid ""
1078
  "By following these steps, you will finish building your chart in the Chart "
1079
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1080
  "'Continue' button to move forward."
1081
  msgstr ""
1082
 
1083
+ #: source/class.wdttools.php:462
1084
  msgid "Choose a name for your Chart"
1085
  msgstr ""
1086
 
1087
+ #: source/class.wdttools.php:463
1088
  msgid "Click 'Continue' button when you’re ready to move forward."
1089
  msgstr ""
1090
 
1091
+ #: source/class.wdttools.php:466
1092
  msgid "In wpDataTables you can find several charts render engines."
1093
  msgstr ""
1094
 
1095
+ #: source/class.wdttools.php:467
1096
  msgid ""
1097
  "Click on the dropdown, and you will see several options that you can choose "
1098
  "from.(Google charts are only available) <br><br>To continue, click on the "
1099
  "dropdown."
1100
  msgstr ""
1101
 
1102
+ #: source/class.wdttools.php:470
1103
  msgid "Choose Google chart engine."
1104
  msgstr ""
1105
 
1106
+ #: source/class.wdttools.php:471
1107
  msgid ""
1108
  "By clicking on Google chart options, you will choose the engine that will "
1109
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1110
  "to move forward."
1111
  msgstr ""
1112
 
1113
+ #: source/class.wdttools.php:474
1114
  msgid "Different charts types. "
1115
  msgstr ""
1116
 
1117
+ #: source/class.wdttools.php:475
1118
  msgid ""
1119
  "Here you can choose a chart type. Please, click on the chart type that you "
1120
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1121
  "forward."
1122
  msgstr ""
1123
 
1124
+ #: source/class.wdttools.php:478
1125
  msgid "The first step is finished!"
1126
  msgstr ""
1127
 
1128
+ #: source/class.wdttools.php:479
1129
  msgid "Let's move on. Please, click 'Next' to continue."
1130
  msgstr ""
1131
 
1132
+ #: source/class.wdttools.php:482
1133
  msgid ""
1134
  "Now you need to choose a wpDataTable based on which we will build a chart "
1135
  "for you"
1136
  msgstr ""
1137
 
1138
+ #: source/class.wdttools.php:483
1139
  msgid ""
1140
  "Click on the dropdown, and all your tables will be listed. The columns of "
1141
  "the table that you choose will be used for creating the chart.<br><br>If you "
1143
  "button and create wpDataTable that would contain the data to visualize first."
1144
  msgstr ""
1145
 
1146
+ #: source/class.wdttools.php:486
1147
  msgid "Pick your wpDataTable"
1148
  msgstr ""
1149
 
1150
+ #: source/class.wdttools.php:487
1151
  msgid ""
1152
  "Pick a wpDataTable from which you want to render a chart and when you "
1153
  "finish, please click 'Continue' to move on."
1154
  msgstr ""
1155
 
1156
+ #: source/class.wdttools.php:490
1157
  msgid "The second step is finished!"
1158
  msgstr ""
1159
 
1160
+ #: source/class.wdttools.php:491
1161
  msgid ""
1162
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1163
  msgstr ""
1164
 
1165
+ #: source/class.wdttools.php:494
1166
  msgid "Just a heads up!"
1167
  msgstr ""
1168
 
1169
+ #: source/class.wdttools.php:495
1170
  msgid ""
1171
  "Here you will choose from which columns you will create a chart.<br><br> "
1172
  "Please click 'Continue' button to move forward."
1173
  msgstr ""
1174
 
1175
+ #: source/class.wdttools.php:498
1176
  msgid "Meet the wpDataTable Column Blocks"
1177
  msgstr ""
1178
 
1179
+ #: source/class.wdttools.php:499
1180
  msgid ""
1181
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1182
  "or click on the arrow to move the desired column to the 'Columns used in the "
1183
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1184
  msgstr ""
1185
 
1186
+ #: source/class.wdttools.php:502
1187
  msgid "Well done!"
1188
  msgstr ""
1189
 
1190
+ #: source/class.wdttools.php:503
1191
  msgid "Just two more steps to go. Please click 'Next' to continue."
1192
  msgstr ""
1193
 
1194
+ #: source/class.wdttools.php:506
1195
  msgid "Chart settings and chart preview."
1196
  msgstr ""
1197
 
1198
+ #: source/class.wdttools.php:507
1199
  msgid ""
1200
  "Here you can adjust chart settings, different parameters are grouped in "
1201
  "section; adjusting the parameters will be reflected in the preview of your "
1203
  "button to move forward."
1204
  msgstr ""
1205
 
1206
+ #: source/class.wdttools.php:510
1207
  msgid "In this sidebar, you can find the chart settings section."
1208
  msgstr ""
1209
 
1210
+ #: source/class.wdttools.php:511
1211
  msgid ""
1212
  "By clicking on each section, you can set your desired parameters per section."
1213
  "<br><br> Please click 'Continue' button to move on."
1214
  msgstr ""
1215
 
1216
+ #: source/class.wdttools.php:514
1217
  msgid "Here are the available chart options"
1218
  msgstr ""
1219
 
1220
+ #: source/class.wdttools.php:515
1221
  msgid ""
1222
  "Set different chart options for the chosen section to get your desired chart "
1223
  "look.<br><br> Please click 'Continue' button to move on."
1224
  msgstr ""
1225
 
1226
+ #: source/class.wdttools.php:518
1227
  msgid "How your chart will look like on the page of your website"
1228
  msgstr ""
1229
 
1230
+ #: source/class.wdttools.php:519
1231
  msgid ""
1232
  "Here you can see a preview of your chart based on the settings you have "
1233
  "chosen.<br><br> Please click 'Continue' button to move on."
1234
  msgstr ""
1235
 
1236
+ #: source/class.wdttools.php:522
1237
  msgid "You can save your chart now"
1238
  msgstr ""
1239
 
1240
+ #: source/class.wdttools.php:523
1241
  msgid ""
1242
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1243
  "button and all your settings for this chart will be saved in the database."
1244
  msgstr ""
1245
 
1246
+ #: source/class.wdttools.php:526
1247
  msgid "Congrats! Your first chart is ready!"
1248
  msgstr ""
1249
 
1250
+ #: source/class.wdttools.php:527
1251
  msgid ""
1252
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1253
  "page. <br><br>You may now finish this tutorial. "
1261
  msgid "You are mixing data types (several date axes and several number)"
1262
  msgstr ""
1263
 
1264
+ #: source/class.wpdatatable.php:1876
1265
  msgid ""
1266
  "You are trying to load a table of an unknown type. Probably you did not "
1267
  "activate the addon which is required to use this table type."
1268
  msgstr ""
1269
 
1270
+ #: source/class.wpdatatable.php:2106 source/class.wpdatatable.php:2109
1271
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1272
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1273
+ #: templates/admin/table-settings/table_settings_block.inc.php:327
1274
  #: templates/edit_table.inc.php:409
1275
  msgid "All"
1276
  msgstr ""
1277
 
1278
+ #: source/class.wpdatatable.php:2167 source/class.wpdatatable.php:2236
1279
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1280
  msgid "Columns"
1281
  msgstr ""
1282
 
1283
+ #: source/class.wpdatatable.php:2177 source/class.wpdatatable.php:2246
1284
+ #: templates/admin/table-settings/table_settings_block.inc.php:1049
1285
  msgid "Print"
1286
  msgstr ""
1287
 
1288
+ #: source/class.wpdatatable.php:2216 source/class.wpdatatable.php:2289
1289
+ #: templates/admin/table-settings/table_settings_block.inc.php:1053
1290
  msgid "PDF"
1291
  msgstr ""
1292
 
1293
+ #: source/class.wpdatatable.php:2224
1294
  msgid "Export"
1295
  msgstr ""
1296
 
1297
+ #: source/class.wpdatatable.php:2302
1298
  msgid "Search table"
1299
  msgstr ""
1300
 
1301
+ #: source/class.wpdatatable.php:2303
1302
  msgid "Showing _MENU_ Entries"
1303
  msgstr ""
1304
 
1317
  msgid "if you have some questions or problems with the plugin."
1318
  msgstr ""
1319
 
1320
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1321
  msgid "wpDataTables Addons"
1322
  msgstr ""
1323
 
1331
  msgstr ""
1332
 
1333
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1334
+ #: templates/admin/dashboard/dashboard.inc.php:570
1335
  msgid "Report Builder"
1336
  msgstr ""
1337
 
1338
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1339
+ #: templates/admin/dashboard/dashboard.inc.php:574
1340
  msgid ""
1341
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1342
  "XLSX documents filled in with actual data from your database."
1362
  msgstr ""
1363
 
1364
  #: templates/admin/addons/addons.inc.php:40
1365
+ #: templates/admin/dashboard/dashboard.inc.php:517
1366
  msgid "Master Detail Tables for wpDataTables"
1367
  msgstr ""
1368
 
1383
  msgstr ""
1384
 
1385
  #: templates/admin/addons/addons.inc.php:67
1386
+ #: templates/admin/dashboard/dashboard.inc.php:544
1387
  msgid "Powerful Filters for wpDataTables"
1388
  msgstr ""
1389
 
1395
  msgstr ""
1396
 
1397
  #: templates/admin/addons/addons.inc.php:120
1398
+ #: templates/admin/dashboard/dashboard.inc.php:597
1399
  msgid "Formidable Forms integration for wpDataTables"
1400
  msgstr ""
1401
 
1402
  #: templates/admin/addons/addons.inc.php:123
1403
+ #: templates/admin/dashboard/dashboard.inc.php:601
1404
  msgid ""
1405
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1406
  "create wpDataTables from Formidable Forms entries data."
1407
  msgstr ""
1408
 
1409
  #: templates/admin/addons/addons.inc.php:143
1410
+ #: templates/admin/dashboard/dashboard.inc.php:623
1411
  msgid "Gravity Forms integration for wpDataTables"
1412
  msgstr ""
1413
 
1414
  #: templates/admin/addons/addons.inc.php:146
1415
+ #: templates/admin/dashboard/dashboard.inc.php:627
1416
  msgid ""
1417
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1418
  "wpDataTables from Gravity Forms entries data."
1488
  msgstr ""
1489
 
1490
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1491
+ #: templates/admin/table-settings/table_settings_block.inc.php:60
1492
  #: templates/chart_wizard.inc.php:36
1493
  msgid "Data source"
1494
  msgstr ""
1531
 
1532
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1533
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
1534
+ #: templates/admin/table-settings/table_settings_block.inc.php:1902
1535
  #: templates/edit_table.inc.php:730
1536
  msgid "Color"
1537
  msgstr ""
1747
  #: templates/admin/getting-started/getting_started.inc.php:144
1748
  #: templates/admin/getting-started/getting_started.inc.php:156
1749
  #: templates/admin/getting-started/getting_started.inc.php:168
1750
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
1751
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
1752
  msgid "Available in Premium"
1753
  msgstr ""
1754
 
1872
  msgid "Axes"
1873
  msgstr ""
1874
 
 
 
 
 
1875
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1876
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1877
  msgid "Tooltip"
1960
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
1961
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
1962
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
1963
+ #: templates/admin/table-settings/table_settings_block.inc.php:1549
1964
+ #: templates/admin/table-settings/table_settings_block.inc.php:1879
1965
  msgid "Background color"
1966
  msgstr ""
1967
 
1980
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
1981
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
1982
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
1983
+ #: templates/admin/table-settings/table_settings_block.inc.php:1571
1984
  msgid "Border color"
1985
  msgstr ""
1986
 
2019
 
2020
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2021
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
2022
+ #: templates/admin/table-settings/table_settings_block.inc.php:1483
2023
  msgid "Font size"
2024
  msgstr ""
2025
 
2381
  #: templates/admin/dashboard/dashboard.inc.php:30
2382
  #: templates/admin/getting-started/getting_started.inc.php:34
2383
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2384
+ #: templates/admin/settings/settings.inc.php:100
2385
  #: templates/admin/support/support.inc.php:31
2386
  #: templates/admin/support/support.inc.php:47
2387
  #: templates/admin/system-info/system_info.inc.php:29
2388
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2389
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2390
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2391
+ #: templates/admin/table-settings/table_settings_block.inc.php:2063
2392
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2393
  msgid "View Documentation"
2394
  msgstr ""
2617
  msgstr ""
2618
 
2619
  #: templates/admin/dashboard/dashboard.inc.php:340
2620
+ msgid "A minor update with a couple of improvements and bug fixes:"
 
 
2621
  msgstr ""
2622
 
2623
  #: templates/admin/dashboard/dashboard.inc.php:345
2624
  msgid ""
2625
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2626
+ "media in Simple tables."
2627
  msgstr ""
2628
 
2629
  #: templates/admin/dashboard/dashboard.inc.php:346
2630
  msgid ""
2631
+ "<strong>Improvement:</strong> Added translate functions on some strings."
 
2632
  msgstr ""
2633
 
2634
  #: templates/admin/dashboard/dashboard.inc.php:347
2635
  msgid ""
2636
+ "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2637
+ "area and filters for elementor widgets."
2638
  msgstr ""
2639
 
2640
  #: templates/admin/dashboard/dashboard.inc.php:348
2641
  msgid ""
2642
+ "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2643
+ "background in graphite skin."
2644
  msgstr ""
2645
 
2646
  #: templates/admin/dashboard/dashboard.inc.php:349
2647
  msgid ""
2648
+ "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2649
+ "settings."
2650
  msgstr ""
2651
 
2652
  #: templates/admin/dashboard/dashboard.inc.php:350
2653
+ msgid "Compatibility with WordPress 5.6.2 approved."
2654
+ msgstr ""
2655
+
2656
+ #: templates/admin/dashboard/dashboard.inc.php:351
2657
  msgid "Other small bug fixes and stability improvements."
2658
  msgstr ""
2659
 
2660
+ #: templates/admin/dashboard/dashboard.inc.php:363
2661
  msgid "Go Premium!"
2662
  msgstr ""
2663
 
2664
+ #: templates/admin/dashboard/dashboard.inc.php:369
2665
  msgid "View Comparison"
2666
  msgstr ""
2667
 
2668
+ #: templates/admin/dashboard/dashboard.inc.php:377
2669
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2670
  msgid ""
2671
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2672
  "of the powerful features."
2673
  msgstr ""
2674
 
2675
+ #: templates/admin/dashboard/dashboard.inc.php:381
2676
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2677
  msgid "Create a table manually"
2678
  msgstr ""
2679
 
2680
+ #: templates/admin/dashboard/dashboard.inc.php:384
2681
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2682
  msgid "Creating tables from Google Spreadsheet"
2683
  msgstr ""
2684
 
2685
+ #: templates/admin/dashboard/dashboard.inc.php:387
2686
  msgid ""
2687
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2688
  "tables via Google Sheet API"
2689
  msgstr ""
2690
 
2691
+ #: templates/admin/dashboard/dashboard.inc.php:390
2692
  msgid ""
2693
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2694
  "tables from Private Google Spreadsheet"
2695
  msgstr ""
2696
 
2697
+ #: templates/admin/dashboard/dashboard.inc.php:393
2698
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2699
  msgid "Creating MySQL-based tables from database"
2700
  msgstr ""
2701
 
2702
+ #: templates/admin/dashboard/dashboard.inc.php:396
2703
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2704
  msgid "Creating MySQL-based tables from Wordpress post types"
2705
  msgstr ""
2706
 
2707
+ #: templates/admin/dashboard/dashboard.inc.php:399
2708
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
2709
  #: templates/edit_table.inc.php:329
2710
  msgid "Advanced filtering"
2711
  msgstr ""
2712
 
2713
+ #: templates/admin/dashboard/dashboard.inc.php:402
2714
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2715
+ #: templates/admin/table-settings/table_settings_block.inc.php:153
2716
  #: templates/edit_table.inc.php:282
2717
  msgid "Server-side processing"
2718
  msgstr ""
2719
 
2720
+ #: templates/admin/dashboard/dashboard.inc.php:405
2721
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2722
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2723
  msgstr ""
2724
 
2725
+ #: templates/admin/dashboard/dashboard.inc.php:408
2726
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2727
  msgid "Front-end table editing"
2728
  msgstr ""
2729
 
2730
+ #: templates/admin/dashboard/dashboard.inc.php:411
2731
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2732
  msgid "Excel-like editing"
2733
  msgstr ""
2734
 
2735
+ #: templates/admin/dashboard/dashboard.inc.php:414
2736
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2737
  msgid "Creating charts with Highcharts"
2738
  msgstr ""
2739
 
2740
+ #: templates/admin/dashboard/dashboard.inc.php:417
2741
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2742
  msgid "Creating charts with Chart.js"
2743
  msgstr ""
2744
 
2745
+ #: templates/admin/dashboard/dashboard.inc.php:420
2746
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2747
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2748
  #: templates/edit_table.inc.php:301
2749
  msgid "Responsive"
2750
  msgstr ""
2751
 
2752
+ #: templates/admin/dashboard/dashboard.inc.php:423
2753
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2754
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2755
  #: templates/edit_table.inc.php:750
2756
  msgid "Conditional formatting"
2757
  msgstr ""
2758
 
2759
+ #: templates/admin/dashboard/dashboard.inc.php:426
2760
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2761
  msgid "Calculating Tools"
2762
  msgstr ""
2763
 
2764
+ #: templates/admin/dashboard/dashboard.inc.php:429
2765
  msgid "Formula columns"
2766
  msgstr ""
2767
 
2768
+ #: templates/admin/dashboard/dashboard.inc.php:432
2769
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2770
+ #: templates/admin/table-settings/table_settings_block.inc.php:80
2771
  msgid "Placeholders"
2772
  msgstr ""
2773
 
2774
+ #: templates/admin/dashboard/dashboard.inc.php:435
2775
  msgid "Premium support"
2776
  msgstr ""
2777
 
2778
+ #: templates/admin/dashboard/dashboard.inc.php:439
2779
  msgid "Get Premium Today"
2780
  msgstr ""
2781
 
2782
+ #: templates/admin/dashboard/dashboard.inc.php:446
2783
  msgid "News Blog"
2784
  msgstr ""
2785
 
2786
+ #: templates/admin/dashboard/dashboard.inc.php:451
2787
  msgid "Checkout useful articles from wpdatatables.com"
2788
  msgstr ""
2789
 
2790
+ #: templates/admin/dashboard/dashboard.inc.php:474
2791
  msgid "Please install and enable PHP extensions xml and dom on your server."
2792
  msgstr ""
2793
 
2794
+ #: templates/admin/dashboard/dashboard.inc.php:482
2795
  msgid ""
2796
  "Never miss notifications about new cool features, promotions,\n"
2797
  " giveaways or freebies – subscribe to our "
2799
  " about 1 message per month and never spam!"
2800
  msgstr ""
2801
 
2802
+ #: templates/admin/dashboard/dashboard.inc.php:500
2803
  msgid "Premium "
2804
  msgstr ""
2805
 
2806
+ #: templates/admin/dashboard/dashboard.inc.php:503
2807
  msgid ""
2808
  "While wpDataTables itself provides quite a large amount of features and "
2809
  "unlimited customisation, flexibility, you can achieve even more with our "
2810
  "premium addons.(requires wpDataTables Premium version)"
2811
  msgstr ""
2812
 
2813
+ #: templates/admin/dashboard/dashboard.inc.php:521
2814
  msgid ""
2815
  "A wpDataTables addon which allows showing additional details for a specific "
2816
  "row in a popup or a separate page or post."
2817
  msgstr ""
2818
 
2819
+ #: templates/admin/dashboard/dashboard.inc.php:527
2820
+ #: templates/admin/dashboard/dashboard.inc.php:554
2821
+ #: templates/admin/dashboard/dashboard.inc.php:580
2822
+ #: templates/admin/dashboard/dashboard.inc.php:607
2823
+ #: templates/admin/dashboard/dashboard.inc.php:633
2824
+ #: templates/admin/dashboard/dashboard.inc.php:666
2825
  msgid "Learn More"
2826
  msgstr ""
2827
 
2828
+ #: templates/admin/dashboard/dashboard.inc.php:548
2829
  msgid ""
2830
  "An add-on for wpDataTables that provides powerful filtering features: "
2831
  "cascade filtering, applying filters on button click, hide table before "
2832
  "filtering."
2833
  msgstr ""
2834
 
2835
+ #: templates/admin/dashboard/dashboard.inc.php:644
2836
  msgid "Need free booking plugin?"
2837
  msgstr ""
2838
 
2839
+ #: templates/admin/dashboard/dashboard.inc.php:653
2840
  msgid "Appointments and Events WordPress Booking Plugin"
2841
  msgstr ""
2842
 
2843
+ #: templates/admin/dashboard/dashboard.inc.php:656
2844
  msgid ""
2845
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2846
  "set up a fully-featured automated booking system on your WordPress website "
2851
  "each month."
2852
  msgstr ""
2853
 
2854
+ #: templates/admin/dashboard/dashboard.inc.php:659
2855
  msgid "Rating: 4.3 - ‎97 reviews"
2856
  msgstr ""
2857
 
2858
+ #: templates/admin/dashboard/dashboard.inc.php:662
2859
  msgid "Free Download"
2860
  msgstr ""
2861
 
2862
+ #: templates/admin/dashboard/dashboard.inc.php:677
2863
  #: templates/admin/getting-started/getting_started.inc.php:184
2864
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
2865
  #: templates/admin/support/support.inc.php:78
2866
  #: templates/admin/system-info/system_info.inc.php:509
2867
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2868
  msgid "Made by"
2869
  msgstr ""
2870
 
2871
+ #: templates/admin/dashboard/dashboard.inc.php:685
2872
  #: templates/admin/getting-started/getting_started.inc.php:192
2873
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
2874
  #: templates/admin/support/support.inc.php:45
2875
  #: templates/admin/support/support.inc.php:86
2876
  #: templates/admin/system-info/system_info.inc.php:517
2879
  msgid "Documentation"
2880
  msgstr ""
2881
 
2882
+ #: templates/admin/dashboard/dashboard.inc.php:689
2883
  #: templates/admin/getting-started/getting_started.inc.php:196
2884
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
2885
  #: templates/admin/support/support.inc.php:24
2886
  #: templates/admin/support/support.inc.php:90
2887
  #: templates/admin/system-info/system_info.inc.php:521
3007
  msgstr ""
3008
 
3009
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3010
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3011
  msgid "Go Premium Now"
3012
  msgstr ""
3013
 
3020
  msgstr ""
3021
 
3022
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3023
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3024
  msgid "Premium"
3025
  msgstr ""
3026
 
3050
 
3051
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3052
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3053
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3054
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3055
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3056
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
3057
  msgid "NEW!"
3058
  msgstr ""
3059
 
3070
 
3071
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3072
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3073
+ #: templates/admin/table-settings/table_settings_block.inc.php:643
3074
+ #: templates/admin/table-settings/table_settings_block.inc.php:651
3075
  msgid "Sorting"
3076
  msgstr ""
3077
 
3078
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3079
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3080
+ #: templates/admin/table-settings/table_settings_block.inc.php:504
3081
+ #: templates/admin/table-settings/table_settings_block.inc.php:512
3082
+ #: templates/admin/table-settings/table_settings_block.inc.php:1387
3083
  msgid "Pagination"
3084
  msgstr ""
3085
 
3106
  msgstr ""
3107
 
3108
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3109
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3110
  msgid "Limited"
3111
  msgstr ""
3112
 
3114
  msgid "Some options are not available."
3115
  msgstr ""
3116
 
3117
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3118
+ msgid "Table Customization"
3119
  msgstr ""
3120
 
3121
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3122
+ msgid "Creating tables via Google Sheet API"
3123
+ msgstr ""
3124
+
3125
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3126
  msgid "Creating tables from Private Google Spreadsheet"
3127
  msgstr ""
3128
 
3129
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3130
  msgid "Support"
3131
  msgstr ""
3132
 
3133
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3134
  msgid "Response time is slow and can be up to 5 business days."
3135
  msgstr ""
3136
 
3137
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3138
  msgid ""
3139
  "* Please note that wpDataTables add-ons are not included in premium version "
3140
  "of plugin."
3141
  msgstr ""
3142
 
3143
  #: templates/admin/settings/settings.inc.php:33
3144
+ #: templates/admin/settings/settings.inc.php:95
3145
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3146
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3147
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3148
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3149
  #: templates/admin/table-settings/table_preview_block.inc.php:89
 
3150
  #: templates/admin/table-settings/table_settings_block.inc.php:48
3151
+ #: templates/admin/table-settings/table_settings_block.inc.php:49
3152
  msgid "Save Changes"
3153
  msgstr ""
3154
 
3172
  msgid "Custom JS and CSS"
3173
  msgstr ""
3174
 
3175
+ #: templates/admin/settings/settings.inc.php:62
3176
+ msgid "Google Spreadsheet API settings"
3177
+ msgstr ""
3178
+
3179
+ #: templates/admin/settings/settings.inc.php:92 templates/settings.inc.php:434
3180
  msgid "Reset colors and fonts to default"
3181
  msgstr ""
3182
 
3183
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3184
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
3185
+ #: templates/admin/table-settings/table_settings_block.inc.php:1367
3186
+ #: templates/admin/table-settings/table_settings_block.inc.php:1461
3187
  msgid "Font"
3188
  msgstr ""
3189
 
3190
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
3191
+ #: templates/admin/table-settings/table_settings_block.inc.php:1464
3192
  #: templates/settings.inc.php:428
3193
  msgid ""
3194
  "This font will be used in rendered tables. Leave blank not to override "
3196
  msgstr ""
3197
 
3198
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
3199
+ #: templates/admin/table-settings/table_settings_block.inc.php:1486
3200
  msgid "Define the font size"
3201
  msgstr ""
3202
 
3203
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3204
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3205
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
3206
+ #: templates/admin/table-settings/table_settings_block.inc.php:1519
3207
+ #: templates/admin/table-settings/table_settings_block.inc.php:1594
3208
  msgid "Font color"
3209
  msgstr ""
3210
 
3211
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
3212
+ #: templates/admin/table-settings/table_settings_block.inc.php:1522
3213
  msgid "This color is used for the main font in table cells."
3214
  msgstr ""
3215
 
3216
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3217
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
3218
+ #: templates/admin/table-settings/table_settings_block.inc.php:1371
3219
  msgid "Header"
3220
  msgstr ""
3221
 
3222
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
3223
+ #: templates/admin/table-settings/table_settings_block.inc.php:1552
3224
  msgid "The color is used for background of the table header."
3225
  msgstr ""
3226
 
3227
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
3228
+ #: templates/admin/table-settings/table_settings_block.inc.php:1574
3229
  msgid "This color is used for the border in the table header."
3230
  msgstr ""
3231
 
3232
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
3233
+ #: templates/admin/table-settings/table_settings_block.inc.php:1597
3234
  msgid "This color is used for the font in the table header."
3235
  msgstr ""
3236
 
3237
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
3238
+ #: templates/admin/table-settings/table_settings_block.inc.php:1616
3239
  msgid "Active and hover color\t"
3240
  msgstr ""
3241
 
3242
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
3243
+ #: templates/admin/table-settings/table_settings_block.inc.php:1619
3244
  msgid ""
3245
  "This color is used when you hover the mouse above the table header, or when "
3246
  "you choose a column."
3251
  msgstr ""
3252
 
3253
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
3254
+ #: templates/admin/table-settings/table_settings_block.inc.php:1647
3255
  msgid "Inner border"
3256
  msgstr ""
3257
 
3258
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
3259
+ #: templates/admin/table-settings/table_settings_block.inc.php:1650
3260
  msgid "This color is used for the inner border in the table between cells."
3261
  msgstr ""
3262
 
3263
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
3264
+ #: templates/admin/table-settings/table_settings_block.inc.php:1670
3265
  msgid "Outer border"
3266
  msgstr ""
3267
 
3268
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
3269
+ #: templates/admin/table-settings/table_settings_block.inc.php:1673
3270
  msgid "This color is used for the outer border of the whole table body."
3271
  msgstr ""
3272
 
3273
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
3274
+ #: templates/admin/table-settings/table_settings_block.inc.php:1693
3275
  msgid "Table borders"
3276
  msgstr ""
3277
 
3278
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
3279
+ #: templates/admin/table-settings/table_settings_block.inc.php:1696
3280
  msgid "When this is checked, borders in table will be removed "
3281
  msgstr ""
3282
 
3283
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
3284
+ #: templates/admin/table-settings/table_settings_block.inc.php:1702
3285
  msgid "Remove borders in table"
3286
  msgstr ""
3287
 
3288
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
3289
+ #: templates/admin/table-settings/table_settings_block.inc.php:1707
3290
  msgid "Header border"
3291
  msgstr ""
3292
 
3293
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
3294
+ #: templates/admin/table-settings/table_settings_block.inc.php:1710
3295
  msgid "When this is checked,borders in header will be removed "
3296
  msgstr ""
3297
 
3300
  msgstr ""
3301
 
3302
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
3303
+ #: templates/admin/table-settings/table_settings_block.inc.php:1379
3304
  msgid "Row color"
3305
  msgstr ""
3306
 
3307
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
3308
+ #: templates/admin/table-settings/table_settings_block.inc.php:1729
3309
  msgid "Even row background"
3310
  msgstr ""
3311
 
3312
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
3313
+ #: templates/admin/table-settings/table_settings_block.inc.php:1732
3314
  msgid "This color is used for for background in even rows."
3315
  msgstr ""
3316
 
3317
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
3318
+ #: templates/admin/table-settings/table_settings_block.inc.php:1751
3319
  msgid "Odd row background"
3320
  msgstr ""
3321
 
3322
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
3323
+ #: templates/admin/table-settings/table_settings_block.inc.php:1754
3324
  msgid "This color is used for for background in odd rows."
3325
  msgstr ""
3326
 
3327
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
3328
+ #: templates/admin/table-settings/table_settings_block.inc.php:1773
3329
  msgid "Hover row"
3330
  msgstr ""
3331
 
3332
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
3333
+ #: templates/admin/table-settings/table_settings_block.inc.php:1776
3334
  msgid ""
3335
  "This color is used for to highlight the row when you hover your mouse above "
3336
  "it."
3337
  msgstr ""
3338
 
3339
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
3340
+ #: templates/admin/table-settings/table_settings_block.inc.php:1795
3341
  msgid "Background for selected rows"
3342
  msgstr ""
3343
 
3344
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
3345
+ #: templates/admin/table-settings/table_settings_block.inc.php:1798
3346
  msgid "This color is used for background in selected rows."
3347
  msgstr ""
3348
 
3349
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
3350
+ #: templates/admin/table-settings/table_settings_block.inc.php:1383
3351
  msgid "Cell color"
3352
  msgstr ""
3353
 
3354
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
3355
+ #: templates/admin/table-settings/table_settings_block.inc.php:1826
3356
  msgid "Sorted columns, even rows"
3357
  msgstr ""
3358
 
3359
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
3360
+ #: templates/admin/table-settings/table_settings_block.inc.php:1829
3361
  msgid ""
3362
  "This color is used for background in cells which are in the active columns "
3363
  "(columns used for sorting) in even rows."
3364
  msgstr ""
3365
 
3366
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
3367
+ #: templates/admin/table-settings/table_settings_block.inc.php:1849
3368
  msgid "Sorted columns, odd rows"
3369
  msgstr ""
3370
 
3371
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
3372
+ #: templates/admin/table-settings/table_settings_block.inc.php:1852
3373
  msgid ""
3374
  "This color is used for background in cells which are in the active columns "
3375
  "(columns used for sorting) in odd rows."
3461
  msgstr ""
3462
 
3463
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
3464
+ #: templates/admin/table-settings/table_settings_block.inc.php:1882
3465
  msgid "This color is used for the background of the pagination"
3466
  msgstr ""
3467
 
3468
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
3469
+ #: templates/admin/table-settings/table_settings_block.inc.php:1905
3470
  msgid "This color is used for the color of the links in the pagination."
3471
  msgstr ""
3472
 
3473
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
3474
+ #: templates/admin/table-settings/table_settings_block.inc.php:1924
3475
  msgid "Current page background color"
3476
  msgstr ""
3477
 
3478
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
3479
+ #: templates/admin/table-settings/table_settings_block.inc.php:1927
3480
  msgid "The color is used for background of the current page"
3481
  msgstr ""
3482
 
3483
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
3484
+ #: templates/admin/table-settings/table_settings_block.inc.php:1948
3485
  msgid "Current page color"
3486
  msgstr ""
3487
 
3488
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
3489
+ #: templates/admin/table-settings/table_settings_block.inc.php:1951
3490
  msgid "This color is used for the color of the current page."
3491
  msgstr ""
3492
 
3493
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
3494
+ #: templates/admin/table-settings/table_settings_block.inc.php:1971
3495
  msgid "Other pages hover background color"
3496
  msgstr ""
3497
 
3498
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
3499
+ #: templates/admin/table-settings/table_settings_block.inc.php:1974
3500
  msgid ""
3501
  "This background color is used when you hover the mouse above the other pages"
3502
  msgstr ""
3503
 
3504
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
3505
+ #: templates/admin/table-settings/table_settings_block.inc.php:1995
3506
  msgid "Other pages hover color"
3507
  msgstr ""
3508
 
3509
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
3510
+ #: templates/admin/table-settings/table_settings_block.inc.php:1998
3511
  msgid "This color is used when you hover the mouse above the other pages."
3512
  msgstr ""
3513
 
3523
  msgstr ""
3524
 
3525
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
3526
+ #: templates/admin/table-settings/table_settings_block.inc.php:2025
3527
  #: templates/settings.inc.php:463
3528
  msgid "Custom wpDataTables CSS"
3529
  msgstr ""
3543
  msgstr ""
3544
 
3545
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
3546
+ #: templates/admin/table-settings/table_settings_block.inc.php:1407
3547
  #: templates/settings.inc.php:45
3548
  msgid "Interface language"
3549
  msgstr ""
3550
 
3551
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
3552
+ #: templates/admin/table-settings/table_settings_block.inc.php:1410
3553
  msgid "Pick the language which will be used in tables interface."
3554
  msgstr ""
3555
 
3556
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
3557
+ #: templates/admin/table-settings/table_settings_block.inc.php:1417
3558
  msgid "English (default)"
3559
  msgstr ""
3560
 
3567
  msgid "Pick the date format to use in date column type."
3568
  msgstr ""
3569
 
3570
+ #: templates/admin/settings/tabs/main_plugin_settings.php:74
3571
  #: templates/settings.inc.php:119
3572
  msgid "Time format"
3573
  msgstr ""
3574
 
3575
+ #: templates/admin/settings/tabs/main_plugin_settings.php:76
3576
  msgid "Pick the time format to use in datetime and time column type."
3577
  msgstr ""
3578
 
3579
+ #: templates/admin/settings/tabs/main_plugin_settings.php:91
3580
  msgid "Parse shortcodes"
3581
  msgstr ""
3582
 
3583
+ #: templates/admin/settings/tabs/main_plugin_settings.php:93
3584
  msgid ""
3585
  "If the option is enabled, you can use shortcodes of other plugins for "
3586
  "generating content."
3587
  msgstr ""
3588
 
3589
+ #: templates/admin/settings/tabs/main_plugin_settings.php:97
3590
  msgid "Parse shortcodes in strings"
3591
  msgstr ""
3592
 
3593
+ #: templates/admin/settings/tabs/main_plugin_settings.php:104
3594
+ #: templates/admin/table-settings/table_settings_block.inc.php:1430
3595
  #: templates/settings.inc.php:74
3596
  msgid "Base skin"
3597
  msgstr ""
3598
 
3599
+ #: templates/admin/settings/tabs/main_plugin_settings.php:106
3600
+ #: templates/admin/table-settings/table_settings_block.inc.php:1433
3601
  msgid "Choose the base skin for the plugin."
3602
  msgstr ""
3603
 
3604
+ #: templates/admin/settings/tabs/main_plugin_settings.php:112
3605
+ #: templates/admin/table-settings/table_settings_block.inc.php:1440
3606
  msgid "Material"
3607
  msgstr ""
3608
 
3609
+ #: templates/admin/settings/tabs/main_plugin_settings.php:113
3610
+ #: templates/admin/table-settings/table_settings_block.inc.php:1441
3611
  msgid "Light"
3612
  msgstr ""
3613
 
3614
+ #: templates/admin/settings/tabs/main_plugin_settings.php:114
3615
+ #: templates/admin/table-settings/table_settings_block.inc.php:1442
3616
  msgid "Graphite"
3617
  msgstr ""
3618
 
3619
+ #: templates/admin/settings/tabs/main_plugin_settings.php:115
3620
+ #: templates/admin/table-settings/table_settings_block.inc.php:1443
3621
  msgid "Aqua"
3622
  msgstr ""
3623
 
3624
+ #: templates/admin/settings/tabs/main_plugin_settings.php:116
3625
+ #: templates/admin/table-settings/table_settings_block.inc.php:1444
3626
  msgid "Purple"
3627
  msgstr ""
3628
 
3629
+ #: templates/admin/settings/tabs/main_plugin_settings.php:117
3630
+ #: templates/admin/table-settings/table_settings_block.inc.php:1445
3631
  msgid "Dark"
3632
  msgstr ""
3633
 
3634
+ #: templates/admin/settings/tabs/main_plugin_settings.php:125
3635
  #: templates/settings.inc.php:131
3636
  msgid "Number format"
3637
  msgstr ""
3638
 
3639
+ #: templates/admin/settings/tabs/main_plugin_settings.php:127
3640
  #: templates/settings.inc.php:138
3641
  msgid "Pick the number format (thousands and decimals separator)"
3642
  msgstr ""
3643
 
3644
+ #: templates/admin/settings/tabs/main_plugin_settings.php:144
3645
  #: templates/settings.inc.php:86
3646
  msgid "Render advanced filter"
3647
  msgstr ""
3648
 
3649
+ #: templates/admin/settings/tabs/main_plugin_settings.php:146
3650
  msgid ""
3651
  "Choose where you would like to render the advanced filter for tables where "
3652
  "enabled."
3653
  msgstr ""
3654
 
3655
+ #: templates/admin/settings/tabs/main_plugin_settings.php:152
3656
  #: templates/settings.inc.php:90
3657
  msgid "In the header"
3658
  msgstr ""
3659
 
3660
+ #: templates/admin/settings/tabs/main_plugin_settings.php:153
3661
  #: templates/settings.inc.php:91
3662
  msgid "In the footer"
3663
  msgstr ""
3664
 
3665
+ #: templates/admin/settings/tabs/main_plugin_settings.php:161
3666
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3667
  #: templates/settings.inc.php:143
3668
  msgid "Decimal places"
3669
  msgstr ""
3670
 
3671
+ #: templates/admin/settings/tabs/main_plugin_settings.php:163
3672
  msgid "Define the amount of decimal places for the float numbers."
3673
  msgstr ""
3674
 
3675
+ #: templates/admin/settings/tabs/main_plugin_settings.php:188
3676
  msgid "CSV delimiter"
3677
  msgstr ""
3678
 
3679
+ #: templates/admin/settings/tabs/main_plugin_settings.php:190
3680
  msgid "Pick the CSV delimiter"
3681
  msgstr ""
3682
 
3683
+ #: templates/admin/settings/tabs/main_plugin_settings.php:209
3684
  msgid "Tables sorting direction in admin page"
3685
  msgstr ""
3686
 
3687
+ #: templates/admin/settings/tabs/main_plugin_settings.php:211
3688
  msgid ""
3689
  "Here you can set sorting direction by id for browse tables and charts. By "
3690
  "default is ascending order."
3691
  msgstr ""
3692
 
3693
+ #: templates/admin/settings/tabs/main_plugin_settings.php:217
3694
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3695
  #: templates/edit_table.inc.php:663
3696
  msgid "Ascending"
3697
  msgstr ""
3698
 
3699
+ #: templates/admin/settings/tabs/main_plugin_settings.php:218
3700
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3701
  #: templates/edit_table.inc.php:665
3702
  msgid "Descending"
3703
  msgstr ""
3704
 
3705
+ #: templates/admin/settings/tabs/main_plugin_settings.php:229
3706
  #: templates/settings.inc.php:171
3707
  msgid "Tablet width"
3708
  msgstr ""
3709
 
3710
+ #: templates/admin/settings/tabs/main_plugin_settings.php:231
3711
  #: templates/settings.inc.php:175
3712
  msgid ""
3713
  "Here you can specify width of the screen (in pixels) that will be treated as "
3714
  "a tablet. You can set it wider if you want responsive effect on desktops."
3715
  msgstr ""
3716
 
3717
+ #: templates/admin/settings/tabs/main_plugin_settings.php:255
3718
  #: templates/settings.inc.php:181
3719
  msgid "Mobile width"
3720
  msgstr ""
3721
 
3722
+ #: templates/admin/settings/tabs/main_plugin_settings.php:257
3723
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3724
  msgstr ""
3725
 
3726
+ #: templates/admin/settings/tabs/main_plugin_settings.php:282
3727
  #: templates/settings.inc.php:61
3728
  msgid "Tables per admin page"
3729
  msgstr ""
3730
 
3731
+ #: templates/admin/settings/tabs/main_plugin_settings.php:284
3732
  msgid "How many tables to show in the browse page."
3733
  msgstr ""
3734
 
3735
+ #: templates/admin/settings/tabs/main_plugin_settings.php:300
3736
  msgid "Align numbers"
3737
  msgstr ""
3738
 
3739
+ #: templates/admin/settings/tabs/main_plugin_settings.php:302
3740
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3741
  msgstr ""
3742
 
3743
+ #: templates/admin/settings/tabs/main_plugin_settings.php:306
3744
  #: templates/settings.inc.php:161
3745
  msgid "Align numbers to the right"
3746
  msgstr ""
3747
 
3748
+ #: templates/admin/settings/tabs/main_plugin_settings.php:316
3749
  msgid "Sum functions label"
3750
  msgstr ""
3751
 
3752
+ #: templates/admin/settings/tabs/main_plugin_settings.php:318
3753
  msgid ""
3754
  "Enter a label that will be used for Sum functions. If you leave it blank "
3755
  "default label will be Σ ="
3756
  msgstr ""
3757
 
3758
+ #: templates/admin/settings/tabs/main_plugin_settings.php:336
3759
  msgid "Average functions label"
3760
  msgstr ""
3761
 
3762
+ #: templates/admin/settings/tabs/main_plugin_settings.php:338
3763
  msgid ""
3764
  "Enter a label that will be used for Average functions. If you leave it blank "
3765
  "default label will be Avg ="
3766
  msgstr ""
3767
 
3768
+ #: templates/admin/settings/tabs/main_plugin_settings.php:361
3769
  msgid "Minimum functions label"
3770
  msgstr ""
3771
 
3772
+ #: templates/admin/settings/tabs/main_plugin_settings.php:363
3773
  msgid ""
3774
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3775
  "default label will be Min ="
3776
  msgstr ""
3777
 
3778
+ #: templates/admin/settings/tabs/main_plugin_settings.php:381
3779
  msgid "Maximum functions label"
3780
  msgstr ""
3781
 
3782
+ #: templates/admin/settings/tabs/main_plugin_settings.php:383
3783
  msgid ""
3784
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3785
  "default label will be Max ="
3786
  msgstr ""
3787
 
3788
+ #: templates/admin/settings/tabs/main_plugin_settings.php:409
3789
  msgid "Include full bootstrap front-end"
3790
  msgstr ""
3791
 
3792
+ #: templates/admin/settings/tabs/main_plugin_settings.php:411
3793
+ #: templates/admin/settings/tabs/main_plugin_settings.php:422
3794
  msgid ""
3795
  "It is recommended to uncheck this option if bootstrap.js is already included "
3796
  "in one of the theme files. Unchecked option means that there is still "
3797
  "bootstrap.js included just in noconflict mode which should prevent errors."
3798
  msgstr ""
3799
 
3800
+ #: templates/admin/settings/tabs/main_plugin_settings.php:415
3801
  msgid "Include full bootstrap.js on the front-end"
3802
  msgstr ""
3803
 
3804
+ #: templates/admin/settings/tabs/main_plugin_settings.php:420
3805
  msgid "Include full bootstrap back-end"
3806
  msgstr ""
3807
 
3808
+ #: templates/admin/settings/tabs/main_plugin_settings.php:426
3809
  msgid "Include full bootstrap.js on the back-end"
3810
  msgstr ""
3811
 
3812
+ #: templates/admin/settings/tabs/main_plugin_settings.php:434
3813
+ #: templates/admin/settings/tabs/main_plugin_settings.php:440
3814
  #: templates/settings.inc.php:32
3815
  msgid "Show plugin credentials below tables"
3816
  msgstr ""
3817
 
3818
+ #: templates/admin/settings/tabs/main_plugin_settings.php:436
3819
  #: templates/settings.inc.php:32
3820
  msgid ""
3821
  "If you want to support our project, please, keep this checkbox as checked"
3822
  msgstr ""
3823
 
3824
+ #: templates/admin/settings/tabs/main_plugin_settings.php:445
3825
  msgid "Prevent deleting tables in database"
3826
  msgstr ""
3827
 
3828
+ #: templates/admin/settings/tabs/main_plugin_settings.php:447
3829
  msgid ""
3830
  "It is recommended to leave this option as checked if you what to keep your "
3831
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3832
  "this option, it will be deleted all tables in database after deleting plugin"
3833
  msgstr ""
3834
 
3835
+ #: templates/admin/settings/tabs/main_plugin_settings.php:451
3836
  msgid ""
3837
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3838
  msgstr ""
3839
 
3840
+ #: templates/admin/settings/tabs/main_plugin_settings.php:458
3841
  msgid "Remove Getting Started page"
3842
  msgstr ""
3843
 
3844
+ #: templates/admin/settings/tabs/main_plugin_settings.php:460
3845
  msgid ""
3846
  "Check this option if you want to remove Getting Started page from admin menu."
3847
  msgstr ""
3848
 
3849
+ #: templates/admin/settings/tabs/main_plugin_settings.php:464
3850
  msgid "Remove \"Getting Started\" page from admin menu."
3851
  msgstr ""
3852
 
4110
  msgid "Column header"
4111
  msgstr ""
4112
 
 
 
 
 
4113
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4114
  msgid "Insert after"
4115
  msgstr ""
4146
 
4147
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4148
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4149
+ #: templates/admin/table-settings/table_settings_block.inc.php:64
4150
  msgid "Display"
4151
  msgstr ""
4152
 
4159
  msgstr ""
4160
 
4161
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4162
+ #: templates/admin/table-settings/table_settings_block.inc.php:72
4163
  msgid "Editing"
4164
  msgstr ""
4165
 
4596
  msgstr ""
4597
 
4598
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4599
+ #: templates/admin/table-settings/table_settings_block.inc.php:682
4600
  msgid "Global search"
4601
  msgstr ""
4602
 
5136
  msgstr ""
5137
 
5138
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5139
+ #: templates/admin/table-settings/table_settings_block.inc.php:211
5140
  #: templates/edit_table.inc.php:58
5141
  msgid "Table title"
5142
  msgstr ""
5143
 
5144
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5145
+ #: templates/admin/table-settings/table_settings_block.inc.php:219
5146
  #: templates/edit_table.inc.php:67
5147
  msgid "Show table title"
5148
  msgstr ""
5149
 
5150
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5151
+ #: templates/admin/table-settings/table_settings_block.inc.php:226
5152
  msgid ""
5153
  "Enable this to show the table title in a h3 block above the table, disable "
5154
  "to hide."
5155
  msgstr ""
5156
 
5157
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5158
+ #: templates/admin/table-settings/table_settings_block.inc.php:234
5159
  msgid "Show table title on the page"
5160
  msgstr ""
5161
 
5222
  msgstr ""
5223
 
5224
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5225
+ #: templates/admin/table-settings/table_settings_block.inc.php:378
5226
  msgid "Scrollable table"
5227
  msgstr ""
5228
 
5229
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5230
+ #: templates/admin/table-settings/table_settings_block.inc.php:385
5231
  msgid "Enable this to enable a horizontal scrollbar below the table."
5232
  msgstr ""
5233
 
5234
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5235
+ #: templates/admin/table-settings/table_settings_block.inc.php:394
5236
  msgid "Show a horizontal scrollbar"
5237
  msgstr ""
5238
 
5239
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5240
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5241
+ #: templates/admin/table-settings/table_settings_block.inc.php:438
5242
+ #: templates/admin/table-settings/table_settings_block.inc.php:446
5243
  msgid "Limit table width"
5244
  msgstr ""
5245
 
5246
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5247
+ #: templates/admin/table-settings/table_settings_block.inc.php:453
5248
  msgid "Enable this to restrict table width to page width."
5249
  msgstr ""
5250
 
5251
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5252
+ #: templates/admin/table-settings/table_settings_block.inc.php:462
5253
  msgid "Limit table width to page width"
5254
  msgstr ""
5255
 
5256
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5257
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5258
+ #: templates/admin/table-settings/table_settings_block.inc.php:469
5259
+ #: templates/admin/table-settings/table_settings_block.inc.php:477
5260
  #: templates/edit_table.inc.php:392
5261
  msgid "Word wrap"
5262
  msgstr ""
5263
 
5264
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5265
+ #: templates/admin/table-settings/table_settings_block.inc.php:484
5266
  msgid ""
5267
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5268
  "height."
5269
  msgstr ""
5270
 
5271
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5272
+ #: templates/admin/table-settings/table_settings_block.inc.php:492
5273
  msgid "Wrap words to newlines"
5274
  msgstr ""
5275
 
5331
  msgid "EXCEL-LIKE"
5332
  msgstr ""
5333
 
5334
+ #: templates/admin/table-settings/table_settings_block.inc.php:68
5335
  msgid "Sorting and filtering"
5336
  msgstr ""
5337
 
5338
+ #: templates/admin/table-settings/table_settings_block.inc.php:76
5339
+ #: templates/admin/table-settings/table_settings_block.inc.php:1009
5340
  msgid "Table Tools"
5341
  msgstr ""
5342
 
5343
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
5344
+ msgid " Customize"
5345
+ msgstr ""
5346
+
5347
+ #: templates/admin/table-settings/table_settings_block.inc.php:103
5348
  msgid ""
5349
  "Please choose a type of the input data source - it can be a MySQL query, a "
5350
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5351
  msgstr ""
5352
 
5353
+ #: templates/admin/table-settings/table_settings_block.inc.php:110
5354
  msgid "Select a data source type"
5355
  msgstr ""
5356
 
5357
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
5358
  msgid "SQL query "
5359
  msgstr ""
5360
 
5361
+ #: templates/admin/table-settings/table_settings_block.inc.php:113
5362
  #: templates/edit_table.inc.php:85
5363
  msgid "CSV file"
5364
  msgstr ""
5365
 
5366
+ #: templates/admin/table-settings/table_settings_block.inc.php:114
5367
  #: templates/edit_table.inc.php:86
5368
  msgid "Excel file"
5369
  msgstr ""
5370
 
5371
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
5372
  msgid "Google Spreadsheet "
5373
  msgstr ""
5374
 
5375
+ #: templates/admin/table-settings/table_settings_block.inc.php:118
5376
  #: templates/edit_table.inc.php:89
5377
  msgid "XML file"
5378
  msgstr ""
5379
 
5380
+ #: templates/admin/table-settings/table_settings_block.inc.php:119
5381
  #: templates/edit_table.inc.php:90
5382
  msgid "JSON file"
5383
  msgstr ""
5384
 
5385
+ #: templates/admin/table-settings/table_settings_block.inc.php:133
5386
  msgid ""
5387
  "Upload your file or provide the full URL here. For CSV or Excel input "
5388
  "sources only URLs or paths from same domain are supported. For Google "
5390
  "the URL."
5391
  msgstr ""
5392
 
5393
+ #: templates/admin/table-settings/table_settings_block.inc.php:139
5394
  msgid "Paste URL or path, or click Browse to choose"
5395
  msgstr ""
5396
 
5397
+ #: templates/admin/table-settings/table_settings_block.inc.php:143
5398
  msgid "Browse..."
5399
  msgstr ""
5400
 
5401
+ #: templates/admin/table-settings/table_settings_block.inc.php:155
5402
  msgid ""
5403
  "If it is turned on, all sorting, filtering, pagination and other data "
5404
  "interaction will be done by MySQL server. This feature is recommended if you "
5405
  "have more than 2000-3000 rows. Mandatory for editable tables."
5406
  msgstr ""
5407
 
5408
+ #: templates/admin/table-settings/table_settings_block.inc.php:162
5409
  msgid "Enable server-side processing"
5410
  msgstr ""
5411
 
5412
+ #: templates/admin/table-settings/table_settings_block.inc.php:177
5413
  msgid "MySQL Query"
5414
  msgstr ""
5415
 
5416
+ #: templates/admin/table-settings/table_settings_block.inc.php:179
5417
  msgid ""
5418
  "Enter the text of your MySQL query here - please make sure it returns actual "
5419
  "data first. You can use a number of placeholders to make the dataset in the "
5421
  "with different shortcodes."
5422
  msgstr ""
5423
 
5424
+ #: templates/admin/table-settings/table_settings_block.inc.php:186
5425
  #: templates/edit_table.inc.php:292
5426
  msgid "Auto-refresh"
5427
  msgstr ""
5428
 
5429
+ #: templates/admin/table-settings/table_settings_block.inc.php:188
5430
  msgid ""
5431
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5432
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5433
  "refresh."
5434
  msgstr ""
5435
 
5436
+ #: templates/admin/table-settings/table_settings_block.inc.php:193
5437
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5438
  msgstr ""
5439
 
5440
+ #: templates/admin/table-settings/table_settings_block.inc.php:242
5441
  msgid "Responsiveness"
5442
  msgstr ""
5443
 
5444
+ #: templates/admin/table-settings/table_settings_block.inc.php:250
5445
  msgid "Responsive design"
5446
  msgstr ""
5447
 
5448
+ #: templates/admin/table-settings/table_settings_block.inc.php:257
5449
  msgid "Enable this to allow responsiveness in the table."
5450
  msgstr ""
5451
 
5452
+ #: templates/admin/table-settings/table_settings_block.inc.php:258
5453
  msgid ""
5454
  "Please do not forget to define which columns will be hidden on mobiles and "
5455
  "tablets in the column settings!"
5456
  msgstr ""
5457
 
5458
+ #: templates/admin/table-settings/table_settings_block.inc.php:269
5459
  msgid "Allow collapsing on mobiles and tablets"
5460
  msgstr ""
5461
 
5462
+ #: templates/admin/table-settings/table_settings_block.inc.php:277
5463
  msgid "Hide until loaded"
5464
  msgstr ""
5465
 
5466
+ #: templates/admin/table-settings/table_settings_block.inc.php:279
5467
  msgid ""
5468
  "Enable to make whole table hidden until it is initialized to prevent "
5469
  "unformatted data flashing"
5470
  msgstr ""
5471
 
5472
+ #: templates/admin/table-settings/table_settings_block.inc.php:284
5473
  msgid "Hide the table before it is fully loaded"
5474
  msgstr ""
5475
 
5476
+ #: templates/admin/table-settings/table_settings_block.inc.php:296
5477
  msgid "Default rows per page"
5478
  msgstr ""
5479
 
5480
+ #: templates/admin/table-settings/table_settings_block.inc.php:304
5481
+ #: templates/admin/table-settings/table_settings_block.inc.php:339
5482
  msgid "Rows per page"
5483
  msgstr ""
5484
 
5485
+ #: templates/admin/table-settings/table_settings_block.inc.php:311
5486
  msgid "How many rows to show per page by default."
5487
  msgstr ""
5488
 
5489
+ #: templates/admin/table-settings/table_settings_block.inc.php:347
5490
  msgid "Show X entries"
5491
  msgstr ""
5492
 
5493
+ #: templates/admin/table-settings/table_settings_block.inc.php:354
5494
  msgid ""
5495
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5496
  "frontend."
5497
  msgstr ""
5498
 
5499
+ #: templates/admin/table-settings/table_settings_block.inc.php:362
5500
  msgid "Show \"Show X entries\" dropdown"
5501
  msgstr ""
5502
 
5503
+ #: templates/admin/table-settings/table_settings_block.inc.php:386
5504
  msgid "This should be turned off if you want to set columns width manually."
5505
  msgstr ""
5506
 
5507
+ #: templates/admin/table-settings/table_settings_block.inc.php:407
5508
+ #: templates/admin/table-settings/table_settings_block.inc.php:415
5509
  msgid "Info block"
5510
  msgstr ""
5511
 
5512
+ #: templates/admin/table-settings/table_settings_block.inc.php:422
5513
  msgid ""
5514
  "Enable to show a block of information about the number of records below the "
5515
  "table."
5516
  msgstr ""
5517
 
5518
+ #: templates/admin/table-settings/table_settings_block.inc.php:430
5519
  msgid "Show information block below the table"
5520
  msgstr ""
5521
 
5522
+ #: templates/admin/table-settings/table_settings_block.inc.php:454
5523
  msgid ""
5524
  "This should be turned on if you want to set columns width manually. Should "
5525
  "be on to use word wrapping."
5526
  msgstr ""
5527
 
5528
+ #: templates/admin/table-settings/table_settings_block.inc.php:516
5529
  msgid "Enable to show a pagination"
5530
  msgstr ""
5531
 
5532
+ #: templates/admin/table-settings/table_settings_block.inc.php:524
5533
  msgid "Show pagination block below the table"
5534
  msgstr ""
5535
 
5536
+ #: templates/admin/table-settings/table_settings_block.inc.php:532
5537
+ #: templates/admin/table-settings/table_settings_block.inc.php:540
5538
  msgid "Pagination Alignment"
5539
  msgstr ""
5540
 
5541
+ #: templates/admin/table-settings/table_settings_block.inc.php:544
5542
  msgid "Here you can set pagination position: right, center or left."
5543
  msgstr ""
5544
 
5545
+ #: templates/admin/table-settings/table_settings_block.inc.php:552
5546
  msgid "Right"
5547
  msgstr ""
5548
 
5549
+ #: templates/admin/table-settings/table_settings_block.inc.php:553
5550
  msgid "Center"
5551
  msgstr ""
5552
 
5553
+ #: templates/admin/table-settings/table_settings_block.inc.php:554
5554
  msgid "Left"
5555
  msgstr ""
5556
 
5557
+ #: templates/admin/table-settings/table_settings_block.inc.php:563
5558
+ #: templates/admin/table-settings/table_settings_block.inc.php:571
5559
  msgid "Pagination Layout"
5560
  msgstr ""
5561
 
5562
+ #: templates/admin/table-settings/table_settings_block.inc.php:575
5563
  msgid "Here you can choose between different pagination layout."
5564
  msgstr ""
5565
 
5566
+ #: templates/admin/table-settings/table_settings_block.inc.php:583
5567
  msgid ""
5568
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5569
  msgstr ""
5570
 
5571
+ #: templates/admin/table-settings/table_settings_block.inc.php:584
5572
  msgid "\"Previous\" and \"Next\" buttons only"
5573
  msgstr ""
5574
 
5575
+ #: templates/admin/table-settings/table_settings_block.inc.php:585
5576
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5577
  msgstr ""
5578
 
5579
+ #: templates/admin/table-settings/table_settings_block.inc.php:586
5580
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5581
  msgstr ""
5582
 
5583
+ #: templates/admin/table-settings/table_settings_block.inc.php:587
5584
  msgid "Page number buttons only"
5585
  msgstr ""
5586
 
5587
+ #: templates/admin/table-settings/table_settings_block.inc.php:588
5588
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5589
  msgstr ""
5590
 
5591
+ #: templates/admin/table-settings/table_settings_block.inc.php:609
5592
  msgid "Advanced column filters"
5593
  msgstr ""
5594
 
5595
+ #: templates/admin/table-settings/table_settings_block.inc.php:617
5596
  msgid "Advanced filter"
5597
  msgstr ""
5598
 
5599
+ #: templates/admin/table-settings/table_settings_block.inc.php:624
5600
  msgid ""
5601
  "Enable to show an advanced filter for each of the columns, filters can be "
5602
  "shown in table footer, header or in a separate form."
5603
  msgstr ""
5604
 
5605
+ #: templates/admin/table-settings/table_settings_block.inc.php:635
5606
  msgid "Enable advanced column filters"
5607
  msgstr ""
5608
 
5609
+ #: templates/admin/table-settings/table_settings_block.inc.php:658
5610
  msgid ""
5611
  "If this is enabled, each column header will be clickable; clicking will sort "
5612
  "the whole table by the content of this column cells ascending or descending."
5613
  msgstr ""
5614
 
5615
+ #: templates/admin/table-settings/table_settings_block.inc.php:666
5616
  msgid "Allow sorting for the table"
5617
  msgstr ""
5618
 
5619
+ #: templates/admin/table-settings/table_settings_block.inc.php:674
5620
  msgid "Main search block"
5621
  msgstr ""
5622
 
5623
+ #: templates/admin/table-settings/table_settings_block.inc.php:689
5624
  msgid ""
5625
  "If this is enabled, a search block will be displayed on the top right of the "
5626
  "table, allowing to search through whole table with a single input."
5627
  msgstr ""
5628
 
5629
+ #: templates/admin/table-settings/table_settings_block.inc.php:697
5630
  msgid "Enable search block"
5631
  msgstr ""
5632
 
5633
+ #: templates/admin/table-settings/table_settings_block.inc.php:711
5634
  msgid "Filters in a form"
5635
  msgstr ""
5636
 
5637
+ #: templates/admin/table-settings/table_settings_block.inc.php:718
5638
  #: templates/edit_table.inc.php:340
5639
  msgid "Filter in form"
5640
  msgstr ""
5641
 
5642
+ #: templates/admin/table-settings/table_settings_block.inc.php:725
5643
  msgid ""
5644
  "Enable to show the advanced column filter in a form above the table, instead "
5645
  "of showing in the table footer/header."
5646
  msgstr ""
5647
 
5648
+ #: templates/admin/table-settings/table_settings_block.inc.php:734
5649
  msgid "Show filters in a form above the table"
5650
  msgstr ""
5651
 
5652
+ #: templates/admin/table-settings/table_settings_block.inc.php:742
5653
  msgid "Clear filters button"
5654
  msgstr ""
5655
 
5656
+ #: templates/admin/table-settings/table_settings_block.inc.php:749
5657
  #: templates/frontend/filter_form.inc.php:32
5658
  msgid "Clear filters"
5659
  msgstr ""
5660
 
5661
+ #: templates/admin/table-settings/table_settings_block.inc.php:753
5662
  msgid "Enable to show the clear filters button."
5663
  msgstr ""
5664
 
5665
+ #: templates/admin/table-settings/table_settings_block.inc.php:754
5666
  msgid ""
5667
  "If filter in form is enabled, clear button will be rendered after the last "
5668
  "filter."
5669
  msgstr ""
5670
 
5671
+ #: templates/admin/table-settings/table_settings_block.inc.php:759
5672
  msgid ""
5673
  "Otherwise, clear filter button will be rendered above the table next to "
5674
  "\"Table Tools\" buttons."
5675
  msgstr ""
5676
 
5677
+ #: templates/admin/table-settings/table_settings_block.inc.php:772
5678
  msgid "Show clear filters button"
5679
  msgstr ""
5680
 
5681
+ #: templates/admin/table-settings/table_settings_block.inc.php:792
5682
  msgid "Allow editing"
5683
  msgstr ""
5684
 
5685
+ #: templates/admin/table-settings/table_settings_block.inc.php:800
5686
  #: templates/edit_table.inc.php:180
5687
  msgid "Front-end editing"
5688
  msgstr ""
5689
 
5690
+ #: templates/admin/table-settings/table_settings_block.inc.php:807
5691
  msgid "Allow editing the table from the front-end."
5692
  msgstr ""
5693
 
5694
+ #: templates/admin/table-settings/table_settings_block.inc.php:815
5695
  msgid "Allow front-end editing"
5696
  msgstr ""
5697
 
5698
+ #: templates/admin/table-settings/table_settings_block.inc.php:823
5699
  msgid "Popover edit block"
5700
  msgstr ""
5701
 
5702
+ #: templates/admin/table-settings/table_settings_block.inc.php:831
5703
  #: templates/edit_table.inc.php:232
5704
  msgid "Popover tools"
5705
  msgstr ""
5706
 
5707
+ #: templates/admin/table-settings/table_settings_block.inc.php:838
5708
  msgid ""
5709
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5710
  "popover when you click on any row, instead of Table Tools block above the "
5711
  "table."
5712
  msgstr ""
5713
 
5714
+ #: templates/admin/table-settings/table_settings_block.inc.php:846
5715
  msgid "Editing buttons in a popover"
5716
  msgstr ""
5717
 
5718
+ #: templates/admin/table-settings/table_settings_block.inc.php:854
5719
+ #: templates/admin/table-settings/table_settings_block.inc.php:862
5720
  msgid "In-line editing"
5721
  msgstr ""
5722
 
5723
+ #: templates/admin/table-settings/table_settings_block.inc.php:869
5724
  msgid ""
5725
  "If this is enabled, front-end users will be able to edit cells by double-"
5726
  "clicking them, not only with the editor dialog."
5727
  msgstr ""
5728
 
5729
+ #: templates/admin/table-settings/table_settings_block.inc.php:877
5730
  msgid "Allow in-line editing"
5731
  msgstr ""
5732
 
5733
+ #: templates/admin/table-settings/table_settings_block.inc.php:892
5734
  #: templates/edit_table.inc.php:192
5735
  msgid "MySQL table name for editing"
5736
  msgstr ""
5737
 
5738
+ #: templates/admin/table-settings/table_settings_block.inc.php:894
5739
  msgid ""
5740
  "Name of the MySQL table which will be updated when edited from front-end."
5741
  msgstr ""
5742
 
5743
+ #: templates/admin/table-settings/table_settings_block.inc.php:899
5744
  msgid "MySQL table name"
5745
  msgstr ""
5746
 
5747
+ #: templates/admin/table-settings/table_settings_block.inc.php:908
5748
  #: templates/edit_table.inc.php:203
5749
  msgid "ID column for editing"
5750
  msgstr ""
5751
 
5752
+ #: templates/admin/table-settings/table_settings_block.inc.php:910
5753
  msgid ""
5754
  "Choose the column values from which will be used as row identifiers. MUST be "
5755
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
5757
  "\"id\" or \"ID\" on MySQL side."
5758
  msgstr ""
5759
 
5760
+ #: templates/admin/table-settings/table_settings_block.inc.php:924
5761
  #: templates/edit_table.inc.php:267
5762
  msgid "Editor roles"
5763
  msgstr ""
5764
 
5765
+ #: templates/admin/table-settings/table_settings_block.inc.php:926
5766
  msgid ""
5767
  "If you want only specific user roles to be able to edit the table, choose in "
5768
  "this dropdown. Leave unchecked to allow editing for everyone."
5769
  msgstr ""
5770
 
5771
+ #: templates/admin/table-settings/table_settings_block.inc.php:931
5772
  msgid "Everyone"
5773
  msgstr ""
5774
 
5775
+ #: templates/admin/table-settings/table_settings_block.inc.php:932
5776
  msgid "Administrators"
5777
  msgstr ""
5778
 
5779
+ #: templates/admin/table-settings/table_settings_block.inc.php:933
5780
  msgid "Editors"
5781
  msgstr ""
5782
 
5783
+ #: templates/admin/table-settings/table_settings_block.inc.php:934
5784
  msgid "Authors"
5785
  msgstr ""
5786
 
5787
+ #: templates/admin/table-settings/table_settings_block.inc.php:935
5788
  msgid "Contributors"
5789
  msgstr ""
5790
 
5791
+ #: templates/admin/table-settings/table_settings_block.inc.php:936
5792
  msgid "Subscribers"
5793
  msgstr ""
5794
 
5795
+ #: templates/admin/table-settings/table_settings_block.inc.php:951
5796
  msgid "Users see and edit only own data"
5797
  msgstr ""
5798
 
5799
+ #: templates/admin/table-settings/table_settings_block.inc.php:959
5800
  msgid "Users see and edit only their own data"
5801
  msgstr ""
5802
 
5803
+ #: templates/admin/table-settings/table_settings_block.inc.php:966
5804
  msgid ""
5805
  "If this is enabled, users will see and edit only the rows that are related "
5806
  "to them or were created by them (associated using the User ID column)."
5807
  msgstr ""
5808
 
5809
+ #: templates/admin/table-settings/table_settings_block.inc.php:974
5810
  msgid "Limit editing to own data only"
5811
  msgstr ""
5812
 
5813
+ #: templates/admin/table-settings/table_settings_block.inc.php:982
5814
  #: templates/edit_table.inc.php:250
5815
  msgid "User ID column"
5816
  msgstr ""
5817
 
5818
+ #: templates/admin/table-settings/table_settings_block.inc.php:984
5819
  msgid ""
5820
  "Choose the column values from which will be used as User identifiers. "
5821
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
5822
  "an integer on MySQL side."
5823
  msgstr ""
5824
 
5825
+ #: templates/admin/table-settings/table_settings_block.inc.php:1017
5826
  #: templates/edit_table.inc.php:350
5827
  msgid "Table tools"
5828
  msgstr ""
5829
 
5830
+ #: templates/admin/table-settings/table_settings_block.inc.php:1024
5831
  msgid ""
5832
  "If this is enabled, a toolbar with useful tools will be shown above the table"
5833
  msgstr ""
5834
 
5835
+ #: templates/admin/table-settings/table_settings_block.inc.php:1032
5836
  msgid "Enable Table Tools"
5837
  msgstr ""
5838
 
5839
+ #: templates/admin/table-settings/table_settings_block.inc.php:1040
5840
  msgid "Buttons"
5841
  msgstr ""
5842
 
5843
+ #: templates/admin/table-settings/table_settings_block.inc.php:1042
5844
  msgid "Choose which buttons to show in the Table Tools block."
5845
  msgstr ""
5846
 
5847
+ #: templates/admin/table-settings/table_settings_block.inc.php:1048
5848
  msgid "Columns visibility"
5849
  msgstr ""
5850
 
5851
+ #: templates/admin/table-settings/table_settings_block.inc.php:1080
5852
  msgid ""
5853
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
5854
  "that will be replaced with some actual values at the execution time; usually "
5855
+ "this is used for SQL queries, but you can use it for filtering and editing "
5856
+ "for manual tables and only filtering for tables created from XML, JSON, "
5857
+ "Excel, CSV, Google Spreadsheet and PHP Serialized array."
5858
  msgstr ""
5859
 
5860
+ #: templates/admin/table-settings/table_settings_block.inc.php:1094
5861
+ #: templates/admin/table-settings/table_settings_block.inc.php:1109
5862
+ #: templates/admin/table-settings/table_settings_block.inc.php:1124
5863
  msgid ""
5864
  "This placeholder will be replaced with any value that you will provide in a "
5865
  "shortcode. Provide a default value here that will be used for table "
5866
  "generation and when a different one is not defined in the shortcode."
5867
  msgstr ""
5868
 
5869
+ #: templates/admin/table-settings/table_settings_block.inc.php:1099
5870
+ #: templates/admin/table-settings/table_settings_block.inc.php:1114
5871
+ #: templates/admin/table-settings/table_settings_block.inc.php:1129
5872
+ #: templates/admin/table-settings/table_settings_block.inc.php:1152
5873
+ #: templates/admin/table-settings/table_settings_block.inc.php:1170
5874
+ #: templates/admin/table-settings/table_settings_block.inc.php:1188
5875
+ #: templates/admin/table-settings/table_settings_block.inc.php:1210
5876
+ #: templates/admin/table-settings/table_settings_block.inc.php:1228
5877
+ #: templates/admin/table-settings/table_settings_block.inc.php:1246
5878
+ #: templates/admin/table-settings/table_settings_block.inc.php:1271
5879
+ #: templates/admin/table-settings/table_settings_block.inc.php:1291
5880
+ #: templates/admin/table-settings/table_settings_block.inc.php:1310
5881
+ #: templates/admin/table-settings/table_settings_block.inc.php:1332
5882
  msgid "Default for table generation"
5883
  msgstr ""
5884
 
5885
+ #: templates/admin/table-settings/table_settings_block.inc.php:1145
5886
  msgid ""
5887
  "This placeholder will be replaced with the ID of currently logged in user. "
5888
  "Provide a value here to be used for table generation"
5889
  msgstr ""
5890
 
5891
+ #: templates/admin/table-settings/table_settings_block.inc.php:1162
5892
  msgid ""
5893
  "This placeholder will be replaced with the login of currently logged in "
5894
  "user. Provide a value here to be used for table generation"
5895
  msgstr ""
5896
 
5897
+ #: templates/admin/table-settings/table_settings_block.inc.php:1180
5898
  msgid ""
5899
+ "This placeholder will be replaced with the Email of currently logged in "
5900
+ "user. Provide a value here to be used for table generation"
5901
  msgstr ""
5902
 
5903
+ #: templates/admin/table-settings/table_settings_block.inc.php:1204
5904
  msgid ""
5905
  "This placeholder will be replaced with the ID of current post. Provide a "
5906
  "value here to be used for table generation"
5907
  msgstr ""
5908
 
5909
+ #: templates/admin/table-settings/table_settings_block.inc.php:1220
5910
+ msgid ""
5911
+ "This placeholder will be replaced with the First Name of currently logged in "
5912
+ "user. Provide a value here to be used for table generation"
5913
+ msgstr ""
5914
+
5915
+ #: templates/admin/table-settings/table_settings_block.inc.php:1238
5916
+ msgid ""
5917
+ "This placeholder will be replaced with the Last Name of currently logged in "
5918
+ "user. Provide a value here to be used for table generation"
5919
+ msgstr ""
5920
+
5921
+ #: templates/admin/table-settings/table_settings_block.inc.php:1262
5922
+ msgid "This placeholder will be replaced with current date."
5923
+ msgstr ""
5924
+
5925
+ #: templates/admin/table-settings/table_settings_block.inc.php:1281
5926
+ msgid "This placeholder will be replaced with current datetime."
5927
+ msgstr ""
5928
+
5929
+ #: templates/admin/table-settings/table_settings_block.inc.php:1301
5930
+ msgid "This placeholder will be replaced with current time."
5931
+ msgstr ""
5932
+
5933
+ #: templates/admin/table-settings/table_settings_block.inc.php:1325
5934
+ msgid ""
5935
+ "This placeholder will be replaced with the current prefix of WordPress "
5936
+ "database. Provide a value here to be used for table generation"
5937
+ msgstr ""
5938
+
5939
+ #: templates/admin/table-settings/table_settings_block.inc.php:1356
5940
+ msgid ""
5941
+ "In premium version you can customize each table with different skin, font, "
5942
+ "background , colors and lot more. Checkout new table customize settings "
5943
+ "below."
5944
+ msgstr ""
5945
+
5946
+ #: templates/admin/table-settings/table_settings_block.inc.php:1363
5947
+ msgid "Main"
5948
+ msgstr ""
5949
+
5950
+ #: templates/admin/table-settings/table_settings_block.inc.php:1375
5951
+ msgid "Table border"
5952
+ msgstr ""
5953
+
5954
+ #: templates/admin/table-settings/table_settings_block.inc.php:1391
5955
+ msgid "Custom CSS"
5956
+ msgstr ""
5957
+
5958
+ #: templates/admin/table-settings/table_settings_block.inc.php:1716
5959
+ msgid "Remove borders in table header"
5960
+ msgstr ""
5961
+
5962
+ #: templates/admin/table-settings/table_settings_block.inc.php:2028
5963
+ msgid ""
5964
+ "This CSS will be inserted as an inline style block on every page that has "
5965
+ "this wpDataTable."
5966
+ msgstr ""
5967
+
5968
  #: templates/admin/welcome_page/welcome_page.inc.php:26
5969
  #: templates/admin/welcome_page/welcome_page.inc.php:333
5970
  msgid "Go to Dashboard"
languages/fr_FR/wpdatatables-fr_FR.mo CHANGED
Binary file
languages/fr_FR/wpdatatables-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-01-15 17:05+0100\n"
5
- "PO-Revision-Date: 2021-01-15 17:05+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: fr_FR\n"
@@ -96,13 +96,13 @@ msgstr ""
96
  msgid "Go Premium"
97
  msgstr ""
98
 
99
- #: controllers/wdt_admin.php:516 controllers/wdt_admin.php:565
100
- #: controllers/wdt_admin.php:608 controllers/wdt_admin.php:629
101
- #: controllers/wdt_admin.php:676 controllers/wdt_admin.php:702
102
- #: controllers/wdt_admin.php:721 controllers/wdt_admin.php:741
103
- #: controllers/wdt_admin.php:760 controllers/wdt_admin.php:780
104
- #: controllers/wdt_admin.php:800 controllers/wdt_admin.php:820
105
- #: controllers/wdt_admin.php:839
106
  msgid "You do not have sufficient permissions to access this page."
107
  msgstr ""
108
  "Vous ne disposez pas des autorisations suffisantes pour accéder à cette page."
@@ -218,6 +218,27 @@ msgstr ""
218
  "des valeurs pour les espaces réservés et également pour le nom de fichier "
219
  "d’exportation."
220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  #: source/class.wdtbrowsechartstable.php:141
222
  #: source/class.wdtbrowsetable.php:168
223
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
@@ -240,7 +261,7 @@ msgid "Configure"
240
  msgstr "Configurer"
241
 
242
  #: source/class.wdtbrowsechartstable.php:162
243
- #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:303
244
  #: templates/admin/browse/bulk_actions.inc.php:14
245
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
246
  msgid "Delete"
@@ -322,6 +343,11 @@ msgstr "Tout sélectionner"
322
  msgid "No wpDataCharts in the system yet."
323
  msgstr "Aucun wpDataCharts dans le système pour le moment."
324
 
 
 
 
 
 
325
  #: source/class.wdtbrowsetable.php:231
326
  msgid "MySQL"
327
  msgstr "MySQL"
@@ -330,15 +356,15 @@ msgstr "MySQL"
330
  msgid "Manual"
331
  msgstr "Manuel"
332
 
333
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2216
334
- #: source/class.wpdatatable.php:2286
335
- #: templates/admin/table-settings/table_settings_block.inc.php:1031
336
  msgid "Excel"
337
  msgstr "Excel"
338
 
339
- #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2225
340
- #: source/class.wpdatatable.php:2296
341
- #: templates/admin/table-settings/table_settings_block.inc.php:1032
342
  msgid "CSV"
343
  msgstr "CSV"
344
 
@@ -351,7 +377,7 @@ msgid "JSON"
351
  msgstr "JSON"
352
 
353
  #: source/class.wdtbrowsetable.php:249
354
- #: templates/admin/table-settings/table_settings_block.inc.php:111
355
  #: templates/edit_table.inc.php:91
356
  msgid "Serialized PHP array"
357
  msgstr "Serialized PHP array"
@@ -443,7 +469,7 @@ msgstr "Image"
443
  msgid "Attachment"
444
  msgstr "Attachement"
445
 
446
- #: source/class.wdttools.php:159
447
  msgid ""
448
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
449
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
@@ -453,15 +479,15 @@ msgstr ""
453
  "probablement pas publiée correctement. <br/> Vous pouvez la publier en "
454
  "allant sur <b> Fichier -> Publier sur le Web</b> "
455
 
456
- #: source/class.wdttools.php:287
457
  msgid "Back to date"
458
  msgstr "Retourner à la date"
459
 
460
- #: source/class.wdttools.php:288
461
  msgid "Browse"
462
  msgstr "Naviguer"
463
 
464
- #: source/class.wdttools.php:289 source/class.wdttools.php:410
465
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
466
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
467
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
@@ -479,24 +505,24 @@ msgstr "Naviguer"
479
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
480
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
481
  #: templates/admin/table-settings/table_preview_block.inc.php:86
482
- #: templates/admin/table-settings/table_settings_block.inc.php:40
483
  #: templates/common/delete_modal.inc.php:39
484
  msgid "Cancel"
485
  msgstr "Annuler"
486
 
487
- #: source/class.wdttools.php:290
488
  msgid " field cannot be empty!"
489
  msgstr " le champ ne peut pas être vide!"
490
 
491
- #: source/class.wdttools.php:291
492
  msgid "Use selected file"
493
  msgstr "Utiliser le fichier sélectionné"
494
 
495
- #: source/class.wdttools.php:292
496
  msgid "Choose file"
497
  msgstr "Choisir le fichier"
498
 
499
- #: source/class.wdttools.php:293 templates/admin/common/error_modal.inc.php:23
500
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
501
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
502
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
@@ -504,386 +530,396 @@ msgstr "Choisir le fichier"
504
  msgid "Close"
505
  msgstr "Fermer"
506
 
507
- #: source/class.wdttools.php:294
508
  msgid "Column has been added!"
509
  msgstr "La colonne a été ajoutée!"
510
 
511
- #: source/class.wdttools.php:295
512
  msgid "Column header cannot be empty!"
513
  msgstr "L’en-tête de colonne ne peut pas être vide!"
514
 
515
- #: source/class.wdttools.php:296
516
  msgid "Please confirm column deletion!"
517
  msgstr "Veuillez confirmer la suppression de la colonne!"
518
 
519
- #: source/class.wdttools.php:297
520
  msgid "Column has been removed!"
521
  msgstr "La colonne a été supprimée!"
522
 
523
- #: source/class.wdttools.php:298
524
  msgid "Please select columns that you want to use in table"
525
  msgstr ""
526
  "Veuillez sélectionner les colonnes que vous souhaitez utiliser dans le "
527
  "tableau"
528
 
529
- #: source/class.wdttools.php:299 source/class.wpdatatable.php:2234
530
- #: source/class.wpdatatable.php:2306
531
- #: templates/admin/table-settings/table_settings_block.inc.php:1033
532
  msgid "Copy"
533
  msgstr "Copier"
534
 
535
- #: source/class.wdttools.php:300
536
  msgid "There was an error trying to insert a new row!"
537
  msgstr ""
538
  "Une erreur s’est produite lors de la tentative d’insertion d’une nouvelle "
539
  "ligne!"
540
 
541
- #: source/class.wdttools.php:301
542
  msgid "Data has been saved!"
543
  msgstr "Les données ont été enregistrées!"
544
 
545
- #: source/class.wdttools.php:302
546
  msgid "detach"
547
  msgstr "détacher"
548
 
549
- #: source/class.wdttools.php:304
550
  msgid "Delete selected"
551
  msgstr "Supprimer sélectionné"
552
 
553
- #: source/class.wdttools.php:305 templates/settings.inc.php:553
554
  #: templates/settings.inc.php:627
555
  msgid "Error!"
556
  msgstr "Erreur!"
557
 
558
- #: source/class.wdttools.php:306
559
  msgid "Please upload or choose a file from Media Library!"
560
  msgstr ""
561
  "Veuillez télécharger ou choisir un fichier de la bibliothèque multimédia!"
562
 
563
- #: source/class.wdttools.php:307
564
  msgid "From"
565
  msgstr "De"
566
 
567
- #: source/class.wdttools.php:308
568
  msgid "Please provide a valid e-mail address for field"
569
  msgstr "Veuillez fournir une adresse e-mail valide pour le champ"
570
 
571
- #: source/class.wdttools.php:309
572
  msgid "Please provide a valid URL link for field"
573
  msgstr "Veuillez fournir un lien URL valide pour le champ"
574
 
575
- #: source/class.wdttools.php:310
576
  msgid "You have entered invalid value. Press ESC to cancel."
577
  msgstr "Vous avez entré une valeur non valide. Appuyez sur Echap pour annuler."
578
 
579
- #: source/class.wdttools.php:311 source/class.wdttools.php:340
580
  msgid "Show _MENU_ entries"
581
  msgstr "Afficher _MENU_ les entrées"
582
 
583
- #: source/class.wdttools.php:312
584
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
585
  msgid "Merge"
586
  msgstr "Fusionner"
587
 
588
- #: source/class.wdttools.php:313
589
  msgid "New column"
590
  msgstr "Nouvelle colonne"
591
 
592
- #: source/class.wdttools.php:314
593
  msgid "Number of columns can not be empty or 0"
594
  msgstr ""
595
 
596
- #: source/class.wdttools.php:315
597
  msgid "Number of rows can not be empty or 0"
598
  msgstr ""
599
 
600
- #: source/class.wdttools.php:317
601
  msgid ": activate to sort column ascending"
602
  msgstr ": activer pour trier la colonne en ordre croissant"
603
 
604
- #: source/class.wdttools.php:318
605
  msgid ": activate to sort column descending"
606
  msgstr ": activer pour trier la colonne en ordre décroissant"
607
 
608
- #: source/class.wdttools.php:320
609
  msgid "Ok"
610
  msgstr "Ok"
611
 
612
- #: source/class.wdttools.php:322
613
  msgid "First"
614
  msgstr "Premier"
615
 
616
- #: source/class.wdttools.php:323
617
  msgid "Last"
618
  msgstr "Dernier"
619
 
620
- #: source/class.wdttools.php:324
621
  msgid "Next"
622
  msgstr "Suivant"
623
 
624
- #: source/class.wdttools.php:325
625
  msgid "Previous"
626
  msgstr "Précédent"
627
 
628
- #: source/class.wdttools.php:327
629
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
630
  msgid "Replace"
631
  msgstr "Remplacer"
632
 
633
- #: source/class.wdttools.php:328
634
  msgid "Row has been deleted!"
635
  msgstr "La ligne a été supprimée!"
636
 
637
- #: source/class.wdttools.php:329
 
 
 
 
638
  msgid "Select a file to use in table"
639
  msgstr "Sélectionnez un fichier à utiliser dans le tableau"
640
 
641
- #: source/class.wdttools.php:330
642
  msgid "Select an Excel or CSV file"
643
  msgstr "Sélectionnez un fichier Excel ou CSV"
644
 
645
- #: source/class.wdttools.php:331
646
  msgid "No data available in table"
647
  msgstr "Aucune donnée disponible dans le tableau"
648
 
649
- #: source/class.wdttools.php:332
650
  msgid "Plugin settings saved successfully"
651
  msgstr "Paramètres de l’extension enregistrés avec succès"
652
 
653
- #: source/class.wdttools.php:333
654
  msgid ""
655
  "Unable to save settings of plugin. Please try again or contact us over "
656
  "Support page."
657
  msgstr ""
658
 
659
- #: source/class.wdttools.php:334
660
  msgid "Shortcode has been copied to the clipboard."
661
  msgstr "Le shortcode a été copié dans le presse-papier."
662
 
663
- #: source/class.wdttools.php:335
664
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
665
  msgstr "Afficher _START_ à _END_ des _TOTAL_ entrées"
666
 
667
- #: source/class.wdttools.php:336
668
  msgid "Showing 0 to 0 of 0 entries"
669
  msgstr "Afficher 0 à 0 de 0 entrées"
670
 
671
- #: source/class.wdttools.php:337
672
  msgid "(filtered from _MAX_ total entries)"
673
  msgstr "(Filtré de _MAX_ entrées total)"
674
 
675
- #: source/class.wdttools.php:339
676
  msgid ","
677
  msgstr ","
678
 
679
- #: source/class.wdttools.php:341
680
  msgid "Loading..."
681
  msgstr "Chargement..."
682
 
683
- #: source/class.wdttools.php:342
684
  msgid "Processing..."
685
  msgstr "En traitement..."
686
 
687
- #: source/class.wdttools.php:343
688
  msgid "SQL error"
689
  msgstr "SQL erreur"
690
 
691
- #: source/class.wdttools.php:344
692
  msgid "Search: "
693
  msgstr "Recherche: "
694
 
695
- #: source/class.wdttools.php:345 templates/settings.inc.php:559
696
  #: templates/settings.inc.php:625
697
  msgid "Success!"
698
  msgstr "Succès!"
699
 
700
- #: source/class.wdttools.php:346
701
  msgid "No matching records found"
702
  msgstr "Aucun enregistrements correspondants trouvés"
703
 
704
- #: source/class.wdttools.php:347
705
  msgid ""
706
  "System info data has been copied to the clipboard. You can now paste it in "
707
  "file or in support topic."
708
  msgstr ""
709
 
710
- #: source/class.wdttools.php:348
711
  msgid "Table saved successfully!"
712
  msgstr "Tableau enregistré avec succès!"
713
 
714
- #: source/class.wdttools.php:349
715
  msgid "To"
716
  msgstr "À"
717
 
718
- #: source/class.wdttools.php:385
719
  #: templates/admin/common/premium_modal.inc.php:17
 
 
720
  msgid "This is a premium feature"
721
  msgstr ""
722
 
723
- #: source/class.wdttools.php:386
724
  #: templates/admin/common/premium_modal.inc.php:26
 
 
725
  msgid "This feature is available only in premium version of wpDataTables"
726
  msgstr ""
727
 
728
- #: source/class.wdttools.php:387
729
  #: templates/admin/getting-started/getting_started.inc.php:133
730
  #: templates/admin/getting-started/getting_started.inc.php:145
731
  #: templates/admin/getting-started/getting_started.inc.php:157
732
  #: templates/admin/getting-started/getting_started.inc.php:169
 
 
733
  msgid "Compare and View Pricing"
734
  msgstr ""
735
 
736
- #: source/class.wdttools.php:406
737
  msgid "Field cannot be empty!"
738
  msgstr ""
739
 
740
- #: source/class.wdttools.php:407
741
  msgid "Please choose chart type."
742
  msgstr ""
743
 
744
- #: source/class.wdttools.php:408
745
  msgid "Please select wpDataTable from dropdown."
746
  msgstr ""
747
 
748
- #: source/class.wdttools.php:409
749
  msgid "Columns field cannot be empty"
750
  msgstr ""
751
 
752
- #: source/class.wdttools.php:411
753
  msgid ""
754
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
755
  "clicking on Cancel button."
756
  msgstr ""
757
 
758
- #: source/class.wdttools.php:412
759
  msgid "Finish Tutorial"
760
  msgstr "Terminer le tutoriel"
761
 
762
- #: source/class.wdttools.php:413
763
  msgid "Continue"
764
  msgstr "Continuer"
765
 
766
- #: source/class.wdttools.php:414
767
  msgid "Start"
768
  msgstr "Démarrer"
769
 
770
- #: source/class.wdttools.php:415
771
  msgid "Skip Tutorial"
772
  msgstr "Passer le tutoriel"
773
 
774
- #: source/class.wdttools.php:418 source/class.wdttools.php:484
775
- #: source/class.wdttools.php:526
776
  msgid "Welcome to the tutorial!"
777
  msgstr "Bienvenue dans le tutoriel !"
778
 
779
- #: source/class.wdttools.php:419 source/class.wdttools.php:485
780
- #: source/class.wdttools.php:527
781
  msgid "Hello "
782
  msgstr "Bonjour "
783
 
784
- #: source/class.wdttools.php:419
785
  msgid ""
786
  ", in this tutorial, we will show you how to create a simple table from "
787
  "scratch by choosing a custom number of columns and rows. How to customize "
788
  "each cell, merge cells and a lot more."
789
  msgstr ""
790
 
791
- #: source/class.wdttools.php:422
792
  msgid " Let's create a new wpDataTable from scratch!"
793
  msgstr ""
794
 
795
- #: source/class.wdttools.php:423 source/class.wdttools.php:489
796
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
797
  msgstr ""
798
  "Cliquez sur \"Créer un tableau\" pour accéder à l'assistant de tableau "
799
  "wpDataTables."
800
 
801
- #: source/class.wdttools.php:426
802
  msgid "Choose this option"
803
  msgstr "Choisissez cette option"
804
 
805
- #: source/class.wdttools.php:427
806
  msgid "Please select 'Create a simple table from scratch'."
807
  msgstr ""
808
 
809
- #: source/class.wdttools.php:430 source/class.wdttools.php:496
810
  msgid "Click Next"
811
  msgstr "Cliquez Suivant"
812
 
813
- #: source/class.wdttools.php:431 source/class.wdttools.php:497
814
  msgid "Please click the 'Next' button to continue."
815
  msgstr "Veuillez cliquer sur le bouton \"Suivant\" pour continuer."
816
 
817
- #: source/class.wdttools.php:434
818
  msgid "Welcome to the Simple table wizard!"
819
  msgstr ""
820
 
821
- #: source/class.wdttools.php:435
822
  msgid "Please click 'Continue' button to move on."
823
  msgstr ""
824
 
825
- #: source/class.wdttools.php:438
826
  msgid "Choose a name for your table"
827
  msgstr "Choisissez un nom pour votre tableau"
828
 
829
- #: source/class.wdttools.php:439
830
  msgid "After inserting table name, click 'Continue' to move on."
831
  msgstr ""
832
 
833
- #: source/class.wdttools.php:442
834
  msgid "Choose the number of columns for your table"
835
  msgstr ""
836
 
837
- #: source/class.wdttools.php:443
838
  msgid ""
839
  "Please choose how many columns it will have. Remember that you can always "
840
  "add or reduce the number of columns later. Click 'Continue' when you finish."
841
  msgstr ""
842
 
843
- #: source/class.wdttools.php:446
844
  msgid "Choose the number of rows for your table."
845
  msgstr ""
846
 
847
- #: source/class.wdttools.php:447
848
  msgid ""
849
  "Please choose how many rows it will have. Remember that you can always add "
850
  "or reduce the number of rows later. Click 'Continue' when you finish."
851
  msgstr ""
852
 
853
- #: source/class.wdttools.php:450
854
  msgid "Click on the 'Generate Table' button"
855
  msgstr ""
856
 
857
- #: source/class.wdttools.php:451
858
  msgid "When you click on the button, the empty table will be ready for you. "
859
  msgstr ""
860
 
861
- #: source/class.wdttools.php:454
862
  msgid "We are generating the table..."
863
  msgstr ""
864
 
865
- #: source/class.wdttools.php:455
866
  msgid "Please, when you see the table, click 'Continue' to move on."
867
  msgstr ""
868
 
869
- #: source/class.wdttools.php:458
870
  msgid ""
871
  "Nice job! You just configured your table and it is ready to fill it with "
872
  "data."
873
  msgstr ""
874
 
875
- #: source/class.wdttools.php:459
876
  msgid ""
877
  "Now we will guide you on how to insert data and check table layout throw "
878
  "Simple table editor, table toolbar and table preview. Please click "
879
  "'Continue' to move on."
880
  msgstr ""
881
 
882
- #: source/class.wdttools.php:462
883
  msgid "This is Simple table editor"
884
  msgstr ""
885
 
886
- #: source/class.wdttools.php:463
887
  msgid ""
888
  "Here you can populate your table with data. <br><br>You can move around the "
889
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
@@ -892,11 +928,11 @@ msgid ""
892
  "line of the row header. Click 'Continue' to move on."
893
  msgstr ""
894
 
895
- #: source/class.wdttools.php:466
896
  msgid "Check out the Simple table toolbar"
897
  msgstr ""
898
 
899
- #: source/class.wdttools.php:467
900
  msgid ""
901
  "Here you can style and insert custom data for each cell or range of cells. "
902
  "You can add or delete columns and rows, merge cells, customize sections by "
@@ -904,39 +940,39 @@ msgid ""
904
  "ratings or custom HTML code."
905
  msgstr ""
906
 
907
- #: source/class.wdttools.php:470
908
  msgid "Responsive table views"
909
  msgstr ""
910
 
911
- #: source/class.wdttools.php:471
912
  msgid ""
913
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
914
  "tab that you need, so you can make sure your table looks excellent across "
915
  "all devices. "
916
  msgstr ""
917
 
918
- #: source/class.wdttools.php:474
919
  msgid "Real-time preview"
920
  msgstr ""
921
 
922
- #: source/class.wdttools.php:475
923
  msgid ""
924
  "Here you will see how your table will look like on the page. Please click "
925
  "'Continue' to move on."
926
  msgstr ""
927
 
928
- #: source/class.wdttools.php:478
929
  msgid "Congrats! Your table is ready."
930
  msgstr ""
931
 
932
- #: source/class.wdttools.php:479
933
  msgid ""
934
  "Now you can copy the shortcode for this table, and check out how it looks on "
935
  "your website when you paste it to a post or page. You can always come back "
936
  "and edit the table as you like."
937
  msgstr ""
938
 
939
- #: source/class.wdttools.php:485
940
  msgid ""
941
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
942
  "existing data source. \"Linked\" in this context means that if you create a "
@@ -951,47 +987,47 @@ msgstr ""
951
  "modifications des valeurs du tableau sont instantanément reflétées dans le "
952
  "tableau."
953
 
954
- #: source/class.wdttools.php:488
955
  msgid "Let's create a new wpDataTable!"
956
  msgstr "Créons un nouveau wpDataTable !"
957
 
958
- #: source/class.wdttools.php:492
959
  msgid "Choose this option."
960
  msgstr "Choisissez cette option."
961
 
962
- #: source/class.wdttools.php:493
963
  msgid "Please select 'Create a table linked to an existing data source'."
964
  msgstr ""
965
  "Veuillez sélectionner \"Créer un tableau lié à une source de données "
966
  "existante\"."
967
 
968
- #: source/class.wdttools.php:500
969
- #: templates/admin/table-settings/table_settings_block.inc.php:95
970
  msgid "Input data source type"
971
  msgstr "Type de source de données d’entrée"
972
 
973
- #: source/class.wdttools.php:501
974
  msgid "Please select a data source type that you need."
975
  msgstr ""
976
  "Veuillez sélectionner le type de source de données dont vous avez besoin."
977
 
978
- #: source/class.wdttools.php:504
979
  msgid "Select Data source type"
980
  msgstr "Sélectionnez le type de source de données"
981
 
982
- #: source/class.wdttools.php:505
983
  msgid ""
984
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
985
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
986
  "are available in Premium version)"
987
  msgstr ""
988
 
989
- #: source/class.wdttools.php:508
990
- #: templates/admin/table-settings/table_settings_block.inc.php:122
991
  msgid "Input file path or URL"
992
  msgstr "Chemin d’accès du fichier d’entrée ou URL"
993
 
994
- #: source/class.wdttools.php:509
995
  msgid ""
996
  "Upload your file or provide the full URL here. When you finish click "
997
  "'Continue' button."
@@ -999,11 +1035,11 @@ msgstr ""
999
  "Téléchargez votre fichier ou fournissez l'URL complète ici. Lorsque vous "
1000
  "avez terminé, cliquez sur le bouton \"Continuer\"."
1001
 
1002
- #: source/class.wdttools.php:512
1003
  msgid "Click Save Changes"
1004
  msgstr "Cliquez sur Enregistrer les modifications"
1005
 
1006
- #: source/class.wdttools.php:513
1007
  msgid ""
1008
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1009
  "get an error message after button click and you are not able to solve it, "
@@ -1018,11 +1054,11 @@ msgstr ""
1018
  "données que vous utilisez pour créer ce tableau, copiez également le message "
1019
  "d'erreur et cliquez sur Passer le tutoriel."
1020
 
1021
- #: source/class.wdttools.php:516
1022
  msgid "The table is creating..."
1023
  msgstr "The table is creating..."
1024
 
1025
- #: source/class.wdttools.php:517
1026
  msgid ""
1027
  "Now the table is creating. Wait until you see it in the background and then "
1028
  "click 'Continue'."
@@ -1030,11 +1066,11 @@ msgstr ""
1030
  "Maintenant, la table est en train de se créer. Attendez jusqu'à ce que vous "
1031
  "le voyiez en arrière-plan, puis cliquez sur \"Continuer\"."
1032
 
1033
- #: source/class.wdttools.php:520
1034
  msgid "Nice job! You just created your first wpDataTable!"
1035
  msgstr "Bon travail ! Vous venez de créer votre premier wpDataTable !"
1036
 
1037
- #: source/class.wdttools.php:521
1038
  msgid ""
1039
  "Now you can copy the shortcode for this table, and check out how it looks on "
1040
  "your website when you paste it to a post or page."
@@ -1042,7 +1078,7 @@ msgstr ""
1042
  "Vous pouvez maintenant copier le raccourci de ce tableau et voir à quoi il "
1043
  "ressemble sur votre site lorsque vous le collez sur un article ou une page."
1044
 
1045
- #: source/class.wdttools.php:527
1046
  msgid ""
1047
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1048
  "plugin."
@@ -1050,21 +1086,21 @@ msgstr ""
1050
  ", dans ce tutoriel, nous vous montrerons comment créer un graphique dans "
1051
  "l'extension wpDataTables."
1052
 
1053
- #: source/class.wdttools.php:530
1054
  msgid "Let's create a new wpDataTables Chart!"
1055
  msgstr "Créons un nouveau graphique wpDataTables !"
1056
 
1057
- #: source/class.wdttools.php:531
1058
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1059
  msgstr ""
1060
  "Cliquez sur \"Créer un graphique\" pour accéder à l'assistant graphique de "
1061
  "wpDataTables."
1062
 
1063
- #: source/class.wdttools.php:534
1064
  msgid "Welcome to the Chart Wizard!"
1065
  msgstr "Bienvenue à l'assistant graphique !"
1066
 
1067
- #: source/class.wdttools.php:535
1068
  msgid ""
1069
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1070
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
@@ -1073,11 +1109,11 @@ msgstr ""
1073
  "l'assistant graphique wpDataTables section par section.<br><br> Cliquez sur "
1074
  "le bouton \"Continuer\" pour poursuivre."
1075
 
1076
- #: source/class.wdttools.php:538
1077
  msgid "Follow the steps in the Chart Wizard"
1078
  msgstr "Suivez les étapes de l'assistant graphique"
1079
 
1080
- #: source/class.wdttools.php:539
1081
  msgid ""
1082
  "By following these steps, you will finish building your chart in the Chart "
1083
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
@@ -1087,44 +1123,44 @@ msgstr ""
1087
  "dans l'Assistant graphique. L'étape en cours sera toujours surlignée en "
1088
  "bleu. Cliquez sur le bouton \"Continuer\" pour poursuivre."
1089
 
1090
- #: source/class.wdttools.php:542
1091
  msgid "Choose a name for your Chart"
1092
  msgstr "Choisissez un nom pour votre graphique"
1093
 
1094
- #: source/class.wdttools.php:543
1095
  msgid "Click 'Continue' button when you’re ready to move forward."
1096
  msgstr ""
1097
  "Cliquez sur le bouton \"Continuer\" lorsque vous êtes prêt à poursuivre."
1098
 
1099
- #: source/class.wdttools.php:546
1100
  msgid "In wpDataTables you can find several charts render engines."
1101
  msgstr ""
1102
  "Dans wpDataTables, vous pouvez trouver plusieurs moteurs de rendu de "
1103
  "graphiques."
1104
 
1105
- #: source/class.wdttools.php:547
1106
  msgid ""
1107
  "Click on the dropdown, and you will see several options that you can choose "
1108
  "from.(Google charts are only available) <br><br>To continue, click on the "
1109
  "dropdown."
1110
  msgstr ""
1111
 
1112
- #: source/class.wdttools.php:550
1113
  msgid "Choose Google chart engine."
1114
  msgstr ""
1115
 
1116
- #: source/class.wdttools.php:551
1117
  msgid ""
1118
  "By clicking on Google chart options, you will choose the engine that will "
1119
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1120
  "to move forward."
1121
  msgstr ""
1122
 
1123
- #: source/class.wdttools.php:554
1124
  msgid "Different charts types. "
1125
  msgstr ""
1126
 
1127
- #: source/class.wdttools.php:555
1128
  msgid ""
1129
  "Here you can choose a chart type. Please, click on the chart type that you "
1130
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
@@ -1134,16 +1170,16 @@ msgstr ""
1134
  "de graphique que vous préférez.<br><br> Lorsque vous avez terminé, veuillez "
1135
  "cliquer sur le bouton \"Continuer\" pour poursuivre."
1136
 
1137
- #: source/class.wdttools.php:558
1138
  msgid "The first step is finished!"
1139
  msgstr "La première étape est terminée !"
1140
 
1141
- #: source/class.wdttools.php:559
1142
  msgid "Let's move on. Please, click 'Next' to continue."
1143
  msgstr ""
1144
  "Passons à autre chose. Veuillez cliquer sur \"Suivant\" pour continuer."
1145
 
1146
- #: source/class.wdttools.php:562
1147
  msgid ""
1148
  "Now you need to choose a wpDataTable based on which we will build a chart "
1149
  "for you"
@@ -1151,7 +1187,7 @@ msgstr ""
1151
  "Vous devez maintenant choisir une wpDataTable sur laquelle nous allons "
1152
  "construire un graphique pour vous"
1153
 
1154
- #: source/class.wdttools.php:563
1155
  msgid ""
1156
  "Click on the dropdown, and all your tables will be listed. The columns of "
1157
  "the table that you choose will be used for creating the chart.<br><br>If you "
@@ -1164,11 +1200,11 @@ msgstr ""
1164
  "le bouton \"Sauter le tutoriel\" et créez un tableau de données qui "
1165
  "contiendra les données à visualiser en premier."
1166
 
1167
- #: source/class.wdttools.php:566
1168
  msgid "Pick your wpDataTable"
1169
  msgstr "Choisissez votre wpDataTable"
1170
 
1171
- #: source/class.wdttools.php:567
1172
  msgid ""
1173
  "Pick a wpDataTable from which you want to render a chart and when you "
1174
  "finish, please click 'Continue' to move on."
@@ -1177,22 +1213,22 @@ msgstr ""
1177
  "graphique et lorsque vous avez terminé, cliquez sur \"Continuer\" pour "
1178
  "poursuivre."
1179
 
1180
- #: source/class.wdttools.php:570
1181
  msgid "The second step is finished!"
1182
  msgstr "La deuxième étape est terminée !"
1183
 
1184
- #: source/class.wdttools.php:571
1185
  msgid ""
1186
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1187
  msgstr ""
1188
  "Voyons ce qui va suivre. <br><br> S'il vous plaît, cliquez sur \"Suivant\" "
1189
  "pour continuer."
1190
 
1191
- #: source/class.wdttools.php:574
1192
  msgid "Just a heads up!"
1193
  msgstr "Juste un avertissement !"
1194
 
1195
- #: source/class.wdttools.php:575
1196
  msgid ""
1197
  "Here you will choose from which columns you will create a chart.<br><br> "
1198
  "Please click 'Continue' button to move forward."
@@ -1201,32 +1237,32 @@ msgstr ""
1201
  "graphique.<br><br> Veuillez cliquer sur le bouton \"Continuer\" pour "
1202
  "poursuivre."
1203
 
1204
- #: source/class.wdttools.php:578
1205
  msgid "Meet the wpDataTable Column Blocks"
1206
  msgstr "Découvrez les blocs de colonnes du wpDataTable"
1207
 
1208
- #: source/class.wdttools.php:579
1209
  msgid ""
1210
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1211
  "or click on the arrow to move the desired column to the 'Columns used in the "
1212
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1213
  msgstr ""
1214
 
1215
- #: source/class.wdttools.php:582
1216
  msgid "Well done!"
1217
  msgstr "Bravo !"
1218
 
1219
- #: source/class.wdttools.php:583
1220
  msgid "Just two more steps to go. Please click 'Next' to continue."
1221
  msgstr ""
1222
  "Il ne reste plus que deux pas à faire. Veuillez cliquer sur \"Suivant\" pour "
1223
  "continuer."
1224
 
1225
- #: source/class.wdttools.php:586
1226
  msgid "Chart settings and chart preview."
1227
  msgstr "Paramètres des graphiques et prévisualisation des graphiques."
1228
 
1229
- #: source/class.wdttools.php:587
1230
  msgid ""
1231
  "Here you can adjust chart settings, different parameters are grouped in "
1232
  "section; adjusting the parameters will be reflected in the preview of your "
@@ -1238,13 +1274,13 @@ msgstr ""
1238
  "sera reflété dans l'aperçu de votre graphique en temps réel sur le côté "
1239
  "droit.<br><br> Veuillez cliquer sur le bouton \"Continuer\" pour avancer."
1240
 
1241
- #: source/class.wdttools.php:590
1242
  msgid "In this sidebar, you can find the chart settings section."
1243
  msgstr ""
1244
  "Dans cette barre latérale, vous trouverez la section des paramètres des "
1245
  "graphiques."
1246
 
1247
- #: source/class.wdttools.php:591
1248
  msgid ""
1249
  "By clicking on each section, you can set your desired parameters per section."
1250
  "<br><br> Please click 'Continue' button to move on."
@@ -1253,11 +1289,11 @@ msgstr ""
1253
  "par section.<br><br> Veuillez cliquer sur le bouton \"Continuer\" pour "
1254
  "poursuivre."
1255
 
1256
- #: source/class.wdttools.php:594
1257
  msgid "Here are the available chart options"
1258
  msgstr "Voici les options de graphiques disponibles"
1259
 
1260
- #: source/class.wdttools.php:595
1261
  msgid ""
1262
  "Set different chart options for the chosen section to get your desired chart "
1263
  "look.<br><br> Please click 'Continue' button to move on."
@@ -1266,11 +1302,11 @@ msgstr ""
1266
  "d'obtenir l'aspect de graphique souhaité.<br><br> Veuillez cliquer sur le "
1267
  "bouton \"Continuer\" pour poursuivre."
1268
 
1269
- #: source/class.wdttools.php:598
1270
  msgid "How your chart will look like on the page of your website"
1271
  msgstr "A quoi ressemblera votre graphique sur la page de votre site web"
1272
 
1273
- #: source/class.wdttools.php:599
1274
  msgid ""
1275
  "Here you can see a preview of your chart based on the settings you have "
1276
  "chosen.<br><br> Please click 'Continue' button to move on."
@@ -1279,11 +1315,11 @@ msgstr ""
1279
  "paramètres que vous avez choisis.<br><br> Veuillez cliquer sur le bouton "
1280
  "\"Continuer\" pour poursuivre."
1281
 
1282
- #: source/class.wdttools.php:602
1283
  msgid "You can save your chart now"
1284
  msgstr "Vous pouvez sauvegarder votre graphique maintenant"
1285
 
1286
- #: source/class.wdttools.php:603
1287
  msgid ""
1288
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1289
  "button and all your settings for this chart will be saved in the database."
@@ -1292,11 +1328,11 @@ msgstr ""
1292
  "bouton \"Enregistrer le graphique\" et tous vos paramètres pour ce graphique "
1293
  "seront enregistrés dans la base de données."
1294
 
1295
- #: source/class.wdttools.php:606
1296
  msgid "Congrats! Your first chart is ready!"
1297
  msgstr "Félicitations ! Votre premier graphique est prêt !"
1298
 
1299
- #: source/class.wdttools.php:607
1300
  msgid ""
1301
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1302
  "page. <br><br>You may now finish this tutorial. "
@@ -1315,7 +1351,7 @@ msgstr ""
1315
  "Vous mélangez des types de données (plusieurs axes de dates et plusieurs "
1316
  "nombres)"
1317
 
1318
- #: source/class.wpdatatable.php:1895
1319
  msgid ""
1320
  "You are trying to load a table of an unknown type. Probably you did not "
1321
  "activate the addon which is required to use this table type."
@@ -1324,38 +1360,38 @@ msgstr ""
1324
  "probablement pas activé le supplément d’extension requis pour utiliser ce "
1325
  "type de tableau."
1326
 
1327
- #: source/class.wpdatatable.php:2134 source/class.wpdatatable.php:2137
1328
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1329
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1330
- #: templates/admin/table-settings/table_settings_block.inc.php:312
1331
  #: templates/edit_table.inc.php:409
1332
  msgid "All"
1333
  msgstr "Tout"
1334
 
1335
- #: source/class.wpdatatable.php:2195 source/class.wpdatatable.php:2264
1336
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1337
  msgid "Columns"
1338
  msgstr "Colonnes"
1339
 
1340
- #: source/class.wpdatatable.php:2205 source/class.wpdatatable.php:2274
1341
- #: templates/admin/table-settings/table_settings_block.inc.php:1030
1342
  msgid "Print"
1343
  msgstr "Imprimer"
1344
 
1345
- #: source/class.wpdatatable.php:2244 source/class.wpdatatable.php:2317
1346
- #: templates/admin/table-settings/table_settings_block.inc.php:1034
1347
  msgid "PDF"
1348
  msgstr "PDF"
1349
 
1350
- #: source/class.wpdatatable.php:2252
1351
  msgid "Export"
1352
  msgstr "Exporter"
1353
 
1354
- #: source/class.wpdatatable.php:2330
1355
  msgid "Search table"
1356
  msgstr "Tableau de recherche"
1357
 
1358
- #: source/class.wpdatatable.php:2331
1359
  msgid "Showing _MENU_ Entries"
1360
  msgstr "Afficher _MENU_ Entrées"
1361
 
@@ -1374,7 +1410,7 @@ msgstr ""
1374
  msgid "if you have some questions or problems with the plugin."
1375
  msgstr ""
1376
 
1377
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:498
1378
  msgid "wpDataTables Addons"
1379
  msgstr "Modules complémentaires pour wpDataTables"
1380
 
@@ -1394,12 +1430,12 @@ msgstr ""
1394
  "créateurs de wpDataTables et les développeurs tiers, donc restez à l’écoute."
1395
 
1396
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1397
- #: templates/admin/dashboard/dashboard.inc.php:569
1398
  msgid "Report Builder"
1399
  msgstr "Report Builder"
1400
 
1401
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1402
- #: templates/admin/dashboard/dashboard.inc.php:573
1403
  msgid ""
1404
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1405
  "XLSX documents filled in with actual data from your database."
@@ -1427,7 +1463,7 @@ msgid "NEW"
1427
  msgstr "NOUVEAU"
1428
 
1429
  #: templates/admin/addons/addons.inc.php:40
1430
- #: templates/admin/dashboard/dashboard.inc.php:516
1431
  msgid "Master Detail Tables for wpDataTables"
1432
  msgstr "Principaux tableaux détaillés pour wpDataTables"
1433
 
@@ -1453,7 +1489,7 @@ msgid "Learn more"
1453
  msgstr "En savoir plus"
1454
 
1455
  #: templates/admin/addons/addons.inc.php:67
1456
- #: templates/admin/dashboard/dashboard.inc.php:543
1457
  msgid "Powerful Filters for wpDataTables"
1458
  msgstr "Filtres puissants pour les wpDataTables"
1459
 
@@ -1469,12 +1505,12 @@ msgstr ""
1469
  "l’utilisateur ne définisse les valeurs de recherche."
1470
 
1471
  #: templates/admin/addons/addons.inc.php:120
1472
- #: templates/admin/dashboard/dashboard.inc.php:596
1473
  msgid "Formidable Forms integration for wpDataTables"
1474
  msgstr "Intégration de Formidable Forms pour wpDataTables"
1475
 
1476
  #: templates/admin/addons/addons.inc.php:123
1477
- #: templates/admin/dashboard/dashboard.inc.php:600
1478
  msgid ""
1479
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1480
  "create wpDataTables from Formidable Forms entries data."
@@ -1484,12 +1520,12 @@ msgstr ""
1484
  "Formidable Forms."
1485
 
1486
  #: templates/admin/addons/addons.inc.php:143
1487
- #: templates/admin/dashboard/dashboard.inc.php:622
1488
  msgid "Gravity Forms integration for wpDataTables"
1489
  msgstr "Intégration de Gravity Forms pour wpDataTables"
1490
 
1491
  #: templates/admin/addons/addons.inc.php:146
1492
- #: templates/admin/dashboard/dashboard.inc.php:626
1493
  msgid ""
1494
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1495
  "wpDataTables from Gravity Forms entries data."
@@ -1572,7 +1608,7 @@ msgid "Chart title & type"
1572
  msgstr "Titre du graphique & type"
1573
 
1574
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1575
- #: templates/admin/table-settings/table_settings_block.inc.php:59
1576
  #: templates/chart_wizard.inc.php:36
1577
  msgid "Data source"
1578
  msgstr "Source des données"
@@ -1615,6 +1651,7 @@ msgstr "Libellé"
1615
 
1616
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1617
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
 
1618
  #: templates/edit_table.inc.php:730
1619
  msgid "Color"
1620
  msgstr "Couleur"
@@ -1833,8 +1870,8 @@ msgstr ""
1833
  #: templates/admin/getting-started/getting_started.inc.php:144
1834
  #: templates/admin/getting-started/getting_started.inc.php:156
1835
  #: templates/admin/getting-started/getting_started.inc.php:168
1836
- #: templates/admin/table-settings/table_settings_block.inc.php:105
1837
- #: templates/admin/table-settings/table_settings_block.inc.php:108
1838
  msgid "Available in Premium"
1839
  msgstr ""
1840
 
@@ -1975,10 +2012,6 @@ msgstr "Séries"
1975
  msgid "Axes"
1976
  msgstr "Axes"
1977
 
1978
- #: templates/admin/chart_wizard/steps/step4.inc.php:17
1979
- msgid "Title"
1980
- msgstr "Titre"
1981
-
1982
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1983
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1984
  msgid "Tooltip"
@@ -2075,6 +2108,8 @@ msgstr "Activer le regroupement"
2075
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2076
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2077
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
 
 
2078
  msgid "Background color"
2079
  msgstr "Couleur de fond"
2080
 
@@ -2093,6 +2128,7 @@ msgstr "La largeur en pixels de la bordure externe du graphique."
2093
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2094
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2095
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
 
2096
  msgid "Border color"
2097
  msgstr "Couleur de la bordure"
2098
 
@@ -2132,6 +2168,7 @@ msgstr ""
2132
 
2133
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2134
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
 
2135
  msgid "Font size"
2136
  msgstr "Taille de police"
2137
 
@@ -2512,14 +2549,14 @@ msgstr "Ouvrir dans un éditeur de type Excel"
2512
  #: templates/admin/dashboard/dashboard.inc.php:30
2513
  #: templates/admin/getting-started/getting_started.inc.php:34
2514
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2515
- #: templates/admin/settings/settings.inc.php:96
2516
  #: templates/admin/support/support.inc.php:31
2517
  #: templates/admin/support/support.inc.php:47
2518
  #: templates/admin/system-info/system_info.inc.php:29
2519
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2520
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2521
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2522
- #: templates/admin/table-settings/table_settings_block.inc.php:1197
2523
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2524
  msgid "View Documentation"
2525
  msgstr "Voir la documentation"
@@ -2761,181 +2798,182 @@ msgid "Version "
2761
  msgstr "Version "
2762
 
2763
  #: templates/admin/dashboard/dashboard.inc.php:340
2764
- msgid ""
2765
- "A minor update with a couple of features, bug fixes and stability "
2766
- "improvements:"
2767
  msgstr ""
2768
 
2769
  #: templates/admin/dashboard/dashboard.inc.php:345
2770
  msgid ""
2771
- "<strong>Feature:</strong> New option to set column data to be available/"
2772
- "disabled in global search results."
2773
  msgstr ""
2774
 
2775
  #: templates/admin/dashboard/dashboard.inc.php:346
2776
  msgid ""
2777
- "<strong>Feature:</strong> New option to set NOFOLLOW relation for links in "
2778
- "simple and data tables."
2779
  msgstr ""
2780
 
2781
  #: templates/admin/dashboard/dashboard.inc.php:347
2782
  msgid ""
2783
- "<strong>BugFix:</strong> Fixed issue with saving page in Divi builder with "
2784
- "simple table shortcode."
2785
  msgstr ""
2786
 
2787
  #: templates/admin/dashboard/dashboard.inc.php:348
2788
  msgid ""
2789
- "<strong>BugFix:</strong> Fixed issue with not showing tabs in backend after "
2790
- "switch."
2791
  msgstr ""
2792
 
2793
  #: templates/admin/dashboard/dashboard.inc.php:349
2794
  msgid ""
2795
- "<strong>BugFix:</strong> Fixed issue with tooltip in backend when is loaded "
2796
- "jQuery UI."
2797
  msgstr ""
2798
 
2799
  #: templates/admin/dashboard/dashboard.inc.php:350
 
 
 
 
2800
  msgid "Other small bug fixes and stability improvements."
2801
  msgstr ""
2802
 
2803
- #: templates/admin/dashboard/dashboard.inc.php:362
2804
  msgid "Go Premium!"
2805
  msgstr ""
2806
 
2807
- #: templates/admin/dashboard/dashboard.inc.php:368
2808
  msgid "View Comparison"
2809
  msgstr ""
2810
 
2811
- #: templates/admin/dashboard/dashboard.inc.php:376
2812
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2813
  msgid ""
2814
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2815
  "of the powerful features."
2816
  msgstr ""
2817
 
2818
- #: templates/admin/dashboard/dashboard.inc.php:380
2819
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2820
  msgid "Create a table manually"
2821
  msgstr "Créer un tableau manuellement"
2822
 
2823
- #: templates/admin/dashboard/dashboard.inc.php:383
2824
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2825
  msgid "Creating tables from Google Spreadsheet"
2826
  msgstr "Création de tableaux à partir de Google Spreadsheet"
2827
 
2828
- #: templates/admin/dashboard/dashboard.inc.php:386
2829
  msgid ""
2830
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2831
  "tables via Google Sheet API"
2832
  msgstr ""
2833
 
2834
- #: templates/admin/dashboard/dashboard.inc.php:389
2835
  msgid ""
2836
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2837
  "tables from Private Google Spreadsheet"
2838
  msgstr ""
2839
 
2840
- #: templates/admin/dashboard/dashboard.inc.php:392
2841
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2842
  msgid "Creating MySQL-based tables from database"
2843
  msgstr "Création de tableaux basés sur MySQL à partir d'une base de données"
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:395
2846
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2847
  msgid "Creating MySQL-based tables from Wordpress post types"
2848
  msgstr ""
2849
  "Création de tableaux basés sur MySQL à partir d'articles types Wordpress"
2850
 
2851
- #: templates/admin/dashboard/dashboard.inc.php:398
2852
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2853
  #: templates/edit_table.inc.php:329
2854
  msgid "Advanced filtering"
2855
  msgstr "Filtrage avancé"
2856
 
2857
- #: templates/admin/dashboard/dashboard.inc.php:401
2858
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2859
- #: templates/admin/table-settings/table_settings_block.inc.php:144
2860
  #: templates/edit_table.inc.php:282
2861
  msgid "Server-side processing"
2862
  msgstr "Traitement côté serveur"
2863
 
2864
- #: templates/admin/dashboard/dashboard.inc.php:404
2865
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2866
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2867
  msgstr ""
2868
 
2869
- #: templates/admin/dashboard/dashboard.inc.php:407
2870
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2871
  msgid "Front-end table editing"
2872
  msgstr "Montage de tableaux en interface visuelle"
2873
 
2874
- #: templates/admin/dashboard/dashboard.inc.php:410
2875
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2876
  msgid "Excel-like editing"
2877
  msgstr "Montage comme sur Excel"
2878
 
2879
- #: templates/admin/dashboard/dashboard.inc.php:413
2880
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2881
  msgid "Creating charts with Highcharts"
2882
  msgstr "Créer des graphiques avec Highcharts"
2883
 
2884
- #: templates/admin/dashboard/dashboard.inc.php:416
2885
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2886
  msgid "Creating charts with Chart.js"
2887
  msgstr "Créer des graphiques avec Chart.js"
2888
 
2889
- #: templates/admin/dashboard/dashboard.inc.php:419
2890
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2891
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2892
  #: templates/edit_table.inc.php:301
2893
  msgid "Responsive"
2894
  msgstr "Réactif"
2895
 
2896
- #: templates/admin/dashboard/dashboard.inc.php:422
2897
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2898
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2899
  #: templates/edit_table.inc.php:750
2900
  msgid "Conditional formatting"
2901
  msgstr "Mise en forme conditionnelle"
2902
 
2903
- #: templates/admin/dashboard/dashboard.inc.php:425
2904
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2905
  msgid "Calculating Tools"
2906
  msgstr "Outils de calcul"
2907
 
2908
- #: templates/admin/dashboard/dashboard.inc.php:428
2909
  msgid "Formula columns"
2910
  msgstr ""
2911
 
2912
- #: templates/admin/dashboard/dashboard.inc.php:431
2913
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2914
- #: templates/admin/table-settings/table_settings_block.inc.php:79
2915
  msgid "Placeholders"
2916
  msgstr "Textes indicatifs"
2917
 
2918
- #: templates/admin/dashboard/dashboard.inc.php:434
2919
  msgid "Premium support"
2920
  msgstr ""
2921
 
2922
- #: templates/admin/dashboard/dashboard.inc.php:438
2923
  msgid "Get Premium Today"
2924
  msgstr ""
2925
 
2926
- #: templates/admin/dashboard/dashboard.inc.php:445
2927
  msgid "News Blog"
2928
  msgstr "Nouvelles du blog"
2929
 
2930
- #: templates/admin/dashboard/dashboard.inc.php:450
2931
  msgid "Checkout useful articles from wpdatatables.com"
2932
  msgstr "Consultez les articles utiles de wpdatables.com"
2933
 
2934
- #: templates/admin/dashboard/dashboard.inc.php:473
2935
  msgid "Please install and enable PHP extensions xml and dom on your server."
2936
  msgstr ""
2937
 
2938
- #: templates/admin/dashboard/dashboard.inc.php:481
2939
  msgid ""
2940
  "Never miss notifications about new cool features, promotions,\n"
2941
  " giveaways or freebies – subscribe to our "
@@ -2949,18 +2987,18 @@ msgstr ""
2949
  " environ 1 message par mois et jamais de "
2950
  "spam !"
2951
 
2952
- #: templates/admin/dashboard/dashboard.inc.php:499
2953
  msgid "Premium "
2954
  msgstr ""
2955
 
2956
- #: templates/admin/dashboard/dashboard.inc.php:502
2957
  msgid ""
2958
  "While wpDataTables itself provides quite a large amount of features and "
2959
  "unlimited customisation, flexibility, you can achieve even more with our "
2960
  "premium addons.(requires wpDataTables Premium version)"
2961
  msgstr ""
2962
 
2963
- #: templates/admin/dashboard/dashboard.inc.php:520
2964
  msgid ""
2965
  "A wpDataTables addon which allows showing additional details for a specific "
2966
  "row in a popup or a separate page or post."
@@ -2968,16 +3006,16 @@ msgstr ""
2968
  "Un addon wpDataTables qui permet d'afficher des détails supplémentaires pour "
2969
  "une ligne spécifique dans un popup ou une page ou un message séparé."
2970
 
2971
- #: templates/admin/dashboard/dashboard.inc.php:526
2972
- #: templates/admin/dashboard/dashboard.inc.php:553
2973
- #: templates/admin/dashboard/dashboard.inc.php:579
2974
- #: templates/admin/dashboard/dashboard.inc.php:606
2975
- #: templates/admin/dashboard/dashboard.inc.php:632
2976
- #: templates/admin/dashboard/dashboard.inc.php:665
2977
  msgid "Learn More"
2978
  msgstr "En savoir plus"
2979
 
2980
- #: templates/admin/dashboard/dashboard.inc.php:547
2981
  msgid ""
2982
  "An add-on for wpDataTables that provides powerful filtering features: "
2983
  "cascade filtering, applying filters on button click, hide table before "
@@ -2987,15 +3025,15 @@ msgstr ""
2987
  "filtrage en cascade, application de filtres en un clic de bouton, masquage "
2988
  "du tableau avant le filtrage."
2989
 
2990
- #: templates/admin/dashboard/dashboard.inc.php:643
2991
  msgid "Need free booking plugin?"
2992
  msgstr ""
2993
 
2994
- #: templates/admin/dashboard/dashboard.inc.php:652
2995
  msgid "Appointments and Events WordPress Booking Plugin"
2996
  msgstr "Rendez-vous et événements Extension de réservation WordPress"
2997
 
2998
- #: templates/admin/dashboard/dashboard.inc.php:655
2999
  msgid ""
3000
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
3001
  "set up a fully-featured automated booking system on your WordPress website "
@@ -3006,26 +3044,26 @@ msgid ""
3006
  "each month."
3007
  msgstr ""
3008
 
3009
- #: templates/admin/dashboard/dashboard.inc.php:658
3010
  msgid "Rating: 4.3 - ‎97 reviews"
3011
  msgstr ""
3012
 
3013
- #: templates/admin/dashboard/dashboard.inc.php:661
3014
  msgid "Free Download"
3015
  msgstr ""
3016
 
3017
- #: templates/admin/dashboard/dashboard.inc.php:676
3018
  #: templates/admin/getting-started/getting_started.inc.php:184
3019
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
3020
  #: templates/admin/support/support.inc.php:78
3021
  #: templates/admin/system-info/system_info.inc.php:509
3022
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3023
  msgid "Made by"
3024
  msgstr "Réalisé par"
3025
 
3026
- #: templates/admin/dashboard/dashboard.inc.php:684
3027
  #: templates/admin/getting-started/getting_started.inc.php:192
3028
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
3029
  #: templates/admin/support/support.inc.php:45
3030
  #: templates/admin/support/support.inc.php:86
3031
  #: templates/admin/system-info/system_info.inc.php:517
@@ -3034,9 +3072,9 @@ msgstr "Réalisé par"
3034
  msgid "Documentation"
3035
  msgstr "Documentation"
3036
 
3037
- #: templates/admin/dashboard/dashboard.inc.php:688
3038
  #: templates/admin/getting-started/getting_started.inc.php:196
3039
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
3040
  #: templates/admin/support/support.inc.php:24
3041
  #: templates/admin/support/support.inc.php:90
3042
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3173,7 +3211,7 @@ msgid "Lite vs Premium comparison"
3173
  msgstr "Comparaison entre les versions Lite et Premium"
3174
 
3175
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3176
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3177
  msgid "Go Premium Now"
3178
  msgstr ""
3179
 
@@ -3186,7 +3224,7 @@ msgid "Lite"
3186
  msgstr "Version allégée"
3187
 
3188
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3189
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:471
3190
  msgid "Premium"
3191
  msgstr "Premium"
3192
 
@@ -3216,8 +3254,10 @@ msgstr ""
3216
 
3217
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3218
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3219
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3220
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
 
 
3221
  msgid "NEW!"
3222
  msgstr ""
3223
 
@@ -3236,15 +3276,16 @@ msgstr ""
3236
 
3237
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3238
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3239
- #: templates/admin/table-settings/table_settings_block.inc.php:626
3240
- #: templates/admin/table-settings/table_settings_block.inc.php:634
3241
  msgid "Sorting"
3242
  msgstr "Tri"
3243
 
3244
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3245
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3246
- #: templates/admin/table-settings/table_settings_block.inc.php:489
3247
- #: templates/admin/table-settings/table_settings_block.inc.php:497
 
3248
  msgid "Pagination"
3249
  msgstr "Pagination"
3250
 
@@ -3271,7 +3312,7 @@ msgid "Customize charts"
3271
  msgstr ""
3272
 
3273
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3274
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:465
3275
  msgid "Limited"
3276
  msgstr "Limitée"
3277
 
@@ -3279,37 +3320,41 @@ msgstr "Limitée"
3279
  msgid "Some options are not available."
3280
  msgstr ""
3281
 
3282
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
3283
- msgid "Creating tables via Google Sheet API"
3284
  msgstr ""
3285
 
3286
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
 
 
 
 
3287
  msgid "Creating tables from Private Google Spreadsheet"
3288
  msgstr ""
3289
 
3290
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:461
3291
  msgid "Support"
3292
  msgstr "Centre d'assistance"
3293
 
3294
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:467
3295
  msgid "Response time is slow and can be up to 5 business days."
3296
  msgstr ""
3297
 
3298
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3299
  msgid ""
3300
  "* Please note that wpDataTables add-ons are not included in premium version "
3301
  "of plugin."
3302
  msgstr ""
3303
 
3304
  #: templates/admin/settings/settings.inc.php:33
3305
- #: templates/admin/settings/settings.inc.php:91
3306
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3307
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3308
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3309
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3310
  #: templates/admin/table-settings/table_preview_block.inc.php:89
3311
- #: templates/admin/table-settings/table_settings_block.inc.php:47
3312
  #: templates/admin/table-settings/table_settings_block.inc.php:48
 
3313
  msgid "Save Changes"
3314
  msgstr "Enregistrer les changements"
3315
 
@@ -3333,16 +3378,23 @@ msgstr "Paramètres de couleur et de police"
3333
  msgid "Custom JS and CSS"
3334
  msgstr "JS et CSS personnalisés"
3335
 
3336
- #: templates/admin/settings/settings.inc.php:88 templates/settings.inc.php:434
 
 
 
 
3337
  msgid "Reset colors and fonts to default"
3338
  msgstr "Réinitialiser les couleurs et les polices par défaut"
3339
 
3340
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3341
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
 
 
3342
  msgid "Font"
3343
  msgstr "Police de caractère"
3344
 
3345
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
 
3346
  #: templates/settings.inc.php:428
3347
  msgid ""
3348
  "This font will be used in rendered tables. Leave blank not to override "
@@ -3352,16 +3404,20 @@ msgstr ""
3352
  "pour ne pas remplacer les paramètres de thème par défaut"
3353
 
3354
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
 
3355
  msgid "Define the font size"
3356
  msgstr "Définir la taille de la police"
3357
 
3358
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3359
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3360
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
 
 
3361
  msgid "Font color"
3362
  msgstr "Couleur de la police"
3363
 
3364
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
 
3365
  msgid "This color is used for the main font in table cells."
3366
  msgstr ""
3367
  "Cette couleur est utilisée pour la police principale dans les cellules du "
@@ -3369,26 +3425,32 @@ msgstr ""
3369
 
3370
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3371
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
 
3372
  msgid "Header"
3373
  msgstr ""
3374
 
3375
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
 
3376
  msgid "The color is used for background of the table header."
3377
  msgstr "La couleur est utilisée pour l’arrière-plan de l’en-tête du tableau."
3378
 
3379
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
 
3380
  msgid "This color is used for the border in the table header."
3381
  msgstr "Cette couleur est utilisée pour la bordure dans l’en-tête du tableau."
3382
 
3383
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
 
3384
  msgid "This color is used for the font in the table header."
3385
  msgstr "Cette couleur est utilisée pour la police dans l’en-tête du tableau."
3386
 
3387
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
 
3388
  msgid "Active and hover color\t"
3389
  msgstr "Couleur active et en survol\t"
3390
 
3391
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
 
3392
  msgid ""
3393
  "This color is used when you hover the mouse above the table header, or when "
3394
  "you choose a column."
@@ -3401,43 +3463,52 @@ msgid "Table border "
3401
  msgstr ""
3402
 
3403
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
 
3404
  msgid "Inner border"
3405
  msgstr "Bordure intérieure"
3406
 
3407
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
 
3408
  msgid "This color is used for the inner border in the table between cells."
3409
  msgstr ""
3410
  "Cette couleur est utilisée pour la bordure intérieure du tableau entre les "
3411
  "cellules."
3412
 
3413
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
 
3414
  msgid "Outer border"
3415
  msgstr "Bordure extérieure"
3416
 
3417
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
 
3418
  msgid "This color is used for the outer border of the whole table body."
3419
  msgstr ""
3420
  "Cette couleur est utilisée pour la bordure extérieure du corps entier du "
3421
  "tableau."
3422
 
3423
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
 
3424
  msgid "Table borders"
3425
  msgstr "Bordures de tableau"
3426
 
3427
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
 
3428
  msgid "When this is checked, borders in table will be removed "
3429
  msgstr ""
3430
  "Lorsque cette case est cochée, les bordures du tableau seront supprimées "
3431
 
3432
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
 
3433
  msgid "Remove borders in table"
3434
  msgstr "Supprimer les bordures dans le tableau"
3435
 
3436
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
 
3437
  msgid "Header border"
3438
  msgstr "Bordure d’en-tête"
3439
 
3440
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
 
3441
  msgid "When this is checked,borders in header will be removed "
3442
  msgstr ""
3443
  "Lorsque cette case est cochée, les bordures de l’en-tête seront supprimées "
@@ -3447,30 +3518,37 @@ msgid "Remove borders in header"
3447
  msgstr "Supprimer les bordures dans l'en-tête"
3448
 
3449
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
 
3450
  msgid "Row color"
3451
  msgstr ""
3452
 
3453
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
 
3454
  msgid "Even row background"
3455
  msgstr "Fond ligne paire"
3456
 
3457
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
 
3458
  msgid "This color is used for for background in even rows."
3459
  msgstr "Cette couleur est utilisée pour le fond dans les lignes paires."
3460
 
3461
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
 
3462
  msgid "Odd row background"
3463
  msgstr "Fond ligne impaire"
3464
 
3465
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
 
3466
  msgid "This color is used for for background in odd rows."
3467
  msgstr "Cette couleur est utilisée pour le fond dans les lignes impaires."
3468
 
3469
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
 
3470
  msgid "Hover row"
3471
  msgstr "Survol ligne"
3472
 
3473
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
 
3474
  msgid ""
3475
  "This color is used for to highlight the row when you hover your mouse above "
3476
  "it."
@@ -3479,22 +3557,27 @@ msgstr ""
3479
  "passez votre souris dessus."
3480
 
3481
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
 
3482
  msgid "Background for selected rows"
3483
  msgstr "Fond pour les lignes sélectionnées"
3484
 
3485
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
 
3486
  msgid "This color is used for background in selected rows."
3487
  msgstr "Cette couleur est utilisée pour le fond des lignes sélectionnées."
3488
 
3489
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
 
3490
  msgid "Cell color"
3491
  msgstr ""
3492
 
3493
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
 
3494
  msgid "Sorted columns, even rows"
3495
  msgstr "Colonnes triées, lignes paires"
3496
 
3497
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
 
3498
  msgid ""
3499
  "This color is used for background in cells which are in the active columns "
3500
  "(columns used for sorting) in even rows."
@@ -3503,10 +3586,12 @@ msgstr ""
3503
  "les colonnes actives (colonnes utilisées pour le tri) dans les lignes paires."
3504
 
3505
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
 
3506
  msgid "Sorted columns, odd rows"
3507
  msgstr "Colonnes triées, lignes impaires"
3508
 
3509
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
 
3510
  msgid ""
3511
  "This color is used for background in cells which are in the active columns "
3512
  "(columns used for sorting) in odd rows."
@@ -3614,35 +3699,43 @@ msgstr ""
3614
  "fenêtres contextuelles de l’extension."
3615
 
3616
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
 
3617
  msgid "This color is used for the background of the pagination"
3618
  msgstr "Cette couleur est utilisée pour l’arrière-plan de la pagination"
3619
 
3620
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
 
3621
  msgid "This color is used for the color of the links in the pagination."
3622
  msgstr ""
3623
  "Cette couleur est utilisée pour la couleur des liens dans la pagination."
3624
 
3625
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
 
3626
  msgid "Current page background color"
3627
  msgstr "Couleur de fond de la page actuelle"
3628
 
3629
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
 
3630
  msgid "The color is used for background of the current page"
3631
  msgstr "La couleur est utilisée pour l’arrière-plan de la page en cours"
3632
 
3633
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
 
3634
  msgid "Current page color"
3635
  msgstr "Couleur de fond de la page actuelle"
3636
 
3637
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
 
3638
  msgid "This color is used for the color of the current page."
3639
  msgstr "Cette couleur est utilisée pour la couleur de la page actuelle."
3640
 
3641
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
 
3642
  msgid "Other pages hover background color"
3643
  msgstr "Autres pages couleur de fond lors du survol"
3644
 
3645
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
 
3646
  msgid ""
3647
  "This background color is used when you hover the mouse above the other pages"
3648
  msgstr ""
@@ -3650,10 +3743,12 @@ msgstr ""
3650
  "autres pages"
3651
 
3652
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
 
3653
  msgid "Other pages hover color"
3654
  msgstr "Autres couleur de survol de pages"
3655
 
3656
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
 
3657
  msgid "This color is used when you hover the mouse above the other pages."
3658
  msgstr ""
3659
  "Cette couleur est utilisée lorsque vous passez la souris au-dessus des "
@@ -3673,6 +3768,7 @@ msgstr ""
3673
  "possédant un wpDataTable."
3674
 
3675
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
 
3676
  #: templates/settings.inc.php:463
3677
  msgid "Custom wpDataTables CSS"
3678
  msgstr "CSS WpDataTables personnalisé"
@@ -3694,15 +3790,18 @@ msgid "Use minified version of Javascript files"
3694
  msgstr "Utiliser la version minifiée des fichiers Javascript"
3695
 
3696
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
 
3697
  #: templates/settings.inc.php:45
3698
  msgid "Interface language"
3699
  msgstr "Langue de l’interface"
3700
 
3701
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
 
3702
  msgid "Pick the language which will be used in tables interface."
3703
  msgstr "Choisissez la langue qui sera utilisée dans l’interface des tableaux."
3704
 
3705
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
 
3706
  msgid "English (default)"
3707
  msgstr "Anglais (par défaut)"
3708
 
@@ -3716,81 +3815,89 @@ msgid "Pick the date format to use in date column type."
3716
  msgstr ""
3717
  "Choisissez le format de date à utiliser dans le type de colonne de date."
3718
 
3719
- #: templates/admin/settings/tabs/main_plugin_settings.php:73
3720
  #: templates/settings.inc.php:119
3721
  msgid "Time format"
3722
  msgstr "Format de l’heure"
3723
 
3724
- #: templates/admin/settings/tabs/main_plugin_settings.php:75
3725
  msgid "Pick the time format to use in datetime and time column type."
3726
  msgstr ""
3727
  "Choisissez le format de l’heure à utiliser dans le type de colonne datetime "
3728
  "et heure."
3729
 
3730
- #: templates/admin/settings/tabs/main_plugin_settings.php:90
3731
  msgid "Parse shortcodes"
3732
  msgstr "Analyser les shortcodes"
3733
 
3734
- #: templates/admin/settings/tabs/main_plugin_settings.php:92
3735
  msgid ""
3736
  "If the option is enabled, you can use shortcodes of other plugins for "
3737
  "generating content."
3738
  msgstr ""
3739
 
3740
- #: templates/admin/settings/tabs/main_plugin_settings.php:96
3741
  msgid "Parse shortcodes in strings"
3742
  msgstr "Analyser les shortcodes dans la chaîne de caractères"
3743
 
3744
- #: templates/admin/settings/tabs/main_plugin_settings.php:103
 
3745
  #: templates/settings.inc.php:74
3746
  msgid "Base skin"
3747
  msgstr "Skin de base"
3748
 
3749
- #: templates/admin/settings/tabs/main_plugin_settings.php:105
 
3750
  msgid "Choose the base skin for the plugin."
3751
  msgstr "Choisissez le skin de base pour l’extension."
3752
 
3753
- #: templates/admin/settings/tabs/main_plugin_settings.php:111
 
3754
  msgid "Material"
3755
  msgstr "Matériel"
3756
 
3757
- #: templates/admin/settings/tabs/main_plugin_settings.php:112
 
3758
  msgid "Light"
3759
  msgstr "Light"
3760
 
3761
- #: templates/admin/settings/tabs/main_plugin_settings.php:113
 
3762
  msgid "Graphite"
3763
  msgstr "Graphite"
3764
 
3765
- #: templates/admin/settings/tabs/main_plugin_settings.php:114
 
3766
  msgid "Aqua"
3767
  msgstr "Eau"
3768
 
3769
- #: templates/admin/settings/tabs/main_plugin_settings.php:115
 
3770
  msgid "Purple"
3771
  msgstr "Violet"
3772
 
3773
- #: templates/admin/settings/tabs/main_plugin_settings.php:116
 
3774
  msgid "Dark"
3775
  msgstr "Foncé"
3776
 
3777
- #: templates/admin/settings/tabs/main_plugin_settings.php:124
3778
  #: templates/settings.inc.php:131
3779
  msgid "Number format"
3780
  msgstr "Format de nombre"
3781
 
3782
- #: templates/admin/settings/tabs/main_plugin_settings.php:126
3783
  #: templates/settings.inc.php:138
3784
  msgid "Pick the number format (thousands and decimals separator)"
3785
  msgstr ""
3786
  "Choisissez le format numérique (séparateur de milliers et de décimales)"
3787
 
3788
- #: templates/admin/settings/tabs/main_plugin_settings.php:143
3789
  #: templates/settings.inc.php:86
3790
  msgid "Render advanced filter"
3791
  msgstr "Filtre avancé interprété"
3792
 
3793
- #: templates/admin/settings/tabs/main_plugin_settings.php:145
3794
  msgid ""
3795
  "Choose where you would like to render the advanced filter for tables where "
3796
  "enabled."
@@ -3798,63 +3905,63 @@ msgstr ""
3798
  "Choisissez l’emplacement où vous souhaitez interpréter le filtre avancé pour "
3799
  "les tableaux où ils sont activés."
3800
 
3801
- #: templates/admin/settings/tabs/main_plugin_settings.php:151
3802
  #: templates/settings.inc.php:90
3803
  msgid "In the header"
3804
  msgstr "Dans l’en-tête"
3805
 
3806
- #: templates/admin/settings/tabs/main_plugin_settings.php:152
3807
  #: templates/settings.inc.php:91
3808
  msgid "In the footer"
3809
  msgstr "En bas de page"
3810
 
3811
- #: templates/admin/settings/tabs/main_plugin_settings.php:160
3812
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3813
  #: templates/settings.inc.php:143
3814
  msgid "Decimal places"
3815
  msgstr "Place de la décimales"
3816
 
3817
- #: templates/admin/settings/tabs/main_plugin_settings.php:162
3818
  msgid "Define the amount of decimal places for the float numbers."
3819
  msgstr ""
3820
  "Définissez la quantité de la place de décimales pour les nombres à virgules."
3821
 
3822
- #: templates/admin/settings/tabs/main_plugin_settings.php:187
3823
  msgid "CSV delimiter"
3824
  msgstr "Délimiteur CSV"
3825
 
3826
- #: templates/admin/settings/tabs/main_plugin_settings.php:189
3827
  msgid "Pick the CSV delimiter"
3828
  msgstr "Choisissez le délimiteur CSV"
3829
 
3830
- #: templates/admin/settings/tabs/main_plugin_settings.php:208
3831
  msgid "Tables sorting direction in admin page"
3832
  msgstr ""
3833
 
3834
- #: templates/admin/settings/tabs/main_plugin_settings.php:210
3835
  msgid ""
3836
  "Here you can set sorting direction by id for browse tables and charts. By "
3837
  "default is ascending order."
3838
  msgstr ""
3839
 
3840
- #: templates/admin/settings/tabs/main_plugin_settings.php:216
3841
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3842
  #: templates/edit_table.inc.php:663
3843
  msgid "Ascending"
3844
  msgstr "Ordre croissant"
3845
 
3846
- #: templates/admin/settings/tabs/main_plugin_settings.php:217
3847
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3848
  #: templates/edit_table.inc.php:665
3849
  msgid "Descending"
3850
  msgstr "Ordre décroissant"
3851
 
3852
- #: templates/admin/settings/tabs/main_plugin_settings.php:228
3853
  #: templates/settings.inc.php:171
3854
  msgid "Tablet width"
3855
  msgstr "Largeur de la tablette"
3856
 
3857
- #: templates/admin/settings/tabs/main_plugin_settings.php:230
3858
  #: templates/settings.inc.php:175
3859
  msgid ""
3860
  "Here you can specify width of the screen (in pixels) that will be treated as "
@@ -3864,44 +3971,44 @@ msgstr ""
3864
  "traitée comme une tablette. Vous pouvez le définir plus large si vous "
3865
  "souhaitez un effet adaptatif sur les ordinateurs de bureau."
3866
 
3867
- #: templates/admin/settings/tabs/main_plugin_settings.php:254
3868
  #: templates/settings.inc.php:181
3869
  msgid "Mobile width"
3870
  msgstr "Largeur mobile"
3871
 
3872
- #: templates/admin/settings/tabs/main_plugin_settings.php:256
3873
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3874
  msgstr ""
3875
  "Ici, vous pouvez spécifier la largeur (en pixels) qui sera traitée comme un "
3876
  "mobile.."
3877
 
3878
- #: templates/admin/settings/tabs/main_plugin_settings.php:281
3879
  #: templates/settings.inc.php:61
3880
  msgid "Tables per admin page"
3881
  msgstr "Tableaux par page administrateur"
3882
 
3883
- #: templates/admin/settings/tabs/main_plugin_settings.php:283
3884
  msgid "How many tables to show in the browse page."
3885
  msgstr "Combien de tableaux afficher dans la page de navigation."
3886
 
3887
- #: templates/admin/settings/tabs/main_plugin_settings.php:299
3888
  msgid "Align numbers"
3889
  msgstr "Aligner les nombres"
3890
 
3891
- #: templates/admin/settings/tabs/main_plugin_settings.php:301
3892
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3893
  msgstr ""
3894
 
3895
- #: templates/admin/settings/tabs/main_plugin_settings.php:305
3896
  #: templates/settings.inc.php:161
3897
  msgid "Align numbers to the right"
3898
  msgstr "Aligner les chiffres à droite"
3899
 
3900
- #: templates/admin/settings/tabs/main_plugin_settings.php:315
3901
  msgid "Sum functions label"
3902
  msgstr "Libellé de fonctions de somme"
3903
 
3904
- #: templates/admin/settings/tabs/main_plugin_settings.php:317
3905
  msgid ""
3906
  "Enter a label that will be used for Sum functions. If you leave it blank "
3907
  "default label will be Σ ="
@@ -3909,11 +4016,11 @@ msgstr ""
3909
  "Entrez un libellé qui sera utilisé pour les fonctions de somme. Si vous le "
3910
  "laissez vide, le libellé par défaut sera Σ ="
3911
 
3912
- #: templates/admin/settings/tabs/main_plugin_settings.php:335
3913
  msgid "Average functions label"
3914
  msgstr "Libellé de fonctions moyennes"
3915
 
3916
- #: templates/admin/settings/tabs/main_plugin_settings.php:337
3917
  msgid ""
3918
  "Enter a label that will be used for Average functions. If you leave it blank "
3919
  "default label will be Avg ="
@@ -3921,11 +4028,11 @@ msgstr ""
3921
  "Entrez un libellé qui sera utilisé pour les fonctions Moyenne. Si vous le "
3922
  "laissez vide, le libellé par défaut sera Avg ="
3923
 
3924
- #: templates/admin/settings/tabs/main_plugin_settings.php:360
3925
  msgid "Minimum functions label"
3926
  msgstr "Libellé de fonctions minimum"
3927
 
3928
- #: templates/admin/settings/tabs/main_plugin_settings.php:362
3929
  msgid ""
3930
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3931
  "default label will be Min ="
@@ -3933,11 +4040,11 @@ msgstr ""
3933
  "Entrez un libellé qui sera utilisé pour les fonctions Minimum. Si vous le "
3934
  "laissez vide, le libellé par défaut sera Min ="
3935
 
3936
- #: templates/admin/settings/tabs/main_plugin_settings.php:380
3937
  msgid "Maximum functions label"
3938
  msgstr "Libellé de fonctions maximum"
3939
 
3940
- #: templates/admin/settings/tabs/main_plugin_settings.php:382
3941
  msgid ""
3942
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3943
  "default label will be Max ="
@@ -3945,12 +4052,12 @@ msgstr ""
3945
  "Entrez un libellé qui sera utilisé pour les fonctions Maximum. Si vous le "
3946
  "laissez vide, le libellé par défaut sera Max ="
3947
 
3948
- #: templates/admin/settings/tabs/main_plugin_settings.php:408
3949
  msgid "Include full bootstrap front-end"
3950
  msgstr "Inclut l’interface publique de bootstrap complète"
3951
 
3952
- #: templates/admin/settings/tabs/main_plugin_settings.php:410
3953
- #: templates/admin/settings/tabs/main_plugin_settings.php:421
3954
  msgid ""
3955
  "It is recommended to uncheck this option if bootstrap.js is already included "
3956
  "in one of the theme files. Unchecked option means that there is still "
@@ -3961,61 +4068,61 @@ msgstr ""
3961
  "bootstrap.js est toujours inclus mais uniquement en mode non-conflit, ce qui "
3962
  "devrait éviter les erreurs."
3963
 
3964
- #: templates/admin/settings/tabs/main_plugin_settings.php:414
3965
  msgid "Include full bootstrap.js on the front-end"
3966
  msgstr "Inclure bootstrap.js complet sur le front-end"
3967
 
3968
- #: templates/admin/settings/tabs/main_plugin_settings.php:419
3969
  msgid "Include full bootstrap back-end"
3970
  msgstr "Inclut l’environnement de développement de bootstrap complet"
3971
 
3972
- #: templates/admin/settings/tabs/main_plugin_settings.php:425
3973
  msgid "Include full bootstrap.js on the back-end"
3974
  msgstr ""
3975
  "Inclure la version complète de bootstrap.js dans l'interface administrateur"
3976
 
3977
- #: templates/admin/settings/tabs/main_plugin_settings.php:433
3978
- #: templates/admin/settings/tabs/main_plugin_settings.php:439
3979
  #: templates/settings.inc.php:32
3980
  msgid "Show plugin credentials below tables"
3981
  msgstr ""
3982
 
3983
- #: templates/admin/settings/tabs/main_plugin_settings.php:435
3984
  #: templates/settings.inc.php:32
3985
  msgid ""
3986
  "If you want to support our project, please, keep this checkbox as checked"
3987
  msgstr ""
3988
 
3989
- #: templates/admin/settings/tabs/main_plugin_settings.php:444
3990
  msgid "Prevent deleting tables in database"
3991
  msgstr "Empêcher la suppression de tables dans la base de données"
3992
 
3993
- #: templates/admin/settings/tabs/main_plugin_settings.php:446
3994
  msgid ""
3995
  "It is recommended to leave this option as checked if you what to keep your "
3996
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3997
  "this option, it will be deleted all tables in database after deleting plugin"
3998
  msgstr ""
3999
 
4000
- #: templates/admin/settings/tabs/main_plugin_settings.php:450
4001
  msgid ""
4002
  "Prevent deleting tables in database after deleting plugin from Plugins page"
4003
  msgstr ""
4004
  "Empêcher la suppression des tableaux dans la base de données après avoir "
4005
  "supprimé l'extension de la page Extensions"
4006
 
4007
- #: templates/admin/settings/tabs/main_plugin_settings.php:457
4008
  msgid "Remove Getting Started page"
4009
  msgstr "Supprimer la page de démarrage"
4010
 
4011
- #: templates/admin/settings/tabs/main_plugin_settings.php:459
4012
  msgid ""
4013
  "Check this option if you want to remove Getting Started page from admin menu."
4014
  msgstr ""
4015
  "Cochez cette option si vous souhaitez supprimer la page de démarrage du menu "
4016
  "d'administration."
4017
 
4018
- #: templates/admin/settings/tabs/main_plugin_settings.php:463
4019
  msgid "Remove \"Getting Started\" page from admin menu."
4020
  msgstr "Supprimer la page \"Démarrage\" du menu d'administration."
4021
 
@@ -4307,10 +4414,6 @@ msgstr "Ajouter une colonne"
4307
  msgid "Column header"
4308
  msgstr "En-tête de colonne"
4309
 
4310
- #: templates/admin/table-settings/add_column_modal.inc.php:47
4311
- msgid "Type"
4312
- msgstr "Type"
4313
-
4314
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4315
  msgid "Insert after"
4316
  msgstr "Insérer après"
@@ -4347,7 +4450,7 @@ msgstr "Paramètres de colonne"
4347
 
4348
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4349
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4350
- #: templates/admin/table-settings/table_settings_block.inc.php:63
4351
  msgid "Display"
4352
  msgstr "Affichage"
4353
 
@@ -4360,7 +4463,7 @@ msgid "Global Filtering"
4360
  msgstr ""
4361
 
4362
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4363
- #: templates/admin/table-settings/table_settings_block.inc.php:71
4364
  msgid "Editing"
4365
  msgstr "Édition"
4366
 
@@ -4876,7 +4979,7 @@ msgid "Allow filtering"
4876
  msgstr "Autoriser le filtrage"
4877
 
4878
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4879
- #: templates/admin/table-settings/table_settings_block.inc.php:665
4880
  msgid "Global search"
4881
  msgstr "Recherche globale"
4882
 
@@ -5450,19 +5553,19 @@ msgid "Clear data"
5450
  msgstr ""
5451
 
5452
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5453
- #: templates/admin/table-settings/table_settings_block.inc.php:199
5454
  #: templates/edit_table.inc.php:58
5455
  msgid "Table title"
5456
  msgstr "Titre du tableau"
5457
 
5458
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5459
- #: templates/admin/table-settings/table_settings_block.inc.php:207
5460
  #: templates/edit_table.inc.php:67
5461
  msgid "Show table title"
5462
  msgstr "Afficher le titre du tableau"
5463
 
5464
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5465
- #: templates/admin/table-settings/table_settings_block.inc.php:214
5466
  msgid ""
5467
  "Enable this to show the table title in a h3 block above the table, disable "
5468
  "to hide."
@@ -5471,7 +5574,7 @@ msgstr ""
5471
  "dessus du tableau, puis désactivez-la pour la masquer."
5472
 
5473
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5474
- #: templates/admin/table-settings/table_settings_block.inc.php:222
5475
  msgid "Show table title on the page"
5476
  msgstr "Afficher le titre du tableau sur la page"
5477
 
@@ -5538,51 +5641,51 @@ msgid "Scrollable"
5538
  msgstr "Scrollable"
5539
 
5540
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5541
- #: templates/admin/table-settings/table_settings_block.inc.php:363
5542
  msgid "Scrollable table"
5543
  msgstr "Tableau à barre de défilement horizontale"
5544
 
5545
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5546
- #: templates/admin/table-settings/table_settings_block.inc.php:370
5547
  msgid "Enable this to enable a horizontal scrollbar below the table."
5548
  msgstr ""
5549
  "Activez cette option pour activer une barre de défilement horizontale sous "
5550
  "la table."
5551
 
5552
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5553
- #: templates/admin/table-settings/table_settings_block.inc.php:379
5554
  msgid "Show a horizontal scrollbar"
5555
  msgstr "Afficher une barre de défilement horizontale"
5556
 
5557
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5558
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5559
- #: templates/admin/table-settings/table_settings_block.inc.php:423
5560
- #: templates/admin/table-settings/table_settings_block.inc.php:431
5561
  msgid "Limit table width"
5562
  msgstr "Largeur de tableau limite"
5563
 
5564
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5565
- #: templates/admin/table-settings/table_settings_block.inc.php:438
5566
  msgid "Enable this to restrict table width to page width."
5567
  msgstr ""
5568
  "Activez cette option pour restreindre la largeur du tableau à la largeur de "
5569
  "la page."
5570
 
5571
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5572
- #: templates/admin/table-settings/table_settings_block.inc.php:447
5573
  msgid "Limit table width to page width"
5574
  msgstr "Limiter la largeur du tableau à la largeur de la page"
5575
 
5576
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5577
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5578
- #: templates/admin/table-settings/table_settings_block.inc.php:454
5579
- #: templates/admin/table-settings/table_settings_block.inc.php:462
5580
  #: templates/edit_table.inc.php:392
5581
  msgid "Word wrap"
5582
  msgstr "Enveloppe de mots"
5583
 
5584
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5585
- #: templates/admin/table-settings/table_settings_block.inc.php:469
5586
  msgid ""
5587
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5588
  "height."
@@ -5591,7 +5694,7 @@ msgstr ""
5591
  "plusieurs lignes et étirer la hauteur des cellules."
5592
 
5593
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5594
- #: templates/admin/table-settings/table_settings_block.inc.php:477
5595
  msgid "Wrap words to newlines"
5596
  msgstr "Envelopper les mots dans les nouvelles lignes"
5597
 
@@ -5653,16 +5756,20 @@ msgstr "STANDARD"
5653
  msgid "EXCEL-LIKE"
5654
  msgstr "EXCEL-LIKE"
5655
 
5656
- #: templates/admin/table-settings/table_settings_block.inc.php:67
5657
  msgid "Sorting and filtering"
5658
  msgstr "Tri et filtrage"
5659
 
5660
- #: templates/admin/table-settings/table_settings_block.inc.php:75
5661
- #: templates/admin/table-settings/table_settings_block.inc.php:990
5662
  msgid "Table Tools"
5663
  msgstr "Outils de tableau"
5664
 
5665
- #: templates/admin/table-settings/table_settings_block.inc.php:97
 
 
 
 
5666
  msgid ""
5667
  "Please choose a type of the input data source - it can be a MySQL query, a "
5668
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
@@ -5671,39 +5778,39 @@ msgstr ""
5671
  "d’une requête MySQL, d’un fichier ou d’une URL. Seules les tables basées sur "
5672
  "des requêtes MySQL peuvent utiliser le traitement côté serveur"
5673
 
5674
- #: templates/admin/table-settings/table_settings_block.inc.php:104
5675
  msgid "Select a data source type"
5676
  msgstr "Sélectionnez un type de source de données"
5677
 
5678
- #: templates/admin/table-settings/table_settings_block.inc.php:105
5679
  msgid "SQL query "
5680
  msgstr ""
5681
 
5682
- #: templates/admin/table-settings/table_settings_block.inc.php:106
5683
  #: templates/edit_table.inc.php:85
5684
  msgid "CSV file"
5685
  msgstr "Fichier CSV"
5686
 
5687
- #: templates/admin/table-settings/table_settings_block.inc.php:107
5688
  #: templates/edit_table.inc.php:86
5689
  msgid "Excel file"
5690
  msgstr "Fichier Excel"
5691
 
5692
- #: templates/admin/table-settings/table_settings_block.inc.php:108
5693
  msgid "Google Spreadsheet "
5694
  msgstr ""
5695
 
5696
- #: templates/admin/table-settings/table_settings_block.inc.php:109
5697
  #: templates/edit_table.inc.php:89
5698
  msgid "XML file"
5699
  msgstr "Fichier XML"
5700
 
5701
- #: templates/admin/table-settings/table_settings_block.inc.php:110
5702
  #: templates/edit_table.inc.php:90
5703
  msgid "JSON file"
5704
  msgstr "Fichier JSON"
5705
 
5706
- #: templates/admin/table-settings/table_settings_block.inc.php:124
5707
  msgid ""
5708
  "Upload your file or provide the full URL here. For CSV or Excel input "
5709
  "sources only URLs or paths from same domain are supported. For Google "
@@ -5715,16 +5822,16 @@ msgstr ""
5715
  "pris en charge. Pour les feuilles de calcul Google: n’oubliez pas de publier "
5716
  "la feuille de calcul avant de coller l’URL."
5717
 
5718
- #: templates/admin/table-settings/table_settings_block.inc.php:130
5719
  msgid "Paste URL or path, or click Browse to choose"
5720
  msgstr ""
5721
  "Collez l’URL ou le chemin d’accès, ou cliquez sur Parcourir pour choisir"
5722
 
5723
- #: templates/admin/table-settings/table_settings_block.inc.php:134
5724
  msgid "Browse..."
5725
  msgstr "Naviguer..."
5726
 
5727
- #: templates/admin/table-settings/table_settings_block.inc.php:146
5728
  msgid ""
5729
  "If it is turned on, all sorting, filtering, pagination and other data "
5730
  "interaction will be done by MySQL server. This feature is recommended if you "
@@ -5735,15 +5842,15 @@ msgstr ""
5735
  "fonctionnalité est recommandée si vous avez plus de 2000-3000 lignes. "
5736
  "Obligatoire pour les tables modifiables."
5737
 
5738
- #: templates/admin/table-settings/table_settings_block.inc.php:151
5739
  msgid "Enable server-side processing"
5740
  msgstr "Enable server-side processing"
5741
 
5742
- #: templates/admin/table-settings/table_settings_block.inc.php:165
5743
  msgid "MySQL Query"
5744
  msgstr ""
5745
 
5746
- #: templates/admin/table-settings/table_settings_block.inc.php:167
5747
  msgid ""
5748
  "Enter the text of your MySQL query here - please make sure it returns actual "
5749
  "data first. You can use a number of placeholders to make the dataset in the "
@@ -5751,12 +5858,12 @@ msgid ""
5751
  "with different shortcodes."
5752
  msgstr ""
5753
 
5754
- #: templates/admin/table-settings/table_settings_block.inc.php:174
5755
  #: templates/edit_table.inc.php:292
5756
  msgid "Auto-refresh"
5757
  msgstr "Actualisation automatique"
5758
 
5759
- #: templates/admin/table-settings/table_settings_block.inc.php:176
5760
  msgid ""
5761
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5762
  "with a given interval of seconds. Leave zero or empty not to use auto-"
@@ -5767,25 +5874,25 @@ msgstr ""
5767
  "secondes donné. Laissez zéro ou vide pour ne pas utiliser l’actualisation "
5768
  "automatique."
5769
 
5770
- #: templates/admin/table-settings/table_settings_block.inc.php:181
5771
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5772
  msgstr ""
5773
  "Intervalle de rafraîchissement automatique en secondes (zéro ou vide pour "
5774
  "désactiver)"
5775
 
5776
- #: templates/admin/table-settings/table_settings_block.inc.php:230
5777
  msgid "Responsiveness"
5778
  msgstr "Réactivité"
5779
 
5780
- #: templates/admin/table-settings/table_settings_block.inc.php:238
5781
  msgid "Responsive design"
5782
  msgstr "Design réactif"
5783
 
5784
- #: templates/admin/table-settings/table_settings_block.inc.php:245
5785
  msgid "Enable this to allow responsiveness in the table."
5786
  msgstr "Activez cette option pour permettre la réactivité dans le tableau."
5787
 
5788
- #: templates/admin/table-settings/table_settings_block.inc.php:246
5789
  msgid ""
5790
  "Please do not forget to define which columns will be hidden on mobiles and "
5791
  "tablets in the column settings!"
@@ -5793,15 +5900,15 @@ msgstr ""
5793
  "N’oubliez pas de définir quelles colonnes seront cachées sur les mobiles et "
5794
  "les tablettes dans les paramètres de colonne!"
5795
 
5796
- #: templates/admin/table-settings/table_settings_block.inc.php:254
5797
  msgid "Allow collapsing on mobiles and tablets"
5798
  msgstr "Autoriser l’écrasement sur les mobiles et les tablettes"
5799
 
5800
- #: templates/admin/table-settings/table_settings_block.inc.php:262
5801
  msgid "Hide until loaded"
5802
  msgstr "Cacher jusqu’au chargement"
5803
 
5804
- #: templates/admin/table-settings/table_settings_block.inc.php:264
5805
  msgid ""
5806
  "Enable to make whole table hidden until it is initialized to prevent "
5807
  "unformatted data flashing"
@@ -5809,28 +5916,28 @@ msgstr ""
5809
  "Permet de masquer l’intégralité de la table jusqu’à ce qu’elle soit "
5810
  "initialisée pour éviter que des données non formatées ne clignotent"
5811
 
5812
- #: templates/admin/table-settings/table_settings_block.inc.php:269
5813
  msgid "Hide the table before it is fully loaded"
5814
  msgstr "Cacher la table avant qu’elle ne soit complètement chargée"
5815
 
5816
- #: templates/admin/table-settings/table_settings_block.inc.php:281
5817
  msgid "Default rows per page"
5818
  msgstr "Lignes par défaut par page"
5819
 
5820
- #: templates/admin/table-settings/table_settings_block.inc.php:289
5821
- #: templates/admin/table-settings/table_settings_block.inc.php:324
5822
  msgid "Rows per page"
5823
  msgstr "Lignes par page"
5824
 
5825
- #: templates/admin/table-settings/table_settings_block.inc.php:296
5826
  msgid "How many rows to show per page by default."
5827
  msgstr "Combien de lignes afficher par page par défaut."
5828
 
5829
- #: templates/admin/table-settings/table_settings_block.inc.php:332
5830
  msgid "Show X entries"
5831
  msgstr "Afficher X entrées"
5832
 
5833
- #: templates/admin/table-settings/table_settings_block.inc.php:339
5834
  msgid ""
5835
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5836
  "frontend."
@@ -5838,22 +5945,22 @@ msgstr ""
5838
  "Activez/désactivez cette option pour afficher/masquer \"Afficher X entrées\" "
5839
  "par page liste déroulante sur l’interface publique."
5840
 
5841
- #: templates/admin/table-settings/table_settings_block.inc.php:347
5842
  msgid "Show \"Show X entries\" dropdown"
5843
  msgstr "Afficher le menu déroulant \"Afficher X entrées\""
5844
 
5845
- #: templates/admin/table-settings/table_settings_block.inc.php:371
5846
  msgid "This should be turned off if you want to set columns width manually."
5847
  msgstr ""
5848
  "Cette option doit être désactivée si vous souhaitez définir la largeur des "
5849
  "colonnes manuellement."
5850
 
5851
- #: templates/admin/table-settings/table_settings_block.inc.php:392
5852
- #: templates/admin/table-settings/table_settings_block.inc.php:400
5853
  msgid "Info block"
5854
  msgstr "Bloc d’information"
5855
 
5856
- #: templates/admin/table-settings/table_settings_block.inc.php:407
5857
  msgid ""
5858
  "Enable to show a block of information about the number of records below the "
5859
  "table."
@@ -5861,11 +5968,11 @@ msgstr ""
5861
  "Permet d’afficher un bloc d’informations sur le nombre d’enregistrements "
5862
  "sous le tableau."
5863
 
5864
- #: templates/admin/table-settings/table_settings_block.inc.php:415
5865
  msgid "Show information block below the table"
5866
  msgstr "Afficher le bloc d’informations sous le tableau"
5867
 
5868
- #: templates/admin/table-settings/table_settings_block.inc.php:439
5869
  msgid ""
5870
  "This should be turned on if you want to set columns width manually. Should "
5871
  "be on to use word wrapping."
@@ -5873,78 +5980,78 @@ msgstr ""
5873
  "Cela doit être activé si vous souhaitez définir la largeur des colonnes "
5874
  "manuellement. Devrait être activé pour utiliser l’enveloppe de mots."
5875
 
5876
- #: templates/admin/table-settings/table_settings_block.inc.php:501
5877
  msgid "Enable to show a pagination"
5878
  msgstr ""
5879
 
5880
- #: templates/admin/table-settings/table_settings_block.inc.php:509
5881
  msgid "Show pagination block below the table"
5882
  msgstr ""
5883
 
5884
- #: templates/admin/table-settings/table_settings_block.inc.php:517
5885
- #: templates/admin/table-settings/table_settings_block.inc.php:525
5886
  msgid "Pagination Alignment"
5887
  msgstr ""
5888
 
5889
- #: templates/admin/table-settings/table_settings_block.inc.php:529
5890
  msgid "Here you can set pagination position: right, center or left."
5891
  msgstr ""
5892
 
5893
- #: templates/admin/table-settings/table_settings_block.inc.php:537
5894
  msgid "Right"
5895
  msgstr ""
5896
 
5897
- #: templates/admin/table-settings/table_settings_block.inc.php:538
5898
  msgid "Center"
5899
  msgstr ""
5900
 
5901
- #: templates/admin/table-settings/table_settings_block.inc.php:539
5902
  msgid "Left"
5903
  msgstr ""
5904
 
5905
- #: templates/admin/table-settings/table_settings_block.inc.php:548
5906
- #: templates/admin/table-settings/table_settings_block.inc.php:556
5907
  msgid "Pagination Layout"
5908
  msgstr ""
5909
 
5910
- #: templates/admin/table-settings/table_settings_block.inc.php:560
5911
  msgid "Here you can choose between different pagination layout."
5912
  msgstr ""
5913
 
5914
- #: templates/admin/table-settings/table_settings_block.inc.php:568
5915
  msgid ""
5916
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5917
  msgstr ""
5918
 
5919
- #: templates/admin/table-settings/table_settings_block.inc.php:569
5920
  msgid "\"Previous\" and \"Next\" buttons only"
5921
  msgstr ""
5922
 
5923
- #: templates/admin/table-settings/table_settings_block.inc.php:570
5924
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5925
  msgstr ""
5926
 
5927
- #: templates/admin/table-settings/table_settings_block.inc.php:571
5928
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5929
  msgstr ""
5930
 
5931
- #: templates/admin/table-settings/table_settings_block.inc.php:572
5932
  msgid "Page number buttons only"
5933
  msgstr ""
5934
 
5935
- #: templates/admin/table-settings/table_settings_block.inc.php:573
5936
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5937
  msgstr ""
5938
 
5939
- #: templates/admin/table-settings/table_settings_block.inc.php:595
5940
  msgid "Advanced column filters"
5941
  msgstr "Filtres de colonne avancés"
5942
 
5943
- #: templates/admin/table-settings/table_settings_block.inc.php:603
5944
  msgid "Advanced filter"
5945
  msgstr "Filtre avancé"
5946
 
5947
- #: templates/admin/table-settings/table_settings_block.inc.php:610
5948
  msgid ""
5949
  "Enable to show an advanced filter for each of the columns, filters can be "
5950
  "shown in table footer, header or in a separate form."
@@ -5953,11 +6060,11 @@ msgstr ""
5953
  "filtres peuvent être affichés dans le pied de page du tableau, l’en-tête ou "
5954
  "dans un formulaire séparé."
5955
 
5956
- #: templates/admin/table-settings/table_settings_block.inc.php:618
5957
  msgid "Enable advanced column filters"
5958
  msgstr "Activer les filtres de colonne avancés"
5959
 
5960
- #: templates/admin/table-settings/table_settings_block.inc.php:641
5961
  msgid ""
5962
  "If this is enabled, each column header will be clickable; clicking will sort "
5963
  "the whole table by the content of this column cells ascending or descending."
@@ -5966,15 +6073,15 @@ msgstr ""
5966
  "cliquant, vous trierez tout le tableau en fonction du contenu de cette "
5967
  "colonne en ordre croissant ou décroissant."
5968
 
5969
- #: templates/admin/table-settings/table_settings_block.inc.php:649
5970
  msgid "Allow sorting for the table"
5971
  msgstr "Autoriser le tri pour le tableau"
5972
 
5973
- #: templates/admin/table-settings/table_settings_block.inc.php:657
5974
  msgid "Main search block"
5975
  msgstr "Bloc de recherche principal"
5976
 
5977
- #: templates/admin/table-settings/table_settings_block.inc.php:672
5978
  msgid ""
5979
  "If this is enabled, a search block will be displayed on the top right of the "
5980
  "table, allowing to search through whole table with a single input."
@@ -5983,20 +6090,20 @@ msgstr ""
5983
  "droite de la table, ce qui permettra de parcourir un tableau entier avec une "
5984
  "seule entrée."
5985
 
5986
- #: templates/admin/table-settings/table_settings_block.inc.php:680
5987
  msgid "Enable search block"
5988
  msgstr "Activer le bloc de recherche"
5989
 
5990
- #: templates/admin/table-settings/table_settings_block.inc.php:694
5991
  msgid "Filters in a form"
5992
  msgstr "Filtres dans un formulaire"
5993
 
5994
- #: templates/admin/table-settings/table_settings_block.inc.php:701
5995
  #: templates/edit_table.inc.php:340
5996
  msgid "Filter in form"
5997
  msgstr "Filtrer sous forme"
5998
 
5999
- #: templates/admin/table-settings/table_settings_block.inc.php:708
6000
  msgid ""
6001
  "Enable to show the advanced column filter in a form above the table, instead "
6002
  "of showing in the table footer/header."
@@ -6005,24 +6112,24 @@ msgstr ""
6005
  "dessus de la table, au lieu de l’afficher dans le pied de page/en-tête du "
6006
  "tableau."
6007
 
6008
- #: templates/admin/table-settings/table_settings_block.inc.php:716
6009
  msgid "Show filters in a form above the table"
6010
  msgstr "Afficher les filtres dans un formulaire au-dessus du tableau"
6011
 
6012
- #: templates/admin/table-settings/table_settings_block.inc.php:724
6013
  msgid "Clear filters button"
6014
  msgstr "Bouton effacer les filtres"
6015
 
6016
- #: templates/admin/table-settings/table_settings_block.inc.php:731
6017
  #: templates/frontend/filter_form.inc.php:32
6018
  msgid "Clear filters"
6019
  msgstr "Effacer les filtres"
6020
 
6021
- #: templates/admin/table-settings/table_settings_block.inc.php:735
6022
  msgid "Enable to show the clear filters button."
6023
  msgstr "Activer pour afficher le bouton effacer les filtres."
6024
 
6025
- #: templates/admin/table-settings/table_settings_block.inc.php:736
6026
  msgid ""
6027
  "If filter in form is enabled, clear button will be rendered after the last "
6028
  "filter."
@@ -6030,7 +6137,7 @@ msgstr ""
6030
  "Si le filtre dans le formulaire est activé, le bouton effacer sera rendu "
6031
  "après le dernier filtre."
6032
 
6033
- #: templates/admin/table-settings/table_settings_block.inc.php:741
6034
  msgid ""
6035
  "Otherwise, clear filter button will be rendered above the table next to "
6036
  "\"Table Tools\" buttons."
@@ -6038,37 +6145,37 @@ msgstr ""
6038
  "Sinon, le bouton effacer filtre sera affiché au-dessus du tableau à côté des "
6039
  "boutons \"Outils du tableau\"."
6040
 
6041
- #: templates/admin/table-settings/table_settings_block.inc.php:753
6042
  msgid "Show clear filters button"
6043
  msgstr "Afficher le bouton effacer les filtres"
6044
 
6045
- #: templates/admin/table-settings/table_settings_block.inc.php:773
6046
  msgid "Allow editing"
6047
  msgstr "Autoriser l’édition"
6048
 
6049
- #: templates/admin/table-settings/table_settings_block.inc.php:781
6050
  #: templates/edit_table.inc.php:180
6051
  msgid "Front-end editing"
6052
  msgstr "Modification interface publique"
6053
 
6054
- #: templates/admin/table-settings/table_settings_block.inc.php:788
6055
  msgid "Allow editing the table from the front-end."
6056
  msgstr "Autoriser l’édition du tableau à partir de l’interface publique."
6057
 
6058
- #: templates/admin/table-settings/table_settings_block.inc.php:796
6059
  msgid "Allow front-end editing"
6060
  msgstr "Autoriser l’édition à partir de l’interface publique"
6061
 
6062
- #: templates/admin/table-settings/table_settings_block.inc.php:804
6063
  msgid "Popover edit block"
6064
  msgstr "Bloc d’édition Popover"
6065
 
6066
- #: templates/admin/table-settings/table_settings_block.inc.php:812
6067
  #: templates/edit_table.inc.php:232
6068
  msgid "Popover tools"
6069
  msgstr "Outils Popover"
6070
 
6071
- #: templates/admin/table-settings/table_settings_block.inc.php:819
6072
  msgid ""
6073
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
6074
  "popover when you click on any row, instead of Table Tools block above the "
@@ -6078,16 +6185,16 @@ msgstr ""
6078
  "s’affichent dans un popover lorsque vous cliquez sur une ligne quelconque, "
6079
  "au lieu du bloc Outils de tableau situé au-dessus du tableau."
6080
 
6081
- #: templates/admin/table-settings/table_settings_block.inc.php:827
6082
  msgid "Editing buttons in a popover"
6083
  msgstr "Modification de boutons dans un popover"
6084
 
6085
- #: templates/admin/table-settings/table_settings_block.inc.php:835
6086
- #: templates/admin/table-settings/table_settings_block.inc.php:843
6087
  msgid "In-line editing"
6088
  msgstr "Édition en ligne"
6089
 
6090
- #: templates/admin/table-settings/table_settings_block.inc.php:850
6091
  msgid ""
6092
  "If this is enabled, front-end users will be able to edit cells by double-"
6093
  "clicking them, not only with the editor dialog."
@@ -6096,32 +6203,32 @@ msgstr ""
6096
  "pourront modifier les cellules en double-cliquant dessus, pas seulement avec "
6097
  "la boîte de dialogue de l’éditeur."
6098
 
6099
- #: templates/admin/table-settings/table_settings_block.inc.php:858
6100
  msgid "Allow in-line editing"
6101
  msgstr "Autoriser l’édition en ligne"
6102
 
6103
- #: templates/admin/table-settings/table_settings_block.inc.php:873
6104
  #: templates/edit_table.inc.php:192
6105
  msgid "MySQL table name for editing"
6106
  msgstr "Nom de la table MySQL pour l’édition"
6107
 
6108
- #: templates/admin/table-settings/table_settings_block.inc.php:875
6109
  msgid ""
6110
  "Name of the MySQL table which will be updated when edited from front-end."
6111
  msgstr ""
6112
  "Nom de la table MySQL qui sera mis à jour lors de l’édition depuis "
6113
  "l’interface publique."
6114
 
6115
- #: templates/admin/table-settings/table_settings_block.inc.php:880
6116
  msgid "MySQL table name"
6117
  msgstr "Nom de la table MySQL"
6118
 
6119
- #: templates/admin/table-settings/table_settings_block.inc.php:889
6120
  #: templates/edit_table.inc.php:203
6121
  msgid "ID column for editing"
6122
  msgstr "Colonne d’identification pour l’édition"
6123
 
6124
- #: templates/admin/table-settings/table_settings_block.inc.php:891
6125
  msgid ""
6126
  "Choose the column values from which will be used as row identifiers. MUST be "
6127
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
@@ -6133,12 +6240,12 @@ msgstr ""
6133
  "ainsi insérer/modifier/supprimer fonctionnent correctement! wpDataTables "
6134
  "devinera la colonne correcte si elle s’appelle \"id\" ou \"ID\" côté MySQL."
6135
 
6136
- #: templates/admin/table-settings/table_settings_block.inc.php:905
6137
  #: templates/edit_table.inc.php:267
6138
  msgid "Editor roles"
6139
  msgstr "Rôles de l’éditeur"
6140
 
6141
- #: templates/admin/table-settings/table_settings_block.inc.php:907
6142
  msgid ""
6143
  "If you want only specific user roles to be able to edit the table, choose in "
6144
  "this dropdown. Leave unchecked to allow editing for everyone."
@@ -6147,39 +6254,39 @@ msgstr ""
6147
  "modifier le tableau, choisissez dans cette liste déroulante. Ne cochez pas "
6148
  "la case pour permettre l’édition à tout le monde."
6149
 
6150
- #: templates/admin/table-settings/table_settings_block.inc.php:912
6151
  msgid "Everyone"
6152
  msgstr "Tout le monde"
6153
 
6154
- #: templates/admin/table-settings/table_settings_block.inc.php:913
6155
  msgid "Administrators"
6156
  msgstr ""
6157
 
6158
- #: templates/admin/table-settings/table_settings_block.inc.php:914
6159
  msgid "Editors"
6160
  msgstr ""
6161
 
6162
- #: templates/admin/table-settings/table_settings_block.inc.php:915
6163
  msgid "Authors"
6164
  msgstr ""
6165
 
6166
- #: templates/admin/table-settings/table_settings_block.inc.php:916
6167
  msgid "Contributors"
6168
  msgstr ""
6169
 
6170
- #: templates/admin/table-settings/table_settings_block.inc.php:917
6171
  msgid "Subscribers"
6172
  msgstr ""
6173
 
6174
- #: templates/admin/table-settings/table_settings_block.inc.php:932
6175
  msgid "Users see and edit only own data"
6176
  msgstr "Les utilisateurs ne voient et ne modifient que leurs propres données"
6177
 
6178
- #: templates/admin/table-settings/table_settings_block.inc.php:940
6179
  msgid "Users see and edit only their own data"
6180
  msgstr "Les utilisateurs ne voient et ne modifient que leurs propres données"
6181
 
6182
- #: templates/admin/table-settings/table_settings_block.inc.php:947
6183
  msgid ""
6184
  "If this is enabled, users will see and edit only the rows that are related "
6185
  "to them or were created by them (associated using the User ID column)."
@@ -6188,16 +6295,16 @@ msgstr ""
6188
  "que les lignes qui leur sont associées ou qui ont été créées par eux "
6189
  "(associées à l’aide de la colonne ID utilisateur)."
6190
 
6191
- #: templates/admin/table-settings/table_settings_block.inc.php:955
6192
  msgid "Limit editing to own data only"
6193
  msgstr "Limiter l’édition à vos propres données uniquement"
6194
 
6195
- #: templates/admin/table-settings/table_settings_block.inc.php:963
6196
  #: templates/edit_table.inc.php:250
6197
  msgid "User ID column"
6198
  msgstr "Colonne ID utilisateur"
6199
 
6200
- #: templates/admin/table-settings/table_settings_block.inc.php:965
6201
  msgid ""
6202
  "Choose the column values from which will be used as User identifiers. "
6203
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
@@ -6208,44 +6315,46 @@ msgstr ""
6208
  "utilisateurs WordPress (wp_users), DOIT être défini comme un entier du côté "
6209
  "MySQL."
6210
 
6211
- #: templates/admin/table-settings/table_settings_block.inc.php:998
6212
  #: templates/edit_table.inc.php:350
6213
  msgid "Table tools"
6214
  msgstr "Outils de table"
6215
 
6216
- #: templates/admin/table-settings/table_settings_block.inc.php:1005
6217
  msgid ""
6218
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6219
  msgstr ""
6220
  "Si cette option est activée, une barre d’outils contenant des outils utiles "
6221
  "sera affichée au-dessus du tableau"
6222
 
6223
- #: templates/admin/table-settings/table_settings_block.inc.php:1013
6224
  msgid "Enable Table Tools"
6225
  msgstr "Activer les outils de tableau"
6226
 
6227
- #: templates/admin/table-settings/table_settings_block.inc.php:1021
6228
  msgid "Buttons"
6229
  msgstr "Boutons"
6230
 
6231
- #: templates/admin/table-settings/table_settings_block.inc.php:1023
6232
  msgid "Choose which buttons to show in the Table Tools block."
6233
  msgstr "Choisissez les boutons à afficher dans le bloc Outils de tableau."
6234
 
6235
- #: templates/admin/table-settings/table_settings_block.inc.php:1029
6236
  msgid "Columns visibility"
6237
  msgstr "Visibilité des colonnes"
6238
 
6239
- #: templates/admin/table-settings/table_settings_block.inc.php:1051
6240
  msgid ""
6241
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6242
  "that will be replaced with some actual values at the execution time; usually "
6243
- "this is used for MySQL queries."
 
 
6244
  msgstr ""
6245
 
6246
- #: templates/admin/table-settings/table_settings_block.inc.php:1063
6247
- #: templates/admin/table-settings/table_settings_block.inc.php:1078
6248
- #: templates/admin/table-settings/table_settings_block.inc.php:1093
6249
  msgid ""
6250
  "This placeholder will be replaced with any value that you will provide in a "
6251
  "shortcode. Provide a default value here that will be used for table "
@@ -6256,16 +6365,23 @@ msgstr ""
6256
  "génération de tableaux et quand une différente valeur n’est pas définie dans "
6257
  "le shortcode."
6258
 
6259
- #: templates/admin/table-settings/table_settings_block.inc.php:1083
6260
- #: templates/admin/table-settings/table_settings_block.inc.php:1098
6261
- #: templates/admin/table-settings/table_settings_block.inc.php:1120
6262
- #: templates/admin/table-settings/table_settings_block.inc.php:1138
6263
- #: templates/admin/table-settings/table_settings_block.inc.php:1155
6264
- #: templates/admin/table-settings/table_settings_block.inc.php:1176
 
 
 
 
 
 
 
6265
  msgid "Default for table generation"
6266
  msgstr "Par défaut pour la génération de table"
6267
 
6268
- #: templates/admin/table-settings/table_settings_block.inc.php:1114
6269
  msgid ""
6270
  "This placeholder will be replaced with the ID of currently logged in user. "
6271
  "Provide a value here to be used for table generation"
@@ -6273,7 +6389,7 @@ msgstr ""
6273
  "Ce texte indicatif sera remplacé par l’ID de l’utilisateur actuellement "
6274
  "connecté. Indiquez ici une valeur à utiliser pour la génération de table"
6275
 
6276
- #: templates/admin/table-settings/table_settings_block.inc.php:1130
6277
  msgid ""
6278
  "This placeholder will be replaced with the login of currently logged in "
6279
  "user. Provide a value here to be used for table generation"
@@ -6281,15 +6397,16 @@ msgstr ""
6281
  "Ce texte indicatif sera remplacé par le login de l’utilisateur actuellement "
6282
  "connecté. Indiquez ici une valeur à utiliser pour la génération de table"
6283
 
6284
- #: templates/admin/table-settings/table_settings_block.inc.php:1148
6285
  msgid ""
6286
- "This placeholder will be replaced with the current prefix of WordPress "
6287
- "database. Provide a value here to be used for table generation"
6288
  msgstr ""
6289
- "Ce texte indicatif sera remplacé par le préfixe actuel de la base de données "
6290
- "WordPress. Indiquez ici une valeur à utiliser pour la génération de table"
 
6291
 
6292
- #: templates/admin/table-settings/table_settings_block.inc.php:1171
6293
  msgid ""
6294
  "This placeholder will be replaced with the ID of current post. Provide a "
6295
  "value here to be used for table generation"
@@ -6297,6 +6414,72 @@ msgstr ""
6297
  "Ce texte indicatif sera remplacé par l’ID du message en cours. Indiquez ici "
6298
  "une valeur à utiliser pour la génération de table"
6299
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6300
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6301
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6302
  msgid "Go to Dashboard"
@@ -9005,39 +9188,6 @@ msgstr ""
9005
  #~ "partir de XML, JSON, Excel, CSV, Google Spreadsheet et les tableaux PHP "
9006
  #~ "Serialized."
9007
 
9008
- #~ msgid ""
9009
- #~ "This placeholder will be replaced with the Email of currently logged in "
9010
- #~ "user. Provide a value here to be used for table generation"
9011
- #~ msgstr ""
9012
- #~ "Ce conteneur sera remplacé par l'adresse électronique de l'utilisateur "
9013
- #~ "actuellement connecté. Indiquez ici une valeur à utiliser pour la "
9014
- #~ "création du tableau"
9015
-
9016
- #~ msgid ""
9017
- #~ "This placeholder will be replaced with the First Name of currently logged "
9018
- #~ "in user. Provide a value here to be used for table generation"
9019
- #~ msgstr ""
9020
- #~ "Cet espace réservé sera remplacé par le Prénom de l’utilisateur "
9021
- #~ "actuellement connecté. Indiquez ici une valeur à utiliser pour la "
9022
- #~ "génération du tableau"
9023
-
9024
- #~ msgid ""
9025
- #~ "This placeholder will be replaced with the Last Name of currently logged "
9026
- #~ "in user. Provide a value here to be used for table generation"
9027
- #~ msgstr ""
9028
- #~ "Cet espace réservé sera remplacé par le Nom de famille de l’utilisateur "
9029
- #~ "actuellement connecté. Indiquez ici une valeur à utiliser pour la "
9030
- #~ "génération du tableau"
9031
-
9032
- #~ msgid "This placeholder will be replaced with current date."
9033
- #~ msgstr "Ce conteneur sera remplacé par la date actuelle."
9034
-
9035
- #~ msgid "This placeholder will be replaced with current datetime."
9036
- #~ msgstr "Ce conteneur sera remplacé par la date et l'heure actuelles."
9037
-
9038
- #~ msgid "This placeholder will be replaced with current time."
9039
- #~ msgstr "Ce conteneur sera remplacé par l'heure actuelle."
9040
-
9041
  #~ msgid ""
9042
  #~ "wpDataTables is the best-selling WordPress table plugin which makes your "
9043
  #~ "work with tables, charts and data management easy. 30,000+ companies and "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
+ "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: fr_FR\n"
96
  msgid "Go Premium"
97
  msgstr ""
98
 
99
+ #: controllers/wdt_admin.php:517 controllers/wdt_admin.php:566
100
+ #: controllers/wdt_admin.php:609 controllers/wdt_admin.php:630
101
+ #: controllers/wdt_admin.php:677 controllers/wdt_admin.php:703
102
+ #: controllers/wdt_admin.php:722 controllers/wdt_admin.php:742
103
+ #: controllers/wdt_admin.php:761 controllers/wdt_admin.php:781
104
+ #: controllers/wdt_admin.php:801 controllers/wdt_admin.php:821
105
+ #: controllers/wdt_admin.php:840
106
  msgid "You do not have sufficient permissions to access this page."
107
  msgstr ""
108
  "Vous ne disposez pas des autorisations suffisantes pour accéder à cette page."
218
  "des valeurs pour les espaces réservés et également pour le nom de fichier "
219
  "d’exportation."
220
 
221
+ #: source/class.wdtbrowsechartstable.php:29 source/class.wdtbrowsetable.php:30
222
+ msgid "ID"
223
+ msgstr ""
224
+
225
+ #: source/class.wdtbrowsechartstable.php:30 source/class.wdtbrowsetable.php:31
226
+ #: templates/admin/chart_wizard/steps/step4.inc.php:17
227
+ msgid "Title"
228
+ msgstr "Titre"
229
+
230
+ #: source/class.wdtbrowsechartstable.php:31
231
+ msgid "Render Engine"
232
+ msgstr ""
233
+
234
+ #: source/class.wdtbrowsechartstable.php:32
235
+ msgid "Chart Type"
236
+ msgstr ""
237
+
238
+ #: source/class.wdtbrowsechartstable.php:33 source/class.wdtbrowsetable.php:33
239
+ msgid "Shortcode"
240
+ msgstr ""
241
+
242
  #: source/class.wdtbrowsechartstable.php:141
243
  #: source/class.wdtbrowsetable.php:168
244
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
261
  msgstr "Configurer"
262
 
263
  #: source/class.wdtbrowsechartstable.php:162
264
+ #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
265
  #: templates/admin/browse/bulk_actions.inc.php:14
266
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
267
  msgid "Delete"
343
  msgid "No wpDataCharts in the system yet."
344
  msgstr "Aucun wpDataCharts dans le système pour le moment."
345
 
346
+ #: source/class.wdtbrowsetable.php:32
347
+ #: templates/admin/table-settings/add_column_modal.inc.php:47
348
+ msgid "Type"
349
+ msgstr "Type"
350
+
351
  #: source/class.wdtbrowsetable.php:231
352
  msgid "MySQL"
353
  msgstr "MySQL"
356
  msgid "Manual"
357
  msgstr "Manuel"
358
 
359
+ #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2188
360
+ #: source/class.wpdatatable.php:2258
361
+ #: templates/admin/table-settings/table_settings_block.inc.php:1050
362
  msgid "Excel"
363
  msgstr "Excel"
364
 
365
+ #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2197
366
+ #: source/class.wpdatatable.php:2268
367
+ #: templates/admin/table-settings/table_settings_block.inc.php:1051
368
  msgid "CSV"
369
  msgstr "CSV"
370
 
377
  msgstr "JSON"
378
 
379
  #: source/class.wdtbrowsetable.php:249
380
+ #: templates/admin/table-settings/table_settings_block.inc.php:120
381
  #: templates/edit_table.inc.php:91
382
  msgid "Serialized PHP array"
383
  msgstr "Serialized PHP array"
469
  msgid "Attachment"
470
  msgstr "Attachement"
471
 
472
+ #: source/class.wdttools.php:78
473
  msgid ""
474
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
475
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
479
  "probablement pas publiée correctement. <br/> Vous pouvez la publier en "
480
  "allant sur <b> Fichier -> Publier sur le Web</b> "
481
 
482
+ #: source/class.wdttools.php:206
483
  msgid "Back to date"
484
  msgstr "Retourner à la date"
485
 
486
+ #: source/class.wdttools.php:207
487
  msgid "Browse"
488
  msgstr "Naviguer"
489
 
490
+ #: source/class.wdttools.php:208 source/class.wdttools.php:330
491
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
492
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
493
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
505
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
506
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
507
  #: templates/admin/table-settings/table_preview_block.inc.php:86
508
+ #: templates/admin/table-settings/table_settings_block.inc.php:41
509
  #: templates/common/delete_modal.inc.php:39
510
  msgid "Cancel"
511
  msgstr "Annuler"
512
 
513
+ #: source/class.wdttools.php:209
514
  msgid " field cannot be empty!"
515
  msgstr " le champ ne peut pas être vide!"
516
 
517
+ #: source/class.wdttools.php:210
518
  msgid "Use selected file"
519
  msgstr "Utiliser le fichier sélectionné"
520
 
521
+ #: source/class.wdttools.php:211
522
  msgid "Choose file"
523
  msgstr "Choisir le fichier"
524
 
525
+ #: source/class.wdttools.php:212 templates/admin/common/error_modal.inc.php:23
526
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
527
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
528
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
530
  msgid "Close"
531
  msgstr "Fermer"
532
 
533
+ #: source/class.wdttools.php:213
534
  msgid "Column has been added!"
535
  msgstr "La colonne a été ajoutée!"
536
 
537
+ #: source/class.wdttools.php:214
538
  msgid "Column header cannot be empty!"
539
  msgstr "L’en-tête de colonne ne peut pas être vide!"
540
 
541
+ #: source/class.wdttools.php:215
542
  msgid "Please confirm column deletion!"
543
  msgstr "Veuillez confirmer la suppression de la colonne!"
544
 
545
+ #: source/class.wdttools.php:216
546
  msgid "Column has been removed!"
547
  msgstr "La colonne a été supprimée!"
548
 
549
+ #: source/class.wdttools.php:217
550
  msgid "Please select columns that you want to use in table"
551
  msgstr ""
552
  "Veuillez sélectionner les colonnes que vous souhaitez utiliser dans le "
553
  "tableau"
554
 
555
+ #: source/class.wdttools.php:218 source/class.wpdatatable.php:2206
556
+ #: source/class.wpdatatable.php:2278
557
+ #: templates/admin/table-settings/table_settings_block.inc.php:1052
558
  msgid "Copy"
559
  msgstr "Copier"
560
 
561
+ #: source/class.wdttools.php:219
562
  msgid "There was an error trying to insert a new row!"
563
  msgstr ""
564
  "Une erreur s’est produite lors de la tentative d’insertion d’une nouvelle "
565
  "ligne!"
566
 
567
+ #: source/class.wdttools.php:220
568
  msgid "Data has been saved!"
569
  msgstr "Les données ont été enregistrées!"
570
 
571
+ #: source/class.wdttools.php:221
572
  msgid "detach"
573
  msgstr "détacher"
574
 
575
+ #: source/class.wdttools.php:223
576
  msgid "Delete selected"
577
  msgstr "Supprimer sélectionné"
578
 
579
+ #: source/class.wdttools.php:224 templates/settings.inc.php:553
580
  #: templates/settings.inc.php:627
581
  msgid "Error!"
582
  msgstr "Erreur!"
583
 
584
+ #: source/class.wdttools.php:225
585
  msgid "Please upload or choose a file from Media Library!"
586
  msgstr ""
587
  "Veuillez télécharger ou choisir un fichier de la bibliothèque multimédia!"
588
 
589
+ #: source/class.wdttools.php:226
590
  msgid "From"
591
  msgstr "De"
592
 
593
+ #: source/class.wdttools.php:227
594
  msgid "Please provide a valid e-mail address for field"
595
  msgstr "Veuillez fournir une adresse e-mail valide pour le champ"
596
 
597
+ #: source/class.wdttools.php:228
598
  msgid "Please provide a valid URL link for field"
599
  msgstr "Veuillez fournir un lien URL valide pour le champ"
600
 
601
+ #: source/class.wdttools.php:229
602
  msgid "You have entered invalid value. Press ESC to cancel."
603
  msgstr "Vous avez entré une valeur non valide. Appuyez sur Echap pour annuler."
604
 
605
+ #: source/class.wdttools.php:230 source/class.wdttools.php:260
606
  msgid "Show _MENU_ entries"
607
  msgstr "Afficher _MENU_ les entrées"
608
 
609
+ #: source/class.wdttools.php:231
610
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
611
  msgid "Merge"
612
  msgstr "Fusionner"
613
 
614
+ #: source/class.wdttools.php:232
615
  msgid "New column"
616
  msgstr "Nouvelle colonne"
617
 
618
+ #: source/class.wdttools.php:233
619
  msgid "Number of columns can not be empty or 0"
620
  msgstr ""
621
 
622
+ #: source/class.wdttools.php:234
623
  msgid "Number of rows can not be empty or 0"
624
  msgstr ""
625
 
626
+ #: source/class.wdttools.php:236
627
  msgid ": activate to sort column ascending"
628
  msgstr ": activer pour trier la colonne en ordre croissant"
629
 
630
+ #: source/class.wdttools.php:237
631
  msgid ": activate to sort column descending"
632
  msgstr ": activer pour trier la colonne en ordre décroissant"
633
 
634
+ #: source/class.wdttools.php:239
635
  msgid "Ok"
636
  msgstr "Ok"
637
 
638
+ #: source/class.wdttools.php:241
639
  msgid "First"
640
  msgstr "Premier"
641
 
642
+ #: source/class.wdttools.php:242
643
  msgid "Last"
644
  msgstr "Dernier"
645
 
646
+ #: source/class.wdttools.php:243
647
  msgid "Next"
648
  msgstr "Suivant"
649
 
650
+ #: source/class.wdttools.php:244
651
  msgid "Previous"
652
  msgstr "Précédent"
653
 
654
+ #: source/class.wdttools.php:246
655
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
656
  msgid "Replace"
657
  msgstr "Remplacer"
658
 
659
+ #: source/class.wdttools.php:247
660
  msgid "Row has been deleted!"
661
  msgstr "La ligne a été supprimée!"
662
 
663
+ #: source/class.wdttools.php:248
664
+ msgid "Save chart"
665
+ msgstr ""
666
+
667
+ #: source/class.wdttools.php:249
668
  msgid "Select a file to use in table"
669
  msgstr "Sélectionnez un fichier à utiliser dans le tableau"
670
 
671
+ #: source/class.wdttools.php:250
672
  msgid "Select an Excel or CSV file"
673
  msgstr "Sélectionnez un fichier Excel ou CSV"
674
 
675
+ #: source/class.wdttools.php:251
676
  msgid "No data available in table"
677
  msgstr "Aucune donnée disponible dans le tableau"
678
 
679
+ #: source/class.wdttools.php:252
680
  msgid "Plugin settings saved successfully"
681
  msgstr "Paramètres de l’extension enregistrés avec succès"
682
 
683
+ #: source/class.wdttools.php:253
684
  msgid ""
685
  "Unable to save settings of plugin. Please try again or contact us over "
686
  "Support page."
687
  msgstr ""
688
 
689
+ #: source/class.wdttools.php:254
690
  msgid "Shortcode has been copied to the clipboard."
691
  msgstr "Le shortcode a été copié dans le presse-papier."
692
 
693
+ #: source/class.wdttools.php:255
694
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
695
  msgstr "Afficher _START_ à _END_ des _TOTAL_ entrées"
696
 
697
+ #: source/class.wdttools.php:256
698
  msgid "Showing 0 to 0 of 0 entries"
699
  msgstr "Afficher 0 à 0 de 0 entrées"
700
 
701
+ #: source/class.wdttools.php:257
702
  msgid "(filtered from _MAX_ total entries)"
703
  msgstr "(Filtré de _MAX_ entrées total)"
704
 
705
+ #: source/class.wdttools.php:259
706
  msgid ","
707
  msgstr ","
708
 
709
+ #: source/class.wdttools.php:261
710
  msgid "Loading..."
711
  msgstr "Chargement..."
712
 
713
+ #: source/class.wdttools.php:262
714
  msgid "Processing..."
715
  msgstr "En traitement..."
716
 
717
+ #: source/class.wdttools.php:263
718
  msgid "SQL error"
719
  msgstr "SQL erreur"
720
 
721
+ #: source/class.wdttools.php:264
722
  msgid "Search: "
723
  msgstr "Recherche: "
724
 
725
+ #: source/class.wdttools.php:265 templates/settings.inc.php:559
726
  #: templates/settings.inc.php:625
727
  msgid "Success!"
728
  msgstr "Succès!"
729
 
730
+ #: source/class.wdttools.php:266
731
  msgid "No matching records found"
732
  msgstr "Aucun enregistrements correspondants trouvés"
733
 
734
+ #: source/class.wdttools.php:267
735
  msgid ""
736
  "System info data has been copied to the clipboard. You can now paste it in "
737
  "file or in support topic."
738
  msgstr ""
739
 
740
+ #: source/class.wdttools.php:268
741
  msgid "Table saved successfully!"
742
  msgstr "Tableau enregistré avec succès!"
743
 
744
+ #: source/class.wdttools.php:269
745
  msgid "To"
746
  msgstr "À"
747
 
748
+ #: source/class.wdttools.php:305
749
  #: templates/admin/common/premium_modal.inc.php:17
750
+ #: templates/admin/table-settings/table_settings_block.inc.php:1072
751
+ #: templates/admin/table-settings/table_settings_block.inc.php:1348
752
  msgid "This is a premium feature"
753
  msgstr ""
754
 
755
+ #: source/class.wdttools.php:306
756
  #: templates/admin/common/premium_modal.inc.php:26
757
+ #: templates/admin/table-settings/table_settings_block.inc.php:1073
758
+ #: templates/admin/table-settings/table_settings_block.inc.php:1349
759
  msgid "This feature is available only in premium version of wpDataTables"
760
  msgstr ""
761
 
762
+ #: source/class.wdttools.php:307
763
  #: templates/admin/getting-started/getting_started.inc.php:133
764
  #: templates/admin/getting-started/getting_started.inc.php:145
765
  #: templates/admin/getting-started/getting_started.inc.php:157
766
  #: templates/admin/getting-started/getting_started.inc.php:169
767
+ #: templates/admin/table-settings/table_settings_block.inc.php:1077
768
+ #: templates/admin/table-settings/table_settings_block.inc.php:1353
769
  msgid "Compare and View Pricing"
770
  msgstr ""
771
 
772
+ #: source/class.wdttools.php:326
773
  msgid "Field cannot be empty!"
774
  msgstr ""
775
 
776
+ #: source/class.wdttools.php:327
777
  msgid "Please choose chart type."
778
  msgstr ""
779
 
780
+ #: source/class.wdttools.php:328
781
  msgid "Please select wpDataTable from dropdown."
782
  msgstr ""
783
 
784
+ #: source/class.wdttools.php:329
785
  msgid "Columns field cannot be empty"
786
  msgstr ""
787
 
788
+ #: source/class.wdttools.php:331
789
  msgid ""
790
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
791
  "clicking on Cancel button."
792
  msgstr ""
793
 
794
+ #: source/class.wdttools.php:332
795
  msgid "Finish Tutorial"
796
  msgstr "Terminer le tutoriel"
797
 
798
+ #: source/class.wdttools.php:333
799
  msgid "Continue"
800
  msgstr "Continuer"
801
 
802
+ #: source/class.wdttools.php:334
803
  msgid "Start"
804
  msgstr "Démarrer"
805
 
806
+ #: source/class.wdttools.php:335
807
  msgid "Skip Tutorial"
808
  msgstr "Passer le tutoriel"
809
 
810
+ #: source/class.wdttools.php:338 source/class.wdttools.php:404
811
+ #: source/class.wdttools.php:446
812
  msgid "Welcome to the tutorial!"
813
  msgstr "Bienvenue dans le tutoriel !"
814
 
815
+ #: source/class.wdttools.php:339 source/class.wdttools.php:405
816
+ #: source/class.wdttools.php:447
817
  msgid "Hello "
818
  msgstr "Bonjour "
819
 
820
+ #: source/class.wdttools.php:339
821
  msgid ""
822
  ", in this tutorial, we will show you how to create a simple table from "
823
  "scratch by choosing a custom number of columns and rows. How to customize "
824
  "each cell, merge cells and a lot more."
825
  msgstr ""
826
 
827
+ #: source/class.wdttools.php:342
828
  msgid " Let's create a new wpDataTable from scratch!"
829
  msgstr ""
830
 
831
+ #: source/class.wdttools.php:343 source/class.wdttools.php:409
832
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
833
  msgstr ""
834
  "Cliquez sur \"Créer un tableau\" pour accéder à l'assistant de tableau "
835
  "wpDataTables."
836
 
837
+ #: source/class.wdttools.php:346
838
  msgid "Choose this option"
839
  msgstr "Choisissez cette option"
840
 
841
+ #: source/class.wdttools.php:347
842
  msgid "Please select 'Create a simple table from scratch'."
843
  msgstr ""
844
 
845
+ #: source/class.wdttools.php:350 source/class.wdttools.php:416
846
  msgid "Click Next"
847
  msgstr "Cliquez Suivant"
848
 
849
+ #: source/class.wdttools.php:351 source/class.wdttools.php:417
850
  msgid "Please click the 'Next' button to continue."
851
  msgstr "Veuillez cliquer sur le bouton \"Suivant\" pour continuer."
852
 
853
+ #: source/class.wdttools.php:354
854
  msgid "Welcome to the Simple table wizard!"
855
  msgstr ""
856
 
857
+ #: source/class.wdttools.php:355
858
  msgid "Please click 'Continue' button to move on."
859
  msgstr ""
860
 
861
+ #: source/class.wdttools.php:358
862
  msgid "Choose a name for your table"
863
  msgstr "Choisissez un nom pour votre tableau"
864
 
865
+ #: source/class.wdttools.php:359
866
  msgid "After inserting table name, click 'Continue' to move on."
867
  msgstr ""
868
 
869
+ #: source/class.wdttools.php:362
870
  msgid "Choose the number of columns for your table"
871
  msgstr ""
872
 
873
+ #: source/class.wdttools.php:363
874
  msgid ""
875
  "Please choose how many columns it will have. Remember that you can always "
876
  "add or reduce the number of columns later. Click 'Continue' when you finish."
877
  msgstr ""
878
 
879
+ #: source/class.wdttools.php:366
880
  msgid "Choose the number of rows for your table."
881
  msgstr ""
882
 
883
+ #: source/class.wdttools.php:367
884
  msgid ""
885
  "Please choose how many rows it will have. Remember that you can always add "
886
  "or reduce the number of rows later. Click 'Continue' when you finish."
887
  msgstr ""
888
 
889
+ #: source/class.wdttools.php:370
890
  msgid "Click on the 'Generate Table' button"
891
  msgstr ""
892
 
893
+ #: source/class.wdttools.php:371
894
  msgid "When you click on the button, the empty table will be ready for you. "
895
  msgstr ""
896
 
897
+ #: source/class.wdttools.php:374
898
  msgid "We are generating the table..."
899
  msgstr ""
900
 
901
+ #: source/class.wdttools.php:375
902
  msgid "Please, when you see the table, click 'Continue' to move on."
903
  msgstr ""
904
 
905
+ #: source/class.wdttools.php:378
906
  msgid ""
907
  "Nice job! You just configured your table and it is ready to fill it with "
908
  "data."
909
  msgstr ""
910
 
911
+ #: source/class.wdttools.php:379
912
  msgid ""
913
  "Now we will guide you on how to insert data and check table layout throw "
914
  "Simple table editor, table toolbar and table preview. Please click "
915
  "'Continue' to move on."
916
  msgstr ""
917
 
918
+ #: source/class.wdttools.php:382
919
  msgid "This is Simple table editor"
920
  msgstr ""
921
 
922
+ #: source/class.wdttools.php:383
923
  msgid ""
924
  "Here you can populate your table with data. <br><br>You can move around the "
925
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
928
  "line of the row header. Click 'Continue' to move on."
929
  msgstr ""
930
 
931
+ #: source/class.wdttools.php:386
932
  msgid "Check out the Simple table toolbar"
933
  msgstr ""
934
 
935
+ #: source/class.wdttools.php:387
936
  msgid ""
937
  "Here you can style and insert custom data for each cell or range of cells. "
938
  "You can add or delete columns and rows, merge cells, customize sections by "
940
  "ratings or custom HTML code."
941
  msgstr ""
942
 
943
+ #: source/class.wdttools.php:390
944
  msgid "Responsive table views"
945
  msgstr ""
946
 
947
+ #: source/class.wdttools.php:391
948
  msgid ""
949
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
950
  "tab that you need, so you can make sure your table looks excellent across "
951
  "all devices. "
952
  msgstr ""
953
 
954
+ #: source/class.wdttools.php:394
955
  msgid "Real-time preview"
956
  msgstr ""
957
 
958
+ #: source/class.wdttools.php:395
959
  msgid ""
960
  "Here you will see how your table will look like on the page. Please click "
961
  "'Continue' to move on."
962
  msgstr ""
963
 
964
+ #: source/class.wdttools.php:398
965
  msgid "Congrats! Your table is ready."
966
  msgstr ""
967
 
968
+ #: source/class.wdttools.php:399
969
  msgid ""
970
  "Now you can copy the shortcode for this table, and check out how it looks on "
971
  "your website when you paste it to a post or page. You can always come back "
972
  "and edit the table as you like."
973
  msgstr ""
974
 
975
+ #: source/class.wdttools.php:405
976
  msgid ""
977
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
978
  "existing data source. \"Linked\" in this context means that if you create a "
987
  "modifications des valeurs du tableau sont instantanément reflétées dans le "
988
  "tableau."
989
 
990
+ #: source/class.wdttools.php:408
991
  msgid "Let's create a new wpDataTable!"
992
  msgstr "Créons un nouveau wpDataTable !"
993
 
994
+ #: source/class.wdttools.php:412
995
  msgid "Choose this option."
996
  msgstr "Choisissez cette option."
997
 
998
+ #: source/class.wdttools.php:413
999
  msgid "Please select 'Create a table linked to an existing data source'."
1000
  msgstr ""
1001
  "Veuillez sélectionner \"Créer un tableau lié à une source de données "
1002
  "existante\"."
1003
 
1004
+ #: source/class.wdttools.php:420
1005
+ #: templates/admin/table-settings/table_settings_block.inc.php:101
1006
  msgid "Input data source type"
1007
  msgstr "Type de source de données d’entrée"
1008
 
1009
+ #: source/class.wdttools.php:421
1010
  msgid "Please select a data source type that you need."
1011
  msgstr ""
1012
  "Veuillez sélectionner le type de source de données dont vous avez besoin."
1013
 
1014
+ #: source/class.wdttools.php:424
1015
  msgid "Select Data source type"
1016
  msgstr "Sélectionnez le type de source de données"
1017
 
1018
+ #: source/class.wdttools.php:425
1019
  msgid ""
1020
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1021
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1022
  "are available in Premium version)"
1023
  msgstr ""
1024
 
1025
+ #: source/class.wdttools.php:428
1026
+ #: templates/admin/table-settings/table_settings_block.inc.php:131
1027
  msgid "Input file path or URL"
1028
  msgstr "Chemin d’accès du fichier d’entrée ou URL"
1029
 
1030
+ #: source/class.wdttools.php:429
1031
  msgid ""
1032
  "Upload your file or provide the full URL here. When you finish click "
1033
  "'Continue' button."
1035
  "Téléchargez votre fichier ou fournissez l'URL complète ici. Lorsque vous "
1036
  "avez terminé, cliquez sur le bouton \"Continuer\"."
1037
 
1038
+ #: source/class.wdttools.php:432
1039
  msgid "Click Save Changes"
1040
  msgstr "Cliquez sur Enregistrer les modifications"
1041
 
1042
+ #: source/class.wdttools.php:433
1043
  msgid ""
1044
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1045
  "get an error message after button click and you are not able to solve it, "
1054
  "données que vous utilisez pour créer ce tableau, copiez également le message "
1055
  "d'erreur et cliquez sur Passer le tutoriel."
1056
 
1057
+ #: source/class.wdttools.php:436
1058
  msgid "The table is creating..."
1059
  msgstr "The table is creating..."
1060
 
1061
+ #: source/class.wdttools.php:437
1062
  msgid ""
1063
  "Now the table is creating. Wait until you see it in the background and then "
1064
  "click 'Continue'."
1066
  "Maintenant, la table est en train de se créer. Attendez jusqu'à ce que vous "
1067
  "le voyiez en arrière-plan, puis cliquez sur \"Continuer\"."
1068
 
1069
+ #: source/class.wdttools.php:440
1070
  msgid "Nice job! You just created your first wpDataTable!"
1071
  msgstr "Bon travail ! Vous venez de créer votre premier wpDataTable !"
1072
 
1073
+ #: source/class.wdttools.php:441
1074
  msgid ""
1075
  "Now you can copy the shortcode for this table, and check out how it looks on "
1076
  "your website when you paste it to a post or page."
1078
  "Vous pouvez maintenant copier le raccourci de ce tableau et voir à quoi il "
1079
  "ressemble sur votre site lorsque vous le collez sur un article ou une page."
1080
 
1081
+ #: source/class.wdttools.php:447
1082
  msgid ""
1083
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1084
  "plugin."
1086
  ", dans ce tutoriel, nous vous montrerons comment créer un graphique dans "
1087
  "l'extension wpDataTables."
1088
 
1089
+ #: source/class.wdttools.php:450
1090
  msgid "Let's create a new wpDataTables Chart!"
1091
  msgstr "Créons un nouveau graphique wpDataTables !"
1092
 
1093
+ #: source/class.wdttools.php:451
1094
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1095
  msgstr ""
1096
  "Cliquez sur \"Créer un graphique\" pour accéder à l'assistant graphique de "
1097
  "wpDataTables."
1098
 
1099
+ #: source/class.wdttools.php:454
1100
  msgid "Welcome to the Chart Wizard!"
1101
  msgstr "Bienvenue à l'assistant graphique !"
1102
 
1103
+ #: source/class.wdttools.php:455
1104
  msgid ""
1105
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1106
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1109
  "l'assistant graphique wpDataTables section par section.<br><br> Cliquez sur "
1110
  "le bouton \"Continuer\" pour poursuivre."
1111
 
1112
+ #: source/class.wdttools.php:458
1113
  msgid "Follow the steps in the Chart Wizard"
1114
  msgstr "Suivez les étapes de l'assistant graphique"
1115
 
1116
+ #: source/class.wdttools.php:459
1117
  msgid ""
1118
  "By following these steps, you will finish building your chart in the Chart "
1119
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1123
  "dans l'Assistant graphique. L'étape en cours sera toujours surlignée en "
1124
  "bleu. Cliquez sur le bouton \"Continuer\" pour poursuivre."
1125
 
1126
+ #: source/class.wdttools.php:462
1127
  msgid "Choose a name for your Chart"
1128
  msgstr "Choisissez un nom pour votre graphique"
1129
 
1130
+ #: source/class.wdttools.php:463
1131
  msgid "Click 'Continue' button when you’re ready to move forward."
1132
  msgstr ""
1133
  "Cliquez sur le bouton \"Continuer\" lorsque vous êtes prêt à poursuivre."
1134
 
1135
+ #: source/class.wdttools.php:466
1136
  msgid "In wpDataTables you can find several charts render engines."
1137
  msgstr ""
1138
  "Dans wpDataTables, vous pouvez trouver plusieurs moteurs de rendu de "
1139
  "graphiques."
1140
 
1141
+ #: source/class.wdttools.php:467
1142
  msgid ""
1143
  "Click on the dropdown, and you will see several options that you can choose "
1144
  "from.(Google charts are only available) <br><br>To continue, click on the "
1145
  "dropdown."
1146
  msgstr ""
1147
 
1148
+ #: source/class.wdttools.php:470
1149
  msgid "Choose Google chart engine."
1150
  msgstr ""
1151
 
1152
+ #: source/class.wdttools.php:471
1153
  msgid ""
1154
  "By clicking on Google chart options, you will choose the engine that will "
1155
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1156
  "to move forward."
1157
  msgstr ""
1158
 
1159
+ #: source/class.wdttools.php:474
1160
  msgid "Different charts types. "
1161
  msgstr ""
1162
 
1163
+ #: source/class.wdttools.php:475
1164
  msgid ""
1165
  "Here you can choose a chart type. Please, click on the chart type that you "
1166
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1170
  "de graphique que vous préférez.<br><br> Lorsque vous avez terminé, veuillez "
1171
  "cliquer sur le bouton \"Continuer\" pour poursuivre."
1172
 
1173
+ #: source/class.wdttools.php:478
1174
  msgid "The first step is finished!"
1175
  msgstr "La première étape est terminée !"
1176
 
1177
+ #: source/class.wdttools.php:479
1178
  msgid "Let's move on. Please, click 'Next' to continue."
1179
  msgstr ""
1180
  "Passons à autre chose. Veuillez cliquer sur \"Suivant\" pour continuer."
1181
 
1182
+ #: source/class.wdttools.php:482
1183
  msgid ""
1184
  "Now you need to choose a wpDataTable based on which we will build a chart "
1185
  "for you"
1187
  "Vous devez maintenant choisir une wpDataTable sur laquelle nous allons "
1188
  "construire un graphique pour vous"
1189
 
1190
+ #: source/class.wdttools.php:483
1191
  msgid ""
1192
  "Click on the dropdown, and all your tables will be listed. The columns of "
1193
  "the table that you choose will be used for creating the chart.<br><br>If you "
1200
  "le bouton \"Sauter le tutoriel\" et créez un tableau de données qui "
1201
  "contiendra les données à visualiser en premier."
1202
 
1203
+ #: source/class.wdttools.php:486
1204
  msgid "Pick your wpDataTable"
1205
  msgstr "Choisissez votre wpDataTable"
1206
 
1207
+ #: source/class.wdttools.php:487
1208
  msgid ""
1209
  "Pick a wpDataTable from which you want to render a chart and when you "
1210
  "finish, please click 'Continue' to move on."
1213
  "graphique et lorsque vous avez terminé, cliquez sur \"Continuer\" pour "
1214
  "poursuivre."
1215
 
1216
+ #: source/class.wdttools.php:490
1217
  msgid "The second step is finished!"
1218
  msgstr "La deuxième étape est terminée !"
1219
 
1220
+ #: source/class.wdttools.php:491
1221
  msgid ""
1222
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1223
  msgstr ""
1224
  "Voyons ce qui va suivre. <br><br> S'il vous plaît, cliquez sur \"Suivant\" "
1225
  "pour continuer."
1226
 
1227
+ #: source/class.wdttools.php:494
1228
  msgid "Just a heads up!"
1229
  msgstr "Juste un avertissement !"
1230
 
1231
+ #: source/class.wdttools.php:495
1232
  msgid ""
1233
  "Here you will choose from which columns you will create a chart.<br><br> "
1234
  "Please click 'Continue' button to move forward."
1237
  "graphique.<br><br> Veuillez cliquer sur le bouton \"Continuer\" pour "
1238
  "poursuivre."
1239
 
1240
+ #: source/class.wdttools.php:498
1241
  msgid "Meet the wpDataTable Column Blocks"
1242
  msgstr "Découvrez les blocs de colonnes du wpDataTable"
1243
 
1244
+ #: source/class.wdttools.php:499
1245
  msgid ""
1246
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1247
  "or click on the arrow to move the desired column to the 'Columns used in the "
1248
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1249
  msgstr ""
1250
 
1251
+ #: source/class.wdttools.php:502
1252
  msgid "Well done!"
1253
  msgstr "Bravo !"
1254
 
1255
+ #: source/class.wdttools.php:503
1256
  msgid "Just two more steps to go. Please click 'Next' to continue."
1257
  msgstr ""
1258
  "Il ne reste plus que deux pas à faire. Veuillez cliquer sur \"Suivant\" pour "
1259
  "continuer."
1260
 
1261
+ #: source/class.wdttools.php:506
1262
  msgid "Chart settings and chart preview."
1263
  msgstr "Paramètres des graphiques et prévisualisation des graphiques."
1264
 
1265
+ #: source/class.wdttools.php:507
1266
  msgid ""
1267
  "Here you can adjust chart settings, different parameters are grouped in "
1268
  "section; adjusting the parameters will be reflected in the preview of your "
1274
  "sera reflété dans l'aperçu de votre graphique en temps réel sur le côté "
1275
  "droit.<br><br> Veuillez cliquer sur le bouton \"Continuer\" pour avancer."
1276
 
1277
+ #: source/class.wdttools.php:510
1278
  msgid "In this sidebar, you can find the chart settings section."
1279
  msgstr ""
1280
  "Dans cette barre latérale, vous trouverez la section des paramètres des "
1281
  "graphiques."
1282
 
1283
+ #: source/class.wdttools.php:511
1284
  msgid ""
1285
  "By clicking on each section, you can set your desired parameters per section."
1286
  "<br><br> Please click 'Continue' button to move on."
1289
  "par section.<br><br> Veuillez cliquer sur le bouton \"Continuer\" pour "
1290
  "poursuivre."
1291
 
1292
+ #: source/class.wdttools.php:514
1293
  msgid "Here are the available chart options"
1294
  msgstr "Voici les options de graphiques disponibles"
1295
 
1296
+ #: source/class.wdttools.php:515
1297
  msgid ""
1298
  "Set different chart options for the chosen section to get your desired chart "
1299
  "look.<br><br> Please click 'Continue' button to move on."
1302
  "d'obtenir l'aspect de graphique souhaité.<br><br> Veuillez cliquer sur le "
1303
  "bouton \"Continuer\" pour poursuivre."
1304
 
1305
+ #: source/class.wdttools.php:518
1306
  msgid "How your chart will look like on the page of your website"
1307
  msgstr "A quoi ressemblera votre graphique sur la page de votre site web"
1308
 
1309
+ #: source/class.wdttools.php:519
1310
  msgid ""
1311
  "Here you can see a preview of your chart based on the settings you have "
1312
  "chosen.<br><br> Please click 'Continue' button to move on."
1315
  "paramètres que vous avez choisis.<br><br> Veuillez cliquer sur le bouton "
1316
  "\"Continuer\" pour poursuivre."
1317
 
1318
+ #: source/class.wdttools.php:522
1319
  msgid "You can save your chart now"
1320
  msgstr "Vous pouvez sauvegarder votre graphique maintenant"
1321
 
1322
+ #: source/class.wdttools.php:523
1323
  msgid ""
1324
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1325
  "button and all your settings for this chart will be saved in the database."
1328
  "bouton \"Enregistrer le graphique\" et tous vos paramètres pour ce graphique "
1329
  "seront enregistrés dans la base de données."
1330
 
1331
+ #: source/class.wdttools.php:526
1332
  msgid "Congrats! Your first chart is ready!"
1333
  msgstr "Félicitations ! Votre premier graphique est prêt !"
1334
 
1335
+ #: source/class.wdttools.php:527
1336
  msgid ""
1337
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1338
  "page. <br><br>You may now finish this tutorial. "
1351
  "Vous mélangez des types de données (plusieurs axes de dates et plusieurs "
1352
  "nombres)"
1353
 
1354
+ #: source/class.wpdatatable.php:1876
1355
  msgid ""
1356
  "You are trying to load a table of an unknown type. Probably you did not "
1357
  "activate the addon which is required to use this table type."
1360
  "probablement pas activé le supplément d’extension requis pour utiliser ce "
1361
  "type de tableau."
1362
 
1363
+ #: source/class.wpdatatable.php:2106 source/class.wpdatatable.php:2109
1364
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1365
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1366
+ #: templates/admin/table-settings/table_settings_block.inc.php:327
1367
  #: templates/edit_table.inc.php:409
1368
  msgid "All"
1369
  msgstr "Tout"
1370
 
1371
+ #: source/class.wpdatatable.php:2167 source/class.wpdatatable.php:2236
1372
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1373
  msgid "Columns"
1374
  msgstr "Colonnes"
1375
 
1376
+ #: source/class.wpdatatable.php:2177 source/class.wpdatatable.php:2246
1377
+ #: templates/admin/table-settings/table_settings_block.inc.php:1049
1378
  msgid "Print"
1379
  msgstr "Imprimer"
1380
 
1381
+ #: source/class.wpdatatable.php:2216 source/class.wpdatatable.php:2289
1382
+ #: templates/admin/table-settings/table_settings_block.inc.php:1053
1383
  msgid "PDF"
1384
  msgstr "PDF"
1385
 
1386
+ #: source/class.wpdatatable.php:2224
1387
  msgid "Export"
1388
  msgstr "Exporter"
1389
 
1390
+ #: source/class.wpdatatable.php:2302
1391
  msgid "Search table"
1392
  msgstr "Tableau de recherche"
1393
 
1394
+ #: source/class.wpdatatable.php:2303
1395
  msgid "Showing _MENU_ Entries"
1396
  msgstr "Afficher _MENU_ Entrées"
1397
 
1410
  msgid "if you have some questions or problems with the plugin."
1411
  msgstr ""
1412
 
1413
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1414
  msgid "wpDataTables Addons"
1415
  msgstr "Modules complémentaires pour wpDataTables"
1416
 
1430
  "créateurs de wpDataTables et les développeurs tiers, donc restez à l’écoute."
1431
 
1432
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1433
+ #: templates/admin/dashboard/dashboard.inc.php:570
1434
  msgid "Report Builder"
1435
  msgstr "Report Builder"
1436
 
1437
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1438
+ #: templates/admin/dashboard/dashboard.inc.php:574
1439
  msgid ""
1440
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1441
  "XLSX documents filled in with actual data from your database."
1463
  msgstr "NOUVEAU"
1464
 
1465
  #: templates/admin/addons/addons.inc.php:40
1466
+ #: templates/admin/dashboard/dashboard.inc.php:517
1467
  msgid "Master Detail Tables for wpDataTables"
1468
  msgstr "Principaux tableaux détaillés pour wpDataTables"
1469
 
1489
  msgstr "En savoir plus"
1490
 
1491
  #: templates/admin/addons/addons.inc.php:67
1492
+ #: templates/admin/dashboard/dashboard.inc.php:544
1493
  msgid "Powerful Filters for wpDataTables"
1494
  msgstr "Filtres puissants pour les wpDataTables"
1495
 
1505
  "l’utilisateur ne définisse les valeurs de recherche."
1506
 
1507
  #: templates/admin/addons/addons.inc.php:120
1508
+ #: templates/admin/dashboard/dashboard.inc.php:597
1509
  msgid "Formidable Forms integration for wpDataTables"
1510
  msgstr "Intégration de Formidable Forms pour wpDataTables"
1511
 
1512
  #: templates/admin/addons/addons.inc.php:123
1513
+ #: templates/admin/dashboard/dashboard.inc.php:601
1514
  msgid ""
1515
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1516
  "create wpDataTables from Formidable Forms entries data."
1520
  "Formidable Forms."
1521
 
1522
  #: templates/admin/addons/addons.inc.php:143
1523
+ #: templates/admin/dashboard/dashboard.inc.php:623
1524
  msgid "Gravity Forms integration for wpDataTables"
1525
  msgstr "Intégration de Gravity Forms pour wpDataTables"
1526
 
1527
  #: templates/admin/addons/addons.inc.php:146
1528
+ #: templates/admin/dashboard/dashboard.inc.php:627
1529
  msgid ""
1530
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1531
  "wpDataTables from Gravity Forms entries data."
1608
  msgstr "Titre du graphique & type"
1609
 
1610
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1611
+ #: templates/admin/table-settings/table_settings_block.inc.php:60
1612
  #: templates/chart_wizard.inc.php:36
1613
  msgid "Data source"
1614
  msgstr "Source des données"
1651
 
1652
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1653
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
1654
+ #: templates/admin/table-settings/table_settings_block.inc.php:1902
1655
  #: templates/edit_table.inc.php:730
1656
  msgid "Color"
1657
  msgstr "Couleur"
1870
  #: templates/admin/getting-started/getting_started.inc.php:144
1871
  #: templates/admin/getting-started/getting_started.inc.php:156
1872
  #: templates/admin/getting-started/getting_started.inc.php:168
1873
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
1874
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
1875
  msgid "Available in Premium"
1876
  msgstr ""
1877
 
2012
  msgid "Axes"
2013
  msgstr "Axes"
2014
 
 
 
 
 
2015
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
2016
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
2017
  msgid "Tooltip"
2108
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2109
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2110
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
2111
+ #: templates/admin/table-settings/table_settings_block.inc.php:1549
2112
+ #: templates/admin/table-settings/table_settings_block.inc.php:1879
2113
  msgid "Background color"
2114
  msgstr "Couleur de fond"
2115
 
2128
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2129
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2130
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
2131
+ #: templates/admin/table-settings/table_settings_block.inc.php:1571
2132
  msgid "Border color"
2133
  msgstr "Couleur de la bordure"
2134
 
2168
 
2169
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2170
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
2171
+ #: templates/admin/table-settings/table_settings_block.inc.php:1483
2172
  msgid "Font size"
2173
  msgstr "Taille de police"
2174
 
2549
  #: templates/admin/dashboard/dashboard.inc.php:30
2550
  #: templates/admin/getting-started/getting_started.inc.php:34
2551
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2552
+ #: templates/admin/settings/settings.inc.php:100
2553
  #: templates/admin/support/support.inc.php:31
2554
  #: templates/admin/support/support.inc.php:47
2555
  #: templates/admin/system-info/system_info.inc.php:29
2556
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2557
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2558
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2559
+ #: templates/admin/table-settings/table_settings_block.inc.php:2063
2560
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2561
  msgid "View Documentation"
2562
  msgstr "Voir la documentation"
2798
  msgstr "Version "
2799
 
2800
  #: templates/admin/dashboard/dashboard.inc.php:340
2801
+ msgid "A minor update with a couple of improvements and bug fixes:"
 
 
2802
  msgstr ""
2803
 
2804
  #: templates/admin/dashboard/dashboard.inc.php:345
2805
  msgid ""
2806
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2807
+ "media in Simple tables."
2808
  msgstr ""
2809
 
2810
  #: templates/admin/dashboard/dashboard.inc.php:346
2811
  msgid ""
2812
+ "<strong>Improvement:</strong> Added translate functions on some strings."
 
2813
  msgstr ""
2814
 
2815
  #: templates/admin/dashboard/dashboard.inc.php:347
2816
  msgid ""
2817
+ "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2818
+ "area and filters for elementor widgets."
2819
  msgstr ""
2820
 
2821
  #: templates/admin/dashboard/dashboard.inc.php:348
2822
  msgid ""
2823
+ "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2824
+ "background in graphite skin."
2825
  msgstr ""
2826
 
2827
  #: templates/admin/dashboard/dashboard.inc.php:349
2828
  msgid ""
2829
+ "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2830
+ "settings."
2831
  msgstr ""
2832
 
2833
  #: templates/admin/dashboard/dashboard.inc.php:350
2834
+ msgid "Compatibility with WordPress 5.6.2 approved."
2835
+ msgstr ""
2836
+
2837
+ #: templates/admin/dashboard/dashboard.inc.php:351
2838
  msgid "Other small bug fixes and stability improvements."
2839
  msgstr ""
2840
 
2841
+ #: templates/admin/dashboard/dashboard.inc.php:363
2842
  msgid "Go Premium!"
2843
  msgstr ""
2844
 
2845
+ #: templates/admin/dashboard/dashboard.inc.php:369
2846
  msgid "View Comparison"
2847
  msgstr ""
2848
 
2849
+ #: templates/admin/dashboard/dashboard.inc.php:377
2850
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2851
  msgid ""
2852
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2853
  "of the powerful features."
2854
  msgstr ""
2855
 
2856
+ #: templates/admin/dashboard/dashboard.inc.php:381
2857
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2858
  msgid "Create a table manually"
2859
  msgstr "Créer un tableau manuellement"
2860
 
2861
+ #: templates/admin/dashboard/dashboard.inc.php:384
2862
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2863
  msgid "Creating tables from Google Spreadsheet"
2864
  msgstr "Création de tableaux à partir de Google Spreadsheet"
2865
 
2866
+ #: templates/admin/dashboard/dashboard.inc.php:387
2867
  msgid ""
2868
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2869
  "tables via Google Sheet API"
2870
  msgstr ""
2871
 
2872
+ #: templates/admin/dashboard/dashboard.inc.php:390
2873
  msgid ""
2874
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2875
  "tables from Private Google Spreadsheet"
2876
  msgstr ""
2877
 
2878
+ #: templates/admin/dashboard/dashboard.inc.php:393
2879
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2880
  msgid "Creating MySQL-based tables from database"
2881
  msgstr "Création de tableaux basés sur MySQL à partir d'une base de données"
2882
 
2883
+ #: templates/admin/dashboard/dashboard.inc.php:396
2884
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2885
  msgid "Creating MySQL-based tables from Wordpress post types"
2886
  msgstr ""
2887
  "Création de tableaux basés sur MySQL à partir d'articles types Wordpress"
2888
 
2889
+ #: templates/admin/dashboard/dashboard.inc.php:399
2890
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
2891
  #: templates/edit_table.inc.php:329
2892
  msgid "Advanced filtering"
2893
  msgstr "Filtrage avancé"
2894
 
2895
+ #: templates/admin/dashboard/dashboard.inc.php:402
2896
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2897
+ #: templates/admin/table-settings/table_settings_block.inc.php:153
2898
  #: templates/edit_table.inc.php:282
2899
  msgid "Server-side processing"
2900
  msgstr "Traitement côté serveur"
2901
 
2902
+ #: templates/admin/dashboard/dashboard.inc.php:405
2903
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2904
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2905
  msgstr ""
2906
 
2907
+ #: templates/admin/dashboard/dashboard.inc.php:408
2908
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2909
  msgid "Front-end table editing"
2910
  msgstr "Montage de tableaux en interface visuelle"
2911
 
2912
+ #: templates/admin/dashboard/dashboard.inc.php:411
2913
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2914
  msgid "Excel-like editing"
2915
  msgstr "Montage comme sur Excel"
2916
 
2917
+ #: templates/admin/dashboard/dashboard.inc.php:414
2918
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2919
  msgid "Creating charts with Highcharts"
2920
  msgstr "Créer des graphiques avec Highcharts"
2921
 
2922
+ #: templates/admin/dashboard/dashboard.inc.php:417
2923
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2924
  msgid "Creating charts with Chart.js"
2925
  msgstr "Créer des graphiques avec Chart.js"
2926
 
2927
+ #: templates/admin/dashboard/dashboard.inc.php:420
2928
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2929
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2930
  #: templates/edit_table.inc.php:301
2931
  msgid "Responsive"
2932
  msgstr "Réactif"
2933
 
2934
+ #: templates/admin/dashboard/dashboard.inc.php:423
2935
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2936
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2937
  #: templates/edit_table.inc.php:750
2938
  msgid "Conditional formatting"
2939
  msgstr "Mise en forme conditionnelle"
2940
 
2941
+ #: templates/admin/dashboard/dashboard.inc.php:426
2942
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2943
  msgid "Calculating Tools"
2944
  msgstr "Outils de calcul"
2945
 
2946
+ #: templates/admin/dashboard/dashboard.inc.php:429
2947
  msgid "Formula columns"
2948
  msgstr ""
2949
 
2950
+ #: templates/admin/dashboard/dashboard.inc.php:432
2951
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2952
+ #: templates/admin/table-settings/table_settings_block.inc.php:80
2953
  msgid "Placeholders"
2954
  msgstr "Textes indicatifs"
2955
 
2956
+ #: templates/admin/dashboard/dashboard.inc.php:435
2957
  msgid "Premium support"
2958
  msgstr ""
2959
 
2960
+ #: templates/admin/dashboard/dashboard.inc.php:439
2961
  msgid "Get Premium Today"
2962
  msgstr ""
2963
 
2964
+ #: templates/admin/dashboard/dashboard.inc.php:446
2965
  msgid "News Blog"
2966
  msgstr "Nouvelles du blog"
2967
 
2968
+ #: templates/admin/dashboard/dashboard.inc.php:451
2969
  msgid "Checkout useful articles from wpdatatables.com"
2970
  msgstr "Consultez les articles utiles de wpdatables.com"
2971
 
2972
+ #: templates/admin/dashboard/dashboard.inc.php:474
2973
  msgid "Please install and enable PHP extensions xml and dom on your server."
2974
  msgstr ""
2975
 
2976
+ #: templates/admin/dashboard/dashboard.inc.php:482
2977
  msgid ""
2978
  "Never miss notifications about new cool features, promotions,\n"
2979
  " giveaways or freebies – subscribe to our "
2987
  " environ 1 message par mois et jamais de "
2988
  "spam !"
2989
 
2990
+ #: templates/admin/dashboard/dashboard.inc.php:500
2991
  msgid "Premium "
2992
  msgstr ""
2993
 
2994
+ #: templates/admin/dashboard/dashboard.inc.php:503
2995
  msgid ""
2996
  "While wpDataTables itself provides quite a large amount of features and "
2997
  "unlimited customisation, flexibility, you can achieve even more with our "
2998
  "premium addons.(requires wpDataTables Premium version)"
2999
  msgstr ""
3000
 
3001
+ #: templates/admin/dashboard/dashboard.inc.php:521
3002
  msgid ""
3003
  "A wpDataTables addon which allows showing additional details for a specific "
3004
  "row in a popup or a separate page or post."
3006
  "Un addon wpDataTables qui permet d'afficher des détails supplémentaires pour "
3007
  "une ligne spécifique dans un popup ou une page ou un message séparé."
3008
 
3009
+ #: templates/admin/dashboard/dashboard.inc.php:527
3010
+ #: templates/admin/dashboard/dashboard.inc.php:554
3011
+ #: templates/admin/dashboard/dashboard.inc.php:580
3012
+ #: templates/admin/dashboard/dashboard.inc.php:607
3013
+ #: templates/admin/dashboard/dashboard.inc.php:633
3014
+ #: templates/admin/dashboard/dashboard.inc.php:666
3015
  msgid "Learn More"
3016
  msgstr "En savoir plus"
3017
 
3018
+ #: templates/admin/dashboard/dashboard.inc.php:548
3019
  msgid ""
3020
  "An add-on for wpDataTables that provides powerful filtering features: "
3021
  "cascade filtering, applying filters on button click, hide table before "
3025
  "filtrage en cascade, application de filtres en un clic de bouton, masquage "
3026
  "du tableau avant le filtrage."
3027
 
3028
+ #: templates/admin/dashboard/dashboard.inc.php:644
3029
  msgid "Need free booking plugin?"
3030
  msgstr ""
3031
 
3032
+ #: templates/admin/dashboard/dashboard.inc.php:653
3033
  msgid "Appointments and Events WordPress Booking Plugin"
3034
  msgstr "Rendez-vous et événements Extension de réservation WordPress"
3035
 
3036
+ #: templates/admin/dashboard/dashboard.inc.php:656
3037
  msgid ""
3038
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
3039
  "set up a fully-featured automated booking system on your WordPress website "
3044
  "each month."
3045
  msgstr ""
3046
 
3047
+ #: templates/admin/dashboard/dashboard.inc.php:659
3048
  msgid "Rating: 4.3 - ‎97 reviews"
3049
  msgstr ""
3050
 
3051
+ #: templates/admin/dashboard/dashboard.inc.php:662
3052
  msgid "Free Download"
3053
  msgstr ""
3054
 
3055
+ #: templates/admin/dashboard/dashboard.inc.php:677
3056
  #: templates/admin/getting-started/getting_started.inc.php:184
3057
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
3058
  #: templates/admin/support/support.inc.php:78
3059
  #: templates/admin/system-info/system_info.inc.php:509
3060
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3061
  msgid "Made by"
3062
  msgstr "Réalisé par"
3063
 
3064
+ #: templates/admin/dashboard/dashboard.inc.php:685
3065
  #: templates/admin/getting-started/getting_started.inc.php:192
3066
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3067
  #: templates/admin/support/support.inc.php:45
3068
  #: templates/admin/support/support.inc.php:86
3069
  #: templates/admin/system-info/system_info.inc.php:517
3072
  msgid "Documentation"
3073
  msgstr "Documentation"
3074
 
3075
+ #: templates/admin/dashboard/dashboard.inc.php:689
3076
  #: templates/admin/getting-started/getting_started.inc.php:196
3077
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3078
  #: templates/admin/support/support.inc.php:24
3079
  #: templates/admin/support/support.inc.php:90
3080
  #: templates/admin/system-info/system_info.inc.php:521
3211
  msgstr "Comparaison entre les versions Lite et Premium"
3212
 
3213
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3214
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3215
  msgid "Go Premium Now"
3216
  msgstr ""
3217
 
3224
  msgstr "Version allégée"
3225
 
3226
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3227
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3228
  msgid "Premium"
3229
  msgstr "Premium"
3230
 
3254
 
3255
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3256
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3257
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3258
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3259
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3260
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
3261
  msgid "NEW!"
3262
  msgstr ""
3263
 
3276
 
3277
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3278
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3279
+ #: templates/admin/table-settings/table_settings_block.inc.php:643
3280
+ #: templates/admin/table-settings/table_settings_block.inc.php:651
3281
  msgid "Sorting"
3282
  msgstr "Tri"
3283
 
3284
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3285
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3286
+ #: templates/admin/table-settings/table_settings_block.inc.php:504
3287
+ #: templates/admin/table-settings/table_settings_block.inc.php:512
3288
+ #: templates/admin/table-settings/table_settings_block.inc.php:1387
3289
  msgid "Pagination"
3290
  msgstr "Pagination"
3291
 
3312
  msgstr ""
3313
 
3314
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3315
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3316
  msgid "Limited"
3317
  msgstr "Limitée"
3318
 
3320
  msgid "Some options are not available."
3321
  msgstr ""
3322
 
3323
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3324
+ msgid "Table Customization"
3325
  msgstr ""
3326
 
3327
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3328
+ msgid "Creating tables via Google Sheet API"
3329
+ msgstr ""
3330
+
3331
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3332
  msgid "Creating tables from Private Google Spreadsheet"
3333
  msgstr ""
3334
 
3335
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3336
  msgid "Support"
3337
  msgstr "Centre d'assistance"
3338
 
3339
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3340
  msgid "Response time is slow and can be up to 5 business days."
3341
  msgstr ""
3342
 
3343
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3344
  msgid ""
3345
  "* Please note that wpDataTables add-ons are not included in premium version "
3346
  "of plugin."
3347
  msgstr ""
3348
 
3349
  #: templates/admin/settings/settings.inc.php:33
3350
+ #: templates/admin/settings/settings.inc.php:95
3351
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3352
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3353
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3354
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3355
  #: templates/admin/table-settings/table_preview_block.inc.php:89
 
3356
  #: templates/admin/table-settings/table_settings_block.inc.php:48
3357
+ #: templates/admin/table-settings/table_settings_block.inc.php:49
3358
  msgid "Save Changes"
3359
  msgstr "Enregistrer les changements"
3360
 
3378
  msgid "Custom JS and CSS"
3379
  msgstr "JS et CSS personnalisés"
3380
 
3381
+ #: templates/admin/settings/settings.inc.php:62
3382
+ msgid "Google Spreadsheet API settings"
3383
+ msgstr ""
3384
+
3385
+ #: templates/admin/settings/settings.inc.php:92 templates/settings.inc.php:434
3386
  msgid "Reset colors and fonts to default"
3387
  msgstr "Réinitialiser les couleurs et les polices par défaut"
3388
 
3389
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3390
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
3391
+ #: templates/admin/table-settings/table_settings_block.inc.php:1367
3392
+ #: templates/admin/table-settings/table_settings_block.inc.php:1461
3393
  msgid "Font"
3394
  msgstr "Police de caractère"
3395
 
3396
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
3397
+ #: templates/admin/table-settings/table_settings_block.inc.php:1464
3398
  #: templates/settings.inc.php:428
3399
  msgid ""
3400
  "This font will be used in rendered tables. Leave blank not to override "
3404
  "pour ne pas remplacer les paramètres de thème par défaut"
3405
 
3406
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
3407
+ #: templates/admin/table-settings/table_settings_block.inc.php:1486
3408
  msgid "Define the font size"
3409
  msgstr "Définir la taille de la police"
3410
 
3411
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3412
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3413
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
3414
+ #: templates/admin/table-settings/table_settings_block.inc.php:1519
3415
+ #: templates/admin/table-settings/table_settings_block.inc.php:1594
3416
  msgid "Font color"
3417
  msgstr "Couleur de la police"
3418
 
3419
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
3420
+ #: templates/admin/table-settings/table_settings_block.inc.php:1522
3421
  msgid "This color is used for the main font in table cells."
3422
  msgstr ""
3423
  "Cette couleur est utilisée pour la police principale dans les cellules du "
3425
 
3426
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3427
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
3428
+ #: templates/admin/table-settings/table_settings_block.inc.php:1371
3429
  msgid "Header"
3430
  msgstr ""
3431
 
3432
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
3433
+ #: templates/admin/table-settings/table_settings_block.inc.php:1552
3434
  msgid "The color is used for background of the table header."
3435
  msgstr "La couleur est utilisée pour l’arrière-plan de l’en-tête du tableau."
3436
 
3437
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
3438
+ #: templates/admin/table-settings/table_settings_block.inc.php:1574
3439
  msgid "This color is used for the border in the table header."
3440
  msgstr "Cette couleur est utilisée pour la bordure dans l’en-tête du tableau."
3441
 
3442
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
3443
+ #: templates/admin/table-settings/table_settings_block.inc.php:1597
3444
  msgid "This color is used for the font in the table header."
3445
  msgstr "Cette couleur est utilisée pour la police dans l’en-tête du tableau."
3446
 
3447
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
3448
+ #: templates/admin/table-settings/table_settings_block.inc.php:1616
3449
  msgid "Active and hover color\t"
3450
  msgstr "Couleur active et en survol\t"
3451
 
3452
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
3453
+ #: templates/admin/table-settings/table_settings_block.inc.php:1619
3454
  msgid ""
3455
  "This color is used when you hover the mouse above the table header, or when "
3456
  "you choose a column."
3463
  msgstr ""
3464
 
3465
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
3466
+ #: templates/admin/table-settings/table_settings_block.inc.php:1647
3467
  msgid "Inner border"
3468
  msgstr "Bordure intérieure"
3469
 
3470
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
3471
+ #: templates/admin/table-settings/table_settings_block.inc.php:1650
3472
  msgid "This color is used for the inner border in the table between cells."
3473
  msgstr ""
3474
  "Cette couleur est utilisée pour la bordure intérieure du tableau entre les "
3475
  "cellules."
3476
 
3477
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
3478
+ #: templates/admin/table-settings/table_settings_block.inc.php:1670
3479
  msgid "Outer border"
3480
  msgstr "Bordure extérieure"
3481
 
3482
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
3483
+ #: templates/admin/table-settings/table_settings_block.inc.php:1673
3484
  msgid "This color is used for the outer border of the whole table body."
3485
  msgstr ""
3486
  "Cette couleur est utilisée pour la bordure extérieure du corps entier du "
3487
  "tableau."
3488
 
3489
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
3490
+ #: templates/admin/table-settings/table_settings_block.inc.php:1693
3491
  msgid "Table borders"
3492
  msgstr "Bordures de tableau"
3493
 
3494
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
3495
+ #: templates/admin/table-settings/table_settings_block.inc.php:1696
3496
  msgid "When this is checked, borders in table will be removed "
3497
  msgstr ""
3498
  "Lorsque cette case est cochée, les bordures du tableau seront supprimées "
3499
 
3500
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
3501
+ #: templates/admin/table-settings/table_settings_block.inc.php:1702
3502
  msgid "Remove borders in table"
3503
  msgstr "Supprimer les bordures dans le tableau"
3504
 
3505
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
3506
+ #: templates/admin/table-settings/table_settings_block.inc.php:1707
3507
  msgid "Header border"
3508
  msgstr "Bordure d’en-tête"
3509
 
3510
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
3511
+ #: templates/admin/table-settings/table_settings_block.inc.php:1710
3512
  msgid "When this is checked,borders in header will be removed "
3513
  msgstr ""
3514
  "Lorsque cette case est cochée, les bordures de l’en-tête seront supprimées "
3518
  msgstr "Supprimer les bordures dans l'en-tête"
3519
 
3520
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
3521
+ #: templates/admin/table-settings/table_settings_block.inc.php:1379
3522
  msgid "Row color"
3523
  msgstr ""
3524
 
3525
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
3526
+ #: templates/admin/table-settings/table_settings_block.inc.php:1729
3527
  msgid "Even row background"
3528
  msgstr "Fond ligne paire"
3529
 
3530
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
3531
+ #: templates/admin/table-settings/table_settings_block.inc.php:1732
3532
  msgid "This color is used for for background in even rows."
3533
  msgstr "Cette couleur est utilisée pour le fond dans les lignes paires."
3534
 
3535
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
3536
+ #: templates/admin/table-settings/table_settings_block.inc.php:1751
3537
  msgid "Odd row background"
3538
  msgstr "Fond ligne impaire"
3539
 
3540
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
3541
+ #: templates/admin/table-settings/table_settings_block.inc.php:1754
3542
  msgid "This color is used for for background in odd rows."
3543
  msgstr "Cette couleur est utilisée pour le fond dans les lignes impaires."
3544
 
3545
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
3546
+ #: templates/admin/table-settings/table_settings_block.inc.php:1773
3547
  msgid "Hover row"
3548
  msgstr "Survol ligne"
3549
 
3550
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
3551
+ #: templates/admin/table-settings/table_settings_block.inc.php:1776
3552
  msgid ""
3553
  "This color is used for to highlight the row when you hover your mouse above "
3554
  "it."
3557
  "passez votre souris dessus."
3558
 
3559
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
3560
+ #: templates/admin/table-settings/table_settings_block.inc.php:1795
3561
  msgid "Background for selected rows"
3562
  msgstr "Fond pour les lignes sélectionnées"
3563
 
3564
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
3565
+ #: templates/admin/table-settings/table_settings_block.inc.php:1798
3566
  msgid "This color is used for background in selected rows."
3567
  msgstr "Cette couleur est utilisée pour le fond des lignes sélectionnées."
3568
 
3569
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
3570
+ #: templates/admin/table-settings/table_settings_block.inc.php:1383
3571
  msgid "Cell color"
3572
  msgstr ""
3573
 
3574
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
3575
+ #: templates/admin/table-settings/table_settings_block.inc.php:1826
3576
  msgid "Sorted columns, even rows"
3577
  msgstr "Colonnes triées, lignes paires"
3578
 
3579
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
3580
+ #: templates/admin/table-settings/table_settings_block.inc.php:1829
3581
  msgid ""
3582
  "This color is used for background in cells which are in the active columns "
3583
  "(columns used for sorting) in even rows."
3586
  "les colonnes actives (colonnes utilisées pour le tri) dans les lignes paires."
3587
 
3588
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
3589
+ #: templates/admin/table-settings/table_settings_block.inc.php:1849
3590
  msgid "Sorted columns, odd rows"
3591
  msgstr "Colonnes triées, lignes impaires"
3592
 
3593
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
3594
+ #: templates/admin/table-settings/table_settings_block.inc.php:1852
3595
  msgid ""
3596
  "This color is used for background in cells which are in the active columns "
3597
  "(columns used for sorting) in odd rows."
3699
  "fenêtres contextuelles de l’extension."
3700
 
3701
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
3702
+ #: templates/admin/table-settings/table_settings_block.inc.php:1882
3703
  msgid "This color is used for the background of the pagination"
3704
  msgstr "Cette couleur est utilisée pour l’arrière-plan de la pagination"
3705
 
3706
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
3707
+ #: templates/admin/table-settings/table_settings_block.inc.php:1905
3708
  msgid "This color is used for the color of the links in the pagination."
3709
  msgstr ""
3710
  "Cette couleur est utilisée pour la couleur des liens dans la pagination."
3711
 
3712
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
3713
+ #: templates/admin/table-settings/table_settings_block.inc.php:1924
3714
  msgid "Current page background color"
3715
  msgstr "Couleur de fond de la page actuelle"
3716
 
3717
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
3718
+ #: templates/admin/table-settings/table_settings_block.inc.php:1927
3719
  msgid "The color is used for background of the current page"
3720
  msgstr "La couleur est utilisée pour l’arrière-plan de la page en cours"
3721
 
3722
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
3723
+ #: templates/admin/table-settings/table_settings_block.inc.php:1948
3724
  msgid "Current page color"
3725
  msgstr "Couleur de fond de la page actuelle"
3726
 
3727
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
3728
+ #: templates/admin/table-settings/table_settings_block.inc.php:1951
3729
  msgid "This color is used for the color of the current page."
3730
  msgstr "Cette couleur est utilisée pour la couleur de la page actuelle."
3731
 
3732
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
3733
+ #: templates/admin/table-settings/table_settings_block.inc.php:1971
3734
  msgid "Other pages hover background color"
3735
  msgstr "Autres pages couleur de fond lors du survol"
3736
 
3737
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
3738
+ #: templates/admin/table-settings/table_settings_block.inc.php:1974
3739
  msgid ""
3740
  "This background color is used when you hover the mouse above the other pages"
3741
  msgstr ""
3743
  "autres pages"
3744
 
3745
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
3746
+ #: templates/admin/table-settings/table_settings_block.inc.php:1995
3747
  msgid "Other pages hover color"
3748
  msgstr "Autres couleur de survol de pages"
3749
 
3750
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
3751
+ #: templates/admin/table-settings/table_settings_block.inc.php:1998
3752
  msgid "This color is used when you hover the mouse above the other pages."
3753
  msgstr ""
3754
  "Cette couleur est utilisée lorsque vous passez la souris au-dessus des "
3768
  "possédant un wpDataTable."
3769
 
3770
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
3771
+ #: templates/admin/table-settings/table_settings_block.inc.php:2025
3772
  #: templates/settings.inc.php:463
3773
  msgid "Custom wpDataTables CSS"
3774
  msgstr "CSS WpDataTables personnalisé"
3790
  msgstr "Utiliser la version minifiée des fichiers Javascript"
3791
 
3792
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
3793
+ #: templates/admin/table-settings/table_settings_block.inc.php:1407
3794
  #: templates/settings.inc.php:45
3795
  msgid "Interface language"
3796
  msgstr "Langue de l’interface"
3797
 
3798
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
3799
+ #: templates/admin/table-settings/table_settings_block.inc.php:1410
3800
  msgid "Pick the language which will be used in tables interface."
3801
  msgstr "Choisissez la langue qui sera utilisée dans l’interface des tableaux."
3802
 
3803
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
3804
+ #: templates/admin/table-settings/table_settings_block.inc.php:1417
3805
  msgid "English (default)"
3806
  msgstr "Anglais (par défaut)"
3807
 
3815
  msgstr ""
3816
  "Choisissez le format de date à utiliser dans le type de colonne de date."
3817
 
3818
+ #: templates/admin/settings/tabs/main_plugin_settings.php:74
3819
  #: templates/settings.inc.php:119
3820
  msgid "Time format"
3821
  msgstr "Format de l’heure"
3822
 
3823
+ #: templates/admin/settings/tabs/main_plugin_settings.php:76
3824
  msgid "Pick the time format to use in datetime and time column type."
3825
  msgstr ""
3826
  "Choisissez le format de l’heure à utiliser dans le type de colonne datetime "
3827
  "et heure."
3828
 
3829
+ #: templates/admin/settings/tabs/main_plugin_settings.php:91
3830
  msgid "Parse shortcodes"
3831
  msgstr "Analyser les shortcodes"
3832
 
3833
+ #: templates/admin/settings/tabs/main_plugin_settings.php:93
3834
  msgid ""
3835
  "If the option is enabled, you can use shortcodes of other plugins for "
3836
  "generating content."
3837
  msgstr ""
3838
 
3839
+ #: templates/admin/settings/tabs/main_plugin_settings.php:97
3840
  msgid "Parse shortcodes in strings"
3841
  msgstr "Analyser les shortcodes dans la chaîne de caractères"
3842
 
3843
+ #: templates/admin/settings/tabs/main_plugin_settings.php:104
3844
+ #: templates/admin/table-settings/table_settings_block.inc.php:1430
3845
  #: templates/settings.inc.php:74
3846
  msgid "Base skin"
3847
  msgstr "Skin de base"
3848
 
3849
+ #: templates/admin/settings/tabs/main_plugin_settings.php:106
3850
+ #: templates/admin/table-settings/table_settings_block.inc.php:1433
3851
  msgid "Choose the base skin for the plugin."
3852
  msgstr "Choisissez le skin de base pour l’extension."
3853
 
3854
+ #: templates/admin/settings/tabs/main_plugin_settings.php:112
3855
+ #: templates/admin/table-settings/table_settings_block.inc.php:1440
3856
  msgid "Material"
3857
  msgstr "Matériel"
3858
 
3859
+ #: templates/admin/settings/tabs/main_plugin_settings.php:113
3860
+ #: templates/admin/table-settings/table_settings_block.inc.php:1441
3861
  msgid "Light"
3862
  msgstr "Light"
3863
 
3864
+ #: templates/admin/settings/tabs/main_plugin_settings.php:114
3865
+ #: templates/admin/table-settings/table_settings_block.inc.php:1442
3866
  msgid "Graphite"
3867
  msgstr "Graphite"
3868
 
3869
+ #: templates/admin/settings/tabs/main_plugin_settings.php:115
3870
+ #: templates/admin/table-settings/table_settings_block.inc.php:1443
3871
  msgid "Aqua"
3872
  msgstr "Eau"
3873
 
3874
+ #: templates/admin/settings/tabs/main_plugin_settings.php:116
3875
+ #: templates/admin/table-settings/table_settings_block.inc.php:1444
3876
  msgid "Purple"
3877
  msgstr "Violet"
3878
 
3879
+ #: templates/admin/settings/tabs/main_plugin_settings.php:117
3880
+ #: templates/admin/table-settings/table_settings_block.inc.php:1445
3881
  msgid "Dark"
3882
  msgstr "Foncé"
3883
 
3884
+ #: templates/admin/settings/tabs/main_plugin_settings.php:125
3885
  #: templates/settings.inc.php:131
3886
  msgid "Number format"
3887
  msgstr "Format de nombre"
3888
 
3889
+ #: templates/admin/settings/tabs/main_plugin_settings.php:127
3890
  #: templates/settings.inc.php:138
3891
  msgid "Pick the number format (thousands and decimals separator)"
3892
  msgstr ""
3893
  "Choisissez le format numérique (séparateur de milliers et de décimales)"
3894
 
3895
+ #: templates/admin/settings/tabs/main_plugin_settings.php:144
3896
  #: templates/settings.inc.php:86
3897
  msgid "Render advanced filter"
3898
  msgstr "Filtre avancé interprété"
3899
 
3900
+ #: templates/admin/settings/tabs/main_plugin_settings.php:146
3901
  msgid ""
3902
  "Choose where you would like to render the advanced filter for tables where "
3903
  "enabled."
3905
  "Choisissez l’emplacement où vous souhaitez interpréter le filtre avancé pour "
3906
  "les tableaux où ils sont activés."
3907
 
3908
+ #: templates/admin/settings/tabs/main_plugin_settings.php:152
3909
  #: templates/settings.inc.php:90
3910
  msgid "In the header"
3911
  msgstr "Dans l’en-tête"
3912
 
3913
+ #: templates/admin/settings/tabs/main_plugin_settings.php:153
3914
  #: templates/settings.inc.php:91
3915
  msgid "In the footer"
3916
  msgstr "En bas de page"
3917
 
3918
+ #: templates/admin/settings/tabs/main_plugin_settings.php:161
3919
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3920
  #: templates/settings.inc.php:143
3921
  msgid "Decimal places"
3922
  msgstr "Place de la décimales"
3923
 
3924
+ #: templates/admin/settings/tabs/main_plugin_settings.php:163
3925
  msgid "Define the amount of decimal places for the float numbers."
3926
  msgstr ""
3927
  "Définissez la quantité de la place de décimales pour les nombres à virgules."
3928
 
3929
+ #: templates/admin/settings/tabs/main_plugin_settings.php:188
3930
  msgid "CSV delimiter"
3931
  msgstr "Délimiteur CSV"
3932
 
3933
+ #: templates/admin/settings/tabs/main_plugin_settings.php:190
3934
  msgid "Pick the CSV delimiter"
3935
  msgstr "Choisissez le délimiteur CSV"
3936
 
3937
+ #: templates/admin/settings/tabs/main_plugin_settings.php:209
3938
  msgid "Tables sorting direction in admin page"
3939
  msgstr ""
3940
 
3941
+ #: templates/admin/settings/tabs/main_plugin_settings.php:211
3942
  msgid ""
3943
  "Here you can set sorting direction by id for browse tables and charts. By "
3944
  "default is ascending order."
3945
  msgstr ""
3946
 
3947
+ #: templates/admin/settings/tabs/main_plugin_settings.php:217
3948
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3949
  #: templates/edit_table.inc.php:663
3950
  msgid "Ascending"
3951
  msgstr "Ordre croissant"
3952
 
3953
+ #: templates/admin/settings/tabs/main_plugin_settings.php:218
3954
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3955
  #: templates/edit_table.inc.php:665
3956
  msgid "Descending"
3957
  msgstr "Ordre décroissant"
3958
 
3959
+ #: templates/admin/settings/tabs/main_plugin_settings.php:229
3960
  #: templates/settings.inc.php:171
3961
  msgid "Tablet width"
3962
  msgstr "Largeur de la tablette"
3963
 
3964
+ #: templates/admin/settings/tabs/main_plugin_settings.php:231
3965
  #: templates/settings.inc.php:175
3966
  msgid ""
3967
  "Here you can specify width of the screen (in pixels) that will be treated as "
3971
  "traitée comme une tablette. Vous pouvez le définir plus large si vous "
3972
  "souhaitez un effet adaptatif sur les ordinateurs de bureau."
3973
 
3974
+ #: templates/admin/settings/tabs/main_plugin_settings.php:255
3975
  #: templates/settings.inc.php:181
3976
  msgid "Mobile width"
3977
  msgstr "Largeur mobile"
3978
 
3979
+ #: templates/admin/settings/tabs/main_plugin_settings.php:257
3980
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3981
  msgstr ""
3982
  "Ici, vous pouvez spécifier la largeur (en pixels) qui sera traitée comme un "
3983
  "mobile.."
3984
 
3985
+ #: templates/admin/settings/tabs/main_plugin_settings.php:282
3986
  #: templates/settings.inc.php:61
3987
  msgid "Tables per admin page"
3988
  msgstr "Tableaux par page administrateur"
3989
 
3990
+ #: templates/admin/settings/tabs/main_plugin_settings.php:284
3991
  msgid "How many tables to show in the browse page."
3992
  msgstr "Combien de tableaux afficher dans la page de navigation."
3993
 
3994
+ #: templates/admin/settings/tabs/main_plugin_settings.php:300
3995
  msgid "Align numbers"
3996
  msgstr "Aligner les nombres"
3997
 
3998
+ #: templates/admin/settings/tabs/main_plugin_settings.php:302
3999
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
4000
  msgstr ""
4001
 
4002
+ #: templates/admin/settings/tabs/main_plugin_settings.php:306
4003
  #: templates/settings.inc.php:161
4004
  msgid "Align numbers to the right"
4005
  msgstr "Aligner les chiffres à droite"
4006
 
4007
+ #: templates/admin/settings/tabs/main_plugin_settings.php:316
4008
  msgid "Sum functions label"
4009
  msgstr "Libellé de fonctions de somme"
4010
 
4011
+ #: templates/admin/settings/tabs/main_plugin_settings.php:318
4012
  msgid ""
4013
  "Enter a label that will be used for Sum functions. If you leave it blank "
4014
  "default label will be Σ ="
4016
  "Entrez un libellé qui sera utilisé pour les fonctions de somme. Si vous le "
4017
  "laissez vide, le libellé par défaut sera Σ ="
4018
 
4019
+ #: templates/admin/settings/tabs/main_plugin_settings.php:336
4020
  msgid "Average functions label"
4021
  msgstr "Libellé de fonctions moyennes"
4022
 
4023
+ #: templates/admin/settings/tabs/main_plugin_settings.php:338
4024
  msgid ""
4025
  "Enter a label that will be used for Average functions. If you leave it blank "
4026
  "default label will be Avg ="
4028
  "Entrez un libellé qui sera utilisé pour les fonctions Moyenne. Si vous le "
4029
  "laissez vide, le libellé par défaut sera Avg ="
4030
 
4031
+ #: templates/admin/settings/tabs/main_plugin_settings.php:361
4032
  msgid "Minimum functions label"
4033
  msgstr "Libellé de fonctions minimum"
4034
 
4035
+ #: templates/admin/settings/tabs/main_plugin_settings.php:363
4036
  msgid ""
4037
  "Enter a label that will be used for Minimum functions. If you leave it blank "
4038
  "default label will be Min ="
4040
  "Entrez un libellé qui sera utilisé pour les fonctions Minimum. Si vous le "
4041
  "laissez vide, le libellé par défaut sera Min ="
4042
 
4043
+ #: templates/admin/settings/tabs/main_plugin_settings.php:381
4044
  msgid "Maximum functions label"
4045
  msgstr "Libellé de fonctions maximum"
4046
 
4047
+ #: templates/admin/settings/tabs/main_plugin_settings.php:383
4048
  msgid ""
4049
  "Enter a label that will be used for Maximum functions. If you leave it blank "
4050
  "default label will be Max ="
4052
  "Entrez un libellé qui sera utilisé pour les fonctions Maximum. Si vous le "
4053
  "laissez vide, le libellé par défaut sera Max ="
4054
 
4055
+ #: templates/admin/settings/tabs/main_plugin_settings.php:409
4056
  msgid "Include full bootstrap front-end"
4057
  msgstr "Inclut l’interface publique de bootstrap complète"
4058
 
4059
+ #: templates/admin/settings/tabs/main_plugin_settings.php:411
4060
+ #: templates/admin/settings/tabs/main_plugin_settings.php:422
4061
  msgid ""
4062
  "It is recommended to uncheck this option if bootstrap.js is already included "
4063
  "in one of the theme files. Unchecked option means that there is still "
4068
  "bootstrap.js est toujours inclus mais uniquement en mode non-conflit, ce qui "
4069
  "devrait éviter les erreurs."
4070
 
4071
+ #: templates/admin/settings/tabs/main_plugin_settings.php:415
4072
  msgid "Include full bootstrap.js on the front-end"
4073
  msgstr "Inclure bootstrap.js complet sur le front-end"
4074
 
4075
+ #: templates/admin/settings/tabs/main_plugin_settings.php:420
4076
  msgid "Include full bootstrap back-end"
4077
  msgstr "Inclut l’environnement de développement de bootstrap complet"
4078
 
4079
+ #: templates/admin/settings/tabs/main_plugin_settings.php:426
4080
  msgid "Include full bootstrap.js on the back-end"
4081
  msgstr ""
4082
  "Inclure la version complète de bootstrap.js dans l'interface administrateur"
4083
 
4084
+ #: templates/admin/settings/tabs/main_plugin_settings.php:434
4085
+ #: templates/admin/settings/tabs/main_plugin_settings.php:440
4086
  #: templates/settings.inc.php:32
4087
  msgid "Show plugin credentials below tables"
4088
  msgstr ""
4089
 
4090
+ #: templates/admin/settings/tabs/main_plugin_settings.php:436
4091
  #: templates/settings.inc.php:32
4092
  msgid ""
4093
  "If you want to support our project, please, keep this checkbox as checked"
4094
  msgstr ""
4095
 
4096
+ #: templates/admin/settings/tabs/main_plugin_settings.php:445
4097
  msgid "Prevent deleting tables in database"
4098
  msgstr "Empêcher la suppression de tables dans la base de données"
4099
 
4100
+ #: templates/admin/settings/tabs/main_plugin_settings.php:447
4101
  msgid ""
4102
  "It is recommended to leave this option as checked if you what to keep your "
4103
  "tables in database after deleting plugin from Plugins page. If you uncheck "
4104
  "this option, it will be deleted all tables in database after deleting plugin"
4105
  msgstr ""
4106
 
4107
+ #: templates/admin/settings/tabs/main_plugin_settings.php:451
4108
  msgid ""
4109
  "Prevent deleting tables in database after deleting plugin from Plugins page"
4110
  msgstr ""
4111
  "Empêcher la suppression des tableaux dans la base de données après avoir "
4112
  "supprimé l'extension de la page Extensions"
4113
 
4114
+ #: templates/admin/settings/tabs/main_plugin_settings.php:458
4115
  msgid "Remove Getting Started page"
4116
  msgstr "Supprimer la page de démarrage"
4117
 
4118
+ #: templates/admin/settings/tabs/main_plugin_settings.php:460
4119
  msgid ""
4120
  "Check this option if you want to remove Getting Started page from admin menu."
4121
  msgstr ""
4122
  "Cochez cette option si vous souhaitez supprimer la page de démarrage du menu "
4123
  "d'administration."
4124
 
4125
+ #: templates/admin/settings/tabs/main_plugin_settings.php:464
4126
  msgid "Remove \"Getting Started\" page from admin menu."
4127
  msgstr "Supprimer la page \"Démarrage\" du menu d'administration."
4128
 
4414
  msgid "Column header"
4415
  msgstr "En-tête de colonne"
4416
 
 
 
 
 
4417
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4418
  msgid "Insert after"
4419
  msgstr "Insérer après"
4450
 
4451
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4452
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4453
+ #: templates/admin/table-settings/table_settings_block.inc.php:64
4454
  msgid "Display"
4455
  msgstr "Affichage"
4456
 
4463
  msgstr ""
4464
 
4465
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4466
+ #: templates/admin/table-settings/table_settings_block.inc.php:72
4467
  msgid "Editing"
4468
  msgstr "Édition"
4469
 
4979
  msgstr "Autoriser le filtrage"
4980
 
4981
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4982
+ #: templates/admin/table-settings/table_settings_block.inc.php:682
4983
  msgid "Global search"
4984
  msgstr "Recherche globale"
4985
 
5553
  msgstr ""
5554
 
5555
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5556
+ #: templates/admin/table-settings/table_settings_block.inc.php:211
5557
  #: templates/edit_table.inc.php:58
5558
  msgid "Table title"
5559
  msgstr "Titre du tableau"
5560
 
5561
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5562
+ #: templates/admin/table-settings/table_settings_block.inc.php:219
5563
  #: templates/edit_table.inc.php:67
5564
  msgid "Show table title"
5565
  msgstr "Afficher le titre du tableau"
5566
 
5567
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5568
+ #: templates/admin/table-settings/table_settings_block.inc.php:226
5569
  msgid ""
5570
  "Enable this to show the table title in a h3 block above the table, disable "
5571
  "to hide."
5574
  "dessus du tableau, puis désactivez-la pour la masquer."
5575
 
5576
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5577
+ #: templates/admin/table-settings/table_settings_block.inc.php:234
5578
  msgid "Show table title on the page"
5579
  msgstr "Afficher le titre du tableau sur la page"
5580
 
5641
  msgstr "Scrollable"
5642
 
5643
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5644
+ #: templates/admin/table-settings/table_settings_block.inc.php:378
5645
  msgid "Scrollable table"
5646
  msgstr "Tableau à barre de défilement horizontale"
5647
 
5648
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5649
+ #: templates/admin/table-settings/table_settings_block.inc.php:385
5650
  msgid "Enable this to enable a horizontal scrollbar below the table."
5651
  msgstr ""
5652
  "Activez cette option pour activer une barre de défilement horizontale sous "
5653
  "la table."
5654
 
5655
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5656
+ #: templates/admin/table-settings/table_settings_block.inc.php:394
5657
  msgid "Show a horizontal scrollbar"
5658
  msgstr "Afficher une barre de défilement horizontale"
5659
 
5660
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5661
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5662
+ #: templates/admin/table-settings/table_settings_block.inc.php:438
5663
+ #: templates/admin/table-settings/table_settings_block.inc.php:446
5664
  msgid "Limit table width"
5665
  msgstr "Largeur de tableau limite"
5666
 
5667
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5668
+ #: templates/admin/table-settings/table_settings_block.inc.php:453
5669
  msgid "Enable this to restrict table width to page width."
5670
  msgstr ""
5671
  "Activez cette option pour restreindre la largeur du tableau à la largeur de "
5672
  "la page."
5673
 
5674
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5675
+ #: templates/admin/table-settings/table_settings_block.inc.php:462
5676
  msgid "Limit table width to page width"
5677
  msgstr "Limiter la largeur du tableau à la largeur de la page"
5678
 
5679
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5680
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5681
+ #: templates/admin/table-settings/table_settings_block.inc.php:469
5682
+ #: templates/admin/table-settings/table_settings_block.inc.php:477
5683
  #: templates/edit_table.inc.php:392
5684
  msgid "Word wrap"
5685
  msgstr "Enveloppe de mots"
5686
 
5687
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5688
+ #: templates/admin/table-settings/table_settings_block.inc.php:484
5689
  msgid ""
5690
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5691
  "height."
5694
  "plusieurs lignes et étirer la hauteur des cellules."
5695
 
5696
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5697
+ #: templates/admin/table-settings/table_settings_block.inc.php:492
5698
  msgid "Wrap words to newlines"
5699
  msgstr "Envelopper les mots dans les nouvelles lignes"
5700
 
5756
  msgid "EXCEL-LIKE"
5757
  msgstr "EXCEL-LIKE"
5758
 
5759
+ #: templates/admin/table-settings/table_settings_block.inc.php:68
5760
  msgid "Sorting and filtering"
5761
  msgstr "Tri et filtrage"
5762
 
5763
+ #: templates/admin/table-settings/table_settings_block.inc.php:76
5764
+ #: templates/admin/table-settings/table_settings_block.inc.php:1009
5765
  msgid "Table Tools"
5766
  msgstr "Outils de tableau"
5767
 
5768
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
5769
+ msgid " Customize"
5770
+ msgstr ""
5771
+
5772
+ #: templates/admin/table-settings/table_settings_block.inc.php:103
5773
  msgid ""
5774
  "Please choose a type of the input data source - it can be a MySQL query, a "
5775
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5778
  "d’une requête MySQL, d’un fichier ou d’une URL. Seules les tables basées sur "
5779
  "des requêtes MySQL peuvent utiliser le traitement côté serveur"
5780
 
5781
+ #: templates/admin/table-settings/table_settings_block.inc.php:110
5782
  msgid "Select a data source type"
5783
  msgstr "Sélectionnez un type de source de données"
5784
 
5785
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
5786
  msgid "SQL query "
5787
  msgstr ""
5788
 
5789
+ #: templates/admin/table-settings/table_settings_block.inc.php:113
5790
  #: templates/edit_table.inc.php:85
5791
  msgid "CSV file"
5792
  msgstr "Fichier CSV"
5793
 
5794
+ #: templates/admin/table-settings/table_settings_block.inc.php:114
5795
  #: templates/edit_table.inc.php:86
5796
  msgid "Excel file"
5797
  msgstr "Fichier Excel"
5798
 
5799
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
5800
  msgid "Google Spreadsheet "
5801
  msgstr ""
5802
 
5803
+ #: templates/admin/table-settings/table_settings_block.inc.php:118
5804
  #: templates/edit_table.inc.php:89
5805
  msgid "XML file"
5806
  msgstr "Fichier XML"
5807
 
5808
+ #: templates/admin/table-settings/table_settings_block.inc.php:119
5809
  #: templates/edit_table.inc.php:90
5810
  msgid "JSON file"
5811
  msgstr "Fichier JSON"
5812
 
5813
+ #: templates/admin/table-settings/table_settings_block.inc.php:133
5814
  msgid ""
5815
  "Upload your file or provide the full URL here. For CSV or Excel input "
5816
  "sources only URLs or paths from same domain are supported. For Google "
5822
  "pris en charge. Pour les feuilles de calcul Google: n’oubliez pas de publier "
5823
  "la feuille de calcul avant de coller l’URL."
5824
 
5825
+ #: templates/admin/table-settings/table_settings_block.inc.php:139
5826
  msgid "Paste URL or path, or click Browse to choose"
5827
  msgstr ""
5828
  "Collez l’URL ou le chemin d’accès, ou cliquez sur Parcourir pour choisir"
5829
 
5830
+ #: templates/admin/table-settings/table_settings_block.inc.php:143
5831
  msgid "Browse..."
5832
  msgstr "Naviguer..."
5833
 
5834
+ #: templates/admin/table-settings/table_settings_block.inc.php:155
5835
  msgid ""
5836
  "If it is turned on, all sorting, filtering, pagination and other data "
5837
  "interaction will be done by MySQL server. This feature is recommended if you "
5842
  "fonctionnalité est recommandée si vous avez plus de 2000-3000 lignes. "
5843
  "Obligatoire pour les tables modifiables."
5844
 
5845
+ #: templates/admin/table-settings/table_settings_block.inc.php:162
5846
  msgid "Enable server-side processing"
5847
  msgstr "Enable server-side processing"
5848
 
5849
+ #: templates/admin/table-settings/table_settings_block.inc.php:177
5850
  msgid "MySQL Query"
5851
  msgstr ""
5852
 
5853
+ #: templates/admin/table-settings/table_settings_block.inc.php:179
5854
  msgid ""
5855
  "Enter the text of your MySQL query here - please make sure it returns actual "
5856
  "data first. You can use a number of placeholders to make the dataset in the "
5858
  "with different shortcodes."
5859
  msgstr ""
5860
 
5861
+ #: templates/admin/table-settings/table_settings_block.inc.php:186
5862
  #: templates/edit_table.inc.php:292
5863
  msgid "Auto-refresh"
5864
  msgstr "Actualisation automatique"
5865
 
5866
+ #: templates/admin/table-settings/table_settings_block.inc.php:188
5867
  msgid ""
5868
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5869
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5874
  "secondes donné. Laissez zéro ou vide pour ne pas utiliser l’actualisation "
5875
  "automatique."
5876
 
5877
+ #: templates/admin/table-settings/table_settings_block.inc.php:193
5878
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5879
  msgstr ""
5880
  "Intervalle de rafraîchissement automatique en secondes (zéro ou vide pour "
5881
  "désactiver)"
5882
 
5883
+ #: templates/admin/table-settings/table_settings_block.inc.php:242
5884
  msgid "Responsiveness"
5885
  msgstr "Réactivité"
5886
 
5887
+ #: templates/admin/table-settings/table_settings_block.inc.php:250
5888
  msgid "Responsive design"
5889
  msgstr "Design réactif"
5890
 
5891
+ #: templates/admin/table-settings/table_settings_block.inc.php:257
5892
  msgid "Enable this to allow responsiveness in the table."
5893
  msgstr "Activez cette option pour permettre la réactivité dans le tableau."
5894
 
5895
+ #: templates/admin/table-settings/table_settings_block.inc.php:258
5896
  msgid ""
5897
  "Please do not forget to define which columns will be hidden on mobiles and "
5898
  "tablets in the column settings!"
5900
  "N’oubliez pas de définir quelles colonnes seront cachées sur les mobiles et "
5901
  "les tablettes dans les paramètres de colonne!"
5902
 
5903
+ #: templates/admin/table-settings/table_settings_block.inc.php:269
5904
  msgid "Allow collapsing on mobiles and tablets"
5905
  msgstr "Autoriser l’écrasement sur les mobiles et les tablettes"
5906
 
5907
+ #: templates/admin/table-settings/table_settings_block.inc.php:277
5908
  msgid "Hide until loaded"
5909
  msgstr "Cacher jusqu’au chargement"
5910
 
5911
+ #: templates/admin/table-settings/table_settings_block.inc.php:279
5912
  msgid ""
5913
  "Enable to make whole table hidden until it is initialized to prevent "
5914
  "unformatted data flashing"
5916
  "Permet de masquer l’intégralité de la table jusqu’à ce qu’elle soit "
5917
  "initialisée pour éviter que des données non formatées ne clignotent"
5918
 
5919
+ #: templates/admin/table-settings/table_settings_block.inc.php:284
5920
  msgid "Hide the table before it is fully loaded"
5921
  msgstr "Cacher la table avant qu’elle ne soit complètement chargée"
5922
 
5923
+ #: templates/admin/table-settings/table_settings_block.inc.php:296
5924
  msgid "Default rows per page"
5925
  msgstr "Lignes par défaut par page"
5926
 
5927
+ #: templates/admin/table-settings/table_settings_block.inc.php:304
5928
+ #: templates/admin/table-settings/table_settings_block.inc.php:339
5929
  msgid "Rows per page"
5930
  msgstr "Lignes par page"
5931
 
5932
+ #: templates/admin/table-settings/table_settings_block.inc.php:311
5933
  msgid "How many rows to show per page by default."
5934
  msgstr "Combien de lignes afficher par page par défaut."
5935
 
5936
+ #: templates/admin/table-settings/table_settings_block.inc.php:347
5937
  msgid "Show X entries"
5938
  msgstr "Afficher X entrées"
5939
 
5940
+ #: templates/admin/table-settings/table_settings_block.inc.php:354
5941
  msgid ""
5942
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5943
  "frontend."
5945
  "Activez/désactivez cette option pour afficher/masquer \"Afficher X entrées\" "
5946
  "par page liste déroulante sur l’interface publique."
5947
 
5948
+ #: templates/admin/table-settings/table_settings_block.inc.php:362
5949
  msgid "Show \"Show X entries\" dropdown"
5950
  msgstr "Afficher le menu déroulant \"Afficher X entrées\""
5951
 
5952
+ #: templates/admin/table-settings/table_settings_block.inc.php:386
5953
  msgid "This should be turned off if you want to set columns width manually."
5954
  msgstr ""
5955
  "Cette option doit être désactivée si vous souhaitez définir la largeur des "
5956
  "colonnes manuellement."
5957
 
5958
+ #: templates/admin/table-settings/table_settings_block.inc.php:407
5959
+ #: templates/admin/table-settings/table_settings_block.inc.php:415
5960
  msgid "Info block"
5961
  msgstr "Bloc d’information"
5962
 
5963
+ #: templates/admin/table-settings/table_settings_block.inc.php:422
5964
  msgid ""
5965
  "Enable to show a block of information about the number of records below the "
5966
  "table."
5968
  "Permet d’afficher un bloc d’informations sur le nombre d’enregistrements "
5969
  "sous le tableau."
5970
 
5971
+ #: templates/admin/table-settings/table_settings_block.inc.php:430
5972
  msgid "Show information block below the table"
5973
  msgstr "Afficher le bloc d’informations sous le tableau"
5974
 
5975
+ #: templates/admin/table-settings/table_settings_block.inc.php:454
5976
  msgid ""
5977
  "This should be turned on if you want to set columns width manually. Should "
5978
  "be on to use word wrapping."
5980
  "Cela doit être activé si vous souhaitez définir la largeur des colonnes "
5981
  "manuellement. Devrait être activé pour utiliser l’enveloppe de mots."
5982
 
5983
+ #: templates/admin/table-settings/table_settings_block.inc.php:516
5984
  msgid "Enable to show a pagination"
5985
  msgstr ""
5986
 
5987
+ #: templates/admin/table-settings/table_settings_block.inc.php:524
5988
  msgid "Show pagination block below the table"
5989
  msgstr ""
5990
 
5991
+ #: templates/admin/table-settings/table_settings_block.inc.php:532
5992
+ #: templates/admin/table-settings/table_settings_block.inc.php:540
5993
  msgid "Pagination Alignment"
5994
  msgstr ""
5995
 
5996
+ #: templates/admin/table-settings/table_settings_block.inc.php:544
5997
  msgid "Here you can set pagination position: right, center or left."
5998
  msgstr ""
5999
 
6000
+ #: templates/admin/table-settings/table_settings_block.inc.php:552
6001
  msgid "Right"
6002
  msgstr ""
6003
 
6004
+ #: templates/admin/table-settings/table_settings_block.inc.php:553
6005
  msgid "Center"
6006
  msgstr ""
6007
 
6008
+ #: templates/admin/table-settings/table_settings_block.inc.php:554
6009
  msgid "Left"
6010
  msgstr ""
6011
 
6012
+ #: templates/admin/table-settings/table_settings_block.inc.php:563
6013
+ #: templates/admin/table-settings/table_settings_block.inc.php:571
6014
  msgid "Pagination Layout"
6015
  msgstr ""
6016
 
6017
+ #: templates/admin/table-settings/table_settings_block.inc.php:575
6018
  msgid "Here you can choose between different pagination layout."
6019
  msgstr ""
6020
 
6021
+ #: templates/admin/table-settings/table_settings_block.inc.php:583
6022
  msgid ""
6023
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
6024
  msgstr ""
6025
 
6026
+ #: templates/admin/table-settings/table_settings_block.inc.php:584
6027
  msgid "\"Previous\" and \"Next\" buttons only"
6028
  msgstr ""
6029
 
6030
+ #: templates/admin/table-settings/table_settings_block.inc.php:585
6031
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
6032
  msgstr ""
6033
 
6034
+ #: templates/admin/table-settings/table_settings_block.inc.php:586
6035
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
6036
  msgstr ""
6037
 
6038
+ #: templates/admin/table-settings/table_settings_block.inc.php:587
6039
  msgid "Page number buttons only"
6040
  msgstr ""
6041
 
6042
+ #: templates/admin/table-settings/table_settings_block.inc.php:588
6043
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
6044
  msgstr ""
6045
 
6046
+ #: templates/admin/table-settings/table_settings_block.inc.php:609
6047
  msgid "Advanced column filters"
6048
  msgstr "Filtres de colonne avancés"
6049
 
6050
+ #: templates/admin/table-settings/table_settings_block.inc.php:617
6051
  msgid "Advanced filter"
6052
  msgstr "Filtre avancé"
6053
 
6054
+ #: templates/admin/table-settings/table_settings_block.inc.php:624
6055
  msgid ""
6056
  "Enable to show an advanced filter for each of the columns, filters can be "
6057
  "shown in table footer, header or in a separate form."
6060
  "filtres peuvent être affichés dans le pied de page du tableau, l’en-tête ou "
6061
  "dans un formulaire séparé."
6062
 
6063
+ #: templates/admin/table-settings/table_settings_block.inc.php:635
6064
  msgid "Enable advanced column filters"
6065
  msgstr "Activer les filtres de colonne avancés"
6066
 
6067
+ #: templates/admin/table-settings/table_settings_block.inc.php:658
6068
  msgid ""
6069
  "If this is enabled, each column header will be clickable; clicking will sort "
6070
  "the whole table by the content of this column cells ascending or descending."
6073
  "cliquant, vous trierez tout le tableau en fonction du contenu de cette "
6074
  "colonne en ordre croissant ou décroissant."
6075
 
6076
+ #: templates/admin/table-settings/table_settings_block.inc.php:666
6077
  msgid "Allow sorting for the table"
6078
  msgstr "Autoriser le tri pour le tableau"
6079
 
6080
+ #: templates/admin/table-settings/table_settings_block.inc.php:674
6081
  msgid "Main search block"
6082
  msgstr "Bloc de recherche principal"
6083
 
6084
+ #: templates/admin/table-settings/table_settings_block.inc.php:689
6085
  msgid ""
6086
  "If this is enabled, a search block will be displayed on the top right of the "
6087
  "table, allowing to search through whole table with a single input."
6090
  "droite de la table, ce qui permettra de parcourir un tableau entier avec une "
6091
  "seule entrée."
6092
 
6093
+ #: templates/admin/table-settings/table_settings_block.inc.php:697
6094
  msgid "Enable search block"
6095
  msgstr "Activer le bloc de recherche"
6096
 
6097
+ #: templates/admin/table-settings/table_settings_block.inc.php:711
6098
  msgid "Filters in a form"
6099
  msgstr "Filtres dans un formulaire"
6100
 
6101
+ #: templates/admin/table-settings/table_settings_block.inc.php:718
6102
  #: templates/edit_table.inc.php:340
6103
  msgid "Filter in form"
6104
  msgstr "Filtrer sous forme"
6105
 
6106
+ #: templates/admin/table-settings/table_settings_block.inc.php:725
6107
  msgid ""
6108
  "Enable to show the advanced column filter in a form above the table, instead "
6109
  "of showing in the table footer/header."
6112
  "dessus de la table, au lieu de l’afficher dans le pied de page/en-tête du "
6113
  "tableau."
6114
 
6115
+ #: templates/admin/table-settings/table_settings_block.inc.php:734
6116
  msgid "Show filters in a form above the table"
6117
  msgstr "Afficher les filtres dans un formulaire au-dessus du tableau"
6118
 
6119
+ #: templates/admin/table-settings/table_settings_block.inc.php:742
6120
  msgid "Clear filters button"
6121
  msgstr "Bouton effacer les filtres"
6122
 
6123
+ #: templates/admin/table-settings/table_settings_block.inc.php:749
6124
  #: templates/frontend/filter_form.inc.php:32
6125
  msgid "Clear filters"
6126
  msgstr "Effacer les filtres"
6127
 
6128
+ #: templates/admin/table-settings/table_settings_block.inc.php:753
6129
  msgid "Enable to show the clear filters button."
6130
  msgstr "Activer pour afficher le bouton effacer les filtres."
6131
 
6132
+ #: templates/admin/table-settings/table_settings_block.inc.php:754
6133
  msgid ""
6134
  "If filter in form is enabled, clear button will be rendered after the last "
6135
  "filter."
6137
  "Si le filtre dans le formulaire est activé, le bouton effacer sera rendu "
6138
  "après le dernier filtre."
6139
 
6140
+ #: templates/admin/table-settings/table_settings_block.inc.php:759
6141
  msgid ""
6142
  "Otherwise, clear filter button will be rendered above the table next to "
6143
  "\"Table Tools\" buttons."
6145
  "Sinon, le bouton effacer filtre sera affiché au-dessus du tableau à côté des "
6146
  "boutons \"Outils du tableau\"."
6147
 
6148
+ #: templates/admin/table-settings/table_settings_block.inc.php:772
6149
  msgid "Show clear filters button"
6150
  msgstr "Afficher le bouton effacer les filtres"
6151
 
6152
+ #: templates/admin/table-settings/table_settings_block.inc.php:792
6153
  msgid "Allow editing"
6154
  msgstr "Autoriser l’édition"
6155
 
6156
+ #: templates/admin/table-settings/table_settings_block.inc.php:800
6157
  #: templates/edit_table.inc.php:180
6158
  msgid "Front-end editing"
6159
  msgstr "Modification interface publique"
6160
 
6161
+ #: templates/admin/table-settings/table_settings_block.inc.php:807
6162
  msgid "Allow editing the table from the front-end."
6163
  msgstr "Autoriser l’édition du tableau à partir de l’interface publique."
6164
 
6165
+ #: templates/admin/table-settings/table_settings_block.inc.php:815
6166
  msgid "Allow front-end editing"
6167
  msgstr "Autoriser l’édition à partir de l’interface publique"
6168
 
6169
+ #: templates/admin/table-settings/table_settings_block.inc.php:823
6170
  msgid "Popover edit block"
6171
  msgstr "Bloc d’édition Popover"
6172
 
6173
+ #: templates/admin/table-settings/table_settings_block.inc.php:831
6174
  #: templates/edit_table.inc.php:232
6175
  msgid "Popover tools"
6176
  msgstr "Outils Popover"
6177
 
6178
+ #: templates/admin/table-settings/table_settings_block.inc.php:838
6179
  msgid ""
6180
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
6181
  "popover when you click on any row, instead of Table Tools block above the "
6185
  "s’affichent dans un popover lorsque vous cliquez sur une ligne quelconque, "
6186
  "au lieu du bloc Outils de tableau situé au-dessus du tableau."
6187
 
6188
+ #: templates/admin/table-settings/table_settings_block.inc.php:846
6189
  msgid "Editing buttons in a popover"
6190
  msgstr "Modification de boutons dans un popover"
6191
 
6192
+ #: templates/admin/table-settings/table_settings_block.inc.php:854
6193
+ #: templates/admin/table-settings/table_settings_block.inc.php:862
6194
  msgid "In-line editing"
6195
  msgstr "Édition en ligne"
6196
 
6197
+ #: templates/admin/table-settings/table_settings_block.inc.php:869
6198
  msgid ""
6199
  "If this is enabled, front-end users will be able to edit cells by double-"
6200
  "clicking them, not only with the editor dialog."
6203
  "pourront modifier les cellules en double-cliquant dessus, pas seulement avec "
6204
  "la boîte de dialogue de l’éditeur."
6205
 
6206
+ #: templates/admin/table-settings/table_settings_block.inc.php:877
6207
  msgid "Allow in-line editing"
6208
  msgstr "Autoriser l’édition en ligne"
6209
 
6210
+ #: templates/admin/table-settings/table_settings_block.inc.php:892
6211
  #: templates/edit_table.inc.php:192
6212
  msgid "MySQL table name for editing"
6213
  msgstr "Nom de la table MySQL pour l’édition"
6214
 
6215
+ #: templates/admin/table-settings/table_settings_block.inc.php:894
6216
  msgid ""
6217
  "Name of the MySQL table which will be updated when edited from front-end."
6218
  msgstr ""
6219
  "Nom de la table MySQL qui sera mis à jour lors de l’édition depuis "
6220
  "l’interface publique."
6221
 
6222
+ #: templates/admin/table-settings/table_settings_block.inc.php:899
6223
  msgid "MySQL table name"
6224
  msgstr "Nom de la table MySQL"
6225
 
6226
+ #: templates/admin/table-settings/table_settings_block.inc.php:908
6227
  #: templates/edit_table.inc.php:203
6228
  msgid "ID column for editing"
6229
  msgstr "Colonne d’identification pour l’édition"
6230
 
6231
+ #: templates/admin/table-settings/table_settings_block.inc.php:910
6232
  msgid ""
6233
  "Choose the column values from which will be used as row identifiers. MUST be "
6234
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
6240
  "ainsi insérer/modifier/supprimer fonctionnent correctement! wpDataTables "
6241
  "devinera la colonne correcte si elle s’appelle \"id\" ou \"ID\" côté MySQL."
6242
 
6243
+ #: templates/admin/table-settings/table_settings_block.inc.php:924
6244
  #: templates/edit_table.inc.php:267
6245
  msgid "Editor roles"
6246
  msgstr "Rôles de l’éditeur"
6247
 
6248
+ #: templates/admin/table-settings/table_settings_block.inc.php:926
6249
  msgid ""
6250
  "If you want only specific user roles to be able to edit the table, choose in "
6251
  "this dropdown. Leave unchecked to allow editing for everyone."
6254
  "modifier le tableau, choisissez dans cette liste déroulante. Ne cochez pas "
6255
  "la case pour permettre l’édition à tout le monde."
6256
 
6257
+ #: templates/admin/table-settings/table_settings_block.inc.php:931
6258
  msgid "Everyone"
6259
  msgstr "Tout le monde"
6260
 
6261
+ #: templates/admin/table-settings/table_settings_block.inc.php:932
6262
  msgid "Administrators"
6263
  msgstr ""
6264
 
6265
+ #: templates/admin/table-settings/table_settings_block.inc.php:933
6266
  msgid "Editors"
6267
  msgstr ""
6268
 
6269
+ #: templates/admin/table-settings/table_settings_block.inc.php:934
6270
  msgid "Authors"
6271
  msgstr ""
6272
 
6273
+ #: templates/admin/table-settings/table_settings_block.inc.php:935
6274
  msgid "Contributors"
6275
  msgstr ""
6276
 
6277
+ #: templates/admin/table-settings/table_settings_block.inc.php:936
6278
  msgid "Subscribers"
6279
  msgstr ""
6280
 
6281
+ #: templates/admin/table-settings/table_settings_block.inc.php:951
6282
  msgid "Users see and edit only own data"
6283
  msgstr "Les utilisateurs ne voient et ne modifient que leurs propres données"
6284
 
6285
+ #: templates/admin/table-settings/table_settings_block.inc.php:959
6286
  msgid "Users see and edit only their own data"
6287
  msgstr "Les utilisateurs ne voient et ne modifient que leurs propres données"
6288
 
6289
+ #: templates/admin/table-settings/table_settings_block.inc.php:966
6290
  msgid ""
6291
  "If this is enabled, users will see and edit only the rows that are related "
6292
  "to them or were created by them (associated using the User ID column)."
6295
  "que les lignes qui leur sont associées ou qui ont été créées par eux "
6296
  "(associées à l’aide de la colonne ID utilisateur)."
6297
 
6298
+ #: templates/admin/table-settings/table_settings_block.inc.php:974
6299
  msgid "Limit editing to own data only"
6300
  msgstr "Limiter l’édition à vos propres données uniquement"
6301
 
6302
+ #: templates/admin/table-settings/table_settings_block.inc.php:982
6303
  #: templates/edit_table.inc.php:250
6304
  msgid "User ID column"
6305
  msgstr "Colonne ID utilisateur"
6306
 
6307
+ #: templates/admin/table-settings/table_settings_block.inc.php:984
6308
  msgid ""
6309
  "Choose the column values from which will be used as User identifiers. "
6310
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
6315
  "utilisateurs WordPress (wp_users), DOIT être défini comme un entier du côté "
6316
  "MySQL."
6317
 
6318
+ #: templates/admin/table-settings/table_settings_block.inc.php:1017
6319
  #: templates/edit_table.inc.php:350
6320
  msgid "Table tools"
6321
  msgstr "Outils de table"
6322
 
6323
+ #: templates/admin/table-settings/table_settings_block.inc.php:1024
6324
  msgid ""
6325
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6326
  msgstr ""
6327
  "Si cette option est activée, une barre d’outils contenant des outils utiles "
6328
  "sera affichée au-dessus du tableau"
6329
 
6330
+ #: templates/admin/table-settings/table_settings_block.inc.php:1032
6331
  msgid "Enable Table Tools"
6332
  msgstr "Activer les outils de tableau"
6333
 
6334
+ #: templates/admin/table-settings/table_settings_block.inc.php:1040
6335
  msgid "Buttons"
6336
  msgstr "Boutons"
6337
 
6338
+ #: templates/admin/table-settings/table_settings_block.inc.php:1042
6339
  msgid "Choose which buttons to show in the Table Tools block."
6340
  msgstr "Choisissez les boutons à afficher dans le bloc Outils de tableau."
6341
 
6342
+ #: templates/admin/table-settings/table_settings_block.inc.php:1048
6343
  msgid "Columns visibility"
6344
  msgstr "Visibilité des colonnes"
6345
 
6346
+ #: templates/admin/table-settings/table_settings_block.inc.php:1080
6347
  msgid ""
6348
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6349
  "that will be replaced with some actual values at the execution time; usually "
6350
+ "this is used for SQL queries, but you can use it for filtering and editing "
6351
+ "for manual tables and only filtering for tables created from XML, JSON, "
6352
+ "Excel, CSV, Google Spreadsheet and PHP Serialized array."
6353
  msgstr ""
6354
 
6355
+ #: templates/admin/table-settings/table_settings_block.inc.php:1094
6356
+ #: templates/admin/table-settings/table_settings_block.inc.php:1109
6357
+ #: templates/admin/table-settings/table_settings_block.inc.php:1124
6358
  msgid ""
6359
  "This placeholder will be replaced with any value that you will provide in a "
6360
  "shortcode. Provide a default value here that will be used for table "
6365
  "génération de tableaux et quand une différente valeur n’est pas définie dans "
6366
  "le shortcode."
6367
 
6368
+ #: templates/admin/table-settings/table_settings_block.inc.php:1099
6369
+ #: templates/admin/table-settings/table_settings_block.inc.php:1114
6370
+ #: templates/admin/table-settings/table_settings_block.inc.php:1129
6371
+ #: templates/admin/table-settings/table_settings_block.inc.php:1152
6372
+ #: templates/admin/table-settings/table_settings_block.inc.php:1170
6373
+ #: templates/admin/table-settings/table_settings_block.inc.php:1188
6374
+ #: templates/admin/table-settings/table_settings_block.inc.php:1210
6375
+ #: templates/admin/table-settings/table_settings_block.inc.php:1228
6376
+ #: templates/admin/table-settings/table_settings_block.inc.php:1246
6377
+ #: templates/admin/table-settings/table_settings_block.inc.php:1271
6378
+ #: templates/admin/table-settings/table_settings_block.inc.php:1291
6379
+ #: templates/admin/table-settings/table_settings_block.inc.php:1310
6380
+ #: templates/admin/table-settings/table_settings_block.inc.php:1332
6381
  msgid "Default for table generation"
6382
  msgstr "Par défaut pour la génération de table"
6383
 
6384
+ #: templates/admin/table-settings/table_settings_block.inc.php:1145
6385
  msgid ""
6386
  "This placeholder will be replaced with the ID of currently logged in user. "
6387
  "Provide a value here to be used for table generation"
6389
  "Ce texte indicatif sera remplacé par l’ID de l’utilisateur actuellement "
6390
  "connecté. Indiquez ici une valeur à utiliser pour la génération de table"
6391
 
6392
+ #: templates/admin/table-settings/table_settings_block.inc.php:1162
6393
  msgid ""
6394
  "This placeholder will be replaced with the login of currently logged in "
6395
  "user. Provide a value here to be used for table generation"
6397
  "Ce texte indicatif sera remplacé par le login de l’utilisateur actuellement "
6398
  "connecté. Indiquez ici une valeur à utiliser pour la génération de table"
6399
 
6400
+ #: templates/admin/table-settings/table_settings_block.inc.php:1180
6401
  msgid ""
6402
+ "This placeholder will be replaced with the Email of currently logged in "
6403
+ "user. Provide a value here to be used for table generation"
6404
  msgstr ""
6405
+ "Ce conteneur sera remplacé par l'adresse électronique de l'utilisateur "
6406
+ "actuellement connecté. Indiquez ici une valeur à utiliser pour la création "
6407
+ "du tableau"
6408
 
6409
+ #: templates/admin/table-settings/table_settings_block.inc.php:1204
6410
  msgid ""
6411
  "This placeholder will be replaced with the ID of current post. Provide a "
6412
  "value here to be used for table generation"
6414
  "Ce texte indicatif sera remplacé par l’ID du message en cours. Indiquez ici "
6415
  "une valeur à utiliser pour la génération de table"
6416
 
6417
+ #: templates/admin/table-settings/table_settings_block.inc.php:1220
6418
+ msgid ""
6419
+ "This placeholder will be replaced with the First Name of currently logged in "
6420
+ "user. Provide a value here to be used for table generation"
6421
+ msgstr ""
6422
+ "Cet espace réservé sera remplacé par le Prénom de l’utilisateur actuellement "
6423
+ "connecté. Indiquez ici une valeur à utiliser pour la génération du tableau"
6424
+
6425
+ #: templates/admin/table-settings/table_settings_block.inc.php:1238
6426
+ msgid ""
6427
+ "This placeholder will be replaced with the Last Name of currently logged in "
6428
+ "user. Provide a value here to be used for table generation"
6429
+ msgstr ""
6430
+ "Cet espace réservé sera remplacé par le Nom de famille de l’utilisateur "
6431
+ "actuellement connecté. Indiquez ici une valeur à utiliser pour la génération "
6432
+ "du tableau"
6433
+
6434
+ #: templates/admin/table-settings/table_settings_block.inc.php:1262
6435
+ msgid "This placeholder will be replaced with current date."
6436
+ msgstr "Ce conteneur sera remplacé par la date actuelle."
6437
+
6438
+ #: templates/admin/table-settings/table_settings_block.inc.php:1281
6439
+ msgid "This placeholder will be replaced with current datetime."
6440
+ msgstr "Ce conteneur sera remplacé par la date et l'heure actuelles."
6441
+
6442
+ #: templates/admin/table-settings/table_settings_block.inc.php:1301
6443
+ msgid "This placeholder will be replaced with current time."
6444
+ msgstr "Ce conteneur sera remplacé par l'heure actuelle."
6445
+
6446
+ #: templates/admin/table-settings/table_settings_block.inc.php:1325
6447
+ msgid ""
6448
+ "This placeholder will be replaced with the current prefix of WordPress "
6449
+ "database. Provide a value here to be used for table generation"
6450
+ msgstr ""
6451
+ "Ce texte indicatif sera remplacé par le préfixe actuel de la base de données "
6452
+ "WordPress. Indiquez ici une valeur à utiliser pour la génération de table"
6453
+
6454
+ #: templates/admin/table-settings/table_settings_block.inc.php:1356
6455
+ msgid ""
6456
+ "In premium version you can customize each table with different skin, font, "
6457
+ "background , colors and lot more. Checkout new table customize settings "
6458
+ "below."
6459
+ msgstr ""
6460
+
6461
+ #: templates/admin/table-settings/table_settings_block.inc.php:1363
6462
+ msgid "Main"
6463
+ msgstr ""
6464
+
6465
+ #: templates/admin/table-settings/table_settings_block.inc.php:1375
6466
+ msgid "Table border"
6467
+ msgstr ""
6468
+
6469
+ #: templates/admin/table-settings/table_settings_block.inc.php:1391
6470
+ msgid "Custom CSS"
6471
+ msgstr ""
6472
+
6473
+ #: templates/admin/table-settings/table_settings_block.inc.php:1716
6474
+ msgid "Remove borders in table header"
6475
+ msgstr ""
6476
+
6477
+ #: templates/admin/table-settings/table_settings_block.inc.php:2028
6478
+ msgid ""
6479
+ "This CSS will be inserted as an inline style block on every page that has "
6480
+ "this wpDataTable."
6481
+ msgstr ""
6482
+
6483
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6484
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6485
  msgid "Go to Dashboard"
9188
  #~ "partir de XML, JSON, Excel, CSV, Google Spreadsheet et les tableaux PHP "
9189
  #~ "Serialized."
9190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9191
  #~ msgid ""
9192
  #~ "wpDataTables is the best-selling WordPress table plugin which makes your "
9193
  #~ "work with tables, charts and data management easy. 30,000+ companies and "
languages/hu_HU/wpdatatables-hu_HU.mo CHANGED
Binary file
languages/hu_HU/wpdatatables-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-01-15 17:05+0100\n"
5
- "PO-Revision-Date: 2021-01-15 17:05+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: hu\n"
@@ -97,13 +97,13 @@ msgstr ""
97
  msgid "Go Premium"
98
  msgstr ""
99
 
100
- #: controllers/wdt_admin.php:516 controllers/wdt_admin.php:565
101
- #: controllers/wdt_admin.php:608 controllers/wdt_admin.php:629
102
- #: controllers/wdt_admin.php:676 controllers/wdt_admin.php:702
103
- #: controllers/wdt_admin.php:721 controllers/wdt_admin.php:741
104
- #: controllers/wdt_admin.php:760 controllers/wdt_admin.php:780
105
- #: controllers/wdt_admin.php:800 controllers/wdt_admin.php:820
106
- #: controllers/wdt_admin.php:839
107
  msgid "You do not have sufficient permissions to access this page."
108
  msgstr ""
109
 
@@ -205,6 +205,27 @@ msgid ""
205
  "placeholders and also for Export file name."
206
  msgstr ""
207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  #: source/class.wdtbrowsechartstable.php:141
209
  #: source/class.wdtbrowsetable.php:168
210
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
@@ -227,7 +248,7 @@ msgid "Configure"
227
  msgstr ""
228
 
229
  #: source/class.wdtbrowsechartstable.php:162
230
- #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:303
231
  #: templates/admin/browse/bulk_actions.inc.php:14
232
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
233
  msgid "Delete"
@@ -309,6 +330,11 @@ msgstr ""
309
  msgid "No wpDataCharts in the system yet."
310
  msgstr ""
311
 
 
 
 
 
 
312
  #: source/class.wdtbrowsetable.php:231
313
  msgid "MySQL"
314
  msgstr ""
@@ -317,15 +343,15 @@ msgstr ""
317
  msgid "Manual"
318
  msgstr ""
319
 
320
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2216
321
- #: source/class.wpdatatable.php:2286
322
- #: templates/admin/table-settings/table_settings_block.inc.php:1031
323
  msgid "Excel"
324
  msgstr ""
325
 
326
- #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2225
327
- #: source/class.wpdatatable.php:2296
328
- #: templates/admin/table-settings/table_settings_block.inc.php:1032
329
  msgid "CSV"
330
  msgstr ""
331
 
@@ -338,7 +364,7 @@ msgid "JSON"
338
  msgstr ""
339
 
340
  #: source/class.wdtbrowsetable.php:249
341
- #: templates/admin/table-settings/table_settings_block.inc.php:111
342
  #: templates/edit_table.inc.php:91
343
  msgid "Serialized PHP array"
344
  msgstr ""
@@ -428,22 +454,22 @@ msgstr ""
428
  msgid "Attachment"
429
  msgstr ""
430
 
431
- #: source/class.wdttools.php:159
432
  msgid ""
433
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
434
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
435
  "to the web</b> "
436
  msgstr ""
437
 
438
- #: source/class.wdttools.php:287
439
  msgid "Back to date"
440
  msgstr ""
441
 
442
- #: source/class.wdttools.php:288
443
  msgid "Browse"
444
  msgstr ""
445
 
446
- #: source/class.wdttools.php:289 source/class.wdttools.php:410
447
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
448
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
449
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
@@ -461,24 +487,24 @@ msgstr ""
461
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
462
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
463
  #: templates/admin/table-settings/table_preview_block.inc.php:86
464
- #: templates/admin/table-settings/table_settings_block.inc.php:40
465
  #: templates/common/delete_modal.inc.php:39
466
  msgid "Cancel"
467
  msgstr ""
468
 
469
- #: source/class.wdttools.php:290
470
  msgid " field cannot be empty!"
471
  msgstr ""
472
 
473
- #: source/class.wdttools.php:291
474
  msgid "Use selected file"
475
  msgstr ""
476
 
477
- #: source/class.wdttools.php:292
478
  msgid "Choose file"
479
  msgstr ""
480
 
481
- #: source/class.wdttools.php:293 templates/admin/common/error_modal.inc.php:23
482
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
483
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
484
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
@@ -486,379 +512,389 @@ msgstr ""
486
  msgid "Close"
487
  msgstr ""
488
 
489
- #: source/class.wdttools.php:294
490
  msgid "Column has been added!"
491
  msgstr ""
492
 
493
- #: source/class.wdttools.php:295
494
  msgid "Column header cannot be empty!"
495
  msgstr ""
496
 
497
- #: source/class.wdttools.php:296
498
  msgid "Please confirm column deletion!"
499
  msgstr ""
500
 
501
- #: source/class.wdttools.php:297
502
  msgid "Column has been removed!"
503
  msgstr ""
504
 
505
- #: source/class.wdttools.php:298
506
  msgid "Please select columns that you want to use in table"
507
  msgstr ""
508
 
509
- #: source/class.wdttools.php:299 source/class.wpdatatable.php:2234
510
- #: source/class.wpdatatable.php:2306
511
- #: templates/admin/table-settings/table_settings_block.inc.php:1033
512
  msgid "Copy"
513
  msgstr ""
514
 
515
- #: source/class.wdttools.php:300
516
  msgid "There was an error trying to insert a new row!"
517
  msgstr ""
518
 
519
- #: source/class.wdttools.php:301
520
  msgid "Data has been saved!"
521
  msgstr ""
522
 
523
- #: source/class.wdttools.php:302
524
  msgid "detach"
525
  msgstr ""
526
 
527
- #: source/class.wdttools.php:304
528
  msgid "Delete selected"
529
  msgstr ""
530
 
531
- #: source/class.wdttools.php:305 templates/settings.inc.php:553
532
  #: templates/settings.inc.php:627
533
  msgid "Error!"
534
  msgstr ""
535
 
536
- #: source/class.wdttools.php:306
537
  msgid "Please upload or choose a file from Media Library!"
538
  msgstr ""
539
 
540
- #: source/class.wdttools.php:307
541
  msgid "From"
542
  msgstr ""
543
 
544
- #: source/class.wdttools.php:308
545
  msgid "Please provide a valid e-mail address for field"
546
  msgstr ""
547
 
548
- #: source/class.wdttools.php:309
549
  msgid "Please provide a valid URL link for field"
550
  msgstr ""
551
 
552
- #: source/class.wdttools.php:310
553
  msgid "You have entered invalid value. Press ESC to cancel."
554
  msgstr ""
555
 
556
- #: source/class.wdttools.php:311 source/class.wdttools.php:340
557
  msgid "Show _MENU_ entries"
558
  msgstr "_MENU_ elem megtekintése"
559
 
560
- #: source/class.wdttools.php:312
561
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
562
  msgid "Merge"
563
  msgstr ""
564
 
565
- #: source/class.wdttools.php:313
566
  msgid "New column"
567
  msgstr ""
568
 
569
- #: source/class.wdttools.php:314
570
  msgid "Number of columns can not be empty or 0"
571
  msgstr ""
572
 
573
- #: source/class.wdttools.php:315
574
  msgid "Number of rows can not be empty or 0"
575
  msgstr ""
576
 
577
- #: source/class.wdttools.php:317
578
  msgid ": activate to sort column ascending"
579
  msgstr ""
580
 
581
- #: source/class.wdttools.php:318
582
  msgid ": activate to sort column descending"
583
  msgstr ""
584
 
585
- #: source/class.wdttools.php:320
586
  msgid "Ok"
587
  msgstr ""
588
 
589
- #: source/class.wdttools.php:322
590
  msgid "First"
591
  msgstr ""
592
 
593
- #: source/class.wdttools.php:323
594
  msgid "Last"
595
  msgstr ""
596
 
597
- #: source/class.wdttools.php:324
598
  msgid "Next"
599
  msgstr ""
600
 
601
- #: source/class.wdttools.php:325
602
  msgid "Previous"
603
  msgstr ""
604
 
605
- #: source/class.wdttools.php:327
606
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
607
  msgid "Replace"
608
  msgstr ""
609
 
610
- #: source/class.wdttools.php:328
611
  msgid "Row has been deleted!"
612
  msgstr ""
613
 
614
- #: source/class.wdttools.php:329
 
 
 
 
615
  msgid "Select a file to use in table"
616
  msgstr ""
617
 
618
- #: source/class.wdttools.php:330
619
  msgid "Select an Excel or CSV file"
620
  msgstr ""
621
 
622
- #: source/class.wdttools.php:331
623
  msgid "No data available in table"
624
  msgstr ""
625
 
626
- #: source/class.wdttools.php:332
627
  msgid "Plugin settings saved successfully"
628
  msgstr ""
629
 
630
- #: source/class.wdttools.php:333
631
  msgid ""
632
  "Unable to save settings of plugin. Please try again or contact us over "
633
  "Support page."
634
  msgstr ""
635
 
636
- #: source/class.wdttools.php:334
637
  msgid "Shortcode has been copied to the clipboard."
638
  msgstr ""
639
 
640
- #: source/class.wdttools.php:335
641
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
642
  msgstr "_START_ -tól _END_ -ig a _TOTAL_ elemből"
643
 
644
- #: source/class.wdttools.php:336
645
  msgid "Showing 0 to 0 of 0 entries"
646
  msgstr "0-től 0-ig a 0 elemből"
647
 
648
- #: source/class.wdttools.php:337
649
  msgid "(filtered from _MAX_ total entries)"
650
  msgstr ""
651
 
652
- #: source/class.wdttools.php:339
653
  msgid ","
654
  msgstr ""
655
 
656
- #: source/class.wdttools.php:341
657
  msgid "Loading..."
658
  msgstr "Betöltés..."
659
 
660
- #: source/class.wdttools.php:342
661
  msgid "Processing..."
662
  msgstr ""
663
 
664
- #: source/class.wdttools.php:343
665
  msgid "SQL error"
666
  msgstr ""
667
 
668
- #: source/class.wdttools.php:344
669
  msgid "Search: "
670
  msgstr "Keresés:"
671
 
672
- #: source/class.wdttools.php:345 templates/settings.inc.php:559
673
  #: templates/settings.inc.php:625
674
  msgid "Success!"
675
  msgstr ""
676
 
677
- #: source/class.wdttools.php:346
678
  msgid "No matching records found"
679
  msgstr ""
680
 
681
- #: source/class.wdttools.php:347
682
  msgid ""
683
  "System info data has been copied to the clipboard. You can now paste it in "
684
  "file or in support topic."
685
  msgstr ""
686
 
687
- #: source/class.wdttools.php:348
688
  msgid "Table saved successfully!"
689
  msgstr ""
690
 
691
- #: source/class.wdttools.php:349
692
  msgid "To"
693
  msgstr ""
694
 
695
- #: source/class.wdttools.php:385
696
  #: templates/admin/common/premium_modal.inc.php:17
 
 
697
  msgid "This is a premium feature"
698
  msgstr ""
699
 
700
- #: source/class.wdttools.php:386
701
  #: templates/admin/common/premium_modal.inc.php:26
 
 
702
  msgid "This feature is available only in premium version of wpDataTables"
703
  msgstr ""
704
 
705
- #: source/class.wdttools.php:387
706
  #: templates/admin/getting-started/getting_started.inc.php:133
707
  #: templates/admin/getting-started/getting_started.inc.php:145
708
  #: templates/admin/getting-started/getting_started.inc.php:157
709
  #: templates/admin/getting-started/getting_started.inc.php:169
 
 
710
  msgid "Compare and View Pricing"
711
  msgstr ""
712
 
713
- #: source/class.wdttools.php:406
714
  msgid "Field cannot be empty!"
715
  msgstr ""
716
 
717
- #: source/class.wdttools.php:407
718
  msgid "Please choose chart type."
719
  msgstr ""
720
 
721
- #: source/class.wdttools.php:408
722
  msgid "Please select wpDataTable from dropdown."
723
  msgstr ""
724
 
725
- #: source/class.wdttools.php:409
726
  msgid "Columns field cannot be empty"
727
  msgstr ""
728
 
729
- #: source/class.wdttools.php:411
730
  msgid ""
731
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
732
  "clicking on Cancel button."
733
  msgstr ""
734
 
735
- #: source/class.wdttools.php:412
736
  msgid "Finish Tutorial"
737
  msgstr ""
738
 
739
- #: source/class.wdttools.php:413
740
  msgid "Continue"
741
  msgstr ""
742
 
743
- #: source/class.wdttools.php:414
744
  msgid "Start"
745
  msgstr ""
746
 
747
- #: source/class.wdttools.php:415
748
  msgid "Skip Tutorial"
749
  msgstr ""
750
 
751
- #: source/class.wdttools.php:418 source/class.wdttools.php:484
752
- #: source/class.wdttools.php:526
753
  msgid "Welcome to the tutorial!"
754
  msgstr ""
755
 
756
- #: source/class.wdttools.php:419 source/class.wdttools.php:485
757
- #: source/class.wdttools.php:527
758
  msgid "Hello "
759
  msgstr ""
760
 
761
- #: source/class.wdttools.php:419
762
  msgid ""
763
  ", in this tutorial, we will show you how to create a simple table from "
764
  "scratch by choosing a custom number of columns and rows. How to customize "
765
  "each cell, merge cells and a lot more."
766
  msgstr ""
767
 
768
- #: source/class.wdttools.php:422
769
  msgid " Let's create a new wpDataTable from scratch!"
770
  msgstr ""
771
 
772
- #: source/class.wdttools.php:423 source/class.wdttools.php:489
773
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
774
  msgstr ""
775
 
776
- #: source/class.wdttools.php:426
777
  msgid "Choose this option"
778
  msgstr ""
779
 
780
- #: source/class.wdttools.php:427
781
  msgid "Please select 'Create a simple table from scratch'."
782
  msgstr ""
783
 
784
- #: source/class.wdttools.php:430 source/class.wdttools.php:496
785
  msgid "Click Next"
786
  msgstr ""
787
 
788
- #: source/class.wdttools.php:431 source/class.wdttools.php:497
789
  msgid "Please click the 'Next' button to continue."
790
  msgstr ""
791
 
792
- #: source/class.wdttools.php:434
793
  msgid "Welcome to the Simple table wizard!"
794
  msgstr ""
795
 
796
- #: source/class.wdttools.php:435
797
  msgid "Please click 'Continue' button to move on."
798
  msgstr ""
799
 
800
- #: source/class.wdttools.php:438
801
  msgid "Choose a name for your table"
802
  msgstr ""
803
 
804
- #: source/class.wdttools.php:439
805
  msgid "After inserting table name, click 'Continue' to move on."
806
  msgstr ""
807
 
808
- #: source/class.wdttools.php:442
809
  msgid "Choose the number of columns for your table"
810
  msgstr ""
811
 
812
- #: source/class.wdttools.php:443
813
  msgid ""
814
  "Please choose how many columns it will have. Remember that you can always "
815
  "add or reduce the number of columns later. Click 'Continue' when you finish."
816
  msgstr ""
817
 
818
- #: source/class.wdttools.php:446
819
  msgid "Choose the number of rows for your table."
820
  msgstr ""
821
 
822
- #: source/class.wdttools.php:447
823
  msgid ""
824
  "Please choose how many rows it will have. Remember that you can always add "
825
  "or reduce the number of rows later. Click 'Continue' when you finish."
826
  msgstr ""
827
 
828
- #: source/class.wdttools.php:450
829
  msgid "Click on the 'Generate Table' button"
830
  msgstr ""
831
 
832
- #: source/class.wdttools.php:451
833
  msgid "When you click on the button, the empty table will be ready for you. "
834
  msgstr ""
835
 
836
- #: source/class.wdttools.php:454
837
  msgid "We are generating the table..."
838
  msgstr ""
839
 
840
- #: source/class.wdttools.php:455
841
  msgid "Please, when you see the table, click 'Continue' to move on."
842
  msgstr ""
843
 
844
- #: source/class.wdttools.php:458
845
  msgid ""
846
  "Nice job! You just configured your table and it is ready to fill it with "
847
  "data."
848
  msgstr ""
849
 
850
- #: source/class.wdttools.php:459
851
  msgid ""
852
  "Now we will guide you on how to insert data and check table layout throw "
853
  "Simple table editor, table toolbar and table preview. Please click "
854
  "'Continue' to move on."
855
  msgstr ""
856
 
857
- #: source/class.wdttools.php:462
858
  msgid "This is Simple table editor"
859
  msgstr ""
860
 
861
- #: source/class.wdttools.php:463
862
  msgid ""
863
  "Here you can populate your table with data. <br><br>You can move around the "
864
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
@@ -867,11 +903,11 @@ msgid ""
867
  "line of the row header. Click 'Continue' to move on."
868
  msgstr ""
869
 
870
- #: source/class.wdttools.php:466
871
  msgid "Check out the Simple table toolbar"
872
  msgstr ""
873
 
874
- #: source/class.wdttools.php:467
875
  msgid ""
876
  "Here you can style and insert custom data for each cell or range of cells. "
877
  "You can add or delete columns and rows, merge cells, customize sections by "
@@ -879,39 +915,39 @@ msgid ""
879
  "ratings or custom HTML code."
880
  msgstr ""
881
 
882
- #: source/class.wdttools.php:470
883
  msgid "Responsive table views"
884
  msgstr ""
885
 
886
- #: source/class.wdttools.php:471
887
  msgid ""
888
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
889
  "tab that you need, so you can make sure your table looks excellent across "
890
  "all devices. "
891
  msgstr ""
892
 
893
- #: source/class.wdttools.php:474
894
  msgid "Real-time preview"
895
  msgstr ""
896
 
897
- #: source/class.wdttools.php:475
898
  msgid ""
899
  "Here you will see how your table will look like on the page. Please click "
900
  "'Continue' to move on."
901
  msgstr ""
902
 
903
- #: source/class.wdttools.php:478
904
  msgid "Congrats! Your table is ready."
905
  msgstr ""
906
 
907
- #: source/class.wdttools.php:479
908
  msgid ""
909
  "Now you can copy the shortcode for this table, and check out how it looks on "
910
  "your website when you paste it to a post or page. You can always come back "
911
  "and edit the table as you like."
912
  msgstr ""
913
 
914
- #: source/class.wdttools.php:485
915
  msgid ""
916
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
917
  "existing data source. \"Linked\" in this context means that if you create a "
@@ -920,54 +956,54 @@ msgid ""
920
  "reflected in the table."
921
  msgstr ""
922
 
923
- #: source/class.wdttools.php:488
924
  msgid "Let's create a new wpDataTable!"
925
  msgstr ""
926
 
927
- #: source/class.wdttools.php:492
928
  msgid "Choose this option."
929
  msgstr ""
930
 
931
- #: source/class.wdttools.php:493
932
  msgid "Please select 'Create a table linked to an existing data source'."
933
  msgstr ""
934
 
935
- #: source/class.wdttools.php:500
936
- #: templates/admin/table-settings/table_settings_block.inc.php:95
937
  msgid "Input data source type"
938
  msgstr ""
939
 
940
- #: source/class.wdttools.php:501
941
  msgid "Please select a data source type that you need."
942
  msgstr ""
943
 
944
- #: source/class.wdttools.php:504
945
  msgid "Select Data source type"
946
  msgstr ""
947
 
948
- #: source/class.wdttools.php:505
949
  msgid ""
950
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
951
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
952
  "are available in Premium version)"
953
  msgstr ""
954
 
955
- #: source/class.wdttools.php:508
956
- #: templates/admin/table-settings/table_settings_block.inc.php:122
957
  msgid "Input file path or URL"
958
  msgstr ""
959
 
960
- #: source/class.wdttools.php:509
961
  msgid ""
962
  "Upload your file or provide the full URL here. When you finish click "
963
  "'Continue' button."
964
  msgstr ""
965
 
966
- #: source/class.wdttools.php:512
967
  msgid "Click Save Changes"
968
  msgstr ""
969
 
970
- #: source/class.wdttools.php:513
971
  msgid ""
972
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
973
  "get an error message after button click and you are not able to solve it, "
@@ -976,117 +1012,117 @@ msgid ""
976
  "click Skip tutorial."
977
  msgstr ""
978
 
979
- #: source/class.wdttools.php:516
980
  msgid "The table is creating..."
981
  msgstr ""
982
 
983
- #: source/class.wdttools.php:517
984
  msgid ""
985
  "Now the table is creating. Wait until you see it in the background and then "
986
  "click 'Continue'."
987
  msgstr ""
988
 
989
- #: source/class.wdttools.php:520
990
  msgid "Nice job! You just created your first wpDataTable!"
991
  msgstr ""
992
 
993
- #: source/class.wdttools.php:521
994
  msgid ""
995
  "Now you can copy the shortcode for this table, and check out how it looks on "
996
  "your website when you paste it to a post or page."
997
  msgstr ""
998
 
999
- #: source/class.wdttools.php:527
1000
  msgid ""
1001
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1002
  "plugin."
1003
  msgstr ""
1004
 
1005
- #: source/class.wdttools.php:530
1006
  msgid "Let's create a new wpDataTables Chart!"
1007
  msgstr ""
1008
 
1009
- #: source/class.wdttools.php:531
1010
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1011
  msgstr ""
1012
 
1013
- #: source/class.wdttools.php:534
1014
  msgid "Welcome to the Chart Wizard!"
1015
  msgstr ""
1016
 
1017
- #: source/class.wdttools.php:535
1018
  msgid ""
1019
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1020
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1021
  msgstr ""
1022
 
1023
- #: source/class.wdttools.php:538
1024
  msgid "Follow the steps in the Chart Wizard"
1025
  msgstr ""
1026
 
1027
- #: source/class.wdttools.php:539
1028
  msgid ""
1029
  "By following these steps, you will finish building your chart in the Chart "
1030
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1031
  "'Continue' button to move forward."
1032
  msgstr ""
1033
 
1034
- #: source/class.wdttools.php:542
1035
  msgid "Choose a name for your Chart"
1036
  msgstr ""
1037
 
1038
- #: source/class.wdttools.php:543
1039
  msgid "Click 'Continue' button when you’re ready to move forward."
1040
  msgstr ""
1041
 
1042
- #: source/class.wdttools.php:546
1043
  msgid "In wpDataTables you can find several charts render engines."
1044
  msgstr ""
1045
 
1046
- #: source/class.wdttools.php:547
1047
  msgid ""
1048
  "Click on the dropdown, and you will see several options that you can choose "
1049
  "from.(Google charts are only available) <br><br>To continue, click on the "
1050
  "dropdown."
1051
  msgstr ""
1052
 
1053
- #: source/class.wdttools.php:550
1054
  msgid "Choose Google chart engine."
1055
  msgstr ""
1056
 
1057
- #: source/class.wdttools.php:551
1058
  msgid ""
1059
  "By clicking on Google chart options, you will choose the engine that will "
1060
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1061
  "to move forward."
1062
  msgstr ""
1063
 
1064
- #: source/class.wdttools.php:554
1065
  msgid "Different charts types. "
1066
  msgstr ""
1067
 
1068
- #: source/class.wdttools.php:555
1069
  msgid ""
1070
  "Here you can choose a chart type. Please, click on the chart type that you "
1071
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1072
  "forward."
1073
  msgstr ""
1074
 
1075
- #: source/class.wdttools.php:558
1076
  msgid "The first step is finished!"
1077
  msgstr ""
1078
 
1079
- #: source/class.wdttools.php:559
1080
  msgid "Let's move on. Please, click 'Next' to continue."
1081
  msgstr ""
1082
 
1083
- #: source/class.wdttools.php:562
1084
  msgid ""
1085
  "Now you need to choose a wpDataTable based on which we will build a chart "
1086
  "for you"
1087
  msgstr ""
1088
 
1089
- #: source/class.wdttools.php:563
1090
  msgid ""
1091
  "Click on the dropdown, and all your tables will be listed. The columns of "
1092
  "the table that you choose will be used for creating the chart.<br><br>If you "
@@ -1094,59 +1130,59 @@ msgid ""
1094
  "button and create wpDataTable that would contain the data to visualize first."
1095
  msgstr ""
1096
 
1097
- #: source/class.wdttools.php:566
1098
  msgid "Pick your wpDataTable"
1099
  msgstr ""
1100
 
1101
- #: source/class.wdttools.php:567
1102
  msgid ""
1103
  "Pick a wpDataTable from which you want to render a chart and when you "
1104
  "finish, please click 'Continue' to move on."
1105
  msgstr ""
1106
 
1107
- #: source/class.wdttools.php:570
1108
  msgid "The second step is finished!"
1109
  msgstr ""
1110
 
1111
- #: source/class.wdttools.php:571
1112
  msgid ""
1113
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1114
  msgstr ""
1115
 
1116
- #: source/class.wdttools.php:574
1117
  msgid "Just a heads up!"
1118
  msgstr ""
1119
 
1120
- #: source/class.wdttools.php:575
1121
  msgid ""
1122
  "Here you will choose from which columns you will create a chart.<br><br> "
1123
  "Please click 'Continue' button to move forward."
1124
  msgstr ""
1125
 
1126
- #: source/class.wdttools.php:578
1127
  msgid "Meet the wpDataTable Column Blocks"
1128
  msgstr ""
1129
 
1130
- #: source/class.wdttools.php:579
1131
  msgid ""
1132
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1133
  "or click on the arrow to move the desired column to the 'Columns used in the "
1134
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1135
  msgstr ""
1136
 
1137
- #: source/class.wdttools.php:582
1138
  msgid "Well done!"
1139
  msgstr ""
1140
 
1141
- #: source/class.wdttools.php:583
1142
  msgid "Just two more steps to go. Please click 'Next' to continue."
1143
  msgstr ""
1144
 
1145
- #: source/class.wdttools.php:586
1146
  msgid "Chart settings and chart preview."
1147
  msgstr ""
1148
 
1149
- #: source/class.wdttools.php:587
1150
  msgid ""
1151
  "Here you can adjust chart settings, different parameters are grouped in "
1152
  "section; adjusting the parameters will be reflected in the preview of your "
@@ -1154,51 +1190,51 @@ msgid ""
1154
  "button to move forward."
1155
  msgstr ""
1156
 
1157
- #: source/class.wdttools.php:590
1158
  msgid "In this sidebar, you can find the chart settings section."
1159
  msgstr ""
1160
 
1161
- #: source/class.wdttools.php:591
1162
  msgid ""
1163
  "By clicking on each section, you can set your desired parameters per section."
1164
  "<br><br> Please click 'Continue' button to move on."
1165
  msgstr ""
1166
 
1167
- #: source/class.wdttools.php:594
1168
  msgid "Here are the available chart options"
1169
  msgstr ""
1170
 
1171
- #: source/class.wdttools.php:595
1172
  msgid ""
1173
  "Set different chart options for the chosen section to get your desired chart "
1174
  "look.<br><br> Please click 'Continue' button to move on."
1175
  msgstr ""
1176
 
1177
- #: source/class.wdttools.php:598
1178
  msgid "How your chart will look like on the page of your website"
1179
  msgstr ""
1180
 
1181
- #: source/class.wdttools.php:599
1182
  msgid ""
1183
  "Here you can see a preview of your chart based on the settings you have "
1184
  "chosen.<br><br> Please click 'Continue' button to move on."
1185
  msgstr ""
1186
 
1187
- #: source/class.wdttools.php:602
1188
  msgid "You can save your chart now"
1189
  msgstr ""
1190
 
1191
- #: source/class.wdttools.php:603
1192
  msgid ""
1193
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1194
  "button and all your settings for this chart will be saved in the database."
1195
  msgstr ""
1196
 
1197
- #: source/class.wdttools.php:606
1198
  msgid "Congrats! Your first chart is ready!"
1199
  msgstr ""
1200
 
1201
- #: source/class.wdttools.php:607
1202
  msgid ""
1203
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1204
  "page. <br><br>You may now finish this tutorial. "
@@ -1212,44 +1248,44 @@ msgstr ""
1212
  msgid "You are mixing data types (several date axes and several number)"
1213
  msgstr ""
1214
 
1215
- #: source/class.wpdatatable.php:1895
1216
  msgid ""
1217
  "You are trying to load a table of an unknown type. Probably you did not "
1218
  "activate the addon which is required to use this table type."
1219
  msgstr ""
1220
 
1221
- #: source/class.wpdatatable.php:2134 source/class.wpdatatable.php:2137
1222
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1223
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1224
- #: templates/admin/table-settings/table_settings_block.inc.php:312
1225
  #: templates/edit_table.inc.php:409
1226
  msgid "All"
1227
  msgstr ""
1228
 
1229
- #: source/class.wpdatatable.php:2195 source/class.wpdatatable.php:2264
1230
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1231
  msgid "Columns"
1232
  msgstr ""
1233
 
1234
- #: source/class.wpdatatable.php:2205 source/class.wpdatatable.php:2274
1235
- #: templates/admin/table-settings/table_settings_block.inc.php:1030
1236
  msgid "Print"
1237
  msgstr ""
1238
 
1239
- #: source/class.wpdatatable.php:2244 source/class.wpdatatable.php:2317
1240
- #: templates/admin/table-settings/table_settings_block.inc.php:1034
1241
  msgid "PDF"
1242
  msgstr ""
1243
 
1244
- #: source/class.wpdatatable.php:2252
1245
  msgid "Export"
1246
  msgstr ""
1247
 
1248
- #: source/class.wpdatatable.php:2330
1249
  msgid "Search table"
1250
  msgstr ""
1251
 
1252
- #: source/class.wpdatatable.php:2331
1253
  msgid "Showing _MENU_ Entries"
1254
  msgstr "_MENU_ elem megtekintése"
1255
 
@@ -1268,7 +1304,7 @@ msgstr ""
1268
  msgid "if you have some questions or problems with the plugin."
1269
  msgstr ""
1270
 
1271
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:498
1272
  msgid "wpDataTables Addons"
1273
  msgstr ""
1274
 
@@ -1282,12 +1318,12 @@ msgid ""
1282
  msgstr ""
1283
 
1284
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1285
- #: templates/admin/dashboard/dashboard.inc.php:569
1286
  msgid "Report Builder"
1287
  msgstr ""
1288
 
1289
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1290
- #: templates/admin/dashboard/dashboard.inc.php:573
1291
  msgid ""
1292
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1293
  "XLSX documents filled in with actual data from your database."
@@ -1313,7 +1349,7 @@ msgid "NEW"
1313
  msgstr ""
1314
 
1315
  #: templates/admin/addons/addons.inc.php:40
1316
- #: templates/admin/dashboard/dashboard.inc.php:516
1317
  msgid "Master Detail Tables for wpDataTables"
1318
  msgstr ""
1319
 
@@ -1334,7 +1370,7 @@ msgid "Learn more"
1334
  msgstr ""
1335
 
1336
  #: templates/admin/addons/addons.inc.php:67
1337
- #: templates/admin/dashboard/dashboard.inc.php:543
1338
  msgid "Powerful Filters for wpDataTables"
1339
  msgstr ""
1340
 
@@ -1346,24 +1382,24 @@ msgid ""
1346
  msgstr ""
1347
 
1348
  #: templates/admin/addons/addons.inc.php:120
1349
- #: templates/admin/dashboard/dashboard.inc.php:596
1350
  msgid "Formidable Forms integration for wpDataTables"
1351
  msgstr ""
1352
 
1353
  #: templates/admin/addons/addons.inc.php:123
1354
- #: templates/admin/dashboard/dashboard.inc.php:600
1355
  msgid ""
1356
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1357
  "create wpDataTables from Formidable Forms entries data."
1358
  msgstr ""
1359
 
1360
  #: templates/admin/addons/addons.inc.php:143
1361
- #: templates/admin/dashboard/dashboard.inc.php:622
1362
  msgid "Gravity Forms integration for wpDataTables"
1363
  msgstr ""
1364
 
1365
  #: templates/admin/addons/addons.inc.php:146
1366
- #: templates/admin/dashboard/dashboard.inc.php:626
1367
  msgid ""
1368
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1369
  "wpDataTables from Gravity Forms entries data."
@@ -1439,7 +1475,7 @@ msgid "Chart title & type"
1439
  msgstr ""
1440
 
1441
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1442
- #: templates/admin/table-settings/table_settings_block.inc.php:59
1443
  #: templates/chart_wizard.inc.php:36
1444
  msgid "Data source"
1445
  msgstr ""
@@ -1482,6 +1518,7 @@ msgstr ""
1482
 
1483
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1484
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
 
1485
  #: templates/edit_table.inc.php:730
1486
  msgid "Color"
1487
  msgstr ""
@@ -1697,8 +1734,8 @@ msgstr ""
1697
  #: templates/admin/getting-started/getting_started.inc.php:144
1698
  #: templates/admin/getting-started/getting_started.inc.php:156
1699
  #: templates/admin/getting-started/getting_started.inc.php:168
1700
- #: templates/admin/table-settings/table_settings_block.inc.php:105
1701
- #: templates/admin/table-settings/table_settings_block.inc.php:108
1702
  msgid "Available in Premium"
1703
  msgstr ""
1704
 
@@ -1822,10 +1859,6 @@ msgstr ""
1822
  msgid "Axes"
1823
  msgstr ""
1824
 
1825
- #: templates/admin/chart_wizard/steps/step4.inc.php:17
1826
- msgid "Title"
1827
- msgstr ""
1828
-
1829
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1830
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1831
  msgid "Tooltip"
@@ -1914,6 +1947,8 @@ msgstr ""
1914
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
1915
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
1916
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
 
 
1917
  msgid "Background color"
1918
  msgstr ""
1919
 
@@ -1932,6 +1967,7 @@ msgstr ""
1932
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
1933
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
1934
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
 
1935
  msgid "Border color"
1936
  msgstr ""
1937
 
@@ -1970,6 +2006,7 @@ msgstr ""
1970
 
1971
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
1972
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
 
1973
  msgid "Font size"
1974
  msgstr ""
1975
 
@@ -2331,14 +2368,14 @@ msgstr ""
2331
  #: templates/admin/dashboard/dashboard.inc.php:30
2332
  #: templates/admin/getting-started/getting_started.inc.php:34
2333
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2334
- #: templates/admin/settings/settings.inc.php:96
2335
  #: templates/admin/support/support.inc.php:31
2336
  #: templates/admin/support/support.inc.php:47
2337
  #: templates/admin/system-info/system_info.inc.php:29
2338
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2339
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2340
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2341
- #: templates/admin/table-settings/table_settings_block.inc.php:1197
2342
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2343
  msgid "View Documentation"
2344
  msgstr ""
@@ -2567,180 +2604,181 @@ msgid "Version "
2567
  msgstr ""
2568
 
2569
  #: templates/admin/dashboard/dashboard.inc.php:340
2570
- msgid ""
2571
- "A minor update with a couple of features, bug fixes and stability "
2572
- "improvements:"
2573
  msgstr ""
2574
 
2575
  #: templates/admin/dashboard/dashboard.inc.php:345
2576
  msgid ""
2577
- "<strong>Feature:</strong> New option to set column data to be available/"
2578
- "disabled in global search results."
2579
  msgstr ""
2580
 
2581
  #: templates/admin/dashboard/dashboard.inc.php:346
2582
  msgid ""
2583
- "<strong>Feature:</strong> New option to set NOFOLLOW relation for links in "
2584
- "simple and data tables."
2585
  msgstr ""
2586
 
2587
  #: templates/admin/dashboard/dashboard.inc.php:347
2588
  msgid ""
2589
- "<strong>BugFix:</strong> Fixed issue with saving page in Divi builder with "
2590
- "simple table shortcode."
2591
  msgstr ""
2592
 
2593
  #: templates/admin/dashboard/dashboard.inc.php:348
2594
  msgid ""
2595
- "<strong>BugFix:</strong> Fixed issue with not showing tabs in backend after "
2596
- "switch."
2597
  msgstr ""
2598
 
2599
  #: templates/admin/dashboard/dashboard.inc.php:349
2600
  msgid ""
2601
- "<strong>BugFix:</strong> Fixed issue with tooltip in backend when is loaded "
2602
- "jQuery UI."
2603
  msgstr ""
2604
 
2605
  #: templates/admin/dashboard/dashboard.inc.php:350
 
 
 
 
2606
  msgid "Other small bug fixes and stability improvements."
2607
  msgstr ""
2608
 
2609
- #: templates/admin/dashboard/dashboard.inc.php:362
2610
  msgid "Go Premium!"
2611
  msgstr ""
2612
 
2613
- #: templates/admin/dashboard/dashboard.inc.php:368
2614
  msgid "View Comparison"
2615
  msgstr ""
2616
 
2617
- #: templates/admin/dashboard/dashboard.inc.php:376
2618
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2619
  msgid ""
2620
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2621
  "of the powerful features."
2622
  msgstr ""
2623
 
2624
- #: templates/admin/dashboard/dashboard.inc.php:380
2625
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2626
  msgid "Create a table manually"
2627
  msgstr ""
2628
 
2629
- #: templates/admin/dashboard/dashboard.inc.php:383
2630
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2631
  msgid "Creating tables from Google Spreadsheet"
2632
  msgstr ""
2633
 
2634
- #: templates/admin/dashboard/dashboard.inc.php:386
2635
  msgid ""
2636
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2637
  "tables via Google Sheet API"
2638
  msgstr ""
2639
 
2640
- #: templates/admin/dashboard/dashboard.inc.php:389
2641
  msgid ""
2642
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2643
  "tables from Private Google Spreadsheet"
2644
  msgstr ""
2645
 
2646
- #: templates/admin/dashboard/dashboard.inc.php:392
2647
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2648
  msgid "Creating MySQL-based tables from database"
2649
  msgstr ""
2650
 
2651
- #: templates/admin/dashboard/dashboard.inc.php:395
2652
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2653
  msgid "Creating MySQL-based tables from Wordpress post types"
2654
  msgstr ""
2655
 
2656
- #: templates/admin/dashboard/dashboard.inc.php:398
2657
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2658
  #: templates/edit_table.inc.php:329
2659
  msgid "Advanced filtering"
2660
  msgstr ""
2661
 
2662
- #: templates/admin/dashboard/dashboard.inc.php:401
2663
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2664
- #: templates/admin/table-settings/table_settings_block.inc.php:144
2665
  #: templates/edit_table.inc.php:282
2666
  msgid "Server-side processing"
2667
  msgstr ""
2668
 
2669
- #: templates/admin/dashboard/dashboard.inc.php:404
2670
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2671
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2672
  msgstr ""
2673
 
2674
- #: templates/admin/dashboard/dashboard.inc.php:407
2675
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2676
  msgid "Front-end table editing"
2677
  msgstr ""
2678
 
2679
- #: templates/admin/dashboard/dashboard.inc.php:410
2680
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2681
  msgid "Excel-like editing"
2682
  msgstr ""
2683
 
2684
- #: templates/admin/dashboard/dashboard.inc.php:413
2685
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2686
  msgid "Creating charts with Highcharts"
2687
  msgstr ""
2688
 
2689
- #: templates/admin/dashboard/dashboard.inc.php:416
2690
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2691
  msgid "Creating charts with Chart.js"
2692
  msgstr ""
2693
 
2694
- #: templates/admin/dashboard/dashboard.inc.php:419
2695
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2696
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2697
  #: templates/edit_table.inc.php:301
2698
  msgid "Responsive"
2699
  msgstr ""
2700
 
2701
- #: templates/admin/dashboard/dashboard.inc.php:422
2702
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2703
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2704
  #: templates/edit_table.inc.php:750
2705
  msgid "Conditional formatting"
2706
  msgstr ""
2707
 
2708
- #: templates/admin/dashboard/dashboard.inc.php:425
2709
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2710
  msgid "Calculating Tools"
2711
  msgstr ""
2712
 
2713
- #: templates/admin/dashboard/dashboard.inc.php:428
2714
  msgid "Formula columns"
2715
  msgstr ""
2716
 
2717
- #: templates/admin/dashboard/dashboard.inc.php:431
2718
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2719
- #: templates/admin/table-settings/table_settings_block.inc.php:79
2720
  msgid "Placeholders"
2721
  msgstr ""
2722
 
2723
- #: templates/admin/dashboard/dashboard.inc.php:434
2724
  msgid "Premium support"
2725
  msgstr ""
2726
 
2727
- #: templates/admin/dashboard/dashboard.inc.php:438
2728
  msgid "Get Premium Today"
2729
  msgstr ""
2730
 
2731
- #: templates/admin/dashboard/dashboard.inc.php:445
2732
  msgid "News Blog"
2733
  msgstr ""
2734
 
2735
- #: templates/admin/dashboard/dashboard.inc.php:450
2736
  msgid "Checkout useful articles from wpdatatables.com"
2737
  msgstr ""
2738
 
2739
- #: templates/admin/dashboard/dashboard.inc.php:473
2740
  msgid "Please install and enable PHP extensions xml and dom on your server."
2741
  msgstr ""
2742
 
2743
- #: templates/admin/dashboard/dashboard.inc.php:481
2744
  msgid ""
2745
  "Never miss notifications about new cool features, promotions,\n"
2746
  " giveaways or freebies – subscribe to our "
@@ -2748,48 +2786,48 @@ msgid ""
2748
  " about 1 message per month and never spam!"
2749
  msgstr ""
2750
 
2751
- #: templates/admin/dashboard/dashboard.inc.php:499
2752
  msgid "Premium "
2753
  msgstr ""
2754
 
2755
- #: templates/admin/dashboard/dashboard.inc.php:502
2756
  msgid ""
2757
  "While wpDataTables itself provides quite a large amount of features and "
2758
  "unlimited customisation, flexibility, you can achieve even more with our "
2759
  "premium addons.(requires wpDataTables Premium version)"
2760
  msgstr ""
2761
 
2762
- #: templates/admin/dashboard/dashboard.inc.php:520
2763
  msgid ""
2764
  "A wpDataTables addon which allows showing additional details for a specific "
2765
  "row in a popup or a separate page or post."
2766
  msgstr ""
2767
 
2768
- #: templates/admin/dashboard/dashboard.inc.php:526
2769
- #: templates/admin/dashboard/dashboard.inc.php:553
2770
- #: templates/admin/dashboard/dashboard.inc.php:579
2771
- #: templates/admin/dashboard/dashboard.inc.php:606
2772
- #: templates/admin/dashboard/dashboard.inc.php:632
2773
- #: templates/admin/dashboard/dashboard.inc.php:665
2774
  msgid "Learn More"
2775
  msgstr ""
2776
 
2777
- #: templates/admin/dashboard/dashboard.inc.php:547
2778
  msgid ""
2779
  "An add-on for wpDataTables that provides powerful filtering features: "
2780
  "cascade filtering, applying filters on button click, hide table before "
2781
  "filtering."
2782
  msgstr ""
2783
 
2784
- #: templates/admin/dashboard/dashboard.inc.php:643
2785
  msgid "Need free booking plugin?"
2786
  msgstr ""
2787
 
2788
- #: templates/admin/dashboard/dashboard.inc.php:652
2789
  msgid "Appointments and Events WordPress Booking Plugin"
2790
  msgstr ""
2791
 
2792
- #: templates/admin/dashboard/dashboard.inc.php:655
2793
  msgid ""
2794
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2795
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2800,26 +2838,26 @@ msgid ""
2800
  "each month."
2801
  msgstr ""
2802
 
2803
- #: templates/admin/dashboard/dashboard.inc.php:658
2804
  msgid "Rating: 4.3 - ‎97 reviews"
2805
  msgstr ""
2806
 
2807
- #: templates/admin/dashboard/dashboard.inc.php:661
2808
  msgid "Free Download"
2809
  msgstr ""
2810
 
2811
- #: templates/admin/dashboard/dashboard.inc.php:676
2812
  #: templates/admin/getting-started/getting_started.inc.php:184
2813
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2814
  #: templates/admin/support/support.inc.php:78
2815
  #: templates/admin/system-info/system_info.inc.php:509
2816
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2817
  msgid "Made by"
2818
  msgstr ""
2819
 
2820
- #: templates/admin/dashboard/dashboard.inc.php:684
2821
  #: templates/admin/getting-started/getting_started.inc.php:192
2822
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2823
  #: templates/admin/support/support.inc.php:45
2824
  #: templates/admin/support/support.inc.php:86
2825
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2828,9 +2866,9 @@ msgstr ""
2828
  msgid "Documentation"
2829
  msgstr ""
2830
 
2831
- #: templates/admin/dashboard/dashboard.inc.php:688
2832
  #: templates/admin/getting-started/getting_started.inc.php:196
2833
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2834
  #: templates/admin/support/support.inc.php:24
2835
  #: templates/admin/support/support.inc.php:90
2836
  #: templates/admin/system-info/system_info.inc.php:521
@@ -2956,7 +2994,7 @@ msgid "Lite vs Premium comparison"
2956
  msgstr ""
2957
 
2958
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
2959
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
2960
  msgid "Go Premium Now"
2961
  msgstr ""
2962
 
@@ -2969,7 +3007,7 @@ msgid "Lite"
2969
  msgstr ""
2970
 
2971
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
2972
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:471
2973
  msgid "Premium"
2974
  msgstr ""
2975
 
@@ -2999,8 +3037,10 @@ msgstr ""
2999
 
3000
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3001
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3002
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3003
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
 
 
3004
  msgid "NEW!"
3005
  msgstr ""
3006
 
@@ -3017,15 +3057,16 @@ msgstr ""
3017
 
3018
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3019
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3020
- #: templates/admin/table-settings/table_settings_block.inc.php:626
3021
- #: templates/admin/table-settings/table_settings_block.inc.php:634
3022
  msgid "Sorting"
3023
  msgstr ""
3024
 
3025
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3026
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3027
- #: templates/admin/table-settings/table_settings_block.inc.php:489
3028
- #: templates/admin/table-settings/table_settings_block.inc.php:497
 
3029
  msgid "Pagination"
3030
  msgstr ""
3031
 
@@ -3052,7 +3093,7 @@ msgid "Customize charts"
3052
  msgstr ""
3053
 
3054
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3055
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:465
3056
  msgid "Limited"
3057
  msgstr ""
3058
 
@@ -3060,37 +3101,41 @@ msgstr ""
3060
  msgid "Some options are not available."
3061
  msgstr ""
3062
 
3063
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
3064
- msgid "Creating tables via Google Sheet API"
3065
  msgstr ""
3066
 
3067
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
 
 
 
 
3068
  msgid "Creating tables from Private Google Spreadsheet"
3069
  msgstr ""
3070
 
3071
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:461
3072
  msgid "Support"
3073
  msgstr ""
3074
 
3075
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:467
3076
  msgid "Response time is slow and can be up to 5 business days."
3077
  msgstr ""
3078
 
3079
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3080
  msgid ""
3081
  "* Please note that wpDataTables add-ons are not included in premium version "
3082
  "of plugin."
3083
  msgstr ""
3084
 
3085
  #: templates/admin/settings/settings.inc.php:33
3086
- #: templates/admin/settings/settings.inc.php:91
3087
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3088
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3089
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3090
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3091
  #: templates/admin/table-settings/table_preview_block.inc.php:89
3092
- #: templates/admin/table-settings/table_settings_block.inc.php:47
3093
  #: templates/admin/table-settings/table_settings_block.inc.php:48
 
3094
  msgid "Save Changes"
3095
  msgstr ""
3096
 
@@ -3114,16 +3159,23 @@ msgstr ""
3114
  msgid "Custom JS and CSS"
3115
  msgstr ""
3116
 
3117
- #: templates/admin/settings/settings.inc.php:88 templates/settings.inc.php:434
 
 
 
 
3118
  msgid "Reset colors and fonts to default"
3119
  msgstr ""
3120
 
3121
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3122
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
 
 
3123
  msgid "Font"
3124
  msgstr ""
3125
 
3126
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
 
3127
  #: templates/settings.inc.php:428
3128
  msgid ""
3129
  "This font will be used in rendered tables. Leave blank not to override "
@@ -3131,41 +3183,51 @@ msgid ""
3131
  msgstr ""
3132
 
3133
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
 
3134
  msgid "Define the font size"
3135
  msgstr ""
3136
 
3137
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3138
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3139
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
 
 
3140
  msgid "Font color"
3141
  msgstr ""
3142
 
3143
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
 
3144
  msgid "This color is used for the main font in table cells."
3145
  msgstr ""
3146
 
3147
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3148
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
 
3149
  msgid "Header"
3150
  msgstr ""
3151
 
3152
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
 
3153
  msgid "The color is used for background of the table header."
3154
  msgstr ""
3155
 
3156
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
 
3157
  msgid "This color is used for the border in the table header."
3158
  msgstr ""
3159
 
3160
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
 
3161
  msgid "This color is used for the font in the table header."
3162
  msgstr ""
3163
 
3164
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
 
3165
  msgid "Active and hover color\t"
3166
  msgstr ""
3167
 
3168
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
 
3169
  msgid ""
3170
  "This color is used when you hover the mouse above the table header, or when "
3171
  "you choose a column."
@@ -3176,38 +3238,47 @@ msgid "Table border "
3176
  msgstr ""
3177
 
3178
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
 
3179
  msgid "Inner border"
3180
  msgstr ""
3181
 
3182
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
 
3183
  msgid "This color is used for the inner border in the table between cells."
3184
  msgstr ""
3185
 
3186
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
 
3187
  msgid "Outer border"
3188
  msgstr ""
3189
 
3190
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
 
3191
  msgid "This color is used for the outer border of the whole table body."
3192
  msgstr ""
3193
 
3194
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
 
3195
  msgid "Table borders"
3196
  msgstr ""
3197
 
3198
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
 
3199
  msgid "When this is checked, borders in table will be removed "
3200
  msgstr ""
3201
 
3202
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
 
3203
  msgid "Remove borders in table"
3204
  msgstr ""
3205
 
3206
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
 
3207
  msgid "Header border"
3208
  msgstr ""
3209
 
3210
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
 
3211
  msgid "When this is checked,borders in header will be removed "
3212
  msgstr ""
3213
 
@@ -3216,62 +3287,76 @@ msgid "Remove borders in header"
3216
  msgstr ""
3217
 
3218
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
 
3219
  msgid "Row color"
3220
  msgstr ""
3221
 
3222
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
 
3223
  msgid "Even row background"
3224
  msgstr ""
3225
 
3226
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
 
3227
  msgid "This color is used for for background in even rows."
3228
  msgstr ""
3229
 
3230
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
 
3231
  msgid "Odd row background"
3232
  msgstr ""
3233
 
3234
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
 
3235
  msgid "This color is used for for background in odd rows."
3236
  msgstr ""
3237
 
3238
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
 
3239
  msgid "Hover row"
3240
  msgstr ""
3241
 
3242
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
 
3243
  msgid ""
3244
  "This color is used for to highlight the row when you hover your mouse above "
3245
  "it."
3246
  msgstr ""
3247
 
3248
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
 
3249
  msgid "Background for selected rows"
3250
  msgstr ""
3251
 
3252
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
 
3253
  msgid "This color is used for background in selected rows."
3254
  msgstr ""
3255
 
3256
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
 
3257
  msgid "Cell color"
3258
  msgstr ""
3259
 
3260
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
 
3261
  msgid "Sorted columns, even rows"
3262
  msgstr ""
3263
 
3264
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
 
3265
  msgid ""
3266
  "This color is used for background in cells which are in the active columns "
3267
  "(columns used for sorting) in even rows."
3268
  msgstr ""
3269
 
3270
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
 
3271
  msgid "Sorted columns, odd rows"
3272
  msgstr ""
3273
 
3274
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
 
3275
  msgid ""
3276
  "This color is used for background in cells which are in the active columns "
3277
  "(columns used for sorting) in odd rows."
@@ -3363,43 +3448,53 @@ msgid ""
3363
  msgstr ""
3364
 
3365
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
 
3366
  msgid "This color is used for the background of the pagination"
3367
  msgstr ""
3368
 
3369
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
 
3370
  msgid "This color is used for the color of the links in the pagination."
3371
  msgstr ""
3372
 
3373
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
 
3374
  msgid "Current page background color"
3375
  msgstr ""
3376
 
3377
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
 
3378
  msgid "The color is used for background of the current page"
3379
  msgstr ""
3380
 
3381
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
 
3382
  msgid "Current page color"
3383
  msgstr ""
3384
 
3385
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
 
3386
  msgid "This color is used for the color of the current page."
3387
  msgstr ""
3388
 
3389
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
 
3390
  msgid "Other pages hover background color"
3391
  msgstr ""
3392
 
3393
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
 
3394
  msgid ""
3395
  "This background color is used when you hover the mouse above the other pages"
3396
  msgstr ""
3397
 
3398
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
 
3399
  msgid "Other pages hover color"
3400
  msgstr ""
3401
 
3402
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
 
3403
  msgid "This color is used when you hover the mouse above the other pages."
3404
  msgstr ""
3405
 
@@ -3415,6 +3510,7 @@ msgid ""
3415
  msgstr ""
3416
 
3417
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
 
3418
  #: templates/settings.inc.php:463
3419
  msgid "Custom wpDataTables CSS"
3420
  msgstr ""
@@ -3434,15 +3530,18 @@ msgid "Use minified version of Javascript files"
3434
  msgstr ""
3435
 
3436
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
 
3437
  #: templates/settings.inc.php:45
3438
  msgid "Interface language"
3439
  msgstr ""
3440
 
3441
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
 
3442
  msgid "Pick the language which will be used in tables interface."
3443
  msgstr ""
3444
 
3445
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
 
3446
  msgid "English (default)"
3447
  msgstr ""
3448
 
@@ -3455,278 +3554,286 @@ msgstr ""
3455
  msgid "Pick the date format to use in date column type."
3456
  msgstr ""
3457
 
3458
- #: templates/admin/settings/tabs/main_plugin_settings.php:73
3459
  #: templates/settings.inc.php:119
3460
  msgid "Time format"
3461
  msgstr ""
3462
 
3463
- #: templates/admin/settings/tabs/main_plugin_settings.php:75
3464
  msgid "Pick the time format to use in datetime and time column type."
3465
  msgstr ""
3466
 
3467
- #: templates/admin/settings/tabs/main_plugin_settings.php:90
3468
  msgid "Parse shortcodes"
3469
  msgstr ""
3470
 
3471
- #: templates/admin/settings/tabs/main_plugin_settings.php:92
3472
  msgid ""
3473
  "If the option is enabled, you can use shortcodes of other plugins for "
3474
  "generating content."
3475
  msgstr ""
3476
 
3477
- #: templates/admin/settings/tabs/main_plugin_settings.php:96
3478
  msgid "Parse shortcodes in strings"
3479
  msgstr ""
3480
 
3481
- #: templates/admin/settings/tabs/main_plugin_settings.php:103
 
3482
  #: templates/settings.inc.php:74
3483
  msgid "Base skin"
3484
  msgstr ""
3485
 
3486
- #: templates/admin/settings/tabs/main_plugin_settings.php:105
 
3487
  msgid "Choose the base skin for the plugin."
3488
  msgstr ""
3489
 
3490
- #: templates/admin/settings/tabs/main_plugin_settings.php:111
 
3491
  msgid "Material"
3492
  msgstr ""
3493
 
3494
- #: templates/admin/settings/tabs/main_plugin_settings.php:112
 
3495
  msgid "Light"
3496
  msgstr ""
3497
 
3498
- #: templates/admin/settings/tabs/main_plugin_settings.php:113
 
3499
  msgid "Graphite"
3500
  msgstr ""
3501
 
3502
- #: templates/admin/settings/tabs/main_plugin_settings.php:114
 
3503
  msgid "Aqua"
3504
  msgstr ""
3505
 
3506
- #: templates/admin/settings/tabs/main_plugin_settings.php:115
 
3507
  msgid "Purple"
3508
  msgstr ""
3509
 
3510
- #: templates/admin/settings/tabs/main_plugin_settings.php:116
 
3511
  msgid "Dark"
3512
  msgstr ""
3513
 
3514
- #: templates/admin/settings/tabs/main_plugin_settings.php:124
3515
  #: templates/settings.inc.php:131
3516
  msgid "Number format"
3517
  msgstr ""
3518
 
3519
- #: templates/admin/settings/tabs/main_plugin_settings.php:126
3520
  #: templates/settings.inc.php:138
3521
  msgid "Pick the number format (thousands and decimals separator)"
3522
  msgstr ""
3523
 
3524
- #: templates/admin/settings/tabs/main_plugin_settings.php:143
3525
  #: templates/settings.inc.php:86
3526
  msgid "Render advanced filter"
3527
  msgstr ""
3528
 
3529
- #: templates/admin/settings/tabs/main_plugin_settings.php:145
3530
  msgid ""
3531
  "Choose where you would like to render the advanced filter for tables where "
3532
  "enabled."
3533
  msgstr ""
3534
 
3535
- #: templates/admin/settings/tabs/main_plugin_settings.php:151
3536
  #: templates/settings.inc.php:90
3537
  msgid "In the header"
3538
  msgstr ""
3539
 
3540
- #: templates/admin/settings/tabs/main_plugin_settings.php:152
3541
  #: templates/settings.inc.php:91
3542
  msgid "In the footer"
3543
  msgstr ""
3544
 
3545
- #: templates/admin/settings/tabs/main_plugin_settings.php:160
3546
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3547
  #: templates/settings.inc.php:143
3548
  msgid "Decimal places"
3549
  msgstr ""
3550
 
3551
- #: templates/admin/settings/tabs/main_plugin_settings.php:162
3552
  msgid "Define the amount of decimal places for the float numbers."
3553
  msgstr ""
3554
 
3555
- #: templates/admin/settings/tabs/main_plugin_settings.php:187
3556
  msgid "CSV delimiter"
3557
  msgstr ""
3558
 
3559
- #: templates/admin/settings/tabs/main_plugin_settings.php:189
3560
  msgid "Pick the CSV delimiter"
3561
  msgstr ""
3562
 
3563
- #: templates/admin/settings/tabs/main_plugin_settings.php:208
3564
  msgid "Tables sorting direction in admin page"
3565
  msgstr ""
3566
 
3567
- #: templates/admin/settings/tabs/main_plugin_settings.php:210
3568
  msgid ""
3569
  "Here you can set sorting direction by id for browse tables and charts. By "
3570
  "default is ascending order."
3571
  msgstr ""
3572
 
3573
- #: templates/admin/settings/tabs/main_plugin_settings.php:216
3574
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3575
  #: templates/edit_table.inc.php:663
3576
  msgid "Ascending"
3577
  msgstr ""
3578
 
3579
- #: templates/admin/settings/tabs/main_plugin_settings.php:217
3580
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3581
  #: templates/edit_table.inc.php:665
3582
  msgid "Descending"
3583
  msgstr ""
3584
 
3585
- #: templates/admin/settings/tabs/main_plugin_settings.php:228
3586
  #: templates/settings.inc.php:171
3587
  msgid "Tablet width"
3588
  msgstr ""
3589
 
3590
- #: templates/admin/settings/tabs/main_plugin_settings.php:230
3591
  #: templates/settings.inc.php:175
3592
  msgid ""
3593
  "Here you can specify width of the screen (in pixels) that will be treated as "
3594
  "a tablet. You can set it wider if you want responsive effect on desktops."
3595
  msgstr ""
3596
 
3597
- #: templates/admin/settings/tabs/main_plugin_settings.php:254
3598
  #: templates/settings.inc.php:181
3599
  msgid "Mobile width"
3600
  msgstr ""
3601
 
3602
- #: templates/admin/settings/tabs/main_plugin_settings.php:256
3603
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3604
  msgstr ""
3605
 
3606
- #: templates/admin/settings/tabs/main_plugin_settings.php:281
3607
  #: templates/settings.inc.php:61
3608
  msgid "Tables per admin page"
3609
  msgstr ""
3610
 
3611
- #: templates/admin/settings/tabs/main_plugin_settings.php:283
3612
  msgid "How many tables to show in the browse page."
3613
  msgstr ""
3614
 
3615
- #: templates/admin/settings/tabs/main_plugin_settings.php:299
3616
  msgid "Align numbers"
3617
  msgstr ""
3618
 
3619
- #: templates/admin/settings/tabs/main_plugin_settings.php:301
3620
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3621
  msgstr ""
3622
 
3623
- #: templates/admin/settings/tabs/main_plugin_settings.php:305
3624
  #: templates/settings.inc.php:161
3625
  msgid "Align numbers to the right"
3626
  msgstr ""
3627
 
3628
- #: templates/admin/settings/tabs/main_plugin_settings.php:315
3629
  msgid "Sum functions label"
3630
  msgstr ""
3631
 
3632
- #: templates/admin/settings/tabs/main_plugin_settings.php:317
3633
  msgid ""
3634
  "Enter a label that will be used for Sum functions. If you leave it blank "
3635
  "default label will be Σ ="
3636
  msgstr ""
3637
 
3638
- #: templates/admin/settings/tabs/main_plugin_settings.php:335
3639
  msgid "Average functions label"
3640
  msgstr ""
3641
 
3642
- #: templates/admin/settings/tabs/main_plugin_settings.php:337
3643
  msgid ""
3644
  "Enter a label that will be used for Average functions. If you leave it blank "
3645
  "default label will be Avg ="
3646
  msgstr ""
3647
 
3648
- #: templates/admin/settings/tabs/main_plugin_settings.php:360
3649
  msgid "Minimum functions label"
3650
  msgstr ""
3651
 
3652
- #: templates/admin/settings/tabs/main_plugin_settings.php:362
3653
  msgid ""
3654
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3655
  "default label will be Min ="
3656
  msgstr ""
3657
 
3658
- #: templates/admin/settings/tabs/main_plugin_settings.php:380
3659
  msgid "Maximum functions label"
3660
  msgstr ""
3661
 
3662
- #: templates/admin/settings/tabs/main_plugin_settings.php:382
3663
  msgid ""
3664
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3665
  "default label will be Max ="
3666
  msgstr ""
3667
 
3668
- #: templates/admin/settings/tabs/main_plugin_settings.php:408
3669
  msgid "Include full bootstrap front-end"
3670
  msgstr ""
3671
 
3672
- #: templates/admin/settings/tabs/main_plugin_settings.php:410
3673
- #: templates/admin/settings/tabs/main_plugin_settings.php:421
3674
  msgid ""
3675
  "It is recommended to uncheck this option if bootstrap.js is already included "
3676
  "in one of the theme files. Unchecked option means that there is still "
3677
  "bootstrap.js included just in noconflict mode which should prevent errors."
3678
  msgstr ""
3679
 
3680
- #: templates/admin/settings/tabs/main_plugin_settings.php:414
3681
  msgid "Include full bootstrap.js on the front-end"
3682
  msgstr ""
3683
 
3684
- #: templates/admin/settings/tabs/main_plugin_settings.php:419
3685
  msgid "Include full bootstrap back-end"
3686
  msgstr ""
3687
 
3688
- #: templates/admin/settings/tabs/main_plugin_settings.php:425
3689
  msgid "Include full bootstrap.js on the back-end"
3690
  msgstr ""
3691
 
3692
- #: templates/admin/settings/tabs/main_plugin_settings.php:433
3693
- #: templates/admin/settings/tabs/main_plugin_settings.php:439
3694
  #: templates/settings.inc.php:32
3695
  msgid "Show plugin credentials below tables"
3696
  msgstr ""
3697
 
3698
- #: templates/admin/settings/tabs/main_plugin_settings.php:435
3699
  #: templates/settings.inc.php:32
3700
  msgid ""
3701
  "If you want to support our project, please, keep this checkbox as checked"
3702
  msgstr ""
3703
 
3704
- #: templates/admin/settings/tabs/main_plugin_settings.php:444
3705
  msgid "Prevent deleting tables in database"
3706
  msgstr ""
3707
 
3708
- #: templates/admin/settings/tabs/main_plugin_settings.php:446
3709
  msgid ""
3710
  "It is recommended to leave this option as checked if you what to keep your "
3711
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3712
  "this option, it will be deleted all tables in database after deleting plugin"
3713
  msgstr ""
3714
 
3715
- #: templates/admin/settings/tabs/main_plugin_settings.php:450
3716
  msgid ""
3717
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3718
  msgstr ""
3719
 
3720
- #: templates/admin/settings/tabs/main_plugin_settings.php:457
3721
  msgid "Remove Getting Started page"
3722
  msgstr ""
3723
 
3724
- #: templates/admin/settings/tabs/main_plugin_settings.php:459
3725
  msgid ""
3726
  "Check this option if you want to remove Getting Started page from admin menu."
3727
  msgstr ""
3728
 
3729
- #: templates/admin/settings/tabs/main_plugin_settings.php:463
3730
  msgid "Remove \"Getting Started\" page from admin menu."
3731
  msgstr ""
3732
 
@@ -3990,10 +4097,6 @@ msgstr ""
3990
  msgid "Column header"
3991
  msgstr ""
3992
 
3993
- #: templates/admin/table-settings/add_column_modal.inc.php:47
3994
- msgid "Type"
3995
- msgstr ""
3996
-
3997
  #: templates/admin/table-settings/add_column_modal.inc.php:64
3998
  msgid "Insert after"
3999
  msgstr ""
@@ -4030,7 +4133,7 @@ msgstr ""
4030
 
4031
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4032
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4033
- #: templates/admin/table-settings/table_settings_block.inc.php:63
4034
  msgid "Display"
4035
  msgstr ""
4036
 
@@ -4043,7 +4146,7 @@ msgid "Global Filtering"
4043
  msgstr ""
4044
 
4045
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4046
- #: templates/admin/table-settings/table_settings_block.inc.php:71
4047
  msgid "Editing"
4048
  msgstr ""
4049
 
@@ -4480,7 +4583,7 @@ msgid "Allow filtering"
4480
  msgstr ""
4481
 
4482
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4483
- #: templates/admin/table-settings/table_settings_block.inc.php:665
4484
  msgid "Global search"
4485
  msgstr ""
4486
 
@@ -5020,26 +5123,26 @@ msgid "Clear data"
5020
  msgstr ""
5021
 
5022
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5023
- #: templates/admin/table-settings/table_settings_block.inc.php:199
5024
  #: templates/edit_table.inc.php:58
5025
  msgid "Table title"
5026
  msgstr ""
5027
 
5028
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5029
- #: templates/admin/table-settings/table_settings_block.inc.php:207
5030
  #: templates/edit_table.inc.php:67
5031
  msgid "Show table title"
5032
  msgstr ""
5033
 
5034
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5035
- #: templates/admin/table-settings/table_settings_block.inc.php:214
5036
  msgid ""
5037
  "Enable this to show the table title in a h3 block above the table, disable "
5038
  "to hide."
5039
  msgstr ""
5040
 
5041
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5042
- #: templates/admin/table-settings/table_settings_block.inc.php:222
5043
  msgid "Show table title on the page"
5044
  msgstr ""
5045
 
@@ -5106,54 +5209,54 @@ msgid "Scrollable"
5106
  msgstr ""
5107
 
5108
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5109
- #: templates/admin/table-settings/table_settings_block.inc.php:363
5110
  msgid "Scrollable table"
5111
  msgstr ""
5112
 
5113
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5114
- #: templates/admin/table-settings/table_settings_block.inc.php:370
5115
  msgid "Enable this to enable a horizontal scrollbar below the table."
5116
  msgstr ""
5117
 
5118
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5119
- #: templates/admin/table-settings/table_settings_block.inc.php:379
5120
  msgid "Show a horizontal scrollbar"
5121
  msgstr ""
5122
 
5123
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5124
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5125
- #: templates/admin/table-settings/table_settings_block.inc.php:423
5126
- #: templates/admin/table-settings/table_settings_block.inc.php:431
5127
  msgid "Limit table width"
5128
  msgstr ""
5129
 
5130
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5131
- #: templates/admin/table-settings/table_settings_block.inc.php:438
5132
  msgid "Enable this to restrict table width to page width."
5133
  msgstr ""
5134
 
5135
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5136
- #: templates/admin/table-settings/table_settings_block.inc.php:447
5137
  msgid "Limit table width to page width"
5138
  msgstr ""
5139
 
5140
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5141
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5142
- #: templates/admin/table-settings/table_settings_block.inc.php:454
5143
- #: templates/admin/table-settings/table_settings_block.inc.php:462
5144
  #: templates/edit_table.inc.php:392
5145
  msgid "Word wrap"
5146
  msgstr ""
5147
 
5148
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5149
- #: templates/admin/table-settings/table_settings_block.inc.php:469
5150
  msgid ""
5151
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5152
  "height."
5153
  msgstr ""
5154
 
5155
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5156
- #: templates/admin/table-settings/table_settings_block.inc.php:477
5157
  msgid "Wrap words to newlines"
5158
  msgstr ""
5159
 
@@ -5215,54 +5318,58 @@ msgstr ""
5215
  msgid "EXCEL-LIKE"
5216
  msgstr ""
5217
 
5218
- #: templates/admin/table-settings/table_settings_block.inc.php:67
5219
  msgid "Sorting and filtering"
5220
  msgstr ""
5221
 
5222
- #: templates/admin/table-settings/table_settings_block.inc.php:75
5223
- #: templates/admin/table-settings/table_settings_block.inc.php:990
5224
  msgid "Table Tools"
5225
  msgstr ""
5226
 
5227
- #: templates/admin/table-settings/table_settings_block.inc.php:97
 
 
 
 
5228
  msgid ""
5229
  "Please choose a type of the input data source - it can be a MySQL query, a "
5230
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5231
  msgstr ""
5232
 
5233
- #: templates/admin/table-settings/table_settings_block.inc.php:104
5234
  msgid "Select a data source type"
5235
  msgstr ""
5236
 
5237
- #: templates/admin/table-settings/table_settings_block.inc.php:105
5238
  msgid "SQL query "
5239
  msgstr ""
5240
 
5241
- #: templates/admin/table-settings/table_settings_block.inc.php:106
5242
  #: templates/edit_table.inc.php:85
5243
  msgid "CSV file"
5244
  msgstr ""
5245
 
5246
- #: templates/admin/table-settings/table_settings_block.inc.php:107
5247
  #: templates/edit_table.inc.php:86
5248
  msgid "Excel file"
5249
  msgstr ""
5250
 
5251
- #: templates/admin/table-settings/table_settings_block.inc.php:108
5252
  msgid "Google Spreadsheet "
5253
  msgstr ""
5254
 
5255
- #: templates/admin/table-settings/table_settings_block.inc.php:109
5256
  #: templates/edit_table.inc.php:89
5257
  msgid "XML file"
5258
  msgstr ""
5259
 
5260
- #: templates/admin/table-settings/table_settings_block.inc.php:110
5261
  #: templates/edit_table.inc.php:90
5262
  msgid "JSON file"
5263
  msgstr ""
5264
 
5265
- #: templates/admin/table-settings/table_settings_block.inc.php:124
5266
  msgid ""
5267
  "Upload your file or provide the full URL here. For CSV or Excel input "
5268
  "sources only URLs or paths from same domain are supported. For Google "
@@ -5270,30 +5377,30 @@ msgid ""
5270
  "the URL."
5271
  msgstr ""
5272
 
5273
- #: templates/admin/table-settings/table_settings_block.inc.php:130
5274
  msgid "Paste URL or path, or click Browse to choose"
5275
  msgstr ""
5276
 
5277
- #: templates/admin/table-settings/table_settings_block.inc.php:134
5278
  msgid "Browse..."
5279
  msgstr ""
5280
 
5281
- #: templates/admin/table-settings/table_settings_block.inc.php:146
5282
  msgid ""
5283
  "If it is turned on, all sorting, filtering, pagination and other data "
5284
  "interaction will be done by MySQL server. This feature is recommended if you "
5285
  "have more than 2000-3000 rows. Mandatory for editable tables."
5286
  msgstr ""
5287
 
5288
- #: templates/admin/table-settings/table_settings_block.inc.php:151
5289
  msgid "Enable server-side processing"
5290
  msgstr ""
5291
 
5292
- #: templates/admin/table-settings/table_settings_block.inc.php:165
5293
  msgid "MySQL Query"
5294
  msgstr ""
5295
 
5296
- #: templates/admin/table-settings/table_settings_block.inc.php:167
5297
  msgid ""
5298
  "Enter the text of your MySQL query here - please make sure it returns actual "
5299
  "data first. You can use a number of placeholders to make the dataset in the "
@@ -5301,335 +5408,335 @@ msgid ""
5301
  "with different shortcodes."
5302
  msgstr ""
5303
 
5304
- #: templates/admin/table-settings/table_settings_block.inc.php:174
5305
  #: templates/edit_table.inc.php:292
5306
  msgid "Auto-refresh"
5307
  msgstr ""
5308
 
5309
- #: templates/admin/table-settings/table_settings_block.inc.php:176
5310
  msgid ""
5311
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5312
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5313
  "refresh."
5314
  msgstr ""
5315
 
5316
- #: templates/admin/table-settings/table_settings_block.inc.php:181
5317
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5318
  msgstr ""
5319
 
5320
- #: templates/admin/table-settings/table_settings_block.inc.php:230
5321
  msgid "Responsiveness"
5322
  msgstr ""
5323
 
5324
- #: templates/admin/table-settings/table_settings_block.inc.php:238
5325
  msgid "Responsive design"
5326
  msgstr ""
5327
 
5328
- #: templates/admin/table-settings/table_settings_block.inc.php:245
5329
  msgid "Enable this to allow responsiveness in the table."
5330
  msgstr ""
5331
 
5332
- #: templates/admin/table-settings/table_settings_block.inc.php:246
5333
  msgid ""
5334
  "Please do not forget to define which columns will be hidden on mobiles and "
5335
  "tablets in the column settings!"
5336
  msgstr ""
5337
 
5338
- #: templates/admin/table-settings/table_settings_block.inc.php:254
5339
  msgid "Allow collapsing on mobiles and tablets"
5340
  msgstr ""
5341
 
5342
- #: templates/admin/table-settings/table_settings_block.inc.php:262
5343
  msgid "Hide until loaded"
5344
  msgstr ""
5345
 
5346
- #: templates/admin/table-settings/table_settings_block.inc.php:264
5347
  msgid ""
5348
  "Enable to make whole table hidden until it is initialized to prevent "
5349
  "unformatted data flashing"
5350
  msgstr ""
5351
 
5352
- #: templates/admin/table-settings/table_settings_block.inc.php:269
5353
  msgid "Hide the table before it is fully loaded"
5354
  msgstr ""
5355
 
5356
- #: templates/admin/table-settings/table_settings_block.inc.php:281
5357
  msgid "Default rows per page"
5358
  msgstr ""
5359
 
5360
- #: templates/admin/table-settings/table_settings_block.inc.php:289
5361
- #: templates/admin/table-settings/table_settings_block.inc.php:324
5362
  msgid "Rows per page"
5363
  msgstr ""
5364
 
5365
- #: templates/admin/table-settings/table_settings_block.inc.php:296
5366
  msgid "How many rows to show per page by default."
5367
  msgstr ""
5368
 
5369
- #: templates/admin/table-settings/table_settings_block.inc.php:332
5370
  msgid "Show X entries"
5371
  msgstr "X elem mutatása"
5372
 
5373
- #: templates/admin/table-settings/table_settings_block.inc.php:339
5374
  msgid ""
5375
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5376
  "frontend."
5377
  msgstr ""
5378
 
5379
- #: templates/admin/table-settings/table_settings_block.inc.php:347
5380
  msgid "Show \"Show X entries\" dropdown"
5381
  msgstr "\"Show X entries\" legördülő"
5382
 
5383
- #: templates/admin/table-settings/table_settings_block.inc.php:371
5384
  msgid "This should be turned off if you want to set columns width manually."
5385
  msgstr ""
5386
 
5387
- #: templates/admin/table-settings/table_settings_block.inc.php:392
5388
- #: templates/admin/table-settings/table_settings_block.inc.php:400
5389
  msgid "Info block"
5390
  msgstr ""
5391
 
5392
- #: templates/admin/table-settings/table_settings_block.inc.php:407
5393
  msgid ""
5394
  "Enable to show a block of information about the number of records below the "
5395
  "table."
5396
  msgstr ""
5397
 
5398
- #: templates/admin/table-settings/table_settings_block.inc.php:415
5399
  msgid "Show information block below the table"
5400
  msgstr ""
5401
 
5402
- #: templates/admin/table-settings/table_settings_block.inc.php:439
5403
  msgid ""
5404
  "This should be turned on if you want to set columns width manually. Should "
5405
  "be on to use word wrapping."
5406
  msgstr ""
5407
 
5408
- #: templates/admin/table-settings/table_settings_block.inc.php:501
5409
  msgid "Enable to show a pagination"
5410
  msgstr ""
5411
 
5412
- #: templates/admin/table-settings/table_settings_block.inc.php:509
5413
  msgid "Show pagination block below the table"
5414
  msgstr ""
5415
 
5416
- #: templates/admin/table-settings/table_settings_block.inc.php:517
5417
- #: templates/admin/table-settings/table_settings_block.inc.php:525
5418
  msgid "Pagination Alignment"
5419
  msgstr ""
5420
 
5421
- #: templates/admin/table-settings/table_settings_block.inc.php:529
5422
  msgid "Here you can set pagination position: right, center or left."
5423
  msgstr ""
5424
 
5425
- #: templates/admin/table-settings/table_settings_block.inc.php:537
5426
  msgid "Right"
5427
  msgstr ""
5428
 
5429
- #: templates/admin/table-settings/table_settings_block.inc.php:538
5430
  msgid "Center"
5431
  msgstr ""
5432
 
5433
- #: templates/admin/table-settings/table_settings_block.inc.php:539
5434
  msgid "Left"
5435
  msgstr ""
5436
 
5437
- #: templates/admin/table-settings/table_settings_block.inc.php:548
5438
- #: templates/admin/table-settings/table_settings_block.inc.php:556
5439
  msgid "Pagination Layout"
5440
  msgstr ""
5441
 
5442
- #: templates/admin/table-settings/table_settings_block.inc.php:560
5443
  msgid "Here you can choose between different pagination layout."
5444
  msgstr ""
5445
 
5446
- #: templates/admin/table-settings/table_settings_block.inc.php:568
5447
  msgid ""
5448
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5449
  msgstr ""
5450
 
5451
- #: templates/admin/table-settings/table_settings_block.inc.php:569
5452
  msgid "\"Previous\" and \"Next\" buttons only"
5453
  msgstr ""
5454
 
5455
- #: templates/admin/table-settings/table_settings_block.inc.php:570
5456
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5457
  msgstr ""
5458
 
5459
- #: templates/admin/table-settings/table_settings_block.inc.php:571
5460
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5461
  msgstr ""
5462
 
5463
- #: templates/admin/table-settings/table_settings_block.inc.php:572
5464
  msgid "Page number buttons only"
5465
  msgstr ""
5466
 
5467
- #: templates/admin/table-settings/table_settings_block.inc.php:573
5468
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5469
  msgstr ""
5470
 
5471
- #: templates/admin/table-settings/table_settings_block.inc.php:595
5472
  msgid "Advanced column filters"
5473
  msgstr ""
5474
 
5475
- #: templates/admin/table-settings/table_settings_block.inc.php:603
5476
  msgid "Advanced filter"
5477
  msgstr ""
5478
 
5479
- #: templates/admin/table-settings/table_settings_block.inc.php:610
5480
  msgid ""
5481
  "Enable to show an advanced filter for each of the columns, filters can be "
5482
  "shown in table footer, header or in a separate form."
5483
  msgstr ""
5484
 
5485
- #: templates/admin/table-settings/table_settings_block.inc.php:618
5486
  msgid "Enable advanced column filters"
5487
  msgstr ""
5488
 
5489
- #: templates/admin/table-settings/table_settings_block.inc.php:641
5490
  msgid ""
5491
  "If this is enabled, each column header will be clickable; clicking will sort "
5492
  "the whole table by the content of this column cells ascending or descending."
5493
  msgstr ""
5494
 
5495
- #: templates/admin/table-settings/table_settings_block.inc.php:649
5496
  msgid "Allow sorting for the table"
5497
  msgstr ""
5498
 
5499
- #: templates/admin/table-settings/table_settings_block.inc.php:657
5500
  msgid "Main search block"
5501
  msgstr ""
5502
 
5503
- #: templates/admin/table-settings/table_settings_block.inc.php:672
5504
  msgid ""
5505
  "If this is enabled, a search block will be displayed on the top right of the "
5506
  "table, allowing to search through whole table with a single input."
5507
  msgstr ""
5508
 
5509
- #: templates/admin/table-settings/table_settings_block.inc.php:680
5510
  msgid "Enable search block"
5511
  msgstr ""
5512
 
5513
- #: templates/admin/table-settings/table_settings_block.inc.php:694
5514
  msgid "Filters in a form"
5515
  msgstr ""
5516
 
5517
- #: templates/admin/table-settings/table_settings_block.inc.php:701
5518
  #: templates/edit_table.inc.php:340
5519
  msgid "Filter in form"
5520
  msgstr ""
5521
 
5522
- #: templates/admin/table-settings/table_settings_block.inc.php:708
5523
  msgid ""
5524
  "Enable to show the advanced column filter in a form above the table, instead "
5525
  "of showing in the table footer/header."
5526
  msgstr ""
5527
 
5528
- #: templates/admin/table-settings/table_settings_block.inc.php:716
5529
  msgid "Show filters in a form above the table"
5530
  msgstr ""
5531
 
5532
- #: templates/admin/table-settings/table_settings_block.inc.php:724
5533
  msgid "Clear filters button"
5534
  msgstr "Szűrő törlése"
5535
 
5536
- #: templates/admin/table-settings/table_settings_block.inc.php:731
5537
  #: templates/frontend/filter_form.inc.php:32
5538
  msgid "Clear filters"
5539
  msgstr "Szűrő törlése"
5540
 
5541
- #: templates/admin/table-settings/table_settings_block.inc.php:735
5542
  msgid "Enable to show the clear filters button."
5543
  msgstr ""
5544
 
5545
- #: templates/admin/table-settings/table_settings_block.inc.php:736
5546
  msgid ""
5547
  "If filter in form is enabled, clear button will be rendered after the last "
5548
  "filter."
5549
  msgstr ""
5550
 
5551
- #: templates/admin/table-settings/table_settings_block.inc.php:741
5552
  msgid ""
5553
  "Otherwise, clear filter button will be rendered above the table next to "
5554
  "\"Table Tools\" buttons."
5555
  msgstr ""
5556
 
5557
- #: templates/admin/table-settings/table_settings_block.inc.php:753
5558
  msgid "Show clear filters button"
5559
  msgstr ""
5560
 
5561
- #: templates/admin/table-settings/table_settings_block.inc.php:773
5562
  msgid "Allow editing"
5563
  msgstr ""
5564
 
5565
- #: templates/admin/table-settings/table_settings_block.inc.php:781
5566
  #: templates/edit_table.inc.php:180
5567
  msgid "Front-end editing"
5568
  msgstr ""
5569
 
5570
- #: templates/admin/table-settings/table_settings_block.inc.php:788
5571
  msgid "Allow editing the table from the front-end."
5572
  msgstr ""
5573
 
5574
- #: templates/admin/table-settings/table_settings_block.inc.php:796
5575
  msgid "Allow front-end editing"
5576
  msgstr ""
5577
 
5578
- #: templates/admin/table-settings/table_settings_block.inc.php:804
5579
  msgid "Popover edit block"
5580
  msgstr ""
5581
 
5582
- #: templates/admin/table-settings/table_settings_block.inc.php:812
5583
  #: templates/edit_table.inc.php:232
5584
  msgid "Popover tools"
5585
  msgstr ""
5586
 
5587
- #: templates/admin/table-settings/table_settings_block.inc.php:819
5588
  msgid ""
5589
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5590
  "popover when you click on any row, instead of Table Tools block above the "
5591
  "table."
5592
  msgstr ""
5593
 
5594
- #: templates/admin/table-settings/table_settings_block.inc.php:827
5595
  msgid "Editing buttons in a popover"
5596
  msgstr ""
5597
 
5598
- #: templates/admin/table-settings/table_settings_block.inc.php:835
5599
- #: templates/admin/table-settings/table_settings_block.inc.php:843
5600
  msgid "In-line editing"
5601
  msgstr ""
5602
 
5603
- #: templates/admin/table-settings/table_settings_block.inc.php:850
5604
  msgid ""
5605
  "If this is enabled, front-end users will be able to edit cells by double-"
5606
  "clicking them, not only with the editor dialog."
5607
  msgstr ""
5608
 
5609
- #: templates/admin/table-settings/table_settings_block.inc.php:858
5610
  msgid "Allow in-line editing"
5611
  msgstr ""
5612
 
5613
- #: templates/admin/table-settings/table_settings_block.inc.php:873
5614
  #: templates/edit_table.inc.php:192
5615
  msgid "MySQL table name for editing"
5616
  msgstr ""
5617
 
5618
- #: templates/admin/table-settings/table_settings_block.inc.php:875
5619
  msgid ""
5620
  "Name of the MySQL table which will be updated when edited from front-end."
5621
  msgstr ""
5622
 
5623
- #: templates/admin/table-settings/table_settings_block.inc.php:880
5624
  msgid "MySQL table name"
5625
  msgstr ""
5626
 
5627
- #: templates/admin/table-settings/table_settings_block.inc.php:889
5628
  #: templates/edit_table.inc.php:203
5629
  msgid "ID column for editing"
5630
  msgstr ""
5631
 
5632
- #: templates/admin/table-settings/table_settings_block.inc.php:891
5633
  msgid ""
5634
  "Choose the column values from which will be used as row identifiers. MUST be "
5635
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
@@ -5637,146 +5744,214 @@ msgid ""
5637
  "\"id\" or \"ID\" on MySQL side."
5638
  msgstr ""
5639
 
5640
- #: templates/admin/table-settings/table_settings_block.inc.php:905
5641
  #: templates/edit_table.inc.php:267
5642
  msgid "Editor roles"
5643
  msgstr ""
5644
 
5645
- #: templates/admin/table-settings/table_settings_block.inc.php:907
5646
  msgid ""
5647
  "If you want only specific user roles to be able to edit the table, choose in "
5648
  "this dropdown. Leave unchecked to allow editing for everyone."
5649
  msgstr ""
5650
 
5651
- #: templates/admin/table-settings/table_settings_block.inc.php:912
5652
  msgid "Everyone"
5653
  msgstr ""
5654
 
5655
- #: templates/admin/table-settings/table_settings_block.inc.php:913
5656
  msgid "Administrators"
5657
  msgstr ""
5658
 
5659
- #: templates/admin/table-settings/table_settings_block.inc.php:914
5660
  msgid "Editors"
5661
  msgstr ""
5662
 
5663
- #: templates/admin/table-settings/table_settings_block.inc.php:915
5664
  msgid "Authors"
5665
  msgstr ""
5666
 
5667
- #: templates/admin/table-settings/table_settings_block.inc.php:916
5668
  msgid "Contributors"
5669
  msgstr ""
5670
 
5671
- #: templates/admin/table-settings/table_settings_block.inc.php:917
5672
  msgid "Subscribers"
5673
  msgstr ""
5674
 
5675
- #: templates/admin/table-settings/table_settings_block.inc.php:932
5676
  msgid "Users see and edit only own data"
5677
  msgstr ""
5678
 
5679
- #: templates/admin/table-settings/table_settings_block.inc.php:940
5680
  msgid "Users see and edit only their own data"
5681
  msgstr ""
5682
 
5683
- #: templates/admin/table-settings/table_settings_block.inc.php:947
5684
  msgid ""
5685
  "If this is enabled, users will see and edit only the rows that are related "
5686
  "to them or were created by them (associated using the User ID column)."
5687
  msgstr ""
5688
 
5689
- #: templates/admin/table-settings/table_settings_block.inc.php:955
5690
  msgid "Limit editing to own data only"
5691
  msgstr ""
5692
 
5693
- #: templates/admin/table-settings/table_settings_block.inc.php:963
5694
  #: templates/edit_table.inc.php:250
5695
  msgid "User ID column"
5696
  msgstr ""
5697
 
5698
- #: templates/admin/table-settings/table_settings_block.inc.php:965
5699
  msgid ""
5700
  "Choose the column values from which will be used as User identifiers. "
5701
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
5702
  "an integer on MySQL side."
5703
  msgstr ""
5704
 
5705
- #: templates/admin/table-settings/table_settings_block.inc.php:998
5706
  #: templates/edit_table.inc.php:350
5707
  msgid "Table tools"
5708
  msgstr ""
5709
 
5710
- #: templates/admin/table-settings/table_settings_block.inc.php:1005
5711
  msgid ""
5712
  "If this is enabled, a toolbar with useful tools will be shown above the table"
5713
  msgstr ""
5714
 
5715
- #: templates/admin/table-settings/table_settings_block.inc.php:1013
5716
  msgid "Enable Table Tools"
5717
  msgstr ""
5718
 
5719
- #: templates/admin/table-settings/table_settings_block.inc.php:1021
5720
  msgid "Buttons"
5721
  msgstr ""
5722
 
5723
- #: templates/admin/table-settings/table_settings_block.inc.php:1023
5724
  msgid "Choose which buttons to show in the Table Tools block."
5725
  msgstr ""
5726
 
5727
- #: templates/admin/table-settings/table_settings_block.inc.php:1029
5728
  msgid "Columns visibility"
5729
  msgstr ""
5730
 
5731
- #: templates/admin/table-settings/table_settings_block.inc.php:1051
5732
  msgid ""
5733
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
5734
  "that will be replaced with some actual values at the execution time; usually "
5735
- "this is used for MySQL queries."
 
 
5736
  msgstr ""
5737
 
5738
- #: templates/admin/table-settings/table_settings_block.inc.php:1063
5739
- #: templates/admin/table-settings/table_settings_block.inc.php:1078
5740
- #: templates/admin/table-settings/table_settings_block.inc.php:1093
5741
  msgid ""
5742
  "This placeholder will be replaced with any value that you will provide in a "
5743
  "shortcode. Provide a default value here that will be used for table "
5744
  "generation and when a different one is not defined in the shortcode."
5745
  msgstr ""
5746
 
5747
- #: templates/admin/table-settings/table_settings_block.inc.php:1083
5748
- #: templates/admin/table-settings/table_settings_block.inc.php:1098
5749
- #: templates/admin/table-settings/table_settings_block.inc.php:1120
5750
- #: templates/admin/table-settings/table_settings_block.inc.php:1138
5751
- #: templates/admin/table-settings/table_settings_block.inc.php:1155
5752
- #: templates/admin/table-settings/table_settings_block.inc.php:1176
 
 
 
 
 
 
 
5753
  msgid "Default for table generation"
5754
  msgstr ""
5755
 
5756
- #: templates/admin/table-settings/table_settings_block.inc.php:1114
5757
  msgid ""
5758
  "This placeholder will be replaced with the ID of currently logged in user. "
5759
  "Provide a value here to be used for table generation"
5760
  msgstr ""
5761
 
5762
- #: templates/admin/table-settings/table_settings_block.inc.php:1130
5763
  msgid ""
5764
  "This placeholder will be replaced with the login of currently logged in "
5765
  "user. Provide a value here to be used for table generation"
5766
  msgstr ""
5767
 
5768
- #: templates/admin/table-settings/table_settings_block.inc.php:1148
5769
  msgid ""
5770
- "This placeholder will be replaced with the current prefix of WordPress "
5771
- "database. Provide a value here to be used for table generation"
5772
  msgstr ""
5773
 
5774
- #: templates/admin/table-settings/table_settings_block.inc.php:1171
5775
  msgid ""
5776
  "This placeholder will be replaced with the ID of current post. Provide a "
5777
  "value here to be used for table generation"
5778
  msgstr ""
5779
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5780
  #: templates/admin/welcome_page/welcome_page.inc.php:26
5781
  #: templates/admin/welcome_page/welcome_page.inc.php:333
5782
  msgid "Go to Dashboard"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
+ "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: hu\n"
97
  msgid "Go Premium"
98
  msgstr ""
99
 
100
+ #: controllers/wdt_admin.php:517 controllers/wdt_admin.php:566
101
+ #: controllers/wdt_admin.php:609 controllers/wdt_admin.php:630
102
+ #: controllers/wdt_admin.php:677 controllers/wdt_admin.php:703
103
+ #: controllers/wdt_admin.php:722 controllers/wdt_admin.php:742
104
+ #: controllers/wdt_admin.php:761 controllers/wdt_admin.php:781
105
+ #: controllers/wdt_admin.php:801 controllers/wdt_admin.php:821
106
+ #: controllers/wdt_admin.php:840
107
  msgid "You do not have sufficient permissions to access this page."
108
  msgstr ""
109
 
205
  "placeholders and also for Export file name."
206
  msgstr ""
207
 
208
+ #: source/class.wdtbrowsechartstable.php:29 source/class.wdtbrowsetable.php:30
209
+ msgid "ID"
210
+ msgstr ""
211
+
212
+ #: source/class.wdtbrowsechartstable.php:30 source/class.wdtbrowsetable.php:31
213
+ #: templates/admin/chart_wizard/steps/step4.inc.php:17
214
+ msgid "Title"
215
+ msgstr ""
216
+
217
+ #: source/class.wdtbrowsechartstable.php:31
218
+ msgid "Render Engine"
219
+ msgstr ""
220
+
221
+ #: source/class.wdtbrowsechartstable.php:32
222
+ msgid "Chart Type"
223
+ msgstr ""
224
+
225
+ #: source/class.wdtbrowsechartstable.php:33 source/class.wdtbrowsetable.php:33
226
+ msgid "Shortcode"
227
+ msgstr ""
228
+
229
  #: source/class.wdtbrowsechartstable.php:141
230
  #: source/class.wdtbrowsetable.php:168
231
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
248
  msgstr ""
249
 
250
  #: source/class.wdtbrowsechartstable.php:162
251
+ #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
252
  #: templates/admin/browse/bulk_actions.inc.php:14
253
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
254
  msgid "Delete"
330
  msgid "No wpDataCharts in the system yet."
331
  msgstr ""
332
 
333
+ #: source/class.wdtbrowsetable.php:32
334
+ #: templates/admin/table-settings/add_column_modal.inc.php:47
335
+ msgid "Type"
336
+ msgstr ""
337
+
338
  #: source/class.wdtbrowsetable.php:231
339
  msgid "MySQL"
340
  msgstr ""
343
  msgid "Manual"
344
  msgstr ""
345
 
346
+ #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2188
347
+ #: source/class.wpdatatable.php:2258
348
+ #: templates/admin/table-settings/table_settings_block.inc.php:1050
349
  msgid "Excel"
350
  msgstr ""
351
 
352
+ #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2197
353
+ #: source/class.wpdatatable.php:2268
354
+ #: templates/admin/table-settings/table_settings_block.inc.php:1051
355
  msgid "CSV"
356
  msgstr ""
357
 
364
  msgstr ""
365
 
366
  #: source/class.wdtbrowsetable.php:249
367
+ #: templates/admin/table-settings/table_settings_block.inc.php:120
368
  #: templates/edit_table.inc.php:91
369
  msgid "Serialized PHP array"
370
  msgstr ""
454
  msgid "Attachment"
455
  msgstr ""
456
 
457
+ #: source/class.wdttools.php:78
458
  msgid ""
459
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
460
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
461
  "to the web</b> "
462
  msgstr ""
463
 
464
+ #: source/class.wdttools.php:206
465
  msgid "Back to date"
466
  msgstr ""
467
 
468
+ #: source/class.wdttools.php:207
469
  msgid "Browse"
470
  msgstr ""
471
 
472
+ #: source/class.wdttools.php:208 source/class.wdttools.php:330
473
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
474
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
475
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
487
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
488
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
489
  #: templates/admin/table-settings/table_preview_block.inc.php:86
490
+ #: templates/admin/table-settings/table_settings_block.inc.php:41
491
  #: templates/common/delete_modal.inc.php:39
492
  msgid "Cancel"
493
  msgstr ""
494
 
495
+ #: source/class.wdttools.php:209
496
  msgid " field cannot be empty!"
497
  msgstr ""
498
 
499
+ #: source/class.wdttools.php:210
500
  msgid "Use selected file"
501
  msgstr ""
502
 
503
+ #: source/class.wdttools.php:211
504
  msgid "Choose file"
505
  msgstr ""
506
 
507
+ #: source/class.wdttools.php:212 templates/admin/common/error_modal.inc.php:23
508
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
509
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
510
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
512
  msgid "Close"
513
  msgstr ""
514
 
515
+ #: source/class.wdttools.php:213
516
  msgid "Column has been added!"
517
  msgstr ""
518
 
519
+ #: source/class.wdttools.php:214
520
  msgid "Column header cannot be empty!"
521
  msgstr ""
522
 
523
+ #: source/class.wdttools.php:215
524
  msgid "Please confirm column deletion!"
525
  msgstr ""
526
 
527
+ #: source/class.wdttools.php:216
528
  msgid "Column has been removed!"
529
  msgstr ""
530
 
531
+ #: source/class.wdttools.php:217
532
  msgid "Please select columns that you want to use in table"
533
  msgstr ""
534
 
535
+ #: source/class.wdttools.php:218 source/class.wpdatatable.php:2206
536
+ #: source/class.wpdatatable.php:2278
537
+ #: templates/admin/table-settings/table_settings_block.inc.php:1052
538
  msgid "Copy"
539
  msgstr ""
540
 
541
+ #: source/class.wdttools.php:219
542
  msgid "There was an error trying to insert a new row!"
543
  msgstr ""
544
 
545
+ #: source/class.wdttools.php:220
546
  msgid "Data has been saved!"
547
  msgstr ""
548
 
549
+ #: source/class.wdttools.php:221
550
  msgid "detach"
551
  msgstr ""
552
 
553
+ #: source/class.wdttools.php:223
554
  msgid "Delete selected"
555
  msgstr ""
556
 
557
+ #: source/class.wdttools.php:224 templates/settings.inc.php:553
558
  #: templates/settings.inc.php:627
559
  msgid "Error!"
560
  msgstr ""
561
 
562
+ #: source/class.wdttools.php:225
563
  msgid "Please upload or choose a file from Media Library!"
564
  msgstr ""
565
 
566
+ #: source/class.wdttools.php:226
567
  msgid "From"
568
  msgstr ""
569
 
570
+ #: source/class.wdttools.php:227
571
  msgid "Please provide a valid e-mail address for field"
572
  msgstr ""
573
 
574
+ #: source/class.wdttools.php:228
575
  msgid "Please provide a valid URL link for field"
576
  msgstr ""
577
 
578
+ #: source/class.wdttools.php:229
579
  msgid "You have entered invalid value. Press ESC to cancel."
580
  msgstr ""
581
 
582
+ #: source/class.wdttools.php:230 source/class.wdttools.php:260
583
  msgid "Show _MENU_ entries"
584
  msgstr "_MENU_ elem megtekintése"
585
 
586
+ #: source/class.wdttools.php:231
587
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
588
  msgid "Merge"
589
  msgstr ""
590
 
591
+ #: source/class.wdttools.php:232
592
  msgid "New column"
593
  msgstr ""
594
 
595
+ #: source/class.wdttools.php:233
596
  msgid "Number of columns can not be empty or 0"
597
  msgstr ""
598
 
599
+ #: source/class.wdttools.php:234
600
  msgid "Number of rows can not be empty or 0"
601
  msgstr ""
602
 
603
+ #: source/class.wdttools.php:236
604
  msgid ": activate to sort column ascending"
605
  msgstr ""
606
 
607
+ #: source/class.wdttools.php:237
608
  msgid ": activate to sort column descending"
609
  msgstr ""
610
 
611
+ #: source/class.wdttools.php:239
612
  msgid "Ok"
613
  msgstr ""
614
 
615
+ #: source/class.wdttools.php:241
616
  msgid "First"
617
  msgstr ""
618
 
619
+ #: source/class.wdttools.php:242
620
  msgid "Last"
621
  msgstr ""
622
 
623
+ #: source/class.wdttools.php:243
624
  msgid "Next"
625
  msgstr ""
626
 
627
+ #: source/class.wdttools.php:244
628
  msgid "Previous"
629
  msgstr ""
630
 
631
+ #: source/class.wdttools.php:246
632
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
633
  msgid "Replace"
634
  msgstr ""
635
 
636
+ #: source/class.wdttools.php:247
637
  msgid "Row has been deleted!"
638
  msgstr ""
639
 
640
+ #: source/class.wdttools.php:248
641
+ msgid "Save chart"
642
+ msgstr ""
643
+
644
+ #: source/class.wdttools.php:249
645
  msgid "Select a file to use in table"
646
  msgstr ""
647
 
648
+ #: source/class.wdttools.php:250
649
  msgid "Select an Excel or CSV file"
650
  msgstr ""
651
 
652
+ #: source/class.wdttools.php:251
653
  msgid "No data available in table"
654
  msgstr ""
655
 
656
+ #: source/class.wdttools.php:252
657
  msgid "Plugin settings saved successfully"
658
  msgstr ""
659
 
660
+ #: source/class.wdttools.php:253
661
  msgid ""
662
  "Unable to save settings of plugin. Please try again or contact us over "
663
  "Support page."
664
  msgstr ""
665
 
666
+ #: source/class.wdttools.php:254
667
  msgid "Shortcode has been copied to the clipboard."
668
  msgstr ""
669
 
670
+ #: source/class.wdttools.php:255
671
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
672
  msgstr "_START_ -tól _END_ -ig a _TOTAL_ elemből"
673
 
674
+ #: source/class.wdttools.php:256
675
  msgid "Showing 0 to 0 of 0 entries"
676
  msgstr "0-től 0-ig a 0 elemből"
677
 
678
+ #: source/class.wdttools.php:257
679
  msgid "(filtered from _MAX_ total entries)"
680
  msgstr ""
681
 
682
+ #: source/class.wdttools.php:259
683
  msgid ","
684
  msgstr ""
685
 
686
+ #: source/class.wdttools.php:261
687
  msgid "Loading..."
688
  msgstr "Betöltés..."
689
 
690
+ #: source/class.wdttools.php:262
691
  msgid "Processing..."
692
  msgstr ""
693
 
694
+ #: source/class.wdttools.php:263
695
  msgid "SQL error"
696
  msgstr ""
697
 
698
+ #: source/class.wdttools.php:264
699
  msgid "Search: "
700
  msgstr "Keresés:"
701
 
702
+ #: source/class.wdttools.php:265 templates/settings.inc.php:559
703
  #: templates/settings.inc.php:625
704
  msgid "Success!"
705
  msgstr ""
706
 
707
+ #: source/class.wdttools.php:266
708
  msgid "No matching records found"
709
  msgstr ""
710
 
711
+ #: source/class.wdttools.php:267
712
  msgid ""
713
  "System info data has been copied to the clipboard. You can now paste it in "
714
  "file or in support topic."
715
  msgstr ""
716
 
717
+ #: source/class.wdttools.php:268
718
  msgid "Table saved successfully!"
719
  msgstr ""
720
 
721
+ #: source/class.wdttools.php:269
722
  msgid "To"
723
  msgstr ""
724
 
725
+ #: source/class.wdttools.php:305
726
  #: templates/admin/common/premium_modal.inc.php:17
727
+ #: templates/admin/table-settings/table_settings_block.inc.php:1072
728
+ #: templates/admin/table-settings/table_settings_block.inc.php:1348
729
  msgid "This is a premium feature"
730
  msgstr ""
731
 
732
+ #: source/class.wdttools.php:306
733
  #: templates/admin/common/premium_modal.inc.php:26
734
+ #: templates/admin/table-settings/table_settings_block.inc.php:1073
735
+ #: templates/admin/table-settings/table_settings_block.inc.php:1349
736
  msgid "This feature is available only in premium version of wpDataTables"
737
  msgstr ""
738
 
739
+ #: source/class.wdttools.php:307
740
  #: templates/admin/getting-started/getting_started.inc.php:133
741
  #: templates/admin/getting-started/getting_started.inc.php:145
742
  #: templates/admin/getting-started/getting_started.inc.php:157
743
  #: templates/admin/getting-started/getting_started.inc.php:169
744
+ #: templates/admin/table-settings/table_settings_block.inc.php:1077
745
+ #: templates/admin/table-settings/table_settings_block.inc.php:1353
746
  msgid "Compare and View Pricing"
747
  msgstr ""
748
 
749
+ #: source/class.wdttools.php:326
750
  msgid "Field cannot be empty!"
751
  msgstr ""
752
 
753
+ #: source/class.wdttools.php:327
754
  msgid "Please choose chart type."
755
  msgstr ""
756
 
757
+ #: source/class.wdttools.php:328
758
  msgid "Please select wpDataTable from dropdown."
759
  msgstr ""
760
 
761
+ #: source/class.wdttools.php:329
762
  msgid "Columns field cannot be empty"
763
  msgstr ""
764
 
765
+ #: source/class.wdttools.php:331
766
  msgid ""
767
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
768
  "clicking on Cancel button."
769
  msgstr ""
770
 
771
+ #: source/class.wdttools.php:332
772
  msgid "Finish Tutorial"
773
  msgstr ""
774
 
775
+ #: source/class.wdttools.php:333
776
  msgid "Continue"
777
  msgstr ""
778
 
779
+ #: source/class.wdttools.php:334
780
  msgid "Start"
781
  msgstr ""
782
 
783
+ #: source/class.wdttools.php:335
784
  msgid "Skip Tutorial"
785
  msgstr ""
786
 
787
+ #: source/class.wdttools.php:338 source/class.wdttools.php:404
788
+ #: source/class.wdttools.php:446
789
  msgid "Welcome to the tutorial!"
790
  msgstr ""
791
 
792
+ #: source/class.wdttools.php:339 source/class.wdttools.php:405
793
+ #: source/class.wdttools.php:447
794
  msgid "Hello "
795
  msgstr ""
796
 
797
+ #: source/class.wdttools.php:339
798
  msgid ""
799
  ", in this tutorial, we will show you how to create a simple table from "
800
  "scratch by choosing a custom number of columns and rows. How to customize "
801
  "each cell, merge cells and a lot more."
802
  msgstr ""
803
 
804
+ #: source/class.wdttools.php:342
805
  msgid " Let's create a new wpDataTable from scratch!"
806
  msgstr ""
807
 
808
+ #: source/class.wdttools.php:343 source/class.wdttools.php:409
809
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
810
  msgstr ""
811
 
812
+ #: source/class.wdttools.php:346
813
  msgid "Choose this option"
814
  msgstr ""
815
 
816
+ #: source/class.wdttools.php:347
817
  msgid "Please select 'Create a simple table from scratch'."
818
  msgstr ""
819
 
820
+ #: source/class.wdttools.php:350 source/class.wdttools.php:416
821
  msgid "Click Next"
822
  msgstr ""
823
 
824
+ #: source/class.wdttools.php:351 source/class.wdttools.php:417
825
  msgid "Please click the 'Next' button to continue."
826
  msgstr ""
827
 
828
+ #: source/class.wdttools.php:354
829
  msgid "Welcome to the Simple table wizard!"
830
  msgstr ""
831
 
832
+ #: source/class.wdttools.php:355
833
  msgid "Please click 'Continue' button to move on."
834
  msgstr ""
835
 
836
+ #: source/class.wdttools.php:358
837
  msgid "Choose a name for your table"
838
  msgstr ""
839
 
840
+ #: source/class.wdttools.php:359
841
  msgid "After inserting table name, click 'Continue' to move on."
842
  msgstr ""
843
 
844
+ #: source/class.wdttools.php:362
845
  msgid "Choose the number of columns for your table"
846
  msgstr ""
847
 
848
+ #: source/class.wdttools.php:363
849
  msgid ""
850
  "Please choose how many columns it will have. Remember that you can always "
851
  "add or reduce the number of columns later. Click 'Continue' when you finish."
852
  msgstr ""
853
 
854
+ #: source/class.wdttools.php:366
855
  msgid "Choose the number of rows for your table."
856
  msgstr ""
857
 
858
+ #: source/class.wdttools.php:367
859
  msgid ""
860
  "Please choose how many rows it will have. Remember that you can always add "
861
  "or reduce the number of rows later. Click 'Continue' when you finish."
862
  msgstr ""
863
 
864
+ #: source/class.wdttools.php:370
865
  msgid "Click on the 'Generate Table' button"
866
  msgstr ""
867
 
868
+ #: source/class.wdttools.php:371
869
  msgid "When you click on the button, the empty table will be ready for you. "
870
  msgstr ""
871
 
872
+ #: source/class.wdttools.php:374
873
  msgid "We are generating the table..."
874
  msgstr ""
875
 
876
+ #: source/class.wdttools.php:375
877
  msgid "Please, when you see the table, click 'Continue' to move on."
878
  msgstr ""
879
 
880
+ #: source/class.wdttools.php:378
881
  msgid ""
882
  "Nice job! You just configured your table and it is ready to fill it with "
883
  "data."
884
  msgstr ""
885
 
886
+ #: source/class.wdttools.php:379
887
  msgid ""
888
  "Now we will guide you on how to insert data and check table layout throw "
889
  "Simple table editor, table toolbar and table preview. Please click "
890
  "'Continue' to move on."
891
  msgstr ""
892
 
893
+ #: source/class.wdttools.php:382
894
  msgid "This is Simple table editor"
895
  msgstr ""
896
 
897
+ #: source/class.wdttools.php:383
898
  msgid ""
899
  "Here you can populate your table with data. <br><br>You can move around the "
900
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
903
  "line of the row header. Click 'Continue' to move on."
904
  msgstr ""
905
 
906
+ #: source/class.wdttools.php:386
907
  msgid "Check out the Simple table toolbar"
908
  msgstr ""
909
 
910
+ #: source/class.wdttools.php:387
911
  msgid ""
912
  "Here you can style and insert custom data for each cell or range of cells. "
913
  "You can add or delete columns and rows, merge cells, customize sections by "
915
  "ratings or custom HTML code."
916
  msgstr ""
917
 
918
+ #: source/class.wdttools.php:390
919
  msgid "Responsive table views"
920
  msgstr ""
921
 
922
+ #: source/class.wdttools.php:391
923
  msgid ""
924
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
925
  "tab that you need, so you can make sure your table looks excellent across "
926
  "all devices. "
927
  msgstr ""
928
 
929
+ #: source/class.wdttools.php:394
930
  msgid "Real-time preview"
931
  msgstr ""
932
 
933
+ #: source/class.wdttools.php:395
934
  msgid ""
935
  "Here you will see how your table will look like on the page. Please click "
936
  "'Continue' to move on."
937
  msgstr ""
938
 
939
+ #: source/class.wdttools.php:398
940
  msgid "Congrats! Your table is ready."
941
  msgstr ""
942
 
943
+ #: source/class.wdttools.php:399
944
  msgid ""
945
  "Now you can copy the shortcode for this table, and check out how it looks on "
946
  "your website when you paste it to a post or page. You can always come back "
947
  "and edit the table as you like."
948
  msgstr ""
949
 
950
+ #: source/class.wdttools.php:405
951
  msgid ""
952
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
953
  "existing data source. \"Linked\" in this context means that if you create a "
956
  "reflected in the table."
957
  msgstr ""
958
 
959
+ #: source/class.wdttools.php:408
960
  msgid "Let's create a new wpDataTable!"
961
  msgstr ""
962
 
963
+ #: source/class.wdttools.php:412
964
  msgid "Choose this option."
965
  msgstr ""
966
 
967
+ #: source/class.wdttools.php:413
968
  msgid "Please select 'Create a table linked to an existing data source'."
969
  msgstr ""
970
 
971
+ #: source/class.wdttools.php:420
972
+ #: templates/admin/table-settings/table_settings_block.inc.php:101
973
  msgid "Input data source type"
974
  msgstr ""
975
 
976
+ #: source/class.wdttools.php:421
977
  msgid "Please select a data source type that you need."
978
  msgstr ""
979
 
980
+ #: source/class.wdttools.php:424
981
  msgid "Select Data source type"
982
  msgstr ""
983
 
984
+ #: source/class.wdttools.php:425
985
  msgid ""
986
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
987
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
988
  "are available in Premium version)"
989
  msgstr ""
990
 
991
+ #: source/class.wdttools.php:428
992
+ #: templates/admin/table-settings/table_settings_block.inc.php:131
993
  msgid "Input file path or URL"
994
  msgstr ""
995
 
996
+ #: source/class.wdttools.php:429
997
  msgid ""
998
  "Upload your file or provide the full URL here. When you finish click "
999
  "'Continue' button."
1000
  msgstr ""
1001
 
1002
+ #: source/class.wdttools.php:432
1003
  msgid "Click Save Changes"
1004
  msgstr ""
1005
 
1006
+ #: source/class.wdttools.php:433
1007
  msgid ""
1008
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1009
  "get an error message after button click and you are not able to solve it, "
1012
  "click Skip tutorial."
1013
  msgstr ""
1014
 
1015
+ #: source/class.wdttools.php:436
1016
  msgid "The table is creating..."
1017
  msgstr ""
1018
 
1019
+ #: source/class.wdttools.php:437
1020
  msgid ""
1021
  "Now the table is creating. Wait until you see it in the background and then "
1022
  "click 'Continue'."
1023
  msgstr ""
1024
 
1025
+ #: source/class.wdttools.php:440
1026
  msgid "Nice job! You just created your first wpDataTable!"
1027
  msgstr ""
1028
 
1029
+ #: source/class.wdttools.php:441
1030
  msgid ""
1031
  "Now you can copy the shortcode for this table, and check out how it looks on "
1032
  "your website when you paste it to a post or page."
1033
  msgstr ""
1034
 
1035
+ #: source/class.wdttools.php:447
1036
  msgid ""
1037
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1038
  "plugin."
1039
  msgstr ""
1040
 
1041
+ #: source/class.wdttools.php:450
1042
  msgid "Let's create a new wpDataTables Chart!"
1043
  msgstr ""
1044
 
1045
+ #: source/class.wdttools.php:451
1046
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1047
  msgstr ""
1048
 
1049
+ #: source/class.wdttools.php:454
1050
  msgid "Welcome to the Chart Wizard!"
1051
  msgstr ""
1052
 
1053
+ #: source/class.wdttools.php:455
1054
  msgid ""
1055
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1056
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1057
  msgstr ""
1058
 
1059
+ #: source/class.wdttools.php:458
1060
  msgid "Follow the steps in the Chart Wizard"
1061
  msgstr ""
1062
 
1063
+ #: source/class.wdttools.php:459
1064
  msgid ""
1065
  "By following these steps, you will finish building your chart in the Chart "
1066
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1067
  "'Continue' button to move forward."
1068
  msgstr ""
1069
 
1070
+ #: source/class.wdttools.php:462
1071
  msgid "Choose a name for your Chart"
1072
  msgstr ""
1073
 
1074
+ #: source/class.wdttools.php:463
1075
  msgid "Click 'Continue' button when you’re ready to move forward."
1076
  msgstr ""
1077
 
1078
+ #: source/class.wdttools.php:466
1079
  msgid "In wpDataTables you can find several charts render engines."
1080
  msgstr ""
1081
 
1082
+ #: source/class.wdttools.php:467
1083
  msgid ""
1084
  "Click on the dropdown, and you will see several options that you can choose "
1085
  "from.(Google charts are only available) <br><br>To continue, click on the "
1086
  "dropdown."
1087
  msgstr ""
1088
 
1089
+ #: source/class.wdttools.php:470
1090
  msgid "Choose Google chart engine."
1091
  msgstr ""
1092
 
1093
+ #: source/class.wdttools.php:471
1094
  msgid ""
1095
  "By clicking on Google chart options, you will choose the engine that will "
1096
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1097
  "to move forward."
1098
  msgstr ""
1099
 
1100
+ #: source/class.wdttools.php:474
1101
  msgid "Different charts types. "
1102
  msgstr ""
1103
 
1104
+ #: source/class.wdttools.php:475
1105
  msgid ""
1106
  "Here you can choose a chart type. Please, click on the chart type that you "
1107
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1108
  "forward."
1109
  msgstr ""
1110
 
1111
+ #: source/class.wdttools.php:478
1112
  msgid "The first step is finished!"
1113
  msgstr ""
1114
 
1115
+ #: source/class.wdttools.php:479
1116
  msgid "Let's move on. Please, click 'Next' to continue."
1117
  msgstr ""
1118
 
1119
+ #: source/class.wdttools.php:482
1120
  msgid ""
1121
  "Now you need to choose a wpDataTable based on which we will build a chart "
1122
  "for you"
1123
  msgstr ""
1124
 
1125
+ #: source/class.wdttools.php:483
1126
  msgid ""
1127
  "Click on the dropdown, and all your tables will be listed. The columns of "
1128
  "the table that you choose will be used for creating the chart.<br><br>If you "
1130
  "button and create wpDataTable that would contain the data to visualize first."
1131
  msgstr ""
1132
 
1133
+ #: source/class.wdttools.php:486
1134
  msgid "Pick your wpDataTable"
1135
  msgstr ""
1136
 
1137
+ #: source/class.wdttools.php:487
1138
  msgid ""
1139
  "Pick a wpDataTable from which you want to render a chart and when you "
1140
  "finish, please click 'Continue' to move on."
1141
  msgstr ""
1142
 
1143
+ #: source/class.wdttools.php:490
1144
  msgid "The second step is finished!"
1145
  msgstr ""
1146
 
1147
+ #: source/class.wdttools.php:491
1148
  msgid ""
1149
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1150
  msgstr ""
1151
 
1152
+ #: source/class.wdttools.php:494
1153
  msgid "Just a heads up!"
1154
  msgstr ""
1155
 
1156
+ #: source/class.wdttools.php:495
1157
  msgid ""
1158
  "Here you will choose from which columns you will create a chart.<br><br> "
1159
  "Please click 'Continue' button to move forward."
1160
  msgstr ""
1161
 
1162
+ #: source/class.wdttools.php:498
1163
  msgid "Meet the wpDataTable Column Blocks"
1164
  msgstr ""
1165
 
1166
+ #: source/class.wdttools.php:499
1167
  msgid ""
1168
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1169
  "or click on the arrow to move the desired column to the 'Columns used in the "
1170
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1171
  msgstr ""
1172
 
1173
+ #: source/class.wdttools.php:502
1174
  msgid "Well done!"
1175
  msgstr ""
1176
 
1177
+ #: source/class.wdttools.php:503
1178
  msgid "Just two more steps to go. Please click 'Next' to continue."
1179
  msgstr ""
1180
 
1181
+ #: source/class.wdttools.php:506
1182
  msgid "Chart settings and chart preview."
1183
  msgstr ""
1184
 
1185
+ #: source/class.wdttools.php:507
1186
  msgid ""
1187
  "Here you can adjust chart settings, different parameters are grouped in "
1188
  "section; adjusting the parameters will be reflected in the preview of your "
1190
  "button to move forward."
1191
  msgstr ""
1192
 
1193
+ #: source/class.wdttools.php:510
1194
  msgid "In this sidebar, you can find the chart settings section."
1195
  msgstr ""
1196
 
1197
+ #: source/class.wdttools.php:511
1198
  msgid ""
1199
  "By clicking on each section, you can set your desired parameters per section."
1200
  "<br><br> Please click 'Continue' button to move on."
1201
  msgstr ""
1202
 
1203
+ #: source/class.wdttools.php:514
1204
  msgid "Here are the available chart options"
1205
  msgstr ""
1206
 
1207
+ #: source/class.wdttools.php:515
1208
  msgid ""
1209
  "Set different chart options for the chosen section to get your desired chart "
1210
  "look.<br><br> Please click 'Continue' button to move on."
1211
  msgstr ""
1212
 
1213
+ #: source/class.wdttools.php:518
1214
  msgid "How your chart will look like on the page of your website"
1215
  msgstr ""
1216
 
1217
+ #: source/class.wdttools.php:519
1218
  msgid ""
1219
  "Here you can see a preview of your chart based on the settings you have "
1220
  "chosen.<br><br> Please click 'Continue' button to move on."
1221
  msgstr ""
1222
 
1223
+ #: source/class.wdttools.php:522
1224
  msgid "You can save your chart now"
1225
  msgstr ""
1226
 
1227
+ #: source/class.wdttools.php:523
1228
  msgid ""
1229
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1230
  "button and all your settings for this chart will be saved in the database."
1231
  msgstr ""
1232
 
1233
+ #: source/class.wdttools.php:526
1234
  msgid "Congrats! Your first chart is ready!"
1235
  msgstr ""
1236
 
1237
+ #: source/class.wdttools.php:527
1238
  msgid ""
1239
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1240
  "page. <br><br>You may now finish this tutorial. "
1248
  msgid "You are mixing data types (several date axes and several number)"
1249
  msgstr ""
1250
 
1251
+ #: source/class.wpdatatable.php:1876
1252
  msgid ""
1253
  "You are trying to load a table of an unknown type. Probably you did not "
1254
  "activate the addon which is required to use this table type."
1255
  msgstr ""
1256
 
1257
+ #: source/class.wpdatatable.php:2106 source/class.wpdatatable.php:2109
1258
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1259
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1260
+ #: templates/admin/table-settings/table_settings_block.inc.php:327
1261
  #: templates/edit_table.inc.php:409
1262
  msgid "All"
1263
  msgstr ""
1264
 
1265
+ #: source/class.wpdatatable.php:2167 source/class.wpdatatable.php:2236
1266
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1267
  msgid "Columns"
1268
  msgstr ""
1269
 
1270
+ #: source/class.wpdatatable.php:2177 source/class.wpdatatable.php:2246
1271
+ #: templates/admin/table-settings/table_settings_block.inc.php:1049
1272
  msgid "Print"
1273
  msgstr ""
1274
 
1275
+ #: source/class.wpdatatable.php:2216 source/class.wpdatatable.php:2289
1276
+ #: templates/admin/table-settings/table_settings_block.inc.php:1053
1277
  msgid "PDF"
1278
  msgstr ""
1279
 
1280
+ #: source/class.wpdatatable.php:2224
1281
  msgid "Export"
1282
  msgstr ""
1283
 
1284
+ #: source/class.wpdatatable.php:2302
1285
  msgid "Search table"
1286
  msgstr ""
1287
 
1288
+ #: source/class.wpdatatable.php:2303
1289
  msgid "Showing _MENU_ Entries"
1290
  msgstr "_MENU_ elem megtekintése"
1291
 
1304
  msgid "if you have some questions or problems with the plugin."
1305
  msgstr ""
1306
 
1307
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1308
  msgid "wpDataTables Addons"
1309
  msgstr ""
1310
 
1318
  msgstr ""
1319
 
1320
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1321
+ #: templates/admin/dashboard/dashboard.inc.php:570
1322
  msgid "Report Builder"
1323
  msgstr ""
1324
 
1325
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1326
+ #: templates/admin/dashboard/dashboard.inc.php:574
1327
  msgid ""
1328
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1329
  "XLSX documents filled in with actual data from your database."
1349
  msgstr ""
1350
 
1351
  #: templates/admin/addons/addons.inc.php:40
1352
+ #: templates/admin/dashboard/dashboard.inc.php:517
1353
  msgid "Master Detail Tables for wpDataTables"
1354
  msgstr ""
1355
 
1370
  msgstr ""
1371
 
1372
  #: templates/admin/addons/addons.inc.php:67
1373
+ #: templates/admin/dashboard/dashboard.inc.php:544
1374
  msgid "Powerful Filters for wpDataTables"
1375
  msgstr ""
1376
 
1382
  msgstr ""
1383
 
1384
  #: templates/admin/addons/addons.inc.php:120
1385
+ #: templates/admin/dashboard/dashboard.inc.php:597
1386
  msgid "Formidable Forms integration for wpDataTables"
1387
  msgstr ""
1388
 
1389
  #: templates/admin/addons/addons.inc.php:123
1390
+ #: templates/admin/dashboard/dashboard.inc.php:601
1391
  msgid ""
1392
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1393
  "create wpDataTables from Formidable Forms entries data."
1394
  msgstr ""
1395
 
1396
  #: templates/admin/addons/addons.inc.php:143
1397
+ #: templates/admin/dashboard/dashboard.inc.php:623
1398
  msgid "Gravity Forms integration for wpDataTables"
1399
  msgstr ""
1400
 
1401
  #: templates/admin/addons/addons.inc.php:146
1402
+ #: templates/admin/dashboard/dashboard.inc.php:627
1403
  msgid ""
1404
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1405
  "wpDataTables from Gravity Forms entries data."
1475
  msgstr ""
1476
 
1477
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1478
+ #: templates/admin/table-settings/table_settings_block.inc.php:60
1479
  #: templates/chart_wizard.inc.php:36
1480
  msgid "Data source"
1481
  msgstr ""
1518
 
1519
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1520
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
1521
+ #: templates/admin/table-settings/table_settings_block.inc.php:1902
1522
  #: templates/edit_table.inc.php:730
1523
  msgid "Color"
1524
  msgstr ""
1734
  #: templates/admin/getting-started/getting_started.inc.php:144
1735
  #: templates/admin/getting-started/getting_started.inc.php:156
1736
  #: templates/admin/getting-started/getting_started.inc.php:168
1737
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
1738
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
1739
  msgid "Available in Premium"
1740
  msgstr ""
1741
 
1859
  msgid "Axes"
1860
  msgstr ""
1861
 
 
 
 
 
1862
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1863
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1864
  msgid "Tooltip"
1947
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
1948
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
1949
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
1950
+ #: templates/admin/table-settings/table_settings_block.inc.php:1549
1951
+ #: templates/admin/table-settings/table_settings_block.inc.php:1879
1952
  msgid "Background color"
1953
  msgstr ""
1954
 
1967
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
1968
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
1969
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
1970
+ #: templates/admin/table-settings/table_settings_block.inc.php:1571
1971
  msgid "Border color"
1972
  msgstr ""
1973
 
2006
 
2007
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2008
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
2009
+ #: templates/admin/table-settings/table_settings_block.inc.php:1483
2010
  msgid "Font size"
2011
  msgstr ""
2012
 
2368
  #: templates/admin/dashboard/dashboard.inc.php:30
2369
  #: templates/admin/getting-started/getting_started.inc.php:34
2370
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2371
+ #: templates/admin/settings/settings.inc.php:100
2372
  #: templates/admin/support/support.inc.php:31
2373
  #: templates/admin/support/support.inc.php:47
2374
  #: templates/admin/system-info/system_info.inc.php:29
2375
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2376
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2377
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2378
+ #: templates/admin/table-settings/table_settings_block.inc.php:2063
2379
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2380
  msgid "View Documentation"
2381
  msgstr ""
2604
  msgstr ""
2605
 
2606
  #: templates/admin/dashboard/dashboard.inc.php:340
2607
+ msgid "A minor update with a couple of improvements and bug fixes:"
 
 
2608
  msgstr ""
2609
 
2610
  #: templates/admin/dashboard/dashboard.inc.php:345
2611
  msgid ""
2612
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2613
+ "media in Simple tables."
2614
  msgstr ""
2615
 
2616
  #: templates/admin/dashboard/dashboard.inc.php:346
2617
  msgid ""
2618
+ "<strong>Improvement:</strong> Added translate functions on some strings."
 
2619
  msgstr ""
2620
 
2621
  #: templates/admin/dashboard/dashboard.inc.php:347
2622
  msgid ""
2623
+ "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2624
+ "area and filters for elementor widgets."
2625
  msgstr ""
2626
 
2627
  #: templates/admin/dashboard/dashboard.inc.php:348
2628
  msgid ""
2629
+ "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2630
+ "background in graphite skin."
2631
  msgstr ""
2632
 
2633
  #: templates/admin/dashboard/dashboard.inc.php:349
2634
  msgid ""
2635
+ "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2636
+ "settings."
2637
  msgstr ""
2638
 
2639
  #: templates/admin/dashboard/dashboard.inc.php:350
2640
+ msgid "Compatibility with WordPress 5.6.2 approved."
2641
+ msgstr ""
2642
+
2643
+ #: templates/admin/dashboard/dashboard.inc.php:351
2644
  msgid "Other small bug fixes and stability improvements."
2645
  msgstr ""
2646
 
2647
+ #: templates/admin/dashboard/dashboard.inc.php:363
2648
  msgid "Go Premium!"
2649
  msgstr ""
2650
 
2651
+ #: templates/admin/dashboard/dashboard.inc.php:369
2652
  msgid "View Comparison"
2653
  msgstr ""
2654
 
2655
+ #: templates/admin/dashboard/dashboard.inc.php:377
2656
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2657
  msgid ""
2658
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2659
  "of the powerful features."
2660
  msgstr ""
2661
 
2662
+ #: templates/admin/dashboard/dashboard.inc.php:381
2663
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2664
  msgid "Create a table manually"
2665
  msgstr ""
2666
 
2667
+ #: templates/admin/dashboard/dashboard.inc.php:384
2668
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2669
  msgid "Creating tables from Google Spreadsheet"
2670
  msgstr ""
2671
 
2672
+ #: templates/admin/dashboard/dashboard.inc.php:387
2673
  msgid ""
2674
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2675
  "tables via Google Sheet API"
2676
  msgstr ""
2677
 
2678
+ #: templates/admin/dashboard/dashboard.inc.php:390
2679
  msgid ""
2680
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2681
  "tables from Private Google Spreadsheet"
2682
  msgstr ""
2683
 
2684
+ #: templates/admin/dashboard/dashboard.inc.php:393
2685
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2686
  msgid "Creating MySQL-based tables from database"
2687
  msgstr ""
2688
 
2689
+ #: templates/admin/dashboard/dashboard.inc.php:396
2690
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2691
  msgid "Creating MySQL-based tables from Wordpress post types"
2692
  msgstr ""
2693
 
2694
+ #: templates/admin/dashboard/dashboard.inc.php:399
2695
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
2696
  #: templates/edit_table.inc.php:329
2697
  msgid "Advanced filtering"
2698
  msgstr ""
2699
 
2700
+ #: templates/admin/dashboard/dashboard.inc.php:402
2701
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2702
+ #: templates/admin/table-settings/table_settings_block.inc.php:153
2703
  #: templates/edit_table.inc.php:282
2704
  msgid "Server-side processing"
2705
  msgstr ""
2706
 
2707
+ #: templates/admin/dashboard/dashboard.inc.php:405
2708
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2709
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2710
  msgstr ""
2711
 
2712
+ #: templates/admin/dashboard/dashboard.inc.php:408
2713
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2714
  msgid "Front-end table editing"
2715
  msgstr ""
2716
 
2717
+ #: templates/admin/dashboard/dashboard.inc.php:411
2718
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2719
  msgid "Excel-like editing"
2720
  msgstr ""
2721
 
2722
+ #: templates/admin/dashboard/dashboard.inc.php:414
2723
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2724
  msgid "Creating charts with Highcharts"
2725
  msgstr ""
2726
 
2727
+ #: templates/admin/dashboard/dashboard.inc.php:417
2728
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2729
  msgid "Creating charts with Chart.js"
2730
  msgstr ""
2731
 
2732
+ #: templates/admin/dashboard/dashboard.inc.php:420
2733
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2734
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2735
  #: templates/edit_table.inc.php:301
2736
  msgid "Responsive"
2737
  msgstr ""
2738
 
2739
+ #: templates/admin/dashboard/dashboard.inc.php:423
2740
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2741
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2742
  #: templates/edit_table.inc.php:750
2743
  msgid "Conditional formatting"
2744
  msgstr ""
2745
 
2746
+ #: templates/admin/dashboard/dashboard.inc.php:426
2747
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2748
  msgid "Calculating Tools"
2749
  msgstr ""
2750
 
2751
+ #: templates/admin/dashboard/dashboard.inc.php:429
2752
  msgid "Formula columns"
2753
  msgstr ""
2754
 
2755
+ #: templates/admin/dashboard/dashboard.inc.php:432
2756
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2757
+ #: templates/admin/table-settings/table_settings_block.inc.php:80
2758
  msgid "Placeholders"
2759
  msgstr ""
2760
 
2761
+ #: templates/admin/dashboard/dashboard.inc.php:435
2762
  msgid "Premium support"
2763
  msgstr ""
2764
 
2765
+ #: templates/admin/dashboard/dashboard.inc.php:439
2766
  msgid "Get Premium Today"
2767
  msgstr ""
2768
 
2769
+ #: templates/admin/dashboard/dashboard.inc.php:446
2770
  msgid "News Blog"
2771
  msgstr ""
2772
 
2773
+ #: templates/admin/dashboard/dashboard.inc.php:451
2774
  msgid "Checkout useful articles from wpdatatables.com"
2775
  msgstr ""
2776
 
2777
+ #: templates/admin/dashboard/dashboard.inc.php:474
2778
  msgid "Please install and enable PHP extensions xml and dom on your server."
2779
  msgstr ""
2780
 
2781
+ #: templates/admin/dashboard/dashboard.inc.php:482
2782
  msgid ""
2783
  "Never miss notifications about new cool features, promotions,\n"
2784
  " giveaways or freebies – subscribe to our "
2786
  " about 1 message per month and never spam!"
2787
  msgstr ""
2788
 
2789
+ #: templates/admin/dashboard/dashboard.inc.php:500
2790
  msgid "Premium "
2791
  msgstr ""
2792
 
2793
+ #: templates/admin/dashboard/dashboard.inc.php:503
2794
  msgid ""
2795
  "While wpDataTables itself provides quite a large amount of features and "
2796
  "unlimited customisation, flexibility, you can achieve even more with our "
2797
  "premium addons.(requires wpDataTables Premium version)"
2798
  msgstr ""
2799
 
2800
+ #: templates/admin/dashboard/dashboard.inc.php:521
2801
  msgid ""
2802
  "A wpDataTables addon which allows showing additional details for a specific "
2803
  "row in a popup or a separate page or post."
2804
  msgstr ""
2805
 
2806
+ #: templates/admin/dashboard/dashboard.inc.php:527
2807
+ #: templates/admin/dashboard/dashboard.inc.php:554
2808
+ #: templates/admin/dashboard/dashboard.inc.php:580
2809
+ #: templates/admin/dashboard/dashboard.inc.php:607
2810
+ #: templates/admin/dashboard/dashboard.inc.php:633
2811
+ #: templates/admin/dashboard/dashboard.inc.php:666
2812
  msgid "Learn More"
2813
  msgstr ""
2814
 
2815
+ #: templates/admin/dashboard/dashboard.inc.php:548
2816
  msgid ""
2817
  "An add-on for wpDataTables that provides powerful filtering features: "
2818
  "cascade filtering, applying filters on button click, hide table before "
2819
  "filtering."
2820
  msgstr ""
2821
 
2822
+ #: templates/admin/dashboard/dashboard.inc.php:644
2823
  msgid "Need free booking plugin?"
2824
  msgstr ""
2825
 
2826
+ #: templates/admin/dashboard/dashboard.inc.php:653
2827
  msgid "Appointments and Events WordPress Booking Plugin"
2828
  msgstr ""
2829
 
2830
+ #: templates/admin/dashboard/dashboard.inc.php:656
2831
  msgid ""
2832
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2833
  "set up a fully-featured automated booking system on your WordPress website "
2838
  "each month."
2839
  msgstr ""
2840
 
2841
+ #: templates/admin/dashboard/dashboard.inc.php:659
2842
  msgid "Rating: 4.3 - ‎97 reviews"
2843
  msgstr ""
2844
 
2845
+ #: templates/admin/dashboard/dashboard.inc.php:662
2846
  msgid "Free Download"
2847
  msgstr ""
2848
 
2849
+ #: templates/admin/dashboard/dashboard.inc.php:677
2850
  #: templates/admin/getting-started/getting_started.inc.php:184
2851
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
2852
  #: templates/admin/support/support.inc.php:78
2853
  #: templates/admin/system-info/system_info.inc.php:509
2854
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2855
  msgid "Made by"
2856
  msgstr ""
2857
 
2858
+ #: templates/admin/dashboard/dashboard.inc.php:685
2859
  #: templates/admin/getting-started/getting_started.inc.php:192
2860
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
2861
  #: templates/admin/support/support.inc.php:45
2862
  #: templates/admin/support/support.inc.php:86
2863
  #: templates/admin/system-info/system_info.inc.php:517
2866
  msgid "Documentation"
2867
  msgstr ""
2868
 
2869
+ #: templates/admin/dashboard/dashboard.inc.php:689
2870
  #: templates/admin/getting-started/getting_started.inc.php:196
2871
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
2872
  #: templates/admin/support/support.inc.php:24
2873
  #: templates/admin/support/support.inc.php:90
2874
  #: templates/admin/system-info/system_info.inc.php:521
2994
  msgstr ""
2995
 
2996
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
2997
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
2998
  msgid "Go Premium Now"
2999
  msgstr ""
3000
 
3007
  msgstr ""
3008
 
3009
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3010
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3011
  msgid "Premium"
3012
  msgstr ""
3013
 
3037
 
3038
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3039
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3040
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3041
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3042
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3043
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
3044
  msgid "NEW!"
3045
  msgstr ""
3046
 
3057
 
3058
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3059
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3060
+ #: templates/admin/table-settings/table_settings_block.inc.php:643
3061
+ #: templates/admin/table-settings/table_settings_block.inc.php:651
3062
  msgid "Sorting"
3063
  msgstr ""
3064
 
3065
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3066
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3067
+ #: templates/admin/table-settings/table_settings_block.inc.php:504
3068
+ #: templates/admin/table-settings/table_settings_block.inc.php:512
3069
+ #: templates/admin/table-settings/table_settings_block.inc.php:1387
3070
  msgid "Pagination"
3071
  msgstr ""
3072
 
3093
  msgstr ""
3094
 
3095
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3096
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3097
  msgid "Limited"
3098
  msgstr ""
3099
 
3101
  msgid "Some options are not available."
3102
  msgstr ""
3103
 
3104
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3105
+ msgid "Table Customization"
3106
  msgstr ""
3107
 
3108
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3109
+ msgid "Creating tables via Google Sheet API"
3110
+ msgstr ""
3111
+
3112
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3113
  msgid "Creating tables from Private Google Spreadsheet"
3114
  msgstr ""
3115
 
3116
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3117
  msgid "Support"
3118
  msgstr ""
3119
 
3120
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3121
  msgid "Response time is slow and can be up to 5 business days."
3122
  msgstr ""
3123
 
3124
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3125
  msgid ""
3126
  "* Please note that wpDataTables add-ons are not included in premium version "
3127
  "of plugin."
3128
  msgstr ""
3129
 
3130
  #: templates/admin/settings/settings.inc.php:33
3131
+ #: templates/admin/settings/settings.inc.php:95
3132
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3133
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3134
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3135
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3136
  #: templates/admin/table-settings/table_preview_block.inc.php:89
 
3137
  #: templates/admin/table-settings/table_settings_block.inc.php:48
3138
+ #: templates/admin/table-settings/table_settings_block.inc.php:49
3139
  msgid "Save Changes"
3140
  msgstr ""
3141
 
3159
  msgid "Custom JS and CSS"
3160
  msgstr ""
3161
 
3162
+ #: templates/admin/settings/settings.inc.php:62
3163
+ msgid "Google Spreadsheet API settings"
3164
+ msgstr ""
3165
+
3166
+ #: templates/admin/settings/settings.inc.php:92 templates/settings.inc.php:434
3167
  msgid "Reset colors and fonts to default"
3168
  msgstr ""
3169
 
3170
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3171
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
3172
+ #: templates/admin/table-settings/table_settings_block.inc.php:1367
3173
+ #: templates/admin/table-settings/table_settings_block.inc.php:1461
3174
  msgid "Font"
3175
  msgstr ""
3176
 
3177
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
3178
+ #: templates/admin/table-settings/table_settings_block.inc.php:1464
3179
  #: templates/settings.inc.php:428
3180
  msgid ""
3181
  "This font will be used in rendered tables. Leave blank not to override "
3183
  msgstr ""
3184
 
3185
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
3186
+ #: templates/admin/table-settings/table_settings_block.inc.php:1486
3187
  msgid "Define the font size"
3188
  msgstr ""
3189
 
3190
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3191
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3192
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
3193
+ #: templates/admin/table-settings/table_settings_block.inc.php:1519
3194
+ #: templates/admin/table-settings/table_settings_block.inc.php:1594
3195
  msgid "Font color"
3196
  msgstr ""
3197
 
3198
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
3199
+ #: templates/admin/table-settings/table_settings_block.inc.php:1522
3200
  msgid "This color is used for the main font in table cells."
3201
  msgstr ""
3202
 
3203
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3204
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
3205
+ #: templates/admin/table-settings/table_settings_block.inc.php:1371
3206
  msgid "Header"
3207
  msgstr ""
3208
 
3209
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
3210
+ #: templates/admin/table-settings/table_settings_block.inc.php:1552
3211
  msgid "The color is used for background of the table header."
3212
  msgstr ""
3213
 
3214
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
3215
+ #: templates/admin/table-settings/table_settings_block.inc.php:1574
3216
  msgid "This color is used for the border in the table header."
3217
  msgstr ""
3218
 
3219
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
3220
+ #: templates/admin/table-settings/table_settings_block.inc.php:1597
3221
  msgid "This color is used for the font in the table header."
3222
  msgstr ""
3223
 
3224
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
3225
+ #: templates/admin/table-settings/table_settings_block.inc.php:1616
3226
  msgid "Active and hover color\t"
3227
  msgstr ""
3228
 
3229
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
3230
+ #: templates/admin/table-settings/table_settings_block.inc.php:1619
3231
  msgid ""
3232
  "This color is used when you hover the mouse above the table header, or when "
3233
  "you choose a column."
3238
  msgstr ""
3239
 
3240
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
3241
+ #: templates/admin/table-settings/table_settings_block.inc.php:1647
3242
  msgid "Inner border"
3243
  msgstr ""
3244
 
3245
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
3246
+ #: templates/admin/table-settings/table_settings_block.inc.php:1650
3247
  msgid "This color is used for the inner border in the table between cells."
3248
  msgstr ""
3249
 
3250
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
3251
+ #: templates/admin/table-settings/table_settings_block.inc.php:1670
3252
  msgid "Outer border"
3253
  msgstr ""
3254
 
3255
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
3256
+ #: templates/admin/table-settings/table_settings_block.inc.php:1673
3257
  msgid "This color is used for the outer border of the whole table body."
3258
  msgstr ""
3259
 
3260
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
3261
+ #: templates/admin/table-settings/table_settings_block.inc.php:1693
3262
  msgid "Table borders"
3263
  msgstr ""
3264
 
3265
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
3266
+ #: templates/admin/table-settings/table_settings_block.inc.php:1696
3267
  msgid "When this is checked, borders in table will be removed "
3268
  msgstr ""
3269
 
3270
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
3271
+ #: templates/admin/table-settings/table_settings_block.inc.php:1702
3272
  msgid "Remove borders in table"
3273
  msgstr ""
3274
 
3275
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
3276
+ #: templates/admin/table-settings/table_settings_block.inc.php:1707
3277
  msgid "Header border"
3278
  msgstr ""
3279
 
3280
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
3281
+ #: templates/admin/table-settings/table_settings_block.inc.php:1710
3282
  msgid "When this is checked,borders in header will be removed "
3283
  msgstr ""
3284
 
3287
  msgstr ""
3288
 
3289
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
3290
+ #: templates/admin/table-settings/table_settings_block.inc.php:1379
3291
  msgid "Row color"
3292
  msgstr ""
3293
 
3294
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
3295
+ #: templates/admin/table-settings/table_settings_block.inc.php:1729
3296
  msgid "Even row background"
3297
  msgstr ""
3298
 
3299
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
3300
+ #: templates/admin/table-settings/table_settings_block.inc.php:1732
3301
  msgid "This color is used for for background in even rows."
3302
  msgstr ""
3303
 
3304
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
3305
+ #: templates/admin/table-settings/table_settings_block.inc.php:1751
3306
  msgid "Odd row background"
3307
  msgstr ""
3308
 
3309
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
3310
+ #: templates/admin/table-settings/table_settings_block.inc.php:1754
3311
  msgid "This color is used for for background in odd rows."
3312
  msgstr ""
3313
 
3314
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
3315
+ #: templates/admin/table-settings/table_settings_block.inc.php:1773
3316
  msgid "Hover row"
3317
  msgstr ""
3318
 
3319
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
3320
+ #: templates/admin/table-settings/table_settings_block.inc.php:1776
3321
  msgid ""
3322
  "This color is used for to highlight the row when you hover your mouse above "
3323
  "it."
3324
  msgstr ""
3325
 
3326
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
3327
+ #: templates/admin/table-settings/table_settings_block.inc.php:1795
3328
  msgid "Background for selected rows"
3329
  msgstr ""
3330
 
3331
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
3332
+ #: templates/admin/table-settings/table_settings_block.inc.php:1798
3333
  msgid "This color is used for background in selected rows."
3334
  msgstr ""
3335
 
3336
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
3337
+ #: templates/admin/table-settings/table_settings_block.inc.php:1383
3338
  msgid "Cell color"
3339
  msgstr ""
3340
 
3341
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
3342
+ #: templates/admin/table-settings/table_settings_block.inc.php:1826
3343
  msgid "Sorted columns, even rows"
3344
  msgstr ""
3345
 
3346
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
3347
+ #: templates/admin/table-settings/table_settings_block.inc.php:1829
3348
  msgid ""
3349
  "This color is used for background in cells which are in the active columns "
3350
  "(columns used for sorting) in even rows."
3351
  msgstr ""
3352
 
3353
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
3354
+ #: templates/admin/table-settings/table_settings_block.inc.php:1849
3355
  msgid "Sorted columns, odd rows"
3356
  msgstr ""
3357
 
3358
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
3359
+ #: templates/admin/table-settings/table_settings_block.inc.php:1852
3360
  msgid ""
3361
  "This color is used for background in cells which are in the active columns "
3362
  "(columns used for sorting) in odd rows."
3448
  msgstr ""
3449
 
3450
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
3451
+ #: templates/admin/table-settings/table_settings_block.inc.php:1882
3452
  msgid "This color is used for the background of the pagination"
3453
  msgstr ""
3454
 
3455
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
3456
+ #: templates/admin/table-settings/table_settings_block.inc.php:1905
3457
  msgid "This color is used for the color of the links in the pagination."
3458
  msgstr ""
3459
 
3460
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
3461
+ #: templates/admin/table-settings/table_settings_block.inc.php:1924
3462
  msgid "Current page background color"
3463
  msgstr ""
3464
 
3465
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
3466
+ #: templates/admin/table-settings/table_settings_block.inc.php:1927
3467
  msgid "The color is used for background of the current page"
3468
  msgstr ""
3469
 
3470
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
3471
+ #: templates/admin/table-settings/table_settings_block.inc.php:1948
3472
  msgid "Current page color"
3473
  msgstr ""
3474
 
3475
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
3476
+ #: templates/admin/table-settings/table_settings_block.inc.php:1951
3477
  msgid "This color is used for the color of the current page."
3478
  msgstr ""
3479
 
3480
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
3481
+ #: templates/admin/table-settings/table_settings_block.inc.php:1971
3482
  msgid "Other pages hover background color"
3483
  msgstr ""
3484
 
3485
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
3486
+ #: templates/admin/table-settings/table_settings_block.inc.php:1974
3487
  msgid ""
3488
  "This background color is used when you hover the mouse above the other pages"
3489
  msgstr ""
3490
 
3491
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
3492
+ #: templates/admin/table-settings/table_settings_block.inc.php:1995
3493
  msgid "Other pages hover color"
3494
  msgstr ""
3495
 
3496
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
3497
+ #: templates/admin/table-settings/table_settings_block.inc.php:1998
3498
  msgid "This color is used when you hover the mouse above the other pages."
3499
  msgstr ""
3500
 
3510
  msgstr ""
3511
 
3512
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
3513
+ #: templates/admin/table-settings/table_settings_block.inc.php:2025
3514
  #: templates/settings.inc.php:463
3515
  msgid "Custom wpDataTables CSS"
3516
  msgstr ""
3530
  msgstr ""
3531
 
3532
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
3533
+ #: templates/admin/table-settings/table_settings_block.inc.php:1407
3534
  #: templates/settings.inc.php:45
3535
  msgid "Interface language"
3536
  msgstr ""
3537
 
3538
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
3539
+ #: templates/admin/table-settings/table_settings_block.inc.php:1410
3540
  msgid "Pick the language which will be used in tables interface."
3541
  msgstr ""
3542
 
3543
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
3544
+ #: templates/admin/table-settings/table_settings_block.inc.php:1417
3545
  msgid "English (default)"
3546
  msgstr ""
3547
 
3554
  msgid "Pick the date format to use in date column type."
3555
  msgstr ""
3556
 
3557
+ #: templates/admin/settings/tabs/main_plugin_settings.php:74
3558
  #: templates/settings.inc.php:119
3559
  msgid "Time format"
3560
  msgstr ""
3561
 
3562
+ #: templates/admin/settings/tabs/main_plugin_settings.php:76
3563
  msgid "Pick the time format to use in datetime and time column type."
3564
  msgstr ""
3565
 
3566
+ #: templates/admin/settings/tabs/main_plugin_settings.php:91
3567
  msgid "Parse shortcodes"
3568
  msgstr ""
3569
 
3570
+ #: templates/admin/settings/tabs/main_plugin_settings.php:93
3571
  msgid ""
3572
  "If the option is enabled, you can use shortcodes of other plugins for "
3573
  "generating content."
3574
  msgstr ""
3575
 
3576
+ #: templates/admin/settings/tabs/main_plugin_settings.php:97
3577
  msgid "Parse shortcodes in strings"
3578
  msgstr ""
3579
 
3580
+ #: templates/admin/settings/tabs/main_plugin_settings.php:104
3581
+ #: templates/admin/table-settings/table_settings_block.inc.php:1430
3582
  #: templates/settings.inc.php:74
3583
  msgid "Base skin"
3584
  msgstr ""
3585
 
3586
+ #: templates/admin/settings/tabs/main_plugin_settings.php:106
3587
+ #: templates/admin/table-settings/table_settings_block.inc.php:1433
3588
  msgid "Choose the base skin for the plugin."
3589
  msgstr ""
3590
 
3591
+ #: templates/admin/settings/tabs/main_plugin_settings.php:112
3592
+ #: templates/admin/table-settings/table_settings_block.inc.php:1440
3593
  msgid "Material"
3594
  msgstr ""
3595
 
3596
+ #: templates/admin/settings/tabs/main_plugin_settings.php:113
3597
+ #: templates/admin/table-settings/table_settings_block.inc.php:1441
3598
  msgid "Light"
3599
  msgstr ""
3600
 
3601
+ #: templates/admin/settings/tabs/main_plugin_settings.php:114
3602
+ #: templates/admin/table-settings/table_settings_block.inc.php:1442
3603
  msgid "Graphite"
3604
  msgstr ""
3605
 
3606
+ #: templates/admin/settings/tabs/main_plugin_settings.php:115
3607
+ #: templates/admin/table-settings/table_settings_block.inc.php:1443
3608
  msgid "Aqua"
3609
  msgstr ""
3610
 
3611
+ #: templates/admin/settings/tabs/main_plugin_settings.php:116
3612
+ #: templates/admin/table-settings/table_settings_block.inc.php:1444
3613
  msgid "Purple"
3614
  msgstr ""
3615
 
3616
+ #: templates/admin/settings/tabs/main_plugin_settings.php:117
3617
+ #: templates/admin/table-settings/table_settings_block.inc.php:1445
3618
  msgid "Dark"
3619
  msgstr ""
3620
 
3621
+ #: templates/admin/settings/tabs/main_plugin_settings.php:125
3622
  #: templates/settings.inc.php:131
3623
  msgid "Number format"
3624
  msgstr ""
3625
 
3626
+ #: templates/admin/settings/tabs/main_plugin_settings.php:127
3627
  #: templates/settings.inc.php:138
3628
  msgid "Pick the number format (thousands and decimals separator)"
3629
  msgstr ""
3630
 
3631
+ #: templates/admin/settings/tabs/main_plugin_settings.php:144
3632
  #: templates/settings.inc.php:86
3633
  msgid "Render advanced filter"
3634
  msgstr ""
3635
 
3636
+ #: templates/admin/settings/tabs/main_plugin_settings.php:146
3637
  msgid ""
3638
  "Choose where you would like to render the advanced filter for tables where "
3639
  "enabled."
3640
  msgstr ""
3641
 
3642
+ #: templates/admin/settings/tabs/main_plugin_settings.php:152
3643
  #: templates/settings.inc.php:90
3644
  msgid "In the header"
3645
  msgstr ""
3646
 
3647
+ #: templates/admin/settings/tabs/main_plugin_settings.php:153
3648
  #: templates/settings.inc.php:91
3649
  msgid "In the footer"
3650
  msgstr ""
3651
 
3652
+ #: templates/admin/settings/tabs/main_plugin_settings.php:161
3653
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3654
  #: templates/settings.inc.php:143
3655
  msgid "Decimal places"
3656
  msgstr ""
3657
 
3658
+ #: templates/admin/settings/tabs/main_plugin_settings.php:163
3659
  msgid "Define the amount of decimal places for the float numbers."
3660
  msgstr ""
3661
 
3662
+ #: templates/admin/settings/tabs/main_plugin_settings.php:188
3663
  msgid "CSV delimiter"
3664
  msgstr ""
3665
 
3666
+ #: templates/admin/settings/tabs/main_plugin_settings.php:190
3667
  msgid "Pick the CSV delimiter"
3668
  msgstr ""
3669
 
3670
+ #: templates/admin/settings/tabs/main_plugin_settings.php:209
3671
  msgid "Tables sorting direction in admin page"
3672
  msgstr ""
3673
 
3674
+ #: templates/admin/settings/tabs/main_plugin_settings.php:211
3675
  msgid ""
3676
  "Here you can set sorting direction by id for browse tables and charts. By "
3677
  "default is ascending order."
3678
  msgstr ""
3679
 
3680
+ #: templates/admin/settings/tabs/main_plugin_settings.php:217
3681
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3682
  #: templates/edit_table.inc.php:663
3683
  msgid "Ascending"
3684
  msgstr ""
3685
 
3686
+ #: templates/admin/settings/tabs/main_plugin_settings.php:218
3687
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3688
  #: templates/edit_table.inc.php:665
3689
  msgid "Descending"
3690
  msgstr ""
3691
 
3692
+ #: templates/admin/settings/tabs/main_plugin_settings.php:229
3693
  #: templates/settings.inc.php:171
3694
  msgid "Tablet width"
3695
  msgstr ""
3696
 
3697
+ #: templates/admin/settings/tabs/main_plugin_settings.php:231
3698
  #: templates/settings.inc.php:175
3699
  msgid ""
3700
  "Here you can specify width of the screen (in pixels) that will be treated as "
3701
  "a tablet. You can set it wider if you want responsive effect on desktops."
3702
  msgstr ""
3703
 
3704
+ #: templates/admin/settings/tabs/main_plugin_settings.php:255
3705
  #: templates/settings.inc.php:181
3706
  msgid "Mobile width"
3707
  msgstr ""
3708
 
3709
+ #: templates/admin/settings/tabs/main_plugin_settings.php:257
3710
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3711
  msgstr ""
3712
 
3713
+ #: templates/admin/settings/tabs/main_plugin_settings.php:282
3714
  #: templates/settings.inc.php:61
3715
  msgid "Tables per admin page"
3716
  msgstr ""
3717
 
3718
+ #: templates/admin/settings/tabs/main_plugin_settings.php:284
3719
  msgid "How many tables to show in the browse page."
3720
  msgstr ""
3721
 
3722
+ #: templates/admin/settings/tabs/main_plugin_settings.php:300
3723
  msgid "Align numbers"
3724
  msgstr ""
3725
 
3726
+ #: templates/admin/settings/tabs/main_plugin_settings.php:302
3727
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3728
  msgstr ""
3729
 
3730
+ #: templates/admin/settings/tabs/main_plugin_settings.php:306
3731
  #: templates/settings.inc.php:161
3732
  msgid "Align numbers to the right"
3733
  msgstr ""
3734
 
3735
+ #: templates/admin/settings/tabs/main_plugin_settings.php:316
3736
  msgid "Sum functions label"
3737
  msgstr ""
3738
 
3739
+ #: templates/admin/settings/tabs/main_plugin_settings.php:318
3740
  msgid ""
3741
  "Enter a label that will be used for Sum functions. If you leave it blank "
3742
  "default label will be Σ ="
3743
  msgstr ""
3744
 
3745
+ #: templates/admin/settings/tabs/main_plugin_settings.php:336
3746
  msgid "Average functions label"
3747
  msgstr ""
3748
 
3749
+ #: templates/admin/settings/tabs/main_plugin_settings.php:338
3750
  msgid ""
3751
  "Enter a label that will be used for Average functions. If you leave it blank "
3752
  "default label will be Avg ="
3753
  msgstr ""
3754
 
3755
+ #: templates/admin/settings/tabs/main_plugin_settings.php:361
3756
  msgid "Minimum functions label"
3757
  msgstr ""
3758
 
3759
+ #: templates/admin/settings/tabs/main_plugin_settings.php:363
3760
  msgid ""
3761
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3762
  "default label will be Min ="
3763
  msgstr ""
3764
 
3765
+ #: templates/admin/settings/tabs/main_plugin_settings.php:381
3766
  msgid "Maximum functions label"
3767
  msgstr ""
3768
 
3769
+ #: templates/admin/settings/tabs/main_plugin_settings.php:383
3770
  msgid ""
3771
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3772
  "default label will be Max ="
3773
  msgstr ""
3774
 
3775
+ #: templates/admin/settings/tabs/main_plugin_settings.php:409
3776
  msgid "Include full bootstrap front-end"
3777
  msgstr ""
3778
 
3779
+ #: templates/admin/settings/tabs/main_plugin_settings.php:411
3780
+ #: templates/admin/settings/tabs/main_plugin_settings.php:422
3781
  msgid ""
3782
  "It is recommended to uncheck this option if bootstrap.js is already included "
3783
  "in one of the theme files. Unchecked option means that there is still "
3784
  "bootstrap.js included just in noconflict mode which should prevent errors."
3785
  msgstr ""
3786
 
3787
+ #: templates/admin/settings/tabs/main_plugin_settings.php:415
3788
  msgid "Include full bootstrap.js on the front-end"
3789
  msgstr ""
3790
 
3791
+ #: templates/admin/settings/tabs/main_plugin_settings.php:420
3792
  msgid "Include full bootstrap back-end"
3793
  msgstr ""
3794
 
3795
+ #: templates/admin/settings/tabs/main_plugin_settings.php:426
3796
  msgid "Include full bootstrap.js on the back-end"
3797
  msgstr ""
3798
 
3799
+ #: templates/admin/settings/tabs/main_plugin_settings.php:434
3800
+ #: templates/admin/settings/tabs/main_plugin_settings.php:440
3801
  #: templates/settings.inc.php:32
3802
  msgid "Show plugin credentials below tables"
3803
  msgstr ""
3804
 
3805
+ #: templates/admin/settings/tabs/main_plugin_settings.php:436
3806
  #: templates/settings.inc.php:32
3807
  msgid ""
3808
  "If you want to support our project, please, keep this checkbox as checked"
3809
  msgstr ""
3810
 
3811
+ #: templates/admin/settings/tabs/main_plugin_settings.php:445
3812
  msgid "Prevent deleting tables in database"
3813
  msgstr ""
3814
 
3815
+ #: templates/admin/settings/tabs/main_plugin_settings.php:447
3816
  msgid ""
3817
  "It is recommended to leave this option as checked if you what to keep your "
3818
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3819
  "this option, it will be deleted all tables in database after deleting plugin"
3820
  msgstr ""
3821
 
3822
+ #: templates/admin/settings/tabs/main_plugin_settings.php:451
3823
  msgid ""
3824
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3825
  msgstr ""
3826
 
3827
+ #: templates/admin/settings/tabs/main_plugin_settings.php:458
3828
  msgid "Remove Getting Started page"
3829
  msgstr ""
3830
 
3831
+ #: templates/admin/settings/tabs/main_plugin_settings.php:460
3832
  msgid ""
3833
  "Check this option if you want to remove Getting Started page from admin menu."
3834
  msgstr ""
3835
 
3836
+ #: templates/admin/settings/tabs/main_plugin_settings.php:464
3837
  msgid "Remove \"Getting Started\" page from admin menu."
3838
  msgstr ""
3839
 
4097
  msgid "Column header"
4098
  msgstr ""
4099
 
 
 
 
 
4100
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4101
  msgid "Insert after"
4102
  msgstr ""
4133
 
4134
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4135
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4136
+ #: templates/admin/table-settings/table_settings_block.inc.php:64
4137
  msgid "Display"
4138
  msgstr ""
4139
 
4146
  msgstr ""
4147
 
4148
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4149
+ #: templates/admin/table-settings/table_settings_block.inc.php:72
4150
  msgid "Editing"
4151
  msgstr ""
4152
 
4583
  msgstr ""
4584
 
4585
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4586
+ #: templates/admin/table-settings/table_settings_block.inc.php:682
4587
  msgid "Global search"
4588
  msgstr ""
4589
 
5123
  msgstr ""
5124
 
5125
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5126
+ #: templates/admin/table-settings/table_settings_block.inc.php:211
5127
  #: templates/edit_table.inc.php:58
5128
  msgid "Table title"
5129
  msgstr ""
5130
 
5131
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5132
+ #: templates/admin/table-settings/table_settings_block.inc.php:219
5133
  #: templates/edit_table.inc.php:67
5134
  msgid "Show table title"
5135
  msgstr ""
5136
 
5137
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5138
+ #: templates/admin/table-settings/table_settings_block.inc.php:226
5139
  msgid ""
5140
  "Enable this to show the table title in a h3 block above the table, disable "
5141
  "to hide."
5142
  msgstr ""
5143
 
5144
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5145
+ #: templates/admin/table-settings/table_settings_block.inc.php:234
5146
  msgid "Show table title on the page"
5147
  msgstr ""
5148
 
5209
  msgstr ""
5210
 
5211
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5212
+ #: templates/admin/table-settings/table_settings_block.inc.php:378
5213
  msgid "Scrollable table"
5214
  msgstr ""
5215
 
5216
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5217
+ #: templates/admin/table-settings/table_settings_block.inc.php:385
5218
  msgid "Enable this to enable a horizontal scrollbar below the table."
5219
  msgstr ""
5220
 
5221
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5222
+ #: templates/admin/table-settings/table_settings_block.inc.php:394
5223
  msgid "Show a horizontal scrollbar"
5224
  msgstr ""
5225
 
5226
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5227
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5228
+ #: templates/admin/table-settings/table_settings_block.inc.php:438
5229
+ #: templates/admin/table-settings/table_settings_block.inc.php:446
5230
  msgid "Limit table width"
5231
  msgstr ""
5232
 
5233
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5234
+ #: templates/admin/table-settings/table_settings_block.inc.php:453
5235
  msgid "Enable this to restrict table width to page width."
5236
  msgstr ""
5237
 
5238
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5239
+ #: templates/admin/table-settings/table_settings_block.inc.php:462
5240
  msgid "Limit table width to page width"
5241
  msgstr ""
5242
 
5243
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5244
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5245
+ #: templates/admin/table-settings/table_settings_block.inc.php:469
5246
+ #: templates/admin/table-settings/table_settings_block.inc.php:477
5247
  #: templates/edit_table.inc.php:392
5248
  msgid "Word wrap"
5249
  msgstr ""
5250
 
5251
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5252
+ #: templates/admin/table-settings/table_settings_block.inc.php:484
5253
  msgid ""
5254
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5255
  "height."
5256
  msgstr ""
5257
 
5258
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5259
+ #: templates/admin/table-settings/table_settings_block.inc.php:492
5260
  msgid "Wrap words to newlines"
5261
  msgstr ""
5262
 
5318
  msgid "EXCEL-LIKE"
5319
  msgstr ""
5320
 
5321
+ #: templates/admin/table-settings/table_settings_block.inc.php:68
5322
  msgid "Sorting and filtering"
5323
  msgstr ""
5324
 
5325
+ #: templates/admin/table-settings/table_settings_block.inc.php:76
5326
+ #: templates/admin/table-settings/table_settings_block.inc.php:1009
5327
  msgid "Table Tools"
5328
  msgstr ""
5329
 
5330
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
5331
+ msgid " Customize"
5332
+ msgstr ""
5333
+
5334
+ #: templates/admin/table-settings/table_settings_block.inc.php:103
5335
  msgid ""
5336
  "Please choose a type of the input data source - it can be a MySQL query, a "
5337
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5338
  msgstr ""
5339
 
5340
+ #: templates/admin/table-settings/table_settings_block.inc.php:110
5341
  msgid "Select a data source type"
5342
  msgstr ""
5343
 
5344
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
5345
  msgid "SQL query "
5346
  msgstr ""
5347
 
5348
+ #: templates/admin/table-settings/table_settings_block.inc.php:113
5349
  #: templates/edit_table.inc.php:85
5350
  msgid "CSV file"
5351
  msgstr ""
5352
 
5353
+ #: templates/admin/table-settings/table_settings_block.inc.php:114
5354
  #: templates/edit_table.inc.php:86
5355
  msgid "Excel file"
5356
  msgstr ""
5357
 
5358
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
5359
  msgid "Google Spreadsheet "
5360
  msgstr ""
5361
 
5362
+ #: templates/admin/table-settings/table_settings_block.inc.php:118
5363
  #: templates/edit_table.inc.php:89
5364
  msgid "XML file"
5365
  msgstr ""
5366
 
5367
+ #: templates/admin/table-settings/table_settings_block.inc.php:119
5368
  #: templates/edit_table.inc.php:90
5369
  msgid "JSON file"
5370
  msgstr ""
5371
 
5372
+ #: templates/admin/table-settings/table_settings_block.inc.php:133
5373
  msgid ""
5374
  "Upload your file or provide the full URL here. For CSV or Excel input "
5375
  "sources only URLs or paths from same domain are supported. For Google "
5377
  "the URL."
5378
  msgstr ""
5379
 
5380
+ #: templates/admin/table-settings/table_settings_block.inc.php:139
5381
  msgid "Paste URL or path, or click Browse to choose"
5382
  msgstr ""
5383
 
5384
+ #: templates/admin/table-settings/table_settings_block.inc.php:143
5385
  msgid "Browse..."
5386
  msgstr ""
5387
 
5388
+ #: templates/admin/table-settings/table_settings_block.inc.php:155
5389
  msgid ""
5390
  "If it is turned on, all sorting, filtering, pagination and other data "
5391
  "interaction will be done by MySQL server. This feature is recommended if you "
5392
  "have more than 2000-3000 rows. Mandatory for editable tables."
5393
  msgstr ""
5394
 
5395
+ #: templates/admin/table-settings/table_settings_block.inc.php:162
5396
  msgid "Enable server-side processing"
5397
  msgstr ""
5398
 
5399
+ #: templates/admin/table-settings/table_settings_block.inc.php:177
5400
  msgid "MySQL Query"
5401
  msgstr ""
5402
 
5403
+ #: templates/admin/table-settings/table_settings_block.inc.php:179
5404
  msgid ""
5405
  "Enter the text of your MySQL query here - please make sure it returns actual "
5406
  "data first. You can use a number of placeholders to make the dataset in the "
5408
  "with different shortcodes."
5409
  msgstr ""
5410
 
5411
+ #: templates/admin/table-settings/table_settings_block.inc.php:186
5412
  #: templates/edit_table.inc.php:292
5413
  msgid "Auto-refresh"
5414
  msgstr ""
5415
 
5416
+ #: templates/admin/table-settings/table_settings_block.inc.php:188
5417
  msgid ""
5418
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5419
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5420
  "refresh."
5421
  msgstr ""
5422
 
5423
+ #: templates/admin/table-settings/table_settings_block.inc.php:193
5424
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5425
  msgstr ""
5426
 
5427
+ #: templates/admin/table-settings/table_settings_block.inc.php:242
5428
  msgid "Responsiveness"
5429
  msgstr ""
5430
 
5431
+ #: templates/admin/table-settings/table_settings_block.inc.php:250
5432
  msgid "Responsive design"
5433
  msgstr ""
5434
 
5435
+ #: templates/admin/table-settings/table_settings_block.inc.php:257
5436
  msgid "Enable this to allow responsiveness in the table."
5437
  msgstr ""
5438
 
5439
+ #: templates/admin/table-settings/table_settings_block.inc.php:258
5440
  msgid ""
5441
  "Please do not forget to define which columns will be hidden on mobiles and "
5442
  "tablets in the column settings!"
5443
  msgstr ""
5444
 
5445
+ #: templates/admin/table-settings/table_settings_block.inc.php:269
5446
  msgid "Allow collapsing on mobiles and tablets"
5447
  msgstr ""
5448
 
5449
+ #: templates/admin/table-settings/table_settings_block.inc.php:277
5450
  msgid "Hide until loaded"
5451
  msgstr ""
5452
 
5453
+ #: templates/admin/table-settings/table_settings_block.inc.php:279
5454
  msgid ""
5455
  "Enable to make whole table hidden until it is initialized to prevent "
5456
  "unformatted data flashing"
5457
  msgstr ""
5458
 
5459
+ #: templates/admin/table-settings/table_settings_block.inc.php:284
5460
  msgid "Hide the table before it is fully loaded"
5461
  msgstr ""
5462
 
5463
+ #: templates/admin/table-settings/table_settings_block.inc.php:296
5464
  msgid "Default rows per page"
5465
  msgstr ""
5466
 
5467
+ #: templates/admin/table-settings/table_settings_block.inc.php:304
5468
+ #: templates/admin/table-settings/table_settings_block.inc.php:339
5469
  msgid "Rows per page"
5470
  msgstr ""
5471
 
5472
+ #: templates/admin/table-settings/table_settings_block.inc.php:311
5473
  msgid "How many rows to show per page by default."
5474
  msgstr ""
5475
 
5476
+ #: templates/admin/table-settings/table_settings_block.inc.php:347
5477
  msgid "Show X entries"
5478
  msgstr "X elem mutatása"
5479
 
5480
+ #: templates/admin/table-settings/table_settings_block.inc.php:354
5481
  msgid ""
5482
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5483
  "frontend."
5484
  msgstr ""
5485
 
5486
+ #: templates/admin/table-settings/table_settings_block.inc.php:362
5487
  msgid "Show \"Show X entries\" dropdown"
5488
  msgstr "\"Show X entries\" legördülő"
5489
 
5490
+ #: templates/admin/table-settings/table_settings_block.inc.php:386
5491
  msgid "This should be turned off if you want to set columns width manually."
5492
  msgstr ""
5493
 
5494
+ #: templates/admin/table-settings/table_settings_block.inc.php:407
5495
+ #: templates/admin/table-settings/table_settings_block.inc.php:415
5496
  msgid "Info block"
5497
  msgstr ""
5498
 
5499
+ #: templates/admin/table-settings/table_settings_block.inc.php:422
5500
  msgid ""
5501
  "Enable to show a block of information about the number of records below the "
5502
  "table."
5503
  msgstr ""
5504
 
5505
+ #: templates/admin/table-settings/table_settings_block.inc.php:430
5506
  msgid "Show information block below the table"
5507
  msgstr ""
5508
 
5509
+ #: templates/admin/table-settings/table_settings_block.inc.php:454
5510
  msgid ""
5511
  "This should be turned on if you want to set columns width manually. Should "
5512
  "be on to use word wrapping."
5513
  msgstr ""
5514
 
5515
+ #: templates/admin/table-settings/table_settings_block.inc.php:516
5516
  msgid "Enable to show a pagination"
5517
  msgstr ""
5518
 
5519
+ #: templates/admin/table-settings/table_settings_block.inc.php:524
5520
  msgid "Show pagination block below the table"
5521
  msgstr ""
5522
 
5523
+ #: templates/admin/table-settings/table_settings_block.inc.php:532
5524
+ #: templates/admin/table-settings/table_settings_block.inc.php:540
5525
  msgid "Pagination Alignment"
5526
  msgstr ""
5527
 
5528
+ #: templates/admin/table-settings/table_settings_block.inc.php:544
5529
  msgid "Here you can set pagination position: right, center or left."
5530
  msgstr ""
5531
 
5532
+ #: templates/admin/table-settings/table_settings_block.inc.php:552
5533
  msgid "Right"
5534
  msgstr ""
5535
 
5536
+ #: templates/admin/table-settings/table_settings_block.inc.php:553
5537
  msgid "Center"
5538
  msgstr ""
5539
 
5540
+ #: templates/admin/table-settings/table_settings_block.inc.php:554
5541
  msgid "Left"
5542
  msgstr ""
5543
 
5544
+ #: templates/admin/table-settings/table_settings_block.inc.php:563
5545
+ #: templates/admin/table-settings/table_settings_block.inc.php:571
5546
  msgid "Pagination Layout"
5547
  msgstr ""
5548
 
5549
+ #: templates/admin/table-settings/table_settings_block.inc.php:575
5550
  msgid "Here you can choose between different pagination layout."
5551
  msgstr ""
5552
 
5553
+ #: templates/admin/table-settings/table_settings_block.inc.php:583
5554
  msgid ""
5555
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5556
  msgstr ""
5557
 
5558
+ #: templates/admin/table-settings/table_settings_block.inc.php:584
5559
  msgid "\"Previous\" and \"Next\" buttons only"
5560
  msgstr ""
5561
 
5562
+ #: templates/admin/table-settings/table_settings_block.inc.php:585
5563
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5564
  msgstr ""
5565
 
5566
+ #: templates/admin/table-settings/table_settings_block.inc.php:586
5567
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5568
  msgstr ""
5569
 
5570
+ #: templates/admin/table-settings/table_settings_block.inc.php:587
5571
  msgid "Page number buttons only"
5572
  msgstr ""
5573
 
5574
+ #: templates/admin/table-settings/table_settings_block.inc.php:588
5575
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5576
  msgstr ""
5577
 
5578
+ #: templates/admin/table-settings/table_settings_block.inc.php:609
5579
  msgid "Advanced column filters"
5580
  msgstr ""
5581
 
5582
+ #: templates/admin/table-settings/table_settings_block.inc.php:617
5583
  msgid "Advanced filter"
5584
  msgstr ""
5585
 
5586
+ #: templates/admin/table-settings/table_settings_block.inc.php:624
5587
  msgid ""
5588
  "Enable to show an advanced filter for each of the columns, filters can be "
5589
  "shown in table footer, header or in a separate form."
5590
  msgstr ""
5591
 
5592
+ #: templates/admin/table-settings/table_settings_block.inc.php:635
5593
  msgid "Enable advanced column filters"
5594
  msgstr ""
5595
 
5596
+ #: templates/admin/table-settings/table_settings_block.inc.php:658
5597
  msgid ""
5598
  "If this is enabled, each column header will be clickable; clicking will sort "
5599
  "the whole table by the content of this column cells ascending or descending."
5600
  msgstr ""
5601
 
5602
+ #: templates/admin/table-settings/table_settings_block.inc.php:666
5603
  msgid "Allow sorting for the table"
5604
  msgstr ""
5605
 
5606
+ #: templates/admin/table-settings/table_settings_block.inc.php:674
5607
  msgid "Main search block"
5608
  msgstr ""
5609
 
5610
+ #: templates/admin/table-settings/table_settings_block.inc.php:689
5611
  msgid ""
5612
  "If this is enabled, a search block will be displayed on the top right of the "
5613
  "table, allowing to search through whole table with a single input."
5614
  msgstr ""
5615
 
5616
+ #: templates/admin/table-settings/table_settings_block.inc.php:697
5617
  msgid "Enable search block"
5618
  msgstr ""
5619
 
5620
+ #: templates/admin/table-settings/table_settings_block.inc.php:711
5621
  msgid "Filters in a form"
5622
  msgstr ""
5623
 
5624
+ #: templates/admin/table-settings/table_settings_block.inc.php:718
5625
  #: templates/edit_table.inc.php:340
5626
  msgid "Filter in form"
5627
  msgstr ""
5628
 
5629
+ #: templates/admin/table-settings/table_settings_block.inc.php:725
5630
  msgid ""
5631
  "Enable to show the advanced column filter in a form above the table, instead "
5632
  "of showing in the table footer/header."
5633
  msgstr ""
5634
 
5635
+ #: templates/admin/table-settings/table_settings_block.inc.php:734
5636
  msgid "Show filters in a form above the table"
5637
  msgstr ""
5638
 
5639
+ #: templates/admin/table-settings/table_settings_block.inc.php:742
5640
  msgid "Clear filters button"
5641
  msgstr "Szűrő törlése"
5642
 
5643
+ #: templates/admin/table-settings/table_settings_block.inc.php:749
5644
  #: templates/frontend/filter_form.inc.php:32
5645
  msgid "Clear filters"
5646
  msgstr "Szűrő törlése"
5647
 
5648
+ #: templates/admin/table-settings/table_settings_block.inc.php:753
5649
  msgid "Enable to show the clear filters button."
5650
  msgstr ""
5651
 
5652
+ #: templates/admin/table-settings/table_settings_block.inc.php:754
5653
  msgid ""
5654
  "If filter in form is enabled, clear button will be rendered after the last "
5655
  "filter."
5656
  msgstr ""
5657
 
5658
+ #: templates/admin/table-settings/table_settings_block.inc.php:759
5659
  msgid ""
5660
  "Otherwise, clear filter button will be rendered above the table next to "
5661
  "\"Table Tools\" buttons."
5662
  msgstr ""
5663
 
5664
+ #: templates/admin/table-settings/table_settings_block.inc.php:772
5665
  msgid "Show clear filters button"
5666
  msgstr ""
5667
 
5668
+ #: templates/admin/table-settings/table_settings_block.inc.php:792
5669
  msgid "Allow editing"
5670
  msgstr ""
5671
 
5672
+ #: templates/admin/table-settings/table_settings_block.inc.php:800
5673
  #: templates/edit_table.inc.php:180
5674
  msgid "Front-end editing"
5675
  msgstr ""
5676
 
5677
+ #: templates/admin/table-settings/table_settings_block.inc.php:807
5678
  msgid "Allow editing the table from the front-end."
5679
  msgstr ""
5680
 
5681
+ #: templates/admin/table-settings/table_settings_block.inc.php:815
5682
  msgid "Allow front-end editing"
5683
  msgstr ""
5684
 
5685
+ #: templates/admin/table-settings/table_settings_block.inc.php:823
5686
  msgid "Popover edit block"
5687
  msgstr ""
5688
 
5689
+ #: templates/admin/table-settings/table_settings_block.inc.php:831
5690
  #: templates/edit_table.inc.php:232
5691
  msgid "Popover tools"
5692
  msgstr ""
5693
 
5694
+ #: templates/admin/table-settings/table_settings_block.inc.php:838
5695
  msgid ""
5696
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5697
  "popover when you click on any row, instead of Table Tools block above the "
5698
  "table."
5699
  msgstr ""
5700
 
5701
+ #: templates/admin/table-settings/table_settings_block.inc.php:846
5702
  msgid "Editing buttons in a popover"
5703
  msgstr ""
5704
 
5705
+ #: templates/admin/table-settings/table_settings_block.inc.php:854
5706
+ #: templates/admin/table-settings/table_settings_block.inc.php:862
5707
  msgid "In-line editing"
5708
  msgstr ""
5709
 
5710
+ #: templates/admin/table-settings/table_settings_block.inc.php:869
5711
  msgid ""
5712
  "If this is enabled, front-end users will be able to edit cells by double-"
5713
  "clicking them, not only with the editor dialog."
5714
  msgstr ""
5715
 
5716
+ #: templates/admin/table-settings/table_settings_block.inc.php:877
5717
  msgid "Allow in-line editing"
5718
  msgstr ""
5719
 
5720
+ #: templates/admin/table-settings/table_settings_block.inc.php:892
5721
  #: templates/edit_table.inc.php:192
5722
  msgid "MySQL table name for editing"
5723
  msgstr ""
5724
 
5725
+ #: templates/admin/table-settings/table_settings_block.inc.php:894
5726
  msgid ""
5727
  "Name of the MySQL table which will be updated when edited from front-end."
5728
  msgstr ""
5729
 
5730
+ #: templates/admin/table-settings/table_settings_block.inc.php:899
5731
  msgid "MySQL table name"
5732
  msgstr ""
5733
 
5734
+ #: templates/admin/table-settings/table_settings_block.inc.php:908
5735
  #: templates/edit_table.inc.php:203
5736
  msgid "ID column for editing"
5737
  msgstr ""
5738
 
5739
+ #: templates/admin/table-settings/table_settings_block.inc.php:910
5740
  msgid ""
5741
  "Choose the column values from which will be used as row identifiers. MUST be "
5742
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
5744
  "\"id\" or \"ID\" on MySQL side."
5745
  msgstr ""
5746
 
5747
+ #: templates/admin/table-settings/table_settings_block.inc.php:924
5748
  #: templates/edit_table.inc.php:267
5749
  msgid "Editor roles"
5750
  msgstr ""
5751
 
5752
+ #: templates/admin/table-settings/table_settings_block.inc.php:926
5753
  msgid ""
5754
  "If you want only specific user roles to be able to edit the table, choose in "
5755
  "this dropdown. Leave unchecked to allow editing for everyone."
5756
  msgstr ""
5757
 
5758
+ #: templates/admin/table-settings/table_settings_block.inc.php:931
5759
  msgid "Everyone"
5760
  msgstr ""
5761
 
5762
+ #: templates/admin/table-settings/table_settings_block.inc.php:932
5763
  msgid "Administrators"
5764
  msgstr ""
5765
 
5766
+ #: templates/admin/table-settings/table_settings_block.inc.php:933
5767
  msgid "Editors"
5768
  msgstr ""
5769
 
5770
+ #: templates/admin/table-settings/table_settings_block.inc.php:934
5771
  msgid "Authors"
5772
  msgstr ""
5773
 
5774
+ #: templates/admin/table-settings/table_settings_block.inc.php:935
5775
  msgid "Contributors"
5776
  msgstr ""
5777
 
5778
+ #: templates/admin/table-settings/table_settings_block.inc.php:936
5779
  msgid "Subscribers"
5780
  msgstr ""
5781
 
5782
+ #: templates/admin/table-settings/table_settings_block.inc.php:951
5783
  msgid "Users see and edit only own data"
5784
  msgstr ""
5785
 
5786
+ #: templates/admin/table-settings/table_settings_block.inc.php:959
5787
  msgid "Users see and edit only their own data"
5788
  msgstr ""
5789
 
5790
+ #: templates/admin/table-settings/table_settings_block.inc.php:966
5791
  msgid ""
5792
  "If this is enabled, users will see and edit only the rows that are related "
5793
  "to them or were created by them (associated using the User ID column)."
5794
  msgstr ""
5795
 
5796
+ #: templates/admin/table-settings/table_settings_block.inc.php:974
5797
  msgid "Limit editing to own data only"
5798
  msgstr ""
5799
 
5800
+ #: templates/admin/table-settings/table_settings_block.inc.php:982
5801
  #: templates/edit_table.inc.php:250
5802
  msgid "User ID column"
5803
  msgstr ""
5804
 
5805
+ #: templates/admin/table-settings/table_settings_block.inc.php:984
5806
  msgid ""
5807
  "Choose the column values from which will be used as User identifiers. "
5808
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
5809
  "an integer on MySQL side."
5810
  msgstr ""
5811
 
5812
+ #: templates/admin/table-settings/table_settings_block.inc.php:1017
5813
  #: templates/edit_table.inc.php:350
5814
  msgid "Table tools"
5815
  msgstr ""
5816
 
5817
+ #: templates/admin/table-settings/table_settings_block.inc.php:1024
5818
  msgid ""
5819
  "If this is enabled, a toolbar with useful tools will be shown above the table"
5820
  msgstr ""
5821
 
5822
+ #: templates/admin/table-settings/table_settings_block.inc.php:1032
5823
  msgid "Enable Table Tools"
5824
  msgstr ""
5825
 
5826
+ #: templates/admin/table-settings/table_settings_block.inc.php:1040
5827
  msgid "Buttons"
5828
  msgstr ""
5829
 
5830
+ #: templates/admin/table-settings/table_settings_block.inc.php:1042
5831
  msgid "Choose which buttons to show in the Table Tools block."
5832
  msgstr ""
5833
 
5834
+ #: templates/admin/table-settings/table_settings_block.inc.php:1048
5835
  msgid "Columns visibility"
5836
  msgstr ""
5837
 
5838
+ #: templates/admin/table-settings/table_settings_block.inc.php:1080
5839
  msgid ""
5840
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
5841
  "that will be replaced with some actual values at the execution time; usually "
5842
+ "this is used for SQL queries, but you can use it for filtering and editing "
5843
+ "for manual tables and only filtering for tables created from XML, JSON, "
5844
+ "Excel, CSV, Google Spreadsheet and PHP Serialized array."
5845
  msgstr ""
5846
 
5847
+ #: templates/admin/table-settings/table_settings_block.inc.php:1094
5848
+ #: templates/admin/table-settings/table_settings_block.inc.php:1109
5849
+ #: templates/admin/table-settings/table_settings_block.inc.php:1124
5850
  msgid ""
5851
  "This placeholder will be replaced with any value that you will provide in a "
5852
  "shortcode. Provide a default value here that will be used for table "
5853
  "generation and when a different one is not defined in the shortcode."
5854
  msgstr ""
5855
 
5856
+ #: templates/admin/table-settings/table_settings_block.inc.php:1099
5857
+ #: templates/admin/table-settings/table_settings_block.inc.php:1114
5858
+ #: templates/admin/table-settings/table_settings_block.inc.php:1129
5859
+ #: templates/admin/table-settings/table_settings_block.inc.php:1152
5860
+ #: templates/admin/table-settings/table_settings_block.inc.php:1170
5861
+ #: templates/admin/table-settings/table_settings_block.inc.php:1188
5862
+ #: templates/admin/table-settings/table_settings_block.inc.php:1210
5863
+ #: templates/admin/table-settings/table_settings_block.inc.php:1228
5864
+ #: templates/admin/table-settings/table_settings_block.inc.php:1246
5865
+ #: templates/admin/table-settings/table_settings_block.inc.php:1271
5866
+ #: templates/admin/table-settings/table_settings_block.inc.php:1291
5867
+ #: templates/admin/table-settings/table_settings_block.inc.php:1310
5868
+ #: templates/admin/table-settings/table_settings_block.inc.php:1332
5869
  msgid "Default for table generation"
5870
  msgstr ""
5871
 
5872
+ #: templates/admin/table-settings/table_settings_block.inc.php:1145
5873
  msgid ""
5874
  "This placeholder will be replaced with the ID of currently logged in user. "
5875
  "Provide a value here to be used for table generation"
5876
  msgstr ""
5877
 
5878
+ #: templates/admin/table-settings/table_settings_block.inc.php:1162
5879
  msgid ""
5880
  "This placeholder will be replaced with the login of currently logged in "
5881
  "user. Provide a value here to be used for table generation"
5882
  msgstr ""
5883
 
5884
+ #: templates/admin/table-settings/table_settings_block.inc.php:1180
5885
  msgid ""
5886
+ "This placeholder will be replaced with the Email of currently logged in "
5887
+ "user. Provide a value here to be used for table generation"
5888
  msgstr ""
5889
 
5890
+ #: templates/admin/table-settings/table_settings_block.inc.php:1204
5891
  msgid ""
5892
  "This placeholder will be replaced with the ID of current post. Provide a "
5893
  "value here to be used for table generation"
5894
  msgstr ""
5895
 
5896
+ #: templates/admin/table-settings/table_settings_block.inc.php:1220
5897
+ msgid ""
5898
+ "This placeholder will be replaced with the First Name of currently logged in "
5899
+ "user. Provide a value here to be used for table generation"
5900
+ msgstr ""
5901
+
5902
+ #: templates/admin/table-settings/table_settings_block.inc.php:1238
5903
+ msgid ""
5904
+ "This placeholder will be replaced with the Last Name of currently logged in "
5905
+ "user. Provide a value here to be used for table generation"
5906
+ msgstr ""
5907
+
5908
+ #: templates/admin/table-settings/table_settings_block.inc.php:1262
5909
+ msgid "This placeholder will be replaced with current date."
5910
+ msgstr ""
5911
+
5912
+ #: templates/admin/table-settings/table_settings_block.inc.php:1281
5913
+ msgid "This placeholder will be replaced with current datetime."
5914
+ msgstr ""
5915
+
5916
+ #: templates/admin/table-settings/table_settings_block.inc.php:1301
5917
+ msgid "This placeholder will be replaced with current time."
5918
+ msgstr ""
5919
+
5920
+ #: templates/admin/table-settings/table_settings_block.inc.php:1325
5921
+ msgid ""
5922
+ "This placeholder will be replaced with the current prefix of WordPress "
5923
+ "database. Provide a value here to be used for table generation"
5924
+ msgstr ""
5925
+
5926
+ #: templates/admin/table-settings/table_settings_block.inc.php:1356
5927
+ msgid ""
5928
+ "In premium version you can customize each table with different skin, font, "
5929
+ "background , colors and lot more. Checkout new table customize settings "
5930
+ "below."
5931
+ msgstr ""
5932
+
5933
+ #: templates/admin/table-settings/table_settings_block.inc.php:1363
5934
+ msgid "Main"
5935
+ msgstr ""
5936
+
5937
+ #: templates/admin/table-settings/table_settings_block.inc.php:1375
5938
+ msgid "Table border"
5939
+ msgstr ""
5940
+
5941
+ #: templates/admin/table-settings/table_settings_block.inc.php:1391
5942
+ msgid "Custom CSS"
5943
+ msgstr ""
5944
+
5945
+ #: templates/admin/table-settings/table_settings_block.inc.php:1716
5946
+ msgid "Remove borders in table header"
5947
+ msgstr ""
5948
+
5949
+ #: templates/admin/table-settings/table_settings_block.inc.php:2028
5950
+ msgid ""
5951
+ "This CSS will be inserted as an inline style block on every page that has "
5952
+ "this wpDataTable."
5953
+ msgstr ""
5954
+
5955
  #: templates/admin/welcome_page/welcome_page.inc.php:26
5956
  #: templates/admin/welcome_page/welcome_page.inc.php:333
5957
  msgid "Go to Dashboard"
languages/nl_NL/nl_NL.mo CHANGED
Binary file
languages/nl_NL/nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-01-15 17:04+0100\n"
5
- "PO-Revision-Date: 2021-01-15 17:04+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
@@ -157,13 +157,13 @@ msgstr ""
157
  msgid "Go Premium"
158
  msgstr ""
159
 
160
- #: controllers/wdt_admin.php:516 controllers/wdt_admin.php:565
161
- #: controllers/wdt_admin.php:608 controllers/wdt_admin.php:629
162
- #: controllers/wdt_admin.php:676 controllers/wdt_admin.php:702
163
- #: controllers/wdt_admin.php:721 controllers/wdt_admin.php:741
164
- #: controllers/wdt_admin.php:760 controllers/wdt_admin.php:780
165
- #: controllers/wdt_admin.php:800 controllers/wdt_admin.php:820
166
- #: controllers/wdt_admin.php:839
167
  msgid "You do not have sufficient permissions to access this page."
168
  msgstr "Je hebt niet voldoende permissies om de pagina te laden."
169
 
@@ -271,6 +271,28 @@ msgid ""
271
  "placeholders and also for Export file name."
272
  msgstr ""
273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  #: source/class.wdtbrowsechartstable.php:141
275
  #: source/class.wdtbrowsetable.php:168
276
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
@@ -294,7 +316,7 @@ msgid "Configure"
294
  msgstr ""
295
 
296
  #: source/class.wdtbrowsechartstable.php:162
297
- #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:303
298
  #: templates/admin/browse/bulk_actions.inc.php:14
299
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
300
  msgid "Delete"
@@ -387,6 +409,11 @@ msgstr ""
387
  msgid "No wpDataCharts in the system yet."
388
  msgstr "Nog geen wpDataTables in het systeem"
389
 
 
 
 
 
 
390
  #: source/class.wdtbrowsetable.php:231
391
  #, fuzzy
392
  msgid "MySQL"
@@ -396,16 +423,16 @@ msgstr "MySQL host"
396
  msgid "Manual"
397
  msgstr ""
398
 
399
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2216
400
- #: source/class.wpdatatable.php:2286
401
- #: templates/admin/table-settings/table_settings_block.inc.php:1031
402
  #, fuzzy
403
  msgid "Excel"
404
  msgstr "Excel bestand"
405
 
406
- #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2225
407
- #: source/class.wpdatatable.php:2296
408
- #: templates/admin/table-settings/table_settings_block.inc.php:1032
409
  msgid "CSV"
410
  msgstr ""
411
 
@@ -419,7 +446,7 @@ msgid "JSON"
419
  msgstr "JSON bestand"
420
 
421
  #: source/class.wdtbrowsetable.php:249
422
- #: templates/admin/table-settings/table_settings_block.inc.php:111
423
  #: templates/edit_table.inc.php:91
424
  msgid "Serialized PHP array"
425
  msgstr "Serialized PHP array"
@@ -511,22 +538,22 @@ msgstr ""
511
  msgid "Attachment"
512
  msgstr "Upload bijlage"
513
 
514
- #: source/class.wdttools.php:159
515
  msgid ""
516
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
517
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
518
  "to the web</b> "
519
  msgstr ""
520
 
521
- #: source/class.wdttools.php:287
522
  msgid "Back to date"
523
  msgstr ""
524
 
525
- #: source/class.wdttools.php:288
526
  msgid "Browse"
527
  msgstr ""
528
 
529
- #: source/class.wdttools.php:289 source/class.wdttools.php:410
530
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
531
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
532
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
@@ -544,26 +571,26 @@ msgstr ""
544
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
545
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
546
  #: templates/admin/table-settings/table_preview_block.inc.php:86
547
- #: templates/admin/table-settings/table_settings_block.inc.php:40
548
  #: templates/common/delete_modal.inc.php:39
549
  msgid "Cancel"
550
  msgstr "Annuleren"
551
 
552
- #: source/class.wdttools.php:290
553
  #, fuzzy
554
  msgid " field cannot be empty!"
555
  msgstr "Tabel type mag niet leeg zijn"
556
 
557
- #: source/class.wdttools.php:291
558
  msgid "Use selected file"
559
  msgstr ""
560
 
561
- #: source/class.wdttools.php:292
562
  #, fuzzy
563
  msgid "Choose file"
564
  msgstr "Kies rollen"
565
 
566
- #: source/class.wdttools.php:293 templates/admin/common/error_modal.inc.php:23
567
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
568
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
569
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
@@ -571,385 +598,395 @@ msgstr "Kies rollen"
571
  msgid "Close"
572
  msgstr "Sluiten"
573
 
574
- #: source/class.wdttools.php:294
575
  msgid "Column has been added!"
576
  msgstr ""
577
 
578
- #: source/class.wdttools.php:295
579
  #, fuzzy
580
  msgid "Column header cannot be empty!"
581
  msgstr "Tabel type mag niet leeg zijn"
582
 
583
- #: source/class.wdttools.php:296
584
  msgid "Please confirm column deletion!"
585
  msgstr ""
586
 
587
- #: source/class.wdttools.php:297
588
  msgid "Column has been removed!"
589
  msgstr ""
590
 
591
- #: source/class.wdttools.php:298
592
  msgid "Please select columns that you want to use in table"
593
  msgstr ""
594
 
595
- #: source/class.wdttools.php:299 source/class.wpdatatable.php:2234
596
- #: source/class.wpdatatable.php:2306
597
- #: templates/admin/table-settings/table_settings_block.inc.php:1033
598
  msgid "Copy"
599
  msgstr ""
600
 
601
- #: source/class.wdttools.php:300
602
  msgid "There was an error trying to insert a new row!"
603
  msgstr ""
604
 
605
- #: source/class.wdttools.php:301
606
  msgid "Data has been saved!"
607
  msgstr ""
608
 
609
- #: source/class.wdttools.php:302
610
  msgid "detach"
611
  msgstr ""
612
 
613
- #: source/class.wdttools.php:304
614
  msgid "Delete selected"
615
  msgstr ""
616
 
617
- #: source/class.wdttools.php:305 templates/settings.inc.php:553
618
  #: templates/settings.inc.php:627
619
  msgid "Error!"
620
  msgstr "Fout!"
621
 
622
- #: source/class.wdttools.php:306
623
  msgid "Please upload or choose a file from Media Library!"
624
  msgstr ""
625
 
626
- #: source/class.wdttools.php:307
627
  msgid "From"
628
  msgstr ""
629
 
630
- #: source/class.wdttools.php:308
631
  msgid "Please provide a valid e-mail address for field"
632
  msgstr ""
633
 
634
- #: source/class.wdttools.php:309
635
  msgid "Please provide a valid URL link for field"
636
  msgstr ""
637
 
638
- #: source/class.wdttools.php:310
639
  msgid "You have entered invalid value. Press ESC to cancel."
640
  msgstr ""
641
 
642
- #: source/class.wdttools.php:311 source/class.wdttools.php:340
643
  msgid "Show _MENU_ entries"
644
  msgstr ""
645
 
646
- #: source/class.wdttools.php:312
647
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
648
  msgid "Merge"
649
  msgstr ""
650
 
651
- #: source/class.wdttools.php:313
652
  #, fuzzy
653
  msgid "New column"
654
  msgstr "ID kolom"
655
 
656
- #: source/class.wdttools.php:314
657
  msgid "Number of columns can not be empty or 0"
658
  msgstr ""
659
 
660
- #: source/class.wdttools.php:315
661
  msgid "Number of rows can not be empty or 0"
662
  msgstr ""
663
 
664
- #: source/class.wdttools.php:317
665
  msgid ": activate to sort column ascending"
666
  msgstr ""
667
 
668
- #: source/class.wdttools.php:318
669
  msgid ": activate to sort column descending"
670
  msgstr ""
671
 
672
- #: source/class.wdttools.php:320
673
  msgid "Ok"
674
  msgstr ""
675
 
676
- #: source/class.wdttools.php:322
677
  msgid "First"
678
  msgstr ""
679
 
680
- #: source/class.wdttools.php:323
681
  msgid "Last"
682
  msgstr ""
683
 
684
- #: source/class.wdttools.php:324
685
  msgid "Next"
686
  msgstr "Volgende"
687
 
688
- #: source/class.wdttools.php:325
689
  #, fuzzy
690
  msgid "Previous"
691
  msgstr "Preview"
692
 
693
- #: source/class.wdttools.php:327
694
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
695
  msgid "Replace"
696
  msgstr ""
697
 
698
- #: source/class.wdttools.php:328
699
  msgid "Row has been deleted!"
700
  msgstr ""
701
 
702
- #: source/class.wdttools.php:329
 
 
 
 
703
  msgid "Select a file to use in table"
704
  msgstr ""
705
 
706
- #: source/class.wdttools.php:330
707
  #, fuzzy
708
  msgid "Select an Excel or CSV file"
709
  msgstr "Selecteer Excel of CSV besand"
710
 
711
- #: source/class.wdttools.php:331
712
  msgid "No data available in table"
713
  msgstr ""
714
 
715
- #: source/class.wdttools.php:332
716
  #, fuzzy
717
  msgid "Plugin settings saved successfully"
718
  msgstr "Instellingen zijn opgeslagen"
719
 
720
- #: source/class.wdttools.php:333
721
  msgid ""
722
  "Unable to save settings of plugin. Please try again or contact us over "
723
  "Support page."
724
  msgstr ""
725
 
726
- #: source/class.wdttools.php:334
727
  msgid "Shortcode has been copied to the clipboard."
728
  msgstr ""
729
 
730
- #: source/class.wdttools.php:335
731
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
732
  msgstr ""
733
 
734
- #: source/class.wdttools.php:336
735
  msgid "Showing 0 to 0 of 0 entries"
736
  msgstr ""
737
 
738
- #: source/class.wdttools.php:337
739
  msgid "(filtered from _MAX_ total entries)"
740
  msgstr ""
741
 
742
- #: source/class.wdttools.php:339
743
  msgid ","
744
  msgstr ""
745
 
746
- #: source/class.wdttools.php:341
747
  msgid "Loading..."
748
  msgstr ""
749
 
750
- #: source/class.wdttools.php:342
751
  msgid "Processing..."
752
  msgstr ""
753
 
754
- #: source/class.wdttools.php:343
755
  #, fuzzy
756
  msgid "SQL error"
757
  msgstr "MySQL gebruiker"
758
 
759
- #: source/class.wdttools.php:344
760
  msgid "Search: "
761
  msgstr ""
762
 
763
- #: source/class.wdttools.php:345 templates/settings.inc.php:559
764
  #: templates/settings.inc.php:625
765
  msgid "Success!"
766
  msgstr "Succes!"
767
 
768
- #: source/class.wdttools.php:346
769
  msgid "No matching records found"
770
  msgstr ""
771
 
772
- #: source/class.wdttools.php:347
773
  msgid ""
774
  "System info data has been copied to the clipboard. You can now paste it in "
775
  "file or in support topic."
776
  msgstr ""
777
 
778
- #: source/class.wdttools.php:348
779
  msgid "Table saved successfully!"
780
  msgstr "Tabel succesvol opgeslagen!"
781
 
782
- #: source/class.wdttools.php:349
783
  msgid "To"
784
  msgstr ""
785
 
786
- #: source/class.wdttools.php:385
787
  #: templates/admin/common/premium_modal.inc.php:17
 
 
788
  msgid "This is a premium feature"
789
  msgstr ""
790
 
791
- #: source/class.wdttools.php:386
792
  #: templates/admin/common/premium_modal.inc.php:26
 
 
793
  msgid "This feature is available only in premium version of wpDataTables"
794
  msgstr ""
795
 
796
- #: source/class.wdttools.php:387
797
  #: templates/admin/getting-started/getting_started.inc.php:133
798
  #: templates/admin/getting-started/getting_started.inc.php:145
799
  #: templates/admin/getting-started/getting_started.inc.php:157
800
  #: templates/admin/getting-started/getting_started.inc.php:169
 
 
801
  msgid "Compare and View Pricing"
802
  msgstr ""
803
 
804
- #: source/class.wdttools.php:406
805
  msgid "Field cannot be empty!"
806
  msgstr ""
807
 
808
- #: source/class.wdttools.php:407
809
  msgid "Please choose chart type."
810
  msgstr ""
811
 
812
- #: source/class.wdttools.php:408
813
  msgid "Please select wpDataTable from dropdown."
814
  msgstr ""
815
 
816
- #: source/class.wdttools.php:409
817
  msgid "Columns field cannot be empty"
818
  msgstr ""
819
 
820
- #: source/class.wdttools.php:411
821
  msgid ""
822
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
823
  "clicking on Cancel button."
824
  msgstr ""
825
 
826
- #: source/class.wdttools.php:412
827
  msgid "Finish Tutorial"
828
  msgstr ""
829
 
830
- #: source/class.wdttools.php:413
831
  msgid "Continue"
832
  msgstr ""
833
 
834
- #: source/class.wdttools.php:414
835
  msgid "Start"
836
  msgstr ""
837
 
838
- #: source/class.wdttools.php:415
839
  msgid "Skip Tutorial"
840
  msgstr ""
841
 
842
- #: source/class.wdttools.php:418 source/class.wdttools.php:484
843
- #: source/class.wdttools.php:526
844
  msgid "Welcome to the tutorial!"
845
  msgstr ""
846
 
847
- #: source/class.wdttools.php:419 source/class.wdttools.php:485
848
- #: source/class.wdttools.php:527
849
  msgid "Hello "
850
  msgstr ""
851
 
852
- #: source/class.wdttools.php:419
853
  msgid ""
854
  ", in this tutorial, we will show you how to create a simple table from "
855
  "scratch by choosing a custom number of columns and rows. How to customize "
856
  "each cell, merge cells and a lot more."
857
  msgstr ""
858
 
859
- #: source/class.wdttools.php:422
860
  msgid " Let's create a new wpDataTable from scratch!"
861
  msgstr ""
862
 
863
- #: source/class.wdttools.php:423 source/class.wdttools.php:489
864
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
865
  msgstr ""
866
 
867
- #: source/class.wdttools.php:426
868
  msgid "Choose this option"
869
  msgstr ""
870
 
871
- #: source/class.wdttools.php:427
872
  msgid "Please select 'Create a simple table from scratch'."
873
  msgstr ""
874
 
875
- #: source/class.wdttools.php:430 source/class.wdttools.php:496
876
  msgid "Click Next"
877
  msgstr ""
878
 
879
- #: source/class.wdttools.php:431 source/class.wdttools.php:497
880
  msgid "Please click the 'Next' button to continue."
881
  msgstr ""
882
 
883
- #: source/class.wdttools.php:434
884
  msgid "Welcome to the Simple table wizard!"
885
  msgstr ""
886
 
887
- #: source/class.wdttools.php:435
888
  msgid "Please click 'Continue' button to move on."
889
  msgstr ""
890
 
891
- #: source/class.wdttools.php:438
892
  msgid "Choose a name for your table"
893
  msgstr ""
894
 
895
- #: source/class.wdttools.php:439
896
  msgid "After inserting table name, click 'Continue' to move on."
897
  msgstr ""
898
 
899
- #: source/class.wdttools.php:442
900
  msgid "Choose the number of columns for your table"
901
  msgstr ""
902
 
903
- #: source/class.wdttools.php:443
904
  msgid ""
905
  "Please choose how many columns it will have. Remember that you can always "
906
  "add or reduce the number of columns later. Click 'Continue' when you finish."
907
  msgstr ""
908
 
909
- #: source/class.wdttools.php:446
910
  msgid "Choose the number of rows for your table."
911
  msgstr ""
912
 
913
- #: source/class.wdttools.php:447
914
  msgid ""
915
  "Please choose how many rows it will have. Remember that you can always add "
916
  "or reduce the number of rows later. Click 'Continue' when you finish."
917
  msgstr ""
918
 
919
- #: source/class.wdttools.php:450
920
  msgid "Click on the 'Generate Table' button"
921
  msgstr ""
922
 
923
- #: source/class.wdttools.php:451
924
  msgid "When you click on the button, the empty table will be ready for you. "
925
  msgstr ""
926
 
927
- #: source/class.wdttools.php:454
928
  msgid "We are generating the table..."
929
  msgstr ""
930
 
931
- #: source/class.wdttools.php:455
932
  msgid "Please, when you see the table, click 'Continue' to move on."
933
  msgstr ""
934
 
935
- #: source/class.wdttools.php:458
936
  msgid ""
937
  "Nice job! You just configured your table and it is ready to fill it with "
938
  "data."
939
  msgstr ""
940
 
941
- #: source/class.wdttools.php:459
942
  msgid ""
943
  "Now we will guide you on how to insert data and check table layout throw "
944
  "Simple table editor, table toolbar and table preview. Please click "
945
  "'Continue' to move on."
946
  msgstr ""
947
 
948
- #: source/class.wdttools.php:462
949
  msgid "This is Simple table editor"
950
  msgstr ""
951
 
952
- #: source/class.wdttools.php:463
953
  msgid ""
954
  "Here you can populate your table with data. <br><br>You can move around the "
955
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
@@ -958,11 +995,11 @@ msgid ""
958
  "line of the row header. Click 'Continue' to move on."
959
  msgstr ""
960
 
961
- #: source/class.wdttools.php:466
962
  msgid "Check out the Simple table toolbar"
963
  msgstr ""
964
 
965
- #: source/class.wdttools.php:467
966
  msgid ""
967
  "Here you can style and insert custom data for each cell or range of cells. "
968
  "You can add or delete columns and rows, merge cells, customize sections by "
@@ -970,39 +1007,39 @@ msgid ""
970
  "ratings or custom HTML code."
971
  msgstr ""
972
 
973
- #: source/class.wdttools.php:470
974
  msgid "Responsive table views"
975
  msgstr ""
976
 
977
- #: source/class.wdttools.php:471
978
  msgid ""
979
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
980
  "tab that you need, so you can make sure your table looks excellent across "
981
  "all devices. "
982
  msgstr ""
983
 
984
- #: source/class.wdttools.php:474
985
  msgid "Real-time preview"
986
  msgstr ""
987
 
988
- #: source/class.wdttools.php:475
989
  msgid ""
990
  "Here you will see how your table will look like on the page. Please click "
991
  "'Continue' to move on."
992
  msgstr ""
993
 
994
- #: source/class.wdttools.php:478
995
  msgid "Congrats! Your table is ready."
996
  msgstr ""
997
 
998
- #: source/class.wdttools.php:479
999
  msgid ""
1000
  "Now you can copy the shortcode for this table, and check out how it looks on "
1001
  "your website when you paste it to a post or page. You can always come back "
1002
  "and edit the table as you like."
1003
  msgstr ""
1004
 
1005
- #: source/class.wdttools.php:485
1006
  msgid ""
1007
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
1008
  "existing data source. \"Linked\" in this context means that if you create a "
@@ -1011,56 +1048,56 @@ msgid ""
1011
  "reflected in the table."
1012
  msgstr ""
1013
 
1014
- #: source/class.wdttools.php:488
1015
  msgid "Let's create a new wpDataTable!"
1016
  msgstr ""
1017
 
1018
- #: source/class.wdttools.php:492
1019
  msgid "Choose this option."
1020
  msgstr ""
1021
 
1022
- #: source/class.wdttools.php:493
1023
  msgid "Please select 'Create a table linked to an existing data source'."
1024
  msgstr ""
1025
 
1026
- #: source/class.wdttools.php:500
1027
- #: templates/admin/table-settings/table_settings_block.inc.php:95
1028
  #, fuzzy
1029
  msgid "Input data source type"
1030
  msgstr "Tabel invoer data bron mag niet leeg zijn"
1031
 
1032
- #: source/class.wdttools.php:501
1033
  msgid "Please select a data source type that you need."
1034
  msgstr ""
1035
 
1036
- #: source/class.wdttools.php:504
1037
  msgid "Select Data source type"
1038
  msgstr ""
1039
 
1040
- #: source/class.wdttools.php:505
1041
  msgid ""
1042
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1043
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1044
  "are available in Premium version)"
1045
  msgstr ""
1046
 
1047
- #: source/class.wdttools.php:508
1048
- #: templates/admin/table-settings/table_settings_block.inc.php:122
1049
  #, fuzzy
1050
  msgid "Input file path or URL"
1051
  msgstr "Voer bestand of URL in"
1052
 
1053
- #: source/class.wdttools.php:509
1054
  msgid ""
1055
  "Upload your file or provide the full URL here. When you finish click "
1056
  "'Continue' button."
1057
  msgstr ""
1058
 
1059
- #: source/class.wdttools.php:512
1060
  msgid "Click Save Changes"
1061
  msgstr ""
1062
 
1063
- #: source/class.wdttools.php:513
1064
  msgid ""
1065
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1066
  "get an error message after button click and you are not able to solve it, "
@@ -1069,117 +1106,117 @@ msgid ""
1069
  "click Skip tutorial."
1070
  msgstr ""
1071
 
1072
- #: source/class.wdttools.php:516
1073
  msgid "The table is creating..."
1074
  msgstr ""
1075
 
1076
- #: source/class.wdttools.php:517
1077
  msgid ""
1078
  "Now the table is creating. Wait until you see it in the background and then "
1079
  "click 'Continue'."
1080
  msgstr ""
1081
 
1082
- #: source/class.wdttools.php:520
1083
  msgid "Nice job! You just created your first wpDataTable!"
1084
  msgstr ""
1085
 
1086
- #: source/class.wdttools.php:521
1087
  msgid ""
1088
  "Now you can copy the shortcode for this table, and check out how it looks on "
1089
  "your website when you paste it to a post or page."
1090
  msgstr ""
1091
 
1092
- #: source/class.wdttools.php:527
1093
  msgid ""
1094
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1095
  "plugin."
1096
  msgstr ""
1097
 
1098
- #: source/class.wdttools.php:530
1099
  msgid "Let's create a new wpDataTables Chart!"
1100
  msgstr ""
1101
 
1102
- #: source/class.wdttools.php:531
1103
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1104
  msgstr ""
1105
 
1106
- #: source/class.wdttools.php:534
1107
  msgid "Welcome to the Chart Wizard!"
1108
  msgstr ""
1109
 
1110
- #: source/class.wdttools.php:535
1111
  msgid ""
1112
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1113
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1114
  msgstr ""
1115
 
1116
- #: source/class.wdttools.php:538
1117
  msgid "Follow the steps in the Chart Wizard"
1118
  msgstr ""
1119
 
1120
- #: source/class.wdttools.php:539
1121
  msgid ""
1122
  "By following these steps, you will finish building your chart in the Chart "
1123
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1124
  "'Continue' button to move forward."
1125
  msgstr ""
1126
 
1127
- #: source/class.wdttools.php:542
1128
  msgid "Choose a name for your Chart"
1129
  msgstr ""
1130
 
1131
- #: source/class.wdttools.php:543
1132
  msgid "Click 'Continue' button when you’re ready to move forward."
1133
  msgstr ""
1134
 
1135
- #: source/class.wdttools.php:546
1136
  msgid "In wpDataTables you can find several charts render engines."
1137
  msgstr ""
1138
 
1139
- #: source/class.wdttools.php:547
1140
  msgid ""
1141
  "Click on the dropdown, and you will see several options that you can choose "
1142
  "from.(Google charts are only available) <br><br>To continue, click on the "
1143
  "dropdown."
1144
  msgstr ""
1145
 
1146
- #: source/class.wdttools.php:550
1147
  msgid "Choose Google chart engine."
1148
  msgstr ""
1149
 
1150
- #: source/class.wdttools.php:551
1151
  msgid ""
1152
  "By clicking on Google chart options, you will choose the engine that will "
1153
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1154
  "to move forward."
1155
  msgstr ""
1156
 
1157
- #: source/class.wdttools.php:554
1158
  msgid "Different charts types. "
1159
  msgstr ""
1160
 
1161
- #: source/class.wdttools.php:555
1162
  msgid ""
1163
  "Here you can choose a chart type. Please, click on the chart type that you "
1164
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1165
  "forward."
1166
  msgstr ""
1167
 
1168
- #: source/class.wdttools.php:558
1169
  msgid "The first step is finished!"
1170
  msgstr ""
1171
 
1172
- #: source/class.wdttools.php:559
1173
  msgid "Let's move on. Please, click 'Next' to continue."
1174
  msgstr ""
1175
 
1176
- #: source/class.wdttools.php:562
1177
  msgid ""
1178
  "Now you need to choose a wpDataTable based on which we will build a chart "
1179
  "for you"
1180
  msgstr ""
1181
 
1182
- #: source/class.wdttools.php:563
1183
  msgid ""
1184
  "Click on the dropdown, and all your tables will be listed. The columns of "
1185
  "the table that you choose will be used for creating the chart.<br><br>If you "
@@ -1187,59 +1224,59 @@ msgid ""
1187
  "button and create wpDataTable that would contain the data to visualize first."
1188
  msgstr ""
1189
 
1190
- #: source/class.wdttools.php:566
1191
  msgid "Pick your wpDataTable"
1192
  msgstr ""
1193
 
1194
- #: source/class.wdttools.php:567
1195
  msgid ""
1196
  "Pick a wpDataTable from which you want to render a chart and when you "
1197
  "finish, please click 'Continue' to move on."
1198
  msgstr ""
1199
 
1200
- #: source/class.wdttools.php:570
1201
  msgid "The second step is finished!"
1202
  msgstr ""
1203
 
1204
- #: source/class.wdttools.php:571
1205
  msgid ""
1206
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1207
  msgstr ""
1208
 
1209
- #: source/class.wdttools.php:574
1210
  msgid "Just a heads up!"
1211
  msgstr ""
1212
 
1213
- #: source/class.wdttools.php:575
1214
  msgid ""
1215
  "Here you will choose from which columns you will create a chart.<br><br> "
1216
  "Please click 'Continue' button to move forward."
1217
  msgstr ""
1218
 
1219
- #: source/class.wdttools.php:578
1220
  msgid "Meet the wpDataTable Column Blocks"
1221
  msgstr ""
1222
 
1223
- #: source/class.wdttools.php:579
1224
  msgid ""
1225
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1226
  "or click on the arrow to move the desired column to the 'Columns used in the "
1227
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1228
  msgstr ""
1229
 
1230
- #: source/class.wdttools.php:582
1231
  msgid "Well done!"
1232
  msgstr ""
1233
 
1234
- #: source/class.wdttools.php:583
1235
  msgid "Just two more steps to go. Please click 'Next' to continue."
1236
  msgstr ""
1237
 
1238
- #: source/class.wdttools.php:586
1239
  msgid "Chart settings and chart preview."
1240
  msgstr ""
1241
 
1242
- #: source/class.wdttools.php:587
1243
  msgid ""
1244
  "Here you can adjust chart settings, different parameters are grouped in "
1245
  "section; adjusting the parameters will be reflected in the preview of your "
@@ -1247,51 +1284,51 @@ msgid ""
1247
  "button to move forward."
1248
  msgstr ""
1249
 
1250
- #: source/class.wdttools.php:590
1251
  msgid "In this sidebar, you can find the chart settings section."
1252
  msgstr ""
1253
 
1254
- #: source/class.wdttools.php:591
1255
  msgid ""
1256
  "By clicking on each section, you can set your desired parameters per section."
1257
  "<br><br> Please click 'Continue' button to move on."
1258
  msgstr ""
1259
 
1260
- #: source/class.wdttools.php:594
1261
  msgid "Here are the available chart options"
1262
  msgstr ""
1263
 
1264
- #: source/class.wdttools.php:595
1265
  msgid ""
1266
  "Set different chart options for the chosen section to get your desired chart "
1267
  "look.<br><br> Please click 'Continue' button to move on."
1268
  msgstr ""
1269
 
1270
- #: source/class.wdttools.php:598
1271
  msgid "How your chart will look like on the page of your website"
1272
  msgstr ""
1273
 
1274
- #: source/class.wdttools.php:599
1275
  msgid ""
1276
  "Here you can see a preview of your chart based on the settings you have "
1277
  "chosen.<br><br> Please click 'Continue' button to move on."
1278
  msgstr ""
1279
 
1280
- #: source/class.wdttools.php:602
1281
  msgid "You can save your chart now"
1282
  msgstr ""
1283
 
1284
- #: source/class.wdttools.php:603
1285
  msgid ""
1286
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1287
  "button and all your settings for this chart will be saved in the database."
1288
  msgstr ""
1289
 
1290
- #: source/class.wdttools.php:606
1291
  msgid "Congrats! Your first chart is ready!"
1292
  msgstr ""
1293
 
1294
- #: source/class.wdttools.php:607
1295
  msgid ""
1296
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1297
  "page. <br><br>You may now finish this tutorial. "
@@ -1305,45 +1342,45 @@ msgstr ""
1305
  msgid "You are mixing data types (several date axes and several number)"
1306
  msgstr ""
1307
 
1308
- #: source/class.wpdatatable.php:1895
1309
  msgid ""
1310
  "You are trying to load a table of an unknown type. Probably you did not "
1311
  "activate the addon which is required to use this table type."
1312
  msgstr ""
1313
 
1314
- #: source/class.wpdatatable.php:2134 source/class.wpdatatable.php:2137
1315
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1316
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1317
- #: templates/admin/table-settings/table_settings_block.inc.php:312
1318
  #: templates/edit_table.inc.php:409
1319
  msgid "All"
1320
  msgstr "Alles"
1321
 
1322
- #: source/class.wpdatatable.php:2195 source/class.wpdatatable.php:2264
1323
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1324
  #, fuzzy
1325
  msgid "Columns"
1326
  msgstr "Kolom type"
1327
 
1328
- #: source/class.wpdatatable.php:2205 source/class.wpdatatable.php:2274
1329
- #: templates/admin/table-settings/table_settings_block.inc.php:1030
1330
  msgid "Print"
1331
  msgstr ""
1332
 
1333
- #: source/class.wpdatatable.php:2244 source/class.wpdatatable.php:2317
1334
- #: templates/admin/table-settings/table_settings_block.inc.php:1034
1335
  msgid "PDF"
1336
  msgstr ""
1337
 
1338
- #: source/class.wpdatatable.php:2252
1339
  msgid "Export"
1340
  msgstr ""
1341
 
1342
- #: source/class.wpdatatable.php:2330
1343
  msgid "Search table"
1344
  msgstr ""
1345
 
1346
- #: source/class.wpdatatable.php:2331
1347
  msgid "Showing _MENU_ Entries"
1348
  msgstr ""
1349
 
@@ -1362,7 +1399,7 @@ msgstr ""
1362
  msgid "if you have some questions or problems with the plugin."
1363
  msgstr "als je vragen of problemen hebt met deze plugin."
1364
 
1365
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:498
1366
  msgid "wpDataTables Addons"
1367
  msgstr ""
1368
 
@@ -1376,12 +1413,12 @@ msgid ""
1376
  msgstr ""
1377
 
1378
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1379
- #: templates/admin/dashboard/dashboard.inc.php:569
1380
  msgid "Report Builder"
1381
  msgstr ""
1382
 
1383
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1384
- #: templates/admin/dashboard/dashboard.inc.php:573
1385
  msgid ""
1386
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1387
  "XLSX documents filled in with actual data from your database."
@@ -1407,7 +1444,7 @@ msgid "NEW"
1407
  msgstr ""
1408
 
1409
  #: templates/admin/addons/addons.inc.php:40
1410
- #: templates/admin/dashboard/dashboard.inc.php:516
1411
  msgid "Master Detail Tables for wpDataTables"
1412
  msgstr ""
1413
 
@@ -1428,7 +1465,7 @@ msgid "Learn more"
1428
  msgstr ""
1429
 
1430
  #: templates/admin/addons/addons.inc.php:67
1431
- #: templates/admin/dashboard/dashboard.inc.php:543
1432
  msgid "Powerful Filters for wpDataTables"
1433
  msgstr ""
1434
 
@@ -1440,24 +1477,24 @@ msgid ""
1440
  msgstr ""
1441
 
1442
  #: templates/admin/addons/addons.inc.php:120
1443
- #: templates/admin/dashboard/dashboard.inc.php:596
1444
  msgid "Formidable Forms integration for wpDataTables"
1445
  msgstr ""
1446
 
1447
  #: templates/admin/addons/addons.inc.php:123
1448
- #: templates/admin/dashboard/dashboard.inc.php:600
1449
  msgid ""
1450
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1451
  "create wpDataTables from Formidable Forms entries data."
1452
  msgstr ""
1453
 
1454
  #: templates/admin/addons/addons.inc.php:143
1455
- #: templates/admin/dashboard/dashboard.inc.php:622
1456
  msgid "Gravity Forms integration for wpDataTables"
1457
  msgstr ""
1458
 
1459
  #: templates/admin/addons/addons.inc.php:146
1460
- #: templates/admin/dashboard/dashboard.inc.php:626
1461
  msgid ""
1462
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1463
  "wpDataTables from Gravity Forms entries data."
@@ -1538,7 +1575,7 @@ msgid "Chart title & type"
1538
  msgstr "Grafiek titel"
1539
 
1540
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1541
- #: templates/admin/table-settings/table_settings_block.inc.php:59
1542
  #: templates/chart_wizard.inc.php:36
1543
  msgid "Data source"
1544
  msgstr ""
@@ -1583,6 +1620,7 @@ msgstr ""
1583
 
1584
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1585
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
 
1586
  #: templates/edit_table.inc.php:730
1587
  msgid "Color"
1588
  msgstr ""
@@ -1820,8 +1858,8 @@ msgstr ""
1820
  #: templates/admin/getting-started/getting_started.inc.php:144
1821
  #: templates/admin/getting-started/getting_started.inc.php:156
1822
  #: templates/admin/getting-started/getting_started.inc.php:168
1823
- #: templates/admin/table-settings/table_settings_block.inc.php:105
1824
- #: templates/admin/table-settings/table_settings_block.inc.php:108
1825
  msgid "Available in Premium"
1826
  msgstr ""
1827
 
@@ -1954,11 +1992,6 @@ msgstr "data"
1954
  msgid "Axes"
1955
  msgstr ""
1956
 
1957
- #: templates/admin/chart_wizard/steps/step4.inc.php:17
1958
- #, fuzzy
1959
- msgid "Title"
1960
- msgstr "Naam:"
1961
-
1962
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1963
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1964
  msgid "Tooltip"
@@ -2058,6 +2091,8 @@ msgstr "Sorteren inschakelen"
2058
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2059
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2060
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
 
 
2061
  #, fuzzy
2062
  msgid "Background color"
2063
  msgstr "Achtergrondkleur van de Buttons"
@@ -2079,6 +2114,7 @@ msgstr ""
2079
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2080
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2081
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
 
2082
  #, fuzzy
2083
  msgid "Border color"
2084
  msgstr "Buttons border kleur"
@@ -2121,6 +2157,7 @@ msgstr ""
2121
 
2122
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2123
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
 
2124
  msgid "Font size"
2125
  msgstr ""
2126
 
@@ -2488,14 +2525,14 @@ msgstr ""
2488
  #: templates/admin/dashboard/dashboard.inc.php:30
2489
  #: templates/admin/getting-started/getting_started.inc.php:34
2490
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2491
- #: templates/admin/settings/settings.inc.php:96
2492
  #: templates/admin/support/support.inc.php:31
2493
  #: templates/admin/support/support.inc.php:47
2494
  #: templates/admin/system-info/system_info.inc.php:29
2495
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2496
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2497
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2498
- #: templates/admin/table-settings/table_settings_block.inc.php:1197
2499
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2500
  msgid "View Documentation"
2501
  msgstr ""
@@ -2726,181 +2763,182 @@ msgid "Version "
2726
  msgstr ""
2727
 
2728
  #: templates/admin/dashboard/dashboard.inc.php:340
2729
- msgid ""
2730
- "A minor update with a couple of features, bug fixes and stability "
2731
- "improvements:"
2732
  msgstr ""
2733
 
2734
  #: templates/admin/dashboard/dashboard.inc.php:345
2735
  msgid ""
2736
- "<strong>Feature:</strong> New option to set column data to be available/"
2737
- "disabled in global search results."
2738
  msgstr ""
2739
 
2740
  #: templates/admin/dashboard/dashboard.inc.php:346
2741
  msgid ""
2742
- "<strong>Feature:</strong> New option to set NOFOLLOW relation for links in "
2743
- "simple and data tables."
2744
  msgstr ""
2745
 
2746
  #: templates/admin/dashboard/dashboard.inc.php:347
2747
  msgid ""
2748
- "<strong>BugFix:</strong> Fixed issue with saving page in Divi builder with "
2749
- "simple table shortcode."
2750
  msgstr ""
2751
 
2752
  #: templates/admin/dashboard/dashboard.inc.php:348
2753
  msgid ""
2754
- "<strong>BugFix:</strong> Fixed issue with not showing tabs in backend after "
2755
- "switch."
2756
  msgstr ""
2757
 
2758
  #: templates/admin/dashboard/dashboard.inc.php:349
2759
  msgid ""
2760
- "<strong>BugFix:</strong> Fixed issue with tooltip in backend when is loaded "
2761
- "jQuery UI."
2762
  msgstr ""
2763
 
2764
  #: templates/admin/dashboard/dashboard.inc.php:350
 
 
 
 
2765
  msgid "Other small bug fixes and stability improvements."
2766
  msgstr ""
2767
 
2768
- #: templates/admin/dashboard/dashboard.inc.php:362
2769
  msgid "Go Premium!"
2770
  msgstr ""
2771
 
2772
- #: templates/admin/dashboard/dashboard.inc.php:368
2773
  msgid "View Comparison"
2774
  msgstr ""
2775
 
2776
- #: templates/admin/dashboard/dashboard.inc.php:376
2777
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2778
  msgid ""
2779
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2780
  "of the powerful features."
2781
  msgstr ""
2782
 
2783
- #: templates/admin/dashboard/dashboard.inc.php:380
2784
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2785
  msgid "Create a table manually"
2786
  msgstr ""
2787
 
2788
- #: templates/admin/dashboard/dashboard.inc.php:383
2789
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2790
  msgid "Creating tables from Google Spreadsheet"
2791
  msgstr ""
2792
 
2793
- #: templates/admin/dashboard/dashboard.inc.php:386
2794
  msgid ""
2795
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2796
  "tables via Google Sheet API"
2797
  msgstr ""
2798
 
2799
- #: templates/admin/dashboard/dashboard.inc.php:389
2800
  msgid ""
2801
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2802
  "tables from Private Google Spreadsheet"
2803
  msgstr ""
2804
 
2805
- #: templates/admin/dashboard/dashboard.inc.php:392
2806
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2807
  msgid "Creating MySQL-based tables from database"
2808
  msgstr ""
2809
 
2810
- #: templates/admin/dashboard/dashboard.inc.php:395
2811
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2812
  msgid "Creating MySQL-based tables from Wordpress post types"
2813
  msgstr ""
2814
 
2815
- #: templates/admin/dashboard/dashboard.inc.php:398
2816
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2817
  #: templates/edit_table.inc.php:329
2818
  msgid "Advanced filtering"
2819
  msgstr ""
2820
 
2821
- #: templates/admin/dashboard/dashboard.inc.php:401
2822
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2823
- #: templates/admin/table-settings/table_settings_block.inc.php:144
2824
  #: templates/edit_table.inc.php:282
2825
  msgid "Server-side processing"
2826
  msgstr "Server-side verwerking"
2827
 
2828
- #: templates/admin/dashboard/dashboard.inc.php:404
2829
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2830
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2831
  msgstr ""
2832
 
2833
- #: templates/admin/dashboard/dashboard.inc.php:407
2834
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2835
  msgid "Front-end table editing"
2836
  msgstr ""
2837
 
2838
- #: templates/admin/dashboard/dashboard.inc.php:410
2839
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2840
  msgid "Excel-like editing"
2841
  msgstr ""
2842
 
2843
- #: templates/admin/dashboard/dashboard.inc.php:413
2844
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2845
  msgid "Creating charts with Highcharts"
2846
  msgstr ""
2847
 
2848
- #: templates/admin/dashboard/dashboard.inc.php:416
2849
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2850
  msgid "Creating charts with Chart.js"
2851
  msgstr ""
2852
 
2853
- #: templates/admin/dashboard/dashboard.inc.php:419
2854
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2855
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2856
  #: templates/edit_table.inc.php:301
2857
  msgid "Responsive"
2858
  msgstr ""
2859
 
2860
- #: templates/admin/dashboard/dashboard.inc.php:422
2861
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2862
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2863
  #: templates/edit_table.inc.php:750
2864
  #, fuzzy
2865
  msgid "Conditional formatting"
2866
  msgstr "Extra instellingen"
2867
 
2868
- #: templates/admin/dashboard/dashboard.inc.php:425
2869
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2870
  msgid "Calculating Tools"
2871
  msgstr ""
2872
 
2873
- #: templates/admin/dashboard/dashboard.inc.php:428
2874
  msgid "Formula columns"
2875
  msgstr ""
2876
 
2877
- #: templates/admin/dashboard/dashboard.inc.php:431
2878
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2879
- #: templates/admin/table-settings/table_settings_block.inc.php:79
2880
  msgid "Placeholders"
2881
  msgstr ""
2882
 
2883
- #: templates/admin/dashboard/dashboard.inc.php:434
2884
  msgid "Premium support"
2885
  msgstr ""
2886
 
2887
- #: templates/admin/dashboard/dashboard.inc.php:438
2888
  msgid "Get Premium Today"
2889
  msgstr ""
2890
 
2891
- #: templates/admin/dashboard/dashboard.inc.php:445
2892
  msgid "News Blog"
2893
  msgstr ""
2894
 
2895
- #: templates/admin/dashboard/dashboard.inc.php:450
2896
  msgid "Checkout useful articles from wpdatatables.com"
2897
  msgstr ""
2898
 
2899
- #: templates/admin/dashboard/dashboard.inc.php:473
2900
  msgid "Please install and enable PHP extensions xml and dom on your server."
2901
  msgstr ""
2902
 
2903
- #: templates/admin/dashboard/dashboard.inc.php:481
2904
  msgid ""
2905
  "Never miss notifications about new cool features, promotions,\n"
2906
  " giveaways or freebies – subscribe to our "
@@ -2908,48 +2946,48 @@ msgid ""
2908
  " about 1 message per month and never spam!"
2909
  msgstr ""
2910
 
2911
- #: templates/admin/dashboard/dashboard.inc.php:499
2912
  msgid "Premium "
2913
  msgstr ""
2914
 
2915
- #: templates/admin/dashboard/dashboard.inc.php:502
2916
  msgid ""
2917
  "While wpDataTables itself provides quite a large amount of features and "
2918
  "unlimited customisation, flexibility, you can achieve even more with our "
2919
  "premium addons.(requires wpDataTables Premium version)"
2920
  msgstr ""
2921
 
2922
- #: templates/admin/dashboard/dashboard.inc.php:520
2923
  msgid ""
2924
  "A wpDataTables addon which allows showing additional details for a specific "
2925
  "row in a popup or a separate page or post."
2926
  msgstr ""
2927
 
2928
- #: templates/admin/dashboard/dashboard.inc.php:526
2929
- #: templates/admin/dashboard/dashboard.inc.php:553
2930
- #: templates/admin/dashboard/dashboard.inc.php:579
2931
- #: templates/admin/dashboard/dashboard.inc.php:606
2932
- #: templates/admin/dashboard/dashboard.inc.php:632
2933
- #: templates/admin/dashboard/dashboard.inc.php:665
2934
  msgid "Learn More"
2935
  msgstr ""
2936
 
2937
- #: templates/admin/dashboard/dashboard.inc.php:547
2938
  msgid ""
2939
  "An add-on for wpDataTables that provides powerful filtering features: "
2940
  "cascade filtering, applying filters on button click, hide table before "
2941
  "filtering."
2942
  msgstr ""
2943
 
2944
- #: templates/admin/dashboard/dashboard.inc.php:643
2945
  msgid "Need free booking plugin?"
2946
  msgstr ""
2947
 
2948
- #: templates/admin/dashboard/dashboard.inc.php:652
2949
  msgid "Appointments and Events WordPress Booking Plugin"
2950
  msgstr ""
2951
 
2952
- #: templates/admin/dashboard/dashboard.inc.php:655
2953
  msgid ""
2954
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2955
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2960,26 +2998,26 @@ msgid ""
2960
  "each month."
2961
  msgstr ""
2962
 
2963
- #: templates/admin/dashboard/dashboard.inc.php:658
2964
  msgid "Rating: 4.3 - ‎97 reviews"
2965
  msgstr ""
2966
 
2967
- #: templates/admin/dashboard/dashboard.inc.php:661
2968
  msgid "Free Download"
2969
  msgstr ""
2970
 
2971
- #: templates/admin/dashboard/dashboard.inc.php:676
2972
  #: templates/admin/getting-started/getting_started.inc.php:184
2973
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2974
  #: templates/admin/support/support.inc.php:78
2975
  #: templates/admin/system-info/system_info.inc.php:509
2976
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2977
  msgid "Made by"
2978
  msgstr ""
2979
 
2980
- #: templates/admin/dashboard/dashboard.inc.php:684
2981
  #: templates/admin/getting-started/getting_started.inc.php:192
2982
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2983
  #: templates/admin/support/support.inc.php:45
2984
  #: templates/admin/support/support.inc.php:86
2985
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2989,9 +3027,9 @@ msgstr ""
2989
  msgid "Documentation"
2990
  msgstr "wpDataTables documentatie"
2991
 
2992
- #: templates/admin/dashboard/dashboard.inc.php:688
2993
  #: templates/admin/getting-started/getting_started.inc.php:196
2994
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2995
  #: templates/admin/support/support.inc.php:24
2996
  #: templates/admin/support/support.inc.php:90
2997
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3117,7 +3155,7 @@ msgid "Lite vs Premium comparison"
3117
  msgstr ""
3118
 
3119
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3120
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3121
  msgid "Go Premium Now"
3122
  msgstr ""
3123
 
@@ -3130,7 +3168,7 @@ msgid "Lite"
3130
  msgstr ""
3131
 
3132
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3133
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:471
3134
  msgid "Premium"
3135
  msgstr ""
3136
 
@@ -3160,8 +3198,10 @@ msgstr ""
3160
 
3161
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3162
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3163
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3164
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
 
 
3165
  msgid "NEW!"
3166
  msgstr ""
3167
 
@@ -3178,15 +3218,16 @@ msgstr ""
3178
 
3179
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3180
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3181
- #: templates/admin/table-settings/table_settings_block.inc.php:626
3182
- #: templates/admin/table-settings/table_settings_block.inc.php:634
3183
  msgid "Sorting"
3184
  msgstr ""
3185
 
3186
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3187
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3188
- #: templates/admin/table-settings/table_settings_block.inc.php:489
3189
- #: templates/admin/table-settings/table_settings_block.inc.php:497
 
3190
  msgid "Pagination"
3191
  msgstr ""
3192
 
@@ -3213,7 +3254,7 @@ msgid "Customize charts"
3213
  msgstr ""
3214
 
3215
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3216
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:465
3217
  msgid "Limited"
3218
  msgstr ""
3219
 
@@ -3221,37 +3262,41 @@ msgstr ""
3221
  msgid "Some options are not available."
3222
  msgstr ""
3223
 
3224
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
3225
- msgid "Creating tables via Google Sheet API"
3226
  msgstr ""
3227
 
3228
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
 
 
 
 
3229
  msgid "Creating tables from Private Google Spreadsheet"
3230
  msgstr ""
3231
 
3232
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:461
3233
  msgid "Support"
3234
  msgstr ""
3235
 
3236
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:467
3237
  msgid "Response time is slow and can be up to 5 business days."
3238
  msgstr ""
3239
 
3240
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3241
  msgid ""
3242
  "* Please note that wpDataTables add-ons are not included in premium version "
3243
  "of plugin."
3244
  msgstr ""
3245
 
3246
  #: templates/admin/settings/settings.inc.php:33
3247
- #: templates/admin/settings/settings.inc.php:91
3248
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3249
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3250
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3251
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3252
  #: templates/admin/table-settings/table_preview_block.inc.php:89
3253
- #: templates/admin/table-settings/table_settings_block.inc.php:47
3254
  #: templates/admin/table-settings/table_settings_block.inc.php:48
 
3255
  msgid "Save Changes"
3256
  msgstr ""
3257
 
@@ -3276,16 +3321,23 @@ msgstr "Kleur en font instellingen"
3276
  msgid "Custom JS and CSS"
3277
  msgstr "Custom JS en CSS"
3278
 
3279
- #: templates/admin/settings/settings.inc.php:88 templates/settings.inc.php:434
 
 
 
 
3280
  msgid "Reset colors and fonts to default"
3281
  msgstr "Reset kleuren en fonts naar standaard"
3282
 
3283
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3284
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
 
 
3285
  msgid "Font"
3286
  msgstr ""
3287
 
3288
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
 
3289
  #: templates/settings.inc.php:428
3290
  msgid ""
3291
  "This font will be used in rendered tables. Leave blank not to override "
@@ -3295,6 +3347,7 @@ msgstr ""
3295
  "thema instellingen te gebruiken"
3296
 
3297
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
 
3298
  #, fuzzy
3299
  msgid "Define the font size"
3300
  msgstr "In de footer"
@@ -3302,41 +3355,50 @@ msgstr "In de footer"
3302
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3303
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3304
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
 
 
3305
  #, fuzzy
3306
  msgid "Font color"
3307
  msgstr "Tabel font kleur"
3308
 
3309
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
 
3310
  #, fuzzy
3311
  msgid "This color is used for the main font in table cells."
3312
  msgstr "Deze kleur wordt gebruikt voor de hoofdfont in de tabelcellen"
3313
 
3314
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3315
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
 
3316
  msgid "Header"
3317
  msgstr ""
3318
 
3319
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
 
3320
  #, fuzzy
3321
  msgid "The color is used for background of the table header."
3322
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de tabel header"
3323
 
3324
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
 
3325
  #, fuzzy
3326
  msgid "This color is used for the border in the table header."
3327
  msgstr "Deze kleur wordt gebruikt voor de border rondom de tabel header"
3328
 
3329
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
 
3330
  #, fuzzy
3331
  msgid "This color is used for the font in the table header."
3332
  msgstr "Deze kleur wordt gebruikt voor de font in de tabel header"
3333
 
3334
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
 
3335
  #, fuzzy
3336
  msgid "Active and hover color\t"
3337
  msgstr "Header actef en hover kleur"
3338
 
3339
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
 
3340
  #, fuzzy
3341
  msgid ""
3342
  "This color is used when you hover the mouse above the table header, or when "
@@ -3350,11 +3412,13 @@ msgid "Table border "
3350
  msgstr ""
3351
 
3352
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
 
3353
  #, fuzzy
3354
  msgid "Inner border"
3355
  msgstr "Binnenste borderkleur van de tabel"
3356
 
3357
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
 
3358
  #, fuzzy
3359
  msgid "This color is used for the inner border in the table between cells."
3360
  msgstr ""
@@ -3362,35 +3426,42 @@ msgstr ""
3362
  "cellen in"
3363
 
3364
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
 
3365
  #, fuzzy
3366
  msgid "Outer border"
3367
  msgstr "Tabel buitenste border kleur"
3368
 
3369
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
 
3370
  #, fuzzy
3371
  msgid "This color is used for the outer border of the whole table body."
3372
  msgstr ""
3373
  "Deze kleur wordt gebruikt voor de buitenste border, om de hele tabel heen"
3374
 
3375
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
 
3376
  #, fuzzy
3377
  msgid "Table borders"
3378
  msgstr "Tabel tools"
3379
 
3380
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
 
3381
  msgid "When this is checked, borders in table will be removed "
3382
  msgstr ""
3383
 
3384
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
 
3385
  msgid "Remove borders in table"
3386
  msgstr ""
3387
 
3388
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
 
3389
  #, fuzzy
3390
  msgid "Header border"
3391
  msgstr "Header border kleur"
3392
 
3393
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
 
3394
  msgid "When this is checked,borders in header will be removed "
3395
  msgstr ""
3396
 
@@ -3399,35 +3470,42 @@ msgid "Remove borders in header"
3399
  msgstr ""
3400
 
3401
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
 
3402
  msgid "Row color"
3403
  msgstr ""
3404
 
3405
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
 
3406
  #, fuzzy
3407
  msgid "Even row background"
3408
  msgstr "Even rijen achtergrond kleur"
3409
 
3410
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
 
3411
  #, fuzzy
3412
  msgid "This color is used for for background in even rows."
3413
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de even rijen"
3414
 
3415
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
 
3416
  #, fuzzy
3417
  msgid "Odd row background"
3418
  msgstr "Oneven rijen achtergrond kleur"
3419
 
3420
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
 
3421
  #, fuzzy
3422
  msgid "This color is used for for background in odd rows."
3423
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de oneven rijen"
3424
 
3425
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
 
3426
  #, fuzzy
3427
  msgid "Hover row"
3428
  msgstr "Hover rij kleur"
3429
 
3430
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
 
3431
  #, fuzzy
3432
  msgid ""
3433
  "This color is used for to highlight the row when you hover your mouse above "
@@ -3437,26 +3515,31 @@ msgstr ""
3437
  "erboven houdt"
3438
 
3439
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
 
3440
  #, fuzzy
3441
  msgid "Background for selected rows"
3442
  msgstr "Achtergrond kleur voor geselecteerde rijen"
3443
 
3444
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
 
3445
  #, fuzzy
3446
  msgid "This color is used for background in selected rows."
3447
  msgstr ""
3448
  "Deze kleur wordt gebruikt voor de achtergrond van de geselecteerde rijen"
3449
 
3450
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
 
3451
  msgid "Cell color"
3452
  msgstr ""
3453
 
3454
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
 
3455
  #, fuzzy
3456
  msgid "Sorted columns, even rows"
3457
  msgstr "Celkleur in actieve (gesorteerde) klommen voor even rijen"
3458
 
3459
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
 
3460
  #, fuzzy
3461
  msgid ""
3462
  "This color is used for background in cells which are in the active columns "
@@ -3466,10 +3549,12 @@ msgstr ""
3466
  "kolommen (deze die voor het sorteren worden gebruikt) in even rijen"
3467
 
3468
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
 
3469
  msgid "Sorted columns, odd rows"
3470
  msgstr ""
3471
 
3472
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
 
3473
  #, fuzzy
3474
  msgid ""
3475
  "This color is used for background in cells which are in the active columns "
@@ -3589,41 +3674,49 @@ msgstr ""
3589
  "plugin popups"
3590
 
3591
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
 
3592
  #, fuzzy
3593
  msgid "This color is used for the background of the pagination"
3594
  msgstr "Deze kleur wordt gebruikt voor de achtergrondkleur van de Buttons"
3595
 
3596
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
 
3597
  #, fuzzy
3598
  msgid "This color is used for the color of the links in the pagination."
3599
  msgstr ""
3600
  "Deze kleur wordt gebruikt voor de buitenste border, om de hele tabel heen"
3601
 
3602
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
 
3603
  #, fuzzy
3604
  msgid "Current page background color"
3605
  msgstr "Header achtergrond kleur"
3606
 
3607
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
 
3608
  #, fuzzy
3609
  msgid "The color is used for background of the current page"
3610
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de tabel header"
3611
 
3612
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
 
3613
  msgid "Current page color"
3614
  msgstr ""
3615
 
3616
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
 
3617
  #, fuzzy
3618
  msgid "This color is used for the color of the current page."
3619
  msgstr "Deze kleur wordt gebruikt voor de border rondom de tabel header"
3620
 
3621
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
 
3622
  #, fuzzy
3623
  msgid "Other pages hover background color"
3624
  msgstr "Header achtergrond kleur"
3625
 
3626
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
 
3627
  #, fuzzy
3628
  msgid ""
3629
  "This background color is used when you hover the mouse above the other pages"
@@ -3632,11 +3725,13 @@ msgstr ""
3632
  "of wanneer je een kolom kiest"
3633
 
3634
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
 
3635
  #, fuzzy
3636
  msgid "Other pages hover color"
3637
  msgstr "Header actef en hover kleur"
3638
 
3639
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
 
3640
  #, fuzzy
3641
  msgid "This color is used when you hover the mouse above the other pages."
3642
  msgstr ""
@@ -3655,6 +3750,7 @@ msgid ""
3655
  msgstr ""
3656
 
3657
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
 
3658
  #: templates/settings.inc.php:463
3659
  msgid "Custom wpDataTables CSS"
3660
  msgstr ""
@@ -3675,16 +3771,19 @@ msgid "Use minified version of Javascript files"
3675
  msgstr ""
3676
 
3677
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
 
3678
  #: templates/settings.inc.php:45
3679
  msgid "Interface language"
3680
  msgstr "Interface taal"
3681
 
3682
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
 
3683
  #, fuzzy
3684
  msgid "Pick the language which will be used in tables interface."
3685
  msgstr "Kies de taal welke in de tabel zijn interface wordt gebruikt"
3686
 
3687
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
 
3688
  msgid "English (default)"
3689
  msgstr ""
3690
 
@@ -3698,82 +3797,90 @@ msgstr "Datum format"
3698
  msgid "Pick the date format to use in date column type."
3699
  msgstr "Kies de datumformat welke in de datumkolom wordt gebruikt"
3700
 
3701
- #: templates/admin/settings/tabs/main_plugin_settings.php:73
3702
  #: templates/settings.inc.php:119
3703
  #, fuzzy
3704
  msgid "Time format"
3705
  msgstr "Nummer format"
3706
 
3707
- #: templates/admin/settings/tabs/main_plugin_settings.php:75
3708
  #, fuzzy
3709
  msgid "Pick the time format to use in datetime and time column type."
3710
  msgstr "Kies de datumformat welke in de datumkolom wordt gebruikt"
3711
 
3712
- #: templates/admin/settings/tabs/main_plugin_settings.php:90
3713
  msgid "Parse shortcodes"
3714
  msgstr ""
3715
 
3716
- #: templates/admin/settings/tabs/main_plugin_settings.php:92
3717
  msgid ""
3718
  "If the option is enabled, you can use shortcodes of other plugins for "
3719
  "generating content."
3720
  msgstr ""
3721
 
3722
- #: templates/admin/settings/tabs/main_plugin_settings.php:96
3723
  #, fuzzy
3724
  msgid "Parse shortcodes in strings"
3725
  msgstr "Data bron en hoofd instellingen"
3726
 
3727
- #: templates/admin/settings/tabs/main_plugin_settings.php:103
 
3728
  #: templates/settings.inc.php:74
3729
  msgid "Base skin"
3730
  msgstr "Standaard skin"
3731
 
3732
- #: templates/admin/settings/tabs/main_plugin_settings.php:105
 
3733
  #, fuzzy
3734
  msgid "Choose the base skin for the plugin."
3735
  msgstr "Kies een skin voor de plugin"
3736
 
3737
- #: templates/admin/settings/tabs/main_plugin_settings.php:111
 
3738
  msgid "Material"
3739
  msgstr ""
3740
 
3741
- #: templates/admin/settings/tabs/main_plugin_settings.php:112
 
3742
  msgid "Light"
3743
  msgstr ""
3744
 
3745
- #: templates/admin/settings/tabs/main_plugin_settings.php:113
 
3746
  msgid "Graphite"
3747
  msgstr ""
3748
 
3749
- #: templates/admin/settings/tabs/main_plugin_settings.php:114
 
3750
  msgid "Aqua"
3751
  msgstr ""
3752
 
3753
- #: templates/admin/settings/tabs/main_plugin_settings.php:115
 
3754
  msgid "Purple"
3755
  msgstr ""
3756
 
3757
- #: templates/admin/settings/tabs/main_plugin_settings.php:116
 
3758
  msgid "Dark"
3759
  msgstr ""
3760
 
3761
- #: templates/admin/settings/tabs/main_plugin_settings.php:124
3762
  #: templates/settings.inc.php:131
3763
  msgid "Number format"
3764
  msgstr "Nummer format"
3765
 
3766
- #: templates/admin/settings/tabs/main_plugin_settings.php:126
3767
  #: templates/settings.inc.php:138
3768
  msgid "Pick the number format (thousands and decimals separator)"
3769
  msgstr "Kies de nummerformat (duizenden en decimalen scheider)"
3770
 
3771
- #: templates/admin/settings/tabs/main_plugin_settings.php:143
3772
  #: templates/settings.inc.php:86
3773
  msgid "Render advanced filter"
3774
  msgstr "Render geavanceerd filter"
3775
 
3776
- #: templates/admin/settings/tabs/main_plugin_settings.php:145
3777
  #, fuzzy
3778
  msgid ""
3779
  "Choose where you would like to render the advanced filter for tables where "
@@ -3782,204 +3889,204 @@ msgstr ""
3782
  "Kies waar je wilt dat het geavanceerde filter voor de tabel wordt gerenderd "
3783
  "als deze geactiveerd is"
3784
 
3785
- #: templates/admin/settings/tabs/main_plugin_settings.php:151
3786
  #: templates/settings.inc.php:90
3787
  msgid "In the header"
3788
  msgstr "In de header"
3789
 
3790
- #: templates/admin/settings/tabs/main_plugin_settings.php:152
3791
  #: templates/settings.inc.php:91
3792
  msgid "In the footer"
3793
  msgstr "In de footer"
3794
 
3795
- #: templates/admin/settings/tabs/main_plugin_settings.php:160
3796
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3797
  #: templates/settings.inc.php:143
3798
  msgid "Decimal places"
3799
  msgstr "Decimaal plaatsen"
3800
 
3801
- #: templates/admin/settings/tabs/main_plugin_settings.php:162
3802
  #, fuzzy
3803
  msgid "Define the amount of decimal places for the float numbers."
3804
  msgstr "Kies het aantal decimaalplaatsen voor de zwevende getallen"
3805
 
3806
- #: templates/admin/settings/tabs/main_plugin_settings.php:187
3807
  msgid "CSV delimiter"
3808
  msgstr ""
3809
 
3810
- #: templates/admin/settings/tabs/main_plugin_settings.php:189
3811
  msgid "Pick the CSV delimiter"
3812
  msgstr ""
3813
 
3814
- #: templates/admin/settings/tabs/main_plugin_settings.php:208
3815
  msgid "Tables sorting direction in admin page"
3816
  msgstr ""
3817
 
3818
- #: templates/admin/settings/tabs/main_plugin_settings.php:210
3819
  msgid ""
3820
  "Here you can set sorting direction by id for browse tables and charts. By "
3821
  "default is ascending order."
3822
  msgstr ""
3823
 
3824
- #: templates/admin/settings/tabs/main_plugin_settings.php:216
3825
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3826
  #: templates/edit_table.inc.php:663
3827
  msgid "Ascending"
3828
  msgstr "Oplopend"
3829
 
3830
- #: templates/admin/settings/tabs/main_plugin_settings.php:217
3831
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3832
  #: templates/edit_table.inc.php:665
3833
  msgid "Descending"
3834
  msgstr "Aflopend"
3835
 
3836
- #: templates/admin/settings/tabs/main_plugin_settings.php:228
3837
  #: templates/settings.inc.php:171
3838
  msgid "Tablet width"
3839
  msgstr "Tablet breedte"
3840
 
3841
- #: templates/admin/settings/tabs/main_plugin_settings.php:230
3842
  #: templates/settings.inc.php:175
3843
  msgid ""
3844
  "Here you can specify width of the screen (in pixels) that will be treated as "
3845
  "a tablet. You can set it wider if you want responsive effect on desktops."
3846
  msgstr ""
3847
 
3848
- #: templates/admin/settings/tabs/main_plugin_settings.php:254
3849
  #: templates/settings.inc.php:181
3850
  msgid "Mobile width"
3851
  msgstr "Mobiele breedte"
3852
 
3853
- #: templates/admin/settings/tabs/main_plugin_settings.php:256
3854
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3855
  msgstr ""
3856
 
3857
- #: templates/admin/settings/tabs/main_plugin_settings.php:281
3858
  #: templates/settings.inc.php:61
3859
  msgid "Tables per admin page"
3860
  msgstr "Tabellen per adminpagina"
3861
 
3862
- #: templates/admin/settings/tabs/main_plugin_settings.php:283
3863
  #, fuzzy
3864
  msgid "How many tables to show in the browse page."
3865
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
3866
 
3867
- #: templates/admin/settings/tabs/main_plugin_settings.php:299
3868
  #, fuzzy
3869
  msgid "Align numbers"
3870
  msgstr "Sorteer nummers aan de rechter kant"
3871
 
3872
- #: templates/admin/settings/tabs/main_plugin_settings.php:301
3873
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3874
  msgstr ""
3875
 
3876
- #: templates/admin/settings/tabs/main_plugin_settings.php:305
3877
  #: templates/settings.inc.php:161
3878
  msgid "Align numbers to the right"
3879
  msgstr ""
3880
 
3881
- #: templates/admin/settings/tabs/main_plugin_settings.php:315
3882
  msgid "Sum functions label"
3883
  msgstr ""
3884
 
3885
- #: templates/admin/settings/tabs/main_plugin_settings.php:317
3886
  msgid ""
3887
  "Enter a label that will be used for Sum functions. If you leave it blank "
3888
  "default label will be Σ ="
3889
  msgstr ""
3890
 
3891
- #: templates/admin/settings/tabs/main_plugin_settings.php:335
3892
  msgid "Average functions label"
3893
  msgstr ""
3894
 
3895
- #: templates/admin/settings/tabs/main_plugin_settings.php:337
3896
  msgid ""
3897
  "Enter a label that will be used for Average functions. If you leave it blank "
3898
  "default label will be Avg ="
3899
  msgstr ""
3900
 
3901
- #: templates/admin/settings/tabs/main_plugin_settings.php:360
3902
  msgid "Minimum functions label"
3903
  msgstr ""
3904
 
3905
- #: templates/admin/settings/tabs/main_plugin_settings.php:362
3906
  msgid ""
3907
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3908
  "default label will be Min ="
3909
  msgstr ""
3910
 
3911
- #: templates/admin/settings/tabs/main_plugin_settings.php:380
3912
  msgid "Maximum functions label"
3913
  msgstr ""
3914
 
3915
- #: templates/admin/settings/tabs/main_plugin_settings.php:382
3916
  msgid ""
3917
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3918
  "default label will be Max ="
3919
  msgstr ""
3920
 
3921
- #: templates/admin/settings/tabs/main_plugin_settings.php:408
3922
  msgid "Include full bootstrap front-end"
3923
  msgstr ""
3924
 
3925
- #: templates/admin/settings/tabs/main_plugin_settings.php:410
3926
- #: templates/admin/settings/tabs/main_plugin_settings.php:421
3927
  msgid ""
3928
  "It is recommended to uncheck this option if bootstrap.js is already included "
3929
  "in one of the theme files. Unchecked option means that there is still "
3930
  "bootstrap.js included just in noconflict mode which should prevent errors."
3931
  msgstr ""
3932
 
3933
- #: templates/admin/settings/tabs/main_plugin_settings.php:414
3934
  msgid "Include full bootstrap.js on the front-end"
3935
  msgstr ""
3936
 
3937
- #: templates/admin/settings/tabs/main_plugin_settings.php:419
3938
  msgid "Include full bootstrap back-end"
3939
  msgstr ""
3940
 
3941
- #: templates/admin/settings/tabs/main_plugin_settings.php:425
3942
  msgid "Include full bootstrap.js on the back-end"
3943
  msgstr ""
3944
 
3945
- #: templates/admin/settings/tabs/main_plugin_settings.php:433
3946
- #: templates/admin/settings/tabs/main_plugin_settings.php:439
3947
  #: templates/settings.inc.php:32
3948
  msgid "Show plugin credentials below tables"
3949
  msgstr ""
3950
 
3951
- #: templates/admin/settings/tabs/main_plugin_settings.php:435
3952
  #: templates/settings.inc.php:32
3953
  msgid ""
3954
  "If you want to support our project, please, keep this checkbox as checked"
3955
  msgstr ""
3956
 
3957
- #: templates/admin/settings/tabs/main_plugin_settings.php:444
3958
  msgid "Prevent deleting tables in database"
3959
  msgstr ""
3960
 
3961
- #: templates/admin/settings/tabs/main_plugin_settings.php:446
3962
  msgid ""
3963
  "It is recommended to leave this option as checked if you what to keep your "
3964
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3965
  "this option, it will be deleted all tables in database after deleting plugin"
3966
  msgstr ""
3967
 
3968
- #: templates/admin/settings/tabs/main_plugin_settings.php:450
3969
  msgid ""
3970
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3971
  msgstr ""
3972
 
3973
- #: templates/admin/settings/tabs/main_plugin_settings.php:457
3974
  msgid "Remove Getting Started page"
3975
  msgstr ""
3976
 
3977
- #: templates/admin/settings/tabs/main_plugin_settings.php:459
3978
  msgid ""
3979
  "Check this option if you want to remove Getting Started page from admin menu."
3980
  msgstr ""
3981
 
3982
- #: templates/admin/settings/tabs/main_plugin_settings.php:463
3983
  msgid "Remove \"Getting Started\" page from admin menu."
3984
  msgstr ""
3985
 
@@ -4253,10 +4360,6 @@ msgstr "ID kolom"
4253
  msgid "Column header"
4254
  msgstr "Kolomgrafiek"
4255
 
4256
- #: templates/admin/table-settings/add_column_modal.inc.php:47
4257
- msgid "Type"
4258
- msgstr ""
4259
-
4260
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4261
  msgid "Insert after"
4262
  msgstr ""
@@ -4296,7 +4399,7 @@ msgstr "Kolom positie"
4296
 
4297
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4298
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4299
- #: templates/admin/table-settings/table_settings_block.inc.php:63
4300
  #, fuzzy
4301
  msgid "Display"
4302
  msgstr "Display lengte"
@@ -4310,7 +4413,7 @@ msgid "Global Filtering"
4310
  msgstr ""
4311
 
4312
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4313
- #: templates/admin/table-settings/table_settings_block.inc.php:71
4314
  #, fuzzy
4315
  msgid "Editing"
4316
  msgstr "Aanpassen"
@@ -4761,7 +4864,7 @@ msgid "Allow filtering"
4761
  msgstr "Geavanceerde filtering"
4762
 
4763
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4764
- #: templates/admin/table-settings/table_settings_block.inc.php:665
4765
  msgid "Global search"
4766
  msgstr ""
4767
 
@@ -5324,27 +5427,27 @@ msgid "Clear data"
5324
  msgstr ""
5325
 
5326
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5327
- #: templates/admin/table-settings/table_settings_block.inc.php:199
5328
  #: templates/edit_table.inc.php:58
5329
  msgid "Table title"
5330
  msgstr "Tabel titel"
5331
 
5332
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5333
- #: templates/admin/table-settings/table_settings_block.inc.php:207
5334
  #: templates/edit_table.inc.php:67
5335
  #, fuzzy
5336
  msgid "Show table title"
5337
  msgstr "Nieuwe tabelnaam"
5338
 
5339
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5340
- #: templates/admin/table-settings/table_settings_block.inc.php:214
5341
  msgid ""
5342
  "Enable this to show the table title in a h3 block above the table, disable "
5343
  "to hide."
5344
  msgstr ""
5345
 
5346
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5347
- #: templates/admin/table-settings/table_settings_block.inc.php:222
5348
  #, fuzzy
5349
  msgid "Show table title on the page"
5350
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
@@ -5412,55 +5515,55 @@ msgid "Scrollable"
5412
  msgstr ""
5413
 
5414
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5415
- #: templates/admin/table-settings/table_settings_block.inc.php:363
5416
  msgid "Scrollable table"
5417
  msgstr ""
5418
 
5419
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5420
- #: templates/admin/table-settings/table_settings_block.inc.php:370
5421
  msgid "Enable this to enable a horizontal scrollbar below the table."
5422
  msgstr ""
5423
 
5424
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5425
- #: templates/admin/table-settings/table_settings_block.inc.php:379
5426
  msgid "Show a horizontal scrollbar"
5427
  msgstr ""
5428
 
5429
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5430
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5431
- #: templates/admin/table-settings/table_settings_block.inc.php:423
5432
- #: templates/admin/table-settings/table_settings_block.inc.php:431
5433
  #, fuzzy
5434
  msgid "Limit table width"
5435
  msgstr "Limiteer tabel layout"
5436
 
5437
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5438
- #: templates/admin/table-settings/table_settings_block.inc.php:438
5439
  msgid "Enable this to restrict table width to page width."
5440
  msgstr ""
5441
 
5442
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5443
- #: templates/admin/table-settings/table_settings_block.inc.php:447
5444
  msgid "Limit table width to page width"
5445
  msgstr ""
5446
 
5447
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5448
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5449
- #: templates/admin/table-settings/table_settings_block.inc.php:454
5450
- #: templates/admin/table-settings/table_settings_block.inc.php:462
5451
  #: templates/edit_table.inc.php:392
5452
  msgid "Word wrap"
5453
  msgstr "Woord wrap"
5454
 
5455
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5456
- #: templates/admin/table-settings/table_settings_block.inc.php:469
5457
  msgid ""
5458
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5459
  "height."
5460
  msgstr ""
5461
 
5462
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5463
- #: templates/admin/table-settings/table_settings_block.inc.php:477
5464
  msgid "Wrap words to newlines"
5465
  msgstr ""
5466
 
@@ -5525,57 +5628,61 @@ msgstr ""
5525
  msgid "EXCEL-LIKE"
5526
  msgstr ""
5527
 
5528
- #: templates/admin/table-settings/table_settings_block.inc.php:67
5529
  #, fuzzy
5530
  msgid "Sorting and filtering"
5531
  msgstr "Geavanceerde filtering"
5532
 
5533
- #: templates/admin/table-settings/table_settings_block.inc.php:75
5534
- #: templates/admin/table-settings/table_settings_block.inc.php:990
5535
  #, fuzzy
5536
  msgid "Table Tools"
5537
  msgstr "Tabel tools"
5538
 
5539
- #: templates/admin/table-settings/table_settings_block.inc.php:97
 
 
 
 
5540
  msgid ""
5541
  "Please choose a type of the input data source - it can be a MySQL query, a "
5542
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5543
  msgstr ""
5544
 
5545
- #: templates/admin/table-settings/table_settings_block.inc.php:104
5546
  #, fuzzy
5547
  msgid "Select a data source type"
5548
  msgstr "Selecteer een tabel type..."
5549
 
5550
- #: templates/admin/table-settings/table_settings_block.inc.php:105
5551
  msgid "SQL query "
5552
  msgstr ""
5553
 
5554
- #: templates/admin/table-settings/table_settings_block.inc.php:106
5555
  #: templates/edit_table.inc.php:85
5556
  msgid "CSV file"
5557
  msgstr "CSV bestand"
5558
 
5559
- #: templates/admin/table-settings/table_settings_block.inc.php:107
5560
  #: templates/edit_table.inc.php:86
5561
  msgid "Excel file"
5562
  msgstr "Excel bestand"
5563
 
5564
- #: templates/admin/table-settings/table_settings_block.inc.php:108
5565
  msgid "Google Spreadsheet "
5566
  msgstr ""
5567
 
5568
- #: templates/admin/table-settings/table_settings_block.inc.php:109
5569
  #: templates/edit_table.inc.php:89
5570
  msgid "XML file"
5571
  msgstr "XML bestand"
5572
 
5573
- #: templates/admin/table-settings/table_settings_block.inc.php:110
5574
  #: templates/edit_table.inc.php:90
5575
  msgid "JSON file"
5576
  msgstr "JSON bestand"
5577
 
5578
- #: templates/admin/table-settings/table_settings_block.inc.php:124
5579
  msgid ""
5580
  "Upload your file or provide the full URL here. For CSV or Excel input "
5581
  "sources only URLs or paths from same domain are supported. For Google "
@@ -5583,31 +5690,31 @@ msgid ""
5583
  "the URL."
5584
  msgstr ""
5585
 
5586
- #: templates/admin/table-settings/table_settings_block.inc.php:130
5587
  msgid "Paste URL or path, or click Browse to choose"
5588
  msgstr ""
5589
 
5590
- #: templates/admin/table-settings/table_settings_block.inc.php:134
5591
  msgid "Browse..."
5592
  msgstr ""
5593
 
5594
- #: templates/admin/table-settings/table_settings_block.inc.php:146
5595
  msgid ""
5596
  "If it is turned on, all sorting, filtering, pagination and other data "
5597
  "interaction will be done by MySQL server. This feature is recommended if you "
5598
  "have more than 2000-3000 rows. Mandatory for editable tables."
5599
  msgstr ""
5600
 
5601
- #: templates/admin/table-settings/table_settings_block.inc.php:151
5602
  #, fuzzy
5603
  msgid "Enable server-side processing"
5604
  msgstr "Server-side verwerking"
5605
 
5606
- #: templates/admin/table-settings/table_settings_block.inc.php:165
5607
  msgid "MySQL Query"
5608
  msgstr ""
5609
 
5610
- #: templates/admin/table-settings/table_settings_block.inc.php:167
5611
  msgid ""
5612
  "Enter the text of your MySQL query here - please make sure it returns actual "
5613
  "data first. You can use a number of placeholders to make the dataset in the "
@@ -5615,338 +5722,338 @@ msgid ""
5615
  "with different shortcodes."
5616
  msgstr ""
5617
 
5618
- #: templates/admin/table-settings/table_settings_block.inc.php:174
5619
  #: templates/edit_table.inc.php:292
5620
  msgid "Auto-refresh"
5621
  msgstr ""
5622
 
5623
- #: templates/admin/table-settings/table_settings_block.inc.php:176
5624
  msgid ""
5625
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5626
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5627
  "refresh."
5628
  msgstr ""
5629
 
5630
- #: templates/admin/table-settings/table_settings_block.inc.php:181
5631
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5632
  msgstr ""
5633
 
5634
- #: templates/admin/table-settings/table_settings_block.inc.php:230
5635
  #, fuzzy
5636
  msgid "Responsiveness"
5637
  msgstr "Responsive"
5638
 
5639
- #: templates/admin/table-settings/table_settings_block.inc.php:238
5640
  #, fuzzy
5641
  msgid "Responsive design"
5642
  msgstr "Responsive"
5643
 
5644
- #: templates/admin/table-settings/table_settings_block.inc.php:245
5645
  msgid "Enable this to allow responsiveness in the table."
5646
  msgstr ""
5647
 
5648
- #: templates/admin/table-settings/table_settings_block.inc.php:246
5649
  msgid ""
5650
  "Please do not forget to define which columns will be hidden on mobiles and "
5651
  "tablets in the column settings!"
5652
  msgstr ""
5653
 
5654
- #: templates/admin/table-settings/table_settings_block.inc.php:254
5655
  msgid "Allow collapsing on mobiles and tablets"
5656
  msgstr ""
5657
 
5658
- #: templates/admin/table-settings/table_settings_block.inc.php:262
5659
  msgid "Hide until loaded"
5660
  msgstr ""
5661
 
5662
- #: templates/admin/table-settings/table_settings_block.inc.php:264
5663
  msgid ""
5664
  "Enable to make whole table hidden until it is initialized to prevent "
5665
  "unformatted data flashing"
5666
  msgstr ""
5667
 
5668
- #: templates/admin/table-settings/table_settings_block.inc.php:269
5669
  #, fuzzy
5670
  msgid "Hide the table before it is fully loaded"
5671
  msgstr "Verberg tabel tot de pagina volledig geladen is"
5672
 
5673
- #: templates/admin/table-settings/table_settings_block.inc.php:281
5674
  msgid "Default rows per page"
5675
  msgstr ""
5676
 
5677
- #: templates/admin/table-settings/table_settings_block.inc.php:289
5678
- #: templates/admin/table-settings/table_settings_block.inc.php:324
5679
  msgid "Rows per page"
5680
  msgstr ""
5681
 
5682
- #: templates/admin/table-settings/table_settings_block.inc.php:296
5683
  #, fuzzy
5684
  msgid "How many rows to show per page by default."
5685
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
5686
 
5687
- #: templates/admin/table-settings/table_settings_block.inc.php:332
5688
  #, fuzzy
5689
  msgid "Show X entries"
5690
  msgstr "data"
5691
 
5692
- #: templates/admin/table-settings/table_settings_block.inc.php:339
5693
  msgid ""
5694
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5695
  "frontend."
5696
  msgstr ""
5697
 
5698
- #: templates/admin/table-settings/table_settings_block.inc.php:347
5699
  msgid "Show \"Show X entries\" dropdown"
5700
  msgstr ""
5701
 
5702
- #: templates/admin/table-settings/table_settings_block.inc.php:371
5703
  msgid "This should be turned off if you want to set columns width manually."
5704
  msgstr ""
5705
 
5706
- #: templates/admin/table-settings/table_settings_block.inc.php:392
5707
- #: templates/admin/table-settings/table_settings_block.inc.php:400
5708
  msgid "Info block"
5709
  msgstr ""
5710
 
5711
- #: templates/admin/table-settings/table_settings_block.inc.php:407
5712
  msgid ""
5713
  "Enable to show a block of information about the number of records below the "
5714
  "table."
5715
  msgstr ""
5716
 
5717
- #: templates/admin/table-settings/table_settings_block.inc.php:415
5718
  msgid "Show information block below the table"
5719
  msgstr ""
5720
 
5721
- #: templates/admin/table-settings/table_settings_block.inc.php:439
5722
  msgid ""
5723
  "This should be turned on if you want to set columns width manually. Should "
5724
  "be on to use word wrapping."
5725
  msgstr ""
5726
 
5727
- #: templates/admin/table-settings/table_settings_block.inc.php:501
5728
  msgid "Enable to show a pagination"
5729
  msgstr ""
5730
 
5731
- #: templates/admin/table-settings/table_settings_block.inc.php:509
5732
  msgid "Show pagination block below the table"
5733
  msgstr ""
5734
 
5735
- #: templates/admin/table-settings/table_settings_block.inc.php:517
5736
- #: templates/admin/table-settings/table_settings_block.inc.php:525
5737
  msgid "Pagination Alignment"
5738
  msgstr ""
5739
 
5740
- #: templates/admin/table-settings/table_settings_block.inc.php:529
5741
  msgid "Here you can set pagination position: right, center or left."
5742
  msgstr ""
5743
 
5744
- #: templates/admin/table-settings/table_settings_block.inc.php:537
5745
  msgid "Right"
5746
  msgstr ""
5747
 
5748
- #: templates/admin/table-settings/table_settings_block.inc.php:538
5749
  msgid "Center"
5750
  msgstr ""
5751
 
5752
- #: templates/admin/table-settings/table_settings_block.inc.php:539
5753
  msgid "Left"
5754
  msgstr ""
5755
 
5756
- #: templates/admin/table-settings/table_settings_block.inc.php:548
5757
- #: templates/admin/table-settings/table_settings_block.inc.php:556
5758
  msgid "Pagination Layout"
5759
  msgstr ""
5760
 
5761
- #: templates/admin/table-settings/table_settings_block.inc.php:560
5762
  msgid "Here you can choose between different pagination layout."
5763
  msgstr ""
5764
 
5765
- #: templates/admin/table-settings/table_settings_block.inc.php:568
5766
  msgid ""
5767
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5768
  msgstr ""
5769
 
5770
- #: templates/admin/table-settings/table_settings_block.inc.php:569
5771
  msgid "\"Previous\" and \"Next\" buttons only"
5772
  msgstr ""
5773
 
5774
- #: templates/admin/table-settings/table_settings_block.inc.php:570
5775
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5776
  msgstr ""
5777
 
5778
- #: templates/admin/table-settings/table_settings_block.inc.php:571
5779
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5780
  msgstr ""
5781
 
5782
- #: templates/admin/table-settings/table_settings_block.inc.php:572
5783
  msgid "Page number buttons only"
5784
  msgstr ""
5785
 
5786
- #: templates/admin/table-settings/table_settings_block.inc.php:573
5787
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5788
  msgstr ""
5789
 
5790
- #: templates/admin/table-settings/table_settings_block.inc.php:595
5791
  #, fuzzy
5792
  msgid "Advanced column filters"
5793
  msgstr "Geavanceerde filtering"
5794
 
5795
- #: templates/admin/table-settings/table_settings_block.inc.php:603
5796
  #, fuzzy
5797
  msgid "Advanced filter"
5798
  msgstr "Geavanceerde filtering"
5799
 
5800
- #: templates/admin/table-settings/table_settings_block.inc.php:610
5801
  msgid ""
5802
  "Enable to show an advanced filter for each of the columns, filters can be "
5803
  "shown in table footer, header or in a separate form."
5804
  msgstr ""
5805
 
5806
- #: templates/admin/table-settings/table_settings_block.inc.php:618
5807
  #, fuzzy
5808
  msgid "Enable advanced column filters"
5809
  msgstr "Render geavanceerd filter"
5810
 
5811
- #: templates/admin/table-settings/table_settings_block.inc.php:641
5812
  msgid ""
5813
  "If this is enabled, each column header will be clickable; clicking will sort "
5814
  "the whole table by the content of this column cells ascending or descending."
5815
  msgstr ""
5816
 
5817
- #: templates/admin/table-settings/table_settings_block.inc.php:649
5818
  #, fuzzy
5819
  msgid "Allow sorting for the table"
5820
  msgstr "Onder de grafiek/diagram"
5821
 
5822
- #: templates/admin/table-settings/table_settings_block.inc.php:657
5823
  msgid "Main search block"
5824
  msgstr ""
5825
 
5826
- #: templates/admin/table-settings/table_settings_block.inc.php:672
5827
  msgid ""
5828
  "If this is enabled, a search block will be displayed on the top right of the "
5829
  "table, allowing to search through whole table with a single input."
5830
  msgstr ""
5831
 
5832
- #: templates/admin/table-settings/table_settings_block.inc.php:680
5833
  msgid "Enable search block"
5834
  msgstr ""
5835
 
5836
- #: templates/admin/table-settings/table_settings_block.inc.php:694
5837
  #, fuzzy
5838
  msgid "Filters in a form"
5839
  msgstr "Filter in formulier"
5840
 
5841
- #: templates/admin/table-settings/table_settings_block.inc.php:701
5842
  #: templates/edit_table.inc.php:340
5843
  msgid "Filter in form"
5844
  msgstr "Filter in formulier"
5845
 
5846
- #: templates/admin/table-settings/table_settings_block.inc.php:708
5847
  msgid ""
5848
  "Enable to show the advanced column filter in a form above the table, instead "
5849
  "of showing in the table footer/header."
5850
  msgstr ""
5851
 
5852
- #: templates/admin/table-settings/table_settings_block.inc.php:716
5853
  msgid "Show filters in a form above the table"
5854
  msgstr ""
5855
 
5856
- #: templates/admin/table-settings/table_settings_block.inc.php:724
5857
  #, fuzzy
5858
  msgid "Clear filters button"
5859
  msgstr "Leeg filters"
5860
 
5861
- #: templates/admin/table-settings/table_settings_block.inc.php:731
5862
  #: templates/frontend/filter_form.inc.php:32
5863
  msgid "Clear filters"
5864
  msgstr "Leeg filters"
5865
 
5866
- #: templates/admin/table-settings/table_settings_block.inc.php:735
5867
  msgid "Enable to show the clear filters button."
5868
  msgstr ""
5869
 
5870
- #: templates/admin/table-settings/table_settings_block.inc.php:736
5871
  msgid ""
5872
  "If filter in form is enabled, clear button will be rendered after the last "
5873
  "filter."
5874
  msgstr ""
5875
 
5876
- #: templates/admin/table-settings/table_settings_block.inc.php:741
5877
  msgid ""
5878
  "Otherwise, clear filter button will be rendered above the table next to "
5879
  "\"Table Tools\" buttons."
5880
  msgstr ""
5881
 
5882
- #: templates/admin/table-settings/table_settings_block.inc.php:753
5883
  #, fuzzy
5884
  msgid "Show clear filters button"
5885
  msgstr "Leeg filters"
5886
 
5887
- #: templates/admin/table-settings/table_settings_block.inc.php:773
5888
  #, fuzzy
5889
  msgid "Allow editing"
5890
  msgstr "Front-end aanpassen"
5891
 
5892
- #: templates/admin/table-settings/table_settings_block.inc.php:781
5893
  #: templates/edit_table.inc.php:180
5894
  msgid "Front-end editing"
5895
  msgstr "Front-end aanpassen"
5896
 
5897
- #: templates/admin/table-settings/table_settings_block.inc.php:788
5898
  #, fuzzy
5899
  msgid "Allow editing the table from the front-end."
5900
  msgstr "Maak tabel aanpasbaar vanaf de front-end"
5901
 
5902
- #: templates/admin/table-settings/table_settings_block.inc.php:796
5903
  #, fuzzy
5904
  msgid "Allow front-end editing"
5905
  msgstr "Front-end aanpassen"
5906
 
5907
- #: templates/admin/table-settings/table_settings_block.inc.php:804
5908
  msgid "Popover edit block"
5909
  msgstr ""
5910
 
5911
- #: templates/admin/table-settings/table_settings_block.inc.php:812
5912
  #: templates/edit_table.inc.php:232
5913
  msgid "Popover tools"
5914
  msgstr ""
5915
 
5916
- #: templates/admin/table-settings/table_settings_block.inc.php:819
5917
  msgid ""
5918
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5919
  "popover when you click on any row, instead of Table Tools block above the "
5920
  "table."
5921
  msgstr ""
5922
 
5923
- #: templates/admin/table-settings/table_settings_block.inc.php:827
5924
  msgid "Editing buttons in a popover"
5925
  msgstr ""
5926
 
5927
- #: templates/admin/table-settings/table_settings_block.inc.php:835
5928
- #: templates/admin/table-settings/table_settings_block.inc.php:843
5929
  #, fuzzy
5930
  msgid "In-line editing"
5931
  msgstr "Front-end aanpassen"
5932
 
5933
- #: templates/admin/table-settings/table_settings_block.inc.php:850
5934
  msgid ""
5935
  "If this is enabled, front-end users will be able to edit cells by double-"
5936
  "clicking them, not only with the editor dialog."
5937
  msgstr ""
5938
 
5939
- #: templates/admin/table-settings/table_settings_block.inc.php:858
5940
  #, fuzzy
5941
  msgid "Allow in-line editing"
5942
  msgstr "Front-end aanpassen"
5943
 
5944
- #: templates/admin/table-settings/table_settings_block.inc.php:873
5945
  #: templates/edit_table.inc.php:192
5946
  msgid "MySQL table name for editing"
5947
  msgstr "MySQL tabel naam voor aanpassen"
5948
 
5949
- #: templates/admin/table-settings/table_settings_block.inc.php:875
5950
  #, fuzzy
5951
  msgid ""
5952
  "Name of the MySQL table which will be updated when edited from front-end."
@@ -5954,18 +6061,18 @@ msgstr ""
5954
  "Naam van de MySQL tabel welke gebruikt wordt voor aanpassingen vanaf de "
5955
  "front-end"
5956
 
5957
- #: templates/admin/table-settings/table_settings_block.inc.php:880
5958
  #, fuzzy
5959
  msgid "MySQL table name"
5960
  msgstr "MySQL database naam"
5961
 
5962
- #: templates/admin/table-settings/table_settings_block.inc.php:889
5963
  #: templates/edit_table.inc.php:203
5964
  #, fuzzy
5965
  msgid "ID column for editing"
5966
  msgstr "MySQL tabel naam voor aanpassen"
5967
 
5968
- #: templates/admin/table-settings/table_settings_block.inc.php:891
5969
  msgid ""
5970
  "Choose the column values from which will be used as row identifiers. MUST be "
5971
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
@@ -5973,12 +6080,12 @@ msgid ""
5973
  "\"id\" or \"ID\" on MySQL side."
5974
  msgstr ""
5975
 
5976
- #: templates/admin/table-settings/table_settings_block.inc.php:905
5977
  #: templates/edit_table.inc.php:267
5978
  msgid "Editor roles"
5979
  msgstr "Editor rollen"
5980
 
5981
- #: templates/admin/table-settings/table_settings_block.inc.php:907
5982
  #, fuzzy
5983
  msgid ""
5984
  "If you want only specific user roles to be able to edit the table, choose in "
@@ -5987,138 +6094,206 @@ msgstr ""
5987
  "Rollen welke de tabel mogen aanpassen (blanco laten zodat iedereen "
5988
  "aanpassingen kan doen)"
5989
 
5990
- #: templates/admin/table-settings/table_settings_block.inc.php:912
5991
  msgid "Everyone"
5992
  msgstr ""
5993
 
5994
- #: templates/admin/table-settings/table_settings_block.inc.php:913
5995
  msgid "Administrators"
5996
  msgstr ""
5997
 
5998
- #: templates/admin/table-settings/table_settings_block.inc.php:914
5999
  msgid "Editors"
6000
  msgstr ""
6001
 
6002
- #: templates/admin/table-settings/table_settings_block.inc.php:915
6003
  msgid "Authors"
6004
  msgstr ""
6005
 
6006
- #: templates/admin/table-settings/table_settings_block.inc.php:916
6007
  msgid "Contributors"
6008
  msgstr ""
6009
 
6010
- #: templates/admin/table-settings/table_settings_block.inc.php:917
6011
  msgid "Subscribers"
6012
  msgstr ""
6013
 
6014
- #: templates/admin/table-settings/table_settings_block.inc.php:932
6015
  msgid "Users see and edit only own data"
6016
  msgstr ""
6017
 
6018
- #: templates/admin/table-settings/table_settings_block.inc.php:940
6019
  msgid "Users see and edit only their own data"
6020
  msgstr ""
6021
 
6022
- #: templates/admin/table-settings/table_settings_block.inc.php:947
6023
  msgid ""
6024
  "If this is enabled, users will see and edit only the rows that are related "
6025
  "to them or were created by them (associated using the User ID column)."
6026
  msgstr ""
6027
 
6028
- #: templates/admin/table-settings/table_settings_block.inc.php:955
6029
  msgid "Limit editing to own data only"
6030
  msgstr ""
6031
 
6032
- #: templates/admin/table-settings/table_settings_block.inc.php:963
6033
  #: templates/edit_table.inc.php:250
6034
  #, fuzzy
6035
  msgid "User ID column"
6036
  msgstr "ID kolom"
6037
 
6038
- #: templates/admin/table-settings/table_settings_block.inc.php:965
6039
  msgid ""
6040
  "Choose the column values from which will be used as User identifiers. "
6041
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
6042
  "an integer on MySQL side."
6043
  msgstr ""
6044
 
6045
- #: templates/admin/table-settings/table_settings_block.inc.php:998
6046
  #: templates/edit_table.inc.php:350
6047
  msgid "Table tools"
6048
  msgstr "Tabel tools"
6049
 
6050
- #: templates/admin/table-settings/table_settings_block.inc.php:1005
6051
  msgid ""
6052
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6053
  msgstr ""
6054
 
6055
- #: templates/admin/table-settings/table_settings_block.inc.php:1013
6056
  #, fuzzy
6057
  msgid "Enable Table Tools"
6058
  msgstr "Tabel tools"
6059
 
6060
- #: templates/admin/table-settings/table_settings_block.inc.php:1021
6061
  msgid "Buttons"
6062
  msgstr ""
6063
 
6064
- #: templates/admin/table-settings/table_settings_block.inc.php:1023
6065
  msgid "Choose which buttons to show in the Table Tools block."
6066
  msgstr ""
6067
 
6068
- #: templates/admin/table-settings/table_settings_block.inc.php:1029
6069
  #, fuzzy
6070
  msgid "Columns visibility"
6071
  msgstr "Kolom type"
6072
 
6073
- #: templates/admin/table-settings/table_settings_block.inc.php:1051
6074
  msgid ""
6075
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6076
  "that will be replaced with some actual values at the execution time; usually "
6077
- "this is used for MySQL queries."
 
 
6078
  msgstr ""
6079
 
6080
- #: templates/admin/table-settings/table_settings_block.inc.php:1063
6081
- #: templates/admin/table-settings/table_settings_block.inc.php:1078
6082
- #: templates/admin/table-settings/table_settings_block.inc.php:1093
6083
  msgid ""
6084
  "This placeholder will be replaced with any value that you will provide in a "
6085
  "shortcode. Provide a default value here that will be used for table "
6086
  "generation and when a different one is not defined in the shortcode."
6087
  msgstr ""
6088
 
6089
- #: templates/admin/table-settings/table_settings_block.inc.php:1083
6090
- #: templates/admin/table-settings/table_settings_block.inc.php:1098
6091
- #: templates/admin/table-settings/table_settings_block.inc.php:1120
6092
- #: templates/admin/table-settings/table_settings_block.inc.php:1138
6093
- #: templates/admin/table-settings/table_settings_block.inc.php:1155
6094
- #: templates/admin/table-settings/table_settings_block.inc.php:1176
 
 
 
 
 
 
 
6095
  msgid "Default for table generation"
6096
  msgstr ""
6097
 
6098
- #: templates/admin/table-settings/table_settings_block.inc.php:1114
6099
  msgid ""
6100
  "This placeholder will be replaced with the ID of currently logged in user. "
6101
  "Provide a value here to be used for table generation"
6102
  msgstr ""
6103
 
6104
- #: templates/admin/table-settings/table_settings_block.inc.php:1130
6105
  msgid ""
6106
  "This placeholder will be replaced with the login of currently logged in "
6107
  "user. Provide a value here to be used for table generation"
6108
  msgstr ""
6109
 
6110
- #: templates/admin/table-settings/table_settings_block.inc.php:1148
6111
  msgid ""
6112
- "This placeholder will be replaced with the current prefix of WordPress "
6113
- "database. Provide a value here to be used for table generation"
6114
  msgstr ""
6115
 
6116
- #: templates/admin/table-settings/table_settings_block.inc.php:1171
6117
  msgid ""
6118
  "This placeholder will be replaced with the ID of current post. Provide a "
6119
  "value here to be used for table generation"
6120
  msgstr ""
6121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6122
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6123
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6124
  msgid "Go to Dashboard"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
+ "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
157
  msgid "Go Premium"
158
  msgstr ""
159
 
160
+ #: controllers/wdt_admin.php:517 controllers/wdt_admin.php:566
161
+ #: controllers/wdt_admin.php:609 controllers/wdt_admin.php:630
162
+ #: controllers/wdt_admin.php:677 controllers/wdt_admin.php:703
163
+ #: controllers/wdt_admin.php:722 controllers/wdt_admin.php:742
164
+ #: controllers/wdt_admin.php:761 controllers/wdt_admin.php:781
165
+ #: controllers/wdt_admin.php:801 controllers/wdt_admin.php:821
166
+ #: controllers/wdt_admin.php:840
167
  msgid "You do not have sufficient permissions to access this page."
168
  msgstr "Je hebt niet voldoende permissies om de pagina te laden."
169
 
271
  "placeholders and also for Export file name."
272
  msgstr ""
273
 
274
+ #: source/class.wdtbrowsechartstable.php:29 source/class.wdtbrowsetable.php:30
275
+ msgid "ID"
276
+ msgstr ""
277
+
278
+ #: source/class.wdtbrowsechartstable.php:30 source/class.wdtbrowsetable.php:31
279
+ #: templates/admin/chart_wizard/steps/step4.inc.php:17
280
+ #, fuzzy
281
+ msgid "Title"
282
+ msgstr "Naam:"
283
+
284
+ #: source/class.wdtbrowsechartstable.php:31
285
+ msgid "Render Engine"
286
+ msgstr ""
287
+
288
+ #: source/class.wdtbrowsechartstable.php:32
289
+ msgid "Chart Type"
290
+ msgstr ""
291
+
292
+ #: source/class.wdtbrowsechartstable.php:33 source/class.wdtbrowsetable.php:33
293
+ msgid "Shortcode"
294
+ msgstr ""
295
+
296
  #: source/class.wdtbrowsechartstable.php:141
297
  #: source/class.wdtbrowsetable.php:168
298
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
316
  msgstr ""
317
 
318
  #: source/class.wdtbrowsechartstable.php:162
319
+ #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
320
  #: templates/admin/browse/bulk_actions.inc.php:14
321
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
322
  msgid "Delete"
409
  msgid "No wpDataCharts in the system yet."
410
  msgstr "Nog geen wpDataTables in het systeem"
411
 
412
+ #: source/class.wdtbrowsetable.php:32
413
+ #: templates/admin/table-settings/add_column_modal.inc.php:47
414
+ msgid "Type"
415
+ msgstr ""
416
+
417
  #: source/class.wdtbrowsetable.php:231
418
  #, fuzzy
419
  msgid "MySQL"
423
  msgid "Manual"
424
  msgstr ""
425
 
426
+ #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2188
427
+ #: source/class.wpdatatable.php:2258
428
+ #: templates/admin/table-settings/table_settings_block.inc.php:1050
429
  #, fuzzy
430
  msgid "Excel"
431
  msgstr "Excel bestand"
432
 
433
+ #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2197
434
+ #: source/class.wpdatatable.php:2268
435
+ #: templates/admin/table-settings/table_settings_block.inc.php:1051
436
  msgid "CSV"
437
  msgstr ""
438
 
446
  msgstr "JSON bestand"
447
 
448
  #: source/class.wdtbrowsetable.php:249
449
+ #: templates/admin/table-settings/table_settings_block.inc.php:120
450
  #: templates/edit_table.inc.php:91
451
  msgid "Serialized PHP array"
452
  msgstr "Serialized PHP array"
538
  msgid "Attachment"
539
  msgstr "Upload bijlage"
540
 
541
+ #: source/class.wdttools.php:78
542
  msgid ""
543
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
544
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
545
  "to the web</b> "
546
  msgstr ""
547
 
548
+ #: source/class.wdttools.php:206
549
  msgid "Back to date"
550
  msgstr ""
551
 
552
+ #: source/class.wdttools.php:207
553
  msgid "Browse"
554
  msgstr ""
555
 
556
+ #: source/class.wdttools.php:208 source/class.wdttools.php:330
557
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
558
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
559
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
571
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
572
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
573
  #: templates/admin/table-settings/table_preview_block.inc.php:86
574
+ #: templates/admin/table-settings/table_settings_block.inc.php:41
575
  #: templates/common/delete_modal.inc.php:39
576
  msgid "Cancel"
577
  msgstr "Annuleren"
578
 
579
+ #: source/class.wdttools.php:209
580
  #, fuzzy
581
  msgid " field cannot be empty!"
582
  msgstr "Tabel type mag niet leeg zijn"
583
 
584
+ #: source/class.wdttools.php:210
585
  msgid "Use selected file"
586
  msgstr ""
587
 
588
+ #: source/class.wdttools.php:211
589
  #, fuzzy
590
  msgid "Choose file"
591
  msgstr "Kies rollen"
592
 
593
+ #: source/class.wdttools.php:212 templates/admin/common/error_modal.inc.php:23
594
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
595
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
596
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
598
  msgid "Close"
599
  msgstr "Sluiten"
600
 
601
+ #: source/class.wdttools.php:213
602
  msgid "Column has been added!"
603
  msgstr ""
604
 
605
+ #: source/class.wdttools.php:214
606
  #, fuzzy
607
  msgid "Column header cannot be empty!"
608
  msgstr "Tabel type mag niet leeg zijn"
609
 
610
+ #: source/class.wdttools.php:215
611
  msgid "Please confirm column deletion!"
612
  msgstr ""
613
 
614
+ #: source/class.wdttools.php:216
615
  msgid "Column has been removed!"
616
  msgstr ""
617
 
618
+ #: source/class.wdttools.php:217
619
  msgid "Please select columns that you want to use in table"
620
  msgstr ""
621
 
622
+ #: source/class.wdttools.php:218 source/class.wpdatatable.php:2206
623
+ #: source/class.wpdatatable.php:2278
624
+ #: templates/admin/table-settings/table_settings_block.inc.php:1052
625
  msgid "Copy"
626
  msgstr ""
627
 
628
+ #: source/class.wdttools.php:219
629
  msgid "There was an error trying to insert a new row!"
630
  msgstr ""
631
 
632
+ #: source/class.wdttools.php:220
633
  msgid "Data has been saved!"
634
  msgstr ""
635
 
636
+ #: source/class.wdttools.php:221
637
  msgid "detach"
638
  msgstr ""
639
 
640
+ #: source/class.wdttools.php:223
641
  msgid "Delete selected"
642
  msgstr ""
643
 
644
+ #: source/class.wdttools.php:224 templates/settings.inc.php:553
645
  #: templates/settings.inc.php:627
646
  msgid "Error!"
647
  msgstr "Fout!"
648
 
649
+ #: source/class.wdttools.php:225
650
  msgid "Please upload or choose a file from Media Library!"
651
  msgstr ""
652
 
653
+ #: source/class.wdttools.php:226
654
  msgid "From"
655
  msgstr ""
656
 
657
+ #: source/class.wdttools.php:227
658
  msgid "Please provide a valid e-mail address for field"
659
  msgstr ""
660
 
661
+ #: source/class.wdttools.php:228
662
  msgid "Please provide a valid URL link for field"
663
  msgstr ""
664
 
665
+ #: source/class.wdttools.php:229
666
  msgid "You have entered invalid value. Press ESC to cancel."
667
  msgstr ""
668
 
669
+ #: source/class.wdttools.php:230 source/class.wdttools.php:260
670
  msgid "Show _MENU_ entries"
671
  msgstr ""
672
 
673
+ #: source/class.wdttools.php:231
674
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
675
  msgid "Merge"
676
  msgstr ""
677
 
678
+ #: source/class.wdttools.php:232
679
  #, fuzzy
680
  msgid "New column"
681
  msgstr "ID kolom"
682
 
683
+ #: source/class.wdttools.php:233
684
  msgid "Number of columns can not be empty or 0"
685
  msgstr ""
686
 
687
+ #: source/class.wdttools.php:234
688
  msgid "Number of rows can not be empty or 0"
689
  msgstr ""
690
 
691
+ #: source/class.wdttools.php:236
692
  msgid ": activate to sort column ascending"
693
  msgstr ""
694
 
695
+ #: source/class.wdttools.php:237
696
  msgid ": activate to sort column descending"
697
  msgstr ""
698
 
699
+ #: source/class.wdttools.php:239
700
  msgid "Ok"
701
  msgstr ""
702
 
703
+ #: source/class.wdttools.php:241
704
  msgid "First"
705
  msgstr ""
706
 
707
+ #: source/class.wdttools.php:242
708
  msgid "Last"
709
  msgstr ""
710
 
711
+ #: source/class.wdttools.php:243
712
  msgid "Next"
713
  msgstr "Volgende"
714
 
715
+ #: source/class.wdttools.php:244
716
  #, fuzzy
717
  msgid "Previous"
718
  msgstr "Preview"
719
 
720
+ #: source/class.wdttools.php:246
721
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
722
  msgid "Replace"
723
  msgstr ""
724
 
725
+ #: source/class.wdttools.php:247
726
  msgid "Row has been deleted!"
727
  msgstr ""
728
 
729
+ #: source/class.wdttools.php:248
730
+ msgid "Save chart"
731
+ msgstr ""
732
+
733
+ #: source/class.wdttools.php:249
734
  msgid "Select a file to use in table"
735
  msgstr ""
736
 
737
+ #: source/class.wdttools.php:250
738
  #, fuzzy
739
  msgid "Select an Excel or CSV file"
740
  msgstr "Selecteer Excel of CSV besand"
741
 
742
+ #: source/class.wdttools.php:251
743
  msgid "No data available in table"
744
  msgstr ""
745
 
746
+ #: source/class.wdttools.php:252
747
  #, fuzzy
748
  msgid "Plugin settings saved successfully"
749
  msgstr "Instellingen zijn opgeslagen"
750
 
751
+ #: source/class.wdttools.php:253
752
  msgid ""
753
  "Unable to save settings of plugin. Please try again or contact us over "
754
  "Support page."
755
  msgstr ""
756
 
757
+ #: source/class.wdttools.php:254
758
  msgid "Shortcode has been copied to the clipboard."
759
  msgstr ""
760
 
761
+ #: source/class.wdttools.php:255
762
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
763
  msgstr ""
764
 
765
+ #: source/class.wdttools.php:256
766
  msgid "Showing 0 to 0 of 0 entries"
767
  msgstr ""
768
 
769
+ #: source/class.wdttools.php:257
770
  msgid "(filtered from _MAX_ total entries)"
771
  msgstr ""
772
 
773
+ #: source/class.wdttools.php:259
774
  msgid ","
775
  msgstr ""
776
 
777
+ #: source/class.wdttools.php:261
778
  msgid "Loading..."
779
  msgstr ""
780
 
781
+ #: source/class.wdttools.php:262
782
  msgid "Processing..."
783
  msgstr ""
784
 
785
+ #: source/class.wdttools.php:263
786
  #, fuzzy
787
  msgid "SQL error"
788
  msgstr "MySQL gebruiker"
789
 
790
+ #: source/class.wdttools.php:264
791
  msgid "Search: "
792
  msgstr ""
793
 
794
+ #: source/class.wdttools.php:265 templates/settings.inc.php:559
795
  #: templates/settings.inc.php:625
796
  msgid "Success!"
797
  msgstr "Succes!"
798
 
799
+ #: source/class.wdttools.php:266
800
  msgid "No matching records found"
801
  msgstr ""
802
 
803
+ #: source/class.wdttools.php:267
804
  msgid ""
805
  "System info data has been copied to the clipboard. You can now paste it in "
806
  "file or in support topic."
807
  msgstr ""
808
 
809
+ #: source/class.wdttools.php:268
810
  msgid "Table saved successfully!"
811
  msgstr "Tabel succesvol opgeslagen!"
812
 
813
+ #: source/class.wdttools.php:269
814
  msgid "To"
815
  msgstr ""
816
 
817
+ #: source/class.wdttools.php:305
818
  #: templates/admin/common/premium_modal.inc.php:17
819
+ #: templates/admin/table-settings/table_settings_block.inc.php:1072
820
+ #: templates/admin/table-settings/table_settings_block.inc.php:1348
821
  msgid "This is a premium feature"
822
  msgstr ""
823
 
824
+ #: source/class.wdttools.php:306
825
  #: templates/admin/common/premium_modal.inc.php:26
826
+ #: templates/admin/table-settings/table_settings_block.inc.php:1073
827
+ #: templates/admin/table-settings/table_settings_block.inc.php:1349
828
  msgid "This feature is available only in premium version of wpDataTables"
829
  msgstr ""
830
 
831
+ #: source/class.wdttools.php:307
832
  #: templates/admin/getting-started/getting_started.inc.php:133
833
  #: templates/admin/getting-started/getting_started.inc.php:145
834
  #: templates/admin/getting-started/getting_started.inc.php:157
835
  #: templates/admin/getting-started/getting_started.inc.php:169
836
+ #: templates/admin/table-settings/table_settings_block.inc.php:1077
837
+ #: templates/admin/table-settings/table_settings_block.inc.php:1353
838
  msgid "Compare and View Pricing"
839
  msgstr ""
840
 
841
+ #: source/class.wdttools.php:326
842
  msgid "Field cannot be empty!"
843
  msgstr ""
844
 
845
+ #: source/class.wdttools.php:327
846
  msgid "Please choose chart type."
847
  msgstr ""
848
 
849
+ #: source/class.wdttools.php:328
850
  msgid "Please select wpDataTable from dropdown."
851
  msgstr ""
852
 
853
+ #: source/class.wdttools.php:329
854
  msgid "Columns field cannot be empty"
855
  msgstr ""
856
 
857
+ #: source/class.wdttools.php:331
858
  msgid ""
859
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
860
  "clicking on Cancel button."
861
  msgstr ""
862
 
863
+ #: source/class.wdttools.php:332
864
  msgid "Finish Tutorial"
865
  msgstr ""
866
 
867
+ #: source/class.wdttools.php:333
868
  msgid "Continue"
869
  msgstr ""
870
 
871
+ #: source/class.wdttools.php:334
872
  msgid "Start"
873
  msgstr ""
874
 
875
+ #: source/class.wdttools.php:335
876
  msgid "Skip Tutorial"
877
  msgstr ""
878
 
879
+ #: source/class.wdttools.php:338 source/class.wdttools.php:404
880
+ #: source/class.wdttools.php:446
881
  msgid "Welcome to the tutorial!"
882
  msgstr ""
883
 
884
+ #: source/class.wdttools.php:339 source/class.wdttools.php:405
885
+ #: source/class.wdttools.php:447
886
  msgid "Hello "
887
  msgstr ""
888
 
889
+ #: source/class.wdttools.php:339
890
  msgid ""
891
  ", in this tutorial, we will show you how to create a simple table from "
892
  "scratch by choosing a custom number of columns and rows. How to customize "
893
  "each cell, merge cells and a lot more."
894
  msgstr ""
895
 
896
+ #: source/class.wdttools.php:342
897
  msgid " Let's create a new wpDataTable from scratch!"
898
  msgstr ""
899
 
900
+ #: source/class.wdttools.php:343 source/class.wdttools.php:409
901
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
902
  msgstr ""
903
 
904
+ #: source/class.wdttools.php:346
905
  msgid "Choose this option"
906
  msgstr ""
907
 
908
+ #: source/class.wdttools.php:347
909
  msgid "Please select 'Create a simple table from scratch'."
910
  msgstr ""
911
 
912
+ #: source/class.wdttools.php:350 source/class.wdttools.php:416
913
  msgid "Click Next"
914
  msgstr ""
915
 
916
+ #: source/class.wdttools.php:351 source/class.wdttools.php:417
917
  msgid "Please click the 'Next' button to continue."
918
  msgstr ""
919
 
920
+ #: source/class.wdttools.php:354
921
  msgid "Welcome to the Simple table wizard!"
922
  msgstr ""
923
 
924
+ #: source/class.wdttools.php:355
925
  msgid "Please click 'Continue' button to move on."
926
  msgstr ""
927
 
928
+ #: source/class.wdttools.php:358
929
  msgid "Choose a name for your table"
930
  msgstr ""
931
 
932
+ #: source/class.wdttools.php:359
933
  msgid "After inserting table name, click 'Continue' to move on."
934
  msgstr ""
935
 
936
+ #: source/class.wdttools.php:362
937
  msgid "Choose the number of columns for your table"
938
  msgstr ""
939
 
940
+ #: source/class.wdttools.php:363
941
  msgid ""
942
  "Please choose how many columns it will have. Remember that you can always "
943
  "add or reduce the number of columns later. Click 'Continue' when you finish."
944
  msgstr ""
945
 
946
+ #: source/class.wdttools.php:366
947
  msgid "Choose the number of rows for your table."
948
  msgstr ""
949
 
950
+ #: source/class.wdttools.php:367
951
  msgid ""
952
  "Please choose how many rows it will have. Remember that you can always add "
953
  "or reduce the number of rows later. Click 'Continue' when you finish."
954
  msgstr ""
955
 
956
+ #: source/class.wdttools.php:370
957
  msgid "Click on the 'Generate Table' button"
958
  msgstr ""
959
 
960
+ #: source/class.wdttools.php:371
961
  msgid "When you click on the button, the empty table will be ready for you. "
962
  msgstr ""
963
 
964
+ #: source/class.wdttools.php:374
965
  msgid "We are generating the table..."
966
  msgstr ""
967
 
968
+ #: source/class.wdttools.php:375
969
  msgid "Please, when you see the table, click 'Continue' to move on."
970
  msgstr ""
971
 
972
+ #: source/class.wdttools.php:378
973
  msgid ""
974
  "Nice job! You just configured your table and it is ready to fill it with "
975
  "data."
976
  msgstr ""
977
 
978
+ #: source/class.wdttools.php:379
979
  msgid ""
980
  "Now we will guide you on how to insert data and check table layout throw "
981
  "Simple table editor, table toolbar and table preview. Please click "
982
  "'Continue' to move on."
983
  msgstr ""
984
 
985
+ #: source/class.wdttools.php:382
986
  msgid "This is Simple table editor"
987
  msgstr ""
988
 
989
+ #: source/class.wdttools.php:383
990
  msgid ""
991
  "Here you can populate your table with data. <br><br>You can move around the "
992
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
995
  "line of the row header. Click 'Continue' to move on."
996
  msgstr ""
997
 
998
+ #: source/class.wdttools.php:386
999
  msgid "Check out the Simple table toolbar"
1000
  msgstr ""
1001
 
1002
+ #: source/class.wdttools.php:387
1003
  msgid ""
1004
  "Here you can style and insert custom data for each cell or range of cells. "
1005
  "You can add or delete columns and rows, merge cells, customize sections by "
1007
  "ratings or custom HTML code."
1008
  msgstr ""
1009
 
1010
+ #: source/class.wdttools.php:390
1011
  msgid "Responsive table views"
1012
  msgstr ""
1013
 
1014
+ #: source/class.wdttools.php:391
1015
  msgid ""
1016
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
1017
  "tab that you need, so you can make sure your table looks excellent across "
1018
  "all devices. "
1019
  msgstr ""
1020
 
1021
+ #: source/class.wdttools.php:394
1022
  msgid "Real-time preview"
1023
  msgstr ""
1024
 
1025
+ #: source/class.wdttools.php:395
1026
  msgid ""
1027
  "Here you will see how your table will look like on the page. Please click "
1028
  "'Continue' to move on."
1029
  msgstr ""
1030
 
1031
+ #: source/class.wdttools.php:398
1032
  msgid "Congrats! Your table is ready."
1033
  msgstr ""
1034
 
1035
+ #: source/class.wdttools.php:399
1036
  msgid ""
1037
  "Now you can copy the shortcode for this table, and check out how it looks on "
1038
  "your website when you paste it to a post or page. You can always come back "
1039
  "and edit the table as you like."
1040
  msgstr ""
1041
 
1042
+ #: source/class.wdttools.php:405
1043
  msgid ""
1044
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
1045
  "existing data source. \"Linked\" in this context means that if you create a "
1048
  "reflected in the table."
1049
  msgstr ""
1050
 
1051
+ #: source/class.wdttools.php:408
1052
  msgid "Let's create a new wpDataTable!"
1053
  msgstr ""
1054
 
1055
+ #: source/class.wdttools.php:412
1056
  msgid "Choose this option."
1057
  msgstr ""
1058
 
1059
+ #: source/class.wdttools.php:413
1060
  msgid "Please select 'Create a table linked to an existing data source'."
1061
  msgstr ""
1062
 
1063
+ #: source/class.wdttools.php:420
1064
+ #: templates/admin/table-settings/table_settings_block.inc.php:101
1065
  #, fuzzy
1066
  msgid "Input data source type"
1067
  msgstr "Tabel invoer data bron mag niet leeg zijn"
1068
 
1069
+ #: source/class.wdttools.php:421
1070
  msgid "Please select a data source type that you need."
1071
  msgstr ""
1072
 
1073
+ #: source/class.wdttools.php:424
1074
  msgid "Select Data source type"
1075
  msgstr ""
1076
 
1077
+ #: source/class.wdttools.php:425
1078
  msgid ""
1079
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1080
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1081
  "are available in Premium version)"
1082
  msgstr ""
1083
 
1084
+ #: source/class.wdttools.php:428
1085
+ #: templates/admin/table-settings/table_settings_block.inc.php:131
1086
  #, fuzzy
1087
  msgid "Input file path or URL"
1088
  msgstr "Voer bestand of URL in"
1089
 
1090
+ #: source/class.wdttools.php:429
1091
  msgid ""
1092
  "Upload your file or provide the full URL here. When you finish click "
1093
  "'Continue' button."
1094
  msgstr ""
1095
 
1096
+ #: source/class.wdttools.php:432
1097
  msgid "Click Save Changes"
1098
  msgstr ""
1099
 
1100
+ #: source/class.wdttools.php:433
1101
  msgid ""
1102
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1103
  "get an error message after button click and you are not able to solve it, "
1106
  "click Skip tutorial."
1107
  msgstr ""
1108
 
1109
+ #: source/class.wdttools.php:436
1110
  msgid "The table is creating..."
1111
  msgstr ""
1112
 
1113
+ #: source/class.wdttools.php:437
1114
  msgid ""
1115
  "Now the table is creating. Wait until you see it in the background and then "
1116
  "click 'Continue'."
1117
  msgstr ""
1118
 
1119
+ #: source/class.wdttools.php:440
1120
  msgid "Nice job! You just created your first wpDataTable!"
1121
  msgstr ""
1122
 
1123
+ #: source/class.wdttools.php:441
1124
  msgid ""
1125
  "Now you can copy the shortcode for this table, and check out how it looks on "
1126
  "your website when you paste it to a post or page."
1127
  msgstr ""
1128
 
1129
+ #: source/class.wdttools.php:447
1130
  msgid ""
1131
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1132
  "plugin."
1133
  msgstr ""
1134
 
1135
+ #: source/class.wdttools.php:450
1136
  msgid "Let's create a new wpDataTables Chart!"
1137
  msgstr ""
1138
 
1139
+ #: source/class.wdttools.php:451
1140
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1141
  msgstr ""
1142
 
1143
+ #: source/class.wdttools.php:454
1144
  msgid "Welcome to the Chart Wizard!"
1145
  msgstr ""
1146
 
1147
+ #: source/class.wdttools.php:455
1148
  msgid ""
1149
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1150
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1151
  msgstr ""
1152
 
1153
+ #: source/class.wdttools.php:458
1154
  msgid "Follow the steps in the Chart Wizard"
1155
  msgstr ""
1156
 
1157
+ #: source/class.wdttools.php:459
1158
  msgid ""
1159
  "By following these steps, you will finish building your chart in the Chart "
1160
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1161
  "'Continue' button to move forward."
1162
  msgstr ""
1163
 
1164
+ #: source/class.wdttools.php:462
1165
  msgid "Choose a name for your Chart"
1166
  msgstr ""
1167
 
1168
+ #: source/class.wdttools.php:463
1169
  msgid "Click 'Continue' button when you’re ready to move forward."
1170
  msgstr ""
1171
 
1172
+ #: source/class.wdttools.php:466
1173
  msgid "In wpDataTables you can find several charts render engines."
1174
  msgstr ""
1175
 
1176
+ #: source/class.wdttools.php:467
1177
  msgid ""
1178
  "Click on the dropdown, and you will see several options that you can choose "
1179
  "from.(Google charts are only available) <br><br>To continue, click on the "
1180
  "dropdown."
1181
  msgstr ""
1182
 
1183
+ #: source/class.wdttools.php:470
1184
  msgid "Choose Google chart engine."
1185
  msgstr ""
1186
 
1187
+ #: source/class.wdttools.php:471
1188
  msgid ""
1189
  "By clicking on Google chart options, you will choose the engine that will "
1190
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1191
  "to move forward."
1192
  msgstr ""
1193
 
1194
+ #: source/class.wdttools.php:474
1195
  msgid "Different charts types. "
1196
  msgstr ""
1197
 
1198
+ #: source/class.wdttools.php:475
1199
  msgid ""
1200
  "Here you can choose a chart type. Please, click on the chart type that you "
1201
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1202
  "forward."
1203
  msgstr ""
1204
 
1205
+ #: source/class.wdttools.php:478
1206
  msgid "The first step is finished!"
1207
  msgstr ""
1208
 
1209
+ #: source/class.wdttools.php:479
1210
  msgid "Let's move on. Please, click 'Next' to continue."
1211
  msgstr ""
1212
 
1213
+ #: source/class.wdttools.php:482
1214
  msgid ""
1215
  "Now you need to choose a wpDataTable based on which we will build a chart "
1216
  "for you"
1217
  msgstr ""
1218
 
1219
+ #: source/class.wdttools.php:483
1220
  msgid ""
1221
  "Click on the dropdown, and all your tables will be listed. The columns of "
1222
  "the table that you choose will be used for creating the chart.<br><br>If you "
1224
  "button and create wpDataTable that would contain the data to visualize first."
1225
  msgstr ""
1226
 
1227
+ #: source/class.wdttools.php:486
1228
  msgid "Pick your wpDataTable"
1229
  msgstr ""
1230
 
1231
+ #: source/class.wdttools.php:487
1232
  msgid ""
1233
  "Pick a wpDataTable from which you want to render a chart and when you "
1234
  "finish, please click 'Continue' to move on."
1235
  msgstr ""
1236
 
1237
+ #: source/class.wdttools.php:490
1238
  msgid "The second step is finished!"
1239
  msgstr ""
1240
 
1241
+ #: source/class.wdttools.php:491
1242
  msgid ""
1243
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1244
  msgstr ""
1245
 
1246
+ #: source/class.wdttools.php:494
1247
  msgid "Just a heads up!"
1248
  msgstr ""
1249
 
1250
+ #: source/class.wdttools.php:495
1251
  msgid ""
1252
  "Here you will choose from which columns you will create a chart.<br><br> "
1253
  "Please click 'Continue' button to move forward."
1254
  msgstr ""
1255
 
1256
+ #: source/class.wdttools.php:498
1257
  msgid "Meet the wpDataTable Column Blocks"
1258
  msgstr ""
1259
 
1260
+ #: source/class.wdttools.php:499
1261
  msgid ""
1262
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1263
  "or click on the arrow to move the desired column to the 'Columns used in the "
1264
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1265
  msgstr ""
1266
 
1267
+ #: source/class.wdttools.php:502
1268
  msgid "Well done!"
1269
  msgstr ""
1270
 
1271
+ #: source/class.wdttools.php:503
1272
  msgid "Just two more steps to go. Please click 'Next' to continue."
1273
  msgstr ""
1274
 
1275
+ #: source/class.wdttools.php:506
1276
  msgid "Chart settings and chart preview."
1277
  msgstr ""
1278
 
1279
+ #: source/class.wdttools.php:507
1280
  msgid ""
1281
  "Here you can adjust chart settings, different parameters are grouped in "
1282
  "section; adjusting the parameters will be reflected in the preview of your "
1284
  "button to move forward."
1285
  msgstr ""
1286
 
1287
+ #: source/class.wdttools.php:510
1288
  msgid "In this sidebar, you can find the chart settings section."
1289
  msgstr ""
1290
 
1291
+ #: source/class.wdttools.php:511
1292
  msgid ""
1293
  "By clicking on each section, you can set your desired parameters per section."
1294
  "<br><br> Please click 'Continue' button to move on."
1295
  msgstr ""
1296
 
1297
+ #: source/class.wdttools.php:514
1298
  msgid "Here are the available chart options"
1299
  msgstr ""
1300
 
1301
+ #: source/class.wdttools.php:515
1302
  msgid ""
1303
  "Set different chart options for the chosen section to get your desired chart "
1304
  "look.<br><br> Please click 'Continue' button to move on."
1305
  msgstr ""
1306
 
1307
+ #: source/class.wdttools.php:518
1308
  msgid "How your chart will look like on the page of your website"
1309
  msgstr ""
1310
 
1311
+ #: source/class.wdttools.php:519
1312
  msgid ""
1313
  "Here you can see a preview of your chart based on the settings you have "
1314
  "chosen.<br><br> Please click 'Continue' button to move on."
1315
  msgstr ""
1316
 
1317
+ #: source/class.wdttools.php:522
1318
  msgid "You can save your chart now"
1319
  msgstr ""
1320
 
1321
+ #: source/class.wdttools.php:523
1322
  msgid ""
1323
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1324
  "button and all your settings for this chart will be saved in the database."
1325
  msgstr ""
1326
 
1327
+ #: source/class.wdttools.php:526
1328
  msgid "Congrats! Your first chart is ready!"
1329
  msgstr ""
1330
 
1331
+ #: source/class.wdttools.php:527
1332
  msgid ""
1333
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1334
  "page. <br><br>You may now finish this tutorial. "
1342
  msgid "You are mixing data types (several date axes and several number)"
1343
  msgstr ""
1344
 
1345
+ #: source/class.wpdatatable.php:1876
1346
  msgid ""
1347
  "You are trying to load a table of an unknown type. Probably you did not "
1348
  "activate the addon which is required to use this table type."
1349
  msgstr ""
1350
 
1351
+ #: source/class.wpdatatable.php:2106 source/class.wpdatatable.php:2109
1352
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1353
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1354
+ #: templates/admin/table-settings/table_settings_block.inc.php:327
1355
  #: templates/edit_table.inc.php:409
1356
  msgid "All"
1357
  msgstr "Alles"
1358
 
1359
+ #: source/class.wpdatatable.php:2167 source/class.wpdatatable.php:2236
1360
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1361
  #, fuzzy
1362
  msgid "Columns"
1363
  msgstr "Kolom type"
1364
 
1365
+ #: source/class.wpdatatable.php:2177 source/class.wpdatatable.php:2246
1366
+ #: templates/admin/table-settings/table_settings_block.inc.php:1049
1367
  msgid "Print"
1368
  msgstr ""
1369
 
1370
+ #: source/class.wpdatatable.php:2216 source/class.wpdatatable.php:2289
1371
+ #: templates/admin/table-settings/table_settings_block.inc.php:1053
1372
  msgid "PDF"
1373
  msgstr ""
1374
 
1375
+ #: source/class.wpdatatable.php:2224
1376
  msgid "Export"
1377
  msgstr ""
1378
 
1379
+ #: source/class.wpdatatable.php:2302
1380
  msgid "Search table"
1381
  msgstr ""
1382
 
1383
+ #: source/class.wpdatatable.php:2303
1384
  msgid "Showing _MENU_ Entries"
1385
  msgstr ""
1386
 
1399
  msgid "if you have some questions or problems with the plugin."
1400
  msgstr "als je vragen of problemen hebt met deze plugin."
1401
 
1402
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1403
  msgid "wpDataTables Addons"
1404
  msgstr ""
1405
 
1413
  msgstr ""
1414
 
1415
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1416
+ #: templates/admin/dashboard/dashboard.inc.php:570
1417
  msgid "Report Builder"
1418
  msgstr ""
1419
 
1420
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1421
+ #: templates/admin/dashboard/dashboard.inc.php:574
1422
  msgid ""
1423
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1424
  "XLSX documents filled in with actual data from your database."
1444
  msgstr ""
1445
 
1446
  #: templates/admin/addons/addons.inc.php:40
1447
+ #: templates/admin/dashboard/dashboard.inc.php:517
1448
  msgid "Master Detail Tables for wpDataTables"
1449
  msgstr ""
1450
 
1465
  msgstr ""
1466
 
1467
  #: templates/admin/addons/addons.inc.php:67
1468
+ #: templates/admin/dashboard/dashboard.inc.php:544
1469
  msgid "Powerful Filters for wpDataTables"
1470
  msgstr ""
1471
 
1477
  msgstr ""
1478
 
1479
  #: templates/admin/addons/addons.inc.php:120
1480
+ #: templates/admin/dashboard/dashboard.inc.php:597
1481
  msgid "Formidable Forms integration for wpDataTables"
1482
  msgstr ""
1483
 
1484
  #: templates/admin/addons/addons.inc.php:123
1485
+ #: templates/admin/dashboard/dashboard.inc.php:601
1486
  msgid ""
1487
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1488
  "create wpDataTables from Formidable Forms entries data."
1489
  msgstr ""
1490
 
1491
  #: templates/admin/addons/addons.inc.php:143
1492
+ #: templates/admin/dashboard/dashboard.inc.php:623
1493
  msgid "Gravity Forms integration for wpDataTables"
1494
  msgstr ""
1495
 
1496
  #: templates/admin/addons/addons.inc.php:146
1497
+ #: templates/admin/dashboard/dashboard.inc.php:627
1498
  msgid ""
1499
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1500
  "wpDataTables from Gravity Forms entries data."
1575
  msgstr "Grafiek titel"
1576
 
1577
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1578
+ #: templates/admin/table-settings/table_settings_block.inc.php:60
1579
  #: templates/chart_wizard.inc.php:36
1580
  msgid "Data source"
1581
  msgstr ""
1620
 
1621
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1622
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
1623
+ #: templates/admin/table-settings/table_settings_block.inc.php:1902
1624
  #: templates/edit_table.inc.php:730
1625
  msgid "Color"
1626
  msgstr ""
1858
  #: templates/admin/getting-started/getting_started.inc.php:144
1859
  #: templates/admin/getting-started/getting_started.inc.php:156
1860
  #: templates/admin/getting-started/getting_started.inc.php:168
1861
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
1862
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
1863
  msgid "Available in Premium"
1864
  msgstr ""
1865
 
1992
  msgid "Axes"
1993
  msgstr ""
1994
 
 
 
 
 
 
1995
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1996
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1997
  msgid "Tooltip"
2091
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2092
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2093
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
2094
+ #: templates/admin/table-settings/table_settings_block.inc.php:1549
2095
+ #: templates/admin/table-settings/table_settings_block.inc.php:1879
2096
  #, fuzzy
2097
  msgid "Background color"
2098
  msgstr "Achtergrondkleur van de Buttons"
2114
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2115
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2116
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
2117
+ #: templates/admin/table-settings/table_settings_block.inc.php:1571
2118
  #, fuzzy
2119
  msgid "Border color"
2120
  msgstr "Buttons border kleur"
2157
 
2158
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2159
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
2160
+ #: templates/admin/table-settings/table_settings_block.inc.php:1483
2161
  msgid "Font size"
2162
  msgstr ""
2163
 
2525
  #: templates/admin/dashboard/dashboard.inc.php:30
2526
  #: templates/admin/getting-started/getting_started.inc.php:34
2527
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2528
+ #: templates/admin/settings/settings.inc.php:100
2529
  #: templates/admin/support/support.inc.php:31
2530
  #: templates/admin/support/support.inc.php:47
2531
  #: templates/admin/system-info/system_info.inc.php:29
2532
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2533
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2534
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2535
+ #: templates/admin/table-settings/table_settings_block.inc.php:2063
2536
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2537
  msgid "View Documentation"
2538
  msgstr ""
2763
  msgstr ""
2764
 
2765
  #: templates/admin/dashboard/dashboard.inc.php:340
2766
+ msgid "A minor update with a couple of improvements and bug fixes:"
 
 
2767
  msgstr ""
2768
 
2769
  #: templates/admin/dashboard/dashboard.inc.php:345
2770
  msgid ""
2771
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2772
+ "media in Simple tables."
2773
  msgstr ""
2774
 
2775
  #: templates/admin/dashboard/dashboard.inc.php:346
2776
  msgid ""
2777
+ "<strong>Improvement:</strong> Added translate functions on some strings."
 
2778
  msgstr ""
2779
 
2780
  #: templates/admin/dashboard/dashboard.inc.php:347
2781
  msgid ""
2782
+ "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2783
+ "area and filters for elementor widgets."
2784
  msgstr ""
2785
 
2786
  #: templates/admin/dashboard/dashboard.inc.php:348
2787
  msgid ""
2788
+ "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2789
+ "background in graphite skin."
2790
  msgstr ""
2791
 
2792
  #: templates/admin/dashboard/dashboard.inc.php:349
2793
  msgid ""
2794
+ "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2795
+ "settings."
2796
  msgstr ""
2797
 
2798
  #: templates/admin/dashboard/dashboard.inc.php:350
2799
+ msgid "Compatibility with WordPress 5.6.2 approved."
2800
+ msgstr ""
2801
+
2802
+ #: templates/admin/dashboard/dashboard.inc.php:351
2803
  msgid "Other small bug fixes and stability improvements."
2804
  msgstr ""
2805
 
2806
+ #: templates/admin/dashboard/dashboard.inc.php:363
2807
  msgid "Go Premium!"
2808
  msgstr ""
2809
 
2810
+ #: templates/admin/dashboard/dashboard.inc.php:369
2811
  msgid "View Comparison"
2812
  msgstr ""
2813
 
2814
+ #: templates/admin/dashboard/dashboard.inc.php:377
2815
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2816
  msgid ""
2817
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2818
  "of the powerful features."
2819
  msgstr ""
2820
 
2821
+ #: templates/admin/dashboard/dashboard.inc.php:381
2822
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2823
  msgid "Create a table manually"
2824
  msgstr ""
2825
 
2826
+ #: templates/admin/dashboard/dashboard.inc.php:384
2827
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2828
  msgid "Creating tables from Google Spreadsheet"
2829
  msgstr ""
2830
 
2831
+ #: templates/admin/dashboard/dashboard.inc.php:387
2832
  msgid ""
2833
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2834
  "tables via Google Sheet API"
2835
  msgstr ""
2836
 
2837
+ #: templates/admin/dashboard/dashboard.inc.php:390
2838
  msgid ""
2839
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2840
  "tables from Private Google Spreadsheet"
2841
  msgstr ""
2842
 
2843
+ #: templates/admin/dashboard/dashboard.inc.php:393
2844
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2845
  msgid "Creating MySQL-based tables from database"
2846
  msgstr ""
2847
 
2848
+ #: templates/admin/dashboard/dashboard.inc.php:396
2849
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2850
  msgid "Creating MySQL-based tables from Wordpress post types"
2851
  msgstr ""
2852
 
2853
+ #: templates/admin/dashboard/dashboard.inc.php:399
2854
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
2855
  #: templates/edit_table.inc.php:329
2856
  msgid "Advanced filtering"
2857
  msgstr ""
2858
 
2859
+ #: templates/admin/dashboard/dashboard.inc.php:402
2860
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2861
+ #: templates/admin/table-settings/table_settings_block.inc.php:153
2862
  #: templates/edit_table.inc.php:282
2863
  msgid "Server-side processing"
2864
  msgstr "Server-side verwerking"
2865
 
2866
+ #: templates/admin/dashboard/dashboard.inc.php:405
2867
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2868
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2869
  msgstr ""
2870
 
2871
+ #: templates/admin/dashboard/dashboard.inc.php:408
2872
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2873
  msgid "Front-end table editing"
2874
  msgstr ""
2875
 
2876
+ #: templates/admin/dashboard/dashboard.inc.php:411
2877
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2878
  msgid "Excel-like editing"
2879
  msgstr ""
2880
 
2881
+ #: templates/admin/dashboard/dashboard.inc.php:414
2882
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2883
  msgid "Creating charts with Highcharts"
2884
  msgstr ""
2885
 
2886
+ #: templates/admin/dashboard/dashboard.inc.php:417
2887
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2888
  msgid "Creating charts with Chart.js"
2889
  msgstr ""
2890
 
2891
+ #: templates/admin/dashboard/dashboard.inc.php:420
2892
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2893
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2894
  #: templates/edit_table.inc.php:301
2895
  msgid "Responsive"
2896
  msgstr ""
2897
 
2898
+ #: templates/admin/dashboard/dashboard.inc.php:423
2899
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2900
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2901
  #: templates/edit_table.inc.php:750
2902
  #, fuzzy
2903
  msgid "Conditional formatting"
2904
  msgstr "Extra instellingen"
2905
 
2906
+ #: templates/admin/dashboard/dashboard.inc.php:426
2907
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2908
  msgid "Calculating Tools"
2909
  msgstr ""
2910
 
2911
+ #: templates/admin/dashboard/dashboard.inc.php:429
2912
  msgid "Formula columns"
2913
  msgstr ""
2914
 
2915
+ #: templates/admin/dashboard/dashboard.inc.php:432
2916
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2917
+ #: templates/admin/table-settings/table_settings_block.inc.php:80
2918
  msgid "Placeholders"
2919
  msgstr ""
2920
 
2921
+ #: templates/admin/dashboard/dashboard.inc.php:435
2922
  msgid "Premium support"
2923
  msgstr ""
2924
 
2925
+ #: templates/admin/dashboard/dashboard.inc.php:439
2926
  msgid "Get Premium Today"
2927
  msgstr ""
2928
 
2929
+ #: templates/admin/dashboard/dashboard.inc.php:446
2930
  msgid "News Blog"
2931
  msgstr ""
2932
 
2933
+ #: templates/admin/dashboard/dashboard.inc.php:451
2934
  msgid "Checkout useful articles from wpdatatables.com"
2935
  msgstr ""
2936
 
2937
+ #: templates/admin/dashboard/dashboard.inc.php:474
2938
  msgid "Please install and enable PHP extensions xml and dom on your server."
2939
  msgstr ""
2940
 
2941
+ #: templates/admin/dashboard/dashboard.inc.php:482
2942
  msgid ""
2943
  "Never miss notifications about new cool features, promotions,\n"
2944
  " giveaways or freebies – subscribe to our "
2946
  " about 1 message per month and never spam!"
2947
  msgstr ""
2948
 
2949
+ #: templates/admin/dashboard/dashboard.inc.php:500
2950
  msgid "Premium "
2951
  msgstr ""
2952
 
2953
+ #: templates/admin/dashboard/dashboard.inc.php:503
2954
  msgid ""
2955
  "While wpDataTables itself provides quite a large amount of features and "
2956
  "unlimited customisation, flexibility, you can achieve even more with our "
2957
  "premium addons.(requires wpDataTables Premium version)"
2958
  msgstr ""
2959
 
2960
+ #: templates/admin/dashboard/dashboard.inc.php:521
2961
  msgid ""
2962
  "A wpDataTables addon which allows showing additional details for a specific "
2963
  "row in a popup or a separate page or post."
2964
  msgstr ""
2965
 
2966
+ #: templates/admin/dashboard/dashboard.inc.php:527
2967
+ #: templates/admin/dashboard/dashboard.inc.php:554
2968
+ #: templates/admin/dashboard/dashboard.inc.php:580
2969
+ #: templates/admin/dashboard/dashboard.inc.php:607
2970
+ #: templates/admin/dashboard/dashboard.inc.php:633
2971
+ #: templates/admin/dashboard/dashboard.inc.php:666
2972
  msgid "Learn More"
2973
  msgstr ""
2974
 
2975
+ #: templates/admin/dashboard/dashboard.inc.php:548
2976
  msgid ""
2977
  "An add-on for wpDataTables that provides powerful filtering features: "
2978
  "cascade filtering, applying filters on button click, hide table before "
2979
  "filtering."
2980
  msgstr ""
2981
 
2982
+ #: templates/admin/dashboard/dashboard.inc.php:644
2983
  msgid "Need free booking plugin?"
2984
  msgstr ""
2985
 
2986
+ #: templates/admin/dashboard/dashboard.inc.php:653
2987
  msgid "Appointments and Events WordPress Booking Plugin"
2988
  msgstr ""
2989
 
2990
+ #: templates/admin/dashboard/dashboard.inc.php:656
2991
  msgid ""
2992
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2993
  "set up a fully-featured automated booking system on your WordPress website "
2998
  "each month."
2999
  msgstr ""
3000
 
3001
+ #: templates/admin/dashboard/dashboard.inc.php:659
3002
  msgid "Rating: 4.3 - ‎97 reviews"
3003
  msgstr ""
3004
 
3005
+ #: templates/admin/dashboard/dashboard.inc.php:662
3006
  msgid "Free Download"
3007
  msgstr ""
3008
 
3009
+ #: templates/admin/dashboard/dashboard.inc.php:677
3010
  #: templates/admin/getting-started/getting_started.inc.php:184
3011
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
3012
  #: templates/admin/support/support.inc.php:78
3013
  #: templates/admin/system-info/system_info.inc.php:509
3014
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3015
  msgid "Made by"
3016
  msgstr ""
3017
 
3018
+ #: templates/admin/dashboard/dashboard.inc.php:685
3019
  #: templates/admin/getting-started/getting_started.inc.php:192
3020
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3021
  #: templates/admin/support/support.inc.php:45
3022
  #: templates/admin/support/support.inc.php:86
3023
  #: templates/admin/system-info/system_info.inc.php:517
3027
  msgid "Documentation"
3028
  msgstr "wpDataTables documentatie"
3029
 
3030
+ #: templates/admin/dashboard/dashboard.inc.php:689
3031
  #: templates/admin/getting-started/getting_started.inc.php:196
3032
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3033
  #: templates/admin/support/support.inc.php:24
3034
  #: templates/admin/support/support.inc.php:90
3035
  #: templates/admin/system-info/system_info.inc.php:521
3155
  msgstr ""
3156
 
3157
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3158
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3159
  msgid "Go Premium Now"
3160
  msgstr ""
3161
 
3168
  msgstr ""
3169
 
3170
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3171
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3172
  msgid "Premium"
3173
  msgstr ""
3174
 
3198
 
3199
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3200
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3201
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3202
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3203
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3204
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
3205
  msgid "NEW!"
3206
  msgstr ""
3207
 
3218
 
3219
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3220
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3221
+ #: templates/admin/table-settings/table_settings_block.inc.php:643
3222
+ #: templates/admin/table-settings/table_settings_block.inc.php:651
3223
  msgid "Sorting"
3224
  msgstr ""
3225
 
3226
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3227
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3228
+ #: templates/admin/table-settings/table_settings_block.inc.php:504
3229
+ #: templates/admin/table-settings/table_settings_block.inc.php:512
3230
+ #: templates/admin/table-settings/table_settings_block.inc.php:1387
3231
  msgid "Pagination"
3232
  msgstr ""
3233
 
3254
  msgstr ""
3255
 
3256
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3257
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3258
  msgid "Limited"
3259
  msgstr ""
3260
 
3262
  msgid "Some options are not available."
3263
  msgstr ""
3264
 
3265
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3266
+ msgid "Table Customization"
3267
  msgstr ""
3268
 
3269
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3270
+ msgid "Creating tables via Google Sheet API"
3271
+ msgstr ""
3272
+
3273
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3274
  msgid "Creating tables from Private Google Spreadsheet"
3275
  msgstr ""
3276
 
3277
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3278
  msgid "Support"
3279
  msgstr ""
3280
 
3281
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3282
  msgid "Response time is slow and can be up to 5 business days."
3283
  msgstr ""
3284
 
3285
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3286
  msgid ""
3287
  "* Please note that wpDataTables add-ons are not included in premium version "
3288
  "of plugin."
3289
  msgstr ""
3290
 
3291
  #: templates/admin/settings/settings.inc.php:33
3292
+ #: templates/admin/settings/settings.inc.php:95
3293
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3294
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3295
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3296
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3297
  #: templates/admin/table-settings/table_preview_block.inc.php:89
 
3298
  #: templates/admin/table-settings/table_settings_block.inc.php:48
3299
+ #: templates/admin/table-settings/table_settings_block.inc.php:49
3300
  msgid "Save Changes"
3301
  msgstr ""
3302
 
3321
  msgid "Custom JS and CSS"
3322
  msgstr "Custom JS en CSS"
3323
 
3324
+ #: templates/admin/settings/settings.inc.php:62
3325
+ msgid "Google Spreadsheet API settings"
3326
+ msgstr ""
3327
+
3328
+ #: templates/admin/settings/settings.inc.php:92 templates/settings.inc.php:434
3329
  msgid "Reset colors and fonts to default"
3330
  msgstr "Reset kleuren en fonts naar standaard"
3331
 
3332
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3333
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
3334
+ #: templates/admin/table-settings/table_settings_block.inc.php:1367
3335
+ #: templates/admin/table-settings/table_settings_block.inc.php:1461
3336
  msgid "Font"
3337
  msgstr ""
3338
 
3339
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
3340
+ #: templates/admin/table-settings/table_settings_block.inc.php:1464
3341
  #: templates/settings.inc.php:428
3342
  msgid ""
3343
  "This font will be used in rendered tables. Leave blank not to override "
3347
  "thema instellingen te gebruiken"
3348
 
3349
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
3350
+ #: templates/admin/table-settings/table_settings_block.inc.php:1486
3351
  #, fuzzy
3352
  msgid "Define the font size"
3353
  msgstr "In de footer"
3355
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3356
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3357
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
3358
+ #: templates/admin/table-settings/table_settings_block.inc.php:1519
3359
+ #: templates/admin/table-settings/table_settings_block.inc.php:1594
3360
  #, fuzzy
3361
  msgid "Font color"
3362
  msgstr "Tabel font kleur"
3363
 
3364
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
3365
+ #: templates/admin/table-settings/table_settings_block.inc.php:1522
3366
  #, fuzzy
3367
  msgid "This color is used for the main font in table cells."
3368
  msgstr "Deze kleur wordt gebruikt voor de hoofdfont in de tabelcellen"
3369
 
3370
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3371
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
3372
+ #: templates/admin/table-settings/table_settings_block.inc.php:1371
3373
  msgid "Header"
3374
  msgstr ""
3375
 
3376
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
3377
+ #: templates/admin/table-settings/table_settings_block.inc.php:1552
3378
  #, fuzzy
3379
  msgid "The color is used for background of the table header."
3380
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de tabel header"
3381
 
3382
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
3383
+ #: templates/admin/table-settings/table_settings_block.inc.php:1574
3384
  #, fuzzy
3385
  msgid "This color is used for the border in the table header."
3386
  msgstr "Deze kleur wordt gebruikt voor de border rondom de tabel header"
3387
 
3388
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
3389
+ #: templates/admin/table-settings/table_settings_block.inc.php:1597
3390
  #, fuzzy
3391
  msgid "This color is used for the font in the table header."
3392
  msgstr "Deze kleur wordt gebruikt voor de font in de tabel header"
3393
 
3394
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
3395
+ #: templates/admin/table-settings/table_settings_block.inc.php:1616
3396
  #, fuzzy
3397
  msgid "Active and hover color\t"
3398
  msgstr "Header actef en hover kleur"
3399
 
3400
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
3401
+ #: templates/admin/table-settings/table_settings_block.inc.php:1619
3402
  #, fuzzy
3403
  msgid ""
3404
  "This color is used when you hover the mouse above the table header, or when "
3412
  msgstr ""
3413
 
3414
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
3415
+ #: templates/admin/table-settings/table_settings_block.inc.php:1647
3416
  #, fuzzy
3417
  msgid "Inner border"
3418
  msgstr "Binnenste borderkleur van de tabel"
3419
 
3420
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
3421
+ #: templates/admin/table-settings/table_settings_block.inc.php:1650
3422
  #, fuzzy
3423
  msgid "This color is used for the inner border in the table between cells."
3424
  msgstr ""
3426
  "cellen in"
3427
 
3428
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
3429
+ #: templates/admin/table-settings/table_settings_block.inc.php:1670
3430
  #, fuzzy
3431
  msgid "Outer border"
3432
  msgstr "Tabel buitenste border kleur"
3433
 
3434
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
3435
+ #: templates/admin/table-settings/table_settings_block.inc.php:1673
3436
  #, fuzzy
3437
  msgid "This color is used for the outer border of the whole table body."
3438
  msgstr ""
3439
  "Deze kleur wordt gebruikt voor de buitenste border, om de hele tabel heen"
3440
 
3441
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
3442
+ #: templates/admin/table-settings/table_settings_block.inc.php:1693
3443
  #, fuzzy
3444
  msgid "Table borders"
3445
  msgstr "Tabel tools"
3446
 
3447
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
3448
+ #: templates/admin/table-settings/table_settings_block.inc.php:1696
3449
  msgid "When this is checked, borders in table will be removed "
3450
  msgstr ""
3451
 
3452
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
3453
+ #: templates/admin/table-settings/table_settings_block.inc.php:1702
3454
  msgid "Remove borders in table"
3455
  msgstr ""
3456
 
3457
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
3458
+ #: templates/admin/table-settings/table_settings_block.inc.php:1707
3459
  #, fuzzy
3460
  msgid "Header border"
3461
  msgstr "Header border kleur"
3462
 
3463
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
3464
+ #: templates/admin/table-settings/table_settings_block.inc.php:1710
3465
  msgid "When this is checked,borders in header will be removed "
3466
  msgstr ""
3467
 
3470
  msgstr ""
3471
 
3472
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
3473
+ #: templates/admin/table-settings/table_settings_block.inc.php:1379
3474
  msgid "Row color"
3475
  msgstr ""
3476
 
3477
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
3478
+ #: templates/admin/table-settings/table_settings_block.inc.php:1729
3479
  #, fuzzy
3480
  msgid "Even row background"
3481
  msgstr "Even rijen achtergrond kleur"
3482
 
3483
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
3484
+ #: templates/admin/table-settings/table_settings_block.inc.php:1732
3485
  #, fuzzy
3486
  msgid "This color is used for for background in even rows."
3487
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de even rijen"
3488
 
3489
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
3490
+ #: templates/admin/table-settings/table_settings_block.inc.php:1751
3491
  #, fuzzy
3492
  msgid "Odd row background"
3493
  msgstr "Oneven rijen achtergrond kleur"
3494
 
3495
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
3496
+ #: templates/admin/table-settings/table_settings_block.inc.php:1754
3497
  #, fuzzy
3498
  msgid "This color is used for for background in odd rows."
3499
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de oneven rijen"
3500
 
3501
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
3502
+ #: templates/admin/table-settings/table_settings_block.inc.php:1773
3503
  #, fuzzy
3504
  msgid "Hover row"
3505
  msgstr "Hover rij kleur"
3506
 
3507
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
3508
+ #: templates/admin/table-settings/table_settings_block.inc.php:1776
3509
  #, fuzzy
3510
  msgid ""
3511
  "This color is used for to highlight the row when you hover your mouse above "
3515
  "erboven houdt"
3516
 
3517
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
3518
+ #: templates/admin/table-settings/table_settings_block.inc.php:1795
3519
  #, fuzzy
3520
  msgid "Background for selected rows"
3521
  msgstr "Achtergrond kleur voor geselecteerde rijen"
3522
 
3523
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
3524
+ #: templates/admin/table-settings/table_settings_block.inc.php:1798
3525
  #, fuzzy
3526
  msgid "This color is used for background in selected rows."
3527
  msgstr ""
3528
  "Deze kleur wordt gebruikt voor de achtergrond van de geselecteerde rijen"
3529
 
3530
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
3531
+ #: templates/admin/table-settings/table_settings_block.inc.php:1383
3532
  msgid "Cell color"
3533
  msgstr ""
3534
 
3535
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
3536
+ #: templates/admin/table-settings/table_settings_block.inc.php:1826
3537
  #, fuzzy
3538
  msgid "Sorted columns, even rows"
3539
  msgstr "Celkleur in actieve (gesorteerde) klommen voor even rijen"
3540
 
3541
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
3542
+ #: templates/admin/table-settings/table_settings_block.inc.php:1829
3543
  #, fuzzy
3544
  msgid ""
3545
  "This color is used for background in cells which are in the active columns "
3549
  "kolommen (deze die voor het sorteren worden gebruikt) in even rijen"
3550
 
3551
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
3552
+ #: templates/admin/table-settings/table_settings_block.inc.php:1849
3553
  msgid "Sorted columns, odd rows"
3554
  msgstr ""
3555
 
3556
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
3557
+ #: templates/admin/table-settings/table_settings_block.inc.php:1852
3558
  #, fuzzy
3559
  msgid ""
3560
  "This color is used for background in cells which are in the active columns "
3674
  "plugin popups"
3675
 
3676
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
3677
+ #: templates/admin/table-settings/table_settings_block.inc.php:1882
3678
  #, fuzzy
3679
  msgid "This color is used for the background of the pagination"
3680
  msgstr "Deze kleur wordt gebruikt voor de achtergrondkleur van de Buttons"
3681
 
3682
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
3683
+ #: templates/admin/table-settings/table_settings_block.inc.php:1905
3684
  #, fuzzy
3685
  msgid "This color is used for the color of the links in the pagination."
3686
  msgstr ""
3687
  "Deze kleur wordt gebruikt voor de buitenste border, om de hele tabel heen"
3688
 
3689
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
3690
+ #: templates/admin/table-settings/table_settings_block.inc.php:1924
3691
  #, fuzzy
3692
  msgid "Current page background color"
3693
  msgstr "Header achtergrond kleur"
3694
 
3695
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
3696
+ #: templates/admin/table-settings/table_settings_block.inc.php:1927
3697
  #, fuzzy
3698
  msgid "The color is used for background of the current page"
3699
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de tabel header"
3700
 
3701
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
3702
+ #: templates/admin/table-settings/table_settings_block.inc.php:1948
3703
  msgid "Current page color"
3704
  msgstr ""
3705
 
3706
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
3707
+ #: templates/admin/table-settings/table_settings_block.inc.php:1951
3708
  #, fuzzy
3709
  msgid "This color is used for the color of the current page."
3710
  msgstr "Deze kleur wordt gebruikt voor de border rondom de tabel header"
3711
 
3712
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
3713
+ #: templates/admin/table-settings/table_settings_block.inc.php:1971
3714
  #, fuzzy
3715
  msgid "Other pages hover background color"
3716
  msgstr "Header achtergrond kleur"
3717
 
3718
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
3719
+ #: templates/admin/table-settings/table_settings_block.inc.php:1974
3720
  #, fuzzy
3721
  msgid ""
3722
  "This background color is used when you hover the mouse above the other pages"
3725
  "of wanneer je een kolom kiest"
3726
 
3727
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
3728
+ #: templates/admin/table-settings/table_settings_block.inc.php:1995
3729
  #, fuzzy
3730
  msgid "Other pages hover color"
3731
  msgstr "Header actef en hover kleur"
3732
 
3733
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
3734
+ #: templates/admin/table-settings/table_settings_block.inc.php:1998
3735
  #, fuzzy
3736
  msgid "This color is used when you hover the mouse above the other pages."
3737
  msgstr ""
3750
  msgstr ""
3751
 
3752
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
3753
+ #: templates/admin/table-settings/table_settings_block.inc.php:2025
3754
  #: templates/settings.inc.php:463
3755
  msgid "Custom wpDataTables CSS"
3756
  msgstr ""
3771
  msgstr ""
3772
 
3773
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
3774
+ #: templates/admin/table-settings/table_settings_block.inc.php:1407
3775
  #: templates/settings.inc.php:45
3776
  msgid "Interface language"
3777
  msgstr "Interface taal"
3778
 
3779
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
3780
+ #: templates/admin/table-settings/table_settings_block.inc.php:1410
3781
  #, fuzzy
3782
  msgid "Pick the language which will be used in tables interface."
3783
  msgstr "Kies de taal welke in de tabel zijn interface wordt gebruikt"
3784
 
3785
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
3786
+ #: templates/admin/table-settings/table_settings_block.inc.php:1417
3787
  msgid "English (default)"
3788
  msgstr ""
3789
 
3797
  msgid "Pick the date format to use in date column type."
3798
  msgstr "Kies de datumformat welke in de datumkolom wordt gebruikt"
3799
 
3800
+ #: templates/admin/settings/tabs/main_plugin_settings.php:74
3801
  #: templates/settings.inc.php:119
3802
  #, fuzzy
3803
  msgid "Time format"
3804
  msgstr "Nummer format"
3805
 
3806
+ #: templates/admin/settings/tabs/main_plugin_settings.php:76
3807
  #, fuzzy
3808
  msgid "Pick the time format to use in datetime and time column type."
3809
  msgstr "Kies de datumformat welke in de datumkolom wordt gebruikt"
3810
 
3811
+ #: templates/admin/settings/tabs/main_plugin_settings.php:91
3812
  msgid "Parse shortcodes"
3813
  msgstr ""
3814
 
3815
+ #: templates/admin/settings/tabs/main_plugin_settings.php:93
3816
  msgid ""
3817
  "If the option is enabled, you can use shortcodes of other plugins for "
3818
  "generating content."
3819
  msgstr ""
3820
 
3821
+ #: templates/admin/settings/tabs/main_plugin_settings.php:97
3822
  #, fuzzy
3823
  msgid "Parse shortcodes in strings"
3824
  msgstr "Data bron en hoofd instellingen"
3825
 
3826
+ #: templates/admin/settings/tabs/main_plugin_settings.php:104
3827
+ #: templates/admin/table-settings/table_settings_block.inc.php:1430
3828
  #: templates/settings.inc.php:74
3829
  msgid "Base skin"
3830
  msgstr "Standaard skin"
3831
 
3832
+ #: templates/admin/settings/tabs/main_plugin_settings.php:106
3833
+ #: templates/admin/table-settings/table_settings_block.inc.php:1433
3834
  #, fuzzy
3835
  msgid "Choose the base skin for the plugin."
3836
  msgstr "Kies een skin voor de plugin"
3837
 
3838
+ #: templates/admin/settings/tabs/main_plugin_settings.php:112
3839
+ #: templates/admin/table-settings/table_settings_block.inc.php:1440
3840
  msgid "Material"
3841
  msgstr ""
3842
 
3843
+ #: templates/admin/settings/tabs/main_plugin_settings.php:113
3844
+ #: templates/admin/table-settings/table_settings_block.inc.php:1441
3845
  msgid "Light"
3846
  msgstr ""
3847
 
3848
+ #: templates/admin/settings/tabs/main_plugin_settings.php:114
3849
+ #: templates/admin/table-settings/table_settings_block.inc.php:1442
3850
  msgid "Graphite"
3851
  msgstr ""
3852
 
3853
+ #: templates/admin/settings/tabs/main_plugin_settings.php:115
3854
+ #: templates/admin/table-settings/table_settings_block.inc.php:1443
3855
  msgid "Aqua"
3856
  msgstr ""
3857
 
3858
+ #: templates/admin/settings/tabs/main_plugin_settings.php:116
3859
+ #: templates/admin/table-settings/table_settings_block.inc.php:1444
3860
  msgid "Purple"
3861
  msgstr ""
3862
 
3863
+ #: templates/admin/settings/tabs/main_plugin_settings.php:117
3864
+ #: templates/admin/table-settings/table_settings_block.inc.php:1445
3865
  msgid "Dark"
3866
  msgstr ""
3867
 
3868
+ #: templates/admin/settings/tabs/main_plugin_settings.php:125
3869
  #: templates/settings.inc.php:131
3870
  msgid "Number format"
3871
  msgstr "Nummer format"
3872
 
3873
+ #: templates/admin/settings/tabs/main_plugin_settings.php:127
3874
  #: templates/settings.inc.php:138
3875
  msgid "Pick the number format (thousands and decimals separator)"
3876
  msgstr "Kies de nummerformat (duizenden en decimalen scheider)"
3877
 
3878
+ #: templates/admin/settings/tabs/main_plugin_settings.php:144
3879
  #: templates/settings.inc.php:86
3880
  msgid "Render advanced filter"
3881
  msgstr "Render geavanceerd filter"
3882
 
3883
+ #: templates/admin/settings/tabs/main_plugin_settings.php:146
3884
  #, fuzzy
3885
  msgid ""
3886
  "Choose where you would like to render the advanced filter for tables where "
3889
  "Kies waar je wilt dat het geavanceerde filter voor de tabel wordt gerenderd "
3890
  "als deze geactiveerd is"
3891
 
3892
+ #: templates/admin/settings/tabs/main_plugin_settings.php:152
3893
  #: templates/settings.inc.php:90
3894
  msgid "In the header"
3895
  msgstr "In de header"
3896
 
3897
+ #: templates/admin/settings/tabs/main_plugin_settings.php:153
3898
  #: templates/settings.inc.php:91
3899
  msgid "In the footer"
3900
  msgstr "In de footer"
3901
 
3902
+ #: templates/admin/settings/tabs/main_plugin_settings.php:161
3903
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3904
  #: templates/settings.inc.php:143
3905
  msgid "Decimal places"
3906
  msgstr "Decimaal plaatsen"
3907
 
3908
+ #: templates/admin/settings/tabs/main_plugin_settings.php:163
3909
  #, fuzzy
3910
  msgid "Define the amount of decimal places for the float numbers."
3911
  msgstr "Kies het aantal decimaalplaatsen voor de zwevende getallen"
3912
 
3913
+ #: templates/admin/settings/tabs/main_plugin_settings.php:188
3914
  msgid "CSV delimiter"
3915
  msgstr ""
3916
 
3917
+ #: templates/admin/settings/tabs/main_plugin_settings.php:190
3918
  msgid "Pick the CSV delimiter"
3919
  msgstr ""
3920
 
3921
+ #: templates/admin/settings/tabs/main_plugin_settings.php:209
3922
  msgid "Tables sorting direction in admin page"
3923
  msgstr ""
3924
 
3925
+ #: templates/admin/settings/tabs/main_plugin_settings.php:211
3926
  msgid ""
3927
  "Here you can set sorting direction by id for browse tables and charts. By "
3928
  "default is ascending order."
3929
  msgstr ""
3930
 
3931
+ #: templates/admin/settings/tabs/main_plugin_settings.php:217
3932
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3933
  #: templates/edit_table.inc.php:663
3934
  msgid "Ascending"
3935
  msgstr "Oplopend"
3936
 
3937
+ #: templates/admin/settings/tabs/main_plugin_settings.php:218
3938
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3939
  #: templates/edit_table.inc.php:665
3940
  msgid "Descending"
3941
  msgstr "Aflopend"
3942
 
3943
+ #: templates/admin/settings/tabs/main_plugin_settings.php:229
3944
  #: templates/settings.inc.php:171
3945
  msgid "Tablet width"
3946
  msgstr "Tablet breedte"
3947
 
3948
+ #: templates/admin/settings/tabs/main_plugin_settings.php:231
3949
  #: templates/settings.inc.php:175
3950
  msgid ""
3951
  "Here you can specify width of the screen (in pixels) that will be treated as "
3952
  "a tablet. You can set it wider if you want responsive effect on desktops."
3953
  msgstr ""
3954
 
3955
+ #: templates/admin/settings/tabs/main_plugin_settings.php:255
3956
  #: templates/settings.inc.php:181
3957
  msgid "Mobile width"
3958
  msgstr "Mobiele breedte"
3959
 
3960
+ #: templates/admin/settings/tabs/main_plugin_settings.php:257
3961
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3962
  msgstr ""
3963
 
3964
+ #: templates/admin/settings/tabs/main_plugin_settings.php:282
3965
  #: templates/settings.inc.php:61
3966
  msgid "Tables per admin page"
3967
  msgstr "Tabellen per adminpagina"
3968
 
3969
+ #: templates/admin/settings/tabs/main_plugin_settings.php:284
3970
  #, fuzzy
3971
  msgid "How many tables to show in the browse page."
3972
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
3973
 
3974
+ #: templates/admin/settings/tabs/main_plugin_settings.php:300
3975
  #, fuzzy
3976
  msgid "Align numbers"
3977
  msgstr "Sorteer nummers aan de rechter kant"
3978
 
3979
+ #: templates/admin/settings/tabs/main_plugin_settings.php:302
3980
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3981
  msgstr ""
3982
 
3983
+ #: templates/admin/settings/tabs/main_plugin_settings.php:306
3984
  #: templates/settings.inc.php:161
3985
  msgid "Align numbers to the right"
3986
  msgstr ""
3987
 
3988
+ #: templates/admin/settings/tabs/main_plugin_settings.php:316
3989
  msgid "Sum functions label"
3990
  msgstr ""
3991
 
3992
+ #: templates/admin/settings/tabs/main_plugin_settings.php:318
3993
  msgid ""
3994
  "Enter a label that will be used for Sum functions. If you leave it blank "
3995
  "default label will be Σ ="
3996
  msgstr ""
3997
 
3998
+ #: templates/admin/settings/tabs/main_plugin_settings.php:336
3999
  msgid "Average functions label"
4000
  msgstr ""
4001
 
4002
+ #: templates/admin/settings/tabs/main_plugin_settings.php:338
4003
  msgid ""
4004
  "Enter a label that will be used for Average functions. If you leave it blank "
4005
  "default label will be Avg ="
4006
  msgstr ""
4007
 
4008
+ #: templates/admin/settings/tabs/main_plugin_settings.php:361
4009
  msgid "Minimum functions label"
4010
  msgstr ""
4011
 
4012
+ #: templates/admin/settings/tabs/main_plugin_settings.php:363
4013
  msgid ""
4014
  "Enter a label that will be used for Minimum functions. If you leave it blank "
4015
  "default label will be Min ="
4016
  msgstr ""
4017
 
4018
+ #: templates/admin/settings/tabs/main_plugin_settings.php:381
4019
  msgid "Maximum functions label"
4020
  msgstr ""
4021
 
4022
+ #: templates/admin/settings/tabs/main_plugin_settings.php:383
4023
  msgid ""
4024
  "Enter a label that will be used for Maximum functions. If you leave it blank "
4025
  "default label will be Max ="
4026
  msgstr ""
4027
 
4028
+ #: templates/admin/settings/tabs/main_plugin_settings.php:409
4029
  msgid "Include full bootstrap front-end"
4030
  msgstr ""
4031
 
4032
+ #: templates/admin/settings/tabs/main_plugin_settings.php:411
4033
+ #: templates/admin/settings/tabs/main_plugin_settings.php:422
4034
  msgid ""
4035
  "It is recommended to uncheck this option if bootstrap.js is already included "
4036
  "in one of the theme files. Unchecked option means that there is still "
4037
  "bootstrap.js included just in noconflict mode which should prevent errors."
4038
  msgstr ""
4039
 
4040
+ #: templates/admin/settings/tabs/main_plugin_settings.php:415
4041
  msgid "Include full bootstrap.js on the front-end"
4042
  msgstr ""
4043
 
4044
+ #: templates/admin/settings/tabs/main_plugin_settings.php:420
4045
  msgid "Include full bootstrap back-end"
4046
  msgstr ""
4047
 
4048
+ #: templates/admin/settings/tabs/main_plugin_settings.php:426
4049
  msgid "Include full bootstrap.js on the back-end"
4050
  msgstr ""
4051
 
4052
+ #: templates/admin/settings/tabs/main_plugin_settings.php:434
4053
+ #: templates/admin/settings/tabs/main_plugin_settings.php:440
4054
  #: templates/settings.inc.php:32
4055
  msgid "Show plugin credentials below tables"
4056
  msgstr ""
4057
 
4058
+ #: templates/admin/settings/tabs/main_plugin_settings.php:436
4059
  #: templates/settings.inc.php:32
4060
  msgid ""
4061
  "If you want to support our project, please, keep this checkbox as checked"
4062
  msgstr ""
4063
 
4064
+ #: templates/admin/settings/tabs/main_plugin_settings.php:445
4065
  msgid "Prevent deleting tables in database"
4066
  msgstr ""
4067
 
4068
+ #: templates/admin/settings/tabs/main_plugin_settings.php:447
4069
  msgid ""
4070
  "It is recommended to leave this option as checked if you what to keep your "
4071
  "tables in database after deleting plugin from Plugins page. If you uncheck "
4072
  "this option, it will be deleted all tables in database after deleting plugin"
4073
  msgstr ""
4074
 
4075
+ #: templates/admin/settings/tabs/main_plugin_settings.php:451
4076
  msgid ""
4077
  "Prevent deleting tables in database after deleting plugin from Plugins page"
4078
  msgstr ""
4079
 
4080
+ #: templates/admin/settings/tabs/main_plugin_settings.php:458
4081
  msgid "Remove Getting Started page"
4082
  msgstr ""
4083
 
4084
+ #: templates/admin/settings/tabs/main_plugin_settings.php:460
4085
  msgid ""
4086
  "Check this option if you want to remove Getting Started page from admin menu."
4087
  msgstr ""
4088
 
4089
+ #: templates/admin/settings/tabs/main_plugin_settings.php:464
4090
  msgid "Remove \"Getting Started\" page from admin menu."
4091
  msgstr ""
4092
 
4360
  msgid "Column header"
4361
  msgstr "Kolomgrafiek"
4362
 
 
 
 
 
4363
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4364
  msgid "Insert after"
4365
  msgstr ""
4399
 
4400
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4401
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4402
+ #: templates/admin/table-settings/table_settings_block.inc.php:64
4403
  #, fuzzy
4404
  msgid "Display"
4405
  msgstr "Display lengte"
4413
  msgstr ""
4414
 
4415
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4416
+ #: templates/admin/table-settings/table_settings_block.inc.php:72
4417
  #, fuzzy
4418
  msgid "Editing"
4419
  msgstr "Aanpassen"
4864
  msgstr "Geavanceerde filtering"
4865
 
4866
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4867
+ #: templates/admin/table-settings/table_settings_block.inc.php:682
4868
  msgid "Global search"
4869
  msgstr ""
4870
 
5427
  msgstr ""
5428
 
5429
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5430
+ #: templates/admin/table-settings/table_settings_block.inc.php:211
5431
  #: templates/edit_table.inc.php:58
5432
  msgid "Table title"
5433
  msgstr "Tabel titel"
5434
 
5435
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5436
+ #: templates/admin/table-settings/table_settings_block.inc.php:219
5437
  #: templates/edit_table.inc.php:67
5438
  #, fuzzy
5439
  msgid "Show table title"
5440
  msgstr "Nieuwe tabelnaam"
5441
 
5442
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5443
+ #: templates/admin/table-settings/table_settings_block.inc.php:226
5444
  msgid ""
5445
  "Enable this to show the table title in a h3 block above the table, disable "
5446
  "to hide."
5447
  msgstr ""
5448
 
5449
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5450
+ #: templates/admin/table-settings/table_settings_block.inc.php:234
5451
  #, fuzzy
5452
  msgid "Show table title on the page"
5453
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
5515
  msgstr ""
5516
 
5517
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5518
+ #: templates/admin/table-settings/table_settings_block.inc.php:378
5519
  msgid "Scrollable table"
5520
  msgstr ""
5521
 
5522
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5523
+ #: templates/admin/table-settings/table_settings_block.inc.php:385
5524
  msgid "Enable this to enable a horizontal scrollbar below the table."
5525
  msgstr ""
5526
 
5527
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5528
+ #: templates/admin/table-settings/table_settings_block.inc.php:394
5529
  msgid "Show a horizontal scrollbar"
5530
  msgstr ""
5531
 
5532
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5533
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5534
+ #: templates/admin/table-settings/table_settings_block.inc.php:438
5535
+ #: templates/admin/table-settings/table_settings_block.inc.php:446
5536
  #, fuzzy
5537
  msgid "Limit table width"
5538
  msgstr "Limiteer tabel layout"
5539
 
5540
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5541
+ #: templates/admin/table-settings/table_settings_block.inc.php:453
5542
  msgid "Enable this to restrict table width to page width."
5543
  msgstr ""
5544
 
5545
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5546
+ #: templates/admin/table-settings/table_settings_block.inc.php:462
5547
  msgid "Limit table width to page width"
5548
  msgstr ""
5549
 
5550
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5551
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5552
+ #: templates/admin/table-settings/table_settings_block.inc.php:469
5553
+ #: templates/admin/table-settings/table_settings_block.inc.php:477
5554
  #: templates/edit_table.inc.php:392
5555
  msgid "Word wrap"
5556
  msgstr "Woord wrap"
5557
 
5558
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5559
+ #: templates/admin/table-settings/table_settings_block.inc.php:484
5560
  msgid ""
5561
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5562
  "height."
5563
  msgstr ""
5564
 
5565
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5566
+ #: templates/admin/table-settings/table_settings_block.inc.php:492
5567
  msgid "Wrap words to newlines"
5568
  msgstr ""
5569
 
5628
  msgid "EXCEL-LIKE"
5629
  msgstr ""
5630
 
5631
+ #: templates/admin/table-settings/table_settings_block.inc.php:68
5632
  #, fuzzy
5633
  msgid "Sorting and filtering"
5634
  msgstr "Geavanceerde filtering"
5635
 
5636
+ #: templates/admin/table-settings/table_settings_block.inc.php:76
5637
+ #: templates/admin/table-settings/table_settings_block.inc.php:1009
5638
  #, fuzzy
5639
  msgid "Table Tools"
5640
  msgstr "Tabel tools"
5641
 
5642
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
5643
+ msgid " Customize"
5644
+ msgstr ""
5645
+
5646
+ #: templates/admin/table-settings/table_settings_block.inc.php:103
5647
  msgid ""
5648
  "Please choose a type of the input data source - it can be a MySQL query, a "
5649
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5650
  msgstr ""
5651
 
5652
+ #: templates/admin/table-settings/table_settings_block.inc.php:110
5653
  #, fuzzy
5654
  msgid "Select a data source type"
5655
  msgstr "Selecteer een tabel type..."
5656
 
5657
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
5658
  msgid "SQL query "
5659
  msgstr ""
5660
 
5661
+ #: templates/admin/table-settings/table_settings_block.inc.php:113
5662
  #: templates/edit_table.inc.php:85
5663
  msgid "CSV file"
5664
  msgstr "CSV bestand"
5665
 
5666
+ #: templates/admin/table-settings/table_settings_block.inc.php:114
5667
  #: templates/edit_table.inc.php:86
5668
  msgid "Excel file"
5669
  msgstr "Excel bestand"
5670
 
5671
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
5672
  msgid "Google Spreadsheet "
5673
  msgstr ""
5674
 
5675
+ #: templates/admin/table-settings/table_settings_block.inc.php:118
5676
  #: templates/edit_table.inc.php:89
5677
  msgid "XML file"
5678
  msgstr "XML bestand"
5679
 
5680
+ #: templates/admin/table-settings/table_settings_block.inc.php:119
5681
  #: templates/edit_table.inc.php:90
5682
  msgid "JSON file"
5683
  msgstr "JSON bestand"
5684
 
5685
+ #: templates/admin/table-settings/table_settings_block.inc.php:133
5686
  msgid ""
5687
  "Upload your file or provide the full URL here. For CSV or Excel input "
5688
  "sources only URLs or paths from same domain are supported. For Google "
5690
  "the URL."
5691
  msgstr ""
5692
 
5693
+ #: templates/admin/table-settings/table_settings_block.inc.php:139
5694
  msgid "Paste URL or path, or click Browse to choose"
5695
  msgstr ""
5696
 
5697
+ #: templates/admin/table-settings/table_settings_block.inc.php:143
5698
  msgid "Browse..."
5699
  msgstr ""
5700
 
5701
+ #: templates/admin/table-settings/table_settings_block.inc.php:155
5702
  msgid ""
5703
  "If it is turned on, all sorting, filtering, pagination and other data "
5704
  "interaction will be done by MySQL server. This feature is recommended if you "
5705
  "have more than 2000-3000 rows. Mandatory for editable tables."
5706
  msgstr ""
5707
 
5708
+ #: templates/admin/table-settings/table_settings_block.inc.php:162
5709
  #, fuzzy
5710
  msgid "Enable server-side processing"
5711
  msgstr "Server-side verwerking"
5712
 
5713
+ #: templates/admin/table-settings/table_settings_block.inc.php:177
5714
  msgid "MySQL Query"
5715
  msgstr ""
5716
 
5717
+ #: templates/admin/table-settings/table_settings_block.inc.php:179
5718
  msgid ""
5719
  "Enter the text of your MySQL query here - please make sure it returns actual "
5720
  "data first. You can use a number of placeholders to make the dataset in the "
5722
  "with different shortcodes."
5723
  msgstr ""
5724
 
5725
+ #: templates/admin/table-settings/table_settings_block.inc.php:186
5726
  #: templates/edit_table.inc.php:292
5727
  msgid "Auto-refresh"
5728
  msgstr ""
5729
 
5730
+ #: templates/admin/table-settings/table_settings_block.inc.php:188
5731
  msgid ""
5732
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5733
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5734
  "refresh."
5735
  msgstr ""
5736
 
5737
+ #: templates/admin/table-settings/table_settings_block.inc.php:193
5738
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5739
  msgstr ""
5740
 
5741
+ #: templates/admin/table-settings/table_settings_block.inc.php:242
5742
  #, fuzzy
5743
  msgid "Responsiveness"
5744
  msgstr "Responsive"
5745
 
5746
+ #: templates/admin/table-settings/table_settings_block.inc.php:250
5747
  #, fuzzy
5748
  msgid "Responsive design"
5749
  msgstr "Responsive"
5750
 
5751
+ #: templates/admin/table-settings/table_settings_block.inc.php:257
5752
  msgid "Enable this to allow responsiveness in the table."
5753
  msgstr ""
5754
 
5755
+ #: templates/admin/table-settings/table_settings_block.inc.php:258
5756
  msgid ""
5757
  "Please do not forget to define which columns will be hidden on mobiles and "
5758
  "tablets in the column settings!"
5759
  msgstr ""
5760
 
5761
+ #: templates/admin/table-settings/table_settings_block.inc.php:269
5762
  msgid "Allow collapsing on mobiles and tablets"
5763
  msgstr ""
5764
 
5765
+ #: templates/admin/table-settings/table_settings_block.inc.php:277
5766
  msgid "Hide until loaded"
5767
  msgstr ""
5768
 
5769
+ #: templates/admin/table-settings/table_settings_block.inc.php:279
5770
  msgid ""
5771
  "Enable to make whole table hidden until it is initialized to prevent "
5772
  "unformatted data flashing"
5773
  msgstr ""
5774
 
5775
+ #: templates/admin/table-settings/table_settings_block.inc.php:284
5776
  #, fuzzy
5777
  msgid "Hide the table before it is fully loaded"
5778
  msgstr "Verberg tabel tot de pagina volledig geladen is"
5779
 
5780
+ #: templates/admin/table-settings/table_settings_block.inc.php:296
5781
  msgid "Default rows per page"
5782
  msgstr ""
5783
 
5784
+ #: templates/admin/table-settings/table_settings_block.inc.php:304
5785
+ #: templates/admin/table-settings/table_settings_block.inc.php:339
5786
  msgid "Rows per page"
5787
  msgstr ""
5788
 
5789
+ #: templates/admin/table-settings/table_settings_block.inc.php:311
5790
  #, fuzzy
5791
  msgid "How many rows to show per page by default."
5792
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
5793
 
5794
+ #: templates/admin/table-settings/table_settings_block.inc.php:347
5795
  #, fuzzy
5796
  msgid "Show X entries"
5797
  msgstr "data"
5798
 
5799
+ #: templates/admin/table-settings/table_settings_block.inc.php:354
5800
  msgid ""
5801
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5802
  "frontend."
5803
  msgstr ""
5804
 
5805
+ #: templates/admin/table-settings/table_settings_block.inc.php:362
5806
  msgid "Show \"Show X entries\" dropdown"
5807
  msgstr ""
5808
 
5809
+ #: templates/admin/table-settings/table_settings_block.inc.php:386
5810
  msgid "This should be turned off if you want to set columns width manually."
5811
  msgstr ""
5812
 
5813
+ #: templates/admin/table-settings/table_settings_block.inc.php:407
5814
+ #: templates/admin/table-settings/table_settings_block.inc.php:415
5815
  msgid "Info block"
5816
  msgstr ""
5817
 
5818
+ #: templates/admin/table-settings/table_settings_block.inc.php:422
5819
  msgid ""
5820
  "Enable to show a block of information about the number of records below the "
5821
  "table."
5822
  msgstr ""
5823
 
5824
+ #: templates/admin/table-settings/table_settings_block.inc.php:430
5825
  msgid "Show information block below the table"
5826
  msgstr ""
5827
 
5828
+ #: templates/admin/table-settings/table_settings_block.inc.php:454
5829
  msgid ""
5830
  "This should be turned on if you want to set columns width manually. Should "
5831
  "be on to use word wrapping."
5832
  msgstr ""
5833
 
5834
+ #: templates/admin/table-settings/table_settings_block.inc.php:516
5835
  msgid "Enable to show a pagination"
5836
  msgstr ""
5837
 
5838
+ #: templates/admin/table-settings/table_settings_block.inc.php:524
5839
  msgid "Show pagination block below the table"
5840
  msgstr ""
5841
 
5842
+ #: templates/admin/table-settings/table_settings_block.inc.php:532
5843
+ #: templates/admin/table-settings/table_settings_block.inc.php:540
5844
  msgid "Pagination Alignment"
5845
  msgstr ""
5846
 
5847
+ #: templates/admin/table-settings/table_settings_block.inc.php:544
5848
  msgid "Here you can set pagination position: right, center or left."
5849
  msgstr ""
5850
 
5851
+ #: templates/admin/table-settings/table_settings_block.inc.php:552
5852
  msgid "Right"
5853
  msgstr ""
5854
 
5855
+ #: templates/admin/table-settings/table_settings_block.inc.php:553
5856
  msgid "Center"
5857
  msgstr ""
5858
 
5859
+ #: templates/admin/table-settings/table_settings_block.inc.php:554
5860
  msgid "Left"
5861
  msgstr ""
5862
 
5863
+ #: templates/admin/table-settings/table_settings_block.inc.php:563
5864
+ #: templates/admin/table-settings/table_settings_block.inc.php:571
5865
  msgid "Pagination Layout"
5866
  msgstr ""
5867
 
5868
+ #: templates/admin/table-settings/table_settings_block.inc.php:575
5869
  msgid "Here you can choose between different pagination layout."
5870
  msgstr ""
5871
 
5872
+ #: templates/admin/table-settings/table_settings_block.inc.php:583
5873
  msgid ""
5874
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5875
  msgstr ""
5876
 
5877
+ #: templates/admin/table-settings/table_settings_block.inc.php:584
5878
  msgid "\"Previous\" and \"Next\" buttons only"
5879
  msgstr ""
5880
 
5881
+ #: templates/admin/table-settings/table_settings_block.inc.php:585
5882
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5883
  msgstr ""
5884
 
5885
+ #: templates/admin/table-settings/table_settings_block.inc.php:586
5886
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5887
  msgstr ""
5888
 
5889
+ #: templates/admin/table-settings/table_settings_block.inc.php:587
5890
  msgid "Page number buttons only"
5891
  msgstr ""
5892
 
5893
+ #: templates/admin/table-settings/table_settings_block.inc.php:588
5894
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5895
  msgstr ""
5896
 
5897
+ #: templates/admin/table-settings/table_settings_block.inc.php:609
5898
  #, fuzzy
5899
  msgid "Advanced column filters"
5900
  msgstr "Geavanceerde filtering"
5901
 
5902
+ #: templates/admin/table-settings/table_settings_block.inc.php:617
5903
  #, fuzzy
5904
  msgid "Advanced filter"
5905
  msgstr "Geavanceerde filtering"
5906
 
5907
+ #: templates/admin/table-settings/table_settings_block.inc.php:624
5908
  msgid ""
5909
  "Enable to show an advanced filter for each of the columns, filters can be "
5910
  "shown in table footer, header or in a separate form."
5911
  msgstr ""
5912
 
5913
+ #: templates/admin/table-settings/table_settings_block.inc.php:635
5914
  #, fuzzy
5915
  msgid "Enable advanced column filters"
5916
  msgstr "Render geavanceerd filter"
5917
 
5918
+ #: templates/admin/table-settings/table_settings_block.inc.php:658
5919
  msgid ""
5920
  "If this is enabled, each column header will be clickable; clicking will sort "
5921
  "the whole table by the content of this column cells ascending or descending."
5922
  msgstr ""
5923
 
5924
+ #: templates/admin/table-settings/table_settings_block.inc.php:666
5925
  #, fuzzy
5926
  msgid "Allow sorting for the table"
5927
  msgstr "Onder de grafiek/diagram"
5928
 
5929
+ #: templates/admin/table-settings/table_settings_block.inc.php:674
5930
  msgid "Main search block"
5931
  msgstr ""
5932
 
5933
+ #: templates/admin/table-settings/table_settings_block.inc.php:689
5934
  msgid ""
5935
  "If this is enabled, a search block will be displayed on the top right of the "
5936
  "table, allowing to search through whole table with a single input."
5937
  msgstr ""
5938
 
5939
+ #: templates/admin/table-settings/table_settings_block.inc.php:697
5940
  msgid "Enable search block"
5941
  msgstr ""
5942
 
5943
+ #: templates/admin/table-settings/table_settings_block.inc.php:711
5944
  #, fuzzy
5945
  msgid "Filters in a form"
5946
  msgstr "Filter in formulier"
5947
 
5948
+ #: templates/admin/table-settings/table_settings_block.inc.php:718
5949
  #: templates/edit_table.inc.php:340
5950
  msgid "Filter in form"
5951
  msgstr "Filter in formulier"
5952
 
5953
+ #: templates/admin/table-settings/table_settings_block.inc.php:725
5954
  msgid ""
5955
  "Enable to show the advanced column filter in a form above the table, instead "
5956
  "of showing in the table footer/header."
5957
  msgstr ""
5958
 
5959
+ #: templates/admin/table-settings/table_settings_block.inc.php:734
5960
  msgid "Show filters in a form above the table"
5961
  msgstr ""
5962
 
5963
+ #: templates/admin/table-settings/table_settings_block.inc.php:742
5964
  #, fuzzy
5965
  msgid "Clear filters button"
5966
  msgstr "Leeg filters"
5967
 
5968
+ #: templates/admin/table-settings/table_settings_block.inc.php:749
5969
  #: templates/frontend/filter_form.inc.php:32
5970
  msgid "Clear filters"
5971
  msgstr "Leeg filters"
5972
 
5973
+ #: templates/admin/table-settings/table_settings_block.inc.php:753
5974
  msgid "Enable to show the clear filters button."
5975
  msgstr ""
5976
 
5977
+ #: templates/admin/table-settings/table_settings_block.inc.php:754
5978
  msgid ""
5979
  "If filter in form is enabled, clear button will be rendered after the last "
5980
  "filter."
5981
  msgstr ""
5982
 
5983
+ #: templates/admin/table-settings/table_settings_block.inc.php:759
5984
  msgid ""
5985
  "Otherwise, clear filter button will be rendered above the table next to "
5986
  "\"Table Tools\" buttons."
5987
  msgstr ""
5988
 
5989
+ #: templates/admin/table-settings/table_settings_block.inc.php:772
5990
  #, fuzzy
5991
  msgid "Show clear filters button"
5992
  msgstr "Leeg filters"
5993
 
5994
+ #: templates/admin/table-settings/table_settings_block.inc.php:792
5995
  #, fuzzy
5996
  msgid "Allow editing"
5997
  msgstr "Front-end aanpassen"
5998
 
5999
+ #: templates/admin/table-settings/table_settings_block.inc.php:800
6000
  #: templates/edit_table.inc.php:180
6001
  msgid "Front-end editing"
6002
  msgstr "Front-end aanpassen"
6003
 
6004
+ #: templates/admin/table-settings/table_settings_block.inc.php:807
6005
  #, fuzzy
6006
  msgid "Allow editing the table from the front-end."
6007
  msgstr "Maak tabel aanpasbaar vanaf de front-end"
6008
 
6009
+ #: templates/admin/table-settings/table_settings_block.inc.php:815
6010
  #, fuzzy
6011
  msgid "Allow front-end editing"
6012
  msgstr "Front-end aanpassen"
6013
 
6014
+ #: templates/admin/table-settings/table_settings_block.inc.php:823
6015
  msgid "Popover edit block"
6016
  msgstr ""
6017
 
6018
+ #: templates/admin/table-settings/table_settings_block.inc.php:831
6019
  #: templates/edit_table.inc.php:232
6020
  msgid "Popover tools"
6021
  msgstr ""
6022
 
6023
+ #: templates/admin/table-settings/table_settings_block.inc.php:838
6024
  msgid ""
6025
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
6026
  "popover when you click on any row, instead of Table Tools block above the "
6027
  "table."
6028
  msgstr ""
6029
 
6030
+ #: templates/admin/table-settings/table_settings_block.inc.php:846
6031
  msgid "Editing buttons in a popover"
6032
  msgstr ""
6033
 
6034
+ #: templates/admin/table-settings/table_settings_block.inc.php:854
6035
+ #: templates/admin/table-settings/table_settings_block.inc.php:862
6036
  #, fuzzy
6037
  msgid "In-line editing"
6038
  msgstr "Front-end aanpassen"
6039
 
6040
+ #: templates/admin/table-settings/table_settings_block.inc.php:869
6041
  msgid ""
6042
  "If this is enabled, front-end users will be able to edit cells by double-"
6043
  "clicking them, not only with the editor dialog."
6044
  msgstr ""
6045
 
6046
+ #: templates/admin/table-settings/table_settings_block.inc.php:877
6047
  #, fuzzy
6048
  msgid "Allow in-line editing"
6049
  msgstr "Front-end aanpassen"
6050
 
6051
+ #: templates/admin/table-settings/table_settings_block.inc.php:892
6052
  #: templates/edit_table.inc.php:192
6053
  msgid "MySQL table name for editing"
6054
  msgstr "MySQL tabel naam voor aanpassen"
6055
 
6056
+ #: templates/admin/table-settings/table_settings_block.inc.php:894
6057
  #, fuzzy
6058
  msgid ""
6059
  "Name of the MySQL table which will be updated when edited from front-end."
6061
  "Naam van de MySQL tabel welke gebruikt wordt voor aanpassingen vanaf de "
6062
  "front-end"
6063
 
6064
+ #: templates/admin/table-settings/table_settings_block.inc.php:899
6065
  #, fuzzy
6066
  msgid "MySQL table name"
6067
  msgstr "MySQL database naam"
6068
 
6069
+ #: templates/admin/table-settings/table_settings_block.inc.php:908
6070
  #: templates/edit_table.inc.php:203
6071
  #, fuzzy
6072
  msgid "ID column for editing"
6073
  msgstr "MySQL tabel naam voor aanpassen"
6074
 
6075
+ #: templates/admin/table-settings/table_settings_block.inc.php:910
6076
  msgid ""
6077
  "Choose the column values from which will be used as row identifiers. MUST be "
6078
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
6080
  "\"id\" or \"ID\" on MySQL side."
6081
  msgstr ""
6082
 
6083
+ #: templates/admin/table-settings/table_settings_block.inc.php:924
6084
  #: templates/edit_table.inc.php:267
6085
  msgid "Editor roles"
6086
  msgstr "Editor rollen"
6087
 
6088
+ #: templates/admin/table-settings/table_settings_block.inc.php:926
6089
  #, fuzzy
6090
  msgid ""
6091
  "If you want only specific user roles to be able to edit the table, choose in "
6094
  "Rollen welke de tabel mogen aanpassen (blanco laten zodat iedereen "
6095
  "aanpassingen kan doen)"
6096
 
6097
+ #: templates/admin/table-settings/table_settings_block.inc.php:931
6098
  msgid "Everyone"
6099
  msgstr ""
6100
 
6101
+ #: templates/admin/table-settings/table_settings_block.inc.php:932
6102
  msgid "Administrators"
6103
  msgstr ""
6104
 
6105
+ #: templates/admin/table-settings/table_settings_block.inc.php:933
6106
  msgid "Editors"
6107
  msgstr ""
6108
 
6109
+ #: templates/admin/table-settings/table_settings_block.inc.php:934
6110
  msgid "Authors"
6111
  msgstr ""
6112
 
6113
+ #: templates/admin/table-settings/table_settings_block.inc.php:935
6114
  msgid "Contributors"
6115
  msgstr ""
6116
 
6117
+ #: templates/admin/table-settings/table_settings_block.inc.php:936
6118
  msgid "Subscribers"
6119
  msgstr ""
6120
 
6121
+ #: templates/admin/table-settings/table_settings_block.inc.php:951
6122
  msgid "Users see and edit only own data"
6123
  msgstr ""
6124
 
6125
+ #: templates/admin/table-settings/table_settings_block.inc.php:959
6126
  msgid "Users see and edit only their own data"
6127
  msgstr ""
6128
 
6129
+ #: templates/admin/table-settings/table_settings_block.inc.php:966
6130
  msgid ""
6131
  "If this is enabled, users will see and edit only the rows that are related "
6132
  "to them or were created by them (associated using the User ID column)."
6133
  msgstr ""
6134
 
6135
+ #: templates/admin/table-settings/table_settings_block.inc.php:974
6136
  msgid "Limit editing to own data only"
6137
  msgstr ""
6138
 
6139
+ #: templates/admin/table-settings/table_settings_block.inc.php:982
6140
  #: templates/edit_table.inc.php:250
6141
  #, fuzzy
6142
  msgid "User ID column"
6143
  msgstr "ID kolom"
6144
 
6145
+ #: templates/admin/table-settings/table_settings_block.inc.php:984
6146
  msgid ""
6147
  "Choose the column values from which will be used as User identifiers. "
6148
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
6149
  "an integer on MySQL side."
6150
  msgstr ""
6151
 
6152
+ #: templates/admin/table-settings/table_settings_block.inc.php:1017
6153
  #: templates/edit_table.inc.php:350
6154
  msgid "Table tools"
6155
  msgstr "Tabel tools"
6156
 
6157
+ #: templates/admin/table-settings/table_settings_block.inc.php:1024
6158
  msgid ""
6159
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6160
  msgstr ""
6161
 
6162
+ #: templates/admin/table-settings/table_settings_block.inc.php:1032
6163
  #, fuzzy
6164
  msgid "Enable Table Tools"
6165
  msgstr "Tabel tools"
6166
 
6167
+ #: templates/admin/table-settings/table_settings_block.inc.php:1040
6168
  msgid "Buttons"
6169
  msgstr ""
6170
 
6171
+ #: templates/admin/table-settings/table_settings_block.inc.php:1042
6172
  msgid "Choose which buttons to show in the Table Tools block."
6173
  msgstr ""
6174
 
6175
+ #: templates/admin/table-settings/table_settings_block.inc.php:1048
6176
  #, fuzzy
6177
  msgid "Columns visibility"
6178
  msgstr "Kolom type"
6179
 
6180
+ #: templates/admin/table-settings/table_settings_block.inc.php:1080
6181
  msgid ""
6182
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6183
  "that will be replaced with some actual values at the execution time; usually "
6184
+ "this is used for SQL queries, but you can use it for filtering and editing "
6185
+ "for manual tables and only filtering for tables created from XML, JSON, "
6186
+ "Excel, CSV, Google Spreadsheet and PHP Serialized array."
6187
  msgstr ""
6188
 
6189
+ #: templates/admin/table-settings/table_settings_block.inc.php:1094
6190
+ #: templates/admin/table-settings/table_settings_block.inc.php:1109
6191
+ #: templates/admin/table-settings/table_settings_block.inc.php:1124
6192
  msgid ""
6193
  "This placeholder will be replaced with any value that you will provide in a "
6194
  "shortcode. Provide a default value here that will be used for table "
6195
  "generation and when a different one is not defined in the shortcode."
6196
  msgstr ""
6197
 
6198
+ #: templates/admin/table-settings/table_settings_block.inc.php:1099
6199
+ #: templates/admin/table-settings/table_settings_block.inc.php:1114
6200
+ #: templates/admin/table-settings/table_settings_block.inc.php:1129
6201
+ #: templates/admin/table-settings/table_settings_block.inc.php:1152
6202
+ #: templates/admin/table-settings/table_settings_block.inc.php:1170
6203
+ #: templates/admin/table-settings/table_settings_block.inc.php:1188
6204
+ #: templates/admin/table-settings/table_settings_block.inc.php:1210
6205
+ #: templates/admin/table-settings/table_settings_block.inc.php:1228
6206
+ #: templates/admin/table-settings/table_settings_block.inc.php:1246
6207
+ #: templates/admin/table-settings/table_settings_block.inc.php:1271
6208
+ #: templates/admin/table-settings/table_settings_block.inc.php:1291
6209
+ #: templates/admin/table-settings/table_settings_block.inc.php:1310
6210
+ #: templates/admin/table-settings/table_settings_block.inc.php:1332
6211
  msgid "Default for table generation"
6212
  msgstr ""
6213
 
6214
+ #: templates/admin/table-settings/table_settings_block.inc.php:1145
6215
  msgid ""
6216
  "This placeholder will be replaced with the ID of currently logged in user. "
6217
  "Provide a value here to be used for table generation"
6218
  msgstr ""
6219
 
6220
+ #: templates/admin/table-settings/table_settings_block.inc.php:1162
6221
  msgid ""
6222
  "This placeholder will be replaced with the login of currently logged in "
6223
  "user. Provide a value here to be used for table generation"
6224
  msgstr ""
6225
 
6226
+ #: templates/admin/table-settings/table_settings_block.inc.php:1180
6227
  msgid ""
6228
+ "This placeholder will be replaced with the Email of currently logged in "
6229
+ "user. Provide a value here to be used for table generation"
6230
  msgstr ""
6231
 
6232
+ #: templates/admin/table-settings/table_settings_block.inc.php:1204
6233
  msgid ""
6234
  "This placeholder will be replaced with the ID of current post. Provide a "
6235
  "value here to be used for table generation"
6236
  msgstr ""
6237
 
6238
+ #: templates/admin/table-settings/table_settings_block.inc.php:1220
6239
+ msgid ""
6240
+ "This placeholder will be replaced with the First Name of currently logged in "
6241
+ "user. Provide a value here to be used for table generation"
6242
+ msgstr ""
6243
+
6244
+ #: templates/admin/table-settings/table_settings_block.inc.php:1238
6245
+ msgid ""
6246
+ "This placeholder will be replaced with the Last Name of currently logged in "
6247
+ "user. Provide a value here to be used for table generation"
6248
+ msgstr ""
6249
+
6250
+ #: templates/admin/table-settings/table_settings_block.inc.php:1262
6251
+ msgid "This placeholder will be replaced with current date."
6252
+ msgstr ""
6253
+
6254
+ #: templates/admin/table-settings/table_settings_block.inc.php:1281
6255
+ msgid "This placeholder will be replaced with current datetime."
6256
+ msgstr ""
6257
+
6258
+ #: templates/admin/table-settings/table_settings_block.inc.php:1301
6259
+ msgid "This placeholder will be replaced with current time."
6260
+ msgstr ""
6261
+
6262
+ #: templates/admin/table-settings/table_settings_block.inc.php:1325
6263
+ msgid ""
6264
+ "This placeholder will be replaced with the current prefix of WordPress "
6265
+ "database. Provide a value here to be used for table generation"
6266
+ msgstr ""
6267
+
6268
+ #: templates/admin/table-settings/table_settings_block.inc.php:1356
6269
+ msgid ""
6270
+ "In premium version you can customize each table with different skin, font, "
6271
+ "background , colors and lot more. Checkout new table customize settings "
6272
+ "below."
6273
+ msgstr ""
6274
+
6275
+ #: templates/admin/table-settings/table_settings_block.inc.php:1363
6276
+ msgid "Main"
6277
+ msgstr ""
6278
+
6279
+ #: templates/admin/table-settings/table_settings_block.inc.php:1375
6280
+ msgid "Table border"
6281
+ msgstr ""
6282
+
6283
+ #: templates/admin/table-settings/table_settings_block.inc.php:1391
6284
+ msgid "Custom CSS"
6285
+ msgstr ""
6286
+
6287
+ #: templates/admin/table-settings/table_settings_block.inc.php:1716
6288
+ msgid "Remove borders in table header"
6289
+ msgstr ""
6290
+
6291
+ #: templates/admin/table-settings/table_settings_block.inc.php:2028
6292
+ msgid ""
6293
+ "This CSS will be inserted as an inline style block on every page that has "
6294
+ "this wpDataTable."
6295
+ msgstr ""
6296
+
6297
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6298
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6299
  msgid "Go to Dashboard"
languages/nl_NL/wpdatatables-nl_NL.mo CHANGED
Binary file
languages/nl_NL/wpdatatables-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-01-15 17:04+0100\n"
5
- "PO-Revision-Date: 2021-01-15 17:04+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
@@ -156,13 +156,13 @@ msgstr ""
156
  msgid "Go Premium"
157
  msgstr ""
158
 
159
- #: controllers/wdt_admin.php:516 controllers/wdt_admin.php:565
160
- #: controllers/wdt_admin.php:608 controllers/wdt_admin.php:629
161
- #: controllers/wdt_admin.php:676 controllers/wdt_admin.php:702
162
- #: controllers/wdt_admin.php:721 controllers/wdt_admin.php:741
163
- #: controllers/wdt_admin.php:760 controllers/wdt_admin.php:780
164
- #: controllers/wdt_admin.php:800 controllers/wdt_admin.php:820
165
- #: controllers/wdt_admin.php:839
166
  msgid "You do not have sufficient permissions to access this page."
167
  msgstr "Je hebt niet voldoende permissies om de pagina te laden."
168
 
@@ -270,6 +270,28 @@ msgid ""
270
  "placeholders and also for Export file name."
271
  msgstr ""
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  #: source/class.wdtbrowsechartstable.php:141
274
  #: source/class.wdtbrowsetable.php:168
275
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
@@ -293,7 +315,7 @@ msgid "Configure"
293
  msgstr ""
294
 
295
  #: source/class.wdtbrowsechartstable.php:162
296
- #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:303
297
  #: templates/admin/browse/bulk_actions.inc.php:14
298
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
299
  msgid "Delete"
@@ -386,6 +408,11 @@ msgstr ""
386
  msgid "No wpDataCharts in the system yet."
387
  msgstr "Nog geen wpDataTables in het systeem"
388
 
 
 
 
 
 
389
  #: source/class.wdtbrowsetable.php:231
390
  #, fuzzy
391
  msgid "MySQL"
@@ -395,16 +422,16 @@ msgstr "MySQL host"
395
  msgid "Manual"
396
  msgstr ""
397
 
398
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2216
399
- #: source/class.wpdatatable.php:2286
400
- #: templates/admin/table-settings/table_settings_block.inc.php:1031
401
  #, fuzzy
402
  msgid "Excel"
403
  msgstr "Excel bestand"
404
 
405
- #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2225
406
- #: source/class.wpdatatable.php:2296
407
- #: templates/admin/table-settings/table_settings_block.inc.php:1032
408
  msgid "CSV"
409
  msgstr ""
410
 
@@ -418,7 +445,7 @@ msgid "JSON"
418
  msgstr "JSON bestand"
419
 
420
  #: source/class.wdtbrowsetable.php:249
421
- #: templates/admin/table-settings/table_settings_block.inc.php:111
422
  #: templates/edit_table.inc.php:91
423
  msgid "Serialized PHP array"
424
  msgstr "Serialized PHP array"
@@ -510,22 +537,22 @@ msgstr ""
510
  msgid "Attachment"
511
  msgstr "Upload bijlage"
512
 
513
- #: source/class.wdttools.php:159
514
  msgid ""
515
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
516
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
517
  "to the web</b> "
518
  msgstr ""
519
 
520
- #: source/class.wdttools.php:287
521
  msgid "Back to date"
522
  msgstr ""
523
 
524
- #: source/class.wdttools.php:288
525
  msgid "Browse"
526
  msgstr ""
527
 
528
- #: source/class.wdttools.php:289 source/class.wdttools.php:410
529
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
530
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
531
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
@@ -543,26 +570,26 @@ msgstr ""
543
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
544
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
545
  #: templates/admin/table-settings/table_preview_block.inc.php:86
546
- #: templates/admin/table-settings/table_settings_block.inc.php:40
547
  #: templates/common/delete_modal.inc.php:39
548
  msgid "Cancel"
549
  msgstr "Annuleren"
550
 
551
- #: source/class.wdttools.php:290
552
  #, fuzzy
553
  msgid " field cannot be empty!"
554
  msgstr "Tabel type mag niet leeg zijn"
555
 
556
- #: source/class.wdttools.php:291
557
  msgid "Use selected file"
558
  msgstr ""
559
 
560
- #: source/class.wdttools.php:292
561
  #, fuzzy
562
  msgid "Choose file"
563
  msgstr "Kies rollen"
564
 
565
- #: source/class.wdttools.php:293 templates/admin/common/error_modal.inc.php:23
566
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
567
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
568
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
@@ -570,385 +597,395 @@ msgstr "Kies rollen"
570
  msgid "Close"
571
  msgstr "Sluiten"
572
 
573
- #: source/class.wdttools.php:294
574
  msgid "Column has been added!"
575
  msgstr ""
576
 
577
- #: source/class.wdttools.php:295
578
  #, fuzzy
579
  msgid "Column header cannot be empty!"
580
  msgstr "Tabel type mag niet leeg zijn"
581
 
582
- #: source/class.wdttools.php:296
583
  msgid "Please confirm column deletion!"
584
  msgstr ""
585
 
586
- #: source/class.wdttools.php:297
587
  msgid "Column has been removed!"
588
  msgstr ""
589
 
590
- #: source/class.wdttools.php:298
591
  msgid "Please select columns that you want to use in table"
592
  msgstr ""
593
 
594
- #: source/class.wdttools.php:299 source/class.wpdatatable.php:2234
595
- #: source/class.wpdatatable.php:2306
596
- #: templates/admin/table-settings/table_settings_block.inc.php:1033
597
  msgid "Copy"
598
  msgstr ""
599
 
600
- #: source/class.wdttools.php:300
601
  msgid "There was an error trying to insert a new row!"
602
  msgstr ""
603
 
604
- #: source/class.wdttools.php:301
605
  msgid "Data has been saved!"
606
  msgstr ""
607
 
608
- #: source/class.wdttools.php:302
609
  msgid "detach"
610
  msgstr ""
611
 
612
- #: source/class.wdttools.php:304
613
  msgid "Delete selected"
614
  msgstr ""
615
 
616
- #: source/class.wdttools.php:305 templates/settings.inc.php:553
617
  #: templates/settings.inc.php:627
618
  msgid "Error!"
619
  msgstr "Fout!"
620
 
621
- #: source/class.wdttools.php:306
622
  msgid "Please upload or choose a file from Media Library!"
623
  msgstr ""
624
 
625
- #: source/class.wdttools.php:307
626
  msgid "From"
627
  msgstr ""
628
 
629
- #: source/class.wdttools.php:308
630
  msgid "Please provide a valid e-mail address for field"
631
  msgstr ""
632
 
633
- #: source/class.wdttools.php:309
634
  msgid "Please provide a valid URL link for field"
635
  msgstr ""
636
 
637
- #: source/class.wdttools.php:310
638
  msgid "You have entered invalid value. Press ESC to cancel."
639
  msgstr ""
640
 
641
- #: source/class.wdttools.php:311 source/class.wdttools.php:340
642
  msgid "Show _MENU_ entries"
643
  msgstr ""
644
 
645
- #: source/class.wdttools.php:312
646
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
647
  msgid "Merge"
648
  msgstr ""
649
 
650
- #: source/class.wdttools.php:313
651
  #, fuzzy
652
  msgid "New column"
653
  msgstr "ID kolom"
654
 
655
- #: source/class.wdttools.php:314
656
  msgid "Number of columns can not be empty or 0"
657
  msgstr ""
658
 
659
- #: source/class.wdttools.php:315
660
  msgid "Number of rows can not be empty or 0"
661
  msgstr ""
662
 
663
- #: source/class.wdttools.php:317
664
  msgid ": activate to sort column ascending"
665
  msgstr ""
666
 
667
- #: source/class.wdttools.php:318
668
  msgid ": activate to sort column descending"
669
  msgstr ""
670
 
671
- #: source/class.wdttools.php:320
672
  msgid "Ok"
673
  msgstr ""
674
 
675
- #: source/class.wdttools.php:322
676
  msgid "First"
677
  msgstr ""
678
 
679
- #: source/class.wdttools.php:323
680
  msgid "Last"
681
  msgstr ""
682
 
683
- #: source/class.wdttools.php:324
684
  msgid "Next"
685
  msgstr "Volgende"
686
 
687
- #: source/class.wdttools.php:325
688
  #, fuzzy
689
  msgid "Previous"
690
  msgstr "Preview"
691
 
692
- #: source/class.wdttools.php:327
693
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
694
  msgid "Replace"
695
  msgstr ""
696
 
697
- #: source/class.wdttools.php:328
698
  msgid "Row has been deleted!"
699
  msgstr ""
700
 
701
- #: source/class.wdttools.php:329
 
 
 
 
702
  msgid "Select a file to use in table"
703
  msgstr ""
704
 
705
- #: source/class.wdttools.php:330
706
  #, fuzzy
707
  msgid "Select an Excel or CSV file"
708
  msgstr "Selecteer Excel of CSV besand"
709
 
710
- #: source/class.wdttools.php:331
711
  msgid "No data available in table"
712
  msgstr ""
713
 
714
- #: source/class.wdttools.php:332
715
  #, fuzzy
716
  msgid "Plugin settings saved successfully"
717
  msgstr "Instellingen zijn opgeslagen"
718
 
719
- #: source/class.wdttools.php:333
720
  msgid ""
721
  "Unable to save settings of plugin. Please try again or contact us over "
722
  "Support page."
723
  msgstr ""
724
 
725
- #: source/class.wdttools.php:334
726
  msgid "Shortcode has been copied to the clipboard."
727
  msgstr ""
728
 
729
- #: source/class.wdttools.php:335
730
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
731
  msgstr ""
732
 
733
- #: source/class.wdttools.php:336
734
  msgid "Showing 0 to 0 of 0 entries"
735
  msgstr ""
736
 
737
- #: source/class.wdttools.php:337
738
  msgid "(filtered from _MAX_ total entries)"
739
  msgstr ""
740
 
741
- #: source/class.wdttools.php:339
742
  msgid ","
743
  msgstr ""
744
 
745
- #: source/class.wdttools.php:341
746
  msgid "Loading..."
747
  msgstr ""
748
 
749
- #: source/class.wdttools.php:342
750
  msgid "Processing..."
751
  msgstr ""
752
 
753
- #: source/class.wdttools.php:343
754
  #, fuzzy
755
  msgid "SQL error"
756
  msgstr "MySQL gebruiker"
757
 
758
- #: source/class.wdttools.php:344
759
  msgid "Search: "
760
  msgstr ""
761
 
762
- #: source/class.wdttools.php:345 templates/settings.inc.php:559
763
  #: templates/settings.inc.php:625
764
  msgid "Success!"
765
  msgstr "Succes!"
766
 
767
- #: source/class.wdttools.php:346
768
  msgid "No matching records found"
769
  msgstr ""
770
 
771
- #: source/class.wdttools.php:347
772
  msgid ""
773
  "System info data has been copied to the clipboard. You can now paste it in "
774
  "file or in support topic."
775
  msgstr ""
776
 
777
- #: source/class.wdttools.php:348
778
  msgid "Table saved successfully!"
779
  msgstr "Tabel succesvol opgeslagen!"
780
 
781
- #: source/class.wdttools.php:349
782
  msgid "To"
783
  msgstr ""
784
 
785
- #: source/class.wdttools.php:385
786
  #: templates/admin/common/premium_modal.inc.php:17
 
 
787
  msgid "This is a premium feature"
788
  msgstr ""
789
 
790
- #: source/class.wdttools.php:386
791
  #: templates/admin/common/premium_modal.inc.php:26
 
 
792
  msgid "This feature is available only in premium version of wpDataTables"
793
  msgstr ""
794
 
795
- #: source/class.wdttools.php:387
796
  #: templates/admin/getting-started/getting_started.inc.php:133
797
  #: templates/admin/getting-started/getting_started.inc.php:145
798
  #: templates/admin/getting-started/getting_started.inc.php:157
799
  #: templates/admin/getting-started/getting_started.inc.php:169
 
 
800
  msgid "Compare and View Pricing"
801
  msgstr ""
802
 
803
- #: source/class.wdttools.php:406
804
  msgid "Field cannot be empty!"
805
  msgstr ""
806
 
807
- #: source/class.wdttools.php:407
808
  msgid "Please choose chart type."
809
  msgstr ""
810
 
811
- #: source/class.wdttools.php:408
812
  msgid "Please select wpDataTable from dropdown."
813
  msgstr ""
814
 
815
- #: source/class.wdttools.php:409
816
  msgid "Columns field cannot be empty"
817
  msgstr ""
818
 
819
- #: source/class.wdttools.php:411
820
  msgid ""
821
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
822
  "clicking on Cancel button."
823
  msgstr ""
824
 
825
- #: source/class.wdttools.php:412
826
  msgid "Finish Tutorial"
827
  msgstr ""
828
 
829
- #: source/class.wdttools.php:413
830
  msgid "Continue"
831
  msgstr ""
832
 
833
- #: source/class.wdttools.php:414
834
  msgid "Start"
835
  msgstr ""
836
 
837
- #: source/class.wdttools.php:415
838
  msgid "Skip Tutorial"
839
  msgstr ""
840
 
841
- #: source/class.wdttools.php:418 source/class.wdttools.php:484
842
- #: source/class.wdttools.php:526
843
  msgid "Welcome to the tutorial!"
844
  msgstr ""
845
 
846
- #: source/class.wdttools.php:419 source/class.wdttools.php:485
847
- #: source/class.wdttools.php:527
848
  msgid "Hello "
849
  msgstr ""
850
 
851
- #: source/class.wdttools.php:419
852
  msgid ""
853
  ", in this tutorial, we will show you how to create a simple table from "
854
  "scratch by choosing a custom number of columns and rows. How to customize "
855
  "each cell, merge cells and a lot more."
856
  msgstr ""
857
 
858
- #: source/class.wdttools.php:422
859
  msgid " Let's create a new wpDataTable from scratch!"
860
  msgstr ""
861
 
862
- #: source/class.wdttools.php:423 source/class.wdttools.php:489
863
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
864
  msgstr ""
865
 
866
- #: source/class.wdttools.php:426
867
  msgid "Choose this option"
868
  msgstr ""
869
 
870
- #: source/class.wdttools.php:427
871
  msgid "Please select 'Create a simple table from scratch'."
872
  msgstr ""
873
 
874
- #: source/class.wdttools.php:430 source/class.wdttools.php:496
875
  msgid "Click Next"
876
  msgstr ""
877
 
878
- #: source/class.wdttools.php:431 source/class.wdttools.php:497
879
  msgid "Please click the 'Next' button to continue."
880
  msgstr ""
881
 
882
- #: source/class.wdttools.php:434
883
  msgid "Welcome to the Simple table wizard!"
884
  msgstr ""
885
 
886
- #: source/class.wdttools.php:435
887
  msgid "Please click 'Continue' button to move on."
888
  msgstr ""
889
 
890
- #: source/class.wdttools.php:438
891
  msgid "Choose a name for your table"
892
  msgstr ""
893
 
894
- #: source/class.wdttools.php:439
895
  msgid "After inserting table name, click 'Continue' to move on."
896
  msgstr ""
897
 
898
- #: source/class.wdttools.php:442
899
  msgid "Choose the number of columns for your table"
900
  msgstr ""
901
 
902
- #: source/class.wdttools.php:443
903
  msgid ""
904
  "Please choose how many columns it will have. Remember that you can always "
905
  "add or reduce the number of columns later. Click 'Continue' when you finish."
906
  msgstr ""
907
 
908
- #: source/class.wdttools.php:446
909
  msgid "Choose the number of rows for your table."
910
  msgstr ""
911
 
912
- #: source/class.wdttools.php:447
913
  msgid ""
914
  "Please choose how many rows it will have. Remember that you can always add "
915
  "or reduce the number of rows later. Click 'Continue' when you finish."
916
  msgstr ""
917
 
918
- #: source/class.wdttools.php:450
919
  msgid "Click on the 'Generate Table' button"
920
  msgstr ""
921
 
922
- #: source/class.wdttools.php:451
923
  msgid "When you click on the button, the empty table will be ready for you. "
924
  msgstr ""
925
 
926
- #: source/class.wdttools.php:454
927
  msgid "We are generating the table..."
928
  msgstr ""
929
 
930
- #: source/class.wdttools.php:455
931
  msgid "Please, when you see the table, click 'Continue' to move on."
932
  msgstr ""
933
 
934
- #: source/class.wdttools.php:458
935
  msgid ""
936
  "Nice job! You just configured your table and it is ready to fill it with "
937
  "data."
938
  msgstr ""
939
 
940
- #: source/class.wdttools.php:459
941
  msgid ""
942
  "Now we will guide you on how to insert data and check table layout throw "
943
  "Simple table editor, table toolbar and table preview. Please click "
944
  "'Continue' to move on."
945
  msgstr ""
946
 
947
- #: source/class.wdttools.php:462
948
  msgid "This is Simple table editor"
949
  msgstr ""
950
 
951
- #: source/class.wdttools.php:463
952
  msgid ""
953
  "Here you can populate your table with data. <br><br>You can move around the "
954
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
@@ -957,11 +994,11 @@ msgid ""
957
  "line of the row header. Click 'Continue' to move on."
958
  msgstr ""
959
 
960
- #: source/class.wdttools.php:466
961
  msgid "Check out the Simple table toolbar"
962
  msgstr ""
963
 
964
- #: source/class.wdttools.php:467
965
  msgid ""
966
  "Here you can style and insert custom data for each cell or range of cells. "
967
  "You can add or delete columns and rows, merge cells, customize sections by "
@@ -969,39 +1006,39 @@ msgid ""
969
  "ratings or custom HTML code."
970
  msgstr ""
971
 
972
- #: source/class.wdttools.php:470
973
  msgid "Responsive table views"
974
  msgstr ""
975
 
976
- #: source/class.wdttools.php:471
977
  msgid ""
978
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
979
  "tab that you need, so you can make sure your table looks excellent across "
980
  "all devices. "
981
  msgstr ""
982
 
983
- #: source/class.wdttools.php:474
984
  msgid "Real-time preview"
985
  msgstr ""
986
 
987
- #: source/class.wdttools.php:475
988
  msgid ""
989
  "Here you will see how your table will look like on the page. Please click "
990
  "'Continue' to move on."
991
  msgstr ""
992
 
993
- #: source/class.wdttools.php:478
994
  msgid "Congrats! Your table is ready."
995
  msgstr ""
996
 
997
- #: source/class.wdttools.php:479
998
  msgid ""
999
  "Now you can copy the shortcode for this table, and check out how it looks on "
1000
  "your website when you paste it to a post or page. You can always come back "
1001
  "and edit the table as you like."
1002
  msgstr ""
1003
 
1004
- #: source/class.wdttools.php:485
1005
  msgid ""
1006
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
1007
  "existing data source. \"Linked\" in this context means that if you create a "
@@ -1010,56 +1047,56 @@ msgid ""
1010
  "reflected in the table."
1011
  msgstr ""
1012
 
1013
- #: source/class.wdttools.php:488
1014
  msgid "Let's create a new wpDataTable!"
1015
  msgstr ""
1016
 
1017
- #: source/class.wdttools.php:492
1018
  msgid "Choose this option."
1019
  msgstr ""
1020
 
1021
- #: source/class.wdttools.php:493
1022
  msgid "Please select 'Create a table linked to an existing data source'."
1023
  msgstr ""
1024
 
1025
- #: source/class.wdttools.php:500
1026
- #: templates/admin/table-settings/table_settings_block.inc.php:95
1027
  #, fuzzy
1028
  msgid "Input data source type"
1029
  msgstr "Tabel invoer data bron mag niet leeg zijn"
1030
 
1031
- #: source/class.wdttools.php:501
1032
  msgid "Please select a data source type that you need."
1033
  msgstr ""
1034
 
1035
- #: source/class.wdttools.php:504
1036
  msgid "Select Data source type"
1037
  msgstr ""
1038
 
1039
- #: source/class.wdttools.php:505
1040
  msgid ""
1041
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1042
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1043
  "are available in Premium version)"
1044
  msgstr ""
1045
 
1046
- #: source/class.wdttools.php:508
1047
- #: templates/admin/table-settings/table_settings_block.inc.php:122
1048
  #, fuzzy
1049
  msgid "Input file path or URL"
1050
  msgstr "Voer bestand of URL in"
1051
 
1052
- #: source/class.wdttools.php:509
1053
  msgid ""
1054
  "Upload your file or provide the full URL here. When you finish click "
1055
  "'Continue' button."
1056
  msgstr ""
1057
 
1058
- #: source/class.wdttools.php:512
1059
  msgid "Click Save Changes"
1060
  msgstr ""
1061
 
1062
- #: source/class.wdttools.php:513
1063
  msgid ""
1064
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1065
  "get an error message after button click and you are not able to solve it, "
@@ -1068,117 +1105,117 @@ msgid ""
1068
  "click Skip tutorial."
1069
  msgstr ""
1070
 
1071
- #: source/class.wdttools.php:516
1072
  msgid "The table is creating..."
1073
  msgstr ""
1074
 
1075
- #: source/class.wdttools.php:517
1076
  msgid ""
1077
  "Now the table is creating. Wait until you see it in the background and then "
1078
  "click 'Continue'."
1079
  msgstr ""
1080
 
1081
- #: source/class.wdttools.php:520
1082
  msgid "Nice job! You just created your first wpDataTable!"
1083
  msgstr ""
1084
 
1085
- #: source/class.wdttools.php:521
1086
  msgid ""
1087
  "Now you can copy the shortcode for this table, and check out how it looks on "
1088
  "your website when you paste it to a post or page."
1089
  msgstr ""
1090
 
1091
- #: source/class.wdttools.php:527
1092
  msgid ""
1093
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1094
  "plugin."
1095
  msgstr ""
1096
 
1097
- #: source/class.wdttools.php:530
1098
  msgid "Let's create a new wpDataTables Chart!"
1099
  msgstr ""
1100
 
1101
- #: source/class.wdttools.php:531
1102
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1103
  msgstr ""
1104
 
1105
- #: source/class.wdttools.php:534
1106
  msgid "Welcome to the Chart Wizard!"
1107
  msgstr ""
1108
 
1109
- #: source/class.wdttools.php:535
1110
  msgid ""
1111
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1112
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1113
  msgstr ""
1114
 
1115
- #: source/class.wdttools.php:538
1116
  msgid "Follow the steps in the Chart Wizard"
1117
  msgstr ""
1118
 
1119
- #: source/class.wdttools.php:539
1120
  msgid ""
1121
  "By following these steps, you will finish building your chart in the Chart "
1122
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1123
  "'Continue' button to move forward."
1124
  msgstr ""
1125
 
1126
- #: source/class.wdttools.php:542
1127
  msgid "Choose a name for your Chart"
1128
  msgstr ""
1129
 
1130
- #: source/class.wdttools.php:543
1131
  msgid "Click 'Continue' button when you’re ready to move forward."
1132
  msgstr ""
1133
 
1134
- #: source/class.wdttools.php:546
1135
  msgid "In wpDataTables you can find several charts render engines."
1136
  msgstr ""
1137
 
1138
- #: source/class.wdttools.php:547
1139
  msgid ""
1140
  "Click on the dropdown, and you will see several options that you can choose "
1141
  "from.(Google charts are only available) <br><br>To continue, click on the "
1142
  "dropdown."
1143
  msgstr ""
1144
 
1145
- #: source/class.wdttools.php:550
1146
  msgid "Choose Google chart engine."
1147
  msgstr ""
1148
 
1149
- #: source/class.wdttools.php:551
1150
  msgid ""
1151
  "By clicking on Google chart options, you will choose the engine that will "
1152
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1153
  "to move forward."
1154
  msgstr ""
1155
 
1156
- #: source/class.wdttools.php:554
1157
  msgid "Different charts types. "
1158
  msgstr ""
1159
 
1160
- #: source/class.wdttools.php:555
1161
  msgid ""
1162
  "Here you can choose a chart type. Please, click on the chart type that you "
1163
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1164
  "forward."
1165
  msgstr ""
1166
 
1167
- #: source/class.wdttools.php:558
1168
  msgid "The first step is finished!"
1169
  msgstr ""
1170
 
1171
- #: source/class.wdttools.php:559
1172
  msgid "Let's move on. Please, click 'Next' to continue."
1173
  msgstr ""
1174
 
1175
- #: source/class.wdttools.php:562
1176
  msgid ""
1177
  "Now you need to choose a wpDataTable based on which we will build a chart "
1178
  "for you"
1179
  msgstr ""
1180
 
1181
- #: source/class.wdttools.php:563
1182
  msgid ""
1183
  "Click on the dropdown, and all your tables will be listed. The columns of "
1184
  "the table that you choose will be used for creating the chart.<br><br>If you "
@@ -1186,59 +1223,59 @@ msgid ""
1186
  "button and create wpDataTable that would contain the data to visualize first."
1187
  msgstr ""
1188
 
1189
- #: source/class.wdttools.php:566
1190
  msgid "Pick your wpDataTable"
1191
  msgstr ""
1192
 
1193
- #: source/class.wdttools.php:567
1194
  msgid ""
1195
  "Pick a wpDataTable from which you want to render a chart and when you "
1196
  "finish, please click 'Continue' to move on."
1197
  msgstr ""
1198
 
1199
- #: source/class.wdttools.php:570
1200
  msgid "The second step is finished!"
1201
  msgstr ""
1202
 
1203
- #: source/class.wdttools.php:571
1204
  msgid ""
1205
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1206
  msgstr ""
1207
 
1208
- #: source/class.wdttools.php:574
1209
  msgid "Just a heads up!"
1210
  msgstr ""
1211
 
1212
- #: source/class.wdttools.php:575
1213
  msgid ""
1214
  "Here you will choose from which columns you will create a chart.<br><br> "
1215
  "Please click 'Continue' button to move forward."
1216
  msgstr ""
1217
 
1218
- #: source/class.wdttools.php:578
1219
  msgid "Meet the wpDataTable Column Blocks"
1220
  msgstr ""
1221
 
1222
- #: source/class.wdttools.php:579
1223
  msgid ""
1224
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1225
  "or click on the arrow to move the desired column to the 'Columns used in the "
1226
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1227
  msgstr ""
1228
 
1229
- #: source/class.wdttools.php:582
1230
  msgid "Well done!"
1231
  msgstr ""
1232
 
1233
- #: source/class.wdttools.php:583
1234
  msgid "Just two more steps to go. Please click 'Next' to continue."
1235
  msgstr ""
1236
 
1237
- #: source/class.wdttools.php:586
1238
  msgid "Chart settings and chart preview."
1239
  msgstr ""
1240
 
1241
- #: source/class.wdttools.php:587
1242
  msgid ""
1243
  "Here you can adjust chart settings, different parameters are grouped in "
1244
  "section; adjusting the parameters will be reflected in the preview of your "
@@ -1246,51 +1283,51 @@ msgid ""
1246
  "button to move forward."
1247
  msgstr ""
1248
 
1249
- #: source/class.wdttools.php:590
1250
  msgid "In this sidebar, you can find the chart settings section."
1251
  msgstr ""
1252
 
1253
- #: source/class.wdttools.php:591
1254
  msgid ""
1255
  "By clicking on each section, you can set your desired parameters per section."
1256
  "<br><br> Please click 'Continue' button to move on."
1257
  msgstr ""
1258
 
1259
- #: source/class.wdttools.php:594
1260
  msgid "Here are the available chart options"
1261
  msgstr ""
1262
 
1263
- #: source/class.wdttools.php:595
1264
  msgid ""
1265
  "Set different chart options for the chosen section to get your desired chart "
1266
  "look.<br><br> Please click 'Continue' button to move on."
1267
  msgstr ""
1268
 
1269
- #: source/class.wdttools.php:598
1270
  msgid "How your chart will look like on the page of your website"
1271
  msgstr ""
1272
 
1273
- #: source/class.wdttools.php:599
1274
  msgid ""
1275
  "Here you can see a preview of your chart based on the settings you have "
1276
  "chosen.<br><br> Please click 'Continue' button to move on."
1277
  msgstr ""
1278
 
1279
- #: source/class.wdttools.php:602
1280
  msgid "You can save your chart now"
1281
  msgstr ""
1282
 
1283
- #: source/class.wdttools.php:603
1284
  msgid ""
1285
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1286
  "button and all your settings for this chart will be saved in the database."
1287
  msgstr ""
1288
 
1289
- #: source/class.wdttools.php:606
1290
  msgid "Congrats! Your first chart is ready!"
1291
  msgstr ""
1292
 
1293
- #: source/class.wdttools.php:607
1294
  msgid ""
1295
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1296
  "page. <br><br>You may now finish this tutorial. "
@@ -1304,45 +1341,45 @@ msgstr ""
1304
  msgid "You are mixing data types (several date axes and several number)"
1305
  msgstr ""
1306
 
1307
- #: source/class.wpdatatable.php:1895
1308
  msgid ""
1309
  "You are trying to load a table of an unknown type. Probably you did not "
1310
  "activate the addon which is required to use this table type."
1311
  msgstr ""
1312
 
1313
- #: source/class.wpdatatable.php:2134 source/class.wpdatatable.php:2137
1314
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1315
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1316
- #: templates/admin/table-settings/table_settings_block.inc.php:312
1317
  #: templates/edit_table.inc.php:409
1318
  msgid "All"
1319
  msgstr "Alles"
1320
 
1321
- #: source/class.wpdatatable.php:2195 source/class.wpdatatable.php:2264
1322
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1323
  #, fuzzy
1324
  msgid "Columns"
1325
  msgstr "Kolom type"
1326
 
1327
- #: source/class.wpdatatable.php:2205 source/class.wpdatatable.php:2274
1328
- #: templates/admin/table-settings/table_settings_block.inc.php:1030
1329
  msgid "Print"
1330
  msgstr ""
1331
 
1332
- #: source/class.wpdatatable.php:2244 source/class.wpdatatable.php:2317
1333
- #: templates/admin/table-settings/table_settings_block.inc.php:1034
1334
  msgid "PDF"
1335
  msgstr ""
1336
 
1337
- #: source/class.wpdatatable.php:2252
1338
  msgid "Export"
1339
  msgstr ""
1340
 
1341
- #: source/class.wpdatatable.php:2330
1342
  msgid "Search table"
1343
  msgstr ""
1344
 
1345
- #: source/class.wpdatatable.php:2331
1346
  msgid "Showing _MENU_ Entries"
1347
  msgstr ""
1348
 
@@ -1361,7 +1398,7 @@ msgstr ""
1361
  msgid "if you have some questions or problems with the plugin."
1362
  msgstr "als je vragen of problemen hebt met deze plugin."
1363
 
1364
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:498
1365
  msgid "wpDataTables Addons"
1366
  msgstr ""
1367
 
@@ -1375,12 +1412,12 @@ msgid ""
1375
  msgstr ""
1376
 
1377
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1378
- #: templates/admin/dashboard/dashboard.inc.php:569
1379
  msgid "Report Builder"
1380
  msgstr ""
1381
 
1382
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1383
- #: templates/admin/dashboard/dashboard.inc.php:573
1384
  msgid ""
1385
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1386
  "XLSX documents filled in with actual data from your database."
@@ -1406,7 +1443,7 @@ msgid "NEW"
1406
  msgstr ""
1407
 
1408
  #: templates/admin/addons/addons.inc.php:40
1409
- #: templates/admin/dashboard/dashboard.inc.php:516
1410
  msgid "Master Detail Tables for wpDataTables"
1411
  msgstr ""
1412
 
@@ -1427,7 +1464,7 @@ msgid "Learn more"
1427
  msgstr ""
1428
 
1429
  #: templates/admin/addons/addons.inc.php:67
1430
- #: templates/admin/dashboard/dashboard.inc.php:543
1431
  msgid "Powerful Filters for wpDataTables"
1432
  msgstr ""
1433
 
@@ -1439,24 +1476,24 @@ msgid ""
1439
  msgstr ""
1440
 
1441
  #: templates/admin/addons/addons.inc.php:120
1442
- #: templates/admin/dashboard/dashboard.inc.php:596
1443
  msgid "Formidable Forms integration for wpDataTables"
1444
  msgstr ""
1445
 
1446
  #: templates/admin/addons/addons.inc.php:123
1447
- #: templates/admin/dashboard/dashboard.inc.php:600
1448
  msgid ""
1449
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1450
  "create wpDataTables from Formidable Forms entries data."
1451
  msgstr ""
1452
 
1453
  #: templates/admin/addons/addons.inc.php:143
1454
- #: templates/admin/dashboard/dashboard.inc.php:622
1455
  msgid "Gravity Forms integration for wpDataTables"
1456
  msgstr ""
1457
 
1458
  #: templates/admin/addons/addons.inc.php:146
1459
- #: templates/admin/dashboard/dashboard.inc.php:626
1460
  msgid ""
1461
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1462
  "wpDataTables from Gravity Forms entries data."
@@ -1537,7 +1574,7 @@ msgid "Chart title & type"
1537
  msgstr "Grafiek titel"
1538
 
1539
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1540
- #: templates/admin/table-settings/table_settings_block.inc.php:59
1541
  #: templates/chart_wizard.inc.php:36
1542
  msgid "Data source"
1543
  msgstr ""
@@ -1582,6 +1619,7 @@ msgstr ""
1582
 
1583
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1584
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
 
1585
  #: templates/edit_table.inc.php:730
1586
  msgid "Color"
1587
  msgstr ""
@@ -1819,8 +1857,8 @@ msgstr ""
1819
  #: templates/admin/getting-started/getting_started.inc.php:144
1820
  #: templates/admin/getting-started/getting_started.inc.php:156
1821
  #: templates/admin/getting-started/getting_started.inc.php:168
1822
- #: templates/admin/table-settings/table_settings_block.inc.php:105
1823
- #: templates/admin/table-settings/table_settings_block.inc.php:108
1824
  msgid "Available in Premium"
1825
  msgstr ""
1826
 
@@ -1953,11 +1991,6 @@ msgstr "data"
1953
  msgid "Axes"
1954
  msgstr ""
1955
 
1956
- #: templates/admin/chart_wizard/steps/step4.inc.php:17
1957
- #, fuzzy
1958
- msgid "Title"
1959
- msgstr "Naam:"
1960
-
1961
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1962
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1963
  msgid "Tooltip"
@@ -2057,6 +2090,8 @@ msgstr "Sorteren inschakelen"
2057
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2058
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2059
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
 
 
2060
  #, fuzzy
2061
  msgid "Background color"
2062
  msgstr "Achtergrondkleur van de Buttons"
@@ -2078,6 +2113,7 @@ msgstr ""
2078
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2079
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2080
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
 
2081
  #, fuzzy
2082
  msgid "Border color"
2083
  msgstr "Buttons border kleur"
@@ -2120,6 +2156,7 @@ msgstr ""
2120
 
2121
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2122
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
 
2123
  msgid "Font size"
2124
  msgstr ""
2125
 
@@ -2487,14 +2524,14 @@ msgstr ""
2487
  #: templates/admin/dashboard/dashboard.inc.php:30
2488
  #: templates/admin/getting-started/getting_started.inc.php:34
2489
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2490
- #: templates/admin/settings/settings.inc.php:96
2491
  #: templates/admin/support/support.inc.php:31
2492
  #: templates/admin/support/support.inc.php:47
2493
  #: templates/admin/system-info/system_info.inc.php:29
2494
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2495
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2496
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2497
- #: templates/admin/table-settings/table_settings_block.inc.php:1197
2498
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2499
  msgid "View Documentation"
2500
  msgstr ""
@@ -2725,181 +2762,182 @@ msgid "Version "
2725
  msgstr ""
2726
 
2727
  #: templates/admin/dashboard/dashboard.inc.php:340
2728
- msgid ""
2729
- "A minor update with a couple of features, bug fixes and stability "
2730
- "improvements:"
2731
  msgstr ""
2732
 
2733
  #: templates/admin/dashboard/dashboard.inc.php:345
2734
  msgid ""
2735
- "<strong>Feature:</strong> New option to set column data to be available/"
2736
- "disabled in global search results."
2737
  msgstr ""
2738
 
2739
  #: templates/admin/dashboard/dashboard.inc.php:346
2740
  msgid ""
2741
- "<strong>Feature:</strong> New option to set NOFOLLOW relation for links in "
2742
- "simple and data tables."
2743
  msgstr ""
2744
 
2745
  #: templates/admin/dashboard/dashboard.inc.php:347
2746
  msgid ""
2747
- "<strong>BugFix:</strong> Fixed issue with saving page in Divi builder with "
2748
- "simple table shortcode."
2749
  msgstr ""
2750
 
2751
  #: templates/admin/dashboard/dashboard.inc.php:348
2752
  msgid ""
2753
- "<strong>BugFix:</strong> Fixed issue with not showing tabs in backend after "
2754
- "switch."
2755
  msgstr ""
2756
 
2757
  #: templates/admin/dashboard/dashboard.inc.php:349
2758
  msgid ""
2759
- "<strong>BugFix:</strong> Fixed issue with tooltip in backend when is loaded "
2760
- "jQuery UI."
2761
  msgstr ""
2762
 
2763
  #: templates/admin/dashboard/dashboard.inc.php:350
 
 
 
 
2764
  msgid "Other small bug fixes and stability improvements."
2765
  msgstr ""
2766
 
2767
- #: templates/admin/dashboard/dashboard.inc.php:362
2768
  msgid "Go Premium!"
2769
  msgstr ""
2770
 
2771
- #: templates/admin/dashboard/dashboard.inc.php:368
2772
  msgid "View Comparison"
2773
  msgstr ""
2774
 
2775
- #: templates/admin/dashboard/dashboard.inc.php:376
2776
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2777
  msgid ""
2778
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2779
  "of the powerful features."
2780
  msgstr ""
2781
 
2782
- #: templates/admin/dashboard/dashboard.inc.php:380
2783
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2784
  msgid "Create a table manually"
2785
  msgstr ""
2786
 
2787
- #: templates/admin/dashboard/dashboard.inc.php:383
2788
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2789
  msgid "Creating tables from Google Spreadsheet"
2790
  msgstr ""
2791
 
2792
- #: templates/admin/dashboard/dashboard.inc.php:386
2793
  msgid ""
2794
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2795
  "tables via Google Sheet API"
2796
  msgstr ""
2797
 
2798
- #: templates/admin/dashboard/dashboard.inc.php:389
2799
  msgid ""
2800
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2801
  "tables from Private Google Spreadsheet"
2802
  msgstr ""
2803
 
2804
- #: templates/admin/dashboard/dashboard.inc.php:392
2805
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2806
  msgid "Creating MySQL-based tables from database"
2807
  msgstr ""
2808
 
2809
- #: templates/admin/dashboard/dashboard.inc.php:395
2810
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2811
  msgid "Creating MySQL-based tables from Wordpress post types"
2812
  msgstr ""
2813
 
2814
- #: templates/admin/dashboard/dashboard.inc.php:398
2815
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2816
  #: templates/edit_table.inc.php:329
2817
  msgid "Advanced filtering"
2818
  msgstr ""
2819
 
2820
- #: templates/admin/dashboard/dashboard.inc.php:401
2821
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2822
- #: templates/admin/table-settings/table_settings_block.inc.php:144
2823
  #: templates/edit_table.inc.php:282
2824
  msgid "Server-side processing"
2825
  msgstr "Server-side verwerking"
2826
 
2827
- #: templates/admin/dashboard/dashboard.inc.php:404
2828
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2829
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2830
  msgstr ""
2831
 
2832
- #: templates/admin/dashboard/dashboard.inc.php:407
2833
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2834
  msgid "Front-end table editing"
2835
  msgstr ""
2836
 
2837
- #: templates/admin/dashboard/dashboard.inc.php:410
2838
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2839
  msgid "Excel-like editing"
2840
  msgstr ""
2841
 
2842
- #: templates/admin/dashboard/dashboard.inc.php:413
2843
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2844
  msgid "Creating charts with Highcharts"
2845
  msgstr ""
2846
 
2847
- #: templates/admin/dashboard/dashboard.inc.php:416
2848
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2849
  msgid "Creating charts with Chart.js"
2850
  msgstr ""
2851
 
2852
- #: templates/admin/dashboard/dashboard.inc.php:419
2853
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2854
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2855
  #: templates/edit_table.inc.php:301
2856
  msgid "Responsive"
2857
  msgstr ""
2858
 
2859
- #: templates/admin/dashboard/dashboard.inc.php:422
2860
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2861
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2862
  #: templates/edit_table.inc.php:750
2863
  #, fuzzy
2864
  msgid "Conditional formatting"
2865
  msgstr "Extra instellingen"
2866
 
2867
- #: templates/admin/dashboard/dashboard.inc.php:425
2868
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2869
  msgid "Calculating Tools"
2870
  msgstr ""
2871
 
2872
- #: templates/admin/dashboard/dashboard.inc.php:428
2873
  msgid "Formula columns"
2874
  msgstr ""
2875
 
2876
- #: templates/admin/dashboard/dashboard.inc.php:431
2877
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2878
- #: templates/admin/table-settings/table_settings_block.inc.php:79
2879
  msgid "Placeholders"
2880
  msgstr ""
2881
 
2882
- #: templates/admin/dashboard/dashboard.inc.php:434
2883
  msgid "Premium support"
2884
  msgstr ""
2885
 
2886
- #: templates/admin/dashboard/dashboard.inc.php:438
2887
  msgid "Get Premium Today"
2888
  msgstr ""
2889
 
2890
- #: templates/admin/dashboard/dashboard.inc.php:445
2891
  msgid "News Blog"
2892
  msgstr ""
2893
 
2894
- #: templates/admin/dashboard/dashboard.inc.php:450
2895
  msgid "Checkout useful articles from wpdatatables.com"
2896
  msgstr ""
2897
 
2898
- #: templates/admin/dashboard/dashboard.inc.php:473
2899
  msgid "Please install and enable PHP extensions xml and dom on your server."
2900
  msgstr ""
2901
 
2902
- #: templates/admin/dashboard/dashboard.inc.php:481
2903
  msgid ""
2904
  "Never miss notifications about new cool features, promotions,\n"
2905
  " giveaways or freebies – subscribe to our "
@@ -2907,48 +2945,48 @@ msgid ""
2907
  " about 1 message per month and never spam!"
2908
  msgstr ""
2909
 
2910
- #: templates/admin/dashboard/dashboard.inc.php:499
2911
  msgid "Premium "
2912
  msgstr ""
2913
 
2914
- #: templates/admin/dashboard/dashboard.inc.php:502
2915
  msgid ""
2916
  "While wpDataTables itself provides quite a large amount of features and "
2917
  "unlimited customisation, flexibility, you can achieve even more with our "
2918
  "premium addons.(requires wpDataTables Premium version)"
2919
  msgstr ""
2920
 
2921
- #: templates/admin/dashboard/dashboard.inc.php:520
2922
  msgid ""
2923
  "A wpDataTables addon which allows showing additional details for a specific "
2924
  "row in a popup or a separate page or post."
2925
  msgstr ""
2926
 
2927
- #: templates/admin/dashboard/dashboard.inc.php:526
2928
- #: templates/admin/dashboard/dashboard.inc.php:553
2929
- #: templates/admin/dashboard/dashboard.inc.php:579
2930
- #: templates/admin/dashboard/dashboard.inc.php:606
2931
- #: templates/admin/dashboard/dashboard.inc.php:632
2932
- #: templates/admin/dashboard/dashboard.inc.php:665
2933
  msgid "Learn More"
2934
  msgstr ""
2935
 
2936
- #: templates/admin/dashboard/dashboard.inc.php:547
2937
  msgid ""
2938
  "An add-on for wpDataTables that provides powerful filtering features: "
2939
  "cascade filtering, applying filters on button click, hide table before "
2940
  "filtering."
2941
  msgstr ""
2942
 
2943
- #: templates/admin/dashboard/dashboard.inc.php:643
2944
  msgid "Need free booking plugin?"
2945
  msgstr ""
2946
 
2947
- #: templates/admin/dashboard/dashboard.inc.php:652
2948
  msgid "Appointments and Events WordPress Booking Plugin"
2949
  msgstr ""
2950
 
2951
- #: templates/admin/dashboard/dashboard.inc.php:655
2952
  msgid ""
2953
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2954
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2959,26 +2997,26 @@ msgid ""
2959
  "each month."
2960
  msgstr ""
2961
 
2962
- #: templates/admin/dashboard/dashboard.inc.php:658
2963
  msgid "Rating: 4.3 - ‎97 reviews"
2964
  msgstr ""
2965
 
2966
- #: templates/admin/dashboard/dashboard.inc.php:661
2967
  msgid "Free Download"
2968
  msgstr ""
2969
 
2970
- #: templates/admin/dashboard/dashboard.inc.php:676
2971
  #: templates/admin/getting-started/getting_started.inc.php:184
2972
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2973
  #: templates/admin/support/support.inc.php:78
2974
  #: templates/admin/system-info/system_info.inc.php:509
2975
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2976
  msgid "Made by"
2977
  msgstr ""
2978
 
2979
- #: templates/admin/dashboard/dashboard.inc.php:684
2980
  #: templates/admin/getting-started/getting_started.inc.php:192
2981
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2982
  #: templates/admin/support/support.inc.php:45
2983
  #: templates/admin/support/support.inc.php:86
2984
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2988,9 +3026,9 @@ msgstr ""
2988
  msgid "Documentation"
2989
  msgstr "wpDataTables documentatie"
2990
 
2991
- #: templates/admin/dashboard/dashboard.inc.php:688
2992
  #: templates/admin/getting-started/getting_started.inc.php:196
2993
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2994
  #: templates/admin/support/support.inc.php:24
2995
  #: templates/admin/support/support.inc.php:90
2996
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3116,7 +3154,7 @@ msgid "Lite vs Premium comparison"
3116
  msgstr ""
3117
 
3118
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3119
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3120
  msgid "Go Premium Now"
3121
  msgstr ""
3122
 
@@ -3129,7 +3167,7 @@ msgid "Lite"
3129
  msgstr ""
3130
 
3131
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3132
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:471
3133
  msgid "Premium"
3134
  msgstr ""
3135
 
@@ -3159,8 +3197,10 @@ msgstr ""
3159
 
3160
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3161
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3162
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3163
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
 
 
3164
  msgid "NEW!"
3165
  msgstr ""
3166
 
@@ -3177,15 +3217,16 @@ msgstr ""
3177
 
3178
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3179
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3180
- #: templates/admin/table-settings/table_settings_block.inc.php:626
3181
- #: templates/admin/table-settings/table_settings_block.inc.php:634
3182
  msgid "Sorting"
3183
  msgstr ""
3184
 
3185
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3186
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3187
- #: templates/admin/table-settings/table_settings_block.inc.php:489
3188
- #: templates/admin/table-settings/table_settings_block.inc.php:497
 
3189
  msgid "Pagination"
3190
  msgstr ""
3191
 
@@ -3212,7 +3253,7 @@ msgid "Customize charts"
3212
  msgstr ""
3213
 
3214
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3215
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:465
3216
  msgid "Limited"
3217
  msgstr ""
3218
 
@@ -3220,37 +3261,41 @@ msgstr ""
3220
  msgid "Some options are not available."
3221
  msgstr ""
3222
 
3223
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
3224
- msgid "Creating tables via Google Sheet API"
3225
  msgstr ""
3226
 
3227
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
 
 
 
 
3228
  msgid "Creating tables from Private Google Spreadsheet"
3229
  msgstr ""
3230
 
3231
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:461
3232
  msgid "Support"
3233
  msgstr ""
3234
 
3235
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:467
3236
  msgid "Response time is slow and can be up to 5 business days."
3237
  msgstr ""
3238
 
3239
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3240
  msgid ""
3241
  "* Please note that wpDataTables add-ons are not included in premium version "
3242
  "of plugin."
3243
  msgstr ""
3244
 
3245
  #: templates/admin/settings/settings.inc.php:33
3246
- #: templates/admin/settings/settings.inc.php:91
3247
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3248
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3249
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3250
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3251
  #: templates/admin/table-settings/table_preview_block.inc.php:89
3252
- #: templates/admin/table-settings/table_settings_block.inc.php:47
3253
  #: templates/admin/table-settings/table_settings_block.inc.php:48
 
3254
  msgid "Save Changes"
3255
  msgstr ""
3256
 
@@ -3275,16 +3320,23 @@ msgstr "Kleur en font instellingen"
3275
  msgid "Custom JS and CSS"
3276
  msgstr "Custom JS en CSS"
3277
 
3278
- #: templates/admin/settings/settings.inc.php:88 templates/settings.inc.php:434
 
 
 
 
3279
  msgid "Reset colors and fonts to default"
3280
  msgstr "Reset kleuren en fonts naar standaard"
3281
 
3282
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3283
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
 
 
3284
  msgid "Font"
3285
  msgstr ""
3286
 
3287
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
 
3288
  #: templates/settings.inc.php:428
3289
  msgid ""
3290
  "This font will be used in rendered tables. Leave blank not to override "
@@ -3294,6 +3346,7 @@ msgstr ""
3294
  "thema instellingen te gebruiken"
3295
 
3296
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
 
3297
  #, fuzzy
3298
  msgid "Define the font size"
3299
  msgstr "In de footer"
@@ -3301,41 +3354,50 @@ msgstr "In de footer"
3301
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3302
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3303
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
 
 
3304
  #, fuzzy
3305
  msgid "Font color"
3306
  msgstr "Tabel font kleur"
3307
 
3308
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
 
3309
  #, fuzzy
3310
  msgid "This color is used for the main font in table cells."
3311
  msgstr "Deze kleur wordt gebruikt voor de hoofdfont in de tabelcellen"
3312
 
3313
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3314
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
 
3315
  msgid "Header"
3316
  msgstr ""
3317
 
3318
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
 
3319
  #, fuzzy
3320
  msgid "The color is used for background of the table header."
3321
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de tabel header"
3322
 
3323
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
 
3324
  #, fuzzy
3325
  msgid "This color is used for the border in the table header."
3326
  msgstr "Deze kleur wordt gebruikt voor de border rondom de tabel header"
3327
 
3328
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
 
3329
  #, fuzzy
3330
  msgid "This color is used for the font in the table header."
3331
  msgstr "Deze kleur wordt gebruikt voor de font in de tabel header"
3332
 
3333
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
 
3334
  #, fuzzy
3335
  msgid "Active and hover color\t"
3336
  msgstr "Header actef en hover kleur"
3337
 
3338
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
 
3339
  #, fuzzy
3340
  msgid ""
3341
  "This color is used when you hover the mouse above the table header, or when "
@@ -3349,11 +3411,13 @@ msgid "Table border "
3349
  msgstr ""
3350
 
3351
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
 
3352
  #, fuzzy
3353
  msgid "Inner border"
3354
  msgstr "Binnenste borderkleur van de tabel"
3355
 
3356
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
 
3357
  #, fuzzy
3358
  msgid "This color is used for the inner border in the table between cells."
3359
  msgstr ""
@@ -3361,35 +3425,42 @@ msgstr ""
3361
  "cellen in"
3362
 
3363
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
 
3364
  #, fuzzy
3365
  msgid "Outer border"
3366
  msgstr "Tabel buitenste border kleur"
3367
 
3368
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
 
3369
  #, fuzzy
3370
  msgid "This color is used for the outer border of the whole table body."
3371
  msgstr ""
3372
  "Deze kleur wordt gebruikt voor de buitenste border, om de hele tabel heen"
3373
 
3374
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
 
3375
  #, fuzzy
3376
  msgid "Table borders"
3377
  msgstr "Tabel tools"
3378
 
3379
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
 
3380
  msgid "When this is checked, borders in table will be removed "
3381
  msgstr ""
3382
 
3383
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
 
3384
  msgid "Remove borders in table"
3385
  msgstr ""
3386
 
3387
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
 
3388
  #, fuzzy
3389
  msgid "Header border"
3390
  msgstr "Header border kleur"
3391
 
3392
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
 
3393
  msgid "When this is checked,borders in header will be removed "
3394
  msgstr ""
3395
 
@@ -3398,35 +3469,42 @@ msgid "Remove borders in header"
3398
  msgstr ""
3399
 
3400
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
 
3401
  msgid "Row color"
3402
  msgstr ""
3403
 
3404
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
 
3405
  #, fuzzy
3406
  msgid "Even row background"
3407
  msgstr "Even rijen achtergrond kleur"
3408
 
3409
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
 
3410
  #, fuzzy
3411
  msgid "This color is used for for background in even rows."
3412
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de even rijen"
3413
 
3414
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
 
3415
  #, fuzzy
3416
  msgid "Odd row background"
3417
  msgstr "Oneven rijen achtergrond kleur"
3418
 
3419
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
 
3420
  #, fuzzy
3421
  msgid "This color is used for for background in odd rows."
3422
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de oneven rijen"
3423
 
3424
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
 
3425
  #, fuzzy
3426
  msgid "Hover row"
3427
  msgstr "Hover rij kleur"
3428
 
3429
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
 
3430
  #, fuzzy
3431
  msgid ""
3432
  "This color is used for to highlight the row when you hover your mouse above "
@@ -3436,26 +3514,31 @@ msgstr ""
3436
  "erboven houdt"
3437
 
3438
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
 
3439
  #, fuzzy
3440
  msgid "Background for selected rows"
3441
  msgstr "Achtergrond kleur voor geselecteerde rijen"
3442
 
3443
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
 
3444
  #, fuzzy
3445
  msgid "This color is used for background in selected rows."
3446
  msgstr ""
3447
  "Deze kleur wordt gebruikt voor de achtergrond van de geselecteerde rijen"
3448
 
3449
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
 
3450
  msgid "Cell color"
3451
  msgstr ""
3452
 
3453
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
 
3454
  #, fuzzy
3455
  msgid "Sorted columns, even rows"
3456
  msgstr "Celkleur in actieve (gesorteerde) klommen voor even rijen"
3457
 
3458
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
 
3459
  #, fuzzy
3460
  msgid ""
3461
  "This color is used for background in cells which are in the active columns "
@@ -3465,10 +3548,12 @@ msgstr ""
3465
  "kolommen (deze die voor het sorteren worden gebruikt) in even rijen"
3466
 
3467
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
 
3468
  msgid "Sorted columns, odd rows"
3469
  msgstr ""
3470
 
3471
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
 
3472
  #, fuzzy
3473
  msgid ""
3474
  "This color is used for background in cells which are in the active columns "
@@ -3588,41 +3673,49 @@ msgstr ""
3588
  "plugin popups"
3589
 
3590
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
 
3591
  #, fuzzy
3592
  msgid "This color is used for the background of the pagination"
3593
  msgstr "Deze kleur wordt gebruikt voor de achtergrondkleur van de Buttons"
3594
 
3595
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
 
3596
  #, fuzzy
3597
  msgid "This color is used for the color of the links in the pagination."
3598
  msgstr ""
3599
  "Deze kleur wordt gebruikt voor de buitenste border, om de hele tabel heen"
3600
 
3601
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
 
3602
  #, fuzzy
3603
  msgid "Current page background color"
3604
  msgstr "Header achtergrond kleur"
3605
 
3606
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
 
3607
  #, fuzzy
3608
  msgid "The color is used for background of the current page"
3609
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de tabel header"
3610
 
3611
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
 
3612
  msgid "Current page color"
3613
  msgstr ""
3614
 
3615
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
 
3616
  #, fuzzy
3617
  msgid "This color is used for the color of the current page."
3618
  msgstr "Deze kleur wordt gebruikt voor de border rondom de tabel header"
3619
 
3620
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
 
3621
  #, fuzzy
3622
  msgid "Other pages hover background color"
3623
  msgstr "Header achtergrond kleur"
3624
 
3625
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
 
3626
  #, fuzzy
3627
  msgid ""
3628
  "This background color is used when you hover the mouse above the other pages"
@@ -3631,11 +3724,13 @@ msgstr ""
3631
  "of wanneer je een kolom kiest"
3632
 
3633
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
 
3634
  #, fuzzy
3635
  msgid "Other pages hover color"
3636
  msgstr "Header actef en hover kleur"
3637
 
3638
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
 
3639
  #, fuzzy
3640
  msgid "This color is used when you hover the mouse above the other pages."
3641
  msgstr ""
@@ -3654,6 +3749,7 @@ msgid ""
3654
  msgstr ""
3655
 
3656
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
 
3657
  #: templates/settings.inc.php:463
3658
  msgid "Custom wpDataTables CSS"
3659
  msgstr ""
@@ -3674,16 +3770,19 @@ msgid "Use minified version of Javascript files"
3674
  msgstr ""
3675
 
3676
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
 
3677
  #: templates/settings.inc.php:45
3678
  msgid "Interface language"
3679
  msgstr "Interface taal"
3680
 
3681
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
 
3682
  #, fuzzy
3683
  msgid "Pick the language which will be used in tables interface."
3684
  msgstr "Kies de taal welke in de tabel zijn interface wordt gebruikt"
3685
 
3686
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
 
3687
  msgid "English (default)"
3688
  msgstr ""
3689
 
@@ -3697,82 +3796,90 @@ msgstr "Datum format"
3697
  msgid "Pick the date format to use in date column type."
3698
  msgstr "Kies de datumformat welke in de datumkolom wordt gebruikt"
3699
 
3700
- #: templates/admin/settings/tabs/main_plugin_settings.php:73
3701
  #: templates/settings.inc.php:119
3702
  #, fuzzy
3703
  msgid "Time format"
3704
  msgstr "Nummer format"
3705
 
3706
- #: templates/admin/settings/tabs/main_plugin_settings.php:75
3707
  #, fuzzy
3708
  msgid "Pick the time format to use in datetime and time column type."
3709
  msgstr "Kies de datumformat welke in de datumkolom wordt gebruikt"
3710
 
3711
- #: templates/admin/settings/tabs/main_plugin_settings.php:90
3712
  msgid "Parse shortcodes"
3713
  msgstr ""
3714
 
3715
- #: templates/admin/settings/tabs/main_plugin_settings.php:92
3716
  msgid ""
3717
  "If the option is enabled, you can use shortcodes of other plugins for "
3718
  "generating content."
3719
  msgstr ""
3720
 
3721
- #: templates/admin/settings/tabs/main_plugin_settings.php:96
3722
  #, fuzzy
3723
  msgid "Parse shortcodes in strings"
3724
  msgstr "Data bron en hoofd instellingen"
3725
 
3726
- #: templates/admin/settings/tabs/main_plugin_settings.php:103
 
3727
  #: templates/settings.inc.php:74
3728
  msgid "Base skin"
3729
  msgstr "Standaard skin"
3730
 
3731
- #: templates/admin/settings/tabs/main_plugin_settings.php:105
 
3732
  #, fuzzy
3733
  msgid "Choose the base skin for the plugin."
3734
  msgstr "Kies een skin voor de plugin"
3735
 
3736
- #: templates/admin/settings/tabs/main_plugin_settings.php:111
 
3737
  msgid "Material"
3738
  msgstr ""
3739
 
3740
- #: templates/admin/settings/tabs/main_plugin_settings.php:112
 
3741
  msgid "Light"
3742
  msgstr ""
3743
 
3744
- #: templates/admin/settings/tabs/main_plugin_settings.php:113
 
3745
  msgid "Graphite"
3746
  msgstr ""
3747
 
3748
- #: templates/admin/settings/tabs/main_plugin_settings.php:114
 
3749
  msgid "Aqua"
3750
  msgstr ""
3751
 
3752
- #: templates/admin/settings/tabs/main_plugin_settings.php:115
 
3753
  msgid "Purple"
3754
  msgstr ""
3755
 
3756
- #: templates/admin/settings/tabs/main_plugin_settings.php:116
 
3757
  msgid "Dark"
3758
  msgstr ""
3759
 
3760
- #: templates/admin/settings/tabs/main_plugin_settings.php:124
3761
  #: templates/settings.inc.php:131
3762
  msgid "Number format"
3763
  msgstr "Nummer format"
3764
 
3765
- #: templates/admin/settings/tabs/main_plugin_settings.php:126
3766
  #: templates/settings.inc.php:138
3767
  msgid "Pick the number format (thousands and decimals separator)"
3768
  msgstr "Kies de nummerformat (duizenden en decimalen scheider)"
3769
 
3770
- #: templates/admin/settings/tabs/main_plugin_settings.php:143
3771
  #: templates/settings.inc.php:86
3772
  msgid "Render advanced filter"
3773
  msgstr "Render geavanceerd filter"
3774
 
3775
- #: templates/admin/settings/tabs/main_plugin_settings.php:145
3776
  #, fuzzy
3777
  msgid ""
3778
  "Choose where you would like to render the advanced filter for tables where "
@@ -3781,204 +3888,204 @@ msgstr ""
3781
  "Kies waar je wilt dat het geavanceerde filter voor de tabel wordt gerenderd "
3782
  "als deze geactiveerd is"
3783
 
3784
- #: templates/admin/settings/tabs/main_plugin_settings.php:151
3785
  #: templates/settings.inc.php:90
3786
  msgid "In the header"
3787
  msgstr "In de header"
3788
 
3789
- #: templates/admin/settings/tabs/main_plugin_settings.php:152
3790
  #: templates/settings.inc.php:91
3791
  msgid "In the footer"
3792
  msgstr "In de footer"
3793
 
3794
- #: templates/admin/settings/tabs/main_plugin_settings.php:160
3795
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3796
  #: templates/settings.inc.php:143
3797
  msgid "Decimal places"
3798
  msgstr "Decimaal plaatsen"
3799
 
3800
- #: templates/admin/settings/tabs/main_plugin_settings.php:162
3801
  #, fuzzy
3802
  msgid "Define the amount of decimal places for the float numbers."
3803
  msgstr "Kies het aantal decimaalplaatsen voor de zwevende getallen"
3804
 
3805
- #: templates/admin/settings/tabs/main_plugin_settings.php:187
3806
  msgid "CSV delimiter"
3807
  msgstr ""
3808
 
3809
- #: templates/admin/settings/tabs/main_plugin_settings.php:189
3810
  msgid "Pick the CSV delimiter"
3811
  msgstr ""
3812
 
3813
- #: templates/admin/settings/tabs/main_plugin_settings.php:208
3814
  msgid "Tables sorting direction in admin page"
3815
  msgstr ""
3816
 
3817
- #: templates/admin/settings/tabs/main_plugin_settings.php:210
3818
  msgid ""
3819
  "Here you can set sorting direction by id for browse tables and charts. By "
3820
  "default is ascending order."
3821
  msgstr ""
3822
 
3823
- #: templates/admin/settings/tabs/main_plugin_settings.php:216
3824
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3825
  #: templates/edit_table.inc.php:663
3826
  msgid "Ascending"
3827
  msgstr "Oplopend"
3828
 
3829
- #: templates/admin/settings/tabs/main_plugin_settings.php:217
3830
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3831
  #: templates/edit_table.inc.php:665
3832
  msgid "Descending"
3833
  msgstr "Aflopend"
3834
 
3835
- #: templates/admin/settings/tabs/main_plugin_settings.php:228
3836
  #: templates/settings.inc.php:171
3837
  msgid "Tablet width"
3838
  msgstr "Tablet breedte"
3839
 
3840
- #: templates/admin/settings/tabs/main_plugin_settings.php:230
3841
  #: templates/settings.inc.php:175
3842
  msgid ""
3843
  "Here you can specify width of the screen (in pixels) that will be treated as "
3844
  "a tablet. You can set it wider if you want responsive effect on desktops."
3845
  msgstr ""
3846
 
3847
- #: templates/admin/settings/tabs/main_plugin_settings.php:254
3848
  #: templates/settings.inc.php:181
3849
  msgid "Mobile width"
3850
  msgstr "Mobiele breedte"
3851
 
3852
- #: templates/admin/settings/tabs/main_plugin_settings.php:256
3853
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3854
  msgstr ""
3855
 
3856
- #: templates/admin/settings/tabs/main_plugin_settings.php:281
3857
  #: templates/settings.inc.php:61
3858
  msgid "Tables per admin page"
3859
  msgstr "Tabellen per adminpagina"
3860
 
3861
- #: templates/admin/settings/tabs/main_plugin_settings.php:283
3862
  #, fuzzy
3863
  msgid "How many tables to show in the browse page."
3864
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
3865
 
3866
- #: templates/admin/settings/tabs/main_plugin_settings.php:299
3867
  #, fuzzy
3868
  msgid "Align numbers"
3869
  msgstr "Sorteer nummers aan de rechter kant"
3870
 
3871
- #: templates/admin/settings/tabs/main_plugin_settings.php:301
3872
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3873
  msgstr ""
3874
 
3875
- #: templates/admin/settings/tabs/main_plugin_settings.php:305
3876
  #: templates/settings.inc.php:161
3877
  msgid "Align numbers to the right"
3878
  msgstr ""
3879
 
3880
- #: templates/admin/settings/tabs/main_plugin_settings.php:315
3881
  msgid "Sum functions label"
3882
  msgstr ""
3883
 
3884
- #: templates/admin/settings/tabs/main_plugin_settings.php:317
3885
  msgid ""
3886
  "Enter a label that will be used for Sum functions. If you leave it blank "
3887
  "default label will be Σ ="
3888
  msgstr ""
3889
 
3890
- #: templates/admin/settings/tabs/main_plugin_settings.php:335
3891
  msgid "Average functions label"
3892
  msgstr ""
3893
 
3894
- #: templates/admin/settings/tabs/main_plugin_settings.php:337
3895
  msgid ""
3896
  "Enter a label that will be used for Average functions. If you leave it blank "
3897
  "default label will be Avg ="
3898
  msgstr ""
3899
 
3900
- #: templates/admin/settings/tabs/main_plugin_settings.php:360
3901
  msgid "Minimum functions label"
3902
  msgstr ""
3903
 
3904
- #: templates/admin/settings/tabs/main_plugin_settings.php:362
3905
  msgid ""
3906
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3907
  "default label will be Min ="
3908
  msgstr ""
3909
 
3910
- #: templates/admin/settings/tabs/main_plugin_settings.php:380
3911
  msgid "Maximum functions label"
3912
  msgstr ""
3913
 
3914
- #: templates/admin/settings/tabs/main_plugin_settings.php:382
3915
  msgid ""
3916
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3917
  "default label will be Max ="
3918
  msgstr ""
3919
 
3920
- #: templates/admin/settings/tabs/main_plugin_settings.php:408
3921
  msgid "Include full bootstrap front-end"
3922
  msgstr ""
3923
 
3924
- #: templates/admin/settings/tabs/main_plugin_settings.php:410
3925
- #: templates/admin/settings/tabs/main_plugin_settings.php:421
3926
  msgid ""
3927
  "It is recommended to uncheck this option if bootstrap.js is already included "
3928
  "in one of the theme files. Unchecked option means that there is still "
3929
  "bootstrap.js included just in noconflict mode which should prevent errors."
3930
  msgstr ""
3931
 
3932
- #: templates/admin/settings/tabs/main_plugin_settings.php:414
3933
  msgid "Include full bootstrap.js on the front-end"
3934
  msgstr ""
3935
 
3936
- #: templates/admin/settings/tabs/main_plugin_settings.php:419
3937
  msgid "Include full bootstrap back-end"
3938
  msgstr ""
3939
 
3940
- #: templates/admin/settings/tabs/main_plugin_settings.php:425
3941
  msgid "Include full bootstrap.js on the back-end"
3942
  msgstr ""
3943
 
3944
- #: templates/admin/settings/tabs/main_plugin_settings.php:433
3945
- #: templates/admin/settings/tabs/main_plugin_settings.php:439
3946
  #: templates/settings.inc.php:32
3947
  msgid "Show plugin credentials below tables"
3948
  msgstr ""
3949
 
3950
- #: templates/admin/settings/tabs/main_plugin_settings.php:435
3951
  #: templates/settings.inc.php:32
3952
  msgid ""
3953
  "If you want to support our project, please, keep this checkbox as checked"
3954
  msgstr ""
3955
 
3956
- #: templates/admin/settings/tabs/main_plugin_settings.php:444
3957
  msgid "Prevent deleting tables in database"
3958
  msgstr ""
3959
 
3960
- #: templates/admin/settings/tabs/main_plugin_settings.php:446
3961
  msgid ""
3962
  "It is recommended to leave this option as checked if you what to keep your "
3963
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3964
  "this option, it will be deleted all tables in database after deleting plugin"
3965
  msgstr ""
3966
 
3967
- #: templates/admin/settings/tabs/main_plugin_settings.php:450
3968
  msgid ""
3969
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3970
  msgstr ""
3971
 
3972
- #: templates/admin/settings/tabs/main_plugin_settings.php:457
3973
  msgid "Remove Getting Started page"
3974
  msgstr ""
3975
 
3976
- #: templates/admin/settings/tabs/main_plugin_settings.php:459
3977
  msgid ""
3978
  "Check this option if you want to remove Getting Started page from admin menu."
3979
  msgstr ""
3980
 
3981
- #: templates/admin/settings/tabs/main_plugin_settings.php:463
3982
  msgid "Remove \"Getting Started\" page from admin menu."
3983
  msgstr ""
3984
 
@@ -4252,10 +4359,6 @@ msgstr "ID kolom"
4252
  msgid "Column header"
4253
  msgstr "Kolomgrafiek"
4254
 
4255
- #: templates/admin/table-settings/add_column_modal.inc.php:47
4256
- msgid "Type"
4257
- msgstr ""
4258
-
4259
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4260
  msgid "Insert after"
4261
  msgstr ""
@@ -4295,7 +4398,7 @@ msgstr "Kolom positie"
4295
 
4296
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4297
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4298
- #: templates/admin/table-settings/table_settings_block.inc.php:63
4299
  #, fuzzy
4300
  msgid "Display"
4301
  msgstr "Display lengte"
@@ -4309,7 +4412,7 @@ msgid "Global Filtering"
4309
  msgstr ""
4310
 
4311
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4312
- #: templates/admin/table-settings/table_settings_block.inc.php:71
4313
  #, fuzzy
4314
  msgid "Editing"
4315
  msgstr "Aanpassen"
@@ -4760,7 +4863,7 @@ msgid "Allow filtering"
4760
  msgstr "Geavanceerde filtering"
4761
 
4762
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4763
- #: templates/admin/table-settings/table_settings_block.inc.php:665
4764
  msgid "Global search"
4765
  msgstr ""
4766
 
@@ -5323,27 +5426,27 @@ msgid "Clear data"
5323
  msgstr ""
5324
 
5325
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5326
- #: templates/admin/table-settings/table_settings_block.inc.php:199
5327
  #: templates/edit_table.inc.php:58
5328
  msgid "Table title"
5329
  msgstr "Tabel titel"
5330
 
5331
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5332
- #: templates/admin/table-settings/table_settings_block.inc.php:207
5333
  #: templates/edit_table.inc.php:67
5334
  #, fuzzy
5335
  msgid "Show table title"
5336
  msgstr "Nieuwe tabelnaam"
5337
 
5338
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5339
- #: templates/admin/table-settings/table_settings_block.inc.php:214
5340
  msgid ""
5341
  "Enable this to show the table title in a h3 block above the table, disable "
5342
  "to hide."
5343
  msgstr ""
5344
 
5345
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5346
- #: templates/admin/table-settings/table_settings_block.inc.php:222
5347
  #, fuzzy
5348
  msgid "Show table title on the page"
5349
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
@@ -5411,55 +5514,55 @@ msgid "Scrollable"
5411
  msgstr ""
5412
 
5413
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5414
- #: templates/admin/table-settings/table_settings_block.inc.php:363
5415
  msgid "Scrollable table"
5416
  msgstr ""
5417
 
5418
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5419
- #: templates/admin/table-settings/table_settings_block.inc.php:370
5420
  msgid "Enable this to enable a horizontal scrollbar below the table."
5421
  msgstr ""
5422
 
5423
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5424
- #: templates/admin/table-settings/table_settings_block.inc.php:379
5425
  msgid "Show a horizontal scrollbar"
5426
  msgstr ""
5427
 
5428
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5429
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5430
- #: templates/admin/table-settings/table_settings_block.inc.php:423
5431
- #: templates/admin/table-settings/table_settings_block.inc.php:431
5432
  #, fuzzy
5433
  msgid "Limit table width"
5434
  msgstr "Limiteer tabel layout"
5435
 
5436
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5437
- #: templates/admin/table-settings/table_settings_block.inc.php:438
5438
  msgid "Enable this to restrict table width to page width."
5439
  msgstr ""
5440
 
5441
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5442
- #: templates/admin/table-settings/table_settings_block.inc.php:447
5443
  msgid "Limit table width to page width"
5444
  msgstr ""
5445
 
5446
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5447
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5448
- #: templates/admin/table-settings/table_settings_block.inc.php:454
5449
- #: templates/admin/table-settings/table_settings_block.inc.php:462
5450
  #: templates/edit_table.inc.php:392
5451
  msgid "Word wrap"
5452
  msgstr "Woord wrap"
5453
 
5454
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5455
- #: templates/admin/table-settings/table_settings_block.inc.php:469
5456
  msgid ""
5457
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5458
  "height."
5459
  msgstr ""
5460
 
5461
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5462
- #: templates/admin/table-settings/table_settings_block.inc.php:477
5463
  msgid "Wrap words to newlines"
5464
  msgstr ""
5465
 
@@ -5524,57 +5627,61 @@ msgstr ""
5524
  msgid "EXCEL-LIKE"
5525
  msgstr ""
5526
 
5527
- #: templates/admin/table-settings/table_settings_block.inc.php:67
5528
  #, fuzzy
5529
  msgid "Sorting and filtering"
5530
  msgstr "Geavanceerde filtering"
5531
 
5532
- #: templates/admin/table-settings/table_settings_block.inc.php:75
5533
- #: templates/admin/table-settings/table_settings_block.inc.php:990
5534
  #, fuzzy
5535
  msgid "Table Tools"
5536
  msgstr "Tabel tools"
5537
 
5538
- #: templates/admin/table-settings/table_settings_block.inc.php:97
 
 
 
 
5539
  msgid ""
5540
  "Please choose a type of the input data source - it can be a MySQL query, a "
5541
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5542
  msgstr ""
5543
 
5544
- #: templates/admin/table-settings/table_settings_block.inc.php:104
5545
  #, fuzzy
5546
  msgid "Select a data source type"
5547
  msgstr "Selecteer een tabel type..."
5548
 
5549
- #: templates/admin/table-settings/table_settings_block.inc.php:105
5550
  msgid "SQL query "
5551
  msgstr ""
5552
 
5553
- #: templates/admin/table-settings/table_settings_block.inc.php:106
5554
  #: templates/edit_table.inc.php:85
5555
  msgid "CSV file"
5556
  msgstr "CSV bestand"
5557
 
5558
- #: templates/admin/table-settings/table_settings_block.inc.php:107
5559
  #: templates/edit_table.inc.php:86
5560
  msgid "Excel file"
5561
  msgstr "Excel bestand"
5562
 
5563
- #: templates/admin/table-settings/table_settings_block.inc.php:108
5564
  msgid "Google Spreadsheet "
5565
  msgstr ""
5566
 
5567
- #: templates/admin/table-settings/table_settings_block.inc.php:109
5568
  #: templates/edit_table.inc.php:89
5569
  msgid "XML file"
5570
  msgstr "XML bestand"
5571
 
5572
- #: templates/admin/table-settings/table_settings_block.inc.php:110
5573
  #: templates/edit_table.inc.php:90
5574
  msgid "JSON file"
5575
  msgstr "JSON bestand"
5576
 
5577
- #: templates/admin/table-settings/table_settings_block.inc.php:124
5578
  msgid ""
5579
  "Upload your file or provide the full URL here. For CSV or Excel input "
5580
  "sources only URLs or paths from same domain are supported. For Google "
@@ -5582,31 +5689,31 @@ msgid ""
5582
  "the URL."
5583
  msgstr ""
5584
 
5585
- #: templates/admin/table-settings/table_settings_block.inc.php:130
5586
  msgid "Paste URL or path, or click Browse to choose"
5587
  msgstr ""
5588
 
5589
- #: templates/admin/table-settings/table_settings_block.inc.php:134
5590
  msgid "Browse..."
5591
  msgstr ""
5592
 
5593
- #: templates/admin/table-settings/table_settings_block.inc.php:146
5594
  msgid ""
5595
  "If it is turned on, all sorting, filtering, pagination and other data "
5596
  "interaction will be done by MySQL server. This feature is recommended if you "
5597
  "have more than 2000-3000 rows. Mandatory for editable tables."
5598
  msgstr ""
5599
 
5600
- #: templates/admin/table-settings/table_settings_block.inc.php:151
5601
  #, fuzzy
5602
  msgid "Enable server-side processing"
5603
  msgstr "Server-side verwerking"
5604
 
5605
- #: templates/admin/table-settings/table_settings_block.inc.php:165
5606
  msgid "MySQL Query"
5607
  msgstr ""
5608
 
5609
- #: templates/admin/table-settings/table_settings_block.inc.php:167
5610
  msgid ""
5611
  "Enter the text of your MySQL query here - please make sure it returns actual "
5612
  "data first. You can use a number of placeholders to make the dataset in the "
@@ -5614,338 +5721,338 @@ msgid ""
5614
  "with different shortcodes."
5615
  msgstr ""
5616
 
5617
- #: templates/admin/table-settings/table_settings_block.inc.php:174
5618
  #: templates/edit_table.inc.php:292
5619
  msgid "Auto-refresh"
5620
  msgstr ""
5621
 
5622
- #: templates/admin/table-settings/table_settings_block.inc.php:176
5623
  msgid ""
5624
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5625
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5626
  "refresh."
5627
  msgstr ""
5628
 
5629
- #: templates/admin/table-settings/table_settings_block.inc.php:181
5630
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5631
  msgstr ""
5632
 
5633
- #: templates/admin/table-settings/table_settings_block.inc.php:230
5634
  #, fuzzy
5635
  msgid "Responsiveness"
5636
  msgstr "Responsive"
5637
 
5638
- #: templates/admin/table-settings/table_settings_block.inc.php:238
5639
  #, fuzzy
5640
  msgid "Responsive design"
5641
  msgstr "Responsive"
5642
 
5643
- #: templates/admin/table-settings/table_settings_block.inc.php:245
5644
  msgid "Enable this to allow responsiveness in the table."
5645
  msgstr ""
5646
 
5647
- #: templates/admin/table-settings/table_settings_block.inc.php:246
5648
  msgid ""
5649
  "Please do not forget to define which columns will be hidden on mobiles and "
5650
  "tablets in the column settings!"
5651
  msgstr ""
5652
 
5653
- #: templates/admin/table-settings/table_settings_block.inc.php:254
5654
  msgid "Allow collapsing on mobiles and tablets"
5655
  msgstr ""
5656
 
5657
- #: templates/admin/table-settings/table_settings_block.inc.php:262
5658
  msgid "Hide until loaded"
5659
  msgstr ""
5660
 
5661
- #: templates/admin/table-settings/table_settings_block.inc.php:264
5662
  msgid ""
5663
  "Enable to make whole table hidden until it is initialized to prevent "
5664
  "unformatted data flashing"
5665
  msgstr ""
5666
 
5667
- #: templates/admin/table-settings/table_settings_block.inc.php:269
5668
  #, fuzzy
5669
  msgid "Hide the table before it is fully loaded"
5670
  msgstr "Verberg tabel tot de pagina volledig geladen is"
5671
 
5672
- #: templates/admin/table-settings/table_settings_block.inc.php:281
5673
  msgid "Default rows per page"
5674
  msgstr ""
5675
 
5676
- #: templates/admin/table-settings/table_settings_block.inc.php:289
5677
- #: templates/admin/table-settings/table_settings_block.inc.php:324
5678
  msgid "Rows per page"
5679
  msgstr ""
5680
 
5681
- #: templates/admin/table-settings/table_settings_block.inc.php:296
5682
  #, fuzzy
5683
  msgid "How many rows to show per page by default."
5684
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
5685
 
5686
- #: templates/admin/table-settings/table_settings_block.inc.php:332
5687
  #, fuzzy
5688
  msgid "Show X entries"
5689
  msgstr "data"
5690
 
5691
- #: templates/admin/table-settings/table_settings_block.inc.php:339
5692
  msgid ""
5693
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5694
  "frontend."
5695
  msgstr ""
5696
 
5697
- #: templates/admin/table-settings/table_settings_block.inc.php:347
5698
  msgid "Show \"Show X entries\" dropdown"
5699
  msgstr ""
5700
 
5701
- #: templates/admin/table-settings/table_settings_block.inc.php:371
5702
  msgid "This should be turned off if you want to set columns width manually."
5703
  msgstr ""
5704
 
5705
- #: templates/admin/table-settings/table_settings_block.inc.php:392
5706
- #: templates/admin/table-settings/table_settings_block.inc.php:400
5707
  msgid "Info block"
5708
  msgstr ""
5709
 
5710
- #: templates/admin/table-settings/table_settings_block.inc.php:407
5711
  msgid ""
5712
  "Enable to show a block of information about the number of records below the "
5713
  "table."
5714
  msgstr ""
5715
 
5716
- #: templates/admin/table-settings/table_settings_block.inc.php:415
5717
  msgid "Show information block below the table"
5718
  msgstr ""
5719
 
5720
- #: templates/admin/table-settings/table_settings_block.inc.php:439
5721
  msgid ""
5722
  "This should be turned on if you want to set columns width manually. Should "
5723
  "be on to use word wrapping."
5724
  msgstr ""
5725
 
5726
- #: templates/admin/table-settings/table_settings_block.inc.php:501
5727
  msgid "Enable to show a pagination"
5728
  msgstr ""
5729
 
5730
- #: templates/admin/table-settings/table_settings_block.inc.php:509
5731
  msgid "Show pagination block below the table"
5732
  msgstr ""
5733
 
5734
- #: templates/admin/table-settings/table_settings_block.inc.php:517
5735
- #: templates/admin/table-settings/table_settings_block.inc.php:525
5736
  msgid "Pagination Alignment"
5737
  msgstr ""
5738
 
5739
- #: templates/admin/table-settings/table_settings_block.inc.php:529
5740
  msgid "Here you can set pagination position: right, center or left."
5741
  msgstr ""
5742
 
5743
- #: templates/admin/table-settings/table_settings_block.inc.php:537
5744
  msgid "Right"
5745
  msgstr ""
5746
 
5747
- #: templates/admin/table-settings/table_settings_block.inc.php:538
5748
  msgid "Center"
5749
  msgstr ""
5750
 
5751
- #: templates/admin/table-settings/table_settings_block.inc.php:539
5752
  msgid "Left"
5753
  msgstr ""
5754
 
5755
- #: templates/admin/table-settings/table_settings_block.inc.php:548
5756
- #: templates/admin/table-settings/table_settings_block.inc.php:556
5757
  msgid "Pagination Layout"
5758
  msgstr ""
5759
 
5760
- #: templates/admin/table-settings/table_settings_block.inc.php:560
5761
  msgid "Here you can choose between different pagination layout."
5762
  msgstr ""
5763
 
5764
- #: templates/admin/table-settings/table_settings_block.inc.php:568
5765
  msgid ""
5766
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5767
  msgstr ""
5768
 
5769
- #: templates/admin/table-settings/table_settings_block.inc.php:569
5770
  msgid "\"Previous\" and \"Next\" buttons only"
5771
  msgstr ""
5772
 
5773
- #: templates/admin/table-settings/table_settings_block.inc.php:570
5774
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5775
  msgstr ""
5776
 
5777
- #: templates/admin/table-settings/table_settings_block.inc.php:571
5778
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5779
  msgstr ""
5780
 
5781
- #: templates/admin/table-settings/table_settings_block.inc.php:572
5782
  msgid "Page number buttons only"
5783
  msgstr ""
5784
 
5785
- #: templates/admin/table-settings/table_settings_block.inc.php:573
5786
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5787
  msgstr ""
5788
 
5789
- #: templates/admin/table-settings/table_settings_block.inc.php:595
5790
  #, fuzzy
5791
  msgid "Advanced column filters"
5792
  msgstr "Geavanceerde filtering"
5793
 
5794
- #: templates/admin/table-settings/table_settings_block.inc.php:603
5795
  #, fuzzy
5796
  msgid "Advanced filter"
5797
  msgstr "Geavanceerde filtering"
5798
 
5799
- #: templates/admin/table-settings/table_settings_block.inc.php:610
5800
  msgid ""
5801
  "Enable to show an advanced filter for each of the columns, filters can be "
5802
  "shown in table footer, header or in a separate form."
5803
  msgstr ""
5804
 
5805
- #: templates/admin/table-settings/table_settings_block.inc.php:618
5806
  #, fuzzy
5807
  msgid "Enable advanced column filters"
5808
  msgstr "Render geavanceerd filter"
5809
 
5810
- #: templates/admin/table-settings/table_settings_block.inc.php:641
5811
  msgid ""
5812
  "If this is enabled, each column header will be clickable; clicking will sort "
5813
  "the whole table by the content of this column cells ascending or descending."
5814
  msgstr ""
5815
 
5816
- #: templates/admin/table-settings/table_settings_block.inc.php:649
5817
  #, fuzzy
5818
  msgid "Allow sorting for the table"
5819
  msgstr "Onder de grafiek/diagram"
5820
 
5821
- #: templates/admin/table-settings/table_settings_block.inc.php:657
5822
  msgid "Main search block"
5823
  msgstr ""
5824
 
5825
- #: templates/admin/table-settings/table_settings_block.inc.php:672
5826
  msgid ""
5827
  "If this is enabled, a search block will be displayed on the top right of the "
5828
  "table, allowing to search through whole table with a single input."
5829
  msgstr ""
5830
 
5831
- #: templates/admin/table-settings/table_settings_block.inc.php:680
5832
  msgid "Enable search block"
5833
  msgstr ""
5834
 
5835
- #: templates/admin/table-settings/table_settings_block.inc.php:694
5836
  #, fuzzy
5837
  msgid "Filters in a form"
5838
  msgstr "Filter in formulier"
5839
 
5840
- #: templates/admin/table-settings/table_settings_block.inc.php:701
5841
  #: templates/edit_table.inc.php:340
5842
  msgid "Filter in form"
5843
  msgstr "Filter in formulier"
5844
 
5845
- #: templates/admin/table-settings/table_settings_block.inc.php:708
5846
  msgid ""
5847
  "Enable to show the advanced column filter in a form above the table, instead "
5848
  "of showing in the table footer/header."
5849
  msgstr ""
5850
 
5851
- #: templates/admin/table-settings/table_settings_block.inc.php:716
5852
  msgid "Show filters in a form above the table"
5853
  msgstr ""
5854
 
5855
- #: templates/admin/table-settings/table_settings_block.inc.php:724
5856
  #, fuzzy
5857
  msgid "Clear filters button"
5858
  msgstr "Leeg filters"
5859
 
5860
- #: templates/admin/table-settings/table_settings_block.inc.php:731
5861
  #: templates/frontend/filter_form.inc.php:32
5862
  msgid "Clear filters"
5863
  msgstr "Leeg filters"
5864
 
5865
- #: templates/admin/table-settings/table_settings_block.inc.php:735
5866
  msgid "Enable to show the clear filters button."
5867
  msgstr ""
5868
 
5869
- #: templates/admin/table-settings/table_settings_block.inc.php:736
5870
  msgid ""
5871
  "If filter in form is enabled, clear button will be rendered after the last "
5872
  "filter."
5873
  msgstr ""
5874
 
5875
- #: templates/admin/table-settings/table_settings_block.inc.php:741
5876
  msgid ""
5877
  "Otherwise, clear filter button will be rendered above the table next to "
5878
  "\"Table Tools\" buttons."
5879
  msgstr ""
5880
 
5881
- #: templates/admin/table-settings/table_settings_block.inc.php:753
5882
  #, fuzzy
5883
  msgid "Show clear filters button"
5884
  msgstr "Leeg filters"
5885
 
5886
- #: templates/admin/table-settings/table_settings_block.inc.php:773
5887
  #, fuzzy
5888
  msgid "Allow editing"
5889
  msgstr "Front-end aanpassen"
5890
 
5891
- #: templates/admin/table-settings/table_settings_block.inc.php:781
5892
  #: templates/edit_table.inc.php:180
5893
  msgid "Front-end editing"
5894
  msgstr "Front-end aanpassen"
5895
 
5896
- #: templates/admin/table-settings/table_settings_block.inc.php:788
5897
  #, fuzzy
5898
  msgid "Allow editing the table from the front-end."
5899
  msgstr "Maak tabel aanpasbaar vanaf de front-end"
5900
 
5901
- #: templates/admin/table-settings/table_settings_block.inc.php:796
5902
  #, fuzzy
5903
  msgid "Allow front-end editing"
5904
  msgstr "Front-end aanpassen"
5905
 
5906
- #: templates/admin/table-settings/table_settings_block.inc.php:804
5907
  msgid "Popover edit block"
5908
  msgstr ""
5909
 
5910
- #: templates/admin/table-settings/table_settings_block.inc.php:812
5911
  #: templates/edit_table.inc.php:232
5912
  msgid "Popover tools"
5913
  msgstr ""
5914
 
5915
- #: templates/admin/table-settings/table_settings_block.inc.php:819
5916
  msgid ""
5917
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5918
  "popover when you click on any row, instead of Table Tools block above the "
5919
  "table."
5920
  msgstr ""
5921
 
5922
- #: templates/admin/table-settings/table_settings_block.inc.php:827
5923
  msgid "Editing buttons in a popover"
5924
  msgstr ""
5925
 
5926
- #: templates/admin/table-settings/table_settings_block.inc.php:835
5927
- #: templates/admin/table-settings/table_settings_block.inc.php:843
5928
  #, fuzzy
5929
  msgid "In-line editing"
5930
  msgstr "Front-end aanpassen"
5931
 
5932
- #: templates/admin/table-settings/table_settings_block.inc.php:850
5933
  msgid ""
5934
  "If this is enabled, front-end users will be able to edit cells by double-"
5935
  "clicking them, not only with the editor dialog."
5936
  msgstr ""
5937
 
5938
- #: templates/admin/table-settings/table_settings_block.inc.php:858
5939
  #, fuzzy
5940
  msgid "Allow in-line editing"
5941
  msgstr "Front-end aanpassen"
5942
 
5943
- #: templates/admin/table-settings/table_settings_block.inc.php:873
5944
  #: templates/edit_table.inc.php:192
5945
  msgid "MySQL table name for editing"
5946
  msgstr "MySQL tabel naam voor aanpassen"
5947
 
5948
- #: templates/admin/table-settings/table_settings_block.inc.php:875
5949
  #, fuzzy
5950
  msgid ""
5951
  "Name of the MySQL table which will be updated when edited from front-end."
@@ -5953,18 +6060,18 @@ msgstr ""
5953
  "Naam van de MySQL tabel welke gebruikt wordt voor aanpassingen vanaf de "
5954
  "front-end"
5955
 
5956
- #: templates/admin/table-settings/table_settings_block.inc.php:880
5957
  #, fuzzy
5958
  msgid "MySQL table name"
5959
  msgstr "MySQL database naam"
5960
 
5961
- #: templates/admin/table-settings/table_settings_block.inc.php:889
5962
  #: templates/edit_table.inc.php:203
5963
  #, fuzzy
5964
  msgid "ID column for editing"
5965
  msgstr "MySQL tabel naam voor aanpassen"
5966
 
5967
- #: templates/admin/table-settings/table_settings_block.inc.php:891
5968
  msgid ""
5969
  "Choose the column values from which will be used as row identifiers. MUST be "
5970
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
@@ -5972,12 +6079,12 @@ msgid ""
5972
  "\"id\" or \"ID\" on MySQL side."
5973
  msgstr ""
5974
 
5975
- #: templates/admin/table-settings/table_settings_block.inc.php:905
5976
  #: templates/edit_table.inc.php:267
5977
  msgid "Editor roles"
5978
  msgstr "Editor rollen"
5979
 
5980
- #: templates/admin/table-settings/table_settings_block.inc.php:907
5981
  #, fuzzy
5982
  msgid ""
5983
  "If you want only specific user roles to be able to edit the table, choose in "
@@ -5986,138 +6093,206 @@ msgstr ""
5986
  "Rollen welke de tabel mogen aanpassen (blanco laten zodat iedereen "
5987
  "aanpassingen kan doen)"
5988
 
5989
- #: templates/admin/table-settings/table_settings_block.inc.php:912
5990
  msgid "Everyone"
5991
  msgstr ""
5992
 
5993
- #: templates/admin/table-settings/table_settings_block.inc.php:913
5994
  msgid "Administrators"
5995
  msgstr ""
5996
 
5997
- #: templates/admin/table-settings/table_settings_block.inc.php:914
5998
  msgid "Editors"
5999
  msgstr ""
6000
 
6001
- #: templates/admin/table-settings/table_settings_block.inc.php:915
6002
  msgid "Authors"
6003
  msgstr ""
6004
 
6005
- #: templates/admin/table-settings/table_settings_block.inc.php:916
6006
  msgid "Contributors"
6007
  msgstr ""
6008
 
6009
- #: templates/admin/table-settings/table_settings_block.inc.php:917
6010
  msgid "Subscribers"
6011
  msgstr ""
6012
 
6013
- #: templates/admin/table-settings/table_settings_block.inc.php:932
6014
  msgid "Users see and edit only own data"
6015
  msgstr ""
6016
 
6017
- #: templates/admin/table-settings/table_settings_block.inc.php:940
6018
  msgid "Users see and edit only their own data"
6019
  msgstr ""
6020
 
6021
- #: templates/admin/table-settings/table_settings_block.inc.php:947
6022
  msgid ""
6023
  "If this is enabled, users will see and edit only the rows that are related "
6024
  "to them or were created by them (associated using the User ID column)."
6025
  msgstr ""
6026
 
6027
- #: templates/admin/table-settings/table_settings_block.inc.php:955
6028
  msgid "Limit editing to own data only"
6029
  msgstr ""
6030
 
6031
- #: templates/admin/table-settings/table_settings_block.inc.php:963
6032
  #: templates/edit_table.inc.php:250
6033
  #, fuzzy
6034
  msgid "User ID column"
6035
  msgstr "ID kolom"
6036
 
6037
- #: templates/admin/table-settings/table_settings_block.inc.php:965
6038
  msgid ""
6039
  "Choose the column values from which will be used as User identifiers. "
6040
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
6041
  "an integer on MySQL side."
6042
  msgstr ""
6043
 
6044
- #: templates/admin/table-settings/table_settings_block.inc.php:998
6045
  #: templates/edit_table.inc.php:350
6046
  msgid "Table tools"
6047
  msgstr "Tabel tools"
6048
 
6049
- #: templates/admin/table-settings/table_settings_block.inc.php:1005
6050
  msgid ""
6051
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6052
  msgstr ""
6053
 
6054
- #: templates/admin/table-settings/table_settings_block.inc.php:1013
6055
  #, fuzzy
6056
  msgid "Enable Table Tools"
6057
  msgstr "Tabel tools"
6058
 
6059
- #: templates/admin/table-settings/table_settings_block.inc.php:1021
6060
  msgid "Buttons"
6061
  msgstr ""
6062
 
6063
- #: templates/admin/table-settings/table_settings_block.inc.php:1023
6064
  msgid "Choose which buttons to show in the Table Tools block."
6065
  msgstr ""
6066
 
6067
- #: templates/admin/table-settings/table_settings_block.inc.php:1029
6068
  #, fuzzy
6069
  msgid "Columns visibility"
6070
  msgstr "Kolom type"
6071
 
6072
- #: templates/admin/table-settings/table_settings_block.inc.php:1051
6073
  msgid ""
6074
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6075
  "that will be replaced with some actual values at the execution time; usually "
6076
- "this is used for MySQL queries."
 
 
6077
  msgstr ""
6078
 
6079
- #: templates/admin/table-settings/table_settings_block.inc.php:1063
6080
- #: templates/admin/table-settings/table_settings_block.inc.php:1078
6081
- #: templates/admin/table-settings/table_settings_block.inc.php:1093
6082
  msgid ""
6083
  "This placeholder will be replaced with any value that you will provide in a "
6084
  "shortcode. Provide a default value here that will be used for table "
6085
  "generation and when a different one is not defined in the shortcode."
6086
  msgstr ""
6087
 
6088
- #: templates/admin/table-settings/table_settings_block.inc.php:1083
6089
- #: templates/admin/table-settings/table_settings_block.inc.php:1098
6090
- #: templates/admin/table-settings/table_settings_block.inc.php:1120
6091
- #: templates/admin/table-settings/table_settings_block.inc.php:1138
6092
- #: templates/admin/table-settings/table_settings_block.inc.php:1155
6093
- #: templates/admin/table-settings/table_settings_block.inc.php:1176
 
 
 
 
 
 
 
6094
  msgid "Default for table generation"
6095
  msgstr ""
6096
 
6097
- #: templates/admin/table-settings/table_settings_block.inc.php:1114
6098
  msgid ""
6099
  "This placeholder will be replaced with the ID of currently logged in user. "
6100
  "Provide a value here to be used for table generation"
6101
  msgstr ""
6102
 
6103
- #: templates/admin/table-settings/table_settings_block.inc.php:1130
6104
  msgid ""
6105
  "This placeholder will be replaced with the login of currently logged in "
6106
  "user. Provide a value here to be used for table generation"
6107
  msgstr ""
6108
 
6109
- #: templates/admin/table-settings/table_settings_block.inc.php:1148
6110
  msgid ""
6111
- "This placeholder will be replaced with the current prefix of WordPress "
6112
- "database. Provide a value here to be used for table generation"
6113
  msgstr ""
6114
 
6115
- #: templates/admin/table-settings/table_settings_block.inc.php:1171
6116
  msgid ""
6117
  "This placeholder will be replaced with the ID of current post. Provide a "
6118
  "value here to be used for table generation"
6119
  msgstr ""
6120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6121
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6122
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6123
  msgid "Go to Dashboard"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
+ "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
156
  msgid "Go Premium"
157
  msgstr ""
158
 
159
+ #: controllers/wdt_admin.php:517 controllers/wdt_admin.php:566
160
+ #: controllers/wdt_admin.php:609 controllers/wdt_admin.php:630
161
+ #: controllers/wdt_admin.php:677 controllers/wdt_admin.php:703
162
+ #: controllers/wdt_admin.php:722 controllers/wdt_admin.php:742
163
+ #: controllers/wdt_admin.php:761 controllers/wdt_admin.php:781
164
+ #: controllers/wdt_admin.php:801 controllers/wdt_admin.php:821
165
+ #: controllers/wdt_admin.php:840
166
  msgid "You do not have sufficient permissions to access this page."
167
  msgstr "Je hebt niet voldoende permissies om de pagina te laden."
168
 
270
  "placeholders and also for Export file name."
271
  msgstr ""
272
 
273
+ #: source/class.wdtbrowsechartstable.php:29 source/class.wdtbrowsetable.php:30
274
+ msgid "ID"
275
+ msgstr ""
276
+
277
+ #: source/class.wdtbrowsechartstable.php:30 source/class.wdtbrowsetable.php:31
278
+ #: templates/admin/chart_wizard/steps/step4.inc.php:17
279
+ #, fuzzy
280
+ msgid "Title"
281
+ msgstr "Naam:"
282
+
283
+ #: source/class.wdtbrowsechartstable.php:31
284
+ msgid "Render Engine"
285
+ msgstr ""
286
+
287
+ #: source/class.wdtbrowsechartstable.php:32
288
+ msgid "Chart Type"
289
+ msgstr ""
290
+
291
+ #: source/class.wdtbrowsechartstable.php:33 source/class.wdtbrowsetable.php:33
292
+ msgid "Shortcode"
293
+ msgstr ""
294
+
295
  #: source/class.wdtbrowsechartstable.php:141
296
  #: source/class.wdtbrowsetable.php:168
297
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
315
  msgstr ""
316
 
317
  #: source/class.wdtbrowsechartstable.php:162
318
+ #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
319
  #: templates/admin/browse/bulk_actions.inc.php:14
320
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
321
  msgid "Delete"
408
  msgid "No wpDataCharts in the system yet."
409
  msgstr "Nog geen wpDataTables in het systeem"
410
 
411
+ #: source/class.wdtbrowsetable.php:32
412
+ #: templates/admin/table-settings/add_column_modal.inc.php:47
413
+ msgid "Type"
414
+ msgstr ""
415
+
416
  #: source/class.wdtbrowsetable.php:231
417
  #, fuzzy
418
  msgid "MySQL"
422
  msgid "Manual"
423
  msgstr ""
424
 
425
+ #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2188
426
+ #: source/class.wpdatatable.php:2258
427
+ #: templates/admin/table-settings/table_settings_block.inc.php:1050
428
  #, fuzzy
429
  msgid "Excel"
430
  msgstr "Excel bestand"
431
 
432
+ #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2197
433
+ #: source/class.wpdatatable.php:2268
434
+ #: templates/admin/table-settings/table_settings_block.inc.php:1051
435
  msgid "CSV"
436
  msgstr ""
437
 
445
  msgstr "JSON bestand"
446
 
447
  #: source/class.wdtbrowsetable.php:249
448
+ #: templates/admin/table-settings/table_settings_block.inc.php:120
449
  #: templates/edit_table.inc.php:91
450
  msgid "Serialized PHP array"
451
  msgstr "Serialized PHP array"
537
  msgid "Attachment"
538
  msgstr "Upload bijlage"
539
 
540
+ #: source/class.wdttools.php:78
541
  msgid ""
542
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
543
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
544
  "to the web</b> "
545
  msgstr ""
546
 
547
+ #: source/class.wdttools.php:206
548
  msgid "Back to date"
549
  msgstr ""
550
 
551
+ #: source/class.wdttools.php:207
552
  msgid "Browse"
553
  msgstr ""
554
 
555
+ #: source/class.wdttools.php:208 source/class.wdttools.php:330
556
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
557
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
558
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
570
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
571
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
572
  #: templates/admin/table-settings/table_preview_block.inc.php:86
573
+ #: templates/admin/table-settings/table_settings_block.inc.php:41
574
  #: templates/common/delete_modal.inc.php:39
575
  msgid "Cancel"
576
  msgstr "Annuleren"
577
 
578
+ #: source/class.wdttools.php:209
579
  #, fuzzy
580
  msgid " field cannot be empty!"
581
  msgstr "Tabel type mag niet leeg zijn"
582
 
583
+ #: source/class.wdttools.php:210
584
  msgid "Use selected file"
585
  msgstr ""
586
 
587
+ #: source/class.wdttools.php:211
588
  #, fuzzy
589
  msgid "Choose file"
590
  msgstr "Kies rollen"
591
 
592
+ #: source/class.wdttools.php:212 templates/admin/common/error_modal.inc.php:23
593
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
594
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
595
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
597
  msgid "Close"
598
  msgstr "Sluiten"
599
 
600
+ #: source/class.wdttools.php:213
601
  msgid "Column has been added!"
602
  msgstr ""
603
 
604
+ #: source/class.wdttools.php:214
605
  #, fuzzy
606
  msgid "Column header cannot be empty!"
607
  msgstr "Tabel type mag niet leeg zijn"
608
 
609
+ #: source/class.wdttools.php:215
610
  msgid "Please confirm column deletion!"
611
  msgstr ""
612
 
613
+ #: source/class.wdttools.php:216
614
  msgid "Column has been removed!"
615
  msgstr ""
616
 
617
+ #: source/class.wdttools.php:217
618
  msgid "Please select columns that you want to use in table"
619
  msgstr ""
620
 
621
+ #: source/class.wdttools.php:218 source/class.wpdatatable.php:2206
622
+ #: source/class.wpdatatable.php:2278
623
+ #: templates/admin/table-settings/table_settings_block.inc.php:1052
624
  msgid "Copy"
625
  msgstr ""
626
 
627
+ #: source/class.wdttools.php:219
628
  msgid "There was an error trying to insert a new row!"
629
  msgstr ""
630
 
631
+ #: source/class.wdttools.php:220
632
  msgid "Data has been saved!"
633
  msgstr ""
634
 
635
+ #: source/class.wdttools.php:221
636
  msgid "detach"
637
  msgstr ""
638
 
639
+ #: source/class.wdttools.php:223
640
  msgid "Delete selected"
641
  msgstr ""
642
 
643
+ #: source/class.wdttools.php:224 templates/settings.inc.php:553
644
  #: templates/settings.inc.php:627
645
  msgid "Error!"
646
  msgstr "Fout!"
647
 
648
+ #: source/class.wdttools.php:225
649
  msgid "Please upload or choose a file from Media Library!"
650
  msgstr ""
651
 
652
+ #: source/class.wdttools.php:226
653
  msgid "From"
654
  msgstr ""
655
 
656
+ #: source/class.wdttools.php:227
657
  msgid "Please provide a valid e-mail address for field"
658
  msgstr ""
659
 
660
+ #: source/class.wdttools.php:228
661
  msgid "Please provide a valid URL link for field"
662
  msgstr ""
663
 
664
+ #: source/class.wdttools.php:229
665
  msgid "You have entered invalid value. Press ESC to cancel."
666
  msgstr ""
667
 
668
+ #: source/class.wdttools.php:230 source/class.wdttools.php:260
669
  msgid "Show _MENU_ entries"
670
  msgstr ""
671
 
672
+ #: source/class.wdttools.php:231
673
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
674
  msgid "Merge"
675
  msgstr ""
676
 
677
+ #: source/class.wdttools.php:232
678
  #, fuzzy
679
  msgid "New column"
680
  msgstr "ID kolom"
681
 
682
+ #: source/class.wdttools.php:233
683
  msgid "Number of columns can not be empty or 0"
684
  msgstr ""
685
 
686
+ #: source/class.wdttools.php:234
687
  msgid "Number of rows can not be empty or 0"
688
  msgstr ""
689
 
690
+ #: source/class.wdttools.php:236
691
  msgid ": activate to sort column ascending"
692
  msgstr ""
693
 
694
+ #: source/class.wdttools.php:237
695
  msgid ": activate to sort column descending"
696
  msgstr ""
697
 
698
+ #: source/class.wdttools.php:239
699
  msgid "Ok"
700
  msgstr ""
701
 
702
+ #: source/class.wdttools.php:241
703
  msgid "First"
704
  msgstr ""
705
 
706
+ #: source/class.wdttools.php:242
707
  msgid "Last"
708
  msgstr ""
709
 
710
+ #: source/class.wdttools.php:243
711
  msgid "Next"
712
  msgstr "Volgende"
713
 
714
+ #: source/class.wdttools.php:244
715
  #, fuzzy
716
  msgid "Previous"
717
  msgstr "Preview"
718
 
719
+ #: source/class.wdttools.php:246
720
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
721
  msgid "Replace"
722
  msgstr ""
723
 
724
+ #: source/class.wdttools.php:247
725
  msgid "Row has been deleted!"
726
  msgstr ""
727
 
728
+ #: source/class.wdttools.php:248
729
+ msgid "Save chart"
730
+ msgstr ""
731
+
732
+ #: source/class.wdttools.php:249
733
  msgid "Select a file to use in table"
734
  msgstr ""
735
 
736
+ #: source/class.wdttools.php:250
737
  #, fuzzy
738
  msgid "Select an Excel or CSV file"
739
  msgstr "Selecteer Excel of CSV besand"
740
 
741
+ #: source/class.wdttools.php:251
742
  msgid "No data available in table"
743
  msgstr ""
744
 
745
+ #: source/class.wdttools.php:252
746
  #, fuzzy
747
  msgid "Plugin settings saved successfully"
748
  msgstr "Instellingen zijn opgeslagen"
749
 
750
+ #: source/class.wdttools.php:253
751
  msgid ""
752
  "Unable to save settings of plugin. Please try again or contact us over "
753
  "Support page."
754
  msgstr ""
755
 
756
+ #: source/class.wdttools.php:254
757
  msgid "Shortcode has been copied to the clipboard."
758
  msgstr ""
759
 
760
+ #: source/class.wdttools.php:255
761
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
762
  msgstr ""
763
 
764
+ #: source/class.wdttools.php:256
765
  msgid "Showing 0 to 0 of 0 entries"
766
  msgstr ""
767
 
768
+ #: source/class.wdttools.php:257
769
  msgid "(filtered from _MAX_ total entries)"
770
  msgstr ""
771
 
772
+ #: source/class.wdttools.php:259
773
  msgid ","
774
  msgstr ""
775
 
776
+ #: source/class.wdttools.php:261
777
  msgid "Loading..."
778
  msgstr ""
779
 
780
+ #: source/class.wdttools.php:262
781
  msgid "Processing..."
782
  msgstr ""
783
 
784
+ #: source/class.wdttools.php:263
785
  #, fuzzy
786
  msgid "SQL error"
787
  msgstr "MySQL gebruiker"
788
 
789
+ #: source/class.wdttools.php:264
790
  msgid "Search: "
791
  msgstr ""
792
 
793
+ #: source/class.wdttools.php:265 templates/settings.inc.php:559
794
  #: templates/settings.inc.php:625
795
  msgid "Success!"
796
  msgstr "Succes!"
797
 
798
+ #: source/class.wdttools.php:266
799
  msgid "No matching records found"
800
  msgstr ""
801
 
802
+ #: source/class.wdttools.php:267
803
  msgid ""
804
  "System info data has been copied to the clipboard. You can now paste it in "
805
  "file or in support topic."
806
  msgstr ""
807
 
808
+ #: source/class.wdttools.php:268
809
  msgid "Table saved successfully!"
810
  msgstr "Tabel succesvol opgeslagen!"
811
 
812
+ #: source/class.wdttools.php:269
813
  msgid "To"
814
  msgstr ""
815
 
816
+ #: source/class.wdttools.php:305
817
  #: templates/admin/common/premium_modal.inc.php:17
818
+ #: templates/admin/table-settings/table_settings_block.inc.php:1072
819
+ #: templates/admin/table-settings/table_settings_block.inc.php:1348
820
  msgid "This is a premium feature"
821
  msgstr ""
822
 
823
+ #: source/class.wdttools.php:306
824
  #: templates/admin/common/premium_modal.inc.php:26
825
+ #: templates/admin/table-settings/table_settings_block.inc.php:1073
826
+ #: templates/admin/table-settings/table_settings_block.inc.php:1349
827
  msgid "This feature is available only in premium version of wpDataTables"
828
  msgstr ""
829
 
830
+ #: source/class.wdttools.php:307
831
  #: templates/admin/getting-started/getting_started.inc.php:133
832
  #: templates/admin/getting-started/getting_started.inc.php:145
833
  #: templates/admin/getting-started/getting_started.inc.php:157
834
  #: templates/admin/getting-started/getting_started.inc.php:169
835
+ #: templates/admin/table-settings/table_settings_block.inc.php:1077
836
+ #: templates/admin/table-settings/table_settings_block.inc.php:1353
837
  msgid "Compare and View Pricing"
838
  msgstr ""
839
 
840
+ #: source/class.wdttools.php:326
841
  msgid "Field cannot be empty!"
842
  msgstr ""
843
 
844
+ #: source/class.wdttools.php:327
845
  msgid "Please choose chart type."
846
  msgstr ""
847
 
848
+ #: source/class.wdttools.php:328
849
  msgid "Please select wpDataTable from dropdown."
850
  msgstr ""
851
 
852
+ #: source/class.wdttools.php:329
853
  msgid "Columns field cannot be empty"
854
  msgstr ""
855
 
856
+ #: source/class.wdttools.php:331
857
  msgid ""
858
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
859
  "clicking on Cancel button."
860
  msgstr ""
861
 
862
+ #: source/class.wdttools.php:332
863
  msgid "Finish Tutorial"
864
  msgstr ""
865
 
866
+ #: source/class.wdttools.php:333
867
  msgid "Continue"
868
  msgstr ""
869
 
870
+ #: source/class.wdttools.php:334
871
  msgid "Start"
872
  msgstr ""
873
 
874
+ #: source/class.wdttools.php:335
875
  msgid "Skip Tutorial"
876
  msgstr ""
877
 
878
+ #: source/class.wdttools.php:338 source/class.wdttools.php:404
879
+ #: source/class.wdttools.php:446
880
  msgid "Welcome to the tutorial!"
881
  msgstr ""
882
 
883
+ #: source/class.wdttools.php:339 source/class.wdttools.php:405
884
+ #: source/class.wdttools.php:447
885
  msgid "Hello "
886
  msgstr ""
887
 
888
+ #: source/class.wdttools.php:339
889
  msgid ""
890
  ", in this tutorial, we will show you how to create a simple table from "
891
  "scratch by choosing a custom number of columns and rows. How to customize "
892
  "each cell, merge cells and a lot more."
893
  msgstr ""
894
 
895
+ #: source/class.wdttools.php:342
896
  msgid " Let's create a new wpDataTable from scratch!"
897
  msgstr ""
898
 
899
+ #: source/class.wdttools.php:343 source/class.wdttools.php:409
900
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
901
  msgstr ""
902
 
903
+ #: source/class.wdttools.php:346
904
  msgid "Choose this option"
905
  msgstr ""
906
 
907
+ #: source/class.wdttools.php:347
908
  msgid "Please select 'Create a simple table from scratch'."
909
  msgstr ""
910
 
911
+ #: source/class.wdttools.php:350 source/class.wdttools.php:416
912
  msgid "Click Next"
913
  msgstr ""
914
 
915
+ #: source/class.wdttools.php:351 source/class.wdttools.php:417
916
  msgid "Please click the 'Next' button to continue."
917
  msgstr ""
918
 
919
+ #: source/class.wdttools.php:354
920
  msgid "Welcome to the Simple table wizard!"
921
  msgstr ""
922
 
923
+ #: source/class.wdttools.php:355
924
  msgid "Please click 'Continue' button to move on."
925
  msgstr ""
926
 
927
+ #: source/class.wdttools.php:358
928
  msgid "Choose a name for your table"
929
  msgstr ""
930
 
931
+ #: source/class.wdttools.php:359
932
  msgid "After inserting table name, click 'Continue' to move on."
933
  msgstr ""
934
 
935
+ #: source/class.wdttools.php:362
936
  msgid "Choose the number of columns for your table"
937
  msgstr ""
938
 
939
+ #: source/class.wdttools.php:363
940
  msgid ""
941
  "Please choose how many columns it will have. Remember that you can always "
942
  "add or reduce the number of columns later. Click 'Continue' when you finish."
943
  msgstr ""
944
 
945
+ #: source/class.wdttools.php:366
946
  msgid "Choose the number of rows for your table."
947
  msgstr ""
948
 
949
+ #: source/class.wdttools.php:367
950
  msgid ""
951
  "Please choose how many rows it will have. Remember that you can always add "
952
  "or reduce the number of rows later. Click 'Continue' when you finish."
953
  msgstr ""
954
 
955
+ #: source/class.wdttools.php:370
956
  msgid "Click on the 'Generate Table' button"
957
  msgstr ""
958
 
959
+ #: source/class.wdttools.php:371
960
  msgid "When you click on the button, the empty table will be ready for you. "
961
  msgstr ""
962
 
963
+ #: source/class.wdttools.php:374
964
  msgid "We are generating the table..."
965
  msgstr ""
966
 
967
+ #: source/class.wdttools.php:375
968
  msgid "Please, when you see the table, click 'Continue' to move on."
969
  msgstr ""
970
 
971
+ #: source/class.wdttools.php:378
972
  msgid ""
973
  "Nice job! You just configured your table and it is ready to fill it with "
974
  "data."
975
  msgstr ""
976
 
977
+ #: source/class.wdttools.php:379
978
  msgid ""
979
  "Now we will guide you on how to insert data and check table layout throw "
980
  "Simple table editor, table toolbar and table preview. Please click "
981
  "'Continue' to move on."
982
  msgstr ""
983
 
984
+ #: source/class.wdttools.php:382
985
  msgid "This is Simple table editor"
986
  msgstr ""
987
 
988
+ #: source/class.wdttools.php:383
989
  msgid ""
990
  "Here you can populate your table with data. <br><br>You can move around the "
991
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
994
  "line of the row header. Click 'Continue' to move on."
995
  msgstr ""
996
 
997
+ #: source/class.wdttools.php:386
998
  msgid "Check out the Simple table toolbar"
999
  msgstr ""
1000
 
1001
+ #: source/class.wdttools.php:387
1002
  msgid ""
1003
  "Here you can style and insert custom data for each cell or range of cells. "
1004
  "You can add or delete columns and rows, merge cells, customize sections by "
1006
  "ratings or custom HTML code."
1007
  msgstr ""
1008
 
1009
+ #: source/class.wdttools.php:390
1010
  msgid "Responsive table views"
1011
  msgstr ""
1012
 
1013
+ #: source/class.wdttools.php:391
1014
  msgid ""
1015
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
1016
  "tab that you need, so you can make sure your table looks excellent across "
1017
  "all devices. "
1018
  msgstr ""
1019
 
1020
+ #: source/class.wdttools.php:394
1021
  msgid "Real-time preview"
1022
  msgstr ""
1023
 
1024
+ #: source/class.wdttools.php:395
1025
  msgid ""
1026
  "Here you will see how your table will look like on the page. Please click "
1027
  "'Continue' to move on."
1028
  msgstr ""
1029
 
1030
+ #: source/class.wdttools.php:398
1031
  msgid "Congrats! Your table is ready."
1032
  msgstr ""
1033
 
1034
+ #: source/class.wdttools.php:399
1035
  msgid ""
1036
  "Now you can copy the shortcode for this table, and check out how it looks on "
1037
  "your website when you paste it to a post or page. You can always come back "
1038
  "and edit the table as you like."
1039
  msgstr ""
1040
 
1041
+ #: source/class.wdttools.php:405
1042
  msgid ""
1043
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
1044
  "existing data source. \"Linked\" in this context means that if you create a "
1047
  "reflected in the table."
1048
  msgstr ""
1049
 
1050
+ #: source/class.wdttools.php:408
1051
  msgid "Let's create a new wpDataTable!"
1052
  msgstr ""
1053
 
1054
+ #: source/class.wdttools.php:412
1055
  msgid "Choose this option."
1056
  msgstr ""
1057
 
1058
+ #: source/class.wdttools.php:413
1059
  msgid "Please select 'Create a table linked to an existing data source'."
1060
  msgstr ""
1061
 
1062
+ #: source/class.wdttools.php:420
1063
+ #: templates/admin/table-settings/table_settings_block.inc.php:101
1064
  #, fuzzy
1065
  msgid "Input data source type"
1066
  msgstr "Tabel invoer data bron mag niet leeg zijn"
1067
 
1068
+ #: source/class.wdttools.php:421
1069
  msgid "Please select a data source type that you need."
1070
  msgstr ""
1071
 
1072
+ #: source/class.wdttools.php:424
1073
  msgid "Select Data source type"
1074
  msgstr ""
1075
 
1076
+ #: source/class.wdttools.php:425
1077
  msgid ""
1078
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1079
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1080
  "are available in Premium version)"
1081
  msgstr ""
1082
 
1083
+ #: source/class.wdttools.php:428
1084
+ #: templates/admin/table-settings/table_settings_block.inc.php:131
1085
  #, fuzzy
1086
  msgid "Input file path or URL"
1087
  msgstr "Voer bestand of URL in"
1088
 
1089
+ #: source/class.wdttools.php:429
1090
  msgid ""
1091
  "Upload your file or provide the full URL here. When you finish click "
1092
  "'Continue' button."
1093
  msgstr ""
1094
 
1095
+ #: source/class.wdttools.php:432
1096
  msgid "Click Save Changes"
1097
  msgstr ""
1098
 
1099
+ #: source/class.wdttools.php:433
1100
  msgid ""
1101
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1102
  "get an error message after button click and you are not able to solve it, "
1105
  "click Skip tutorial."
1106
  msgstr ""
1107
 
1108
+ #: source/class.wdttools.php:436
1109
  msgid "The table is creating..."
1110
  msgstr ""
1111
 
1112
+ #: source/class.wdttools.php:437
1113
  msgid ""
1114
  "Now the table is creating. Wait until you see it in the background and then "
1115
  "click 'Continue'."
1116
  msgstr ""
1117
 
1118
+ #: source/class.wdttools.php:440
1119
  msgid "Nice job! You just created your first wpDataTable!"
1120
  msgstr ""
1121
 
1122
+ #: source/class.wdttools.php:441
1123
  msgid ""
1124
  "Now you can copy the shortcode for this table, and check out how it looks on "
1125
  "your website when you paste it to a post or page."
1126
  msgstr ""
1127
 
1128
+ #: source/class.wdttools.php:447
1129
  msgid ""
1130
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1131
  "plugin."
1132
  msgstr ""
1133
 
1134
+ #: source/class.wdttools.php:450
1135
  msgid "Let's create a new wpDataTables Chart!"
1136
  msgstr ""
1137
 
1138
+ #: source/class.wdttools.php:451
1139
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1140
  msgstr ""
1141
 
1142
+ #: source/class.wdttools.php:454
1143
  msgid "Welcome to the Chart Wizard!"
1144
  msgstr ""
1145
 
1146
+ #: source/class.wdttools.php:455
1147
  msgid ""
1148
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1149
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1150
  msgstr ""
1151
 
1152
+ #: source/class.wdttools.php:458
1153
  msgid "Follow the steps in the Chart Wizard"
1154
  msgstr ""
1155
 
1156
+ #: source/class.wdttools.php:459
1157
  msgid ""
1158
  "By following these steps, you will finish building your chart in the Chart "
1159
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1160
  "'Continue' button to move forward."
1161
  msgstr ""
1162
 
1163
+ #: source/class.wdttools.php:462
1164
  msgid "Choose a name for your Chart"
1165
  msgstr ""
1166
 
1167
+ #: source/class.wdttools.php:463
1168
  msgid "Click 'Continue' button when you’re ready to move forward."
1169
  msgstr ""
1170
 
1171
+ #: source/class.wdttools.php:466
1172
  msgid "In wpDataTables you can find several charts render engines."
1173
  msgstr ""
1174
 
1175
+ #: source/class.wdttools.php:467
1176
  msgid ""
1177
  "Click on the dropdown, and you will see several options that you can choose "
1178
  "from.(Google charts are only available) <br><br>To continue, click on the "
1179
  "dropdown."
1180
  msgstr ""
1181
 
1182
+ #: source/class.wdttools.php:470
1183
  msgid "Choose Google chart engine."
1184
  msgstr ""
1185
 
1186
+ #: source/class.wdttools.php:471
1187
  msgid ""
1188
  "By clicking on Google chart options, you will choose the engine that will "
1189
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1190
  "to move forward."
1191
  msgstr ""
1192
 
1193
+ #: source/class.wdttools.php:474
1194
  msgid "Different charts types. "
1195
  msgstr ""
1196
 
1197
+ #: source/class.wdttools.php:475
1198
  msgid ""
1199
  "Here you can choose a chart type. Please, click on the chart type that you "
1200
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1201
  "forward."
1202
  msgstr ""
1203
 
1204
+ #: source/class.wdttools.php:478
1205
  msgid "The first step is finished!"
1206
  msgstr ""
1207
 
1208
+ #: source/class.wdttools.php:479
1209
  msgid "Let's move on. Please, click 'Next' to continue."
1210
  msgstr ""
1211
 
1212
+ #: source/class.wdttools.php:482
1213
  msgid ""
1214
  "Now you need to choose a wpDataTable based on which we will build a chart "
1215
  "for you"
1216
  msgstr ""
1217
 
1218
+ #: source/class.wdttools.php:483
1219
  msgid ""
1220
  "Click on the dropdown, and all your tables will be listed. The columns of "
1221
  "the table that you choose will be used for creating the chart.<br><br>If you "
1223
  "button and create wpDataTable that would contain the data to visualize first."
1224
  msgstr ""
1225
 
1226
+ #: source/class.wdttools.php:486
1227
  msgid "Pick your wpDataTable"
1228
  msgstr ""
1229
 
1230
+ #: source/class.wdttools.php:487
1231
  msgid ""
1232
  "Pick a wpDataTable from which you want to render a chart and when you "
1233
  "finish, please click 'Continue' to move on."
1234
  msgstr ""
1235
 
1236
+ #: source/class.wdttools.php:490
1237
  msgid "The second step is finished!"
1238
  msgstr ""
1239
 
1240
+ #: source/class.wdttools.php:491
1241
  msgid ""
1242
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1243
  msgstr ""
1244
 
1245
+ #: source/class.wdttools.php:494
1246
  msgid "Just a heads up!"
1247
  msgstr ""
1248
 
1249
+ #: source/class.wdttools.php:495
1250
  msgid ""
1251
  "Here you will choose from which columns you will create a chart.<br><br> "
1252
  "Please click 'Continue' button to move forward."
1253
  msgstr ""
1254
 
1255
+ #: source/class.wdttools.php:498
1256
  msgid "Meet the wpDataTable Column Blocks"
1257
  msgstr ""
1258
 
1259
+ #: source/class.wdttools.php:499
1260
  msgid ""
1261
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1262
  "or click on the arrow to move the desired column to the 'Columns used in the "
1263
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1264
  msgstr ""
1265
 
1266
+ #: source/class.wdttools.php:502
1267
  msgid "Well done!"
1268
  msgstr ""
1269
 
1270
+ #: source/class.wdttools.php:503
1271
  msgid "Just two more steps to go. Please click 'Next' to continue."
1272
  msgstr ""
1273
 
1274
+ #: source/class.wdttools.php:506
1275
  msgid "Chart settings and chart preview."
1276
  msgstr ""
1277
 
1278
+ #: source/class.wdttools.php:507
1279
  msgid ""
1280
  "Here you can adjust chart settings, different parameters are grouped in "
1281
  "section; adjusting the parameters will be reflected in the preview of your "
1283
  "button to move forward."
1284
  msgstr ""
1285
 
1286
+ #: source/class.wdttools.php:510
1287
  msgid "In this sidebar, you can find the chart settings section."
1288
  msgstr ""
1289
 
1290
+ #: source/class.wdttools.php:511
1291
  msgid ""
1292
  "By clicking on each section, you can set your desired parameters per section."
1293
  "<br><br> Please click 'Continue' button to move on."
1294
  msgstr ""
1295
 
1296
+ #: source/class.wdttools.php:514
1297
  msgid "Here are the available chart options"
1298
  msgstr ""
1299
 
1300
+ #: source/class.wdttools.php:515
1301
  msgid ""
1302
  "Set different chart options for the chosen section to get your desired chart "
1303
  "look.<br><br> Please click 'Continue' button to move on."
1304
  msgstr ""
1305
 
1306
+ #: source/class.wdttools.php:518
1307
  msgid "How your chart will look like on the page of your website"
1308
  msgstr ""
1309
 
1310
+ #: source/class.wdttools.php:519
1311
  msgid ""
1312
  "Here you can see a preview of your chart based on the settings you have "
1313
  "chosen.<br><br> Please click 'Continue' button to move on."
1314
  msgstr ""
1315
 
1316
+ #: source/class.wdttools.php:522
1317
  msgid "You can save your chart now"
1318
  msgstr ""
1319
 
1320
+ #: source/class.wdttools.php:523
1321
  msgid ""
1322
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1323
  "button and all your settings for this chart will be saved in the database."
1324
  msgstr ""
1325
 
1326
+ #: source/class.wdttools.php:526
1327
  msgid "Congrats! Your first chart is ready!"
1328
  msgstr ""
1329
 
1330
+ #: source/class.wdttools.php:527
1331
  msgid ""
1332
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1333
  "page. <br><br>You may now finish this tutorial. "
1341
  msgid "You are mixing data types (several date axes and several number)"
1342
  msgstr ""
1343
 
1344
+ #: source/class.wpdatatable.php:1876
1345
  msgid ""
1346
  "You are trying to load a table of an unknown type. Probably you did not "
1347
  "activate the addon which is required to use this table type."
1348
  msgstr ""
1349
 
1350
+ #: source/class.wpdatatable.php:2106 source/class.wpdatatable.php:2109
1351
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1352
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1353
+ #: templates/admin/table-settings/table_settings_block.inc.php:327
1354
  #: templates/edit_table.inc.php:409
1355
  msgid "All"
1356
  msgstr "Alles"
1357
 
1358
+ #: source/class.wpdatatable.php:2167 source/class.wpdatatable.php:2236
1359
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1360
  #, fuzzy
1361
  msgid "Columns"
1362
  msgstr "Kolom type"
1363
 
1364
+ #: source/class.wpdatatable.php:2177 source/class.wpdatatable.php:2246
1365
+ #: templates/admin/table-settings/table_settings_block.inc.php:1049
1366
  msgid "Print"
1367
  msgstr ""
1368
 
1369
+ #: source/class.wpdatatable.php:2216 source/class.wpdatatable.php:2289
1370
+ #: templates/admin/table-settings/table_settings_block.inc.php:1053
1371
  msgid "PDF"
1372
  msgstr ""
1373
 
1374
+ #: source/class.wpdatatable.php:2224
1375
  msgid "Export"
1376
  msgstr ""
1377
 
1378
+ #: source/class.wpdatatable.php:2302
1379
  msgid "Search table"
1380
  msgstr ""
1381
 
1382
+ #: source/class.wpdatatable.php:2303
1383
  msgid "Showing _MENU_ Entries"
1384
  msgstr ""
1385
 
1398
  msgid "if you have some questions or problems with the plugin."
1399
  msgstr "als je vragen of problemen hebt met deze plugin."
1400
 
1401
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1402
  msgid "wpDataTables Addons"
1403
  msgstr ""
1404
 
1412
  msgstr ""
1413
 
1414
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1415
+ #: templates/admin/dashboard/dashboard.inc.php:570
1416
  msgid "Report Builder"
1417
  msgstr ""
1418
 
1419
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1420
+ #: templates/admin/dashboard/dashboard.inc.php:574
1421
  msgid ""
1422
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1423
  "XLSX documents filled in with actual data from your database."
1443
  msgstr ""
1444
 
1445
  #: templates/admin/addons/addons.inc.php:40
1446
+ #: templates/admin/dashboard/dashboard.inc.php:517
1447
  msgid "Master Detail Tables for wpDataTables"
1448
  msgstr ""
1449
 
1464
  msgstr ""
1465
 
1466
  #: templates/admin/addons/addons.inc.php:67
1467
+ #: templates/admin/dashboard/dashboard.inc.php:544
1468
  msgid "Powerful Filters for wpDataTables"
1469
  msgstr ""
1470
 
1476
  msgstr ""
1477
 
1478
  #: templates/admin/addons/addons.inc.php:120
1479
+ #: templates/admin/dashboard/dashboard.inc.php:597
1480
  msgid "Formidable Forms integration for wpDataTables"
1481
  msgstr ""
1482
 
1483
  #: templates/admin/addons/addons.inc.php:123
1484
+ #: templates/admin/dashboard/dashboard.inc.php:601
1485
  msgid ""
1486
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1487
  "create wpDataTables from Formidable Forms entries data."
1488
  msgstr ""
1489
 
1490
  #: templates/admin/addons/addons.inc.php:143
1491
+ #: templates/admin/dashboard/dashboard.inc.php:623
1492
  msgid "Gravity Forms integration for wpDataTables"
1493
  msgstr ""
1494
 
1495
  #: templates/admin/addons/addons.inc.php:146
1496
+ #: templates/admin/dashboard/dashboard.inc.php:627
1497
  msgid ""
1498
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1499
  "wpDataTables from Gravity Forms entries data."
1574
  msgstr "Grafiek titel"
1575
 
1576
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1577
+ #: templates/admin/table-settings/table_settings_block.inc.php:60
1578
  #: templates/chart_wizard.inc.php:36
1579
  msgid "Data source"
1580
  msgstr ""
1619
 
1620
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1621
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
1622
+ #: templates/admin/table-settings/table_settings_block.inc.php:1902
1623
  #: templates/edit_table.inc.php:730
1624
  msgid "Color"
1625
  msgstr ""
1857
  #: templates/admin/getting-started/getting_started.inc.php:144
1858
  #: templates/admin/getting-started/getting_started.inc.php:156
1859
  #: templates/admin/getting-started/getting_started.inc.php:168
1860
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
1861
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
1862
  msgid "Available in Premium"
1863
  msgstr ""
1864
 
1991
  msgid "Axes"
1992
  msgstr ""
1993
 
 
 
 
 
 
1994
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1995
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1996
  msgid "Tooltip"
2090
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2091
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2092
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
2093
+ #: templates/admin/table-settings/table_settings_block.inc.php:1549
2094
+ #: templates/admin/table-settings/table_settings_block.inc.php:1879
2095
  #, fuzzy
2096
  msgid "Background color"
2097
  msgstr "Achtergrondkleur van de Buttons"
2113
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2114
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2115
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
2116
+ #: templates/admin/table-settings/table_settings_block.inc.php:1571
2117
  #, fuzzy
2118
  msgid "Border color"
2119
  msgstr "Buttons border kleur"
2156
 
2157
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2158
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
2159
+ #: templates/admin/table-settings/table_settings_block.inc.php:1483
2160
  msgid "Font size"
2161
  msgstr ""
2162
 
2524
  #: templates/admin/dashboard/dashboard.inc.php:30
2525
  #: templates/admin/getting-started/getting_started.inc.php:34
2526
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2527
+ #: templates/admin/settings/settings.inc.php:100
2528
  #: templates/admin/support/support.inc.php:31
2529
  #: templates/admin/support/support.inc.php:47
2530
  #: templates/admin/system-info/system_info.inc.php:29
2531
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2532
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2533
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2534
+ #: templates/admin/table-settings/table_settings_block.inc.php:2063
2535
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2536
  msgid "View Documentation"
2537
  msgstr ""
2762
  msgstr ""
2763
 
2764
  #: templates/admin/dashboard/dashboard.inc.php:340
2765
+ msgid "A minor update with a couple of improvements and bug fixes:"
 
 
2766
  msgstr ""
2767
 
2768
  #: templates/admin/dashboard/dashboard.inc.php:345
2769
  msgid ""
2770
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2771
+ "media in Simple tables."
2772
  msgstr ""
2773
 
2774
  #: templates/admin/dashboard/dashboard.inc.php:346
2775
  msgid ""
2776
+ "<strong>Improvement:</strong> Added translate functions on some strings."
 
2777
  msgstr ""
2778
 
2779
  #: templates/admin/dashboard/dashboard.inc.php:347
2780
  msgid ""
2781
+ "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2782
+ "area and filters for elementor widgets."
2783
  msgstr ""
2784
 
2785
  #: templates/admin/dashboard/dashboard.inc.php:348
2786
  msgid ""
2787
+ "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2788
+ "background in graphite skin."
2789
  msgstr ""
2790
 
2791
  #: templates/admin/dashboard/dashboard.inc.php:349
2792
  msgid ""
2793
+ "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2794
+ "settings."
2795
  msgstr ""
2796
 
2797
  #: templates/admin/dashboard/dashboard.inc.php:350
2798
+ msgid "Compatibility with WordPress 5.6.2 approved."
2799
+ msgstr ""
2800
+
2801
+ #: templates/admin/dashboard/dashboard.inc.php:351
2802
  msgid "Other small bug fixes and stability improvements."
2803
  msgstr ""
2804
 
2805
+ #: templates/admin/dashboard/dashboard.inc.php:363
2806
  msgid "Go Premium!"
2807
  msgstr ""
2808
 
2809
+ #: templates/admin/dashboard/dashboard.inc.php:369
2810
  msgid "View Comparison"
2811
  msgstr ""
2812
 
2813
+ #: templates/admin/dashboard/dashboard.inc.php:377
2814
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2815
  msgid ""
2816
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2817
  "of the powerful features."
2818
  msgstr ""
2819
 
2820
+ #: templates/admin/dashboard/dashboard.inc.php:381
2821
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2822
  msgid "Create a table manually"
2823
  msgstr ""
2824
 
2825
+ #: templates/admin/dashboard/dashboard.inc.php:384
2826
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2827
  msgid "Creating tables from Google Spreadsheet"
2828
  msgstr ""
2829
 
2830
+ #: templates/admin/dashboard/dashboard.inc.php:387
2831
  msgid ""
2832
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2833
  "tables via Google Sheet API"
2834
  msgstr ""
2835
 
2836
+ #: templates/admin/dashboard/dashboard.inc.php:390
2837
  msgid ""
2838
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2839
  "tables from Private Google Spreadsheet"
2840
  msgstr ""
2841
 
2842
+ #: templates/admin/dashboard/dashboard.inc.php:393
2843
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2844
  msgid "Creating MySQL-based tables from database"
2845
  msgstr ""
2846
 
2847
+ #: templates/admin/dashboard/dashboard.inc.php:396
2848
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2849
  msgid "Creating MySQL-based tables from Wordpress post types"
2850
  msgstr ""
2851
 
2852
+ #: templates/admin/dashboard/dashboard.inc.php:399
2853
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
2854
  #: templates/edit_table.inc.php:329
2855
  msgid "Advanced filtering"
2856
  msgstr ""
2857
 
2858
+ #: templates/admin/dashboard/dashboard.inc.php:402
2859
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2860
+ #: templates/admin/table-settings/table_settings_block.inc.php:153
2861
  #: templates/edit_table.inc.php:282
2862
  msgid "Server-side processing"
2863
  msgstr "Server-side verwerking"
2864
 
2865
+ #: templates/admin/dashboard/dashboard.inc.php:405
2866
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2867
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2868
  msgstr ""
2869
 
2870
+ #: templates/admin/dashboard/dashboard.inc.php:408
2871
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2872
  msgid "Front-end table editing"
2873
  msgstr ""
2874
 
2875
+ #: templates/admin/dashboard/dashboard.inc.php:411
2876
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2877
  msgid "Excel-like editing"
2878
  msgstr ""
2879
 
2880
+ #: templates/admin/dashboard/dashboard.inc.php:414
2881
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2882
  msgid "Creating charts with Highcharts"
2883
  msgstr ""
2884
 
2885
+ #: templates/admin/dashboard/dashboard.inc.php:417
2886
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2887
  msgid "Creating charts with Chart.js"
2888
  msgstr ""
2889
 
2890
+ #: templates/admin/dashboard/dashboard.inc.php:420
2891
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2892
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2893
  #: templates/edit_table.inc.php:301
2894
  msgid "Responsive"
2895
  msgstr ""
2896
 
2897
+ #: templates/admin/dashboard/dashboard.inc.php:423
2898
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2899
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2900
  #: templates/edit_table.inc.php:750
2901
  #, fuzzy
2902
  msgid "Conditional formatting"
2903
  msgstr "Extra instellingen"
2904
 
2905
+ #: templates/admin/dashboard/dashboard.inc.php:426
2906
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2907
  msgid "Calculating Tools"
2908
  msgstr ""
2909
 
2910
+ #: templates/admin/dashboard/dashboard.inc.php:429
2911
  msgid "Formula columns"
2912
  msgstr ""
2913
 
2914
+ #: templates/admin/dashboard/dashboard.inc.php:432
2915
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2916
+ #: templates/admin/table-settings/table_settings_block.inc.php:80
2917
  msgid "Placeholders"
2918
  msgstr ""
2919
 
2920
+ #: templates/admin/dashboard/dashboard.inc.php:435
2921
  msgid "Premium support"
2922
  msgstr ""
2923
 
2924
+ #: templates/admin/dashboard/dashboard.inc.php:439
2925
  msgid "Get Premium Today"
2926
  msgstr ""
2927
 
2928
+ #: templates/admin/dashboard/dashboard.inc.php:446
2929
  msgid "News Blog"
2930
  msgstr ""
2931
 
2932
+ #: templates/admin/dashboard/dashboard.inc.php:451
2933
  msgid "Checkout useful articles from wpdatatables.com"
2934
  msgstr ""
2935
 
2936
+ #: templates/admin/dashboard/dashboard.inc.php:474
2937
  msgid "Please install and enable PHP extensions xml and dom on your server."
2938
  msgstr ""
2939
 
2940
+ #: templates/admin/dashboard/dashboard.inc.php:482
2941
  msgid ""
2942
  "Never miss notifications about new cool features, promotions,\n"
2943
  " giveaways or freebies – subscribe to our "
2945
  " about 1 message per month and never spam!"
2946
  msgstr ""
2947
 
2948
+ #: templates/admin/dashboard/dashboard.inc.php:500
2949
  msgid "Premium "
2950
  msgstr ""
2951
 
2952
+ #: templates/admin/dashboard/dashboard.inc.php:503
2953
  msgid ""
2954
  "While wpDataTables itself provides quite a large amount of features and "
2955
  "unlimited customisation, flexibility, you can achieve even more with our "
2956
  "premium addons.(requires wpDataTables Premium version)"
2957
  msgstr ""
2958
 
2959
+ #: templates/admin/dashboard/dashboard.inc.php:521
2960
  msgid ""
2961
  "A wpDataTables addon which allows showing additional details for a specific "
2962
  "row in a popup or a separate page or post."
2963
  msgstr ""
2964
 
2965
+ #: templates/admin/dashboard/dashboard.inc.php:527
2966
+ #: templates/admin/dashboard/dashboard.inc.php:554
2967
+ #: templates/admin/dashboard/dashboard.inc.php:580
2968
+ #: templates/admin/dashboard/dashboard.inc.php:607
2969
+ #: templates/admin/dashboard/dashboard.inc.php:633
2970
+ #: templates/admin/dashboard/dashboard.inc.php:666
2971
  msgid "Learn More"
2972
  msgstr ""
2973
 
2974
+ #: templates/admin/dashboard/dashboard.inc.php:548
2975
  msgid ""
2976
  "An add-on for wpDataTables that provides powerful filtering features: "
2977
  "cascade filtering, applying filters on button click, hide table before "
2978
  "filtering."
2979
  msgstr ""
2980
 
2981
+ #: templates/admin/dashboard/dashboard.inc.php:644
2982
  msgid "Need free booking plugin?"
2983
  msgstr ""
2984
 
2985
+ #: templates/admin/dashboard/dashboard.inc.php:653
2986
  msgid "Appointments and Events WordPress Booking Plugin"
2987
  msgstr ""
2988
 
2989
+ #: templates/admin/dashboard/dashboard.inc.php:656
2990
  msgid ""
2991
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2992
  "set up a fully-featured automated booking system on your WordPress website "
2997
  "each month."
2998
  msgstr ""
2999
 
3000
+ #: templates/admin/dashboard/dashboard.inc.php:659
3001
  msgid "Rating: 4.3 - ‎97 reviews"
3002
  msgstr ""
3003
 
3004
+ #: templates/admin/dashboard/dashboard.inc.php:662
3005
  msgid "Free Download"
3006
  msgstr ""
3007
 
3008
+ #: templates/admin/dashboard/dashboard.inc.php:677
3009
  #: templates/admin/getting-started/getting_started.inc.php:184
3010
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
3011
  #: templates/admin/support/support.inc.php:78
3012
  #: templates/admin/system-info/system_info.inc.php:509
3013
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3014
  msgid "Made by"
3015
  msgstr ""
3016
 
3017
+ #: templates/admin/dashboard/dashboard.inc.php:685
3018
  #: templates/admin/getting-started/getting_started.inc.php:192
3019
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3020
  #: templates/admin/support/support.inc.php:45
3021
  #: templates/admin/support/support.inc.php:86
3022
  #: templates/admin/system-info/system_info.inc.php:517
3026
  msgid "Documentation"
3027
  msgstr "wpDataTables documentatie"
3028
 
3029
+ #: templates/admin/dashboard/dashboard.inc.php:689
3030
  #: templates/admin/getting-started/getting_started.inc.php:196
3031
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3032
  #: templates/admin/support/support.inc.php:24
3033
  #: templates/admin/support/support.inc.php:90
3034
  #: templates/admin/system-info/system_info.inc.php:521
3154
  msgstr ""
3155
 
3156
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3157
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3158
  msgid "Go Premium Now"
3159
  msgstr ""
3160
 
3167
  msgstr ""
3168
 
3169
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3170
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3171
  msgid "Premium"
3172
  msgstr ""
3173
 
3197
 
3198
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3199
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3200
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3201
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3202
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3203
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
3204
  msgid "NEW!"
3205
  msgstr ""
3206
 
3217
 
3218
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3219
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3220
+ #: templates/admin/table-settings/table_settings_block.inc.php:643
3221
+ #: templates/admin/table-settings/table_settings_block.inc.php:651
3222
  msgid "Sorting"
3223
  msgstr ""
3224
 
3225
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3226
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3227
+ #: templates/admin/table-settings/table_settings_block.inc.php:504
3228
+ #: templates/admin/table-settings/table_settings_block.inc.php:512
3229
+ #: templates/admin/table-settings/table_settings_block.inc.php:1387
3230
  msgid "Pagination"
3231
  msgstr ""
3232
 
3253
  msgstr ""
3254
 
3255
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3256
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3257
  msgid "Limited"
3258
  msgstr ""
3259
 
3261
  msgid "Some options are not available."
3262
  msgstr ""
3263
 
3264
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3265
+ msgid "Table Customization"
3266
  msgstr ""
3267
 
3268
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3269
+ msgid "Creating tables via Google Sheet API"
3270
+ msgstr ""
3271
+
3272
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3273
  msgid "Creating tables from Private Google Spreadsheet"
3274
  msgstr ""
3275
 
3276
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3277
  msgid "Support"
3278
  msgstr ""
3279
 
3280
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3281
  msgid "Response time is slow and can be up to 5 business days."
3282
  msgstr ""
3283
 
3284
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3285
  msgid ""
3286
  "* Please note that wpDataTables add-ons are not included in premium version "
3287
  "of plugin."
3288
  msgstr ""
3289
 
3290
  #: templates/admin/settings/settings.inc.php:33
3291
+ #: templates/admin/settings/settings.inc.php:95
3292
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3293
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3294
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3295
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3296
  #: templates/admin/table-settings/table_preview_block.inc.php:89
 
3297
  #: templates/admin/table-settings/table_settings_block.inc.php:48
3298
+ #: templates/admin/table-settings/table_settings_block.inc.php:49
3299
  msgid "Save Changes"
3300
  msgstr ""
3301
 
3320
  msgid "Custom JS and CSS"
3321
  msgstr "Custom JS en CSS"
3322
 
3323
+ #: templates/admin/settings/settings.inc.php:62
3324
+ msgid "Google Spreadsheet API settings"
3325
+ msgstr ""
3326
+
3327
+ #: templates/admin/settings/settings.inc.php:92 templates/settings.inc.php:434
3328
  msgid "Reset colors and fonts to default"
3329
  msgstr "Reset kleuren en fonts naar standaard"
3330
 
3331
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3332
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
3333
+ #: templates/admin/table-settings/table_settings_block.inc.php:1367
3334
+ #: templates/admin/table-settings/table_settings_block.inc.php:1461
3335
  msgid "Font"
3336
  msgstr ""
3337
 
3338
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
3339
+ #: templates/admin/table-settings/table_settings_block.inc.php:1464
3340
  #: templates/settings.inc.php:428
3341
  msgid ""
3342
  "This font will be used in rendered tables. Leave blank not to override "
3346
  "thema instellingen te gebruiken"
3347
 
3348
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
3349
+ #: templates/admin/table-settings/table_settings_block.inc.php:1486
3350
  #, fuzzy
3351
  msgid "Define the font size"
3352
  msgstr "In de footer"
3354
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3355
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3356
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
3357
+ #: templates/admin/table-settings/table_settings_block.inc.php:1519
3358
+ #: templates/admin/table-settings/table_settings_block.inc.php:1594
3359
  #, fuzzy
3360
  msgid "Font color"
3361
  msgstr "Tabel font kleur"
3362
 
3363
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
3364
+ #: templates/admin/table-settings/table_settings_block.inc.php:1522
3365
  #, fuzzy
3366
  msgid "This color is used for the main font in table cells."
3367
  msgstr "Deze kleur wordt gebruikt voor de hoofdfont in de tabelcellen"
3368
 
3369
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3370
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
3371
+ #: templates/admin/table-settings/table_settings_block.inc.php:1371
3372
  msgid "Header"
3373
  msgstr ""
3374
 
3375
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
3376
+ #: templates/admin/table-settings/table_settings_block.inc.php:1552
3377
  #, fuzzy
3378
  msgid "The color is used for background of the table header."
3379
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de tabel header"
3380
 
3381
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
3382
+ #: templates/admin/table-settings/table_settings_block.inc.php:1574
3383
  #, fuzzy
3384
  msgid "This color is used for the border in the table header."
3385
  msgstr "Deze kleur wordt gebruikt voor de border rondom de tabel header"
3386
 
3387
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
3388
+ #: templates/admin/table-settings/table_settings_block.inc.php:1597
3389
  #, fuzzy
3390
  msgid "This color is used for the font in the table header."
3391
  msgstr "Deze kleur wordt gebruikt voor de font in de tabel header"
3392
 
3393
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
3394
+ #: templates/admin/table-settings/table_settings_block.inc.php:1616
3395
  #, fuzzy
3396
  msgid "Active and hover color\t"
3397
  msgstr "Header actef en hover kleur"
3398
 
3399
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
3400
+ #: templates/admin/table-settings/table_settings_block.inc.php:1619
3401
  #, fuzzy
3402
  msgid ""
3403
  "This color is used when you hover the mouse above the table header, or when "
3411
  msgstr ""
3412
 
3413
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
3414
+ #: templates/admin/table-settings/table_settings_block.inc.php:1647
3415
  #, fuzzy
3416
  msgid "Inner border"
3417
  msgstr "Binnenste borderkleur van de tabel"
3418
 
3419
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
3420
+ #: templates/admin/table-settings/table_settings_block.inc.php:1650
3421
  #, fuzzy
3422
  msgid "This color is used for the inner border in the table between cells."
3423
  msgstr ""
3425
  "cellen in"
3426
 
3427
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
3428
+ #: templates/admin/table-settings/table_settings_block.inc.php:1670
3429
  #, fuzzy
3430
  msgid "Outer border"
3431
  msgstr "Tabel buitenste border kleur"
3432
 
3433
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
3434
+ #: templates/admin/table-settings/table_settings_block.inc.php:1673
3435
  #, fuzzy
3436
  msgid "This color is used for the outer border of the whole table body."
3437
  msgstr ""
3438
  "Deze kleur wordt gebruikt voor de buitenste border, om de hele tabel heen"
3439
 
3440
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
3441
+ #: templates/admin/table-settings/table_settings_block.inc.php:1693
3442
  #, fuzzy
3443
  msgid "Table borders"
3444
  msgstr "Tabel tools"
3445
 
3446
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
3447
+ #: templates/admin/table-settings/table_settings_block.inc.php:1696
3448
  msgid "When this is checked, borders in table will be removed "
3449
  msgstr ""
3450
 
3451
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
3452
+ #: templates/admin/table-settings/table_settings_block.inc.php:1702
3453
  msgid "Remove borders in table"
3454
  msgstr ""
3455
 
3456
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
3457
+ #: templates/admin/table-settings/table_settings_block.inc.php:1707
3458
  #, fuzzy
3459
  msgid "Header border"
3460
  msgstr "Header border kleur"
3461
 
3462
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
3463
+ #: templates/admin/table-settings/table_settings_block.inc.php:1710
3464
  msgid "When this is checked,borders in header will be removed "
3465
  msgstr ""
3466
 
3469
  msgstr ""
3470
 
3471
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
3472
+ #: templates/admin/table-settings/table_settings_block.inc.php:1379
3473
  msgid "Row color"
3474
  msgstr ""
3475
 
3476
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
3477
+ #: templates/admin/table-settings/table_settings_block.inc.php:1729
3478
  #, fuzzy
3479
  msgid "Even row background"
3480
  msgstr "Even rijen achtergrond kleur"
3481
 
3482
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
3483
+ #: templates/admin/table-settings/table_settings_block.inc.php:1732
3484
  #, fuzzy
3485
  msgid "This color is used for for background in even rows."
3486
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de even rijen"
3487
 
3488
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
3489
+ #: templates/admin/table-settings/table_settings_block.inc.php:1751
3490
  #, fuzzy
3491
  msgid "Odd row background"
3492
  msgstr "Oneven rijen achtergrond kleur"
3493
 
3494
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
3495
+ #: templates/admin/table-settings/table_settings_block.inc.php:1754
3496
  #, fuzzy
3497
  msgid "This color is used for for background in odd rows."
3498
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de oneven rijen"
3499
 
3500
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
3501
+ #: templates/admin/table-settings/table_settings_block.inc.php:1773
3502
  #, fuzzy
3503
  msgid "Hover row"
3504
  msgstr "Hover rij kleur"
3505
 
3506
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
3507
+ #: templates/admin/table-settings/table_settings_block.inc.php:1776
3508
  #, fuzzy
3509
  msgid ""
3510
  "This color is used for to highlight the row when you hover your mouse above "
3514
  "erboven houdt"
3515
 
3516
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
3517
+ #: templates/admin/table-settings/table_settings_block.inc.php:1795
3518
  #, fuzzy
3519
  msgid "Background for selected rows"
3520
  msgstr "Achtergrond kleur voor geselecteerde rijen"
3521
 
3522
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
3523
+ #: templates/admin/table-settings/table_settings_block.inc.php:1798
3524
  #, fuzzy
3525
  msgid "This color is used for background in selected rows."
3526
  msgstr ""
3527
  "Deze kleur wordt gebruikt voor de achtergrond van de geselecteerde rijen"
3528
 
3529
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
3530
+ #: templates/admin/table-settings/table_settings_block.inc.php:1383
3531
  msgid "Cell color"
3532
  msgstr ""
3533
 
3534
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
3535
+ #: templates/admin/table-settings/table_settings_block.inc.php:1826
3536
  #, fuzzy
3537
  msgid "Sorted columns, even rows"
3538
  msgstr "Celkleur in actieve (gesorteerde) klommen voor even rijen"
3539
 
3540
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
3541
+ #: templates/admin/table-settings/table_settings_block.inc.php:1829
3542
  #, fuzzy
3543
  msgid ""
3544
  "This color is used for background in cells which are in the active columns "
3548
  "kolommen (deze die voor het sorteren worden gebruikt) in even rijen"
3549
 
3550
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
3551
+ #: templates/admin/table-settings/table_settings_block.inc.php:1849
3552
  msgid "Sorted columns, odd rows"
3553
  msgstr ""
3554
 
3555
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
3556
+ #: templates/admin/table-settings/table_settings_block.inc.php:1852
3557
  #, fuzzy
3558
  msgid ""
3559
  "This color is used for background in cells which are in the active columns "
3673
  "plugin popups"
3674
 
3675
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
3676
+ #: templates/admin/table-settings/table_settings_block.inc.php:1882
3677
  #, fuzzy
3678
  msgid "This color is used for the background of the pagination"
3679
  msgstr "Deze kleur wordt gebruikt voor de achtergrondkleur van de Buttons"
3680
 
3681
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
3682
+ #: templates/admin/table-settings/table_settings_block.inc.php:1905
3683
  #, fuzzy
3684
  msgid "This color is used for the color of the links in the pagination."
3685
  msgstr ""
3686
  "Deze kleur wordt gebruikt voor de buitenste border, om de hele tabel heen"
3687
 
3688
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
3689
+ #: templates/admin/table-settings/table_settings_block.inc.php:1924
3690
  #, fuzzy
3691
  msgid "Current page background color"
3692
  msgstr "Header achtergrond kleur"
3693
 
3694
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
3695
+ #: templates/admin/table-settings/table_settings_block.inc.php:1927
3696
  #, fuzzy
3697
  msgid "The color is used for background of the current page"
3698
  msgstr "Deze kleur wordt gebruikt voor de achtergrond van de tabel header"
3699
 
3700
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
3701
+ #: templates/admin/table-settings/table_settings_block.inc.php:1948
3702
  msgid "Current page color"
3703
  msgstr ""
3704
 
3705
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
3706
+ #: templates/admin/table-settings/table_settings_block.inc.php:1951
3707
  #, fuzzy
3708
  msgid "This color is used for the color of the current page."
3709
  msgstr "Deze kleur wordt gebruikt voor de border rondom de tabel header"
3710
 
3711
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
3712
+ #: templates/admin/table-settings/table_settings_block.inc.php:1971
3713
  #, fuzzy
3714
  msgid "Other pages hover background color"
3715
  msgstr "Header achtergrond kleur"
3716
 
3717
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
3718
+ #: templates/admin/table-settings/table_settings_block.inc.php:1974
3719
  #, fuzzy
3720
  msgid ""
3721
  "This background color is used when you hover the mouse above the other pages"
3724
  "of wanneer je een kolom kiest"
3725
 
3726
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
3727
+ #: templates/admin/table-settings/table_settings_block.inc.php:1995
3728
  #, fuzzy
3729
  msgid "Other pages hover color"
3730
  msgstr "Header actef en hover kleur"
3731
 
3732
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
3733
+ #: templates/admin/table-settings/table_settings_block.inc.php:1998
3734
  #, fuzzy
3735
  msgid "This color is used when you hover the mouse above the other pages."
3736
  msgstr ""
3749
  msgstr ""
3750
 
3751
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
3752
+ #: templates/admin/table-settings/table_settings_block.inc.php:2025
3753
  #: templates/settings.inc.php:463
3754
  msgid "Custom wpDataTables CSS"
3755
  msgstr ""
3770
  msgstr ""
3771
 
3772
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
3773
+ #: templates/admin/table-settings/table_settings_block.inc.php:1407
3774
  #: templates/settings.inc.php:45
3775
  msgid "Interface language"
3776
  msgstr "Interface taal"
3777
 
3778
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
3779
+ #: templates/admin/table-settings/table_settings_block.inc.php:1410
3780
  #, fuzzy
3781
  msgid "Pick the language which will be used in tables interface."
3782
  msgstr "Kies de taal welke in de tabel zijn interface wordt gebruikt"
3783
 
3784
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
3785
+ #: templates/admin/table-settings/table_settings_block.inc.php:1417
3786
  msgid "English (default)"
3787
  msgstr ""
3788
 
3796
  msgid "Pick the date format to use in date column type."
3797
  msgstr "Kies de datumformat welke in de datumkolom wordt gebruikt"
3798
 
3799
+ #: templates/admin/settings/tabs/main_plugin_settings.php:74
3800
  #: templates/settings.inc.php:119
3801
  #, fuzzy
3802
  msgid "Time format"
3803
  msgstr "Nummer format"
3804
 
3805
+ #: templates/admin/settings/tabs/main_plugin_settings.php:76
3806
  #, fuzzy
3807
  msgid "Pick the time format to use in datetime and time column type."
3808
  msgstr "Kies de datumformat welke in de datumkolom wordt gebruikt"
3809
 
3810
+ #: templates/admin/settings/tabs/main_plugin_settings.php:91
3811
  msgid "Parse shortcodes"
3812
  msgstr ""
3813
 
3814
+ #: templates/admin/settings/tabs/main_plugin_settings.php:93
3815
  msgid ""
3816
  "If the option is enabled, you can use shortcodes of other plugins for "
3817
  "generating content."
3818
  msgstr ""
3819
 
3820
+ #: templates/admin/settings/tabs/main_plugin_settings.php:97
3821
  #, fuzzy
3822
  msgid "Parse shortcodes in strings"
3823
  msgstr "Data bron en hoofd instellingen"
3824
 
3825
+ #: templates/admin/settings/tabs/main_plugin_settings.php:104
3826
+ #: templates/admin/table-settings/table_settings_block.inc.php:1430
3827
  #: templates/settings.inc.php:74
3828
  msgid "Base skin"
3829
  msgstr "Standaard skin"
3830
 
3831
+ #: templates/admin/settings/tabs/main_plugin_settings.php:106
3832
+ #: templates/admin/table-settings/table_settings_block.inc.php:1433
3833
  #, fuzzy
3834
  msgid "Choose the base skin for the plugin."
3835
  msgstr "Kies een skin voor de plugin"
3836
 
3837
+ #: templates/admin/settings/tabs/main_plugin_settings.php:112
3838
+ #: templates/admin/table-settings/table_settings_block.inc.php:1440
3839
  msgid "Material"
3840
  msgstr ""
3841
 
3842
+ #: templates/admin/settings/tabs/main_plugin_settings.php:113
3843
+ #: templates/admin/table-settings/table_settings_block.inc.php:1441
3844
  msgid "Light"
3845
  msgstr ""
3846
 
3847
+ #: templates/admin/settings/tabs/main_plugin_settings.php:114
3848
+ #: templates/admin/table-settings/table_settings_block.inc.php:1442
3849
  msgid "Graphite"
3850
  msgstr ""
3851
 
3852
+ #: templates/admin/settings/tabs/main_plugin_settings.php:115
3853
+ #: templates/admin/table-settings/table_settings_block.inc.php:1443
3854
  msgid "Aqua"
3855
  msgstr ""
3856
 
3857
+ #: templates/admin/settings/tabs/main_plugin_settings.php:116
3858
+ #: templates/admin/table-settings/table_settings_block.inc.php:1444
3859
  msgid "Purple"
3860
  msgstr ""
3861
 
3862
+ #: templates/admin/settings/tabs/main_plugin_settings.php:117
3863
+ #: templates/admin/table-settings/table_settings_block.inc.php:1445
3864
  msgid "Dark"
3865
  msgstr ""
3866
 
3867
+ #: templates/admin/settings/tabs/main_plugin_settings.php:125
3868
  #: templates/settings.inc.php:131
3869
  msgid "Number format"
3870
  msgstr "Nummer format"
3871
 
3872
+ #: templates/admin/settings/tabs/main_plugin_settings.php:127
3873
  #: templates/settings.inc.php:138
3874
  msgid "Pick the number format (thousands and decimals separator)"
3875
  msgstr "Kies de nummerformat (duizenden en decimalen scheider)"
3876
 
3877
+ #: templates/admin/settings/tabs/main_plugin_settings.php:144
3878
  #: templates/settings.inc.php:86
3879
  msgid "Render advanced filter"
3880
  msgstr "Render geavanceerd filter"
3881
 
3882
+ #: templates/admin/settings/tabs/main_plugin_settings.php:146
3883
  #, fuzzy
3884
  msgid ""
3885
  "Choose where you would like to render the advanced filter for tables where "
3888
  "Kies waar je wilt dat het geavanceerde filter voor de tabel wordt gerenderd "
3889
  "als deze geactiveerd is"
3890
 
3891
+ #: templates/admin/settings/tabs/main_plugin_settings.php:152
3892
  #: templates/settings.inc.php:90
3893
  msgid "In the header"
3894
  msgstr "In de header"
3895
 
3896
+ #: templates/admin/settings/tabs/main_plugin_settings.php:153
3897
  #: templates/settings.inc.php:91
3898
  msgid "In the footer"
3899
  msgstr "In de footer"
3900
 
3901
+ #: templates/admin/settings/tabs/main_plugin_settings.php:161
3902
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3903
  #: templates/settings.inc.php:143
3904
  msgid "Decimal places"
3905
  msgstr "Decimaal plaatsen"
3906
 
3907
+ #: templates/admin/settings/tabs/main_plugin_settings.php:163
3908
  #, fuzzy
3909
  msgid "Define the amount of decimal places for the float numbers."
3910
  msgstr "Kies het aantal decimaalplaatsen voor de zwevende getallen"
3911
 
3912
+ #: templates/admin/settings/tabs/main_plugin_settings.php:188
3913
  msgid "CSV delimiter"
3914
  msgstr ""
3915
 
3916
+ #: templates/admin/settings/tabs/main_plugin_settings.php:190
3917
  msgid "Pick the CSV delimiter"
3918
  msgstr ""
3919
 
3920
+ #: templates/admin/settings/tabs/main_plugin_settings.php:209
3921
  msgid "Tables sorting direction in admin page"
3922
  msgstr ""
3923
 
3924
+ #: templates/admin/settings/tabs/main_plugin_settings.php:211
3925
  msgid ""
3926
  "Here you can set sorting direction by id for browse tables and charts. By "
3927
  "default is ascending order."
3928
  msgstr ""
3929
 
3930
+ #: templates/admin/settings/tabs/main_plugin_settings.php:217
3931
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3932
  #: templates/edit_table.inc.php:663
3933
  msgid "Ascending"
3934
  msgstr "Oplopend"
3935
 
3936
+ #: templates/admin/settings/tabs/main_plugin_settings.php:218
3937
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3938
  #: templates/edit_table.inc.php:665
3939
  msgid "Descending"
3940
  msgstr "Aflopend"
3941
 
3942
+ #: templates/admin/settings/tabs/main_plugin_settings.php:229
3943
  #: templates/settings.inc.php:171
3944
  msgid "Tablet width"
3945
  msgstr "Tablet breedte"
3946
 
3947
+ #: templates/admin/settings/tabs/main_plugin_settings.php:231
3948
  #: templates/settings.inc.php:175
3949
  msgid ""
3950
  "Here you can specify width of the screen (in pixels) that will be treated as "
3951
  "a tablet. You can set it wider if you want responsive effect on desktops."
3952
  msgstr ""
3953
 
3954
+ #: templates/admin/settings/tabs/main_plugin_settings.php:255
3955
  #: templates/settings.inc.php:181
3956
  msgid "Mobile width"
3957
  msgstr "Mobiele breedte"
3958
 
3959
+ #: templates/admin/settings/tabs/main_plugin_settings.php:257
3960
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3961
  msgstr ""
3962
 
3963
+ #: templates/admin/settings/tabs/main_plugin_settings.php:282
3964
  #: templates/settings.inc.php:61
3965
  msgid "Tables per admin page"
3966
  msgstr "Tabellen per adminpagina"
3967
 
3968
+ #: templates/admin/settings/tabs/main_plugin_settings.php:284
3969
  #, fuzzy
3970
  msgid "How many tables to show in the browse page."
3971
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
3972
 
3973
+ #: templates/admin/settings/tabs/main_plugin_settings.php:300
3974
  #, fuzzy
3975
  msgid "Align numbers"
3976
  msgstr "Sorteer nummers aan de rechter kant"
3977
 
3978
+ #: templates/admin/settings/tabs/main_plugin_settings.php:302
3979
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3980
  msgstr ""
3981
 
3982
+ #: templates/admin/settings/tabs/main_plugin_settings.php:306
3983
  #: templates/settings.inc.php:161
3984
  msgid "Align numbers to the right"
3985
  msgstr ""
3986
 
3987
+ #: templates/admin/settings/tabs/main_plugin_settings.php:316
3988
  msgid "Sum functions label"
3989
  msgstr ""
3990
 
3991
+ #: templates/admin/settings/tabs/main_plugin_settings.php:318
3992
  msgid ""
3993
  "Enter a label that will be used for Sum functions. If you leave it blank "
3994
  "default label will be Σ ="
3995
  msgstr ""
3996
 
3997
+ #: templates/admin/settings/tabs/main_plugin_settings.php:336
3998
  msgid "Average functions label"
3999
  msgstr ""
4000
 
4001
+ #: templates/admin/settings/tabs/main_plugin_settings.php:338
4002
  msgid ""
4003
  "Enter a label that will be used for Average functions. If you leave it blank "
4004
  "default label will be Avg ="
4005
  msgstr ""
4006
 
4007
+ #: templates/admin/settings/tabs/main_plugin_settings.php:361
4008
  msgid "Minimum functions label"
4009
  msgstr ""
4010
 
4011
+ #: templates/admin/settings/tabs/main_plugin_settings.php:363
4012
  msgid ""
4013
  "Enter a label that will be used for Minimum functions. If you leave it blank "
4014
  "default label will be Min ="
4015
  msgstr ""
4016
 
4017
+ #: templates/admin/settings/tabs/main_plugin_settings.php:381
4018
  msgid "Maximum functions label"
4019
  msgstr ""
4020
 
4021
+ #: templates/admin/settings/tabs/main_plugin_settings.php:383
4022
  msgid ""
4023
  "Enter a label that will be used for Maximum functions. If you leave it blank "
4024
  "default label will be Max ="
4025
  msgstr ""
4026
 
4027
+ #: templates/admin/settings/tabs/main_plugin_settings.php:409
4028
  msgid "Include full bootstrap front-end"
4029
  msgstr ""
4030
 
4031
+ #: templates/admin/settings/tabs/main_plugin_settings.php:411
4032
+ #: templates/admin/settings/tabs/main_plugin_settings.php:422
4033
  msgid ""
4034
  "It is recommended to uncheck this option if bootstrap.js is already included "
4035
  "in one of the theme files. Unchecked option means that there is still "
4036
  "bootstrap.js included just in noconflict mode which should prevent errors."
4037
  msgstr ""
4038
 
4039
+ #: templates/admin/settings/tabs/main_plugin_settings.php:415
4040
  msgid "Include full bootstrap.js on the front-end"
4041
  msgstr ""
4042
 
4043
+ #: templates/admin/settings/tabs/main_plugin_settings.php:420
4044
  msgid "Include full bootstrap back-end"
4045
  msgstr ""
4046
 
4047
+ #: templates/admin/settings/tabs/main_plugin_settings.php:426
4048
  msgid "Include full bootstrap.js on the back-end"
4049
  msgstr ""
4050
 
4051
+ #: templates/admin/settings/tabs/main_plugin_settings.php:434
4052
+ #: templates/admin/settings/tabs/main_plugin_settings.php:440
4053
  #: templates/settings.inc.php:32
4054
  msgid "Show plugin credentials below tables"
4055
  msgstr ""
4056
 
4057
+ #: templates/admin/settings/tabs/main_plugin_settings.php:436
4058
  #: templates/settings.inc.php:32
4059
  msgid ""
4060
  "If you want to support our project, please, keep this checkbox as checked"
4061
  msgstr ""
4062
 
4063
+ #: templates/admin/settings/tabs/main_plugin_settings.php:445
4064
  msgid "Prevent deleting tables in database"
4065
  msgstr ""
4066
 
4067
+ #: templates/admin/settings/tabs/main_plugin_settings.php:447
4068
  msgid ""
4069
  "It is recommended to leave this option as checked if you what to keep your "
4070
  "tables in database after deleting plugin from Plugins page. If you uncheck "
4071
  "this option, it will be deleted all tables in database after deleting plugin"
4072
  msgstr ""
4073
 
4074
+ #: templates/admin/settings/tabs/main_plugin_settings.php:451
4075
  msgid ""
4076
  "Prevent deleting tables in database after deleting plugin from Plugins page"
4077
  msgstr ""
4078
 
4079
+ #: templates/admin/settings/tabs/main_plugin_settings.php:458
4080
  msgid "Remove Getting Started page"
4081
  msgstr ""
4082
 
4083
+ #: templates/admin/settings/tabs/main_plugin_settings.php:460
4084
  msgid ""
4085
  "Check this option if you want to remove Getting Started page from admin menu."
4086
  msgstr ""
4087
 
4088
+ #: templates/admin/settings/tabs/main_plugin_settings.php:464
4089
  msgid "Remove \"Getting Started\" page from admin menu."
4090
  msgstr ""
4091
 
4359
  msgid "Column header"
4360
  msgstr "Kolomgrafiek"
4361
 
 
 
 
 
4362
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4363
  msgid "Insert after"
4364
  msgstr ""
4398
 
4399
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4400
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4401
+ #: templates/admin/table-settings/table_settings_block.inc.php:64
4402
  #, fuzzy
4403
  msgid "Display"
4404
  msgstr "Display lengte"
4412
  msgstr ""
4413
 
4414
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4415
+ #: templates/admin/table-settings/table_settings_block.inc.php:72
4416
  #, fuzzy
4417
  msgid "Editing"
4418
  msgstr "Aanpassen"
4863
  msgstr "Geavanceerde filtering"
4864
 
4865
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4866
+ #: templates/admin/table-settings/table_settings_block.inc.php:682
4867
  msgid "Global search"
4868
  msgstr ""
4869
 
5426
  msgstr ""
5427
 
5428
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5429
+ #: templates/admin/table-settings/table_settings_block.inc.php:211
5430
  #: templates/edit_table.inc.php:58
5431
  msgid "Table title"
5432
  msgstr "Tabel titel"
5433
 
5434
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5435
+ #: templates/admin/table-settings/table_settings_block.inc.php:219
5436
  #: templates/edit_table.inc.php:67
5437
  #, fuzzy
5438
  msgid "Show table title"
5439
  msgstr "Nieuwe tabelnaam"
5440
 
5441
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5442
+ #: templates/admin/table-settings/table_settings_block.inc.php:226
5443
  msgid ""
5444
  "Enable this to show the table title in a h3 block above the table, disable "
5445
  "to hide."
5446
  msgstr ""
5447
 
5448
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5449
+ #: templates/admin/table-settings/table_settings_block.inc.php:234
5450
  #, fuzzy
5451
  msgid "Show table title on the page"
5452
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
5514
  msgstr ""
5515
 
5516
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5517
+ #: templates/admin/table-settings/table_settings_block.inc.php:378
5518
  msgid "Scrollable table"
5519
  msgstr ""
5520
 
5521
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5522
+ #: templates/admin/table-settings/table_settings_block.inc.php:385
5523
  msgid "Enable this to enable a horizontal scrollbar below the table."
5524
  msgstr ""
5525
 
5526
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5527
+ #: templates/admin/table-settings/table_settings_block.inc.php:394
5528
  msgid "Show a horizontal scrollbar"
5529
  msgstr ""
5530
 
5531
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5532
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5533
+ #: templates/admin/table-settings/table_settings_block.inc.php:438
5534
+ #: templates/admin/table-settings/table_settings_block.inc.php:446
5535
  #, fuzzy
5536
  msgid "Limit table width"
5537
  msgstr "Limiteer tabel layout"
5538
 
5539
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5540
+ #: templates/admin/table-settings/table_settings_block.inc.php:453
5541
  msgid "Enable this to restrict table width to page width."
5542
  msgstr ""
5543
 
5544
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5545
+ #: templates/admin/table-settings/table_settings_block.inc.php:462
5546
  msgid "Limit table width to page width"
5547
  msgstr ""
5548
 
5549
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5550
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5551
+ #: templates/admin/table-settings/table_settings_block.inc.php:469
5552
+ #: templates/admin/table-settings/table_settings_block.inc.php:477
5553
  #: templates/edit_table.inc.php:392
5554
  msgid "Word wrap"
5555
  msgstr "Woord wrap"
5556
 
5557
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5558
+ #: templates/admin/table-settings/table_settings_block.inc.php:484
5559
  msgid ""
5560
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5561
  "height."
5562
  msgstr ""
5563
 
5564
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5565
+ #: templates/admin/table-settings/table_settings_block.inc.php:492
5566
  msgid "Wrap words to newlines"
5567
  msgstr ""
5568
 
5627
  msgid "EXCEL-LIKE"
5628
  msgstr ""
5629
 
5630
+ #: templates/admin/table-settings/table_settings_block.inc.php:68
5631
  #, fuzzy
5632
  msgid "Sorting and filtering"
5633
  msgstr "Geavanceerde filtering"
5634
 
5635
+ #: templates/admin/table-settings/table_settings_block.inc.php:76
5636
+ #: templates/admin/table-settings/table_settings_block.inc.php:1009
5637
  #, fuzzy
5638
  msgid "Table Tools"
5639
  msgstr "Tabel tools"
5640
 
5641
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
5642
+ msgid " Customize"
5643
+ msgstr ""
5644
+
5645
+ #: templates/admin/table-settings/table_settings_block.inc.php:103
5646
  msgid ""
5647
  "Please choose a type of the input data source - it can be a MySQL query, a "
5648
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5649
  msgstr ""
5650
 
5651
+ #: templates/admin/table-settings/table_settings_block.inc.php:110
5652
  #, fuzzy
5653
  msgid "Select a data source type"
5654
  msgstr "Selecteer een tabel type..."
5655
 
5656
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
5657
  msgid "SQL query "
5658
  msgstr ""
5659
 
5660
+ #: templates/admin/table-settings/table_settings_block.inc.php:113
5661
  #: templates/edit_table.inc.php:85
5662
  msgid "CSV file"
5663
  msgstr "CSV bestand"
5664
 
5665
+ #: templates/admin/table-settings/table_settings_block.inc.php:114
5666
  #: templates/edit_table.inc.php:86
5667
  msgid "Excel file"
5668
  msgstr "Excel bestand"
5669
 
5670
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
5671
  msgid "Google Spreadsheet "
5672
  msgstr ""
5673
 
5674
+ #: templates/admin/table-settings/table_settings_block.inc.php:118
5675
  #: templates/edit_table.inc.php:89
5676
  msgid "XML file"
5677
  msgstr "XML bestand"
5678
 
5679
+ #: templates/admin/table-settings/table_settings_block.inc.php:119
5680
  #: templates/edit_table.inc.php:90
5681
  msgid "JSON file"
5682
  msgstr "JSON bestand"
5683
 
5684
+ #: templates/admin/table-settings/table_settings_block.inc.php:133
5685
  msgid ""
5686
  "Upload your file or provide the full URL here. For CSV or Excel input "
5687
  "sources only URLs or paths from same domain are supported. For Google "
5689
  "the URL."
5690
  msgstr ""
5691
 
5692
+ #: templates/admin/table-settings/table_settings_block.inc.php:139
5693
  msgid "Paste URL or path, or click Browse to choose"
5694
  msgstr ""
5695
 
5696
+ #: templates/admin/table-settings/table_settings_block.inc.php:143
5697
  msgid "Browse..."
5698
  msgstr ""
5699
 
5700
+ #: templates/admin/table-settings/table_settings_block.inc.php:155
5701
  msgid ""
5702
  "If it is turned on, all sorting, filtering, pagination and other data "
5703
  "interaction will be done by MySQL server. This feature is recommended if you "
5704
  "have more than 2000-3000 rows. Mandatory for editable tables."
5705
  msgstr ""
5706
 
5707
+ #: templates/admin/table-settings/table_settings_block.inc.php:162
5708
  #, fuzzy
5709
  msgid "Enable server-side processing"
5710
  msgstr "Server-side verwerking"
5711
 
5712
+ #: templates/admin/table-settings/table_settings_block.inc.php:177
5713
  msgid "MySQL Query"
5714
  msgstr ""
5715
 
5716
+ #: templates/admin/table-settings/table_settings_block.inc.php:179
5717
  msgid ""
5718
  "Enter the text of your MySQL query here - please make sure it returns actual "
5719
  "data first. You can use a number of placeholders to make the dataset in the "
5721
  "with different shortcodes."
5722
  msgstr ""
5723
 
5724
+ #: templates/admin/table-settings/table_settings_block.inc.php:186
5725
  #: templates/edit_table.inc.php:292
5726
  msgid "Auto-refresh"
5727
  msgstr ""
5728
 
5729
+ #: templates/admin/table-settings/table_settings_block.inc.php:188
5730
  msgid ""
5731
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5732
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5733
  "refresh."
5734
  msgstr ""
5735
 
5736
+ #: templates/admin/table-settings/table_settings_block.inc.php:193
5737
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5738
  msgstr ""
5739
 
5740
+ #: templates/admin/table-settings/table_settings_block.inc.php:242
5741
  #, fuzzy
5742
  msgid "Responsiveness"
5743
  msgstr "Responsive"
5744
 
5745
+ #: templates/admin/table-settings/table_settings_block.inc.php:250
5746
  #, fuzzy
5747
  msgid "Responsive design"
5748
  msgstr "Responsive"
5749
 
5750
+ #: templates/admin/table-settings/table_settings_block.inc.php:257
5751
  msgid "Enable this to allow responsiveness in the table."
5752
  msgstr ""
5753
 
5754
+ #: templates/admin/table-settings/table_settings_block.inc.php:258
5755
  msgid ""
5756
  "Please do not forget to define which columns will be hidden on mobiles and "
5757
  "tablets in the column settings!"
5758
  msgstr ""
5759
 
5760
+ #: templates/admin/table-settings/table_settings_block.inc.php:269
5761
  msgid "Allow collapsing on mobiles and tablets"
5762
  msgstr ""
5763
 
5764
+ #: templates/admin/table-settings/table_settings_block.inc.php:277
5765
  msgid "Hide until loaded"
5766
  msgstr ""
5767
 
5768
+ #: templates/admin/table-settings/table_settings_block.inc.php:279
5769
  msgid ""
5770
  "Enable to make whole table hidden until it is initialized to prevent "
5771
  "unformatted data flashing"
5772
  msgstr ""
5773
 
5774
+ #: templates/admin/table-settings/table_settings_block.inc.php:284
5775
  #, fuzzy
5776
  msgid "Hide the table before it is fully loaded"
5777
  msgstr "Verberg tabel tot de pagina volledig geladen is"
5778
 
5779
+ #: templates/admin/table-settings/table_settings_block.inc.php:296
5780
  msgid "Default rows per page"
5781
  msgstr ""
5782
 
5783
+ #: templates/admin/table-settings/table_settings_block.inc.php:304
5784
+ #: templates/admin/table-settings/table_settings_block.inc.php:339
5785
  msgid "Rows per page"
5786
  msgstr ""
5787
 
5788
+ #: templates/admin/table-settings/table_settings_block.inc.php:311
5789
  #, fuzzy
5790
  msgid "How many rows to show per page by default."
5791
  msgstr "Hoeveel tabellen moeten weergeven worden op de browse pagina?"
5792
 
5793
+ #: templates/admin/table-settings/table_settings_block.inc.php:347
5794
  #, fuzzy
5795
  msgid "Show X entries"
5796
  msgstr "data"
5797
 
5798
+ #: templates/admin/table-settings/table_settings_block.inc.php:354
5799
  msgid ""
5800
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5801
  "frontend."
5802
  msgstr ""
5803
 
5804
+ #: templates/admin/table-settings/table_settings_block.inc.php:362
5805
  msgid "Show \"Show X entries\" dropdown"
5806
  msgstr ""
5807
 
5808
+ #: templates/admin/table-settings/table_settings_block.inc.php:386
5809
  msgid "This should be turned off if you want to set columns width manually."
5810
  msgstr ""
5811
 
5812
+ #: templates/admin/table-settings/table_settings_block.inc.php:407
5813
+ #: templates/admin/table-settings/table_settings_block.inc.php:415
5814
  msgid "Info block"
5815
  msgstr ""
5816
 
5817
+ #: templates/admin/table-settings/table_settings_block.inc.php:422
5818
  msgid ""
5819
  "Enable to show a block of information about the number of records below the "
5820
  "table."
5821
  msgstr ""
5822
 
5823
+ #: templates/admin/table-settings/table_settings_block.inc.php:430
5824
  msgid "Show information block below the table"
5825
  msgstr ""
5826
 
5827
+ #: templates/admin/table-settings/table_settings_block.inc.php:454
5828
  msgid ""
5829
  "This should be turned on if you want to set columns width manually. Should "
5830
  "be on to use word wrapping."
5831
  msgstr ""
5832
 
5833
+ #: templates/admin/table-settings/table_settings_block.inc.php:516
5834
  msgid "Enable to show a pagination"
5835
  msgstr ""
5836
 
5837
+ #: templates/admin/table-settings/table_settings_block.inc.php:524
5838
  msgid "Show pagination block below the table"
5839
  msgstr ""
5840
 
5841
+ #: templates/admin/table-settings/table_settings_block.inc.php:532
5842
+ #: templates/admin/table-settings/table_settings_block.inc.php:540
5843
  msgid "Pagination Alignment"
5844
  msgstr ""
5845
 
5846
+ #: templates/admin/table-settings/table_settings_block.inc.php:544
5847
  msgid "Here you can set pagination position: right, center or left."
5848
  msgstr ""
5849
 
5850
+ #: templates/admin/table-settings/table_settings_block.inc.php:552
5851
  msgid "Right"
5852
  msgstr ""
5853
 
5854
+ #: templates/admin/table-settings/table_settings_block.inc.php:553
5855
  msgid "Center"
5856
  msgstr ""
5857
 
5858
+ #: templates/admin/table-settings/table_settings_block.inc.php:554
5859
  msgid "Left"
5860
  msgstr ""
5861
 
5862
+ #: templates/admin/table-settings/table_settings_block.inc.php:563
5863
+ #: templates/admin/table-settings/table_settings_block.inc.php:571
5864
  msgid "Pagination Layout"
5865
  msgstr ""
5866
 
5867
+ #: templates/admin/table-settings/table_settings_block.inc.php:575
5868
  msgid "Here you can choose between different pagination layout."
5869
  msgstr ""
5870
 
5871
+ #: templates/admin/table-settings/table_settings_block.inc.php:583
5872
  msgid ""
5873
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5874
  msgstr ""
5875
 
5876
+ #: templates/admin/table-settings/table_settings_block.inc.php:584
5877
  msgid "\"Previous\" and \"Next\" buttons only"
5878
  msgstr ""
5879
 
5880
+ #: templates/admin/table-settings/table_settings_block.inc.php:585
5881
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5882
  msgstr ""
5883
 
5884
+ #: templates/admin/table-settings/table_settings_block.inc.php:586
5885
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5886
  msgstr ""
5887
 
5888
+ #: templates/admin/table-settings/table_settings_block.inc.php:587
5889
  msgid "Page number buttons only"
5890
  msgstr ""
5891
 
5892
+ #: templates/admin/table-settings/table_settings_block.inc.php:588
5893
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5894
  msgstr ""
5895
 
5896
+ #: templates/admin/table-settings/table_settings_block.inc.php:609
5897
  #, fuzzy
5898
  msgid "Advanced column filters"
5899
  msgstr "Geavanceerde filtering"
5900
 
5901
+ #: templates/admin/table-settings/table_settings_block.inc.php:617
5902
  #, fuzzy
5903
  msgid "Advanced filter"
5904
  msgstr "Geavanceerde filtering"
5905
 
5906
+ #: templates/admin/table-settings/table_settings_block.inc.php:624
5907
  msgid ""
5908
  "Enable to show an advanced filter for each of the columns, filters can be "
5909
  "shown in table footer, header or in a separate form."
5910
  msgstr ""
5911
 
5912
+ #: templates/admin/table-settings/table_settings_block.inc.php:635
5913
  #, fuzzy
5914
  msgid "Enable advanced column filters"
5915
  msgstr "Render geavanceerd filter"
5916
 
5917
+ #: templates/admin/table-settings/table_settings_block.inc.php:658
5918
  msgid ""
5919
  "If this is enabled, each column header will be clickable; clicking will sort "
5920
  "the whole table by the content of this column cells ascending or descending."
5921
  msgstr ""
5922
 
5923
+ #: templates/admin/table-settings/table_settings_block.inc.php:666
5924
  #, fuzzy
5925
  msgid "Allow sorting for the table"
5926
  msgstr "Onder de grafiek/diagram"
5927
 
5928
+ #: templates/admin/table-settings/table_settings_block.inc.php:674
5929
  msgid "Main search block"
5930
  msgstr ""
5931
 
5932
+ #: templates/admin/table-settings/table_settings_block.inc.php:689
5933
  msgid ""
5934
  "If this is enabled, a search block will be displayed on the top right of the "
5935
  "table, allowing to search through whole table with a single input."
5936
  msgstr ""
5937
 
5938
+ #: templates/admin/table-settings/table_settings_block.inc.php:697
5939
  msgid "Enable search block"
5940
  msgstr ""
5941
 
5942
+ #: templates/admin/table-settings/table_settings_block.inc.php:711
5943
  #, fuzzy
5944
  msgid "Filters in a form"
5945
  msgstr "Filter in formulier"
5946
 
5947
+ #: templates/admin/table-settings/table_settings_block.inc.php:718
5948
  #: templates/edit_table.inc.php:340
5949
  msgid "Filter in form"
5950
  msgstr "Filter in formulier"
5951
 
5952
+ #: templates/admin/table-settings/table_settings_block.inc.php:725
5953
  msgid ""
5954
  "Enable to show the advanced column filter in a form above the table, instead "
5955
  "of showing in the table footer/header."
5956
  msgstr ""
5957
 
5958
+ #: templates/admin/table-settings/table_settings_block.inc.php:734
5959
  msgid "Show filters in a form above the table"
5960
  msgstr ""
5961
 
5962
+ #: templates/admin/table-settings/table_settings_block.inc.php:742
5963
  #, fuzzy
5964
  msgid "Clear filters button"
5965
  msgstr "Leeg filters"
5966
 
5967
+ #: templates/admin/table-settings/table_settings_block.inc.php:749
5968
  #: templates/frontend/filter_form.inc.php:32
5969
  msgid "Clear filters"
5970
  msgstr "Leeg filters"
5971
 
5972
+ #: templates/admin/table-settings/table_settings_block.inc.php:753
5973
  msgid "Enable to show the clear filters button."
5974
  msgstr ""
5975
 
5976
+ #: templates/admin/table-settings/table_settings_block.inc.php:754
5977
  msgid ""
5978
  "If filter in form is enabled, clear button will be rendered after the last "
5979
  "filter."
5980
  msgstr ""
5981
 
5982
+ #: templates/admin/table-settings/table_settings_block.inc.php:759
5983
  msgid ""
5984
  "Otherwise, clear filter button will be rendered above the table next to "
5985
  "\"Table Tools\" buttons."
5986
  msgstr ""
5987
 
5988
+ #: templates/admin/table-settings/table_settings_block.inc.php:772
5989
  #, fuzzy
5990
  msgid "Show clear filters button"
5991
  msgstr "Leeg filters"
5992
 
5993
+ #: templates/admin/table-settings/table_settings_block.inc.php:792
5994
  #, fuzzy
5995
  msgid "Allow editing"
5996
  msgstr "Front-end aanpassen"
5997
 
5998
+ #: templates/admin/table-settings/table_settings_block.inc.php:800
5999
  #: templates/edit_table.inc.php:180
6000
  msgid "Front-end editing"
6001
  msgstr "Front-end aanpassen"
6002
 
6003
+ #: templates/admin/table-settings/table_settings_block.inc.php:807
6004
  #, fuzzy
6005
  msgid "Allow editing the table from the front-end."
6006
  msgstr "Maak tabel aanpasbaar vanaf de front-end"
6007
 
6008
+ #: templates/admin/table-settings/table_settings_block.inc.php:815
6009
  #, fuzzy
6010
  msgid "Allow front-end editing"
6011
  msgstr "Front-end aanpassen"
6012
 
6013
+ #: templates/admin/table-settings/table_settings_block.inc.php:823
6014
  msgid "Popover edit block"
6015
  msgstr ""
6016
 
6017
+ #: templates/admin/table-settings/table_settings_block.inc.php:831
6018
  #: templates/edit_table.inc.php:232
6019
  msgid "Popover tools"
6020
  msgstr ""
6021
 
6022
+ #: templates/admin/table-settings/table_settings_block.inc.php:838
6023
  msgid ""
6024
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
6025
  "popover when you click on any row, instead of Table Tools block above the "
6026
  "table."
6027
  msgstr ""
6028
 
6029
+ #: templates/admin/table-settings/table_settings_block.inc.php:846
6030
  msgid "Editing buttons in a popover"
6031
  msgstr ""
6032
 
6033
+ #: templates/admin/table-settings/table_settings_block.inc.php:854
6034
+ #: templates/admin/table-settings/table_settings_block.inc.php:862
6035
  #, fuzzy
6036
  msgid "In-line editing"
6037
  msgstr "Front-end aanpassen"
6038
 
6039
+ #: templates/admin/table-settings/table_settings_block.inc.php:869
6040
  msgid ""
6041
  "If this is enabled, front-end users will be able to edit cells by double-"
6042
  "clicking them, not only with the editor dialog."
6043
  msgstr ""
6044
 
6045
+ #: templates/admin/table-settings/table_settings_block.inc.php:877
6046
  #, fuzzy
6047
  msgid "Allow in-line editing"
6048
  msgstr "Front-end aanpassen"
6049
 
6050
+ #: templates/admin/table-settings/table_settings_block.inc.php:892
6051
  #: templates/edit_table.inc.php:192
6052
  msgid "MySQL table name for editing"
6053
  msgstr "MySQL tabel naam voor aanpassen"
6054
 
6055
+ #: templates/admin/table-settings/table_settings_block.inc.php:894
6056
  #, fuzzy
6057
  msgid ""
6058
  "Name of the MySQL table which will be updated when edited from front-end."
6060
  "Naam van de MySQL tabel welke gebruikt wordt voor aanpassingen vanaf de "
6061
  "front-end"
6062
 
6063
+ #: templates/admin/table-settings/table_settings_block.inc.php:899
6064
  #, fuzzy
6065
  msgid "MySQL table name"
6066
  msgstr "MySQL database naam"
6067
 
6068
+ #: templates/admin/table-settings/table_settings_block.inc.php:908
6069
  #: templates/edit_table.inc.php:203
6070
  #, fuzzy
6071
  msgid "ID column for editing"
6072
  msgstr "MySQL tabel naam voor aanpassen"
6073
 
6074
+ #: templates/admin/table-settings/table_settings_block.inc.php:910
6075
  msgid ""
6076
  "Choose the column values from which will be used as row identifiers. MUST be "
6077
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
6079
  "\"id\" or \"ID\" on MySQL side."
6080
  msgstr ""
6081
 
6082
+ #: templates/admin/table-settings/table_settings_block.inc.php:924
6083
  #: templates/edit_table.inc.php:267
6084
  msgid "Editor roles"
6085
  msgstr "Editor rollen"
6086
 
6087
+ #: templates/admin/table-settings/table_settings_block.inc.php:926
6088
  #, fuzzy
6089
  msgid ""
6090
  "If you want only specific user roles to be able to edit the table, choose in "
6093
  "Rollen welke de tabel mogen aanpassen (blanco laten zodat iedereen "
6094
  "aanpassingen kan doen)"
6095
 
6096
+ #: templates/admin/table-settings/table_settings_block.inc.php:931
6097
  msgid "Everyone"
6098
  msgstr ""
6099
 
6100
+ #: templates/admin/table-settings/table_settings_block.inc.php:932
6101
  msgid "Administrators"
6102
  msgstr ""
6103
 
6104
+ #: templates/admin/table-settings/table_settings_block.inc.php:933
6105
  msgid "Editors"
6106
  msgstr ""
6107
 
6108
+ #: templates/admin/table-settings/table_settings_block.inc.php:934
6109
  msgid "Authors"
6110
  msgstr ""
6111
 
6112
+ #: templates/admin/table-settings/table_settings_block.inc.php:935
6113
  msgid "Contributors"
6114
  msgstr ""
6115
 
6116
+ #: templates/admin/table-settings/table_settings_block.inc.php:936
6117
  msgid "Subscribers"
6118
  msgstr ""
6119
 
6120
+ #: templates/admin/table-settings/table_settings_block.inc.php:951
6121
  msgid "Users see and edit only own data"
6122
  msgstr ""
6123
 
6124
+ #: templates/admin/table-settings/table_settings_block.inc.php:959
6125
  msgid "Users see and edit only their own data"
6126
  msgstr ""
6127
 
6128
+ #: templates/admin/table-settings/table_settings_block.inc.php:966
6129
  msgid ""
6130
  "If this is enabled, users will see and edit only the rows that are related "
6131
  "to them or were created by them (associated using the User ID column)."
6132
  msgstr ""
6133
 
6134
+ #: templates/admin/table-settings/table_settings_block.inc.php:974
6135
  msgid "Limit editing to own data only"
6136
  msgstr ""
6137
 
6138
+ #: templates/admin/table-settings/table_settings_block.inc.php:982
6139
  #: templates/edit_table.inc.php:250
6140
  #, fuzzy
6141
  msgid "User ID column"
6142
  msgstr "ID kolom"
6143
 
6144
+ #: templates/admin/table-settings/table_settings_block.inc.php:984
6145
  msgid ""
6146
  "Choose the column values from which will be used as User identifiers. "
6147
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
6148
  "an integer on MySQL side."
6149
  msgstr ""
6150
 
6151
+ #: templates/admin/table-settings/table_settings_block.inc.php:1017
6152
  #: templates/edit_table.inc.php:350
6153
  msgid "Table tools"
6154
  msgstr "Tabel tools"
6155
 
6156
+ #: templates/admin/table-settings/table_settings_block.inc.php:1024
6157
  msgid ""
6158
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6159
  msgstr ""
6160
 
6161
+ #: templates/admin/table-settings/table_settings_block.inc.php:1032
6162
  #, fuzzy
6163
  msgid "Enable Table Tools"
6164
  msgstr "Tabel tools"
6165
 
6166
+ #: templates/admin/table-settings/table_settings_block.inc.php:1040
6167
  msgid "Buttons"
6168
  msgstr ""
6169
 
6170
+ #: templates/admin/table-settings/table_settings_block.inc.php:1042
6171
  msgid "Choose which buttons to show in the Table Tools block."
6172
  msgstr ""
6173
 
6174
+ #: templates/admin/table-settings/table_settings_block.inc.php:1048
6175
  #, fuzzy
6176
  msgid "Columns visibility"
6177
  msgstr "Kolom type"
6178
 
6179
+ #: templates/admin/table-settings/table_settings_block.inc.php:1080
6180
  msgid ""
6181
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6182
  "that will be replaced with some actual values at the execution time; usually "
6183
+ "this is used for SQL queries, but you can use it for filtering and editing "
6184
+ "for manual tables and only filtering for tables created from XML, JSON, "
6185
+ "Excel, CSV, Google Spreadsheet and PHP Serialized array."
6186
  msgstr ""
6187
 
6188
+ #: templates/admin/table-settings/table_settings_block.inc.php:1094
6189
+ #: templates/admin/table-settings/table_settings_block.inc.php:1109
6190
+ #: templates/admin/table-settings/table_settings_block.inc.php:1124
6191
  msgid ""
6192
  "This placeholder will be replaced with any value that you will provide in a "
6193
  "shortcode. Provide a default value here that will be used for table "
6194
  "generation and when a different one is not defined in the shortcode."
6195
  msgstr ""
6196
 
6197
+ #: templates/admin/table-settings/table_settings_block.inc.php:1099
6198
+ #: templates/admin/table-settings/table_settings_block.inc.php:1114
6199
+ #: templates/admin/table-settings/table_settings_block.inc.php:1129
6200
+ #: templates/admin/table-settings/table_settings_block.inc.php:1152
6201
+ #: templates/admin/table-settings/table_settings_block.inc.php:1170
6202
+ #: templates/admin/table-settings/table_settings_block.inc.php:1188
6203
+ #: templates/admin/table-settings/table_settings_block.inc.php:1210
6204
+ #: templates/admin/table-settings/table_settings_block.inc.php:1228
6205
+ #: templates/admin/table-settings/table_settings_block.inc.php:1246
6206
+ #: templates/admin/table-settings/table_settings_block.inc.php:1271
6207
+ #: templates/admin/table-settings/table_settings_block.inc.php:1291
6208
+ #: templates/admin/table-settings/table_settings_block.inc.php:1310
6209
+ #: templates/admin/table-settings/table_settings_block.inc.php:1332
6210
  msgid "Default for table generation"
6211
  msgstr ""
6212
 
6213
+ #: templates/admin/table-settings/table_settings_block.inc.php:1145
6214
  msgid ""
6215
  "This placeholder will be replaced with the ID of currently logged in user. "
6216
  "Provide a value here to be used for table generation"
6217
  msgstr ""
6218
 
6219
+ #: templates/admin/table-settings/table_settings_block.inc.php:1162
6220
  msgid ""
6221
  "This placeholder will be replaced with the login of currently logged in "
6222
  "user. Provide a value here to be used for table generation"
6223
  msgstr ""
6224
 
6225
+ #: templates/admin/table-settings/table_settings_block.inc.php:1180
6226
  msgid ""
6227
+ "This placeholder will be replaced with the Email of currently logged in "
6228
+ "user. Provide a value here to be used for table generation"
6229
  msgstr ""
6230
 
6231
+ #: templates/admin/table-settings/table_settings_block.inc.php:1204
6232
  msgid ""
6233
  "This placeholder will be replaced with the ID of current post. Provide a "
6234
  "value here to be used for table generation"
6235
  msgstr ""
6236
 
6237
+ #: templates/admin/table-settings/table_settings_block.inc.php:1220
6238
+ msgid ""
6239
+ "This placeholder will be replaced with the First Name of currently logged in "
6240
+ "user. Provide a value here to be used for table generation"
6241
+ msgstr ""
6242
+
6243
+ #: templates/admin/table-settings/table_settings_block.inc.php:1238
6244
+ msgid ""
6245
+ "This placeholder will be replaced with the Last Name of currently logged in "
6246
+ "user. Provide a value here to be used for table generation"
6247
+ msgstr ""
6248
+
6249
+ #: templates/admin/table-settings/table_settings_block.inc.php:1262
6250
+ msgid "This placeholder will be replaced with current date."
6251
+ msgstr ""
6252
+
6253
+ #: templates/admin/table-settings/table_settings_block.inc.php:1281
6254
+ msgid "This placeholder will be replaced with current datetime."
6255
+ msgstr ""
6256
+
6257
+ #: templates/admin/table-settings/table_settings_block.inc.php:1301
6258
+ msgid "This placeholder will be replaced with current time."
6259
+ msgstr ""
6260
+
6261
+ #: templates/admin/table-settings/table_settings_block.inc.php:1325
6262
+ msgid ""
6263
+ "This placeholder will be replaced with the current prefix of WordPress "
6264
+ "database. Provide a value here to be used for table generation"
6265
+ msgstr ""
6266
+
6267
+ #: templates/admin/table-settings/table_settings_block.inc.php:1356
6268
+ msgid ""
6269
+ "In premium version you can customize each table with different skin, font, "
6270
+ "background , colors and lot more. Checkout new table customize settings "
6271
+ "below."
6272
+ msgstr ""
6273
+
6274
+ #: templates/admin/table-settings/table_settings_block.inc.php:1363
6275
+ msgid "Main"
6276
+ msgstr ""
6277
+
6278
+ #: templates/admin/table-settings/table_settings_block.inc.php:1375
6279
+ msgid "Table border"
6280
+ msgstr ""
6281
+
6282
+ #: templates/admin/table-settings/table_settings_block.inc.php:1391
6283
+ msgid "Custom CSS"
6284
+ msgstr ""
6285
+
6286
+ #: templates/admin/table-settings/table_settings_block.inc.php:1716
6287
+ msgid "Remove borders in table header"
6288
+ msgstr ""
6289
+
6290
+ #: templates/admin/table-settings/table_settings_block.inc.php:2028
6291
+ msgid ""
6292
+ "This CSS will be inserted as an inline style block on every page that has "
6293
+ "this wpDataTable."
6294
+ msgstr ""
6295
+
6296
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6297
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6298
  msgid "Go to Dashboard"
languages/pl_PL/wpdatatables-pl_PL.mo CHANGED
Binary file
languages/pl_PL/wpdatatables-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-01-15 17:05+0100\n"
5
- "PO-Revision-Date: 2021-01-15 17:05+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: pl\n"
@@ -98,13 +98,13 @@ msgstr ""
98
  msgid "Go Premium"
99
  msgstr ""
100
 
101
- #: controllers/wdt_admin.php:516 controllers/wdt_admin.php:565
102
- #: controllers/wdt_admin.php:608 controllers/wdt_admin.php:629
103
- #: controllers/wdt_admin.php:676 controllers/wdt_admin.php:702
104
- #: controllers/wdt_admin.php:721 controllers/wdt_admin.php:741
105
- #: controllers/wdt_admin.php:760 controllers/wdt_admin.php:780
106
- #: controllers/wdt_admin.php:800 controllers/wdt_admin.php:820
107
- #: controllers/wdt_admin.php:839
108
  msgid "You do not have sufficient permissions to access this page."
109
  msgstr "Nie masz wystarczających uprawnień, aby uzyskać dostęp do tej strony."
110
 
@@ -214,6 +214,27 @@ msgstr ""
214
  "shortcode zostanie wstawiony automatycznie. Są w stanie podać wartości dla "
215
  "symboli zastępczych, a także dla Nazwa pliku eksportu."
216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  #: source/class.wdtbrowsechartstable.php:141
218
  #: source/class.wdtbrowsetable.php:168
219
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
@@ -236,7 +257,7 @@ msgid "Configure"
236
  msgstr "Konfiguracja"
237
 
238
  #: source/class.wdtbrowsechartstable.php:162
239
- #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:303
240
  #: templates/admin/browse/bulk_actions.inc.php:14
241
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
242
  msgid "Delete"
@@ -318,6 +339,11 @@ msgstr "Zaznacz wszystko"
318
  msgid "No wpDataCharts in the system yet."
319
  msgstr "Nie wpDataCharts w systemie jeszcze."
320
 
 
 
 
 
 
321
  #: source/class.wdtbrowsetable.php:231
322
  msgid "MySQL"
323
  msgstr "MySQL"
@@ -326,15 +352,15 @@ msgstr "MySQL"
326
  msgid "Manual"
327
  msgstr "Ręcznie"
328
 
329
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2216
330
- #: source/class.wpdatatable.php:2286
331
- #: templates/admin/table-settings/table_settings_block.inc.php:1031
332
  msgid "Excel"
333
  msgstr "Excel"
334
 
335
- #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2225
336
- #: source/class.wpdatatable.php:2296
337
- #: templates/admin/table-settings/table_settings_block.inc.php:1032
338
  msgid "CSV"
339
  msgstr "CSV"
340
 
@@ -347,7 +373,7 @@ msgid "JSON"
347
  msgstr "JSON"
348
 
349
  #: source/class.wdtbrowsetable.php:249
350
- #: templates/admin/table-settings/table_settings_block.inc.php:111
351
  #: templates/edit_table.inc.php:91
352
  msgid "Serialized PHP array"
353
  msgstr "Serializowana tablica PHP"
@@ -437,7 +463,7 @@ msgstr "Obraz"
437
  msgid "Attachment"
438
  msgstr "Załącznik"
439
 
440
- #: source/class.wdttools.php:159
441
  msgid ""
442
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
443
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
@@ -447,15 +473,15 @@ msgstr ""
447
  "nie jest poprawnie opublikowany.<br>Możesz opublikować go, przechodząc do "
448
  "<b>pliku-> publikowanie w Internecie</b> "
449
 
450
- #: source/class.wdttools.php:287
451
  msgid "Back to date"
452
  msgstr "Powrót do daty"
453
 
454
- #: source/class.wdttools.php:288
455
  msgid "Browse"
456
  msgstr "Przeglądaj"
457
 
458
- #: source/class.wdttools.php:289 source/class.wdttools.php:410
459
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
460
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
461
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
@@ -473,24 +499,24 @@ msgstr "Przeglądaj"
473
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
474
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
475
  #: templates/admin/table-settings/table_preview_block.inc.php:86
476
- #: templates/admin/table-settings/table_settings_block.inc.php:40
477
  #: templates/common/delete_modal.inc.php:39
478
  msgid "Cancel"
479
  msgstr "Anuluj"
480
 
481
- #: source/class.wdttools.php:290
482
  msgid " field cannot be empty!"
483
  msgstr " pole nie może być puste!"
484
 
485
- #: source/class.wdttools.php:291
486
  msgid "Use selected file"
487
  msgstr "Użyj wybranego pliku"
488
 
489
- #: source/class.wdttools.php:292
490
  msgid "Choose file"
491
  msgstr "Proszę wybrać plik"
492
 
493
- #: source/class.wdttools.php:293 templates/admin/common/error_modal.inc.php:23
494
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
495
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
496
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
@@ -498,379 +524,389 @@ msgstr "Proszę wybrać plik"
498
  msgid "Close"
499
  msgstr "Zamknij"
500
 
501
- #: source/class.wdttools.php:294
502
  msgid "Column has been added!"
503
  msgstr "Dodano kolumnę!"
504
 
505
- #: source/class.wdttools.php:295
506
  msgid "Column header cannot be empty!"
507
  msgstr "Nagłówek kolumny nie może być pusty!"
508
 
509
- #: source/class.wdttools.php:296
510
  msgid "Please confirm column deletion!"
511
  msgstr "Proszę potwierdzić usunięcie kolumny!"
512
 
513
- #: source/class.wdttools.php:297
514
  msgid "Column has been removed!"
515
  msgstr "Kolumna została usunięta!"
516
 
517
- #: source/class.wdttools.php:298
518
  msgid "Please select columns that you want to use in table"
519
  msgstr "Proszę wybrać kolumny, których chcesz użyć w tabeli"
520
 
521
- #: source/class.wdttools.php:299 source/class.wpdatatable.php:2234
522
- #: source/class.wpdatatable.php:2306
523
- #: templates/admin/table-settings/table_settings_block.inc.php:1033
524
  msgid "Copy"
525
  msgstr "Kopiuj"
526
 
527
- #: source/class.wdttools.php:300
528
  msgid "There was an error trying to insert a new row!"
529
  msgstr "Wystąpił błąd podczas próby wstawienia nowego wiersza!"
530
 
531
- #: source/class.wdttools.php:301
532
  msgid "Data has been saved!"
533
  msgstr "Dane zostały zapisane!"
534
 
535
- #: source/class.wdttools.php:302
536
  msgid "detach"
537
  msgstr "odłącz"
538
 
539
- #: source/class.wdttools.php:304
540
  msgid "Delete selected"
541
  msgstr ""
542
 
543
- #: source/class.wdttools.php:305 templates/settings.inc.php:553
544
  #: templates/settings.inc.php:627
545
  msgid "Error!"
546
  msgstr "Błąd!"
547
 
548
- #: source/class.wdttools.php:306
549
  msgid "Please upload or choose a file from Media Library!"
550
  msgstr "Proszę przesłać lub wybrać plik z biblioteki multimediów!"
551
 
552
- #: source/class.wdttools.php:307
553
  msgid "From"
554
  msgstr "Od"
555
 
556
- #: source/class.wdttools.php:308
557
  msgid "Please provide a valid e-mail address for field"
558
  msgstr "Podaj prawidłowy adres e-mail dla pola"
559
 
560
- #: source/class.wdttools.php:309
561
  msgid "Please provide a valid URL link for field"
562
  msgstr "Podaj prawidłowy link URL dla pola"
563
 
564
- #: source/class.wdttools.php:310
565
  msgid "You have entered invalid value. Press ESC to cancel."
566
  msgstr "Wprowadzono nieprawidłową wartość. Naciśnij ESC, aby anulować."
567
 
568
- #: source/class.wdttools.php:311 source/class.wdttools.php:340
569
  msgid "Show _MENU_ entries"
570
  msgstr "Pokaż pozycje _MENU_"
571
 
572
- #: source/class.wdttools.php:312
573
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
574
  msgid "Merge"
575
  msgstr "Połącz"
576
 
577
- #: source/class.wdttools.php:313
578
  msgid "New column"
579
  msgstr "Nowa kolumna"
580
 
581
- #: source/class.wdttools.php:314
582
  msgid "Number of columns can not be empty or 0"
583
  msgstr ""
584
 
585
- #: source/class.wdttools.php:315
586
  msgid "Number of rows can not be empty or 0"
587
  msgstr ""
588
 
589
- #: source/class.wdttools.php:317
590
  msgid ": activate to sort column ascending"
591
  msgstr ": aktywuj, by sortować klumny rosnąco"
592
 
593
- #: source/class.wdttools.php:318
594
  msgid ": activate to sort column descending"
595
  msgstr ": aktywuj, by sortować klumny malejąco"
596
 
597
- #: source/class.wdttools.php:320
598
  msgid "Ok"
599
  msgstr "Ok"
600
 
601
- #: source/class.wdttools.php:322
602
  msgid "First"
603
  msgstr "Pierwszy"
604
 
605
- #: source/class.wdttools.php:323
606
  msgid "Last"
607
  msgstr "Ostatni"
608
 
609
- #: source/class.wdttools.php:324
610
  msgid "Next"
611
  msgstr "Następny"
612
 
613
- #: source/class.wdttools.php:325
614
  msgid "Previous"
615
  msgstr "Poprzedni"
616
 
617
- #: source/class.wdttools.php:327
618
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
619
  msgid "Replace"
620
  msgstr "Zastąp"
621
 
622
- #: source/class.wdttools.php:328
623
  msgid "Row has been deleted!"
624
  msgstr "Wiersz został usunięty!"
625
 
626
- #: source/class.wdttools.php:329
 
 
 
 
627
  msgid "Select a file to use in table"
628
  msgstr "Wybrać plik do użycia w tabeli"
629
 
630
- #: source/class.wdttools.php:330
631
  msgid "Select an Excel or CSV file"
632
  msgstr "Wybierz plik Excel lub CSV"
633
 
634
- #: source/class.wdttools.php:331
635
  msgid "No data available in table"
636
  msgstr "Brak danych w tabeli"
637
 
638
- #: source/class.wdttools.php:332
639
  msgid "Plugin settings saved successfully"
640
  msgstr "Ustawienia wtyczki zostały pomyślnie zapisane"
641
 
642
- #: source/class.wdttools.php:333
643
  msgid ""
644
  "Unable to save settings of plugin. Please try again or contact us over "
645
  "Support page."
646
  msgstr ""
647
 
648
- #: source/class.wdttools.php:334
649
  msgid "Shortcode has been copied to the clipboard."
650
  msgstr "Shortcode został skopiowany do Schowka."
651
 
652
- #: source/class.wdttools.php:335
653
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
654
  msgstr "Wyświetlanie _START_ to _END_ of _TOTAL_ entries"
655
 
656
- #: source/class.wdttools.php:336
657
  msgid "Showing 0 to 0 of 0 entries"
658
  msgstr "Wyświetla 0 z 0 zgłoszeń"
659
 
660
- #: source/class.wdttools.php:337
661
  msgid "(filtered from _MAX_ total entries)"
662
  msgstr "(filtered from _MAX_ total entries)"
663
 
664
- #: source/class.wdttools.php:339
665
  msgid ","
666
  msgstr ","
667
 
668
- #: source/class.wdttools.php:341
669
  msgid "Loading..."
670
  msgstr "Ładowanie..."
671
 
672
- #: source/class.wdttools.php:342
673
  msgid "Processing..."
674
  msgstr "Przetwarzanie . . ."
675
 
676
- #: source/class.wdttools.php:343
677
  msgid "SQL error"
678
  msgstr "Błąd SQL"
679
 
680
- #: source/class.wdttools.php:344
681
  msgid "Search: "
682
  msgstr "Szukaj: "
683
 
684
- #: source/class.wdttools.php:345 templates/settings.inc.php:559
685
  #: templates/settings.inc.php:625
686
  msgid "Success!"
687
  msgstr "Sukces!"
688
 
689
- #: source/class.wdttools.php:346
690
  msgid "No matching records found"
691
  msgstr "Brak wyników"
692
 
693
- #: source/class.wdttools.php:347
694
  msgid ""
695
  "System info data has been copied to the clipboard. You can now paste it in "
696
  "file or in support topic."
697
  msgstr ""
698
 
699
- #: source/class.wdttools.php:348
700
  msgid "Table saved successfully!"
701
  msgstr "Tabela zapisana pomyślnie!"
702
 
703
- #: source/class.wdttools.php:349
704
  msgid "To"
705
  msgstr "Do"
706
 
707
- #: source/class.wdttools.php:385
708
  #: templates/admin/common/premium_modal.inc.php:17
 
 
709
  msgid "This is a premium feature"
710
  msgstr ""
711
 
712
- #: source/class.wdttools.php:386
713
  #: templates/admin/common/premium_modal.inc.php:26
 
 
714
  msgid "This feature is available only in premium version of wpDataTables"
715
  msgstr ""
716
 
717
- #: source/class.wdttools.php:387
718
  #: templates/admin/getting-started/getting_started.inc.php:133
719
  #: templates/admin/getting-started/getting_started.inc.php:145
720
  #: templates/admin/getting-started/getting_started.inc.php:157
721
  #: templates/admin/getting-started/getting_started.inc.php:169
 
 
722
  msgid "Compare and View Pricing"
723
  msgstr ""
724
 
725
- #: source/class.wdttools.php:406
726
  msgid "Field cannot be empty!"
727
  msgstr ""
728
 
729
- #: source/class.wdttools.php:407
730
  msgid "Please choose chart type."
731
  msgstr ""
732
 
733
- #: source/class.wdttools.php:408
734
  msgid "Please select wpDataTable from dropdown."
735
  msgstr ""
736
 
737
- #: source/class.wdttools.php:409
738
  msgid "Columns field cannot be empty"
739
  msgstr ""
740
 
741
- #: source/class.wdttools.php:411
742
  msgid ""
743
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
744
  "clicking on Cancel button."
745
  msgstr ""
746
 
747
- #: source/class.wdttools.php:412
748
  msgid "Finish Tutorial"
749
  msgstr ""
750
 
751
- #: source/class.wdttools.php:413
752
  msgid "Continue"
753
  msgstr ""
754
 
755
- #: source/class.wdttools.php:414
756
  msgid "Start"
757
  msgstr ""
758
 
759
- #: source/class.wdttools.php:415
760
  msgid "Skip Tutorial"
761
  msgstr ""
762
 
763
- #: source/class.wdttools.php:418 source/class.wdttools.php:484
764
- #: source/class.wdttools.php:526
765
  msgid "Welcome to the tutorial!"
766
  msgstr ""
767
 
768
- #: source/class.wdttools.php:419 source/class.wdttools.php:485
769
- #: source/class.wdttools.php:527
770
  msgid "Hello "
771
  msgstr ""
772
 
773
- #: source/class.wdttools.php:419
774
  msgid ""
775
  ", in this tutorial, we will show you how to create a simple table from "
776
  "scratch by choosing a custom number of columns and rows. How to customize "
777
  "each cell, merge cells and a lot more."
778
  msgstr ""
779
 
780
- #: source/class.wdttools.php:422
781
  msgid " Let's create a new wpDataTable from scratch!"
782
  msgstr ""
783
 
784
- #: source/class.wdttools.php:423 source/class.wdttools.php:489
785
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
786
  msgstr ""
787
 
788
- #: source/class.wdttools.php:426
789
  msgid "Choose this option"
790
  msgstr ""
791
 
792
- #: source/class.wdttools.php:427
793
  msgid "Please select 'Create a simple table from scratch'."
794
  msgstr ""
795
 
796
- #: source/class.wdttools.php:430 source/class.wdttools.php:496
797
  msgid "Click Next"
798
  msgstr ""
799
 
800
- #: source/class.wdttools.php:431 source/class.wdttools.php:497
801
  msgid "Please click the 'Next' button to continue."
802
  msgstr ""
803
 
804
- #: source/class.wdttools.php:434
805
  msgid "Welcome to the Simple table wizard!"
806
  msgstr ""
807
 
808
- #: source/class.wdttools.php:435
809
  msgid "Please click 'Continue' button to move on."
810
  msgstr ""
811
 
812
- #: source/class.wdttools.php:438
813
  msgid "Choose a name for your table"
814
  msgstr ""
815
 
816
- #: source/class.wdttools.php:439
817
  msgid "After inserting table name, click 'Continue' to move on."
818
  msgstr ""
819
 
820
- #: source/class.wdttools.php:442
821
  msgid "Choose the number of columns for your table"
822
  msgstr ""
823
 
824
- #: source/class.wdttools.php:443
825
  msgid ""
826
  "Please choose how many columns it will have. Remember that you can always "
827
  "add or reduce the number of columns later. Click 'Continue' when you finish."
828
  msgstr ""
829
 
830
- #: source/class.wdttools.php:446
831
  msgid "Choose the number of rows for your table."
832
  msgstr ""
833
 
834
- #: source/class.wdttools.php:447
835
  msgid ""
836
  "Please choose how many rows it will have. Remember that you can always add "
837
  "or reduce the number of rows later. Click 'Continue' when you finish."
838
  msgstr ""
839
 
840
- #: source/class.wdttools.php:450
841
  msgid "Click on the 'Generate Table' button"
842
  msgstr ""
843
 
844
- #: source/class.wdttools.php:451
845
  msgid "When you click on the button, the empty table will be ready for you. "
846
  msgstr ""
847
 
848
- #: source/class.wdttools.php:454
849
  msgid "We are generating the table..."
850
  msgstr ""
851
 
852
- #: source/class.wdttools.php:455
853
  msgid "Please, when you see the table, click 'Continue' to move on."
854
  msgstr ""
855
 
856
- #: source/class.wdttools.php:458
857
  msgid ""
858
  "Nice job! You just configured your table and it is ready to fill it with "
859
  "data."
860
  msgstr ""
861
 
862
- #: source/class.wdttools.php:459
863
  msgid ""
864
  "Now we will guide you on how to insert data and check table layout throw "
865
  "Simple table editor, table toolbar and table preview. Please click "
866
  "'Continue' to move on."
867
  msgstr ""
868
 
869
- #: source/class.wdttools.php:462
870
  msgid "This is Simple table editor"
871
  msgstr ""
872
 
873
- #: source/class.wdttools.php:463
874
  msgid ""
875
  "Here you can populate your table with data. <br><br>You can move around the "
876
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
@@ -879,11 +915,11 @@ msgid ""
879
  "line of the row header. Click 'Continue' to move on."
880
  msgstr ""
881
 
882
- #: source/class.wdttools.php:466
883
  msgid "Check out the Simple table toolbar"
884
  msgstr ""
885
 
886
- #: source/class.wdttools.php:467
887
  msgid ""
888
  "Here you can style and insert custom data for each cell or range of cells. "
889
  "You can add or delete columns and rows, merge cells, customize sections by "
@@ -891,39 +927,39 @@ msgid ""
891
  "ratings or custom HTML code."
892
  msgstr ""
893
 
894
- #: source/class.wdttools.php:470
895
  msgid "Responsive table views"
896
  msgstr ""
897
 
898
- #: source/class.wdttools.php:471
899
  msgid ""
900
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
901
  "tab that you need, so you can make sure your table looks excellent across "
902
  "all devices. "
903
  msgstr ""
904
 
905
- #: source/class.wdttools.php:474
906
  msgid "Real-time preview"
907
  msgstr ""
908
 
909
- #: source/class.wdttools.php:475
910
  msgid ""
911
  "Here you will see how your table will look like on the page. Please click "
912
  "'Continue' to move on."
913
  msgstr ""
914
 
915
- #: source/class.wdttools.php:478
916
  msgid "Congrats! Your table is ready."
917
  msgstr ""
918
 
919
- #: source/class.wdttools.php:479
920
  msgid ""
921
  "Now you can copy the shortcode for this table, and check out how it looks on "
922
  "your website when you paste it to a post or page. You can always come back "
923
  "and edit the table as you like."
924
  msgstr ""
925
 
926
- #: source/class.wdttools.php:485
927
  msgid ""
928
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
929
  "existing data source. \"Linked\" in this context means that if you create a "
@@ -932,54 +968,54 @@ msgid ""
932
  "reflected in the table."
933
  msgstr ""
934
 
935
- #: source/class.wdttools.php:488
936
  msgid "Let's create a new wpDataTable!"
937
  msgstr ""
938
 
939
- #: source/class.wdttools.php:492
940
  msgid "Choose this option."
941
  msgstr ""
942
 
943
- #: source/class.wdttools.php:493
944
  msgid "Please select 'Create a table linked to an existing data source'."
945
  msgstr ""
946
 
947
- #: source/class.wdttools.php:500
948
- #: templates/admin/table-settings/table_settings_block.inc.php:95
949
  msgid "Input data source type"
950
  msgstr "Typ źródła danych wejściowych"
951
 
952
- #: source/class.wdttools.php:501
953
  msgid "Please select a data source type that you need."
954
  msgstr ""
955
 
956
- #: source/class.wdttools.php:504
957
  msgid "Select Data source type"
958
  msgstr ""
959
 
960
- #: source/class.wdttools.php:505
961
  msgid ""
962
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
963
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
964
  "are available in Premium version)"
965
  msgstr ""
966
 
967
- #: source/class.wdttools.php:508
968
- #: templates/admin/table-settings/table_settings_block.inc.php:122
969
  msgid "Input file path or URL"
970
  msgstr "Ścieżka pliku wejściowego lub adres URL"
971
 
972
- #: source/class.wdttools.php:509
973
  msgid ""
974
  "Upload your file or provide the full URL here. When you finish click "
975
  "'Continue' button."
976
  msgstr ""
977
 
978
- #: source/class.wdttools.php:512
979
  msgid "Click Save Changes"
980
  msgstr ""
981
 
982
- #: source/class.wdttools.php:513
983
  msgid ""
984
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
985
  "get an error message after button click and you are not able to solve it, "
@@ -988,117 +1024,117 @@ msgid ""
988
  "click Skip tutorial."
989
  msgstr ""
990
 
991
- #: source/class.wdttools.php:516
992
  msgid "The table is creating..."
993
  msgstr ""
994
 
995
- #: source/class.wdttools.php:517
996
  msgid ""
997
  "Now the table is creating. Wait until you see it in the background and then "
998
  "click 'Continue'."
999
  msgstr ""
1000
 
1001
- #: source/class.wdttools.php:520
1002
  msgid "Nice job! You just created your first wpDataTable!"
1003
  msgstr ""
1004
 
1005
- #: source/class.wdttools.php:521
1006
  msgid ""
1007
  "Now you can copy the shortcode for this table, and check out how it looks on "
1008
  "your website when you paste it to a post or page."
1009
  msgstr ""
1010
 
1011
- #: source/class.wdttools.php:527
1012
  msgid ""
1013
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1014
  "plugin."
1015
  msgstr ""
1016
 
1017
- #: source/class.wdttools.php:530
1018
  msgid "Let's create a new wpDataTables Chart!"
1019
  msgstr ""
1020
 
1021
- #: source/class.wdttools.php:531
1022
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1023
  msgstr ""
1024
 
1025
- #: source/class.wdttools.php:534
1026
  msgid "Welcome to the Chart Wizard!"
1027
  msgstr ""
1028
 
1029
- #: source/class.wdttools.php:535
1030
  msgid ""
1031
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1032
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1033
  msgstr ""
1034
 
1035
- #: source/class.wdttools.php:538
1036
  msgid "Follow the steps in the Chart Wizard"
1037
  msgstr ""
1038
 
1039
- #: source/class.wdttools.php:539
1040
  msgid ""
1041
  "By following these steps, you will finish building your chart in the Chart "
1042
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1043
  "'Continue' button to move forward."
1044
  msgstr ""
1045
 
1046
- #: source/class.wdttools.php:542
1047
  msgid "Choose a name for your Chart"
1048
  msgstr ""
1049
 
1050
- #: source/class.wdttools.php:543
1051
  msgid "Click 'Continue' button when you’re ready to move forward."
1052
  msgstr ""
1053
 
1054
- #: source/class.wdttools.php:546
1055
  msgid "In wpDataTables you can find several charts render engines."
1056
  msgstr ""
1057
 
1058
- #: source/class.wdttools.php:547
1059
  msgid ""
1060
  "Click on the dropdown, and you will see several options that you can choose "
1061
  "from.(Google charts are only available) <br><br>To continue, click on the "
1062
  "dropdown."
1063
  msgstr ""
1064
 
1065
- #: source/class.wdttools.php:550
1066
  msgid "Choose Google chart engine."
1067
  msgstr ""
1068
 
1069
- #: source/class.wdttools.php:551
1070
  msgid ""
1071
  "By clicking on Google chart options, you will choose the engine that will "
1072
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1073
  "to move forward."
1074
  msgstr ""
1075
 
1076
- #: source/class.wdttools.php:554
1077
  msgid "Different charts types. "
1078
  msgstr ""
1079
 
1080
- #: source/class.wdttools.php:555
1081
  msgid ""
1082
  "Here you can choose a chart type. Please, click on the chart type that you "
1083
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1084
  "forward."
1085
  msgstr ""
1086
 
1087
- #: source/class.wdttools.php:558
1088
  msgid "The first step is finished!"
1089
  msgstr ""
1090
 
1091
- #: source/class.wdttools.php:559
1092
  msgid "Let's move on. Please, click 'Next' to continue."
1093
  msgstr ""
1094
 
1095
- #: source/class.wdttools.php:562
1096
  msgid ""
1097
  "Now you need to choose a wpDataTable based on which we will build a chart "
1098
  "for you"
1099
  msgstr ""
1100
 
1101
- #: source/class.wdttools.php:563
1102
  msgid ""
1103
  "Click on the dropdown, and all your tables will be listed. The columns of "
1104
  "the table that you choose will be used for creating the chart.<br><br>If you "
@@ -1106,59 +1142,59 @@ msgid ""
1106
  "button and create wpDataTable that would contain the data to visualize first."
1107
  msgstr ""
1108
 
1109
- #: source/class.wdttools.php:566
1110
  msgid "Pick your wpDataTable"
1111
  msgstr ""
1112
 
1113
- #: source/class.wdttools.php:567
1114
  msgid ""
1115
  "Pick a wpDataTable from which you want to render a chart and when you "
1116
  "finish, please click 'Continue' to move on."
1117
  msgstr ""
1118
 
1119
- #: source/class.wdttools.php:570
1120
  msgid "The second step is finished!"
1121
  msgstr ""
1122
 
1123
- #: source/class.wdttools.php:571
1124
  msgid ""
1125
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1126
  msgstr ""
1127
 
1128
- #: source/class.wdttools.php:574
1129
  msgid "Just a heads up!"
1130
  msgstr ""
1131
 
1132
- #: source/class.wdttools.php:575
1133
  msgid ""
1134
  "Here you will choose from which columns you will create a chart.<br><br> "
1135
  "Please click 'Continue' button to move forward."
1136
  msgstr ""
1137
 
1138
- #: source/class.wdttools.php:578
1139
  msgid "Meet the wpDataTable Column Blocks"
1140
  msgstr ""
1141
 
1142
- #: source/class.wdttools.php:579
1143
  msgid ""
1144
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1145
  "or click on the arrow to move the desired column to the 'Columns used in the "
1146
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1147
  msgstr ""
1148
 
1149
- #: source/class.wdttools.php:582
1150
  msgid "Well done!"
1151
  msgstr ""
1152
 
1153
- #: source/class.wdttools.php:583
1154
  msgid "Just two more steps to go. Please click 'Next' to continue."
1155
  msgstr ""
1156
 
1157
- #: source/class.wdttools.php:586
1158
  msgid "Chart settings and chart preview."
1159
  msgstr ""
1160
 
1161
- #: source/class.wdttools.php:587
1162
  msgid ""
1163
  "Here you can adjust chart settings, different parameters are grouped in "
1164
  "section; adjusting the parameters will be reflected in the preview of your "
@@ -1166,51 +1202,51 @@ msgid ""
1166
  "button to move forward."
1167
  msgstr ""
1168
 
1169
- #: source/class.wdttools.php:590
1170
  msgid "In this sidebar, you can find the chart settings section."
1171
  msgstr ""
1172
 
1173
- #: source/class.wdttools.php:591
1174
  msgid ""
1175
  "By clicking on each section, you can set your desired parameters per section."
1176
  "<br><br> Please click 'Continue' button to move on."
1177
  msgstr ""
1178
 
1179
- #: source/class.wdttools.php:594
1180
  msgid "Here are the available chart options"
1181
  msgstr ""
1182
 
1183
- #: source/class.wdttools.php:595
1184
  msgid ""
1185
  "Set different chart options for the chosen section to get your desired chart "
1186
  "look.<br><br> Please click 'Continue' button to move on."
1187
  msgstr ""
1188
 
1189
- #: source/class.wdttools.php:598
1190
  msgid "How your chart will look like on the page of your website"
1191
  msgstr ""
1192
 
1193
- #: source/class.wdttools.php:599
1194
  msgid ""
1195
  "Here you can see a preview of your chart based on the settings you have "
1196
  "chosen.<br><br> Please click 'Continue' button to move on."
1197
  msgstr ""
1198
 
1199
- #: source/class.wdttools.php:602
1200
  msgid "You can save your chart now"
1201
  msgstr ""
1202
 
1203
- #: source/class.wdttools.php:603
1204
  msgid ""
1205
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1206
  "button and all your settings for this chart will be saved in the database."
1207
  msgstr ""
1208
 
1209
- #: source/class.wdttools.php:606
1210
  msgid "Congrats! Your first chart is ready!"
1211
  msgstr ""
1212
 
1213
- #: source/class.wdttools.php:607
1214
  msgid ""
1215
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1216
  "page. <br><br>You may now finish this tutorial. "
@@ -1224,7 +1260,7 @@ msgstr "Tylko jedna kolumna może być typu String"
1224
  msgid "You are mixing data types (several date axes and several number)"
1225
  msgstr "Mieszasz typy danych (kilka osi daty i kilka liczb)"
1226
 
1227
- #: source/class.wpdatatable.php:1895
1228
  msgid ""
1229
  "You are trying to load a table of an unknown type. Probably you did not "
1230
  "activate the addon which is required to use this table type."
@@ -1232,38 +1268,38 @@ msgstr ""
1232
  "Próbujesz załadować tabelę nieznanego typu. Prawdopodobnie nie aktywowano "
1233
  "dodatku, który jest wymagany do korzystania z tego typu tabeli."
1234
 
1235
- #: source/class.wpdatatable.php:2134 source/class.wpdatatable.php:2137
1236
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1237
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1238
- #: templates/admin/table-settings/table_settings_block.inc.php:312
1239
  #: templates/edit_table.inc.php:409
1240
  msgid "All"
1241
  msgstr "Wszystkie"
1242
 
1243
- #: source/class.wpdatatable.php:2195 source/class.wpdatatable.php:2264
1244
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1245
  msgid "Columns"
1246
  msgstr "Kolumny"
1247
 
1248
- #: source/class.wpdatatable.php:2205 source/class.wpdatatable.php:2274
1249
- #: templates/admin/table-settings/table_settings_block.inc.php:1030
1250
  msgid "Print"
1251
  msgstr "Drukuj"
1252
 
1253
- #: source/class.wpdatatable.php:2244 source/class.wpdatatable.php:2317
1254
- #: templates/admin/table-settings/table_settings_block.inc.php:1034
1255
  msgid "PDF"
1256
  msgstr "PDF"
1257
 
1258
- #: source/class.wpdatatable.php:2252
1259
  msgid "Export"
1260
  msgstr "Eksport"
1261
 
1262
- #: source/class.wpdatatable.php:2330
1263
  msgid "Search table"
1264
  msgstr "Szukaj"
1265
 
1266
- #: source/class.wpdatatable.php:2331
1267
  msgid "Showing _MENU_ Entries"
1268
  msgstr "Wyświetlanie wpisów _MENU_"
1269
 
@@ -1282,7 +1318,7 @@ msgstr ""
1282
  msgid "if you have some questions or problems with the plugin."
1283
  msgstr ""
1284
 
1285
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:498
1286
  msgid "wpDataTables Addons"
1287
  msgstr ""
1288
 
@@ -1301,12 +1337,12 @@ msgstr ""
1301
  "przez twórców wpDataTables i 3rd party deweloperów, więc stay tuned."
1302
 
1303
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1304
- #: templates/admin/dashboard/dashboard.inc.php:569
1305
  msgid "Report Builder"
1306
  msgstr ""
1307
 
1308
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1309
- #: templates/admin/dashboard/dashboard.inc.php:573
1310
  msgid ""
1311
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1312
  "XLSX documents filled in with actual data from your database."
@@ -1334,7 +1370,7 @@ msgid "NEW"
1334
  msgstr ""
1335
 
1336
  #: templates/admin/addons/addons.inc.php:40
1337
- #: templates/admin/dashboard/dashboard.inc.php:516
1338
  msgid "Master Detail Tables for wpDataTables"
1339
  msgstr ""
1340
 
@@ -1355,7 +1391,7 @@ msgid "Learn more"
1355
  msgstr ""
1356
 
1357
  #: templates/admin/addons/addons.inc.php:67
1358
- #: templates/admin/dashboard/dashboard.inc.php:543
1359
  msgid "Powerful Filters for wpDataTables"
1360
  msgstr "Potężne filtry dla wpDataTables"
1361
 
@@ -1370,12 +1406,12 @@ msgstr ""
1370
  "tylko filtr bez tabeli, zanim użytkownik definiuje wartości wyszukiwania."
1371
 
1372
  #: templates/admin/addons/addons.inc.php:120
1373
- #: templates/admin/dashboard/dashboard.inc.php:596
1374
  msgid "Formidable Forms integration for wpDataTables"
1375
  msgstr "Integracja formularzy Formidable dla wpDataTables"
1376
 
1377
  #: templates/admin/addons/addons.inc.php:123
1378
- #: templates/admin/dashboard/dashboard.inc.php:600
1379
  msgid ""
1380
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1381
  "create wpDataTables from Formidable Forms entries data."
@@ -1384,12 +1420,12 @@ msgstr ""
1384
  "na tworzenie wpDataTables z Formidable danych wpisów formularzy."
1385
 
1386
  #: templates/admin/addons/addons.inc.php:143
1387
- #: templates/admin/dashboard/dashboard.inc.php:622
1388
  msgid "Gravity Forms integration for wpDataTables"
1389
  msgstr "Integracja form grawitacyjnych dla wpDataTables"
1390
 
1391
  #: templates/admin/addons/addons.inc.php:146
1392
- #: templates/admin/dashboard/dashboard.inc.php:626
1393
  msgid ""
1394
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1395
  "wpDataTables from Gravity Forms entries data."
@@ -1471,7 +1507,7 @@ msgid "Chart title & type"
1471
  msgstr "Tytuł wykresu & Type"
1472
 
1473
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1474
- #: templates/admin/table-settings/table_settings_block.inc.php:59
1475
  #: templates/chart_wizard.inc.php:36
1476
  msgid "Data source"
1477
  msgstr "Źródło danych"
@@ -1514,6 +1550,7 @@ msgstr "Etykieta"
1514
 
1515
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1516
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
 
1517
  #: templates/edit_table.inc.php:730
1518
  msgid "Color"
1519
  msgstr "Kolor"
@@ -1731,8 +1768,8 @@ msgstr ""
1731
  #: templates/admin/getting-started/getting_started.inc.php:144
1732
  #: templates/admin/getting-started/getting_started.inc.php:156
1733
  #: templates/admin/getting-started/getting_started.inc.php:168
1734
- #: templates/admin/table-settings/table_settings_block.inc.php:105
1735
- #: templates/admin/table-settings/table_settings_block.inc.php:108
1736
  msgid "Available in Premium"
1737
  msgstr ""
1738
 
@@ -1870,10 +1907,6 @@ msgstr "Seria wydawnicza"
1870
  msgid "Axes"
1871
  msgstr "Osie"
1872
 
1873
- #: templates/admin/chart_wizard/steps/step4.inc.php:17
1874
- msgid "Title"
1875
- msgstr "Tytuł"
1876
-
1877
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1878
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1879
  msgid "Tooltip"
@@ -1969,6 +2002,8 @@ msgstr "Włącz grupowanie"
1969
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
1970
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
1971
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
 
 
1972
  msgid "Background color"
1973
  msgstr "Kolor tła"
1974
 
@@ -1987,6 +2022,7 @@ msgstr "Szerokość piksela zewnętrznego obramowania wykresu."
1987
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
1988
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
1989
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
 
1990
  msgid "Border color"
1991
  msgstr "Kolor obramowania"
1992
 
@@ -2025,6 +2061,7 @@ msgstr "Kolor wykresu wewnętrznego lub obramowania obszaru kreślenia."
2025
 
2026
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2027
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
 
2028
  msgid "Font size"
2029
  msgstr "Rozmiar czcionki"
2030
 
@@ -2396,14 +2433,14 @@ msgstr "Otwórz w edytorze jak w Excelu"
2396
  #: templates/admin/dashboard/dashboard.inc.php:30
2397
  #: templates/admin/getting-started/getting_started.inc.php:34
2398
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2399
- #: templates/admin/settings/settings.inc.php:96
2400
  #: templates/admin/support/support.inc.php:31
2401
  #: templates/admin/support/support.inc.php:47
2402
  #: templates/admin/system-info/system_info.inc.php:29
2403
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2404
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2405
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2406
- #: templates/admin/table-settings/table_settings_block.inc.php:1197
2407
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2408
  msgid "View Documentation"
2409
  msgstr ""
@@ -2635,180 +2672,181 @@ msgid "Version "
2635
  msgstr ""
2636
 
2637
  #: templates/admin/dashboard/dashboard.inc.php:340
2638
- msgid ""
2639
- "A minor update with a couple of features, bug fixes and stability "
2640
- "improvements:"
2641
  msgstr ""
2642
 
2643
  #: templates/admin/dashboard/dashboard.inc.php:345
2644
  msgid ""
2645
- "<strong>Feature:</strong> New option to set column data to be available/"
2646
- "disabled in global search results."
2647
  msgstr ""
2648
 
2649
  #: templates/admin/dashboard/dashboard.inc.php:346
2650
  msgid ""
2651
- "<strong>Feature:</strong> New option to set NOFOLLOW relation for links in "
2652
- "simple and data tables."
2653
  msgstr ""
2654
 
2655
  #: templates/admin/dashboard/dashboard.inc.php:347
2656
  msgid ""
2657
- "<strong>BugFix:</strong> Fixed issue with saving page in Divi builder with "
2658
- "simple table shortcode."
2659
  msgstr ""
2660
 
2661
  #: templates/admin/dashboard/dashboard.inc.php:348
2662
  msgid ""
2663
- "<strong>BugFix:</strong> Fixed issue with not showing tabs in backend after "
2664
- "switch."
2665
  msgstr ""
2666
 
2667
  #: templates/admin/dashboard/dashboard.inc.php:349
2668
  msgid ""
2669
- "<strong>BugFix:</strong> Fixed issue with tooltip in backend when is loaded "
2670
- "jQuery UI."
2671
  msgstr ""
2672
 
2673
  #: templates/admin/dashboard/dashboard.inc.php:350
 
 
 
 
2674
  msgid "Other small bug fixes and stability improvements."
2675
  msgstr ""
2676
 
2677
- #: templates/admin/dashboard/dashboard.inc.php:362
2678
  msgid "Go Premium!"
2679
  msgstr ""
2680
 
2681
- #: templates/admin/dashboard/dashboard.inc.php:368
2682
  msgid "View Comparison"
2683
  msgstr ""
2684
 
2685
- #: templates/admin/dashboard/dashboard.inc.php:376
2686
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2687
  msgid ""
2688
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2689
  "of the powerful features."
2690
  msgstr ""
2691
 
2692
- #: templates/admin/dashboard/dashboard.inc.php:380
2693
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2694
  msgid "Create a table manually"
2695
  msgstr "Ręczne tworzenie tabeli"
2696
 
2697
- #: templates/admin/dashboard/dashboard.inc.php:383
2698
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2699
  msgid "Creating tables from Google Spreadsheet"
2700
  msgstr ""
2701
 
2702
- #: templates/admin/dashboard/dashboard.inc.php:386
2703
  msgid ""
2704
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2705
  "tables via Google Sheet API"
2706
  msgstr ""
2707
 
2708
- #: templates/admin/dashboard/dashboard.inc.php:389
2709
  msgid ""
2710
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2711
  "tables from Private Google Spreadsheet"
2712
  msgstr ""
2713
 
2714
- #: templates/admin/dashboard/dashboard.inc.php:392
2715
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2716
  msgid "Creating MySQL-based tables from database"
2717
  msgstr ""
2718
 
2719
- #: templates/admin/dashboard/dashboard.inc.php:395
2720
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2721
  msgid "Creating MySQL-based tables from Wordpress post types"
2722
  msgstr ""
2723
 
2724
- #: templates/admin/dashboard/dashboard.inc.php:398
2725
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2726
  #: templates/edit_table.inc.php:329
2727
  msgid "Advanced filtering"
2728
  msgstr ""
2729
 
2730
- #: templates/admin/dashboard/dashboard.inc.php:401
2731
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2732
- #: templates/admin/table-settings/table_settings_block.inc.php:144
2733
  #: templates/edit_table.inc.php:282
2734
  msgid "Server-side processing"
2735
  msgstr "Przetwarzanie po stronie serwera"
2736
 
2737
- #: templates/admin/dashboard/dashboard.inc.php:404
2738
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2739
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2740
  msgstr ""
2741
 
2742
- #: templates/admin/dashboard/dashboard.inc.php:407
2743
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2744
  msgid "Front-end table editing"
2745
  msgstr ""
2746
 
2747
- #: templates/admin/dashboard/dashboard.inc.php:410
2748
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2749
  msgid "Excel-like editing"
2750
  msgstr ""
2751
 
2752
- #: templates/admin/dashboard/dashboard.inc.php:413
2753
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2754
  msgid "Creating charts with Highcharts"
2755
  msgstr ""
2756
 
2757
- #: templates/admin/dashboard/dashboard.inc.php:416
2758
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2759
  msgid "Creating charts with Chart.js"
2760
  msgstr ""
2761
 
2762
- #: templates/admin/dashboard/dashboard.inc.php:419
2763
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2764
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2765
  #: templates/edit_table.inc.php:301
2766
  msgid "Responsive"
2767
  msgstr ""
2768
 
2769
- #: templates/admin/dashboard/dashboard.inc.php:422
2770
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2771
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2772
  #: templates/edit_table.inc.php:750
2773
  msgid "Conditional formatting"
2774
  msgstr "Formatowanie warunkowe"
2775
 
2776
- #: templates/admin/dashboard/dashboard.inc.php:425
2777
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2778
  msgid "Calculating Tools"
2779
  msgstr ""
2780
 
2781
- #: templates/admin/dashboard/dashboard.inc.php:428
2782
  msgid "Formula columns"
2783
  msgstr ""
2784
 
2785
- #: templates/admin/dashboard/dashboard.inc.php:431
2786
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2787
- #: templates/admin/table-settings/table_settings_block.inc.php:79
2788
  msgid "Placeholders"
2789
  msgstr "Placeholdery"
2790
 
2791
- #: templates/admin/dashboard/dashboard.inc.php:434
2792
  msgid "Premium support"
2793
  msgstr ""
2794
 
2795
- #: templates/admin/dashboard/dashboard.inc.php:438
2796
  msgid "Get Premium Today"
2797
  msgstr ""
2798
 
2799
- #: templates/admin/dashboard/dashboard.inc.php:445
2800
  msgid "News Blog"
2801
  msgstr ""
2802
 
2803
- #: templates/admin/dashboard/dashboard.inc.php:450
2804
  msgid "Checkout useful articles from wpdatatables.com"
2805
  msgstr ""
2806
 
2807
- #: templates/admin/dashboard/dashboard.inc.php:473
2808
  msgid "Please install and enable PHP extensions xml and dom on your server."
2809
  msgstr ""
2810
 
2811
- #: templates/admin/dashboard/dashboard.inc.php:481
2812
  msgid ""
2813
  "Never miss notifications about new cool features, promotions,\n"
2814
  " giveaways or freebies – subscribe to our "
@@ -2816,48 +2854,48 @@ msgid ""
2816
  " about 1 message per month and never spam!"
2817
  msgstr ""
2818
 
2819
- #: templates/admin/dashboard/dashboard.inc.php:499
2820
  msgid "Premium "
2821
  msgstr ""
2822
 
2823
- #: templates/admin/dashboard/dashboard.inc.php:502
2824
  msgid ""
2825
  "While wpDataTables itself provides quite a large amount of features and "
2826
  "unlimited customisation, flexibility, you can achieve even more with our "
2827
  "premium addons.(requires wpDataTables Premium version)"
2828
  msgstr ""
2829
 
2830
- #: templates/admin/dashboard/dashboard.inc.php:520
2831
  msgid ""
2832
  "A wpDataTables addon which allows showing additional details for a specific "
2833
  "row in a popup or a separate page or post."
2834
  msgstr ""
2835
 
2836
- #: templates/admin/dashboard/dashboard.inc.php:526
2837
- #: templates/admin/dashboard/dashboard.inc.php:553
2838
- #: templates/admin/dashboard/dashboard.inc.php:579
2839
- #: templates/admin/dashboard/dashboard.inc.php:606
2840
- #: templates/admin/dashboard/dashboard.inc.php:632
2841
- #: templates/admin/dashboard/dashboard.inc.php:665
2842
  msgid "Learn More"
2843
  msgstr ""
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:547
2846
  msgid ""
2847
  "An add-on for wpDataTables that provides powerful filtering features: "
2848
  "cascade filtering, applying filters on button click, hide table before "
2849
  "filtering."
2850
  msgstr ""
2851
 
2852
- #: templates/admin/dashboard/dashboard.inc.php:643
2853
  msgid "Need free booking plugin?"
2854
  msgstr ""
2855
 
2856
- #: templates/admin/dashboard/dashboard.inc.php:652
2857
  msgid "Appointments and Events WordPress Booking Plugin"
2858
  msgstr ""
2859
 
2860
- #: templates/admin/dashboard/dashboard.inc.php:655
2861
  msgid ""
2862
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2863
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2868,26 +2906,26 @@ msgid ""
2868
  "each month."
2869
  msgstr ""
2870
 
2871
- #: templates/admin/dashboard/dashboard.inc.php:658
2872
  msgid "Rating: 4.3 - ‎97 reviews"
2873
  msgstr ""
2874
 
2875
- #: templates/admin/dashboard/dashboard.inc.php:661
2876
  msgid "Free Download"
2877
  msgstr ""
2878
 
2879
- #: templates/admin/dashboard/dashboard.inc.php:676
2880
  #: templates/admin/getting-started/getting_started.inc.php:184
2881
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2882
  #: templates/admin/support/support.inc.php:78
2883
  #: templates/admin/system-info/system_info.inc.php:509
2884
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2885
  msgid "Made by"
2886
  msgstr ""
2887
 
2888
- #: templates/admin/dashboard/dashboard.inc.php:684
2889
  #: templates/admin/getting-started/getting_started.inc.php:192
2890
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2891
  #: templates/admin/support/support.inc.php:45
2892
  #: templates/admin/support/support.inc.php:86
2893
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2896,9 +2934,9 @@ msgstr ""
2896
  msgid "Documentation"
2897
  msgstr "Dokumentacja"
2898
 
2899
- #: templates/admin/dashboard/dashboard.inc.php:688
2900
  #: templates/admin/getting-started/getting_started.inc.php:196
2901
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2902
  #: templates/admin/support/support.inc.php:24
2903
  #: templates/admin/support/support.inc.php:90
2904
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3024,7 +3062,7 @@ msgid "Lite vs Premium comparison"
3024
  msgstr ""
3025
 
3026
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3027
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3028
  msgid "Go Premium Now"
3029
  msgstr ""
3030
 
@@ -3037,7 +3075,7 @@ msgid "Lite"
3037
  msgstr ""
3038
 
3039
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3040
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:471
3041
  msgid "Premium"
3042
  msgstr ""
3043
 
@@ -3067,8 +3105,10 @@ msgstr ""
3067
 
3068
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3069
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3070
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3071
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
 
 
3072
  msgid "NEW!"
3073
  msgstr ""
3074
 
@@ -3085,15 +3125,16 @@ msgstr ""
3085
 
3086
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3087
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3088
- #: templates/admin/table-settings/table_settings_block.inc.php:626
3089
- #: templates/admin/table-settings/table_settings_block.inc.php:634
3090
  msgid "Sorting"
3091
  msgstr "Sortowanie"
3092
 
3093
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3094
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3095
- #: templates/admin/table-settings/table_settings_block.inc.php:489
3096
- #: templates/admin/table-settings/table_settings_block.inc.php:497
 
3097
  msgid "Pagination"
3098
  msgstr ""
3099
 
@@ -3120,7 +3161,7 @@ msgid "Customize charts"
3120
  msgstr ""
3121
 
3122
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3123
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:465
3124
  msgid "Limited"
3125
  msgstr ""
3126
 
@@ -3128,37 +3169,41 @@ msgstr ""
3128
  msgid "Some options are not available."
3129
  msgstr ""
3130
 
3131
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
3132
- msgid "Creating tables via Google Sheet API"
3133
  msgstr ""
3134
 
3135
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
 
 
 
 
3136
  msgid "Creating tables from Private Google Spreadsheet"
3137
  msgstr ""
3138
 
3139
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:461
3140
  msgid "Support"
3141
  msgstr ""
3142
 
3143
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:467
3144
  msgid "Response time is slow and can be up to 5 business days."
3145
  msgstr ""
3146
 
3147
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3148
  msgid ""
3149
  "* Please note that wpDataTables add-ons are not included in premium version "
3150
  "of plugin."
3151
  msgstr ""
3152
 
3153
  #: templates/admin/settings/settings.inc.php:33
3154
- #: templates/admin/settings/settings.inc.php:91
3155
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3156
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3157
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3158
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3159
  #: templates/admin/table-settings/table_preview_block.inc.php:89
3160
- #: templates/admin/table-settings/table_settings_block.inc.php:47
3161
  #: templates/admin/table-settings/table_settings_block.inc.php:48
 
3162
  msgid "Save Changes"
3163
  msgstr ""
3164
 
@@ -3182,16 +3227,23 @@ msgstr "Ustawienia kolorów i czcionek"
3182
  msgid "Custom JS and CSS"
3183
  msgstr "Niestandardowe JS i CSS"
3184
 
3185
- #: templates/admin/settings/settings.inc.php:88 templates/settings.inc.php:434
 
 
 
 
3186
  msgid "Reset colors and fonts to default"
3187
  msgstr "Przywróć domyślne kolory i czcionki"
3188
 
3189
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3190
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
 
 
3191
  msgid "Font"
3192
  msgstr "Czcionka"
3193
 
3194
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
 
3195
  #: templates/settings.inc.php:428
3196
  msgid ""
3197
  "This font will be used in rendered tables. Leave blank not to override "
@@ -3201,41 +3253,51 @@ msgstr ""
3201
  "zastępować domyślnych ustawień motywu"
3202
 
3203
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
 
3204
  msgid "Define the font size"
3205
  msgstr "Zdefiniuj rozmiar czcionki"
3206
 
3207
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3208
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3209
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
 
 
3210
  msgid "Font color"
3211
  msgstr "Kolor czcionki"
3212
 
3213
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
 
3214
  msgid "This color is used for the main font in table cells."
3215
  msgstr "Ten kolor jest używany dla głównej czcionki w komórkach tabeli."
3216
 
3217
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3218
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
 
3219
  msgid "Header"
3220
  msgstr ""
3221
 
3222
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
 
3223
  msgid "The color is used for background of the table header."
3224
  msgstr "Kolor jest używany dla tła nagłówka tabeli."
3225
 
3226
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
 
3227
  msgid "This color is used for the border in the table header."
3228
  msgstr "Ten kolor jest używany dla obramowania w nagłówku tabeli."
3229
 
3230
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
 
3231
  msgid "This color is used for the font in the table header."
3232
  msgstr "Ten kolor jest używany dla czcionki w nagłówku tabeli."
3233
 
3234
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
 
3235
  msgid "Active and hover color\t"
3236
  msgstr "Aktywny i aktywowany kolor\t"
3237
 
3238
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
 
3239
  msgid ""
3240
  "This color is used when you hover the mouse above the table header, or when "
3241
  "you choose a column."
@@ -3248,40 +3310,49 @@ msgid "Table border "
3248
  msgstr ""
3249
 
3250
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
 
3251
  msgid "Inner border"
3252
  msgstr "Granica wewnętrzna"
3253
 
3254
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
 
3255
  msgid "This color is used for the inner border in the table between cells."
3256
  msgstr ""
3257
  "Ten kolor jest używany dla wewnętrznego obramowania w tabeli między "
3258
  "komórkami."
3259
 
3260
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
 
3261
  msgid "Outer border"
3262
  msgstr "Granica zewnętrzna"
3263
 
3264
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
 
3265
  msgid "This color is used for the outer border of the whole table body."
3266
  msgstr "Ten kolor jest używany dla zewnętrznej krawędzi całego obiektu tabeli."
3267
 
3268
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
 
3269
  msgid "Table borders"
3270
  msgstr "Obramowania tabel"
3271
 
3272
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
 
3273
  msgid "When this is checked, borders in table will be removed "
3274
  msgstr "Gdy ta jest zaznaczona, obramowania w tabeli zostaną usunięte "
3275
 
3276
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
 
3277
  msgid "Remove borders in table"
3278
  msgstr ""
3279
 
3280
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
 
3281
  msgid "Header border"
3282
  msgstr "Obramowanie nagłówka"
3283
 
3284
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
 
3285
  msgid "When this is checked,borders in header will be removed "
3286
  msgstr "Gdy to jest zaznaczone, obramowania w nagłówku zostaną usunięte "
3287
 
@@ -3290,30 +3361,37 @@ msgid "Remove borders in header"
3290
  msgstr ""
3291
 
3292
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
 
3293
  msgid "Row color"
3294
  msgstr ""
3295
 
3296
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
 
3297
  msgid "Even row background"
3298
  msgstr "Równomierne tło rzędu"
3299
 
3300
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
 
3301
  msgid "This color is used for for background in even rows."
3302
  msgstr "Ten kolor jest używany dla tła w wierszach parzystych."
3303
 
3304
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
 
3305
  msgid "Odd row background"
3306
  msgstr "Nieparzyste tło wiersza"
3307
 
3308
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
 
3309
  msgid "This color is used for for background in odd rows."
3310
  msgstr "Ten kolor jest używany dla tła w nieparzystych wierszach."
3311
 
3312
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
 
3313
  msgid "Hover row"
3314
  msgstr "Umieść wiersz"
3315
 
3316
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
 
3317
  msgid ""
3318
  "This color is used for to highlight the row when you hover your mouse above "
3319
  "it."
@@ -3321,22 +3399,27 @@ msgstr ""
3321
  "Ten kolor służy do wyróżniania wiersza po umieszczeniu kursora myszy nad nim."
3322
 
3323
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
 
3324
  msgid "Background for selected rows"
3325
  msgstr "Tło dla zaznaczonych wierszy"
3326
 
3327
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
 
3328
  msgid "This color is used for background in selected rows."
3329
  msgstr "Ten kolor jest używany dla tła w wybranych wierszach."
3330
 
3331
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
 
3332
  msgid "Cell color"
3333
  msgstr ""
3334
 
3335
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
 
3336
  msgid "Sorted columns, even rows"
3337
  msgstr "Sortowane kolumny, parzyste wiersze"
3338
 
3339
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
 
3340
  msgid ""
3341
  "This color is used for background in cells which are in the active columns "
3342
  "(columns used for sorting) in even rows."
@@ -3345,10 +3428,12 @@ msgstr ""
3345
  "kolumnach (kolumny używane do sortowania) w wierszach parzystych."
3346
 
3347
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
 
3348
  msgid "Sorted columns, odd rows"
3349
  msgstr "Sortowane kolumny, nieparzyste wiersze"
3350
 
3351
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
 
3352
  msgid ""
3353
  "This color is used for background in cells which are in the active columns "
3354
  "(columns used for sorting) in odd rows."
@@ -3451,44 +3536,54 @@ msgstr ""
3451
  "wtyczki."
3452
 
3453
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
 
3454
  msgid "This color is used for the background of the pagination"
3455
  msgstr "Ten kolor jest używany dla tła podział na strony"
3456
 
3457
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
 
3458
  msgid "This color is used for the color of the links in the pagination."
3459
  msgstr "Kolor ten jest używany dla koloru łączy w podział na strony."
3460
 
3461
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
 
3462
  msgid "Current page background color"
3463
  msgstr "Kolor tła bieżącej strony"
3464
 
3465
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
 
3466
  msgid "The color is used for background of the current page"
3467
  msgstr "Kolor jest używany dla tła bieżącej strony"
3468
 
3469
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
 
3470
  msgid "Current page color"
3471
  msgstr "Bieżący kolor strony"
3472
 
3473
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
 
3474
  msgid "This color is used for the color of the current page."
3475
  msgstr "Kolor ten jest używany dla koloru bieżącej strony."
3476
 
3477
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
 
3478
  msgid "Other pages hover background color"
3479
  msgstr "Inne strony Hover kolor tła"
3480
 
3481
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
 
3482
  msgid ""
3483
  "This background color is used when you hover the mouse above the other pages"
3484
  msgstr ""
3485
  "Ten kolor tła jest używany po umieszczeniu kursora myszy nad innymi stronami"
3486
 
3487
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
 
3488
  msgid "Other pages hover color"
3489
  msgstr "Inne strony Hover kolor"
3490
 
3491
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
 
3492
  msgid "This color is used when you hover the mouse above the other pages."
3493
  msgstr ""
3494
  "Ten kolor jest używany po umieszczeniu kursora myszy nad innymi stronami."
@@ -3507,6 +3602,7 @@ msgstr ""
3507
  "która ma wpDataTable."
3508
 
3509
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
 
3510
  #: templates/settings.inc.php:463
3511
  msgid "Custom wpDataTables CSS"
3512
  msgstr "Niestandardowy wpDataTables CSS"
@@ -3528,15 +3624,18 @@ msgid "Use minified version of Javascript files"
3528
  msgstr ""
3529
 
3530
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
 
3531
  #: templates/settings.inc.php:45
3532
  msgid "Interface language"
3533
  msgstr "Język interfejsu"
3534
 
3535
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
 
3536
  msgid "Pick the language which will be used in tables interface."
3537
  msgstr "Wybierz język, który będzie używany w interfejsie tabel."
3538
 
3539
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
 
3540
  msgid "English (default)"
3541
  msgstr "Angielski (domyślnie)"
3542
 
@@ -3549,78 +3648,86 @@ msgstr "Format daty"
3549
  msgid "Pick the date format to use in date column type."
3550
  msgstr "Wybierz format daty, który ma być używany w typie kolumny daty."
3551
 
3552
- #: templates/admin/settings/tabs/main_plugin_settings.php:73
3553
  #: templates/settings.inc.php:119
3554
  msgid "Time format"
3555
  msgstr "Format czasu"
3556
 
3557
- #: templates/admin/settings/tabs/main_plugin_settings.php:75
3558
  msgid "Pick the time format to use in datetime and time column type."
3559
  msgstr "Wybierz format czasu do użycia w DateTime i time typ kolumny."
3560
 
3561
- #: templates/admin/settings/tabs/main_plugin_settings.php:90
3562
  msgid "Parse shortcodes"
3563
  msgstr "Skróconych analizy"
3564
 
3565
- #: templates/admin/settings/tabs/main_plugin_settings.php:92
3566
  msgid ""
3567
  "If the option is enabled, you can use shortcodes of other plugins for "
3568
  "generating content."
3569
  msgstr ""
3570
 
3571
- #: templates/admin/settings/tabs/main_plugin_settings.php:96
3572
  msgid "Parse shortcodes in strings"
3573
  msgstr "Analizować skróconych w ciągach"
3574
 
3575
- #: templates/admin/settings/tabs/main_plugin_settings.php:103
 
3576
  #: templates/settings.inc.php:74
3577
  msgid "Base skin"
3578
  msgstr "Skóra podstawowa"
3579
 
3580
- #: templates/admin/settings/tabs/main_plugin_settings.php:105
 
3581
  msgid "Choose the base skin for the plugin."
3582
  msgstr "Wybierz podstawową skórkę dla wtyczki."
3583
 
3584
- #: templates/admin/settings/tabs/main_plugin_settings.php:111
 
3585
  msgid "Material"
3586
  msgstr "Materiał"
3587
 
3588
- #: templates/admin/settings/tabs/main_plugin_settings.php:112
 
3589
  msgid "Light"
3590
  msgstr "Jasny"
3591
 
3592
- #: templates/admin/settings/tabs/main_plugin_settings.php:113
 
3593
  msgid "Graphite"
3594
  msgstr "Grafit"
3595
 
3596
- #: templates/admin/settings/tabs/main_plugin_settings.php:114
 
3597
  msgid "Aqua"
3598
  msgstr "Wodny"
3599
 
3600
- #: templates/admin/settings/tabs/main_plugin_settings.php:115
 
3601
  msgid "Purple"
3602
  msgstr "Fioletowy"
3603
 
3604
- #: templates/admin/settings/tabs/main_plugin_settings.php:116
 
3605
  msgid "Dark"
3606
  msgstr "Ciemny"
3607
 
3608
- #: templates/admin/settings/tabs/main_plugin_settings.php:124
3609
  #: templates/settings.inc.php:131
3610
  msgid "Number format"
3611
  msgstr "Format liczb"
3612
 
3613
- #: templates/admin/settings/tabs/main_plugin_settings.php:126
3614
  #: templates/settings.inc.php:138
3615
  msgid "Pick the number format (thousands and decimals separator)"
3616
  msgstr "Wybierz format liczb (separator tysięcy i dziesiętnych)"
3617
 
3618
- #: templates/admin/settings/tabs/main_plugin_settings.php:143
3619
  #: templates/settings.inc.php:86
3620
  msgid "Render advanced filter"
3621
  msgstr "Renderuj Filtr zaawansowany"
3622
 
3623
- #: templates/admin/settings/tabs/main_plugin_settings.php:145
3624
  msgid ""
3625
  "Choose where you would like to render the advanced filter for tables where "
3626
  "enabled."
@@ -3628,62 +3735,62 @@ msgstr ""
3628
  "Wybierz, gdzie chcesz renderować Filtr zaawansowany dla tabel, gdzie "
3629
  "włączone."
3630
 
3631
- #: templates/admin/settings/tabs/main_plugin_settings.php:151
3632
  #: templates/settings.inc.php:90
3633
  msgid "In the header"
3634
  msgstr "W nagłówku"
3635
 
3636
- #: templates/admin/settings/tabs/main_plugin_settings.php:152
3637
  #: templates/settings.inc.php:91
3638
  msgid "In the footer"
3639
  msgstr "W stopce"
3640
 
3641
- #: templates/admin/settings/tabs/main_plugin_settings.php:160
3642
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3643
  #: templates/settings.inc.php:143
3644
  msgid "Decimal places"
3645
  msgstr "Miejsca dziesiętne"
3646
 
3647
- #: templates/admin/settings/tabs/main_plugin_settings.php:162
3648
  msgid "Define the amount of decimal places for the float numbers."
3649
  msgstr "Zdefiniuj liczbę miejsc dziesiętnych dla liczb zmiennoprzecinkowych."
3650
 
3651
- #: templates/admin/settings/tabs/main_plugin_settings.php:187
3652
  msgid "CSV delimiter"
3653
  msgstr "Ogranicznik CSV"
3654
 
3655
- #: templates/admin/settings/tabs/main_plugin_settings.php:189
3656
  msgid "Pick the CSV delimiter"
3657
  msgstr "Wybierz ogranicznik CSV"
3658
 
3659
- #: templates/admin/settings/tabs/main_plugin_settings.php:208
3660
  msgid "Tables sorting direction in admin page"
3661
  msgstr ""
3662
 
3663
- #: templates/admin/settings/tabs/main_plugin_settings.php:210
3664
  msgid ""
3665
  "Here you can set sorting direction by id for browse tables and charts. By "
3666
  "default is ascending order."
3667
  msgstr ""
3668
 
3669
- #: templates/admin/settings/tabs/main_plugin_settings.php:216
3670
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3671
  #: templates/edit_table.inc.php:663
3672
  msgid "Ascending"
3673
  msgstr "Rosnąco"
3674
 
3675
- #: templates/admin/settings/tabs/main_plugin_settings.php:217
3676
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3677
  #: templates/edit_table.inc.php:665
3678
  msgid "Descending"
3679
  msgstr "Malejąco"
3680
 
3681
- #: templates/admin/settings/tabs/main_plugin_settings.php:228
3682
  #: templates/settings.inc.php:171
3683
  msgid "Tablet width"
3684
  msgstr "Szerokość tableta"
3685
 
3686
- #: templates/admin/settings/tabs/main_plugin_settings.php:230
3687
  #: templates/settings.inc.php:175
3688
  msgid ""
3689
  "Here you can specify width of the screen (in pixels) that will be treated as "
@@ -3693,43 +3800,43 @@ msgstr ""
3693
  "traktowana jako tablet. Możesz ustawić ją szerzej, jeśli chcesz mieć efekt "
3694
  "responsywny na komputerach stacjonarnych."
3695
 
3696
- #: templates/admin/settings/tabs/main_plugin_settings.php:254
3697
  #: templates/settings.inc.php:181
3698
  msgid "Mobile width"
3699
  msgstr "Szerokość mobilna"
3700
 
3701
- #: templates/admin/settings/tabs/main_plugin_settings.php:256
3702
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3703
  msgstr ""
3704
  "Tutaj można określić szerokość (w pikselach) będą traktowane jako mobilne.."
3705
 
3706
- #: templates/admin/settings/tabs/main_plugin_settings.php:281
3707
  #: templates/settings.inc.php:61
3708
  msgid "Tables per admin page"
3709
  msgstr "Tabele na stronie administracyjnej"
3710
 
3711
- #: templates/admin/settings/tabs/main_plugin_settings.php:283
3712
  msgid "How many tables to show in the browse page."
3713
  msgstr "Jak wiele tabel do wyświetlenia na stronie przeglądania."
3714
 
3715
- #: templates/admin/settings/tabs/main_plugin_settings.php:299
3716
  msgid "Align numbers"
3717
  msgstr "Wyrównywanie liczb"
3718
 
3719
- #: templates/admin/settings/tabs/main_plugin_settings.php:301
3720
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3721
  msgstr ""
3722
 
3723
- #: templates/admin/settings/tabs/main_plugin_settings.php:305
3724
  #: templates/settings.inc.php:161
3725
  msgid "Align numbers to the right"
3726
  msgstr ""
3727
 
3728
- #: templates/admin/settings/tabs/main_plugin_settings.php:315
3729
  msgid "Sum functions label"
3730
  msgstr "Etykieta funkcji Sum"
3731
 
3732
- #: templates/admin/settings/tabs/main_plugin_settings.php:317
3733
  msgid ""
3734
  "Enter a label that will be used for Sum functions. If you leave it blank "
3735
  "default label will be Σ ="
@@ -3737,11 +3844,11 @@ msgstr ""
3737
  "Wprowadź etykietę, która będzie używana dla funkcji Suma. Jeśli zostawisz "
3738
  "pustą etykietę domyślną będzie Σ ="
3739
 
3740
- #: templates/admin/settings/tabs/main_plugin_settings.php:335
3741
  msgid "Average functions label"
3742
  msgstr "Etykieta funkcji średnich"
3743
 
3744
- #: templates/admin/settings/tabs/main_plugin_settings.php:337
3745
  msgid ""
3746
  "Enter a label that will be used for Average functions. If you leave it blank "
3747
  "default label will be Avg ="
@@ -3749,11 +3856,11 @@ msgstr ""
3749
  "Wprowadź etykietę, która będzie używana dla funkcji średnia. Jeśli zostawisz "
3750
  "pustą etykietę domyślną będzie AVG ="
3751
 
3752
- #: templates/admin/settings/tabs/main_plugin_settings.php:360
3753
  msgid "Minimum functions label"
3754
  msgstr "Minimalna etykieta funkcji"
3755
 
3756
- #: templates/admin/settings/tabs/main_plugin_settings.php:362
3757
  msgid ""
3758
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3759
  "default label will be Min ="
@@ -3761,11 +3868,11 @@ msgstr ""
3761
  "Wprowadź etykietę, która będzie używana dla funkcji minimum. Jeśli zostawisz "
3762
  "pustą etykietę domyślną będzie min ="
3763
 
3764
- #: templates/admin/settings/tabs/main_plugin_settings.php:380
3765
  msgid "Maximum functions label"
3766
  msgstr "Maksymalna etykieta funkcji"
3767
 
3768
- #: templates/admin/settings/tabs/main_plugin_settings.php:382
3769
  msgid ""
3770
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3771
  "default label will be Max ="
@@ -3773,12 +3880,12 @@ msgstr ""
3773
  "Wprowadź etykietę, która będzie używana dla funkcji maksimum. Jeśli "
3774
  "zostawisz pustą etykietę domyślną będzie Max ="
3775
 
3776
- #: templates/admin/settings/tabs/main_plugin_settings.php:408
3777
  msgid "Include full bootstrap front-end"
3778
  msgstr "Dołącz pełny Bootstrap frontonu"
3779
 
3780
- #: templates/admin/settings/tabs/main_plugin_settings.php:410
3781
- #: templates/admin/settings/tabs/main_plugin_settings.php:421
3782
  msgid ""
3783
  "It is recommended to uncheck this option if bootstrap.js is already included "
3784
  "in one of the theme files. Unchecked option means that there is still "
@@ -3788,56 +3895,56 @@ msgstr ""
3788
  "z plików motywu. Niezaznaczone opcja oznacza, że nadal jest Bootstrap. js "
3789
  "zawarte tylko w trybie noConflict, który powinien zapobiegać błędom."
3790
 
3791
- #: templates/admin/settings/tabs/main_plugin_settings.php:414
3792
  msgid "Include full bootstrap.js on the front-end"
3793
  msgstr ""
3794
 
3795
- #: templates/admin/settings/tabs/main_plugin_settings.php:419
3796
  msgid "Include full bootstrap back-end"
3797
  msgstr "Dołącz pełną Bootstrap zaplecza"
3798
 
3799
- #: templates/admin/settings/tabs/main_plugin_settings.php:425
3800
  msgid "Include full bootstrap.js on the back-end"
3801
  msgstr ""
3802
 
3803
- #: templates/admin/settings/tabs/main_plugin_settings.php:433
3804
- #: templates/admin/settings/tabs/main_plugin_settings.php:439
3805
  #: templates/settings.inc.php:32
3806
  msgid "Show plugin credentials below tables"
3807
  msgstr ""
3808
 
3809
- #: templates/admin/settings/tabs/main_plugin_settings.php:435
3810
  #: templates/settings.inc.php:32
3811
  msgid ""
3812
  "If you want to support our project, please, keep this checkbox as checked"
3813
  msgstr ""
3814
 
3815
- #: templates/admin/settings/tabs/main_plugin_settings.php:444
3816
  msgid "Prevent deleting tables in database"
3817
  msgstr "Zapobieganie usuwaniu tabel w bazie danych"
3818
 
3819
- #: templates/admin/settings/tabs/main_plugin_settings.php:446
3820
  msgid ""
3821
  "It is recommended to leave this option as checked if you what to keep your "
3822
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3823
  "this option, it will be deleted all tables in database after deleting plugin"
3824
  msgstr ""
3825
 
3826
- #: templates/admin/settings/tabs/main_plugin_settings.php:450
3827
  msgid ""
3828
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3829
  msgstr ""
3830
 
3831
- #: templates/admin/settings/tabs/main_plugin_settings.php:457
3832
  msgid "Remove Getting Started page"
3833
  msgstr ""
3834
 
3835
- #: templates/admin/settings/tabs/main_plugin_settings.php:459
3836
  msgid ""
3837
  "Check this option if you want to remove Getting Started page from admin menu."
3838
  msgstr ""
3839
 
3840
- #: templates/admin/settings/tabs/main_plugin_settings.php:463
3841
  msgid "Remove \"Getting Started\" page from admin menu."
3842
  msgstr ""
3843
 
@@ -4103,10 +4210,6 @@ msgstr "Dodaj kolumnę"
4103
  msgid "Column header"
4104
  msgstr "Nagłówek kolumny"
4105
 
4106
- #: templates/admin/table-settings/add_column_modal.inc.php:47
4107
- msgid "Type"
4108
- msgstr "Typ"
4109
-
4110
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4111
  msgid "Insert after"
4112
  msgstr "Wstaw po"
@@ -4143,7 +4246,7 @@ msgstr "Ustawienia kolumn"
4143
 
4144
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4145
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4146
- #: templates/admin/table-settings/table_settings_block.inc.php:63
4147
  msgid "Display"
4148
  msgstr "Wyświetl"
4149
 
@@ -4156,7 +4259,7 @@ msgid "Global Filtering"
4156
  msgstr ""
4157
 
4158
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4159
- #: templates/admin/table-settings/table_settings_block.inc.php:71
4160
  msgid "Editing"
4161
  msgstr "Edytuję"
4162
 
@@ -4665,7 +4768,7 @@ msgid "Allow filtering"
4665
  msgstr "Pozwól na filtrowanie"
4666
 
4667
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4668
- #: templates/admin/table-settings/table_settings_block.inc.php:665
4669
  msgid "Global search"
4670
  msgstr "Wyszukiwanie globalne"
4671
 
@@ -5233,19 +5336,19 @@ msgid "Clear data"
5233
  msgstr ""
5234
 
5235
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5236
- #: templates/admin/table-settings/table_settings_block.inc.php:199
5237
  #: templates/edit_table.inc.php:58
5238
  msgid "Table title"
5239
  msgstr "Tytuł tabeli"
5240
 
5241
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5242
- #: templates/admin/table-settings/table_settings_block.inc.php:207
5243
  #: templates/edit_table.inc.php:67
5244
  msgid "Show table title"
5245
  msgstr "Pokaż tytuł tabeli"
5246
 
5247
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5248
- #: templates/admin/table-settings/table_settings_block.inc.php:214
5249
  msgid ""
5250
  "Enable this to show the table title in a h3 block above the table, disable "
5251
  "to hide."
@@ -5254,7 +5357,7 @@ msgstr ""
5254
  "ukryć."
5255
 
5256
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5257
- #: templates/admin/table-settings/table_settings_block.inc.php:222
5258
  msgid "Show table title on the page"
5259
  msgstr "Pokaż tytuł tabeli na stronie"
5260
 
@@ -5321,47 +5424,47 @@ msgid "Scrollable"
5321
  msgstr "Przewijany"
5322
 
5323
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5324
- #: templates/admin/table-settings/table_settings_block.inc.php:363
5325
  msgid "Scrollable table"
5326
  msgstr "Przewija tabelę"
5327
 
5328
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5329
- #: templates/admin/table-settings/table_settings_block.inc.php:370
5330
  msgid "Enable this to enable a horizontal scrollbar below the table."
5331
  msgstr "Włącz tę opcję, aby włączyć poziomy pasek przewijania poniżej tabeli."
5332
 
5333
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5334
- #: templates/admin/table-settings/table_settings_block.inc.php:379
5335
  msgid "Show a horizontal scrollbar"
5336
  msgstr "Pokazywanie poziomego paska przewijania"
5337
 
5338
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5339
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5340
- #: templates/admin/table-settings/table_settings_block.inc.php:423
5341
- #: templates/admin/table-settings/table_settings_block.inc.php:431
5342
  msgid "Limit table width"
5343
  msgstr "Ogranicz szerokość stołu"
5344
 
5345
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5346
- #: templates/admin/table-settings/table_settings_block.inc.php:438
5347
  msgid "Enable this to restrict table width to page width."
5348
  msgstr "Włącz tę opcję, aby ograniczyć szerokość tabeli do szerokości strony."
5349
 
5350
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5351
- #: templates/admin/table-settings/table_settings_block.inc.php:447
5352
  msgid "Limit table width to page width"
5353
  msgstr "Ogranicz szerokość stołu do szerokości strony"
5354
 
5355
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5356
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5357
- #: templates/admin/table-settings/table_settings_block.inc.php:454
5358
- #: templates/admin/table-settings/table_settings_block.inc.php:462
5359
  #: templates/edit_table.inc.php:392
5360
  msgid "Word wrap"
5361
  msgstr "Zawijanie"
5362
 
5363
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5364
- #: templates/admin/table-settings/table_settings_block.inc.php:469
5365
  msgid ""
5366
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5367
  "height."
@@ -5370,7 +5473,7 @@ msgstr ""
5370
  "wysokość komórek."
5371
 
5372
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5373
- #: templates/admin/table-settings/table_settings_block.inc.php:477
5374
  msgid "Wrap words to newlines"
5375
  msgstr "Zawijaj wyrazy do nowego wiersza"
5376
 
@@ -5432,16 +5535,20 @@ msgstr "STANDARD"
5432
  msgid "EXCEL-LIKE"
5433
  msgstr "PODOBNE DO EXCELA"
5434
 
5435
- #: templates/admin/table-settings/table_settings_block.inc.php:67
5436
  msgid "Sorting and filtering"
5437
  msgstr "Sortowanie i filtrowanie"
5438
 
5439
- #: templates/admin/table-settings/table_settings_block.inc.php:75
5440
- #: templates/admin/table-settings/table_settings_block.inc.php:990
5441
  msgid "Table Tools"
5442
  msgstr "Narzędzia tabeli"
5443
 
5444
- #: templates/admin/table-settings/table_settings_block.inc.php:97
 
 
 
 
5445
  msgid ""
5446
  "Please choose a type of the input data source - it can be a MySQL query, a "
5447
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
@@ -5450,39 +5557,39 @@ msgstr ""
5450
  "plik lub adres URL. Tylko tabele oparte na zapytaniach MySQL mogą korzystać "
5451
  "z przetwarzania po stronie serwera"
5452
 
5453
- #: templates/admin/table-settings/table_settings_block.inc.php:104
5454
  msgid "Select a data source type"
5455
  msgstr "Wybierz typ źródła danych"
5456
 
5457
- #: templates/admin/table-settings/table_settings_block.inc.php:105
5458
  msgid "SQL query "
5459
  msgstr ""
5460
 
5461
- #: templates/admin/table-settings/table_settings_block.inc.php:106
5462
  #: templates/edit_table.inc.php:85
5463
  msgid "CSV file"
5464
  msgstr "Plik CSV"
5465
 
5466
- #: templates/admin/table-settings/table_settings_block.inc.php:107
5467
  #: templates/edit_table.inc.php:86
5468
  msgid "Excel file"
5469
  msgstr "Plik Excel"
5470
 
5471
- #: templates/admin/table-settings/table_settings_block.inc.php:108
5472
  msgid "Google Spreadsheet "
5473
  msgstr ""
5474
 
5475
- #: templates/admin/table-settings/table_settings_block.inc.php:109
5476
  #: templates/edit_table.inc.php:89
5477
  msgid "XML file"
5478
  msgstr "Plik XML"
5479
 
5480
- #: templates/admin/table-settings/table_settings_block.inc.php:110
5481
  #: templates/edit_table.inc.php:90
5482
  msgid "JSON file"
5483
  msgstr "Plik JSON"
5484
 
5485
- #: templates/admin/table-settings/table_settings_block.inc.php:124
5486
  msgid ""
5487
  "Upload your file or provide the full URL here. For CSV or Excel input "
5488
  "sources only URLs or paths from same domain are supported. For Google "
@@ -5494,16 +5601,16 @@ msgstr ""
5494
  "samej domeny. W przypadku arkuszy kalkulacyjnych Google: nie zapomnij "
5495
  "opublikować arkusza kalkulacyjnego przed wklejeniem adresu URL."
5496
 
5497
- #: templates/admin/table-settings/table_settings_block.inc.php:130
5498
  msgid "Paste URL or path, or click Browse to choose"
5499
  msgstr ""
5500
  "Wklej adres URL lub ścieżkę lub kliknij przycisk Przeglądaj, aby wybrać"
5501
 
5502
- #: templates/admin/table-settings/table_settings_block.inc.php:134
5503
  msgid "Browse..."
5504
  msgstr "Przeglądaj..."
5505
 
5506
- #: templates/admin/table-settings/table_settings_block.inc.php:146
5507
  msgid ""
5508
  "If it is turned on, all sorting, filtering, pagination and other data "
5509
  "interaction will be done by MySQL server. This feature is recommended if you "
@@ -5514,15 +5621,15 @@ msgstr ""
5514
  "zalecana, jeśli masz więcej niż 2000-3000 wierszy. Obowiązkowe dla tabel "
5515
  "edytowalnych."
5516
 
5517
- #: templates/admin/table-settings/table_settings_block.inc.php:151
5518
  msgid "Enable server-side processing"
5519
  msgstr "Włącz przetwarzanie po stronie serwera"
5520
 
5521
- #: templates/admin/table-settings/table_settings_block.inc.php:165
5522
  msgid "MySQL Query"
5523
  msgstr ""
5524
 
5525
- #: templates/admin/table-settings/table_settings_block.inc.php:167
5526
  msgid ""
5527
  "Enter the text of your MySQL query here - please make sure it returns actual "
5528
  "data first. You can use a number of placeholders to make the dataset in the "
@@ -5530,12 +5637,12 @@ msgid ""
5530
  "with different shortcodes."
5531
  msgstr ""
5532
 
5533
- #: templates/admin/table-settings/table_settings_block.inc.php:174
5534
  #: templates/edit_table.inc.php:292
5535
  msgid "Auto-refresh"
5536
  msgstr "Automatyczne odświeżanie"
5537
 
5538
- #: templates/admin/table-settings/table_settings_block.inc.php:176
5539
  msgid ""
5540
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5541
  "with a given interval of seconds. Leave zero or empty not to use auto-"
@@ -5546,25 +5653,25 @@ msgstr ""
5546
  "sekundach. Pozostaw zero lub puste, aby nie używać automatycznego "
5547
  "odświeżania."
5548
 
5549
- #: templates/admin/table-settings/table_settings_block.inc.php:181
5550
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5551
  msgstr ""
5552
  "Interwał automatycznego odświeżania w sekundach (zero lub puste, aby "
5553
  "wyłączyć)"
5554
 
5555
- #: templates/admin/table-settings/table_settings_block.inc.php:230
5556
  msgid "Responsiveness"
5557
  msgstr "Responsywność"
5558
 
5559
- #: templates/admin/table-settings/table_settings_block.inc.php:238
5560
  msgid "Responsive design"
5561
  msgstr "Strony mobilne"
5562
 
5563
- #: templates/admin/table-settings/table_settings_block.inc.php:245
5564
  msgid "Enable this to allow responsiveness in the table."
5565
  msgstr "Włącz tę opcję, aby umożliwić reagowanie w tabeli."
5566
 
5567
- #: templates/admin/table-settings/table_settings_block.inc.php:246
5568
  msgid ""
5569
  "Please do not forget to define which columns will be hidden on mobiles and "
5570
  "tablets in the column settings!"
@@ -5572,15 +5679,15 @@ msgstr ""
5572
  "Proszę nie zapomnij określić, które kolumny będą ukryte na telefonach "
5573
  "komórkowych i tabletach w ustawieniach kolumny!"
5574
 
5575
- #: templates/admin/table-settings/table_settings_block.inc.php:254
5576
  msgid "Allow collapsing on mobiles and tablets"
5577
  msgstr "Zezwalaj na zwijanie na telefonach komórkowych i tabletach"
5578
 
5579
- #: templates/admin/table-settings/table_settings_block.inc.php:262
5580
  msgid "Hide until loaded"
5581
  msgstr "Ukryj do momentu załadowania"
5582
 
5583
- #: templates/admin/table-settings/table_settings_block.inc.php:264
5584
  msgid ""
5585
  "Enable to make whole table hidden until it is initialized to prevent "
5586
  "unformatted data flashing"
@@ -5588,28 +5695,28 @@ msgstr ""
5588
  "Włącz, aby cała tabela była ukryta, dopóki nie zostanie zainicjowana, aby "
5589
  "zapobiec miganiu danych niesformatowanych"
5590
 
5591
- #: templates/admin/table-settings/table_settings_block.inc.php:269
5592
  msgid "Hide the table before it is fully loaded"
5593
  msgstr "Ukryj tabelę przed pełnym załadowaniem"
5594
 
5595
- #: templates/admin/table-settings/table_settings_block.inc.php:281
5596
  msgid "Default rows per page"
5597
  msgstr "Domyślne wiersze na stronę"
5598
 
5599
- #: templates/admin/table-settings/table_settings_block.inc.php:289
5600
- #: templates/admin/table-settings/table_settings_block.inc.php:324
5601
  msgid "Rows per page"
5602
  msgstr "Wierszy na stronie"
5603
 
5604
- #: templates/admin/table-settings/table_settings_block.inc.php:296
5605
  msgid "How many rows to show per page by default."
5606
  msgstr "Liczba wierszy do wyświetlenia na stronie domyślnie."
5607
 
5608
- #: templates/admin/table-settings/table_settings_block.inc.php:332
5609
  msgid "Show X entries"
5610
  msgstr "Pokaż wpisy X"
5611
 
5612
- #: templates/admin/table-settings/table_settings_block.inc.php:339
5613
  msgid ""
5614
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5615
  "frontend."
@@ -5617,32 +5724,32 @@ msgstr ""
5617
  "Włącz/Wyłącz to, aby pokazać/ukryć \"Pokaż wpisy X\" na stronie rozwijanej "
5618
  "na frontend."
5619
 
5620
- #: templates/admin/table-settings/table_settings_block.inc.php:347
5621
  msgid "Show \"Show X entries\" dropdown"
5622
  msgstr "Pokaż listę rozwijaną \"Pokaż wpisy X\""
5623
 
5624
- #: templates/admin/table-settings/table_settings_block.inc.php:371
5625
  msgid "This should be turned off if you want to set columns width manually."
5626
  msgstr ""
5627
  "To powinno być wyłączone, jeśli chcesz ustawić szerokość kolumn ręcznie."
5628
 
5629
- #: templates/admin/table-settings/table_settings_block.inc.php:392
5630
- #: templates/admin/table-settings/table_settings_block.inc.php:400
5631
  msgid "Info block"
5632
  msgstr "Blok informacyjny"
5633
 
5634
- #: templates/admin/table-settings/table_settings_block.inc.php:407
5635
  msgid ""
5636
  "Enable to show a block of information about the number of records below the "
5637
  "table."
5638
  msgstr ""
5639
  "Włącz, aby wyświetlić blok informacji o liczbie rekordów poniżej tabeli."
5640
 
5641
- #: templates/admin/table-settings/table_settings_block.inc.php:415
5642
  msgid "Show information block below the table"
5643
  msgstr "Pokaż blok informacyjny pod tabelą"
5644
 
5645
- #: templates/admin/table-settings/table_settings_block.inc.php:439
5646
  msgid ""
5647
  "This should be turned on if you want to set columns width manually. Should "
5648
  "be on to use word wrapping."
@@ -5650,78 +5757,78 @@ msgstr ""
5650
  "To powinno być włączone, jeśli chcesz ustawić szerokość kolumn ręcznie. "
5651
  "Należy używać zawijania wyrazów."
5652
 
5653
- #: templates/admin/table-settings/table_settings_block.inc.php:501
5654
  msgid "Enable to show a pagination"
5655
  msgstr ""
5656
 
5657
- #: templates/admin/table-settings/table_settings_block.inc.php:509
5658
  msgid "Show pagination block below the table"
5659
  msgstr ""
5660
 
5661
- #: templates/admin/table-settings/table_settings_block.inc.php:517
5662
- #: templates/admin/table-settings/table_settings_block.inc.php:525
5663
  msgid "Pagination Alignment"
5664
  msgstr ""
5665
 
5666
- #: templates/admin/table-settings/table_settings_block.inc.php:529
5667
  msgid "Here you can set pagination position: right, center or left."
5668
  msgstr ""
5669
 
5670
- #: templates/admin/table-settings/table_settings_block.inc.php:537
5671
  msgid "Right"
5672
  msgstr ""
5673
 
5674
- #: templates/admin/table-settings/table_settings_block.inc.php:538
5675
  msgid "Center"
5676
  msgstr ""
5677
 
5678
- #: templates/admin/table-settings/table_settings_block.inc.php:539
5679
  msgid "Left"
5680
  msgstr ""
5681
 
5682
- #: templates/admin/table-settings/table_settings_block.inc.php:548
5683
- #: templates/admin/table-settings/table_settings_block.inc.php:556
5684
  msgid "Pagination Layout"
5685
  msgstr ""
5686
 
5687
- #: templates/admin/table-settings/table_settings_block.inc.php:560
5688
  msgid "Here you can choose between different pagination layout."
5689
  msgstr ""
5690
 
5691
- #: templates/admin/table-settings/table_settings_block.inc.php:568
5692
  msgid ""
5693
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5694
  msgstr ""
5695
 
5696
- #: templates/admin/table-settings/table_settings_block.inc.php:569
5697
  msgid "\"Previous\" and \"Next\" buttons only"
5698
  msgstr ""
5699
 
5700
- #: templates/admin/table-settings/table_settings_block.inc.php:570
5701
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5702
  msgstr ""
5703
 
5704
- #: templates/admin/table-settings/table_settings_block.inc.php:571
5705
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5706
  msgstr ""
5707
 
5708
- #: templates/admin/table-settings/table_settings_block.inc.php:572
5709
  msgid "Page number buttons only"
5710
  msgstr ""
5711
 
5712
- #: templates/admin/table-settings/table_settings_block.inc.php:573
5713
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5714
  msgstr ""
5715
 
5716
- #: templates/admin/table-settings/table_settings_block.inc.php:595
5717
  msgid "Advanced column filters"
5718
  msgstr "Zaawansowane filtry kolumnowe"
5719
 
5720
- #: templates/admin/table-settings/table_settings_block.inc.php:603
5721
  msgid "Advanced filter"
5722
  msgstr "Filtr zaawansowany"
5723
 
5724
- #: templates/admin/table-settings/table_settings_block.inc.php:610
5725
  msgid ""
5726
  "Enable to show an advanced filter for each of the columns, filters can be "
5727
  "shown in table footer, header or in a separate form."
@@ -5729,11 +5836,11 @@ msgstr ""
5729
  "Włącz, aby wyświetlić Filtr zaawansowany dla każdej kolumny, filtry mogą być "
5730
  "wyświetlane w stopce tabeli, nagłówku lub w osobnym formularzu."
5731
 
5732
- #: templates/admin/table-settings/table_settings_block.inc.php:618
5733
  msgid "Enable advanced column filters"
5734
  msgstr "Włącz Zaawansowane filtry kolumn"
5735
 
5736
- #: templates/admin/table-settings/table_settings_block.inc.php:641
5737
  msgid ""
5738
  "If this is enabled, each column header will be clickable; clicking will sort "
5739
  "the whole table by the content of this column cells ascending or descending."
@@ -5742,15 +5849,15 @@ msgstr ""
5742
  "kliknięcie posortuje całą tabelę według zawartości tej kolumny komórek "
5743
  "rosnąco lub malejąco."
5744
 
5745
- #: templates/admin/table-settings/table_settings_block.inc.php:649
5746
  msgid "Allow sorting for the table"
5747
  msgstr "Zezwalaj na sortowanie dla tabeli"
5748
 
5749
- #: templates/admin/table-settings/table_settings_block.inc.php:657
5750
  msgid "Main search block"
5751
  msgstr "Główny blok wyszukiwania"
5752
 
5753
- #: templates/admin/table-settings/table_settings_block.inc.php:672
5754
  msgid ""
5755
  "If this is enabled, a search block will be displayed on the top right of the "
5756
  "table, allowing to search through whole table with a single input."
@@ -5759,20 +5866,20 @@ msgstr ""
5759
  "wyświetlony blok wyszukiwania, umożliwiający przeszukiwanie całej tabeli za "
5760
  "pomocą jednego wejścia."
5761
 
5762
- #: templates/admin/table-settings/table_settings_block.inc.php:680
5763
  msgid "Enable search block"
5764
  msgstr "Włącz blok wyszukiwania"
5765
 
5766
- #: templates/admin/table-settings/table_settings_block.inc.php:694
5767
  msgid "Filters in a form"
5768
  msgstr "Filtry w formularzu"
5769
 
5770
- #: templates/admin/table-settings/table_settings_block.inc.php:701
5771
  #: templates/edit_table.inc.php:340
5772
  msgid "Filter in form"
5773
  msgstr "Filtruj w formie"
5774
 
5775
- #: templates/admin/table-settings/table_settings_block.inc.php:708
5776
  msgid ""
5777
  "Enable to show the advanced column filter in a form above the table, instead "
5778
  "of showing in the table footer/header."
@@ -5780,24 +5887,24 @@ msgstr ""
5780
  "Włącz, aby wyświetlić zaawansowany filtr kolumn w formularzu powyżej tabeli, "
5781
  "zamiast pokazywać w stopce/nagłówku tabeli."
5782
 
5783
- #: templates/admin/table-settings/table_settings_block.inc.php:716
5784
  msgid "Show filters in a form above the table"
5785
  msgstr "Pokaż filtry w formularzu nad tabelą"
5786
 
5787
- #: templates/admin/table-settings/table_settings_block.inc.php:724
5788
  msgid "Clear filters button"
5789
  msgstr "Przycisk Wyczyść filtry"
5790
 
5791
- #: templates/admin/table-settings/table_settings_block.inc.php:731
5792
  #: templates/frontend/filter_form.inc.php:32
5793
  msgid "Clear filters"
5794
  msgstr "Wyczyść filtry"
5795
 
5796
- #: templates/admin/table-settings/table_settings_block.inc.php:735
5797
  msgid "Enable to show the clear filters button."
5798
  msgstr "Włącz, aby wyświetlić przycisk Wyczyść filtry."
5799
 
5800
- #: templates/admin/table-settings/table_settings_block.inc.php:736
5801
  msgid ""
5802
  "If filter in form is enabled, clear button will be rendered after the last "
5803
  "filter."
@@ -5805,7 +5912,7 @@ msgstr ""
5805
  "Jeśli filtr w formularzu jest włączony, po ostatnim filtrze zostanie "
5806
  "wyświetlony przycisk Wyczyść."
5807
 
5808
- #: templates/admin/table-settings/table_settings_block.inc.php:741
5809
  msgid ""
5810
  "Otherwise, clear filter button will be rendered above the table next to "
5811
  "\"Table Tools\" buttons."
@@ -5813,37 +5920,37 @@ msgstr ""
5813
  "W przeciwnym razie przycisk Wyczyść filtr będzie renderowany powyżej tabeli "
5814
  "obok \"narzędzia tabeli\" przyciski."
5815
 
5816
- #: templates/admin/table-settings/table_settings_block.inc.php:753
5817
  msgid "Show clear filters button"
5818
  msgstr "Pokaż przycisk Wyczyść filtry"
5819
 
5820
- #: templates/admin/table-settings/table_settings_block.inc.php:773
5821
  msgid "Allow editing"
5822
  msgstr "Zezwalaj na edycję"
5823
 
5824
- #: templates/admin/table-settings/table_settings_block.inc.php:781
5825
  #: templates/edit_table.inc.php:180
5826
  msgid "Front-end editing"
5827
  msgstr "Edycja frontowa"
5828
 
5829
- #: templates/admin/table-settings/table_settings_block.inc.php:788
5830
  msgid "Allow editing the table from the front-end."
5831
  msgstr "Zezwalaj na edycję tabeli z frontonu."
5832
 
5833
- #: templates/admin/table-settings/table_settings_block.inc.php:796
5834
  msgid "Allow front-end editing"
5835
  msgstr "Zezwalaj na edycję frontonu"
5836
 
5837
- #: templates/admin/table-settings/table_settings_block.inc.php:804
5838
  msgid "Popover edit block"
5839
  msgstr "Blok edycji popover"
5840
 
5841
- #: templates/admin/table-settings/table_settings_block.inc.php:812
5842
  #: templates/edit_table.inc.php:232
5843
  msgid "Popover tools"
5844
  msgstr "Narzędzia popover"
5845
 
5846
- #: templates/admin/table-settings/table_settings_block.inc.php:819
5847
  msgid ""
5848
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5849
  "popover when you click on any row, instead of Table Tools block above the "
@@ -5853,16 +5960,16 @@ msgstr ""
5853
  "popover po kliknięciu dowolnego wiersza, zamiast narzędzia tabeli bloku "
5854
  "powyżej tabeli."
5855
 
5856
- #: templates/admin/table-settings/table_settings_block.inc.php:827
5857
  msgid "Editing buttons in a popover"
5858
  msgstr "Edytowanie przycisków w popover"
5859
 
5860
- #: templates/admin/table-settings/table_settings_block.inc.php:835
5861
- #: templates/admin/table-settings/table_settings_block.inc.php:843
5862
  msgid "In-line editing"
5863
  msgstr "Edycja w linii"
5864
 
5865
- #: templates/admin/table-settings/table_settings_block.inc.php:850
5866
  msgid ""
5867
  "If this is enabled, front-end users will be able to edit cells by double-"
5868
  "clicking them, not only with the editor dialog."
@@ -5870,31 +5977,31 @@ msgstr ""
5870
  "Jeśli ta opcja jest włączona, użytkownicy frontonu będą mogli edytować "
5871
  "komórki, klikając je dwukrotnie, nie tylko w oknie edytora."
5872
 
5873
- #: templates/admin/table-settings/table_settings_block.inc.php:858
5874
  msgid "Allow in-line editing"
5875
  msgstr "Zezwalaj na edycję w wierszu"
5876
 
5877
- #: templates/admin/table-settings/table_settings_block.inc.php:873
5878
  #: templates/edit_table.inc.php:192
5879
  msgid "MySQL table name for editing"
5880
  msgstr "Nazwa tabeli MySQL do edycji"
5881
 
5882
- #: templates/admin/table-settings/table_settings_block.inc.php:875
5883
  msgid ""
5884
  "Name of the MySQL table which will be updated when edited from front-end."
5885
  msgstr ""
5886
  "Nazwa tabeli MySQL, która będzie aktualizowana podczas edycji z przodu."
5887
 
5888
- #: templates/admin/table-settings/table_settings_block.inc.php:880
5889
  msgid "MySQL table name"
5890
  msgstr "Nazwa tabeli MySQL"
5891
 
5892
- #: templates/admin/table-settings/table_settings_block.inc.php:889
5893
  #: templates/edit_table.inc.php:203
5894
  msgid "ID column for editing"
5895
  msgstr "Kolumna ID do edycji"
5896
 
5897
- #: templates/admin/table-settings/table_settings_block.inc.php:891
5898
  msgid ""
5899
  "Choose the column values from which will be used as row identifiers. MUST be "
5900
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
@@ -5906,12 +6013,12 @@ msgstr ""
5906
  "wstawić/Edit/Delete będzie działać poprawnie! wpDataTables odgadnie poprawną "
5907
  "kolumnę, jeśli jest on nazywany \"ID\" lub \"ID\" po stronie MySQL."
5908
 
5909
- #: templates/admin/table-settings/table_settings_block.inc.php:905
5910
  #: templates/edit_table.inc.php:267
5911
  msgid "Editor roles"
5912
  msgstr "Role edytorów"
5913
 
5914
- #: templates/admin/table-settings/table_settings_block.inc.php:907
5915
  msgid ""
5916
  "If you want only specific user roles to be able to edit the table, choose in "
5917
  "this dropdown. Leave unchecked to allow editing for everyone."
@@ -5920,39 +6027,39 @@ msgstr ""
5920
  "wybierz tę listę rozwijaną. Pozostaw niezaznaczone, aby zezwolić na edycję "
5921
  "dla wszystkich."
5922
 
5923
- #: templates/admin/table-settings/table_settings_block.inc.php:912
5924
  msgid "Everyone"
5925
  msgstr "Wszyscy"
5926
 
5927
- #: templates/admin/table-settings/table_settings_block.inc.php:913
5928
  msgid "Administrators"
5929
  msgstr ""
5930
 
5931
- #: templates/admin/table-settings/table_settings_block.inc.php:914
5932
  msgid "Editors"
5933
  msgstr ""
5934
 
5935
- #: templates/admin/table-settings/table_settings_block.inc.php:915
5936
  msgid "Authors"
5937
  msgstr ""
5938
 
5939
- #: templates/admin/table-settings/table_settings_block.inc.php:916
5940
  msgid "Contributors"
5941
  msgstr ""
5942
 
5943
- #: templates/admin/table-settings/table_settings_block.inc.php:917
5944
  msgid "Subscribers"
5945
  msgstr ""
5946
 
5947
- #: templates/admin/table-settings/table_settings_block.inc.php:932
5948
  msgid "Users see and edit only own data"
5949
  msgstr "Użytkownicy widzą i edytują tylko własne dane"
5950
 
5951
- #: templates/admin/table-settings/table_settings_block.inc.php:940
5952
  msgid "Users see and edit only their own data"
5953
  msgstr "Użytkownicy widzą i edytują tylko swoje własne dane"
5954
 
5955
- #: templates/admin/table-settings/table_settings_block.inc.php:947
5956
  msgid ""
5957
  "If this is enabled, users will see and edit only the rows that are related "
5958
  "to them or were created by them (associated using the User ID column)."
@@ -5961,16 +6068,16 @@ msgstr ""
5961
  "wiersze, które są z nimi powiązane lub zostały przez nich utworzone "
5962
  "(skojarzone z kolumną User ID)."
5963
 
5964
- #: templates/admin/table-settings/table_settings_block.inc.php:955
5965
  msgid "Limit editing to own data only"
5966
  msgstr "Ogranicz edycję tylko do własnych danych"
5967
 
5968
- #: templates/admin/table-settings/table_settings_block.inc.php:963
5969
  #: templates/edit_table.inc.php:250
5970
  msgid "User ID column"
5971
  msgstr "Kolumna identyfikatora użytkownika"
5972
 
5973
- #: templates/admin/table-settings/table_settings_block.inc.php:965
5974
  msgid ""
5975
  "Choose the column values from which will be used as User identifiers. "
5976
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
@@ -5980,45 +6087,47 @@ msgstr ""
5980
  "użytkownika. Odwołuje się do identyfikatora z tabeli użytkownicy WordPressa "
5981
  "(wp_users), musi być zdefiniowana jako liczba całkowita po stronie MySQL."
5982
 
5983
- #: templates/admin/table-settings/table_settings_block.inc.php:998
5984
  #: templates/edit_table.inc.php:350
5985
  msgid "Table tools"
5986
  msgstr "Narzędzia tabeli"
5987
 
5988
- #: templates/admin/table-settings/table_settings_block.inc.php:1005
5989
  msgid ""
5990
  "If this is enabled, a toolbar with useful tools will be shown above the table"
5991
  msgstr ""
5992
  "Jeśli ta opcja jest włączona, pasek narzędzi z przydatnymi narzędziami "
5993
  "pojawi się nad tabelą"
5994
 
5995
- #: templates/admin/table-settings/table_settings_block.inc.php:1013
5996
  msgid "Enable Table Tools"
5997
  msgstr "Włącz narzędzia tabeli"
5998
 
5999
- #: templates/admin/table-settings/table_settings_block.inc.php:1021
6000
  msgid "Buttons"
6001
  msgstr "Przyciski"
6002
 
6003
- #: templates/admin/table-settings/table_settings_block.inc.php:1023
6004
  msgid "Choose which buttons to show in the Table Tools block."
6005
  msgstr ""
6006
  "Wybierz przyciski, które mają być wyświetlane w bloku narzędzia tabeli."
6007
 
6008
- #: templates/admin/table-settings/table_settings_block.inc.php:1029
6009
  msgid "Columns visibility"
6010
  msgstr "Widoczność kolumn"
6011
 
6012
- #: templates/admin/table-settings/table_settings_block.inc.php:1051
6013
  msgid ""
6014
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6015
  "that will be replaced with some actual values at the execution time; usually "
6016
- "this is used for MySQL queries."
 
 
6017
  msgstr ""
6018
 
6019
- #: templates/admin/table-settings/table_settings_block.inc.php:1063
6020
- #: templates/admin/table-settings/table_settings_block.inc.php:1078
6021
- #: templates/admin/table-settings/table_settings_block.inc.php:1093
6022
  msgid ""
6023
  "This placeholder will be replaced with any value that you will provide in a "
6024
  "shortcode. Provide a default value here that will be used for table "
@@ -6028,16 +6137,23 @@ msgstr ""
6028
  "podać w shortcode. Podaj wartość domyślną w tym miejscu, które będą używane "
6029
  "do generowania tabeli i gdy inny nie jest zdefiniowany w shortcode."
6030
 
6031
- #: templates/admin/table-settings/table_settings_block.inc.php:1083
6032
- #: templates/admin/table-settings/table_settings_block.inc.php:1098
6033
- #: templates/admin/table-settings/table_settings_block.inc.php:1120
6034
- #: templates/admin/table-settings/table_settings_block.inc.php:1138
6035
- #: templates/admin/table-settings/table_settings_block.inc.php:1155
6036
- #: templates/admin/table-settings/table_settings_block.inc.php:1176
 
 
 
 
 
 
 
6037
  msgid "Default for table generation"
6038
  msgstr "Domyślne dla generowania tabeli"
6039
 
6040
- #: templates/admin/table-settings/table_settings_block.inc.php:1114
6041
  msgid ""
6042
  "This placeholder will be replaced with the ID of currently logged in user. "
6043
  "Provide a value here to be used for table generation"
@@ -6046,7 +6162,7 @@ msgstr ""
6046
  "zalogowanego użytkownika. Podaj wartość, która ma być używana do generowania "
6047
  "tabeli"
6048
 
6049
- #: templates/admin/table-settings/table_settings_block.inc.php:1130
6050
  msgid ""
6051
  "This placeholder will be replaced with the login of currently logged in "
6052
  "user. Provide a value here to be used for table generation"
@@ -6054,15 +6170,13 @@ msgstr ""
6054
  "Ten symbol zastępczy zostanie zastąpiony loginem aktualnie zalogowanego "
6055
  "użytkownika. Podaj wartość, która ma być używana do generowania tabeli"
6056
 
6057
- #: templates/admin/table-settings/table_settings_block.inc.php:1148
6058
  msgid ""
6059
- "This placeholder will be replaced with the current prefix of WordPress "
6060
- "database. Provide a value here to be used for table generation"
6061
  msgstr ""
6062
- "Ten symbol zastępczy zostanie zastąpiony bieżącym prefiksem bazy danych "
6063
- "WordPress. Podaj wartość, która ma być używana do generowania tabeli"
6064
 
6065
- #: templates/admin/table-settings/table_settings_block.inc.php:1171
6066
  msgid ""
6067
  "This placeholder will be replaced with the ID of current post. Provide a "
6068
  "value here to be used for table generation"
@@ -6070,6 +6184,72 @@ msgstr ""
6070
  "Ten symbol zastępczy zostanie zastąpiony identyfikatorem bieżącego wpisu. "
6071
  "Podaj wartość, która ma być używana do generowania tabeli"
6072
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6073
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6074
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6075
  msgid "Go to Dashboard"
@@ -8028,31 +8208,6 @@ msgstr ""
8028
  #~ "i filtrowania tylko dla tabel utworzonych z XML, JSON, Excel, CSV, Google "
8029
  #~ "Spreadsheet i PHP szeregowane Array."
8030
 
8031
- #~ msgid ""
8032
- #~ "This placeholder will be replaced with the First Name of currently logged "
8033
- #~ "in user. Provide a value here to be used for table generation"
8034
- #~ msgstr ""
8035
- #~ "Ten symbol zastępczy zostanie zastąpiony przez imię aktualnie "
8036
- #~ "zalogowanego użytkownika. Podaj wartość, która ma być używana do "
8037
- #~ "generowania tabeli"
8038
-
8039
- #~ msgid ""
8040
- #~ "This placeholder will be replaced with the Last Name of currently logged "
8041
- #~ "in user. Provide a value here to be used for table generation"
8042
- #~ msgstr ""
8043
- #~ "Ten symbol zastępczy zostanie zastąpiony przez nazwisko aktualnie "
8044
- #~ "zalogowanego użytkownika. Podaj wartość, która ma być używana do "
8045
- #~ "generowania tabeli"
8046
-
8047
- #~ msgid "This placeholder will be replaced with current date."
8048
- #~ msgstr "Ten symbol zastępczy zostanie zastąpiony bieżącym czasem."
8049
-
8050
- #~ msgid "This placeholder will be replaced with current datetime."
8051
- #~ msgstr "Ten symbol zastępczy zostanie zastąpiony bieżącym czasem."
8052
-
8053
- #~ msgid "This placeholder will be replaced with current time."
8054
- #~ msgstr "Ten symbol zastępczy zostanie zastąpiony bieżącym czasem."
8055
-
8056
  #~ msgid "Create a table linked to an existing data source"
8057
  #~ msgstr "Tworzenie tabeli połączonej z istniejącym źródłem danych"
8058
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-02-26 13:10+0100\n"
5
+ "PO-Revision-Date: 2021-02-26 13:10+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: pl\n"
98
  msgid "Go Premium"
99
  msgstr ""
100
 
101
+ #: controllers/wdt_admin.php:517 controllers/wdt_admin.php:566
102
+ #: controllers/wdt_admin.php:609 controllers/wdt_admin.php:630
103
+ #: controllers/wdt_admin.php:677 controllers/wdt_admin.php:703
104
+ #: controllers/wdt_admin.php:722 controllers/wdt_admin.php:742
105
+ #: controllers/wdt_admin.php:761 controllers/wdt_admin.php:781
106
+ #: controllers/wdt_admin.php:801 controllers/wdt_admin.php:821
107
+ #: controllers/wdt_admin.php:840
108
  msgid "You do not have sufficient permissions to access this page."
109
  msgstr "Nie masz wystarczających uprawnień, aby uzyskać dostęp do tej strony."
110
 
214
  "shortcode zostanie wstawiony automatycznie. Są w stanie podać wartości dla "
215
  "symboli zastępczych, a także dla Nazwa pliku eksportu."
216
 
217
+ #: source/class.wdtbrowsechartstable.php:29 source/class.wdtbrowsetable.php:30
218
+ msgid "ID"
219
+ msgstr ""
220
+
221
+ #: source/class.wdtbrowsechartstable.php:30 source/class.wdtbrowsetable.php:31
222
+ #: templates/admin/chart_wizard/steps/step4.inc.php:17
223
+ msgid "Title"
224
+ msgstr "Tytuł"
225
+
226
+ #: source/class.wdtbrowsechartstable.php:31
227
+ msgid "Render Engine"
228
+ msgstr ""
229
+
230
+ #: source/class.wdtbrowsechartstable.php:32
231
+ msgid "Chart Type"
232
+ msgstr ""
233
+
234
+ #: source/class.wdtbrowsechartstable.php:33 source/class.wdtbrowsetable.php:33
235
+ msgid "Shortcode"
236
+ msgstr ""
237
+
238
  #: source/class.wdtbrowsechartstable.php:141
239
  #: source/class.wdtbrowsetable.php:168
240
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
257
  msgstr "Konfiguracja"
258
 
259
  #: source/class.wdtbrowsechartstable.php:162
260
+ #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
261
  #: templates/admin/browse/bulk_actions.inc.php:14
262
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
263
  msgid "Delete"
339
  msgid "No wpDataCharts in the system yet."
340
  msgstr "Nie wpDataCharts w systemie jeszcze."
341
 
342
+ #: source/class.wdtbrowsetable.php:32
343
+ #: templates/admin/table-settings/add_column_modal.inc.php:47
344
+ msgid "Type"
345
+ msgstr "Typ"
346
+
347
  #: source/class.wdtbrowsetable.php:231
348
  msgid "MySQL"
349
  msgstr "MySQL"
352
  msgid "Manual"
353
  msgstr "Ręcznie"
354
 
355
+ #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2188
356
+ #: source/class.wpdatatable.php:2258
357
+ #: templates/admin/table-settings/table_settings_block.inc.php:1050
358
  msgid "Excel"
359
  msgstr "Excel"
360
 
361
+ #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2197
362
+ #: source/class.wpdatatable.php:2268
363
+ #: templates/admin/table-settings/table_settings_block.inc.php:1051
364
  msgid "CSV"
365
  msgstr "CSV"
366
 
373
  msgstr "JSON"
374
 
375
  #: source/class.wdtbrowsetable.php:249
376
+ #: templates/admin/table-settings/table_settings_block.inc.php:120
377
  #: templates/edit_table.inc.php:91
378
  msgid "Serialized PHP array"
379
  msgstr "Serializowana tablica PHP"
463
  msgid "Attachment"
464
  msgstr "Załącznik"
465
 
466
+ #: source/class.wdttools.php:78
467
  msgid ""
468
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
469
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
473
  "nie jest poprawnie opublikowany.<br>Możesz opublikować go, przechodząc do "
474
  "<b>pliku-> publikowanie w Internecie</b> "
475
 
476
+ #: source/class.wdttools.php:206
477
  msgid "Back to date"
478
  msgstr "Powrót do daty"
479
 
480
+ #: source/class.wdttools.php:207
481
  msgid "Browse"
482
  msgstr "Przeglądaj"
483
 
484
+ #: source/class.wdttools.php:208 source/class.wdttools.php:330
485
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
486
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
487
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
499
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
500
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
501
  #: templates/admin/table-settings/table_preview_block.inc.php:86
502
+ #: templates/admin/table-settings/table_settings_block.inc.php:41
503
  #: templates/common/delete_modal.inc.php:39
504
  msgid "Cancel"
505
  msgstr "Anuluj"
506
 
507
+ #: source/class.wdttools.php:209
508
  msgid " field cannot be empty!"
509
  msgstr " pole nie może być puste!"
510
 
511
+ #: source/class.wdttools.php:210
512
  msgid "Use selected file"
513
  msgstr "Użyj wybranego pliku"
514
 
515
+ #: source/class.wdttools.php:211
516
  msgid "Choose file"
517
  msgstr "Proszę wybrać plik"
518
 
519
+ #: source/class.wdttools.php:212 templates/admin/common/error_modal.inc.php:23
520
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
521
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
522
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
524
  msgid "Close"
525
  msgstr "Zamknij"
526
 
527
+ #: source/class.wdttools.php:213
528
  msgid "Column has been added!"
529
  msgstr "Dodano kolumnę!"
530
 
531
+ #: source/class.wdttools.php:214
532
  msgid "Column header cannot be empty!"
533
  msgstr "Nagłówek kolumny nie może być pusty!"
534
 
535
+ #: source/class.wdttools.php:215
536
  msgid "Please confirm column deletion!"
537
  msgstr "Proszę potwierdzić usunięcie kolumny!"
538
 
539
+ #: source/class.wdttools.php:216
540
  msgid "Column has been removed!"
541
  msgstr "Kolumna została usunięta!"
542
 
543
+ #: source/class.wdttools.php:217
544
  msgid "Please select columns that you want to use in table"
545
  msgstr "Proszę wybrać kolumny, których chcesz użyć w tabeli"
546
 
547
+ #: source/class.wdttools.php:218 source/class.wpdatatable.php:2206
548
+ #: source/class.wpdatatable.php:2278
549
+ #: templates/admin/table-settings/table_settings_block.inc.php:1052
550
  msgid "Copy"
551
  msgstr "Kopiuj"
552
 
553
+ #: source/class.wdttools.php:219
554
  msgid "There was an error trying to insert a new row!"
555
  msgstr "Wystąpił błąd podczas próby wstawienia nowego wiersza!"
556
 
557
+ #: source/class.wdttools.php:220
558
  msgid "Data has been saved!"
559
  msgstr "Dane zostały zapisane!"
560
 
561
+ #: source/class.wdttools.php:221
562
  msgid "detach"
563
  msgstr "odłącz"
564
 
565
+ #: source/class.wdttools.php:223
566
  msgid "Delete selected"
567
  msgstr ""
568
 
569
+ #: source/class.wdttools.php:224 templates/settings.inc.php:553
570
  #: templates/settings.inc.php:627
571
  msgid "Error!"
572
  msgstr "Błąd!"
573
 
574
+ #: source/class.wdttools.php:225
575
  msgid "Please upload or choose a file from Media Library!"
576
  msgstr "Proszę przesłać lub wybrać plik z biblioteki multimediów!"
577
 
578
+ #: source/class.wdttools.php:226
579
  msgid "From"
580
  msgstr "Od"
581
 
582
+ #: source/class.wdttools.php:227
583
  msgid "Please provide a valid e-mail address for field"
584
  msgstr "Podaj prawidłowy adres e-mail dla pola"
585
 
586
+ #: source/class.wdttools.php:228
587
  msgid "Please provide a valid URL link for field"
588
  msgstr "Podaj prawidłowy link URL dla pola"
589
 
590
+ #: source/class.wdttools.php:229
591
  msgid "You have entered invalid value. Press ESC to cancel."
592
  msgstr "Wprowadzono nieprawidłową wartość. Naciśnij ESC, aby anulować."
593
 
594
+ #: source/class.wdttools.php:230 source/class.wdttools.php:260
595
  msgid "Show _MENU_ entries"
596
  msgstr "Pokaż pozycje _MENU_"
597
 
598
+ #: source/class.wdttools.php:231
599
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
600
  msgid "Merge"
601
  msgstr "Połącz"
602
 
603
+ #: source/class.wdttools.php:232
604
  msgid "New column"
605
  msgstr "Nowa kolumna"
606
 
607
+ #: source/class.wdttools.php:233
608
  msgid "Number of columns can not be empty or 0"
609
  msgstr ""
610
 
611
+ #: source/class.wdttools.php:234
612
  msgid "Number of rows can not be empty or 0"
613
  msgstr ""
614
 
615
+ #: source/class.wdttools.php:236
616
  msgid ": activate to sort column ascending"
617
  msgstr ": aktywuj, by sortować klumny rosnąco"
618
 
619
+ #: source/class.wdttools.php:237
620
  msgid ": activate to sort column descending"
621
  msgstr ": aktywuj, by sortować klumny malejąco"
622
 
623
+ #: source/class.wdttools.php:239
624
  msgid "Ok"
625
  msgstr "Ok"
626
 
627
+ #: source/class.wdttools.php:241
628
  msgid "First"
629
  msgstr "Pierwszy"
630
 
631
+ #: source/class.wdttools.php:242
632
  msgid "Last"
633
  msgstr "Ostatni"
634
 
635
+ #: source/class.wdttools.php:243
636
  msgid "Next"
637
  msgstr "Następny"
638
 
639
+ #: source/class.wdttools.php:244
640
  msgid "Previous"
641
  msgstr "Poprzedni"
642
 
643
+ #: source/class.wdttools.php:246
644
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
645
  msgid "Replace"
646
  msgstr "Zastąp"
647
 
648
+ #: source/class.wdttools.php:247
649
  msgid "Row has been deleted!"
650
  msgstr "Wiersz został usunięty!"
651
 
652
+ #: source/class.wdttools.php:248
653
+ msgid "Save chart"
654
+ msgstr ""
655
+
656
+ #: source/class.wdttools.php:249
657
  msgid "Select a file to use in table"
658
  msgstr "Wybrać plik do użycia w tabeli"
659
 
660
+ #: source/class.wdttools.php:250
661
  msgid "Select an Excel or CSV file"
662
  msgstr "Wybierz plik Excel lub CSV"
663
 
664
+ #: source/class.wdttools.php:251
665
  msgid "No data available in table"
666
  msgstr "Brak danych w tabeli"
667
 
668
+ #: source/class.wdttools.php:252
669
  msgid "Plugin settings saved successfully"
670
  msgstr "Ustawienia wtyczki zostały pomyślnie zapisane"
671
 
672
+ #: source/class.wdttools.php:253
673
  msgid ""
674
  "Unable to save settings of plugin. Please try again or contact us over "
675
  "Support page."
676
  msgstr ""
677
 
678
+ #: source/class.wdttools.php:254
679
  msgid "Shortcode has been copied to the clipboard."
680
  msgstr "Shortcode został skopiowany do Schowka."
681
 
682
+ #: source/class.wdttools.php:255
683
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
684
  msgstr "Wyświetlanie _START_ to _END_ of _TOTAL_ entries"
685
 
686
+ #: source/class.wdttools.php:256
687
  msgid "Showing 0 to 0 of 0 entries"
688
  msgstr "Wyświetla 0 z 0 zgłoszeń"
689
 
690
+ #: source/class.wdttools.php:257
691
  msgid "(filtered from _MAX_ total entries)"
692
  msgstr "(filtered from _MAX_ total entries)"
693
 
694
+ #: source/class.wdttools.php:259
695
  msgid ","
696
  msgstr ","
697
 
698
+ #: source/class.wdttools.php:261
699
  msgid "Loading..."
700
  msgstr "Ładowanie..."
701
 
702
+ #: source/class.wdttools.php:262
703
  msgid "Processing..."
704
  msgstr "Przetwarzanie . . ."
705
 
706
+ #: source/class.wdttools.php:263
707
  msgid "SQL error"
708
  msgstr "Błąd SQL"
709
 
710
+ #: source/class.wdttools.php:264
711
  msgid "Search: "
712
  msgstr "Szukaj: "
713
 
714
+ #: source/class.wdttools.php:265 templates/settings.inc.php:559
715
  #: templates/settings.inc.php:625
716
  msgid "Success!"
717
  msgstr "Sukces!"
718
 
719
+ #: source/class.wdttools.php:266
720
  msgid "No matching records found"
721
  msgstr "Brak wyników"
722
 
723
+ #: source/class.wdttools.php:267
724
  msgid ""
725
  "System info data has been copied to the clipboard. You can now paste it in "
726
  "file or in support topic."
727
  msgstr ""
728
 
729
+ #: source/class.wdttools.php:268
730
  msgid "Table saved successfully!"
731
  msgstr "Tabela zapisana pomyślnie!"
732
 
733
+ #: source/class.wdttools.php:269
734
  msgid "To"
735
  msgstr "Do"
736
 
737
+ #: source/class.wdttools.php:305
738
  #: templates/admin/common/premium_modal.inc.php:17
739
+ #: templates/admin/table-settings/table_settings_block.inc.php:1072
740
+ #: templates/admin/table-settings/table_settings_block.inc.php:1348
741
  msgid "This is a premium feature"
742
  msgstr ""
743
 
744
+ #: source/class.wdttools.php:306
745
  #: templates/admin/common/premium_modal.inc.php:26
746
+ #: templates/admin/table-settings/table_settings_block.inc.php:1073
747
+ #: templates/admin/table-settings/table_settings_block.inc.php:1349
748
  msgid "This feature is available only in premium version of wpDataTables"
749
  msgstr ""
750
 
751
+ #: source/class.wdttools.php:307
752
  #: templates/admin/getting-started/getting_started.inc.php:133
753
  #: templates/admin/getting-started/getting_started.inc.php:145
754
  #: templates/admin/getting-started/getting_started.inc.php:157
755
  #: templates/admin/getting-started/getting_started.inc.php:169
756
+ #: templates/admin/table-settings/table_settings_block.inc.php:1077
757
+ #: templates/admin/table-settings/table_settings_block.inc.php:1353
758
  msgid "Compare and View Pricing"
759
  msgstr ""
760
 
761
+ #: source/class.wdttools.php:326
762
  msgid "Field cannot be empty!"
763
  msgstr ""
764
 
765
+ #: source/class.wdttools.php:327
766
  msgid "Please choose chart type."
767
  msgstr ""
768
 
769
+ #: source/class.wdttools.php:328
770
  msgid "Please select wpDataTable from dropdown."
771
  msgstr ""
772
 
773
+ #: source/class.wdttools.php:329
774
  msgid "Columns field cannot be empty"
775
  msgstr ""
776
 
777
+ #: source/class.wdttools.php:331
778
  msgid ""
779
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
780
  "clicking on Cancel button."
781
  msgstr ""
782
 
783
+ #: source/class.wdttools.php:332
784
  msgid "Finish Tutorial"
785
  msgstr ""
786
 
787
+ #: source/class.wdttools.php:333
788
  msgid "Continue"
789
  msgstr ""
790
 
791
+ #: source/class.wdttools.php:334
792
  msgid "Start"
793
  msgstr ""
794
 
795
+ #: source/class.wdttools.php:335
796
  msgid "Skip Tutorial"
797
  msgstr ""
798
 
799
+ #: source/class.wdttools.php:338 source/class.wdttools.php:404
800
+ #: source/class.wdttools.php:446
801
  msgid "Welcome to the tutorial!"
802
  msgstr ""
803
 
804
+ #: source/class.wdttools.php:339 source/class.wdttools.php:405
805
+ #: source/class.wdttools.php:447
806
  msgid "Hello "
807
  msgstr ""
808
 
809
+ #: source/class.wdttools.php:339
810
  msgid ""
811
  ", in this tutorial, we will show you how to create a simple table from "
812
  "scratch by choosing a custom number of columns and rows. How to customize "
813
  "each cell, merge cells and a lot more."
814
  msgstr ""
815
 
816
+ #: source/class.wdttools.php:342
817
  msgid " Let's create a new wpDataTable from scratch!"
818
  msgstr ""
819
 
820
+ #: source/class.wdttools.php:343 source/class.wdttools.php:409
821
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
822
  msgstr ""
823
 
824
+ #: source/class.wdttools.php:346
825
  msgid "Choose this option"
826
  msgstr ""
827
 
828
+ #: source/class.wdttools.php:347
829
  msgid "Please select 'Create a simple table from scratch'."
830
  msgstr ""
831
 
832
+ #: source/class.wdttools.php:350 source/class.wdttools.php:416
833
  msgid "Click Next"
834
  msgstr ""
835
 
836
+ #: source/class.wdttools.php:351 source/class.wdttools.php:417
837
  msgid "Please click the 'Next' button to continue."
838
  msgstr ""
839
 
840
+ #: source/class.wdttools.php:354
841
  msgid "Welcome to the Simple table wizard!"
842
  msgstr ""
843
 
844
+ #: source/class.wdttools.php:355
845
  msgid "Please click 'Continue' button to move on."
846
  msgstr ""
847
 
848
+ #: source/class.wdttools.php:358
849
  msgid "Choose a name for your table"
850
  msgstr ""
851
 
852
+ #: source/class.wdttools.php:359
853
  msgid "After inserting table name, click 'Continue' to move on."
854
  msgstr ""
855
 
856
+ #: source/class.wdttools.php:362
857
  msgid "Choose the number of columns for your table"
858
  msgstr ""
859
 
860
+ #: source/class.wdttools.php:363
861
  msgid ""
862
  "Please choose how many columns it will have. Remember that you can always "
863
  "add or reduce the number of columns later. Click 'Continue' when you finish."
864
  msgstr ""
865
 
866
+ #: source/class.wdttools.php:366
867
  msgid "Choose the number of rows for your table."
868
  msgstr ""
869
 
870
+ #: source/class.wdttools.php:367
871
  msgid ""
872
  "Please choose how many rows it will have. Remember that you can always add "
873
  "or reduce the number of rows later. Click 'Continue' when you finish."
874
  msgstr ""
875
 
876
+ #: source/class.wdttools.php:370
877
  msgid "Click on the 'Generate Table' button"
878
  msgstr ""
879
 
880
+ #: source/class.wdttools.php:371
881
  msgid "When you click on the button, the empty table will be ready for you. "
882
  msgstr ""
883
 
884
+ #: source/class.wdttools.php:374
885
  msgid "We are generating the table..."
886
  msgstr ""
887
 
888
+ #: source/class.wdttools.php:375
889
  msgid "Please, when you see the table, click 'Continue' to move on."
890
  msgstr ""
891
 
892
+ #: source/class.wdttools.php:378
893
  msgid ""
894
  "Nice job! You just configured your table and it is ready to fill it with "
895
  "data."
896
  msgstr ""
897
 
898
+ #: source/class.wdttools.php:379
899
  msgid ""
900
  "Now we will guide you on how to insert data and check table layout throw "
901
  "Simple table editor, table toolbar and table preview. Please click "
902
  "'Continue' to move on."
903
  msgstr ""
904
 
905
+ #: source/class.wdttools.php:382
906
  msgid "This is Simple table editor"
907
  msgstr ""
908
 
909
+ #: source/class.wdttools.php:383
910
  msgid ""
911
  "Here you can populate your table with data. <br><br>You can move around the "
912
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
915
  "line of the row header. Click 'Continue' to move on."
916
  msgstr ""
917
 
918
+ #: source/class.wdttools.php:386
919
  msgid "Check out the Simple table toolbar"
920
  msgstr ""
921
 
922
+ #: source/class.wdttools.php:387
923
  msgid ""
924
  "Here you can style and insert custom data for each cell or range of cells. "
925
  "You can add or delete columns and rows, merge cells, customize sections by "
927
  "ratings or custom HTML code."
928
  msgstr ""
929
 
930
+ #: source/class.wdttools.php:390
931
  msgid "Responsive table views"
932
  msgstr ""
933
 
934
+ #: source/class.wdttools.php:391
935
  msgid ""
936
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
937
  "tab that you need, so you can make sure your table looks excellent across "
938
  "all devices. "
939
  msgstr ""
940
 
941
+ #: source/class.wdttools.php:394
942
  msgid "Real-time preview"
943
  msgstr ""
944
 
945
+ #: source/class.wdttools.php:395
946
  msgid ""
947
  "Here you will see how your table will look like on the page. Please click "
948
  "'Continue' to move on."
949
  msgstr ""
950
 
951
+ #: source/class.wdttools.php:398
952
  msgid "Congrats! Your table is ready."
953
  msgstr ""
954
 
955
+ #: source/class.wdttools.php:399
956
  msgid ""
957
  "Now you can copy the shortcode for this table, and check out how it looks on "
958
  "your website when you paste it to a post or page. You can always come back "
959
  "and edit the table as you like."
960
  msgstr ""
961
 
962
+ #: source/class.wdttools.php:405
963
  msgid ""
964
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
965
  "existing data source. \"Linked\" in this context means that if you create a "
968
  "reflected in the table."
969
  msgstr ""
970
 
971
+ #: source/class.wdttools.php:408
972
  msgid "Let's create a new wpDataTable!"
973
  msgstr ""
974
 
975
+ #: source/class.wdttools.php:412
976
  msgid "Choose this option."
977
  msgstr ""
978
 
979
+ #: source/class.wdttools.php:413
980
  msgid "Please select 'Create a table linked to an existing data source'."
981
  msgstr ""
982
 
983
+ #: source/class.wdttools.php:420
984
+ #: templates/admin/table-settings/table_settings_block.inc.php:101
985
  msgid "Input data source type"
986
  msgstr "Typ źródła danych wejściowych"
987
 
988
+ #: source/class.wdttools.php:421
989
  msgid "Please select a data source type that you need."
990
  msgstr ""
991
 
992
+ #: source/class.wdttools.php:424
993
  msgid "Select Data source type"
994
  msgstr ""
995
 
996
+ #: source/class.wdttools.php:425
997
  msgid ""
998
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
999
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1000
  "are available in Premium version)"
1001
  msgstr ""
1002
 
1003
+ #: source/class.wdttools.php:428
1004
+ #: templates/admin/table-settings/table_settings_block.inc.php:131
1005
  msgid "Input file path or URL"
1006
  msgstr "Ścieżka pliku wejściowego lub adres URL"
1007
 
1008
+ #: source/class.wdttools.php:429
1009
  msgid ""
1010
  "Upload your file or provide the full URL here. When you finish click "
1011
  "'Continue' button."
1012
  msgstr ""
1013
 
1014
+ #: source/class.wdttools.php:432
1015
  msgid "Click Save Changes"
1016
  msgstr ""
1017
 
1018
+ #: source/class.wdttools.php:433
1019
  msgid ""
1020
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1021
  "get an error message after button click and you are not able to solve it, "
1024
  "click Skip tutorial."
1025
  msgstr ""
1026
 
1027
+ #: source/class.wdttools.php:436
1028
  msgid "The table is creating..."
1029
  msgstr ""
1030
 
1031
+ #: source/class.wdttools.php:437
1032
  msgid ""
1033
  "Now the table is creating. Wait until you see it in the background and then "
1034
  "click 'Continue'."
1035
  msgstr ""
1036
 
1037
+ #: source/class.wdttools.php:440
1038
  msgid "Nice job! You just created your first wpDataTable!"
1039
  msgstr ""
1040
 
1041
+ #: source/class.wdttools.php:441
1042
  msgid ""
1043
  "Now you can copy the shortcode for this table, and check out how it looks on "
1044
  "your website when you paste it to a post or page."
1045
  msgstr ""
1046
 
1047
+ #: source/class.wdttools.php:447
1048
  msgid ""
1049
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1050
  "plugin."
1051
  msgstr ""
1052
 
1053
+ #: source/class.wdttools.php:450
1054
  msgid "Let's create a new wpDataTables Chart!"
1055
  msgstr ""
1056
 
1057
+ #: source/class.wdttools.php:451
1058
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1059
  msgstr ""
1060
 
1061
+ #: source/class.wdttools.php:454
1062
  msgid "Welcome to the Chart Wizard!"
1063
  msgstr ""
1064
 
1065
+ #: source/class.wdttools.php:455
1066
  msgid ""
1067
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1068
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1069
  msgstr ""
1070
 
1071
+ #: source/class.wdttools.php:458
1072
  msgid "Follow the steps in the Chart Wizard"
1073
  msgstr ""
1074
 
1075
+ #: source/class.wdttools.php:459
1076
  msgid ""
1077
  "By following these steps, you will finish building your chart in the Chart "
1078
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1079
  "'Continue' button to move forward."
1080
  msgstr ""
1081
 
1082
+ #: source/class.wdttools.php:462
1083
  msgid "Choose a name for your Chart"
1084
  msgstr ""
1085
 
1086
+ #: source/class.wdttools.php:463
1087
  msgid "Click 'Continue' button when you’re ready to move forward."
1088
  msgstr ""
1089
 
1090
+ #: source/class.wdttools.php:466
1091
  msgid "In wpDataTables you can find several charts render engines."
1092
  msgstr ""
1093
 
1094
+ #: source/class.wdttools.php:467
1095
  msgid ""
1096
  "Click on the dropdown, and you will see several options that you can choose "
1097
  "from.(Google charts are only available) <br><br>To continue, click on the "
1098
  "dropdown."
1099
  msgstr ""
1100
 
1101
+ #: source/class.wdttools.php:470
1102
  msgid "Choose Google chart engine."
1103
  msgstr ""
1104
 
1105
+ #: source/class.wdttools.php:471
1106
  msgid ""
1107
  "By clicking on Google chart options, you will choose the engine that will "
1108
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1109
  "to move forward."
1110
  msgstr ""
1111
 
1112
+ #: source/class.wdttools.php:474
1113
  msgid "Different charts types. "
1114
  msgstr ""
1115
 
1116
+ #: source/class.wdttools.php:475
1117
  msgid ""
1118
  "Here you can choose a chart type. Please, click on the chart type that you "
1119
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1120
  "forward."
1121
  msgstr ""
1122
 
1123
+ #: source/class.wdttools.php:478
1124
  msgid "The first step is finished!"
1125
  msgstr ""
1126
 
1127
+ #: source/class.wdttools.php:479
1128
  msgid "Let's move on. Please, click 'Next' to continue."
1129
  msgstr ""
1130
 
1131
+ #: source/class.wdttools.php:482
1132
  msgid ""
1133
  "Now you need to choose a wpDataTable based on which we will build a chart "
1134
  "for you"
1135
  msgstr ""
1136
 
1137
+ #: source/class.wdttools.php:483
1138
  msgid ""
1139
  "Click on the dropdown, and all your tables will be listed. The columns of "
1140
  "the table that you choose will be used for creating the chart.<br><br>If you "
1142
  "button and create wpDataTable that would contain the data to visualize first."
1143
  msgstr ""
1144
 
1145
+ #: source/class.wdttools.php:486
1146
  msgid "Pick your wpDataTable"
1147
  msgstr ""
1148
 
1149
+ #: source/class.wdttools.php:487
1150
  msgid ""
1151
  "Pick a wpDataTable from which you want to render a chart and when you "
1152
  "finish, please click 'Continue' to move on."
1153
  msgstr ""
1154
 
1155
+ #: source/class.wdttools.php:490
1156
  msgid "The second step is finished!"
1157
  msgstr ""
1158
 
1159
+ #: source/class.wdttools.php:491
1160
  msgid ""
1161
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1162
  msgstr ""
1163
 
1164
+ #: source/class.wdttools.php:494
1165
  msgid "Just a heads up!"
1166
  msgstr ""
1167
 
1168
+ #: source/class.wdttools.php:495
1169
  msgid ""
1170
  "Here you will choose from which columns you will create a chart.<br><br> "
1171
  "Please click 'Continue' button to move forward."
1172
  msgstr ""
1173
 
1174
+ #: source/class.wdttools.php:498
1175
  msgid "Meet the wpDataTable Column Blocks"
1176
  msgstr ""
1177
 
1178
+ #: source/class.wdttools.php:499
1179
  msgid ""
1180
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1181
  "or click on the arrow to move the desired column to the 'Columns used in the "
1182
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1183
  msgstr ""
1184
 
1185
+ #: source/class.wdttools.php:502
1186
  msgid "Well done!"
1187
  msgstr ""
1188
 
1189
+ #: source/class.wdttools.php:503
1190
  msgid "Just two more steps to go. Please click 'Next' to continue."
1191
  msgstr ""
1192
 
1193
+ #: source/class.wdttools.php:506
1194
  msgid "Chart settings and chart preview."
1195
  msgstr ""
1196
 
1197
+ #: source/class.wdttools.php:507
1198
  msgid ""
1199
  "Here you can adjust chart settings, different parameters are grouped in "
1200
  "section; adjusting the parameters will be reflected in the preview of your "
1202
  "button to move forward."
1203
  msgstr ""
1204
 
1205
+ #: source/class.wdttools.php:510
1206
  msgid "In this sidebar, you can find the chart settings section."
1207
  msgstr ""
1208
 
1209
+ #: source/class.wdttools.php:511
1210
  msgid ""
1211
  "By clicking on each section, you can set your desired parameters per section."
1212
  "<br><br> Please click 'Continue' button to move on."
1213
  msgstr ""
1214
 
1215
+ #: source/class.wdttools.php:514
1216
  msgid "Here are the available chart options"
1217
  msgstr ""
1218
 
1219
+ #: source/class.wdttools.php:515
1220
  msgid ""
1221
  "Set different chart options for the chosen section to get your desired chart "
1222
  "look.<br><br> Please click 'Continue' button to move on."
1223
  msgstr ""
1224
 
1225
+ #: source/class.wdttools.php:518
1226
  msgid "How your chart will look like on the page of your website"
1227
  msgstr ""
1228
 
1229
+ #: source/class.wdttools.php:519
1230
  msgid ""
1231
  "Here you can see a preview of your chart based on the settings you have "
1232
  "chosen.<br><br> Please click 'Continue' button to move on."
1233
  msgstr ""
1234
 
1235
+ #: source/class.wdttools.php:522
1236
  msgid "You can save your chart now"
1237
  msgstr ""
1238
 
1239
+ #: source/class.wdttools.php:523
1240
  msgid ""
1241
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1242
  "button and all your settings for this chart will be saved in the database."
1243
  msgstr ""
1244
 
1245
+ #: source/class.wdttools.php:526
1246
  msgid "Congrats! Your first chart is ready!"
1247
  msgstr ""
1248
 
1249
+ #: source/class.wdttools.php:527
1250
  msgid ""
1251
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1252
  "page. <br><br>You may now finish this tutorial. "
1260
  msgid "You are mixing data types (several date axes and several number)"
1261
  msgstr "Mieszasz typy danych (kilka osi daty i kilka liczb)"
1262
 
1263
+ #: source/class.wpdatatable.php:1876
1264
  msgid ""
1265
  "You are trying to load a table of an unknown type. Probably you did not "
1266
  "activate the addon which is required to use this table type."
1268
  "Próbujesz załadować tabelę nieznanego typu. Prawdopodobnie nie aktywowano "
1269
  "dodatku, który jest wymagany do korzystania z tego typu tabeli."
1270
 
1271
+ #: source/class.wpdatatable.php:2106 source/class.wpdatatable.php:2109
1272
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1273
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1274
+ #: templates/admin/table-settings/table_settings_block.inc.php:327
1275
  #: templates/edit_table.inc.php:409
1276
  msgid "All"
1277
  msgstr "Wszystkie"
1278
 
1279
+ #: source/class.wpdatatable.php:2167 source/class.wpdatatable.php:2236
1280
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1281
  msgid "Columns"
1282
  msgstr "Kolumny"
1283
 
1284
+ #: source/class.wpdatatable.php:2177 source/class.wpdatatable.php:2246
1285
+ #: templates/admin/table-settings/table_settings_block.inc.php:1049
1286
  msgid "Print"
1287
  msgstr "Drukuj"
1288
 
1289
+ #: source/class.wpdatatable.php:2216 source/class.wpdatatable.php:2289
1290
+ #: templates/admin/table-settings/table_settings_block.inc.php:1053
1291
  msgid "PDF"
1292
  msgstr "PDF"
1293
 
1294
+ #: source/class.wpdatatable.php:2224
1295
  msgid "Export"
1296
  msgstr "Eksport"
1297
 
1298
+ #: source/class.wpdatatable.php:2302
1299
  msgid "Search table"
1300
  msgstr "Szukaj"
1301
 
1302
+ #: source/class.wpdatatable.php:2303
1303
  msgid "Showing _MENU_ Entries"
1304
  msgstr "Wyświetlanie wpisów _MENU_"
1305
 
1318
  msgid "if you have some questions or problems with the plugin."
1319
  msgstr ""
1320
 
1321
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1322
  msgid "wpDataTables Addons"
1323
  msgstr ""
1324
 
1337
  "przez twórców wpDataTables i 3rd party deweloperów, więc stay tuned."
1338
 
1339
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1340
+ #: templates/admin/dashboard/dashboard.inc.php:570
1341
  msgid "Report Builder"
1342
  msgstr ""
1343
 
1344
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1345
+ #: templates/admin/dashboard/dashboard.inc.php:574
1346
  msgid ""
1347
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1348
  "XLSX documents filled in with actual data from your database."
1370
  msgstr ""
1371
 
1372
  #: templates/admin/addons/addons.inc.php:40
1373
+ #: templates/admin/dashboard/dashboard.inc.php:517
1374
  msgid "Master Detail Tables for wpDataTables"
1375
  msgstr ""
1376
 
1391
  msgstr ""
1392
 
1393
  #: templates/admin/addons/addons.inc.php:67
1394
+ #: templates/admin/dashboard/dashboard.inc.php:544
1395
  msgid "Powerful Filters for wpDataTables"
1396
  msgstr "Potężne filtry dla wpDataTables"
1397
 
1406
  "tylko filtr bez tabeli, zanim użytkownik definiuje wartości wyszukiwania."
1407
 
1408
  #: templates/admin/addons/addons.inc.php:120
1409
+ #: templates/admin/dashboard/dashboard.inc.php:597
1410
  msgid "Formidable Forms integration for wpDataTables"
1411
  msgstr "Integracja formularzy Formidable dla wpDataTables"
1412
 
1413
  #: templates/admin/addons/addons.inc.php:123
1414
+ #: templates/admin/dashboard/dashboard.inc.php:601
1415
  msgid ""
1416
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1417
  "create wpDataTables from Formidable Forms entries data."
1420
  "na tworzenie wpDataTables z Formidable danych wpisów formularzy."
1421
 
1422
  #: templates/admin/addons/addons.inc.php:143
1423
+ #: templates/admin/dashboard/dashboard.inc.php:623
1424
  msgid "Gravity Forms integration for wpDataTables"
1425
  msgstr "Integracja form grawitacyjnych dla wpDataTables"
1426
 
1427
  #: templates/admin/addons/addons.inc.php:146
1428
+ #: templates/admin/dashboard/dashboard.inc.php:627
1429
  msgid ""
1430
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1431
  "wpDataTables from Gravity Forms entries data."
1507
  msgstr "Tytuł wykresu & Type"
1508
 
1509
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1510
+ #: templates/admin/table-settings/table_settings_block.inc.php:60
1511
  #: templates/chart_wizard.inc.php:36
1512
  msgid "Data source"
1513
  msgstr "Źródło danych"
1550
 
1551
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1552
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
1553
+ #: templates/admin/table-settings/table_settings_block.inc.php:1902
1554
  #: templates/edit_table.inc.php:730
1555
  msgid "Color"
1556
  msgstr "Kolor"
1768
  #: templates/admin/getting-started/getting_started.inc.php:144
1769
  #: templates/admin/getting-started/getting_started.inc.php:156
1770
  #: templates/admin/getting-started/getting_started.inc.php:168
1771
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
1772
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
1773
  msgid "Available in Premium"
1774
  msgstr ""
1775
 
1907
  msgid "Axes"
1908
  msgstr "Osie"
1909
 
 
 
 
 
1910
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1911
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1912
  msgid "Tooltip"
2002
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2003
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2004
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
2005
+ #: templates/admin/table-settings/table_settings_block.inc.php:1549
2006
+ #: templates/admin/table-settings/table_settings_block.inc.php:1879
2007
  msgid "Background color"
2008
  msgstr "Kolor tła"
2009
 
2022
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2023
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2024
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
2025
+ #: templates/admin/table-settings/table_settings_block.inc.php:1571
2026
  msgid "Border color"
2027
  msgstr "Kolor obramowania"
2028
 
2061
 
2062
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2063
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
2064
+ #: templates/admin/table-settings/table_settings_block.inc.php:1483
2065
  msgid "Font size"
2066
  msgstr "Rozmiar czcionki"
2067
 
2433
  #: templates/admin/dashboard/dashboard.inc.php:30
2434
  #: templates/admin/getting-started/getting_started.inc.php:34
2435
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2436
+ #: templates/admin/settings/settings.inc.php:100
2437
  #: templates/admin/support/support.inc.php:31
2438
  #: templates/admin/support/support.inc.php:47
2439
  #: templates/admin/system-info/system_info.inc.php:29
2440
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2441
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2442
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2443
+ #: templates/admin/table-settings/table_settings_block.inc.php:2063
2444
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2445
  msgid "View Documentation"
2446
  msgstr ""
2672
  msgstr ""
2673
 
2674
  #: templates/admin/dashboard/dashboard.inc.php:340
2675
+ msgid "A minor update with a couple of improvements and bug fixes:"
 
 
2676
  msgstr ""
2677
 
2678
  #: templates/admin/dashboard/dashboard.inc.php:345
2679
  msgid ""
2680
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2681
+ "media in Simple tables."
2682
  msgstr ""
2683
 
2684
  #: templates/admin/dashboard/dashboard.inc.php:346
2685
  msgid ""
2686
+ "<strong>Improvement:</strong> Added translate functions on some strings."
 
2687
  msgstr ""
2688
 
2689
  #: templates/admin/dashboard/dashboard.inc.php:347
2690
  msgid ""
2691
+ "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2692
+ "area and filters for elementor widgets."
2693
  msgstr ""
2694
 
2695
  #: templates/admin/dashboard/dashboard.inc.php:348
2696
  msgid ""
2697
+ "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2698
+ "background in graphite skin."
2699
  msgstr ""
2700
 
2701
  #: templates/admin/dashboard/dashboard.inc.php:349
2702
  msgid ""
2703
+ "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2704
+ "settings."
2705
  msgstr ""
2706
 
2707
  #: templates/admin/dashboard/dashboard.inc.php:350
2708
+ msgid "Compatibility with WordPress 5.6.2 approved."
2709
+ msgstr ""
2710
+
2711
+ #: templates/admin/dashboard/dashboard.inc.php:351
2712
  msgid "Other small bug fixes and stability improvements."
2713
  msgstr ""
2714
 
2715
+ #: templates/admin/dashboard/dashboard.inc.php:363
2716
  msgid "Go Premium!"
2717
  msgstr ""
2718
 
2719
+ #: templates/admin/dashboard/dashboard.inc.php:369
2720
  msgid "View Comparison"
2721
  msgstr ""
2722
 
2723
+ #: templates/admin/dashboard/dashboard.inc.php:377
2724
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2725
  msgid ""
2726
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2727
  "of the powerful features."
2728
  msgstr ""
2729
 
2730
+ #: templates/admin/dashboard/dashboard.inc.php:381
2731
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2732
  msgid "Create a table manually"
2733
  msgstr "Ręczne tworzenie tabeli"
2734
 
2735
+ #: templates/admin/dashboard/dashboard.inc.php:384
2736
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2737
  msgid "Creating tables from Google Spreadsheet"
2738
  msgstr ""
2739
 
2740
+ #: templates/admin/dashboard/dashboard.inc.php:387
2741
  msgid ""
2742
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2743
  "tables via Google Sheet API"
2744
  msgstr ""
2745
 
2746
+ #: templates/admin/dashboard/dashboard.inc.php:390
2747
  msgid ""
2748
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2749
  "tables from Private Google Spreadsheet"
2750
  msgstr ""
2751
 
2752
+ #: templates/admin/dashboard/dashboard.inc.php:393
2753
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2754
  msgid "Creating MySQL-based tables from database"
2755
  msgstr ""
2756
 
2757
+ #: templates/admin/dashboard/dashboard.inc.php:396
2758
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2759
  msgid "Creating MySQL-based tables from Wordpress post types"
2760
  msgstr ""
2761
 
2762
+ #: templates/admin/dashboard/dashboard.inc.php:399
2763
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
2764
  #: templates/edit_table.inc.php:329
2765
  msgid "Advanced filtering"
2766
  msgstr ""
2767
 
2768
+ #: templates/admin/dashboard/dashboard.inc.php:402
2769
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2770
+ #: templates/admin/table-settings/table_settings_block.inc.php:153
2771
  #: templates/edit_table.inc.php:282
2772
  msgid "Server-side processing"
2773
  msgstr "Przetwarzanie po stronie serwera"
2774
 
2775
+ #: templates/admin/dashboard/dashboard.inc.php:405
2776
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2777
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2778
  msgstr ""
2779
 
2780
+ #: templates/admin/dashboard/dashboard.inc.php:408
2781
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2782
  msgid "Front-end table editing"
2783
  msgstr ""
2784
 
2785
+ #: templates/admin/dashboard/dashboard.inc.php:411
2786
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2787
  msgid "Excel-like editing"
2788
  msgstr ""
2789
 
2790
+ #: templates/admin/dashboard/dashboard.inc.php:414
2791
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2792
  msgid "Creating charts with Highcharts"
2793
  msgstr ""
2794
 
2795
+ #: templates/admin/dashboard/dashboard.inc.php:417
2796
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2797
  msgid "Creating charts with Chart.js"
2798
  msgstr ""
2799
 
2800
+ #: templates/admin/dashboard/dashboard.inc.php:420
2801
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2802
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2803
  #: templates/edit_table.inc.php:301
2804
  msgid "Responsive"
2805
  msgstr ""
2806
 
2807
+ #: templates/admin/dashboard/dashboard.inc.php:423
2808
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2809
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2810
  #: templates/edit_table.inc.php:750
2811
  msgid "Conditional formatting"
2812
  msgstr "Formatowanie warunkowe"
2813
 
2814
+ #: templates/admin/dashboard/dashboard.inc.php:426
2815
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2816
  msgid "Calculating Tools"
2817
  msgstr ""
2818
 
2819
+ #: templates/admin/dashboard/dashboard.inc.php:429
2820
  msgid "Formula columns"
2821
  msgstr ""
2822
 
2823
+ #: templates/admin/dashboard/dashboard.inc.php:432
2824
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2825
+ #: templates/admin/table-settings/table_settings_block.inc.php:80
2826
  msgid "Placeholders"
2827
  msgstr "Placeholdery"
2828
 
2829
+ #: templates/admin/dashboard/dashboard.inc.php:435
2830
  msgid "Premium support"
2831
  msgstr ""
2832
 
2833
+ #: templates/admin/dashboard/dashboard.inc.php:439
2834
  msgid "Get Premium Today"
2835
  msgstr ""
2836
 
2837
+ #: templates/admin/dashboard/dashboard.inc.php:446
2838
  msgid "News Blog"
2839
  msgstr ""
2840
 
2841
+ #: templates/admin/dashboard/dashboard.inc.php:451
2842
  msgid "Checkout useful articles from wpdatatables.com"
2843
  msgstr ""
2844
 
2845
+ #: templates/admin/dashboard/dashboard.inc.php:474
2846
  msgid "Please install and enable PHP extensions xml and dom on your server."
2847
  msgstr ""
2848
 
2849
+ #: templates/admin/dashboard/dashboard.inc.php:482
2850
  msgid ""
2851
  "Never miss notifications about new cool features, promotions,\n"
2852
  " giveaways or freebies – subscribe to our "
2854
  " about 1 message per month and never spam!"
2855
  msgstr ""
2856
 
2857
+ #: templates/admin/dashboard/dashboard.inc.php:500
2858
  msgid "Premium "
2859
  msgstr ""
2860
 
2861
+ #: templates/admin/dashboard/dashboard.inc.php:503
2862
  msgid ""
2863
  "While wpDataTables itself provides quite a large amount of features and "
2864
  "unlimited customisation, flexibility, you can achieve even more with our "
2865
  "premium addons.(requires wpDataTables Premium version)"
2866
  msgstr ""
2867
 
2868
+ #: templates/admin/dashboard/dashboard.inc.php:521
2869
  msgid ""
2870
  "A wpDataTables addon which allows showing additional details for a specific "
2871
  "row in a popup or a separate page or post."
2872
  msgstr ""
2873
 
2874
+ #: templates/admin/dashboard/dashboard.inc.php:527
2875
+ #: templates/admin/dashboard/dashboard.inc.php:554
2876
+ #: templates/admin/dashboard/dashboard.inc.php:580
2877
+ #: templates/admin/dashboard/dashboard.inc.php:607
2878
+ #: templates/admin/dashboard/dashboard.inc.php:633
2879
+ #: templates/admin/dashboard/dashboard.inc.php:666
2880
  msgid "Learn More"
2881
  msgstr ""
2882
 
2883
+ #: templates/admin/dashboard/dashboard.inc.php:548
2884
  msgid ""
2885
  "An add-on for wpDataTables that provides powerful filtering features: "
2886
  "cascade filtering, applying filters on button click, hide table before "
2887
  "filtering."
2888
  msgstr ""
2889
 
2890
+ #: templates/admin/dashboard/dashboard.inc.php:644
2891
  msgid "Need free booking plugin?"
2892
  msgstr ""
2893
 
2894
+ #: templates/admin/dashboard/dashboard.inc.php:653
2895
  msgid "Appointments and Events WordPress Booking Plugin"
2896
  msgstr ""
2897
 
2898
+ #: templates/admin/dashboard/dashboard.inc.php:656
2899
  msgid ""
2900
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2901
  "set up a fully-featured automated booking system on your WordPress website "
2906
  "each month."
2907
  msgstr ""
2908
 
2909
+ #: templates/admin/dashboard/dashboard.inc.php:659
2910
  msgid "Rating: 4.3 - ‎97 reviews"
2911
  msgstr ""
2912
 
2913
+ #: templates/admin/dashboard/dashboard.inc.php:662
2914
  msgid "Free Download"
2915
  msgstr ""
2916
 
2917
+ #: templates/admin/dashboard/dashboard.inc.php:677
2918
  #: templates/admin/getting-started/getting_started.inc.php:184
2919
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
2920
  #: templates/admin/support/support.inc.php:78
2921
  #: templates/admin/system-info/system_info.inc.php:509
2922
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2923
  msgid "Made by"
2924
  msgstr ""
2925
 
2926
+ #: templates/admin/dashboard/dashboard.inc.php:685
2927
  #: templates/admin/getting-started/getting_started.inc.php:192
2928
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
2929
  #: templates/admin/support/support.inc.php:45
2930
  #: templates/admin/support/support.inc.php:86
2931
  #: templates/admin/system-info/system_info.inc.php:517
2934
  msgid "Documentation"
2935
  msgstr "Dokumentacja"
2936
 
2937
+ #: templates/admin/dashboard/dashboard.inc.php:689
2938
  #: templates/admin/getting-started/getting_started.inc.php:196
2939
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
2940
  #: templates/admin/support/support.inc.php:24
2941
  #: templates/admin/support/support.inc.php:90
2942
  #: templates/admin/system-info/system_info.inc.php:521
3062
  msgstr ""
3063
 
3064
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3065
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3066
  msgid "Go Premium Now"
3067
  msgstr ""
3068
 
3075
  msgstr ""
3076
 
3077
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3078
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3079
  msgid "Premium"
3080
  msgstr ""
3081
 
3105
 
3106
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3107
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3108
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3109
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3110
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3111
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
3112
  msgid "NEW!"
3113
  msgstr ""
3114
 
3125
 
3126
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3127
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3128
+ #: templates/admin/table-settings/table_settings_block.inc.php:643
3129
+ #: templates/admin/table-settings/table_settings_block.inc.php:651
3130
  msgid "Sorting"
3131
  msgstr "Sortowanie"
3132
 
3133
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3134
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3135
+ #: templates/admin/table-settings/table_settings_block.inc.php:504
3136
+ #: templates/admin/table-settings/table_settings_block.inc.php:512
3137
+ #: templates/admin/table-settings/table_settings_block.inc.php:1387
3138
  msgid "Pagination"
3139
  msgstr ""
3140
 
3161
  msgstr ""
3162
 
3163
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3164
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3165
  msgid "Limited"
3166
  msgstr ""
3167
 
3169
  msgid "Some options are not available."
3170
  msgstr ""
3171
 
3172
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3173
+ msgid "Table Customization"
3174
  msgstr ""
3175
 
3176
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3177
+ msgid "Creating tables via Google Sheet API"
3178
+ msgstr ""
3179
+
3180
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3181
  msgid "Creating tables from Private Google Spreadsheet"
3182
  msgstr ""
3183
 
3184
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3185
  msgid "Support"
3186
  msgstr ""
3187
 
3188
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3189
  msgid "Response time is slow and can be up to 5 business days."
3190
  msgstr ""
3191
 
3192
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3193
  msgid ""
3194
  "* Please note that wpDataTables add-ons are not included in premium version "
3195
  "of plugin."
3196
  msgstr ""
3197
 
3198
  #: templates/admin/settings/settings.inc.php:33
3199
+ #: templates/admin/settings/settings.inc.php:95
3200
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3201
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3202
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3203
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3204
  #: templates/admin/table-settings/table_preview_block.inc.php:89
 
3205
  #: templates/admin/table-settings/table_settings_block.inc.php:48
3206
+ #: templates/admin/table-settings/table_settings_block.inc.php:49
3207
  msgid "Save Changes"
3208
  msgstr ""
3209
 
3227
  msgid "Custom JS and CSS"
3228
  msgstr "Niestandardowe JS i CSS"
3229
 
3230
+ #: templates/admin/settings/settings.inc.php:62
3231
+ msgid "Google Spreadsheet API settings"
3232
+ msgstr ""
3233
+
3234
+ #: templates/admin/settings/settings.inc.php:92 templates/settings.inc.php:434
3235
  msgid "Reset colors and fonts to default"
3236
  msgstr "Przywróć domyślne kolory i czcionki"
3237
 
3238
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3239
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
3240
+ #: templates/admin/table-settings/table_settings_block.inc.php:1367
3241
+ #: templates/admin/table-settings/table_settings_block.inc.php:1461
3242
  msgid "Font"
3243
  msgstr "Czcionka"
3244
 
3245
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
3246
+ #: templates/admin/table-settings/table_settings_block.inc.php:1464
3247
  #: templates/settings.inc.php:428
3248
  msgid ""
3249
  "This font will be used in rendered tables. Leave blank not to override "
3253
  "zastępować domyślnych ustawień motywu"
3254
 
3255
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
3256
+ #: templates/admin/table-settings/table_settings_block.inc.php:1486
3257
  msgid "Define the font size"
3258
  msgstr "Zdefiniuj rozmiar czcionki"
3259
 
3260
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3261
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3262
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
3263
+ #: templates/admin/table-settings/table_settings_block.inc.php:1519
3264
+ #: templates/admin/table-settings/table_settings_block.inc.php:1594
3265
  msgid "Font color"
3266
  msgstr "Kolor czcionki"
3267
 
3268
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
3269
+ #: templates/admin/table-settings/table_settings_block.inc.php:1522
3270
  msgid "This color is used for the main font in table cells."
3271
  msgstr "Ten kolor jest używany dla głównej czcionki w komórkach tabeli."
3272
 
3273
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3274
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
3275
+ #: templates/admin/table-settings/table_settings_block.inc.php:1371
3276
  msgid "Header"
3277
  msgstr ""
3278
 
3279
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
3280
+ #: templates/admin/table-settings/table_settings_block.inc.php:1552
3281
  msgid "The color is used for background of the table header."
3282
  msgstr "Kolor jest używany dla tła nagłówka tabeli."
3283
 
3284
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
3285
+ #: templates/admin/table-settings/table_settings_block.inc.php:1574
3286
  msgid "This color is used for the border in the table header."
3287
  msgstr "Ten kolor jest używany dla obramowania w nagłówku tabeli."
3288
 
3289
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
3290
+ #: templates/admin/table-settings/table_settings_block.inc.php:1597
3291
  msgid "This color is used for the font in the table header."
3292
  msgstr "Ten kolor jest używany dla czcionki w nagłówku tabeli."
3293
 
3294
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
3295
+ #: templates/admin/table-settings/table_settings_block.inc.php:1616
3296
  msgid "Active and hover color\t"
3297
  msgstr "Aktywny i aktywowany kolor\t"
3298
 
3299
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
3300
+ #: templates/admin/table-settings/table_settings_block.inc.php:1619
3301
  msgid ""
3302
  "This color is used when you hover the mouse above the table header, or when "
3303
  "you choose a column."
3310
  msgstr ""
3311
 
3312
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
3313
+ #: templates/admin/table-settings/table_settings_block.inc.php:1647
3314
  msgid "Inner border"
3315
  msgstr "Granica wewnętrzna"
3316
 
3317
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
3318
+ #: templates/admin/table-settings/table_settings_block.inc.php:1650
3319
  msgid "This color is used for the inner border in the table between cells."
3320
  msgstr ""
3321
  "Ten kolor jest używany dla wewnętrznego obramowania w tabeli między "
3322
  "komórkami."
3323
 
3324
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
3325
+ #: templates/admin/table-settings/table_settings_block.inc.php:1670
3326
  msgid "Outer border"
3327
  msgstr "Granica zewnętrzna"
3328
 
3329
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
3330
+ #: templates/admin/table-settings/table_settings_block.inc.php:1673
3331
  msgid "This color is used for the outer border of the whole table body."
3332
  msgstr "Ten kolor jest używany dla zewnętrznej krawędzi całego obiektu tabeli."
3333
 
3334
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
3335
+ #: templates/admin/table-settings/table_settings_block.inc.php:1693
3336
  msgid "Table borders"
3337
  msgstr "Obramowania tabel"
3338
 
3339
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
3340
+ #: templates/admin/table-settings/table_settings_block.inc.php:1696
3341
  msgid "When this is checked, borders in table will be removed "
3342
  msgstr "Gdy ta jest zaznaczona, obramowania w tabeli zostaną usunięte "
3343
 
3344
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
3345
+ #: templates/admin/table-settings/table_settings_block.inc.php:1702
3346
  msgid "Remove borders in table"
3347
  msgstr ""
3348
 
3349
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
3350
+ #: templates/admin/table-settings/table_settings_block.inc.php:1707
3351
  msgid "Header border"
3352
  msgstr "Obramowanie nagłówka"
3353
 
3354
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
3355
+ #: templates/admin/table-settings/table_settings_block.inc.php:1710
3356
  msgid "When this is checked,borders in header will be removed "
3357
  msgstr "Gdy to jest zaznaczone, obramowania w nagłówku zostaną usunięte "
3358
 
3361
  msgstr ""
3362
 
3363
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
3364
+ #: templates/admin/table-settings/table_settings_block.inc.php:1379
3365
  msgid "Row color"
3366
  msgstr ""
3367
 
3368
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
3369
+ #: templates/admin/table-settings/table_settings_block.inc.php:1729
3370
  msgid "Even row background"
3371
  msgstr "Równomierne tło rzędu"
3372
 
3373
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
3374
+ #: templates/admin/table-settings/table_settings_block.inc.php:1732
3375
  msgid "This color is used for for background in even rows."
3376
  msgstr "Ten kolor jest używany dla tła w wierszach parzystych."
3377
 
3378
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
3379
+ #: templates/admin/table-settings/table_settings_block.inc.php:1751
3380
  msgid "Odd row background"
3381
  msgstr "Nieparzyste tło wiersza"
3382
 
3383
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
3384
+ #: templates/admin/table-settings/table_settings_block.inc.php:1754
3385
  msgid "This color is used for for background in odd rows."
3386
  msgstr "Ten kolor jest używany dla tła w nieparzystych wierszach."
3387
 
3388
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
3389
+ #: templates/admin/table-settings/table_settings_block.inc.php:1773
3390
  msgid "Hover row"
3391
  msgstr "Umieść wiersz"
3392
 
3393
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
3394
+ #: templates/admin/table-settings/table_settings_block.inc.php:1776
3395
  msgid ""
3396
  "This color is used for to highlight the row when you hover your mouse above "
3397
  "it."
3399
  "Ten kolor służy do wyróżniania wiersza po umieszczeniu kursora myszy nad nim."
3400
 
3401
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
3402
+ #: templates/admin/table-settings/table_settings_block.inc.php:1795
3403
  msgid "Background for selected rows"
3404
  msgstr "Tło dla zaznaczonych wierszy"
3405
 
3406
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
3407
+ #: templates/admin/table-settings/table_settings_block.inc.php:1798
3408
  msgid "This color is used for background in selected rows."
3409
  msgstr "Ten kolor jest używany dla tła w wybranych wierszach."
3410
 
3411
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
3412
+ #: templates/admin/table-settings/table_settings_block.inc.php:1383
3413
  msgid "Cell color"
3414
  msgstr ""
3415
 
3416
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
3417
+ #: templates/admin/table-settings/table_settings_block.inc.php:1826
3418
  msgid "Sorted columns, even rows"
3419
  msgstr "Sortowane kolumny, parzyste wiersze"
3420
 
3421
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
3422
+ #: templates/admin/table-settings/table_settings_block.inc.php:1829
3423
  msgid ""
3424
  "This color is used for background in cells which are in the active columns "
3425
  "(columns used for sorting) in even rows."
3428
  "kolumnach (kolumny używane do sortowania) w wierszach parzystych."
3429
 
3430
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
3431
+ #: templates/admin/table-settings/table_settings_block.inc.php:1849
3432
  msgid "Sorted columns, odd rows"
3433
  msgstr "Sortowane kolumny, nieparzyste wiersze"
3434
 
3435
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
3436
+ #: templates/admin/table-settings/table_settings_block.inc.php:1852
3437
  msgid ""
3438
  "This color is used for background in cells which are in the active columns "
3439
  "(columns used for sorting) in odd rows."
3536
  "wtyczki."
3537
 
3538
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
3539
+ #: templates/admin/table-settings/table_settings_block.inc.php:1882
3540
  msgid "This color is used for the background of the pagination"
3541
  msgstr "Ten kolor jest używany dla tła podział na strony"
3542
 
3543
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
3544
+ #: templates/admin/table-settings/table_settings_block.inc.php:1905
3545
  msgid "This color is used for the color of the links in the pagination."
3546
  msgstr "Kolor ten jest używany dla koloru łączy w podział na strony."
3547
 
3548
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
3549
+ #: templates/admin/table-settings/table_settings_block.inc.php:1924
3550
  msgid "Current page background color"
3551
  msgstr "Kolor tła bieżącej strony"
3552
 
3553
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
3554
+ #: templates/admin/table-settings/table_settings_block.inc.php:1927
3555
  msgid "The color is used for background of the current page"
3556
  msgstr "Kolor jest używany dla tła bieżącej strony"
3557
 
3558
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
3559
+ #: templates/admin/table-settings/table_settings_block.inc.php:1948
3560
  msgid "Current page color"
3561
  msgstr "Bieżący kolor strony"
3562
 
3563
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
3564
+ #: templates/admin/table-settings/table_settings_block.inc.php:1951
3565
  msgid "This color is used for the color of the current page."
3566
  msgstr "Kolor ten jest używany dla koloru bieżącej strony."
3567
 
3568
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
3569
+ #: templates/admin/table-settings/table_settings_block.inc.php:1971
3570
  msgid "Other pages hover background color"
3571
  msgstr "Inne strony Hover kolor tła"
3572
 
3573
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
3574
+ #: templates/admin/table-settings/table_settings_block.inc.php:1974
3575
  msgid ""
3576
  "This background color is used when you hover the mouse above the other pages"
3577
  msgstr ""
3578
  "Ten kolor tła jest używany po umieszczeniu kursora myszy nad innymi stronami"
3579
 
3580
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
3581
+ #: templates/admin/table-settings/table_settings_block.inc.php:1995
3582
  msgid "Other pages hover color"
3583
  msgstr "Inne strony Hover kolor"
3584
 
3585
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
3586
+ #: templates/admin/table-settings/table_settings_block.inc.php:1998
3587
  msgid "This color is used when you hover the mouse above the other pages."
3588
  msgstr ""
3589
  "Ten kolor jest używany po umieszczeniu kursora myszy nad innymi stronami."
3602
  "która ma wpDataTable."
3603
 
3604
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
3605
+ #: templates/admin/table-settings/table_settings_block.inc.php:2025
3606
  #: templates/settings.inc.php:463
3607
  msgid "Custom wpDataTables CSS"
3608
  msgstr "Niestandardowy wpDataTables CSS"
3624
  msgstr ""
3625
 
3626
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
3627
+ #: templates/admin/table-settings/table_settings_block.inc.php:1407
3628
  #: templates/settings.inc.php:45
3629
  msgid "Interface language"
3630
  msgstr "Język interfejsu"
3631
 
3632
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
3633
+ #: templates/admin/table-settings/table_settings_block.inc.php:1410
3634
  msgid "Pick the language which will be used in tables interface."
3635
  msgstr "Wybierz język, który będzie używany w interfejsie tabel."
3636
 
3637
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
3638
+ #: templates/admin/table-settings/table_settings_block.inc.php:1417
3639
  msgid "English (default)"
3640
  msgstr "Angielski (domyślnie)"
3641
 
3648
  msgid "Pick the date format to use in date column type."
3649
  msgstr "Wybierz format daty, który ma być używany w typie kolumny daty."
3650
 
3651
+ #: templates/admin/settings/tabs/main_plugin_settings.php:74
3652
  #: templates/settings.inc.php:119
3653
  msgid "Time format"
3654
  msgstr "Format czasu"
3655
 
3656
+ #: templates/admin/settings/tabs/main_plugin_settings.php:76
3657
  msgid "Pick the time format to use in datetime and time column type."
3658
  msgstr "Wybierz format czasu do użycia w DateTime i time typ kolumny."
3659
 
3660
+ #: templates/admin/settings/tabs/main_plugin_settings.php:91
3661
  msgid "Parse shortcodes"
3662
  msgstr "Skróconych analizy"
3663
 
3664
+ #: templates/admin/settings/tabs/main_plugin_settings.php:93
3665
  msgid ""
3666
  "If the option is enabled, you can use shortcodes of other plugins for "
3667
  "generating content."
3668
  msgstr ""
3669
 
3670
+ #: templates/admin/settings/tabs/main_plugin_settings.php:97
3671
  msgid "Parse shortcodes in strings"
3672
  msgstr "Analizować skróconych w ciągach"
3673
 
3674
+ #: templates/admin/settings/tabs/main_plugin_settings.php:104
3675
+ #: templates/admin/table-settings/table_settings_block.inc.php:1430
3676
  #: templates/settings.inc.php:74
3677
  msgid "Base skin"
3678
  msgstr "Skóra podstawowa"
3679
 
3680
+ #: templates/admin/settings/tabs/main_plugin_settings.php:106
3681
+ #: templates/admin/table-settings/table_settings_block.inc.php:1433
3682
  msgid "Choose the base skin for the plugin."
3683
  msgstr "Wybierz podstawową skórkę dla wtyczki."
3684
 
3685
+ #: templates/admin/settings/tabs/main_plugin_settings.php:112
3686
+ #: templates/admin/table-settings/table_settings_block.inc.php:1440
3687
  msgid "Material"
3688
  msgstr "Materiał"
3689
 
3690
+ #: templates/admin/settings/tabs/main_plugin_settings.php:113
3691
+ #: templates/admin/table-settings/table_settings_block.inc.php:1441
3692
  msgid "Light"
3693
  msgstr "Jasny"
3694
 
3695
+ #: templates/admin/settings/tabs/main_plugin_settings.php:114
3696
+ #: templates/admin/table-settings/table_settings_block.inc.php:1442
3697
  msgid "Graphite"
3698
  msgstr "Grafit"
3699
 
3700
+ #: templates/admin/settings/tabs/main_plugin_settings.php:115
3701
+ #: templates/admin/table-settings/table_settings_block.inc.php:1443
3702
  msgid "Aqua"
3703
  msgstr "Wodny"
3704
 
3705
+ #: templates/admin/settings/tabs/main_plugin_settings.php:116
3706
+ #: templates/admin/table-settings/table_settings_block.inc.php:1444
3707
  msgid "Purple"
3708
  msgstr "Fioletowy"
3709
 
3710
+ #: templates/admin/settings/tabs/main_plugin_settings.php:117
3711
+ #: templates/admin/table-settings/table_settings_block.inc.php:1445
3712
  msgid "Dark"
3713
  msgstr "Ciemny"
3714
 
3715
+ #: templates/admin/settings/tabs/main_plugin_settings.php:125
3716
  #: templates/settings.inc.php:131
3717
  msgid "Number format"
3718
  msgstr "Format liczb"
3719
 
3720
+ #: templates/admin/settings/tabs/main_plugin_settings.php:127
3721
  #: templates/settings.inc.php:138
3722
  msgid "Pick the number format (thousands and decimals separator)"
3723
  msgstr "Wybierz format liczb (separator tysięcy i dziesiętnych)"
3724
 
3725
+ #: templates/admin/settings/tabs/main_plugin_settings.php:144
3726
  #: templates/settings.inc.php:86
3727
  msgid "Render advanced filter"
3728
  msgstr "Renderuj Filtr zaawansowany"
3729
 
3730
+ #: templates/admin/settings/tabs/main_plugin_settings.php:146
3731
  msgid ""
3732
  "Choose where you would like to render the advanced filter for tables where "
3733
  "enabled."
3735
  "Wybierz, gdzie chcesz renderować Filtr zaawansowany dla tabel, gdzie "
3736
  "włączone."
3737
 
3738
+ #: templates/admin/settings/tabs/main_plugin_settings.php:152
3739
  #: templates/settings.inc.php:90
3740
  msgid "In the header"
3741
  msgstr "W nagłówku"
3742
 
3743
+ #: templates/admin/settings/tabs/main_plugin_settings.php:153
3744
  #: templates/settings.inc.php:91
3745
  msgid "In the footer"
3746
  msgstr "W stopce"
3747
 
3748
+ #: templates/admin/settings/tabs/main_plugin_settings.php:161
3749
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3750
  #: templates/settings.inc.php:143
3751
  msgid "Decimal places"
3752
  msgstr "Miejsca dziesiętne"
3753
 
3754
+ #: templates/admin/settings/tabs/main_plugin_settings.php:163
3755
  msgid "Define the amount of decimal places for the float numbers."
3756
  msgstr "Zdefiniuj liczbę miejsc dziesiętnych dla liczb zmiennoprzecinkowych."
3757
 
3758
+ #: templates/admin/settings/tabs/main_plugin_settings.php:188
3759
  msgid "CSV delimiter"
3760
  msgstr "Ogranicznik CSV"
3761
 
3762
+ #: templates/admin/settings/tabs/main_plugin_settings.php:190
3763
  msgid "Pick the CSV delimiter"
3764
  msgstr "Wybierz ogranicznik CSV"
3765
 
3766
+ #: templates/admin/settings/tabs/main_plugin_settings.php:209
3767
  msgid "Tables sorting direction in admin page"
3768
  msgstr ""
3769
 
3770
+ #: templates/admin/settings/tabs/main_plugin_settings.php:211
3771
  msgid ""
3772
  "Here you can set sorting direction by id for browse tables and charts. By "
3773
  "default is ascending order."
3774
  msgstr ""
3775
 
3776
+ #: templates/admin/settings/tabs/main_plugin_settings.php:217
3777
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3778
  #: templates/edit_table.inc.php:663
3779
  msgid "Ascending"
3780
  msgstr "Rosnąco"
3781
 
3782
+ #: templates/admin/settings/tabs/main_plugin_settings.php:218
3783
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3784
  #: templates/edit_table.inc.php:665
3785
  msgid "Descending"
3786
  msgstr "Malejąco"
3787
 
3788
+ #: templates/admin/settings/tabs/main_plugin_settings.php:229
3789
  #: templates/settings.inc.php:171
3790
  msgid "Tablet width"
3791
  msgstr "Szerokość tableta"
3792
 
3793
+ #: templates/admin/settings/tabs/main_plugin_settings.php:231
3794
  #: templates/settings.inc.php:175
3795
  msgid ""
3796
  "Here you can specify width of the screen (in pixels) that will be treated as "
3800
  "traktowana jako tablet. Możesz ustawić ją szerzej, jeśli chcesz mieć efekt "
3801
  "responsywny na komputerach stacjonarnych."
3802
 
3803
+ #: templates/admin/settings/tabs/main_plugin_settings.php:255
3804
  #: templates/settings.inc.php:181
3805
  msgid "Mobile width"
3806
  msgstr "Szerokość mobilna"
3807
 
3808
+ #: templates/admin/settings/tabs/main_plugin_settings.php:257
3809
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3810
  msgstr ""
3811
  "Tutaj można określić szerokość (w pikselach) będą traktowane jako mobilne.."
3812
 
3813
+ #: templates/admin/settings/tabs/main_plugin_settings.php:282
3814
  #: templates/settings.inc.php:61
3815
  msgid "Tables per admin page"
3816
  msgstr "Tabele na stronie administracyjnej"
3817
 
3818
+ #: templates/admin/settings/tabs/main_plugin_settings.php:284
3819
  msgid "How many tables to show in the browse page."
3820
  msgstr "Jak wiele tabel do wyświetlenia na stronie przeglądania."
3821
 
3822
+ #: templates/admin/settings/tabs/main_plugin_settings.php:300
3823
  msgid "Align numbers"
3824
  msgstr "Wyrównywanie liczb"
3825
 
3826
+ #: templates/admin/settings/tabs/main_plugin_settings.php:302
3827
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3828
  msgstr ""
3829
 
3830
+ #: templates/admin/settings/tabs/main_plugin_settings.php:306
3831
  #: templates/settings.inc.php:161
3832
  msgid "Align numbers to the right"
3833
  msgstr ""
3834
 
3835
+ #: templates/admin/settings/tabs/main_plugin_settings.php:316
3836
  msgid "Sum functions label"
3837
  msgstr "Etykieta funkcji Sum"
3838
 
3839
+ #: templates/admin/settings/tabs/main_plugin_settings.php:318
3840
  msgid ""
3841
  "Enter a label that will be used for Sum functions. If you leave it blank "
3842
  "default label will be Σ ="
3844
  "Wprowadź etykietę, która będzie używana dla funkcji Suma. Jeśli zostawisz "
3845
  "pustą etykietę domyślną będzie Σ ="
3846
 
3847
+ #: templates/admin/settings/tabs/main_plugin_settings.php:336
3848
  msgid "Average functions label"
3849
  msgstr "Etykieta funkcji średnich"
3850
 
3851
+ #: templates/admin/settings/tabs/main_plugin_settings.php:338
3852
  msgid ""
3853
  "Enter a label that will be used for Average functions. If you leave it blank "
3854
  "default label will be Avg ="
3856
  "Wprowadź etykietę, która będzie używana dla funkcji średnia. Jeśli zostawisz "
3857
  "pustą etykietę domyślną będzie AVG ="
3858
 
3859
+ #: templates/admin/settings/tabs/main_plugin_settings.php:361
3860
  msgid "Minimum functions label"
3861
  msgstr "Minimalna etykieta funkcji"
3862
 
3863
+ #: templates/admin/settings/tabs/main_plugin_settings.php:363
3864
  msgid ""
3865
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3866
  "default label will be Min ="
3868
  "Wprowadź etykietę, która będzie używana dla funkcji minimum. Jeśli zostawisz "
3869
  "pustą etykietę domyślną będzie min ="
3870
 
3871
+ #: templates/admin/settings/tabs/main_plugin_settings.php:381
3872
  msgid "Maximum functions label"
3873
  msgstr "Maksymalna etykieta funkcji"
3874
 
3875
+ #: templates/admin/settings/tabs/main_plugin_settings.php:383
3876
  msgid ""
3877
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3878
  "default label will be Max ="
3880
  "Wprowadź etykietę, która będzie używana dla funkcji maksimum. Jeśli "
3881
  "zostawisz pustą etykietę domyślną będzie Max ="
3882
 
3883
+ #: templates/admin/settings/tabs/main_plugin_settings.php:409
3884
  msgid "Include full bootstrap front-end"
3885
  msgstr "Dołącz pełny Bootstrap frontonu"
3886
 
3887
+ #: templates/admin/settings/tabs/main_plugin_settings.php:411
3888
+ #: templates/admin/settings/tabs/main_plugin_settings.php:422
3889
  msgid ""
3890
  "It is recommended to uncheck this option if bootstrap.js is already included "
3891
  "in one of the theme files. Unchecked option means that there is still "
3895
  "z plików motywu. Niezaznaczone opcja oznacza, że nadal jest Bootstrap. js "
3896
  "zawarte tylko w trybie noConflict, który powinien zapobiegać błędom."
3897
 
3898
+ #: templates/admin/settings/tabs/main_plugin_settings.php:415
3899
  msgid "Include full bootstrap.js on the front-end"
3900
  msgstr ""
3901
 
3902
+ #: templates/admin/settings/tabs/main_plugin_settings.php:420
3903
  msgid "Include full bootstrap back-end"
3904
  msgstr "Dołącz pełną Bootstrap zaplecza"
3905
 
3906
+ #: templates/admin/settings/tabs/main_plugin_settings.php:426
3907
  msgid "Include full bootstrap.js on the back-end"
3908
  msgstr ""
3909
 
3910
+ #: templates/admin/settings/tabs/main_plugin_settings.php:434
3911
+ #: templates/admin/settings/tabs/main_plugin_settings.php:440
3912
  #: templates/settings.inc.php:32
3913
  msgid "Show plugin credentials below tables"
3914
  msgstr ""
3915
 
3916
+ #: templates/admin/settings/tabs/main_plugin_settings.php:436
3917
  #: templates/settings.inc.php:32
3918
  msgid ""
3919
  "If you want to support our project, please, keep this checkbox as checked"
3920
  msgstr ""
3921
 
3922
+ #: templates/admin/settings/tabs/main_plugin_settings.php:445
3923
  msgid "Prevent deleting tables in database"
3924
  msgstr "Zapobieganie usuwaniu tabel w bazie danych"
3925
 
3926
+ #: templates/admin/settings/tabs/main_plugin_settings.php:447
3927
  msgid ""
3928
  "It is recommended to leave this option as checked if you what to keep your "
3929
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3930
  "this option, it will be deleted all tables in database after deleting plugin"
3931
  msgstr ""
3932
 
3933
+ #: templates/admin/settings/tabs/main_plugin_settings.php:451
3934
  msgid ""
3935
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3936
  msgstr ""
3937
 
3938
+ #: templates/admin/settings/tabs/main_plugin_settings.php:458
3939
  msgid "Remove Getting Started page"
3940
  msgstr ""
3941
 
3942
+ #: templates/admin/settings/tabs/main_plugin_settings.php:460
3943
  msgid ""
3944
  "Check this option if you want to remove Getting Started page from admin menu."
3945
  msgstr ""
3946
 
3947
+ #: templates/admin/settings/tabs/main_plugin_settings.php:464
3948
  msgid "Remove \"Getting Started\" page from admin menu."
3949
  msgstr ""
3950
 
4210
  msgid "Column header"
4211
  msgstr "Nagłówek kolumny"
4212
 
 
 
 
 
4213
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4214
  msgid "Insert after"
4215
  msgstr "Wstaw po"
4246
 
4247
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4248
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4249
+ #: templates/admin/table-settings/table_settings_block.inc.php:64
4250
  msgid "Display"
4251
  msgstr "Wyświetl"
4252
 
4259
  msgstr ""
4260
 
4261
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4262
+ #: templates/admin/table-settings/table_settings_block.inc.php:72
4263
  msgid "Editing"
4264
  msgstr "Edytuję"
4265
 
4768
  msgstr "Pozwól na filtrowanie"
4769
 
4770
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4771
+ #: templates/admin/table-settings/table_settings_block.inc.php:682
4772
  msgid "Global search"
4773
  msgstr "Wyszukiwanie globalne"
4774
 
5336
  msgstr ""
5337
 
5338
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5339
+ #: templates/admin/table-settings/table_settings_block.inc.php:211
5340
  #: templates/edit_table.inc.php:58
5341
  msgid "Table title"
5342
  msgstr "Tytuł tabeli"
5343
 
5344
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5345
+ #: templates/admin/table-settings/table_settings_block.inc.php:219
5346
  #: templates/edit_table.inc.php:67
5347
  msgid "Show table title"
5348
  msgstr "Pokaż tytuł tabeli"
5349
 
5350
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5351
+ #: templates/admin/table-settings/table_settings_block.inc.php:226
5352
  msgid ""
5353
  "Enable this to show the table title in a h3 block above the table, disable "
5354
  "to hide."
5357
  "ukryć."
5358
 
5359
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5360
+ #: templates/admin/table-settings/table_settings_block.inc.php:234
5361
  msgid "Show table title on the page"
5362
  msgstr "Pokaż tytuł tabeli na stronie"
5363
 
5424
  msgstr "Przewijany"
5425
 
5426
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5427
+ #: templates/admin/table-settings/table_settings_block.inc.php:378
5428
  msgid "Scrollable table"
5429
  msgstr "Przewija tabelę"
5430
 
5431
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5432
+ #: templates/admin/table-settings/table_settings_block.inc.php:385
5433
  msgid "Enable this to enable a horizontal scrollbar below the table."
5434
  msgstr "Włącz tę opcję, aby włączyć poziomy pasek przewijania poniżej tabeli."
5435
 
5436
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5437
+ #: templates/admin/table-settings/table_settings_block.inc.php:394
5438
  msgid "Show a horizontal scrollbar"
5439
  msgstr "Pokazywanie poziomego paska przewijania"
5440
 
5441
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5442
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5443
+ #: templates/admin/table-settings/table_settings_block.inc.php:438
5444
+ #: templates/admin/table-settings/table_settings_block.inc.php:446
5445
  msgid "Limit table width"
5446
  msgstr "Ogranicz szerokość stołu"
5447
 
5448
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5449
+ #: templates/admin/table-settings/table_settings_block.inc.php:453
5450
  msgid "Enable this to restrict table width to page width."
5451
  msgstr "Włącz tę opcję, aby ograniczyć szerokość tabeli do szerokości strony."
5452
 
5453
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5454
+ #: templates/admin/table-settings/table_settings_block.inc.php:462
5455
  msgid "Limit table width to page width"
5456
  msgstr "Ogranicz szerokość stołu do szerokości strony"
5457
 
5458
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5459
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5460
+ #: templates/admin/table-settings/table_settings_block.inc.php:469
5461
+ #: templates/admin/table-settings/table_settings_block.inc.php:477
5462
  #: templates/edit_table.inc.php:392
5463
  msgid "Word wrap"
5464
  msgstr "Zawijanie"
5465
 
5466
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5467
+ #: templates/admin/table-settings/table_settings_block.inc.php:484
5468
  msgid ""
5469
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5470
  "height."
5473
  "wysokość komórek."
5474
 
5475
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5476
+ #: templates/admin/table-settings/table_settings_block.inc.php:492
5477
  msgid "Wrap words to newlines"
5478
  msgstr "Zawijaj wyrazy do nowego wiersza"
5479
 
5535
  msgid "EXCEL-LIKE"
5536
  msgstr "PODOBNE DO EXCELA"
5537
 
5538
+ #: templates/admin/table-settings/table_settings_block.inc.php:68
5539
  msgid "Sorting and filtering"
5540
  msgstr "Sortowanie i filtrowanie"
5541
 
5542
+ #: templates/admin/table-settings/table_settings_block.inc.php:76
5543
+ #: templates/admin/table-settings/table_settings_block.inc.php:1009
5544
  msgid "Table Tools"
5545
  msgstr "Narzędzia tabeli"
5546
 
5547
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
5548
+ msgid " Customize"
5549
+ msgstr ""
5550
+
5551
+ #: templates/admin/table-settings/table_settings_block.inc.php:103
5552
  msgid ""
5553
  "Please choose a type of the input data source - it can be a MySQL query, a "
5554
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5557
  "plik lub adres URL. Tylko tabele oparte na zapytaniach MySQL mogą korzystać "
5558
  "z przetwarzania po stronie serwera"
5559
 
5560
+ #: templates/admin/table-settings/table_settings_block.inc.php:110
5561
  msgid "Select a data source type"
5562
  msgstr "Wybierz typ źródła danych"
5563
 
5564
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
5565
  msgid "SQL query "
5566
  msgstr ""
5567
 
5568
+ #: templates/admin/table-settings/table_settings_block.inc.php:113
5569
  #: templates/edit_table.inc.php:85
5570
  msgid "CSV file"
5571
  msgstr "Plik CSV"
5572
 
5573
+ #: templates/admin/table-settings/table_settings_block.inc.php:114
5574
  #: templates/edit_table.inc.php:86
5575
  msgid "Excel file"
5576
  msgstr "Plik Excel"
5577
 
5578
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
5579
  msgid "Google Spreadsheet "
5580
  msgstr ""
5581
 
5582
+ #: templates/admin/table-settings/table_settings_block.inc.php:118
5583
  #: templates/edit_table.inc.php:89
5584
  msgid "XML file"
5585
  msgstr "Plik XML"
5586
 
5587
+ #: templates/admin/table-settings/table_settings_block.inc.php:119
5588
  #: templates/edit_table.inc.php:90
5589
  msgid "JSON file"
5590
  msgstr "Plik JSON"
5591
 
5592
+ #: templates/admin/table-settings/table_settings_block.inc.php:133
5593
  msgid ""
5594
  "Upload your file or provide the full URL here. For CSV or Excel input "
5595
  "sources only URLs or paths from same domain are supported. For Google "
5601
  "samej domeny. W przypadku arkuszy kalkulacyjnych Google: nie zapomnij "
5602
  "opublikować arkusza kalkulacyjnego przed wklejeniem adresu URL."
5603
 
5604
+ #: templates/admin/table-settings/table_settings_block.inc.php:139
5605
  msgid "Paste URL or path, or click Browse to choose"
5606
  msgstr ""
5607
  "Wklej adres URL lub ścieżkę lub kliknij przycisk Przeglądaj, aby wybrać"
5608
 
5609
+ #: templates/admin/table-settings/table_settings_block.inc.php:143
5610
  msgid "Browse..."
5611
  msgstr "Przeglądaj..."
5612
 
5613
+ #: templates/admin/table-settings/table_settings_block.inc.php:155
5614
  msgid ""
5615
  "If it is turned on, all sorting, filtering, pagination and other data "
5616
  "interaction will be done by MySQL server. This feature is recommended if you "
5621
  "zalecana, jeśli masz więcej niż 2000-3000 wierszy. Obowiązkowe dla tabel "
5622
  "edytowalnych."
5623
 
5624
+ #: templates/admin/table-settings/table_settings_block.inc.php:162
5625
  msgid "Enable server-side processing"
5626
  msgstr "Włącz przetwarzanie po stronie serwera"
5627
 
5628
+ #: templates/admin/table-settings/table_settings_block.inc.php:177
5629
  msgid "MySQL Query"
5630
  msgstr ""
5631
 
5632
+ #: templates/admin/table-settings/table_settings_block.inc.php:179
5633
  msgid ""
5634
  "Enter the text of your MySQL query here - please make sure it returns actual "
5635
  "data first. You can use a number of placeholders to make the dataset in the "
5637
  "with different shortcodes."
5638
  msgstr ""
5639
 
5640
+ #: templates/admin/table-settings/table_settings_block.inc.php:186
5641
  #: templates/edit_table.inc.php:292
5642
  msgid "Auto-refresh"
5643
  msgstr "Automatyczne odświeżanie"
5644
 
5645
+ #: templates/admin/table-settings/table_settings_block.inc.php:188
5646
  msgid ""
5647
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5648
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5653
  "sekundach. Pozostaw zero lub puste, aby nie używać automatycznego "
5654
  "odświeżania."
5655
 
5656
+ #: templates/admin/table-settings/table_settings_block.inc.php:193
5657
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5658
  msgstr ""
5659
  "Interwał automatycznego odświeżania w sekundach (zero lub puste, aby "
5660
  "wyłączyć)"
5661
 
5662
+ #: templates/admin/table-settings/table_settings_block.inc.php:242
5663
  msgid "Responsiveness"
5664
  msgstr "Responsywność"
5665
 
5666
+ #: templates/admin/table-settings/table_settings_block.inc.php:250
5667
  msgid "Responsive design"
5668
  msgstr "Strony mobilne"
5669
 
5670
+ #: templates/admin/table-settings/table_settings_block.inc.php:257
5671
  msgid "Enable this to allow responsiveness in the table."
5672
  msgstr "Włącz tę opcję, aby umożliwić reagowanie w tabeli."
5673
 
5674
+ #: templates/admin/table-settings/table_settings_block.inc.php:258
5675
  msgid ""
5676
  "Please do not forget to define which columns will be hidden on mobiles and "
5677
  "tablets in the column settings!"
5679
  "Proszę nie zapomnij określić, które kolumny będą ukryte na telefonach "
5680
  "komórkowych i tabletach w ustawieniach kolumny!"
5681
 
5682
+ #: templates/admin/table-settings/table_settings_block.inc.php:269
5683
  msgid "Allow collapsing on mobiles and tablets"
5684
  msgstr "Zezwalaj na zwijanie na telefonach komórkowych i tabletach"
5685
 
5686
+ #: templates/admin/table-settings/table_settings_block.inc.php:277
5687
  msgid "Hide until loaded"
5688
  msgstr "Ukryj do momentu załadowania"
5689
 
5690
+ #: templates/admin/table-settings/table_settings_block.inc.php:279
5691
  msgid ""
5692
  "Enable to make whole table hidden until it is initialized to prevent "
5693
  "unformatted data flashing"
5695
  "Włącz, aby cała tabela była ukryta, dopóki nie zostanie zainicjowana, aby "
5696
  "zapobiec miganiu danych niesformatowanych"
5697
 
5698
+ #: templates/admin/table-settings/table_settings_block.inc.php:284
5699
  msgid "Hide the table before it is fully loaded"
5700
  msgstr "Ukryj tabelę przed pełnym załadowaniem"
5701
 
5702
+ #: templates/admin/table-settings/table_settings_block.inc.php:296
5703
  msgid "Default rows per page"
5704
  msgstr "Domyślne wiersze na stronę"
5705
 
5706
+ #: templates/admin/table-settings/table_settings_block.inc.php:304
5707
+ #: templates/admin/table-settings/table_settings_block.inc.php:339
5708
  msgid "Rows per page"
5709
  msgstr "Wierszy na stronie"
5710
 
5711
+ #: templates/admin/table-settings/table_settings_block.inc.php:311
5712
  msgid "How many rows to show per page by default."
5713
  msgstr "Liczba wierszy do wyświetlenia na stronie domyślnie."
5714
 
5715
+ #: templates/admin/table-settings/table_settings_block.inc.php:347
5716
  msgid "Show X entries"
5717
  msgstr "Pokaż wpisy X"
5718
 
5719
+ #: templates/admin/table-settings/table_settings_block.inc.php:354
5720
  msgid ""
5721
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5722
  "frontend."
5724
  "Włącz/Wyłącz to, aby pokazać/ukryć \"Pokaż wpisy X\" na stronie rozwijanej "
5725
  "na frontend."
5726
 
5727
+ #: templates/admin/table-settings/table_settings_block.inc.php:362
5728
  msgid "Show \"Show X entries\" dropdown"
5729
  msgstr "Pokaż listę rozwijaną \"Pokaż wpisy X\""
5730
 
5731
+ #: templates/admin/table-settings/table_settings_block.inc.php:386
5732
  msgid "This should be turned off if you want to set columns width manually."
5733
  msgstr ""
5734
  "To powinno być wyłączone, jeśli chcesz ustawić szerokość kolumn ręcznie."
5735
 
5736
+ #: templates/admin/table-settings/table_settings_block.inc.php:407
5737
+ #: templates/admin/table-settings/table_settings_block.inc.php:415
5738
  msgid "Info block"
5739
  msgstr "Blok informacyjny"
5740
 
5741
+ #: templates/admin/table-settings/table_settings_block.inc.php:422
5742
  msgid ""
5743
  "Enable to show a block of information about the number of records below the "
5744
  "table."
5745
  msgstr ""
5746
  "Włącz, aby wyświetlić blok informacji o liczbie rekordów poniżej tabeli."
5747
 
5748
+ #: templates/admin/table-settings/table_settings_block.inc.php:430
5749
  msgid "Show information block below the table"
5750
  msgstr "Pokaż blok informacyjny pod tabelą"
5751
 
5752
+ #: templates/admin/table-settings/table_settings_block.inc.php:454
5753
  msgid ""
5754
  "This should be turned on if you want to set columns width manually. Should "
5755
  "be on to use word wrapping."
5757
  "To powinno być włączone, jeśli chcesz ustawić szerokość kolumn ręcznie. "
5758
  "Należy używać zawijania wyrazów."
5759
 
5760
+ #: templates/admin/table-settings/table_settings_block.inc.php:516
5761
  msgid "Enable to show a pagination"
5762
  msgstr ""
5763
 
5764
+ #: templates/admin/table-settings/table_settings_block.inc.php:524
5765
  msgid "Show pagination block below the table"
5766
  msgstr ""
5767
 
5768
+ #: templates/admin/table-settings/table_settings_block.inc.php:532
5769
+ #: templates/admin/table-settings/table_settings_block.inc.php:540
5770
  msgid "Pagination Alignment"
5771
  msgstr ""
5772
 
5773
+ #: templates/admin/table-settings/table_settings_block.inc.php:544
5774
  msgid "Here you can set pagination position: right, center or left."
5775
  msgstr ""
5776
 
5777
+ #: templates/admin/table-settings/table_settings_block.inc.php:552
5778
  msgid "Right"
5779
  msgstr ""
5780
 
5781
+ #: templates/admin/table-settings/table_settings_block.inc.php:553
5782
  msgid "Center"
5783
  msgstr ""
5784
 
5785
+ #: templates/admin/table-settings/table_settings_block.inc.php:554
5786
  msgid "Left"
5787
  msgstr ""
5788
 
5789
+ #: templates/admin/table-settings/table_settings_block.inc.php:563
5790
+ #: templates/admin/table-settings/table_settings_block.inc.php:571
5791
  msgid "Pagination Layout"
5792
  msgstr ""
5793
 
5794
+ #: templates/admin/table-settings/table_settings_block.inc.php:575
5795
  msgid "Here you can choose between different pagination layout."
5796
  msgstr ""
5797
 
5798
+ #: templates/admin/table-settings/table_settings_block.inc.php:583
5799
  msgid ""
5800
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5801
  msgstr ""
5802
 
5803
+ #: templates/admin/table-settings/table_settings_block.inc.php:584
5804
  msgid "\"Previous\" and \"Next\" buttons only"
5805
  msgstr ""
5806
 
5807
+ #: templates/admin/table-settings/table_settings_block.inc.php:585
5808
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5809
  msgstr ""
5810
 
5811
+ #: templates/admin/table-settings/table_settings_block.inc.php:586
5812
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5813
  msgstr ""
5814
 
5815
+ #: templates/admin/table-settings/table_settings_block.inc.php:587
5816
  msgid "Page number buttons only"
5817
  msgstr ""
5818
 
5819
+ #: templates/admin/table-settings/table_settings_block.inc.php:588
5820
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5821
  msgstr ""
5822
 
5823
+ #: templates/admin/table-settings/table_settings_block.inc.php:609
5824
  msgid "Advanced column filters"
5825
  msgstr "Zaawansowane filtry kolumnowe"
5826
 
5827
+ #: templates/admin/table-settings/table_settings_block.inc.php:617
5828
  msgid "Advanced filter"
5829
  msgstr "Filtr zaawansowany"
5830
 
5831
+ #: templates/admin/table-settings/table_settings_block.inc.php:624
5832
  msgid ""
5833
  "Enable to show an advanced filter for each of the columns, filters can be "
5834
  "shown in table footer, header or in a separate form."
5836
  "Włącz, aby wyświetlić Filtr zaawansowany dla każdej kolumny, filtry mogą być "
5837
  "wyświetlane w stopce tabeli, nagłówku lub w osobnym formularzu."
5838
 
5839
+ #: templates/admin/table-settings/table_settings_block.inc.php:635
5840
  msgid "Enable advanced column filters"
5841
  msgstr "Włącz Zaawansowane filtry kolumn"
5842
 
5843
+ #: templates/admin/table-settings/table_settings_block.inc.php:658
5844
  msgid ""
5845
  "If this is enabled, each column header will be clickable; clicking will sort "
5846
  "the whole table by the content of this column cells ascending or descending."
5849
  "kliknięcie posortuje całą tabelę według zawartości tej kolumny komórek "
5850
  "rosnąco lub malejąco."
5851
 
5852
+ #: templates/admin/table-settings/table_settings_block.inc.php:666
5853
  msgid "Allow sorting for the table"
5854
  msgstr "Zezwalaj na sortowanie dla tabeli"
5855
 
5856
+ #: templates/admin/table-settings/table_settings_block.inc.php:674
5857
  msgid "Main search block"
5858
  msgstr "Główny blok wyszukiwania"
5859
 
5860
+ #: templates/admin/table-settings/table_settings_block.inc.php:689
5861
  msgid ""
5862
  "If this is enabled, a search block will be displayed on the top right of the "
5863
  "table, allowing to search through whole table with a single input."
5866
  "wyświetlony blok wyszukiwania, umożliwiający przeszukiwanie całej tabeli za "
5867
  "pomocą jednego wejścia."
5868
 
5869
+ #: templates/admin/table-settings/table_settings_block.inc.php:697
5870
  msgid "Enable search block"
5871
  msgstr "Włącz blok wyszukiwania"
5872
 
5873
+ #: templates/admin/table-settings/table_settings_block.inc.php:711
5874
  msgid "Filters in a form"
5875
  msgstr "Filtry w formularzu"
5876
 
5877
+ #: templates/admin/table-settings/table_settings_block.inc.php:718
5878
  #: templates/edit_table.inc.php:340
5879
  msgid "Filter in form"
5880
  msgstr "Filtruj w formie"
5881
 
5882
+ #: templates/admin/table-settings/table_settings_block.inc.php:725
5883
  msgid ""
5884
  "Enable to show the advanced column filter in a form above the table, instead "
5885
  "of showing in the table footer/header."
5887
  "Włącz, aby wyświetlić zaawansowany filtr kolumn w formularzu powyżej tabeli, "
5888
  "zamiast pokazywać w stopce/nagłówku tabeli."
5889
 
5890
+ #: templates/admin/table-settings/table_settings_block.inc.php:734
5891
  msgid "Show filters in a form above the table"
5892
  msgstr "Pokaż filtry w formularzu nad tabelą"
5893
 
5894
+ #: templates/admin/table-settings/table_settings_block.inc.php:742
5895
  msgid "Clear filters button"
5896
  msgstr "Przycisk Wyczyść filtry"
5897
 
5898
+ #: templates/admin/table-settings/table_settings_block.inc.php:749
5899
  #: templates/frontend/filter_form.inc.php:32
5900
  msgid "Clear filters"
5901
  msgstr "Wyczyść filtry"
5902
 
5903
+ #: templates/admin/table-settings/table_settings_block.inc.php:753
5904
  msgid "Enable to show the clear filters button."
5905
  msgstr "Włącz, aby wyświetlić przycisk Wyczyść filtry."
5906
 
5907
+ #: templates/admin/table-settings/table_settings_block.inc.php:754
5908
  msgid ""
5909
  "If filter in form is enabled, clear button will be rendered after the last "
5910
  "filter."
5912
  "Jeśli filtr w formularzu jest włączony, po ostatnim filtrze zostanie "
5913
  "wyświetlony przycisk Wyczyść."
5914
 
5915
+ #: templates/admin/table-settings/table_settings_block.inc.php:759
5916
  msgid ""
5917
  "Otherwise, clear filter button will be rendered above the table next to "
5918
  "\"Table Tools\" buttons."
5920
  "W przeciwnym razie przycisk Wyczyść filtr będzie renderowany powyżej tabeli "
5921
  "obok \"narzędzia tabeli\" przyciski."
5922
 
5923
+ #: templates/admin/table-settings/table_settings_block.inc.php:772
5924
  msgid "Show clear filters button"
5925
  msgstr "Pokaż przycisk Wyczyść filtry"
5926
 
5927
+ #: templates/admin/table-settings/table_settings_block.inc.php:792
5928
  msgid "Allow editing"
5929
  msgstr "Zezwalaj na edycję"
5930
 
5931
+ #: templates/admin/table-settings/table_settings_block.inc.php:800
5932
  #: templates/edit_table.inc.php:180
5933
  msgid "Front-end editing"
5934
  msgstr "Edycja frontowa"
5935
 
5936
+ #: templates/admin/table-settings/table_settings_block.inc.php:807
5937
  msgid "Allow editing the table from the front-end."
5938
  msgstr "Zezwalaj na edycję tabeli z frontonu."
5939
 
5940
+ #: templates/admin/table-settings/table_settings_block.inc.php:815
5941
  msgid "Allow front-end editing"
5942
  msgstr "Zezwalaj na edycję frontonu"
5943
 
5944
+ #: templates/admin/table-settings/table_settings_block.inc.php:823
5945
  msgid "Popover edit block"
5946
  msgstr "Blok edycji popover"
5947
 
5948
+ #: templates/admin/table-settings/table_settings_block.inc.php:831
5949
  #: templates/edit_table.inc.php:232
5950
  msgid "Popover tools"
5951
  msgstr "Narzędzia popover"
5952
 
5953
+ #: templates/admin/table-settings/table_settings_block.inc.php:838
5954
  msgid ""
5955
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5956
  "popover when you click on any row, instead of Table Tools block above the "
5960
  "popover po kliknięciu dowolnego wiersza, zamiast narzędzia tabeli bloku "
5961
  "powyżej tabeli."
5962
 
5963
+ #: templates/admin/table-settings/table_settings_block.inc.php:846
5964
  msgid "Editing buttons in a popover"
5965
  msgstr "Edytowanie przycisków w popover"
5966
 
5967
+ #: templates/admin/table-settings/table_settings_block.inc.php:854
5968
+ #: templates/admin/table-settings/table_settings_block.inc.php:862
5969
  msgid "In-line editing"
5970
  msgstr "Edycja w linii"
5971
 
5972
+ #: templates/admin/table-settings/table_settings_block.inc.php:869
5973
  msgid ""
5974
  "If this is enabled, front-end users will be able to edit cells by double-"
5975
  "clicking them, not only with the editor dialog."
5977
  "Jeśli ta opcja jest włączona, użytkownicy frontonu będą mogli edytować "
5978
  "komórki, klikając je dwukrotnie, nie tylko w oknie edytora."
5979
 
5980
+ #: templates/admin/table-settings/table_settings_block.inc.php:877
5981
  msgid "Allow in-line editing"
5982
  msgstr "Zezwalaj na edycję w wierszu"
5983
 
5984
+ #: templates/admin/table-settings/table_settings_block.inc.php:892
5985
  #: templates/edit_table.inc.php:192
5986
  msgid "MySQL table name for editing"
5987
  msgstr "Nazwa tabeli MySQL do edycji"
5988
 
5989
+ #: templates/admin/table-settings/table_settings_block.inc.php:894
5990
  msgid ""
5991
  "Name of the MySQL table which will be updated when edited from front-end."
5992
  msgstr ""
5993
  "Nazwa tabeli MySQL, która będzie aktualizowana podczas edycji z przodu."
5994
 
5995
+ #: templates/admin/table-settings/table_settings_block.inc.php:899
5996
  msgid "MySQL table name"
5997
  msgstr "Nazwa tabeli MySQL"
5998
 
5999
+ #: templates/admin/table-settings/table_settings_block.inc.php:908
6000
  #: templates/edit_table.inc.php:203
6001
  msgid "ID column for editing"
6002
  msgstr "Kolumna ID do edycji"
6003
 
6004
+ #: templates/admin/table-settings/table_settings_block.inc.php:910
6005
  msgid ""
6006
  "Choose the column values from which will be used as row identifiers. MUST be "
6007
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
6013
  "wstawić/Edit/Delete będzie działać poprawnie! wpDataTables odgadnie poprawną "
6014
  "kolumnę, jeśli jest on nazywany \"ID\" lub \"ID\" po stronie MySQL."
6015
 
6016
+ #: templates/admin/table-settings/table_settings_block.inc.php:924
6017
  #: templates/edit_table.inc.php:267
6018
  msgid "Editor roles"
6019
  msgstr "Role edytorów"
6020
 
6021
+ #: templates/admin/table-settings/table_settings_block.inc.php:926
6022
  msgid ""
6023
  "If you want only specific user roles to be able to edit the table, choose in "
6024
  "this dropdown. Leave unchecked to allow editing for everyone."
6027
  "wybierz tę listę rozwijaną. Pozostaw niezaznaczone, aby zezwolić na edycję "
6028
  "dla wszystkich."
6029
 
6030
+ #: templates/admin/table-settings/table_settings_block.inc.php:931
6031
  msgid "Everyone"
6032
  msgstr "Wszyscy"
6033
 
6034
+ #: templates/admin/table-settings/table_settings_block.inc.php:932
6035
  msgid "Administrators"
6036
  msgstr ""
6037
 
6038
+ #: templates/admin/table-settings/table_settings_block.inc.php:933
6039
  msgid "Editors"
6040
  msgstr ""
6041
 
6042
+ #: templates/admin/table-settings/table_settings_block.inc.php:934
6043
  msgid "Authors"
6044
  msgstr ""
6045
 
6046
+ #: templates/admin/table-settings/table_settings_block.inc.php:935
6047
  msgid "Contributors"
6048
  msgstr ""
6049
 
6050
+ #: templates/admin/table-settings/table_settings_block.inc.php:936
6051
  msgid "Subscribers"
6052
  msgstr ""
6053
 
6054
+ #: templates/admin/table-settings/table_settings_block.inc.php:951
6055
  msgid "Users see and edit only own data"
6056
  msgstr "Użytkownicy widzą i edytują tylko własne dane"
6057
 
6058
+ #: templates/admin/table-settings/table_settings_block.inc.php:959
6059
  msgid "Users see and edit only their own data"
6060
  msgstr "Użytkownicy widzą i edytują tylko swoje własne dane"
6061
 
6062
+ #: templates/admin/table-settings/table_settings_block.inc.php:966
6063
  msgid ""
6064
  "If this is enabled, users will see and edit only the rows that are related "
6065
  "to them or were created by them (associated using the User ID column)."
6068
  "wiersze, które są z nimi powiązane lub zostały przez nich utworzone "
6069
  "(skojarzone z kolumną User ID)."
6070
 
6071
+ #: templates/admin/table-settings/table_settings_block.inc.php:974
6072
  msgid "Limit editing to own data only"
6073
  msgstr "Ogranicz edycję tylko do własnych danych"
6074
 
6075
+ #: templates/admin/table-settings/table_settings_block.inc.php:982
6076
  #: templates/edit_table.inc.php:250
6077
  msgid "User ID column"
6078
  msgstr "Kolumna identyfikatora użytkownika"
6079
 
6080
+ #: templates/admin/table-settings/table_settings_block.inc.php:984
6081
  msgid ""
6082
  "Choose the column values from which will be used as User identifiers. "
6083
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
6087
  "użytkownika. Odwołuje się do identyfikatora z tabeli użytkownicy WordPressa "
6088
  "(wp_users), musi być zdefiniowana jako liczba całkowita po stronie MySQL."
6089
 
6090
+ #: templates/admin/table-settings/table_settings_block.inc.php:1017
6091
  #: templates/edit_table.inc.php:350
6092
  msgid "Table tools"
6093
  msgstr "Narzędzia tabeli"
6094
 
6095
+ #: templates/admin/table-settings/table_settings_block.inc.php:1024
6096
  msgid ""
6097
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6098
  msgstr ""
6099
  "Jeśli ta opcja jest włączona, pasek narzędzi z przydatnymi narzędziami "
6100
  "pojawi się nad tabelą"
6101
 
6102
+ #: templates/admin/table-settings/table_settings_block.inc.php:1032
6103
  msgid "Enable Table Tools"
6104
  msgstr "Włącz narzędzia tabeli"
6105
 
6106
+ #: templates/admin/table-settings/table_settings_block.inc.php:1040
6107
  msgid "Buttons"
6108
  msgstr "Przyciski"
6109
 
6110
+ #: templates/admin/table-settings/table_settings_block.inc.php:1042
6111
  msgid "Choose which buttons to show in the Table Tools block."
6112
  msgstr ""
6113
  "Wybierz przyciski, które mają być wyświetlane w bloku narzędzia tabeli."
6114
 
6115
+ #: templates/admin/table-settings/table_settings_block.inc.php:1048
6116
  msgid "Columns visibility"
6117
  msgstr "Widoczność kolumn"
6118
 
6119
+ #: templates/admin/table-settings/table_settings_block.inc.php:1080
6120
  msgid ""
6121
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6122
  "that will be replaced with some actual values at the execution time; usually "
6123
+ "this is used for SQL queries, but you can use it for filtering and editing "
6124
+ "for manual tables and only filtering for tables created from XML, JSON, "
6125
+ "Excel, CSV, Google Spreadsheet and PHP Serialized array."
6126
  msgstr ""
6127
 
6128
+ #: templates/admin/table-settings/table_settings_block.inc.php:1094
6129
+ #: templates/admin/table-settings/table_settings_block.inc.php:1109
6130
+ #: templates/admin/table-settings/table_settings_block.inc.php:1124
6131
  msgid ""
6132
  "This placeholder will be replaced with any value that you will provide in a "
6133
  "shortcode. Provide a default value here that will be used for table "
6137
  "podać w shortcode. Podaj wartość domyślną w tym miejscu, które będą używane "
6138
  "do generowania tabeli i gdy inny nie jest zdefiniowany w shortcode."
6139
 
6140
+ #: templates/admin/table-settings/table_settings_block.inc.php:1099
6141
+ #: templates/admin/table-settings/table_settings_block.inc.php:1114
6142
+ #: templates/admin/table-settings/table_settings_block.inc.php:1129
6143
+ #: templates/admin/table-settings/table_settings_block.inc.php:1152
6144
+ #: templates/admin/table-settings/table_settings_block.inc.php:1170
6145
+ #: templates/admin/table-settings/table_settings_block.inc.php:1188
6146
+ #: templates/admin/table-settings/table_settings_block.inc.php:1210
6147
+ #: templates/admin/table-settings/table_settings_block.inc.php:1228
6148
+ #: templates/admin/table-settings/table_settings_block.inc.php:1246
6149
+ #: templates/admin/table-settings/table_settings_block.inc.php:1271
6150
+ #: templates/admin/table-settings/table_settings_block.inc.php:1291
6151
+ #: templates/admin/table-settings/table_settings_block.inc.php:1310
6152
+ #: templates/admin/table-settings/table_settings_block.inc.php:1332
6153
  msgid "Default for table generation"
6154
  msgstr "Domyślne dla generowania tabeli"
6155
 
6156
+ #: templates/admin/table-settings/table_settings_block.inc.php:1145
6157
  msgid ""
6158
  "This placeholder will be replaced with the ID of currently logged in user. "
6159
  "Provide a value here to be used for table generation"
6162
  "zalogowanego użytkownika. Podaj wartość, która ma być używana do generowania "
6163
  "tabeli"
6164
 
6165
+ #: templates/admin/table-settings/table_settings_block.inc.php:1162
6166
  msgid ""
6167
  "This placeholder will be replaced with the login of currently logged in "
6168
  "user. Provide a value here to be used for table generation"
6170
  "Ten symbol zastępczy zostanie zastąpiony loginem aktualnie zalogowanego "
6171
  "użytkownika. Podaj wartość, która ma być używana do generowania tabeli"
6172
 
6173
+ #: templates/admin/table-settings/table_settings_block.inc.php:1180
6174
  msgid ""
6175
+ "This placeholder will be replaced with the Email of currently logged in "
6176
+ "user. Provide a value here to be used for table generation"
6177
  msgstr ""
 
 
6178
 
6179
+ #: templates/admin/table-settings/table_settings_block.inc.php:1204
6180
  msgid ""
6181
  "This placeholder will be replaced with the ID of current post. Provide a "
6182
  "value here to be used for table generation"
6184
  "Ten symbol zastępczy zostanie zastąpiony identyfikatorem bieżącego wpisu. "
6185
  "Podaj wartość, która ma być używana do generowania tabeli"
6186
 
6187
+ #: templates/admin/table-settings/table_settings_block.inc.php:1220
6188
+ msgid ""
6189
+ "This placeholder will be replaced with the First Name of currently logged in "
6190
+ "user. Provide a value here to be used for table generation"
6191
+ msgstr ""
6192
+ "Ten symbol zastępczy zostanie zastąpiony przez imię aktualnie zalogowanego "
6193
+ "użytkownika. Podaj wartość, która ma być używana do generowania tabeli"
6194
+
6195
+ #: templates/admin/table-settings/table_settings_block.inc.php:1238
6196
+ msgid ""
6197
+ "This placeholder will be replaced with the Last Name of currently logged in "
6198
+ "user. Provide a value here to be used for table generation"
6199
+ msgstr ""
6200
+ "Ten symbol zastępczy zostanie zastąpiony przez nazwisko aktualnie "
6201
+ "zalogowanego użytkownika. Podaj wartość, która ma być używana do generowania "
6202
+ "tabeli"
6203
+
6204
+ #: templates/admin/table-settings/table_settings_block.inc.php:1262
6205
+ msgid "This placeholder will be replaced with current date."
6206
+ msgstr "Ten symbol zastępczy zostanie zastąpiony bieżącym czasem."
6207
+
6208
+ #: templates/admin/table-settings/table_settings_block.inc.php:1281
6209
+ msgid "This placeholder will be replaced with current datetime."
6210
+ msgstr "Ten symbol zastępczy zostanie zastąpiony bieżącym czasem."
6211
+
6212
+ #: templates/admin/table-settings/table_settings_block.inc.php:1301
6213
+ msgid "This placeholder will be replaced with current time."
6214
+ msgstr "Ten symbol zastępczy zostanie zastąpiony bieżącym czasem."
6215
+
6216
+ #: templates/admin/table-settings/table_settings_block.inc.php:1325
6217
+ msgid ""
6218
+ "This placeholder will be replaced with the current prefix of WordPress "
6219
+ "database. Provide a value here to be used for table generation"
6220
+ msgstr ""
6221
+ "Ten symbol zastępczy zostanie zastąpiony bieżącym prefiksem bazy danych "
6222
+ "WordPress. Podaj wartość, która ma być używana do generowania tabeli"
6223
+
6224
+ #: templates/admin/table-settings/table_settings_block.inc.php:1356
6225
+ msgid ""
6226
+ "In premium version you can customize each table with different skin, font, "
6227
+ "background , colors and lot more. Checkout new table customize settings "
6228
+ "below."
6229
+ msgstr ""
6230
+
6231
+ #: templates/admin/table-settings/table_settings_block.inc.php:1363
6232
+ msgid "Main"
6233
+ msgstr ""
6234
+
6235
+ #: templates/admin/table-settings/table_settings_block.inc.php:1375
6236
+ msgid "Table border"
6237
+ msgstr ""
6238
+
6239
+ #: templates/admin/table-settings/table_settings_block.inc.php:1391
6240
+ msgid "Custom CSS"
6241
+ msgstr ""
6242
+
6243
+ #: templates/admin/table-settings/table_settings_block.inc.php:1716
6244
+ msgid "Remove borders in table header"
6245
+ msgstr ""
6246
+
6247
+ #: templates/admin/table-settings/table_settings_block.inc.php:2028
6248
+ msgid ""
6249
+ "This CSS will be inserted as an inline style block on every page that has "
6250
+ "this wpDataTable."
6251
+ msgstr ""
6252
+
6253
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6254
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6255
  msgid "Go to Dashboard"
8208
  #~ "i filtrowania tylko dla tabel utworzonych z XML, JSON, Excel, CSV, Google "
8209
  #~ "Spreadsheet i PHP szeregowane Array."
8210
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8211
  #~ msgid "Create a table linked to an existing data source"
8212
  #~ msgstr "Tworzenie tabeli połączonej z istniejącym źródłem danych"
8213
 
languages/ru_RU/wpdatatables-ru_RU.mo CHANGED
Binary file
languages/ru_RU/wpdatatables-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-01-15 17:04+0100\n"
6
- "PO-Revision-Date: 2021-01-15 17:04+0100\n"
7
  "Last-Translator: narozhfy <narozhnyy.alexandr@yandex.ru>\n"
8
  "Language-Team: Русский\n"
9
  "Language: ru_RU\n"
@@ -159,13 +159,13 @@ msgstr ""
159
  msgid "Go Premium"
160
  msgstr ""
161
 
162
- #: controllers/wdt_admin.php:516 controllers/wdt_admin.php:565
163
- #: controllers/wdt_admin.php:608 controllers/wdt_admin.php:629
164
- #: controllers/wdt_admin.php:676 controllers/wdt_admin.php:702
165
- #: controllers/wdt_admin.php:721 controllers/wdt_admin.php:741
166
- #: controllers/wdt_admin.php:760 controllers/wdt_admin.php:780
167
- #: controllers/wdt_admin.php:800 controllers/wdt_admin.php:820
168
- #: controllers/wdt_admin.php:839
169
  msgid "You do not have sufficient permissions to access this page."
170
  msgstr ""
171
 
@@ -274,6 +274,27 @@ msgstr ""
274
  "ниже, и шорткод будет вставлен автоматически. Вы можете предоставить "
275
  "значения для заполнителей, а также для имени файла экспорта."
276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277
  #: source/class.wdtbrowsechartstable.php:141
278
  #: source/class.wdtbrowsetable.php:168
279
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
@@ -296,7 +317,7 @@ msgid "Configure"
296
  msgstr "Настроить"
297
 
298
  #: source/class.wdtbrowsechartstable.php:162
299
- #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:303
300
  #: templates/admin/browse/bulk_actions.inc.php:14
301
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
302
  msgid "Delete"
@@ -382,6 +403,11 @@ msgstr "Выбрать все"
382
  msgid "No wpDataCharts in the system yet."
383
  msgstr "Диаграмм пока не создано"
384
 
 
 
 
 
 
385
  #: source/class.wdtbrowsetable.php:231
386
  msgid "MySQL"
387
  msgstr "MySQL сервер"
@@ -390,15 +416,15 @@ msgstr "MySQL сервер"
390
  msgid "Manual"
391
  msgstr "Ручной ввод"
392
 
393
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2216
394
- #: source/class.wpdatatable.php:2286
395
- #: templates/admin/table-settings/table_settings_block.inc.php:1031
396
  msgid "Excel"
397
  msgstr "Excel"
398
 
399
- #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2225
400
- #: source/class.wpdatatable.php:2296
401
- #: templates/admin/table-settings/table_settings_block.inc.php:1032
402
  msgid "CSV"
403
  msgstr "CSV"
404
 
@@ -411,7 +437,7 @@ msgid "JSON"
411
  msgstr "JSON"
412
 
413
  #: source/class.wdtbrowsetable.php:249
414
- #: templates/admin/table-settings/table_settings_block.inc.php:111
415
  #: templates/edit_table.inc.php:91
416
  msgid "Serialized PHP array"
417
  msgstr "Сериализованный массив PHP"
@@ -501,7 +527,7 @@ msgstr "Картинка"
501
  msgid "Attachment"
502
  msgstr "Вложение"
503
 
504
- #: source/class.wdttools.php:159
505
  msgid ""
506
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
507
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
@@ -511,15 +537,15 @@ msgstr ""
511
  "они не опубликованы корректно. <br/> Вы можете опубликовать их перейдя "
512
  "<b>File -> Publish to the web</b> "
513
 
514
- #: source/class.wdttools.php:287
515
  msgid "Back to date"
516
  msgstr "Назад к дате"
517
 
518
- #: source/class.wdttools.php:288
519
  msgid "Browse"
520
  msgstr "Поиск"
521
 
522
- #: source/class.wdttools.php:289 source/class.wdttools.php:410
523
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
524
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
525
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
@@ -537,24 +563,24 @@ msgstr "Поиск"
537
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
538
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
539
  #: templates/admin/table-settings/table_preview_block.inc.php:86
540
- #: templates/admin/table-settings/table_settings_block.inc.php:40
541
  #: templates/common/delete_modal.inc.php:39
542
  msgid "Cancel"
543
  msgstr "Отмена"
544
 
545
- #: source/class.wdttools.php:290
546
  msgid " field cannot be empty!"
547
  msgstr " поле не может быть пустым!"
548
 
549
- #: source/class.wdttools.php:291
550
  msgid "Use selected file"
551
  msgstr "Использовать выбранный файл"
552
 
553
- #: source/class.wdttools.php:292
554
  msgid "Choose file"
555
  msgstr "Выберите файл"
556
 
557
- #: source/class.wdttools.php:293 templates/admin/common/error_modal.inc.php:23
558
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
559
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
560
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
@@ -562,381 +588,391 @@ msgstr "Выберите файл"
562
  msgid "Close"
563
  msgstr "Закрыть"
564
 
565
- #: source/class.wdttools.php:294
566
  msgid "Column has been added!"
567
  msgstr "Столбец был добавлен!"
568
 
569
- #: source/class.wdttools.php:295
570
  msgid "Column header cannot be empty!"
571
  msgstr "Имя колонки не может быть пустым!"
572
 
573
- #: source/class.wdttools.php:296
574
  msgid "Please confirm column deletion!"
575
  msgstr "Подтвердите удаление строки!"
576
 
577
- #: source/class.wdttools.php:297
578
  msgid "Column has been removed!"
579
  msgstr "Столбец был удален!"
580
 
581
- #: source/class.wdttools.php:298
582
  msgid "Please select columns that you want to use in table"
583
  msgstr "Пожалуйста выберите столбец который вы хотите использовать в таблице"
584
 
585
- #: source/class.wdttools.php:299 source/class.wpdatatable.php:2234
586
- #: source/class.wpdatatable.php:2306
587
- #: templates/admin/table-settings/table_settings_block.inc.php:1033
588
  msgid "Copy"
589
  msgstr "Копировать"
590
 
591
- #: source/class.wdttools.php:300
592
  msgid "There was an error trying to insert a new row!"
593
  msgstr "При попытке добавления строки произошла ошибка! "
594
 
595
- #: source/class.wdttools.php:301
596
  msgid "Data has been saved!"
597
  msgstr "Данные были сохранены!"
598
 
599
- #: source/class.wdttools.php:302
600
  msgid "detach"
601
  msgstr "открепить"
602
 
603
- #: source/class.wdttools.php:304
604
  msgid "Delete selected"
605
  msgstr ""
606
 
607
- #: source/class.wdttools.php:305 templates/settings.inc.php:553
608
  #: templates/settings.inc.php:627
609
  msgid "Error!"
610
  msgstr "Ошибка!"
611
 
612
- #: source/class.wdttools.php:306
613
  msgid "Please upload or choose a file from Media Library!"
614
  msgstr ""
615
  "Пожалуйста, загрузите файл, или выберите уже загруженный файл в медиа "
616
  "библиотеке!"
617
 
618
- #: source/class.wdttools.php:307
619
  msgid "From"
620
  msgstr "От"
621
 
622
- #: source/class.wdttools.php:308
623
  msgid "Please provide a valid e-mail address for field"
624
  msgstr "Пожалуйста, введите корректный e-mail адрес для поля "
625
 
626
- #: source/class.wdttools.php:309
627
  msgid "Please provide a valid URL link for field"
628
  msgstr "Пожалуйста, введите корректный URL-адрес для поля "
629
 
630
- #: source/class.wdttools.php:310
631
  msgid "You have entered invalid value. Press ESC to cancel."
632
  msgstr "Вы ввели неверное значение. Нажмите ESC для отмены"
633
 
634
- #: source/class.wdttools.php:311 source/class.wdttools.php:340
635
  msgid "Show _MENU_ entries"
636
  msgstr "Показывать _MENU_ строк"
637
 
638
- #: source/class.wdttools.php:312
639
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
640
  msgid "Merge"
641
  msgstr "Совместить"
642
 
643
- #: source/class.wdttools.php:313
644
  msgid "New column"
645
  msgstr "Новая колонка"
646
 
647
- #: source/class.wdttools.php:314
648
  msgid "Number of columns can not be empty or 0"
649
  msgstr ""
650
 
651
- #: source/class.wdttools.php:315
652
  msgid "Number of rows can not be empty or 0"
653
  msgstr ""
654
 
655
- #: source/class.wdttools.php:317
656
  msgid ": activate to sort column ascending"
657
  msgstr ": нажмите для сортировки по этой колонке по возрастанию"
658
 
659
- #: source/class.wdttools.php:318
660
  msgid ": activate to sort column descending"
661
  msgstr ": нажмите для сортировки по этой колонке по убыванию"
662
 
663
- #: source/class.wdttools.php:320
664
  msgid "Ok"
665
  msgstr "OK"
666
 
667
- #: source/class.wdttools.php:322
668
  msgid "First"
669
  msgstr "Первая"
670
 
671
- #: source/class.wdttools.php:323
672
  msgid "Last"
673
  msgstr "Последняя"
674
 
675
- #: source/class.wdttools.php:324
676
  msgid "Next"
677
  msgstr "Следующая"
678
 
679
- #: source/class.wdttools.php:325
680
  msgid "Previous"
681
  msgstr "Предыдущая"
682
 
683
- #: source/class.wdttools.php:327
684
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
685
  msgid "Replace"
686
  msgstr "Заменить"
687
 
688
- #: source/class.wdttools.php:328
689
  msgid "Row has been deleted!"
690
  msgstr "Строка была удалена!"
691
 
692
- #: source/class.wdttools.php:329
 
 
 
 
693
  msgid "Select a file to use in table"
694
  msgstr "Выберите файл для использования в таблице"
695
 
696
- #: source/class.wdttools.php:330
697
  msgid "Select an Excel or CSV file"
698
  msgstr "Выберите Excel или CSV файл"
699
 
700
- #: source/class.wdttools.php:331
701
  msgid "No data available in table"
702
  msgstr "Нет данных в таблице"
703
 
704
- #: source/class.wdttools.php:332
705
  msgid "Plugin settings saved successfully"
706
  msgstr "Настройки плагина успешно сохранены"
707
 
708
- #: source/class.wdttools.php:333
709
  msgid ""
710
  "Unable to save settings of plugin. Please try again or contact us over "
711
  "Support page."
712
  msgstr ""
713
 
714
- #: source/class.wdttools.php:334
715
  msgid "Shortcode has been copied to the clipboard."
716
  msgstr "Шоткод скопирован в буфер"
717
 
718
- #: source/class.wdttools.php:335
719
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
720
  msgstr "Отображаются строки _START_ - _END_ из _TOTAL_"
721
 
722
- #: source/class.wdttools.php:336
723
  msgid "Showing 0 to 0 of 0 entries"
724
  msgstr "Отображаются строки 0-0 из 0"
725
 
726
- #: source/class.wdttools.php:337
727
  msgid "(filtered from _MAX_ total entries)"
728
  msgstr "(отфильтровано из _MAX_ всего)"
729
 
730
- #: source/class.wdttools.php:339
731
  msgid ","
732
  msgstr ","
733
 
734
- #: source/class.wdttools.php:341
735
  msgid "Loading..."
736
  msgstr "Загрузка…"
737
 
738
- #: source/class.wdttools.php:342
739
  msgid "Processing..."
740
  msgstr "Обработка…"
741
 
742
- #: source/class.wdttools.php:343
743
  msgid "SQL error"
744
  msgstr "Ошибка на стороне MySQL"
745
 
746
- #: source/class.wdttools.php:344
747
  msgid "Search: "
748
  msgstr "Поиск: "
749
 
750
- #: source/class.wdttools.php:345 templates/settings.inc.php:559
751
  #: templates/settings.inc.php:625
752
  msgid "Success!"
753
  msgstr "Выполнено!"
754
 
755
- #: source/class.wdttools.php:346
756
  msgid "No matching records found"
757
  msgstr "Не найдены строки по заданным критериям"
758
 
759
- #: source/class.wdttools.php:347
760
  msgid ""
761
  "System info data has been copied to the clipboard. You can now paste it in "
762
  "file or in support topic."
763
  msgstr ""
764
 
765
- #: source/class.wdttools.php:348
766
  msgid "Table saved successfully!"
767
  msgstr "Таблица успешно сохранена!"
768
 
769
- #: source/class.wdttools.php:349
770
  msgid "To"
771
  msgstr "До"
772
 
773
- #: source/class.wdttools.php:385
774
  #: templates/admin/common/premium_modal.inc.php:17
 
 
775
  msgid "This is a premium feature"
776
  msgstr ""
777
 
778
- #: source/class.wdttools.php:386
779
  #: templates/admin/common/premium_modal.inc.php:26
 
 
780
  msgid "This feature is available only in premium version of wpDataTables"
781
  msgstr ""
782
 
783
- #: source/class.wdttools.php:387
784
  #: templates/admin/getting-started/getting_started.inc.php:133
785
  #: templates/admin/getting-started/getting_started.inc.php:145
786
  #: templates/admin/getting-started/getting_started.inc.php:157
787
  #: templates/admin/getting-started/getting_started.inc.php:169
 
 
788
  msgid "Compare and View Pricing"
789
  msgstr ""
790
 
791
- #: source/class.wdttools.php:406
792
  msgid "Field cannot be empty!"
793
  msgstr ""
794
 
795
- #: source/class.wdttools.php:407
796
  msgid "Please choose chart type."
797
  msgstr ""
798
 
799
- #: source/class.wdttools.php:408
800
  msgid "Please select wpDataTable from dropdown."
801
  msgstr ""
802
 
803
- #: source/class.wdttools.php:409
804
  msgid "Columns field cannot be empty"
805
  msgstr ""
806
 
807
- #: source/class.wdttools.php:411
808
  msgid ""
809
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
810
  "clicking on Cancel button."
811
  msgstr ""
812
 
813
- #: source/class.wdttools.php:412
814
  msgid "Finish Tutorial"
815
  msgstr ""
816
 
817
- #: source/class.wdttools.php:413
818
  msgid "Continue"
819
  msgstr ""
820
 
821
- #: source/class.wdttools.php:414
822
  msgid "Start"
823
  msgstr ""
824
 
825
- #: source/class.wdttools.php:415
826
  msgid "Skip Tutorial"
827
  msgstr ""
828
 
829
- #: source/class.wdttools.php:418 source/class.wdttools.php:484
830
- #: source/class.wdttools.php:526
831
  msgid "Welcome to the tutorial!"
832
  msgstr ""
833
 
834
- #: source/class.wdttools.php:419 source/class.wdttools.php:485
835
- #: source/class.wdttools.php:527
836
  msgid "Hello "
837
  msgstr ""
838
 
839
- #: source/class.wdttools.php:419
840
  msgid ""
841
  ", in this tutorial, we will show you how to create a simple table from "
842
  "scratch by choosing a custom number of columns and rows. How to customize "
843
  "each cell, merge cells and a lot more."
844
  msgstr ""
845
 
846
- #: source/class.wdttools.php:422
847
  msgid " Let's create a new wpDataTable from scratch!"
848
  msgstr ""
849
 
850
- #: source/class.wdttools.php:423 source/class.wdttools.php:489
851
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
852
  msgstr ""
853
 
854
- #: source/class.wdttools.php:426
855
  msgid "Choose this option"
856
  msgstr ""
857
 
858
- #: source/class.wdttools.php:427
859
  msgid "Please select 'Create a simple table from scratch'."
860
  msgstr ""
861
 
862
- #: source/class.wdttools.php:430 source/class.wdttools.php:496
863
  msgid "Click Next"
864
  msgstr ""
865
 
866
- #: source/class.wdttools.php:431 source/class.wdttools.php:497
867
  msgid "Please click the 'Next' button to continue."
868
  msgstr ""
869
 
870
- #: source/class.wdttools.php:434
871
  msgid "Welcome to the Simple table wizard!"
872
  msgstr ""
873
 
874
- #: source/class.wdttools.php:435
875
  msgid "Please click 'Continue' button to move on."
876
  msgstr ""
877
 
878
- #: source/class.wdttools.php:438
879
  msgid "Choose a name for your table"
880
  msgstr ""
881
 
882
- #: source/class.wdttools.php:439
883
  msgid "After inserting table name, click 'Continue' to move on."
884
  msgstr ""
885
 
886
- #: source/class.wdttools.php:442
887
  msgid "Choose the number of columns for your table"
888
  msgstr ""
889
 
890
- #: source/class.wdttools.php:443
891
  msgid ""
892
  "Please choose how many columns it will have. Remember that you can always "
893
  "add or reduce the number of columns later. Click 'Continue' when you finish."
894
  msgstr ""
895
 
896
- #: source/class.wdttools.php:446
897
  msgid "Choose the number of rows for your table."
898
  msgstr ""
899
 
900
- #: source/class.wdttools.php:447
901
  msgid ""
902
  "Please choose how many rows it will have. Remember that you can always add "
903
  "or reduce the number of rows later. Click 'Continue' when you finish."
904
  msgstr ""
905
 
906
- #: source/class.wdttools.php:450
907
  msgid "Click on the 'Generate Table' button"
908
  msgstr ""
909
 
910
- #: source/class.wdttools.php:451
911
  msgid "When you click on the button, the empty table will be ready for you. "
912
  msgstr ""
913
 
914
- #: source/class.wdttools.php:454
915
  msgid "We are generating the table..."
916
  msgstr ""
917
 
918
- #: source/class.wdttools.php:455
919
  msgid "Please, when you see the table, click 'Continue' to move on."
920
  msgstr ""
921
 
922
- #: source/class.wdttools.php:458
923
  msgid ""
924
  "Nice job! You just configured your table and it is ready to fill it with "
925
  "data."
926
  msgstr ""
927
 
928
- #: source/class.wdttools.php:459
929
  msgid ""
930
  "Now we will guide you on how to insert data and check table layout throw "
931
  "Simple table editor, table toolbar and table preview. Please click "
932
  "'Continue' to move on."
933
  msgstr ""
934
 
935
- #: source/class.wdttools.php:462
936
  msgid "This is Simple table editor"
937
  msgstr ""
938
 
939
- #: source/class.wdttools.php:463
940
  msgid ""
941
  "Here you can populate your table with data. <br><br>You can move around the "
942
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
@@ -945,11 +981,11 @@ msgid ""
945
  "line of the row header. Click 'Continue' to move on."
946
  msgstr ""
947
 
948
- #: source/class.wdttools.php:466
949
  msgid "Check out the Simple table toolbar"
950
  msgstr ""
951
 
952
- #: source/class.wdttools.php:467
953
  msgid ""
954
  "Here you can style and insert custom data for each cell or range of cells. "
955
  "You can add or delete columns and rows, merge cells, customize sections by "
@@ -957,39 +993,39 @@ msgid ""
957
  "ratings or custom HTML code."
958
  msgstr ""
959
 
960
- #: source/class.wdttools.php:470
961
  msgid "Responsive table views"
962
  msgstr ""
963
 
964
- #: source/class.wdttools.php:471
965
  msgid ""
966
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
967
  "tab that you need, so you can make sure your table looks excellent across "
968
  "all devices. "
969
  msgstr ""
970
 
971
- #: source/class.wdttools.php:474
972
  msgid "Real-time preview"
973
  msgstr ""
974
 
975
- #: source/class.wdttools.php:475
976
  msgid ""
977
  "Here you will see how your table will look like on the page. Please click "
978
  "'Continue' to move on."
979
  msgstr ""
980
 
981
- #: source/class.wdttools.php:478
982
  msgid "Congrats! Your table is ready."
983
  msgstr ""
984
 
985
- #: source/class.wdttools.php:479
986
  msgid ""
987
  "Now you can copy the shortcode for this table, and check out how it looks on "
988
  "your website when you paste it to a post or page. You can always come back "
989
  "and edit the table as you like."
990
  msgstr ""
991
 
992
- #: source/class.wdttools.php:485
993
  msgid ""
994
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
995
  "existing data source. \"Linked\" in this context means that if you create a "
@@ -998,54 +1034,54 @@ msgid ""
998
  "reflected in the table."
999
  msgstr ""
1000
 
1001
- #: source/class.wdttools.php:488
1002
  msgid "Let's create a new wpDataTable!"
1003
  msgstr ""
1004
 
1005
- #: source/class.wdttools.php:492
1006
  msgid "Choose this option."
1007
  msgstr ""
1008
 
1009
- #: source/class.wdttools.php:493
1010
  msgid "Please select 'Create a table linked to an existing data source'."
1011
  msgstr ""
1012
 
1013
- #: source/class.wdttools.php:500
1014
- #: templates/admin/table-settings/table_settings_block.inc.php:95
1015
  msgid "Input data source type"
1016
  msgstr "Выбор источника данных"
1017
 
1018
- #: source/class.wdttools.php:501
1019
  msgid "Please select a data source type that you need."
1020
  msgstr ""
1021
 
1022
- #: source/class.wdttools.php:504
1023
  msgid "Select Data source type"
1024
  msgstr ""
1025
 
1026
- #: source/class.wdttools.php:505
1027
  msgid ""
1028
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1029
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1030
  "are available in Premium version)"
1031
  msgstr ""
1032
 
1033
- #: source/class.wdttools.php:508
1034
- #: templates/admin/table-settings/table_settings_block.inc.php:122
1035
  msgid "Input file path or URL"
1036
  msgstr "Исходный файл, или URL"
1037
 
1038
- #: source/class.wdttools.php:509
1039
  msgid ""
1040
  "Upload your file or provide the full URL here. When you finish click "
1041
  "'Continue' button."
1042
  msgstr ""
1043
 
1044
- #: source/class.wdttools.php:512
1045
  msgid "Click Save Changes"
1046
  msgstr ""
1047
 
1048
- #: source/class.wdttools.php:513
1049
  msgid ""
1050
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1051
  "get an error message after button click and you are not able to solve it, "
@@ -1054,117 +1090,117 @@ msgid ""
1054
  "click Skip tutorial."
1055
  msgstr ""
1056
 
1057
- #: source/class.wdttools.php:516
1058
  msgid "The table is creating..."
1059
  msgstr ""
1060
 
1061
- #: source/class.wdttools.php:517
1062
  msgid ""
1063
  "Now the table is creating. Wait until you see it in the background and then "
1064
  "click 'Continue'."
1065
  msgstr ""
1066
 
1067
- #: source/class.wdttools.php:520
1068
  msgid "Nice job! You just created your first wpDataTable!"
1069
  msgstr ""
1070
 
1071
- #: source/class.wdttools.php:521
1072
  msgid ""
1073
  "Now you can copy the shortcode for this table, and check out how it looks on "
1074
  "your website when you paste it to a post or page."
1075
  msgstr ""
1076
 
1077
- #: source/class.wdttools.php:527
1078
  msgid ""
1079
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1080
  "plugin."
1081
  msgstr ""
1082
 
1083
- #: source/class.wdttools.php:530
1084
  msgid "Let's create a new wpDataTables Chart!"
1085
  msgstr ""
1086
 
1087
- #: source/class.wdttools.php:531
1088
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1089
  msgstr ""
1090
 
1091
- #: source/class.wdttools.php:534
1092
  msgid "Welcome to the Chart Wizard!"
1093
  msgstr ""
1094
 
1095
- #: source/class.wdttools.php:535
1096
  msgid ""
1097
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1098
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1099
  msgstr ""
1100
 
1101
- #: source/class.wdttools.php:538
1102
  msgid "Follow the steps in the Chart Wizard"
1103
  msgstr ""
1104
 
1105
- #: source/class.wdttools.php:539
1106
  msgid ""
1107
  "By following these steps, you will finish building your chart in the Chart "
1108
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1109
  "'Continue' button to move forward."
1110
  msgstr ""
1111
 
1112
- #: source/class.wdttools.php:542
1113
  msgid "Choose a name for your Chart"
1114
  msgstr ""
1115
 
1116
- #: source/class.wdttools.php:543
1117
  msgid "Click 'Continue' button when you’re ready to move forward."
1118
  msgstr ""
1119
 
1120
- #: source/class.wdttools.php:546
1121
  msgid "In wpDataTables you can find several charts render engines."
1122
  msgstr ""
1123
 
1124
- #: source/class.wdttools.php:547
1125
  msgid ""
1126
  "Click on the dropdown, and you will see several options that you can choose "
1127
  "from.(Google charts are only available) <br><br>To continue, click on the "
1128
  "dropdown."
1129
  msgstr ""
1130
 
1131
- #: source/class.wdttools.php:550
1132
  msgid "Choose Google chart engine."
1133
  msgstr ""
1134
 
1135
- #: source/class.wdttools.php:551
1136
  msgid ""
1137
  "By clicking on Google chart options, you will choose the engine that will "
1138
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1139
  "to move forward."
1140
  msgstr ""
1141
 
1142
- #: source/class.wdttools.php:554
1143
  msgid "Different charts types. "
1144
  msgstr ""
1145
 
1146
- #: source/class.wdttools.php:555
1147
  msgid ""
1148
  "Here you can choose a chart type. Please, click on the chart type that you "
1149
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1150
  "forward."
1151
  msgstr ""
1152
 
1153
- #: source/class.wdttools.php:558
1154
  msgid "The first step is finished!"
1155
  msgstr ""
1156
 
1157
- #: source/class.wdttools.php:559
1158
  msgid "Let's move on. Please, click 'Next' to continue."
1159
  msgstr ""
1160
 
1161
- #: source/class.wdttools.php:562
1162
  msgid ""
1163
  "Now you need to choose a wpDataTable based on which we will build a chart "
1164
  "for you"
1165
  msgstr ""
1166
 
1167
- #: source/class.wdttools.php:563
1168
  msgid ""
1169
  "Click on the dropdown, and all your tables will be listed. The columns of "
1170
  "the table that you choose will be used for creating the chart.<br><br>If you "
@@ -1172,59 +1208,59 @@ msgid ""
1172
  "button and create wpDataTable that would contain the data to visualize first."
1173
  msgstr ""
1174
 
1175
- #: source/class.wdttools.php:566
1176
  msgid "Pick your wpDataTable"
1177
  msgstr ""
1178
 
1179
- #: source/class.wdttools.php:567
1180
  msgid ""
1181
  "Pick a wpDataTable from which you want to render a chart and when you "
1182
  "finish, please click 'Continue' to move on."
1183
  msgstr ""
1184
 
1185
- #: source/class.wdttools.php:570
1186
  msgid "The second step is finished!"
1187
  msgstr ""
1188
 
1189
- #: source/class.wdttools.php:571
1190
  msgid ""
1191
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1192
  msgstr ""
1193
 
1194
- #: source/class.wdttools.php:574
1195
  msgid "Just a heads up!"
1196
  msgstr ""
1197
 
1198
- #: source/class.wdttools.php:575
1199
  msgid ""
1200
  "Here you will choose from which columns you will create a chart.<br><br> "
1201
  "Please click 'Continue' button to move forward."
1202
  msgstr ""
1203
 
1204
- #: source/class.wdttools.php:578
1205
  msgid "Meet the wpDataTable Column Blocks"
1206
  msgstr ""
1207
 
1208
- #: source/class.wdttools.php:579
1209
  msgid ""
1210
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1211
  "or click on the arrow to move the desired column to the 'Columns used in the "
1212
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1213
  msgstr ""
1214
 
1215
- #: source/class.wdttools.php:582
1216
  msgid "Well done!"
1217
  msgstr ""
1218
 
1219
- #: source/class.wdttools.php:583
1220
  msgid "Just two more steps to go. Please click 'Next' to continue."
1221
  msgstr ""
1222
 
1223
- #: source/class.wdttools.php:586
1224
  msgid "Chart settings and chart preview."
1225
  msgstr ""
1226
 
1227
- #: source/class.wdttools.php:587
1228
  msgid ""
1229
  "Here you can adjust chart settings, different parameters are grouped in "
1230
  "section; adjusting the parameters will be reflected in the preview of your "
@@ -1232,51 +1268,51 @@ msgid ""
1232
  "button to move forward."
1233
  msgstr ""
1234
 
1235
- #: source/class.wdttools.php:590
1236
  msgid "In this sidebar, you can find the chart settings section."
1237
  msgstr ""
1238
 
1239
- #: source/class.wdttools.php:591
1240
  msgid ""
1241
  "By clicking on each section, you can set your desired parameters per section."
1242
  "<br><br> Please click 'Continue' button to move on."
1243
  msgstr ""
1244
 
1245
- #: source/class.wdttools.php:594
1246
  msgid "Here are the available chart options"
1247
  msgstr ""
1248
 
1249
- #: source/class.wdttools.php:595
1250
  msgid ""
1251
  "Set different chart options for the chosen section to get your desired chart "
1252
  "look.<br><br> Please click 'Continue' button to move on."
1253
  msgstr ""
1254
 
1255
- #: source/class.wdttools.php:598
1256
  msgid "How your chart will look like on the page of your website"
1257
  msgstr ""
1258
 
1259
- #: source/class.wdttools.php:599
1260
  msgid ""
1261
  "Here you can see a preview of your chart based on the settings you have "
1262
  "chosen.<br><br> Please click 'Continue' button to move on."
1263
  msgstr ""
1264
 
1265
- #: source/class.wdttools.php:602
1266
  msgid "You can save your chart now"
1267
  msgstr ""
1268
 
1269
- #: source/class.wdttools.php:603
1270
  msgid ""
1271
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1272
  "button and all your settings for this chart will be saved in the database."
1273
  msgstr ""
1274
 
1275
- #: source/class.wdttools.php:606
1276
  msgid "Congrats! Your first chart is ready!"
1277
  msgstr ""
1278
 
1279
- #: source/class.wdttools.php:607
1280
  msgid ""
1281
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1282
  "page. <br><br>You may now finish this tutorial. "
@@ -1290,7 +1326,7 @@ msgstr "Только один столбец может иметь тип String
1290
  msgid "You are mixing data types (several date axes and several number)"
1291
  msgstr "Вы смешиваете типы данных (несколько осей даты и несколько чисел)"
1292
 
1293
- #: source/class.wpdatatable.php:1895
1294
  msgid ""
1295
  "You are trying to load a table of an unknown type. Probably you did not "
1296
  "activate the addon which is required to use this table type."
@@ -1298,38 +1334,38 @@ msgstr ""
1298
  "Вы пытаетесь загрузить таблицу неизвестного типа. Возможно, вы не "
1299
  "активировали аддон, который требуется для использования этого типа таблицы."
1300
 
1301
- #: source/class.wpdatatable.php:2134 source/class.wpdatatable.php:2137
1302
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1303
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1304
- #: templates/admin/table-settings/table_settings_block.inc.php:312
1305
  #: templates/edit_table.inc.php:409
1306
  msgid "All"
1307
  msgstr "Все"
1308
 
1309
- #: source/class.wpdatatable.php:2195 source/class.wpdatatable.php:2264
1310
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1311
  msgid "Columns"
1312
  msgstr "Колонки"
1313
 
1314
- #: source/class.wpdatatable.php:2205 source/class.wpdatatable.php:2274
1315
- #: templates/admin/table-settings/table_settings_block.inc.php:1030
1316
  msgid "Print"
1317
  msgstr "Печать"
1318
 
1319
- #: source/class.wpdatatable.php:2244 source/class.wpdatatable.php:2317
1320
- #: templates/admin/table-settings/table_settings_block.inc.php:1034
1321
  msgid "PDF"
1322
  msgstr "PDF"
1323
 
1324
- #: source/class.wpdatatable.php:2252
1325
  msgid "Export"
1326
  msgstr "Экспорт"
1327
 
1328
- #: source/class.wpdatatable.php:2330
1329
  msgid "Search table"
1330
  msgstr "Найти таблицу"
1331
 
1332
- #: source/class.wpdatatable.php:2331
1333
  msgid "Showing _MENU_ Entries"
1334
  msgstr "Показ_Меню_Вхождений"
1335
 
@@ -1348,7 +1384,7 @@ msgstr ""
1348
  msgid "if you have some questions or problems with the plugin."
1349
  msgstr ""
1350
 
1351
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:498
1352
  msgid "wpDataTables Addons"
1353
  msgstr ""
1354
 
@@ -1367,12 +1403,12 @@ msgstr ""
1367
  "разработчиками, так что не забывайте периодически проверять эту страницу!"
1368
 
1369
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1370
- #: templates/admin/dashboard/dashboard.inc.php:569
1371
  msgid "Report Builder"
1372
  msgstr "Report Builder"
1373
 
1374
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1375
- #: templates/admin/dashboard/dashboard.inc.php:573
1376
  msgid ""
1377
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1378
  "XLSX documents filled in with actual data from your database."
@@ -1400,7 +1436,7 @@ msgid "NEW"
1400
  msgstr ""
1401
 
1402
  #: templates/admin/addons/addons.inc.php:40
1403
- #: templates/admin/dashboard/dashboard.inc.php:516
1404
  msgid "Master Detail Tables for wpDataTables"
1405
  msgstr "Основные таблицы сведений для wpDataTables"
1406
 
@@ -1426,7 +1462,7 @@ msgid "Learn more"
1426
  msgstr ""
1427
 
1428
  #: templates/admin/addons/addons.inc.php:67
1429
- #: templates/admin/dashboard/dashboard.inc.php:543
1430
  msgid "Powerful Filters for wpDataTables"
1431
  msgstr "Мощные фильтры для wpDataTables"
1432
 
@@ -1442,12 +1478,12 @@ msgstr ""
1442
  "поиска."
1443
 
1444
  #: templates/admin/addons/addons.inc.php:120
1445
- #: templates/admin/dashboard/dashboard.inc.php:596
1446
  msgid "Formidable Forms integration for wpDataTables"
1447
  msgstr "Интеграция Formidable Forms с wpDataTables"
1448
 
1449
  #: templates/admin/addons/addons.inc.php:123
1450
- #: templates/admin/dashboard/dashboard.inc.php:600
1451
  msgid ""
1452
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1453
  "create wpDataTables from Formidable Forms entries data."
@@ -1457,12 +1493,12 @@ msgstr ""
1457
  "Forms."
1458
 
1459
  #: templates/admin/addons/addons.inc.php:143
1460
- #: templates/admin/dashboard/dashboard.inc.php:622
1461
  msgid "Gravity Forms integration for wpDataTables"
1462
  msgstr "Интеграция Gravity Forms for wpDataTables"
1463
 
1464
  #: templates/admin/addons/addons.inc.php:146
1465
- #: templates/admin/dashboard/dashboard.inc.php:626
1466
  msgid ""
1467
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1468
  "wpDataTables from Gravity Forms entries data."
@@ -1544,7 +1580,7 @@ msgid "Chart title & type"
1544
  msgstr "Название и тип диаграммы"
1545
 
1546
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1547
- #: templates/admin/table-settings/table_settings_block.inc.php:59
1548
  #: templates/chart_wizard.inc.php:36
1549
  msgid "Data source"
1550
  msgstr "Источник данных"
@@ -1587,6 +1623,7 @@ msgstr "Ярлык"
1587
 
1588
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1589
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
 
1590
  #: templates/edit_table.inc.php:730
1591
  msgid "Color"
1592
  msgstr "Цвет"
@@ -1807,8 +1844,8 @@ msgstr ""
1807
  #: templates/admin/getting-started/getting_started.inc.php:144
1808
  #: templates/admin/getting-started/getting_started.inc.php:156
1809
  #: templates/admin/getting-started/getting_started.inc.php:168
1810
- #: templates/admin/table-settings/table_settings_block.inc.php:105
1811
- #: templates/admin/table-settings/table_settings_block.inc.php:108
1812
  msgid "Available in Premium"
1813
  msgstr ""
1814
 
@@ -1949,10 +1986,6 @@ msgstr "Серии"
1949
  msgid "Axes"
1950
  msgstr " Оси"
1951
 
1952
- #: templates/admin/chart_wizard/steps/step4.inc.php:17
1953
- msgid "Title"
1954
- msgstr "Название"
1955
-
1956
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1957
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1958
  msgid "Tooltip"
@@ -2049,6 +2082,8 @@ msgstr "Включить группировку"
2049
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2050
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2051
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
 
 
2052
  msgid "Background color"
2053
  msgstr "Цвет общего фона"
2054
 
@@ -2069,6 +2104,7 @@ msgstr "Ширина границы внешней области диаграм
2069
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2070
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2071
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
 
2072
  msgid "Border color"
2073
  msgstr "Цвет границы"
2074
 
@@ -2111,6 +2147,7 @@ msgstr "Цвет внутренней границы области прорис
2111
 
2112
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2113
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
 
2114
  msgid "Font size"
2115
  msgstr "Размер шрифта"
2116
 
@@ -2485,14 +2522,14 @@ msgstr "Открыть Excel-редактор"
2485
  #: templates/admin/dashboard/dashboard.inc.php:30
2486
  #: templates/admin/getting-started/getting_started.inc.php:34
2487
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2488
- #: templates/admin/settings/settings.inc.php:96
2489
  #: templates/admin/support/support.inc.php:31
2490
  #: templates/admin/support/support.inc.php:47
2491
  #: templates/admin/system-info/system_info.inc.php:29
2492
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2493
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2494
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2495
- #: templates/admin/table-settings/table_settings_block.inc.php:1197
2496
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2497
  msgid "View Documentation"
2498
  msgstr ""
@@ -2723,180 +2760,181 @@ msgid "Version "
2723
  msgstr ""
2724
 
2725
  #: templates/admin/dashboard/dashboard.inc.php:340
2726
- msgid ""
2727
- "A minor update with a couple of features, bug fixes and stability "
2728
- "improvements:"
2729
  msgstr ""
2730
 
2731
  #: templates/admin/dashboard/dashboard.inc.php:345
2732
  msgid ""
2733
- "<strong>Feature:</strong> New option to set column data to be available/"
2734
- "disabled in global search results."
2735
  msgstr ""
2736
 
2737
  #: templates/admin/dashboard/dashboard.inc.php:346
2738
  msgid ""
2739
- "<strong>Feature:</strong> New option to set NOFOLLOW relation for links in "
2740
- "simple and data tables."
2741
  msgstr ""
2742
 
2743
  #: templates/admin/dashboard/dashboard.inc.php:347
2744
  msgid ""
2745
- "<strong>BugFix:</strong> Fixed issue with saving page in Divi builder with "
2746
- "simple table shortcode."
2747
  msgstr ""
2748
 
2749
  #: templates/admin/dashboard/dashboard.inc.php:348
2750
  msgid ""
2751
- "<strong>BugFix:</strong> Fixed issue with not showing tabs in backend after "
2752
- "switch."
2753
  msgstr ""
2754
 
2755
  #: templates/admin/dashboard/dashboard.inc.php:349
2756
  msgid ""
2757
- "<strong>BugFix:</strong> Fixed issue with tooltip in backend when is loaded "
2758
- "jQuery UI."
2759
  msgstr ""
2760
 
2761
  #: templates/admin/dashboard/dashboard.inc.php:350
 
 
 
 
2762
  msgid "Other small bug fixes and stability improvements."
2763
  msgstr ""
2764
 
2765
- #: templates/admin/dashboard/dashboard.inc.php:362
2766
  msgid "Go Premium!"
2767
  msgstr ""
2768
 
2769
- #: templates/admin/dashboard/dashboard.inc.php:368
2770
  msgid "View Comparison"
2771
  msgstr ""
2772
 
2773
- #: templates/admin/dashboard/dashboard.inc.php:376
2774
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2775
  msgid ""
2776
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2777
  "of the powerful features."
2778
  msgstr ""
2779
 
2780
- #: templates/admin/dashboard/dashboard.inc.php:380
2781
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2782
  msgid "Create a table manually"
2783
  msgstr "Создать таблицу wpDataTable в ручном режиме"
2784
 
2785
- #: templates/admin/dashboard/dashboard.inc.php:383
2786
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2787
  msgid "Creating tables from Google Spreadsheet"
2788
  msgstr ""
2789
 
2790
- #: templates/admin/dashboard/dashboard.inc.php:386
2791
  msgid ""
2792
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2793
  "tables via Google Sheet API"
2794
  msgstr ""
2795
 
2796
- #: templates/admin/dashboard/dashboard.inc.php:389
2797
  msgid ""
2798
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2799
  "tables from Private Google Spreadsheet"
2800
  msgstr ""
2801
 
2802
- #: templates/admin/dashboard/dashboard.inc.php:392
2803
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2804
  msgid "Creating MySQL-based tables from database"
2805
  msgstr ""
2806
 
2807
- #: templates/admin/dashboard/dashboard.inc.php:395
2808
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2809
  msgid "Creating MySQL-based tables from Wordpress post types"
2810
  msgstr ""
2811
 
2812
- #: templates/admin/dashboard/dashboard.inc.php:398
2813
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2814
  #: templates/edit_table.inc.php:329
2815
  msgid "Advanced filtering"
2816
  msgstr ""
2817
 
2818
- #: templates/admin/dashboard/dashboard.inc.php:401
2819
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2820
- #: templates/admin/table-settings/table_settings_block.inc.php:144
2821
  #: templates/edit_table.inc.php:282
2822
  msgid "Server-side processing"
2823
  msgstr "Обработка данных на стороне сервера"
2824
 
2825
- #: templates/admin/dashboard/dashboard.inc.php:404
2826
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2827
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2828
  msgstr ""
2829
 
2830
- #: templates/admin/dashboard/dashboard.inc.php:407
2831
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2832
  msgid "Front-end table editing"
2833
  msgstr ""
2834
 
2835
- #: templates/admin/dashboard/dashboard.inc.php:410
2836
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2837
  msgid "Excel-like editing"
2838
  msgstr ""
2839
 
2840
- #: templates/admin/dashboard/dashboard.inc.php:413
2841
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2842
  msgid "Creating charts with Highcharts"
2843
  msgstr ""
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:416
2846
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2847
  msgid "Creating charts with Chart.js"
2848
  msgstr ""
2849
 
2850
- #: templates/admin/dashboard/dashboard.inc.php:419
2851
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2852
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2853
  #: templates/edit_table.inc.php:301
2854
  msgid "Responsive"
2855
  msgstr ""
2856
 
2857
- #: templates/admin/dashboard/dashboard.inc.php:422
2858
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2859
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2860
  #: templates/edit_table.inc.php:750
2861
  msgid "Conditional formatting"
2862
  msgstr "Условное форматирование"
2863
 
2864
- #: templates/admin/dashboard/dashboard.inc.php:425
2865
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2866
  msgid "Calculating Tools"
2867
  msgstr ""
2868
 
2869
- #: templates/admin/dashboard/dashboard.inc.php:428
2870
  msgid "Formula columns"
2871
  msgstr ""
2872
 
2873
- #: templates/admin/dashboard/dashboard.inc.php:431
2874
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2875
- #: templates/admin/table-settings/table_settings_block.inc.php:79
2876
  msgid "Placeholders"
2877
  msgstr "Переменная"
2878
 
2879
- #: templates/admin/dashboard/dashboard.inc.php:434
2880
  msgid "Premium support"
2881
  msgstr ""
2882
 
2883
- #: templates/admin/dashboard/dashboard.inc.php:438
2884
  msgid "Get Premium Today"
2885
  msgstr ""
2886
 
2887
- #: templates/admin/dashboard/dashboard.inc.php:445
2888
  msgid "News Blog"
2889
  msgstr ""
2890
 
2891
- #: templates/admin/dashboard/dashboard.inc.php:450
2892
  msgid "Checkout useful articles from wpdatatables.com"
2893
  msgstr ""
2894
 
2895
- #: templates/admin/dashboard/dashboard.inc.php:473
2896
  msgid "Please install and enable PHP extensions xml and dom on your server."
2897
  msgstr ""
2898
 
2899
- #: templates/admin/dashboard/dashboard.inc.php:481
2900
  msgid ""
2901
  "Never miss notifications about new cool features, promotions,\n"
2902
  " giveaways or freebies – subscribe to our "
@@ -2904,48 +2942,48 @@ msgid ""
2904
  " about 1 message per month and never spam!"
2905
  msgstr ""
2906
 
2907
- #: templates/admin/dashboard/dashboard.inc.php:499
2908
  msgid "Premium "
2909
  msgstr ""
2910
 
2911
- #: templates/admin/dashboard/dashboard.inc.php:502
2912
  msgid ""
2913
  "While wpDataTables itself provides quite a large amount of features and "
2914
  "unlimited customisation, flexibility, you can achieve even more with our "
2915
  "premium addons.(requires wpDataTables Premium version)"
2916
  msgstr ""
2917
 
2918
- #: templates/admin/dashboard/dashboard.inc.php:520
2919
  msgid ""
2920
  "A wpDataTables addon which allows showing additional details for a specific "
2921
  "row in a popup or a separate page or post."
2922
  msgstr ""
2923
 
2924
- #: templates/admin/dashboard/dashboard.inc.php:526
2925
- #: templates/admin/dashboard/dashboard.inc.php:553
2926
- #: templates/admin/dashboard/dashboard.inc.php:579
2927
- #: templates/admin/dashboard/dashboard.inc.php:606
2928
- #: templates/admin/dashboard/dashboard.inc.php:632
2929
- #: templates/admin/dashboard/dashboard.inc.php:665
2930
  msgid "Learn More"
2931
  msgstr ""
2932
 
2933
- #: templates/admin/dashboard/dashboard.inc.php:547
2934
  msgid ""
2935
  "An add-on for wpDataTables that provides powerful filtering features: "
2936
  "cascade filtering, applying filters on button click, hide table before "
2937
  "filtering."
2938
  msgstr ""
2939
 
2940
- #: templates/admin/dashboard/dashboard.inc.php:643
2941
  msgid "Need free booking plugin?"
2942
  msgstr ""
2943
 
2944
- #: templates/admin/dashboard/dashboard.inc.php:652
2945
  msgid "Appointments and Events WordPress Booking Plugin"
2946
  msgstr ""
2947
 
2948
- #: templates/admin/dashboard/dashboard.inc.php:655
2949
  msgid ""
2950
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2951
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2956,26 +2994,26 @@ msgid ""
2956
  "each month."
2957
  msgstr ""
2958
 
2959
- #: templates/admin/dashboard/dashboard.inc.php:658
2960
  msgid "Rating: 4.3 - ‎97 reviews"
2961
  msgstr ""
2962
 
2963
- #: templates/admin/dashboard/dashboard.inc.php:661
2964
  msgid "Free Download"
2965
  msgstr ""
2966
 
2967
- #: templates/admin/dashboard/dashboard.inc.php:676
2968
  #: templates/admin/getting-started/getting_started.inc.php:184
2969
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2970
  #: templates/admin/support/support.inc.php:78
2971
  #: templates/admin/system-info/system_info.inc.php:509
2972
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2973
  msgid "Made by"
2974
  msgstr ""
2975
 
2976
- #: templates/admin/dashboard/dashboard.inc.php:684
2977
  #: templates/admin/getting-started/getting_started.inc.php:192
2978
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2979
  #: templates/admin/support/support.inc.php:45
2980
  #: templates/admin/support/support.inc.php:86
2981
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2984,9 +3022,9 @@ msgstr ""
2984
  msgid "Documentation"
2985
  msgstr "Документация по wpDataTables"
2986
 
2987
- #: templates/admin/dashboard/dashboard.inc.php:688
2988
  #: templates/admin/getting-started/getting_started.inc.php:196
2989
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2990
  #: templates/admin/support/support.inc.php:24
2991
  #: templates/admin/support/support.inc.php:90
2992
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3112,7 +3150,7 @@ msgid "Lite vs Premium comparison"
3112
  msgstr ""
3113
 
3114
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3115
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3116
  msgid "Go Premium Now"
3117
  msgstr ""
3118
 
@@ -3125,7 +3163,7 @@ msgid "Lite"
3125
  msgstr ""
3126
 
3127
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3128
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:471
3129
  msgid "Premium"
3130
  msgstr ""
3131
 
@@ -3155,8 +3193,10 @@ msgstr ""
3155
 
3156
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3157
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3158
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3159
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
 
 
3160
  msgid "NEW!"
3161
  msgstr ""
3162
 
@@ -3173,15 +3213,16 @@ msgstr ""
3173
 
3174
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3175
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3176
- #: templates/admin/table-settings/table_settings_block.inc.php:626
3177
- #: templates/admin/table-settings/table_settings_block.inc.php:634
3178
  msgid "Sorting"
3179
  msgstr "Сортировка"
3180
 
3181
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3182
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3183
- #: templates/admin/table-settings/table_settings_block.inc.php:489
3184
- #: templates/admin/table-settings/table_settings_block.inc.php:497
 
3185
  msgid "Pagination"
3186
  msgstr ""
3187
 
@@ -3208,7 +3249,7 @@ msgid "Customize charts"
3208
  msgstr ""
3209
 
3210
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3211
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:465
3212
  msgid "Limited"
3213
  msgstr ""
3214
 
@@ -3216,37 +3257,41 @@ msgstr ""
3216
  msgid "Some options are not available."
3217
  msgstr ""
3218
 
3219
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
3220
- msgid "Creating tables via Google Sheet API"
3221
  msgstr ""
3222
 
3223
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
 
 
 
 
3224
  msgid "Creating tables from Private Google Spreadsheet"
3225
  msgstr ""
3226
 
3227
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:461
3228
  msgid "Support"
3229
  msgstr ""
3230
 
3231
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:467
3232
  msgid "Response time is slow and can be up to 5 business days."
3233
  msgstr ""
3234
 
3235
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3236
  msgid ""
3237
  "* Please note that wpDataTables add-ons are not included in premium version "
3238
  "of plugin."
3239
  msgstr ""
3240
 
3241
  #: templates/admin/settings/settings.inc.php:33
3242
- #: templates/admin/settings/settings.inc.php:91
3243
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3244
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3245
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3246
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3247
  #: templates/admin/table-settings/table_preview_block.inc.php:89
3248
- #: templates/admin/table-settings/table_settings_block.inc.php:47
3249
  #: templates/admin/table-settings/table_settings_block.inc.php:48
 
3250
  msgid "Save Changes"
3251
  msgstr ""
3252
 
@@ -3271,16 +3316,23 @@ msgstr "Настройки цветов и шрифтов"
3271
  msgid "Custom JS and CSS"
3272
  msgstr "Дополнительный JS и CSS"
3273
 
3274
- #: templates/admin/settings/settings.inc.php:88 templates/settings.inc.php:434
 
 
 
 
3275
  msgid "Reset colors and fonts to default"
3276
  msgstr "Вернуть настройки по умолчанию"
3277
 
3278
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3279
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
 
 
3280
  msgid "Font"
3281
  msgstr "Шрифт"
3282
 
3283
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
 
3284
  #: templates/settings.inc.php:428
3285
  msgid ""
3286
  "This font will be used in rendered tables. Leave blank not to override "
@@ -3290,45 +3342,55 @@ msgstr ""
3290
  "пустым, чтобы не переопределять шрифт, установленный в теме."
3291
 
3292
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
 
3293
  msgid "Define the font size"
3294
  msgstr "Определить размер шрифта"
3295
 
3296
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3297
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3298
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
 
 
3299
  msgid "Font color"
3300
  msgstr "Цвет шрифта"
3301
 
3302
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
 
3303
  #, fuzzy
3304
  msgid "This color is used for the main font in table cells."
3305
  msgstr "Этот цвет будет использоваться для основного шрифта в ячейках таблицы"
3306
 
3307
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3308
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
 
3309
  msgid "Header"
3310
  msgstr ""
3311
 
3312
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
 
3313
  #, fuzzy
3314
  msgid "The color is used for background of the table header."
3315
  msgstr "Этот цвет будет использоваться как фоновый в шапке таблицы"
3316
 
3317
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
 
3318
  #, fuzzy
3319
  msgid "This color is used for the border in the table header."
3320
  msgstr "Этот цвет будет использоваться для границы в шапке таблицы"
3321
 
3322
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
 
3323
  #, fuzzy
3324
  msgid "This color is used for the font in the table header."
3325
  msgstr "Этот цвет будет использоваться для шрифта в шапке таблицы"
3326
 
3327
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
 
3328
  msgid "Active and hover color\t"
3329
  msgstr "Цвет активного заголовка, и подсветки при наведении"
3330
 
3331
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
 
3332
  #, fuzzy
3333
  msgid ""
3334
  "This color is used when you hover the mouse above the table header, or when "
@@ -3343,41 +3405,50 @@ msgid "Table border "
3343
  msgstr ""
3344
 
3345
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
 
3346
  msgid "Inner border"
3347
  msgstr "Цвет внутренней границы таблицы"
3348
 
3349
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
 
3350
  #, fuzzy
3351
  msgid "This color is used for the inner border in the table between cells."
3352
  msgstr ""
3353
  "Этот цвет будет использоваться для внутренних границ между ячейками таблицы"
3354
 
3355
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
 
3356
  msgid "Outer border"
3357
  msgstr "Цвет наружней границы таблицы"
3358
 
3359
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
 
3360
  #, fuzzy
3361
  msgid "This color is used for the outer border of the whole table body."
3362
  msgstr "Этот цвет будет использоваться для внешней границы таблицы целиком"
3363
 
3364
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
 
3365
  msgid "Table borders"
3366
  msgstr "Границы таблицы"
3367
 
3368
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
 
3369
  msgid "When this is checked, borders in table will be removed "
3370
  msgstr "Когда помечено, границы в таблице будут удалены"
3371
 
3372
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
 
3373
  msgid "Remove borders in table"
3374
  msgstr ""
3375
 
3376
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
 
3377
  msgid "Header border"
3378
  msgstr "Граница заголовка"
3379
 
3380
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
 
3381
  msgid "When this is checked,borders in header will be removed "
3382
  msgstr "Когда помечено, границы в заголовке будут удалены"
3383
 
@@ -3386,32 +3457,39 @@ msgid "Remove borders in header"
3386
  msgstr ""
3387
 
3388
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
 
3389
  msgid "Row color"
3390
  msgstr ""
3391
 
3392
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
 
3393
  msgid "Even row background"
3394
  msgstr "Цвет фона четных строк"
3395
 
3396
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
 
3397
  #, fuzzy
3398
  msgid "This color is used for for background in even rows."
3399
  msgstr "Этот цвет будет использоваться как фон четных строк"
3400
 
3401
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
 
3402
  msgid "Odd row background"
3403
  msgstr "Цвет нечетных строк"
3404
 
3405
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
 
3406
  #, fuzzy
3407
  msgid "This color is used for for background in odd rows."
3408
  msgstr "Этот цвет будет использоваться как фон нечетных строк"
3409
 
3410
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
 
3411
  msgid "Hover row"
3412
  msgstr "Цвет подсветки строк"
3413
 
3414
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
 
3415
  #, fuzzy
3416
  msgid ""
3417
  "This color is used for to highlight the row when you hover your mouse above "
@@ -3421,24 +3499,29 @@ msgstr ""
3421
  "пользователь проводит курсором мыши"
3422
 
3423
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
 
3424
  msgid "Background for selected rows"
3425
  msgstr "Фоновый цвет для выбранных строк"
3426
 
3427
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
 
3428
  #, fuzzy
3429
  msgid "This color is used for background in selected rows."
3430
  msgstr ""
3431
  "Этот цвет будет использоваться как фон выбранных строк (для редактирования)"
3432
 
3433
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
 
3434
  msgid "Cell color"
3435
  msgstr ""
3436
 
3437
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
 
3438
  msgid "Sorted columns, even rows"
3439
  msgstr "Сортированные столбцы, четные строки"
3440
 
3441
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
 
3442
  #, fuzzy
3443
  msgid ""
3444
  "This color is used for background in cells which are in the active columns "
@@ -3448,10 +3531,12 @@ msgstr ""
3448
  "(колонок, используемых для сортировки) в четных строках"
3449
 
3450
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
 
3451
  msgid "Sorted columns, odd rows"
3452
  msgstr "Сортированные столбцы, нечетные строки"
3453
 
3454
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
 
3455
  #, fuzzy
3456
  msgid ""
3457
  "This color is used for background in cells which are in the active columns "
@@ -3567,38 +3652,46 @@ msgstr ""
3567
  "появлении всплывающих диалогов"
3568
 
3569
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
 
3570
  #, fuzzy
3571
  msgid "This color is used for the background of the pagination"
3572
  msgstr "Этот цвет будет использоваться как фоновый цвет кнопок"
3573
 
3574
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
 
3575
  #, fuzzy
3576
  msgid "This color is used for the color of the links in the pagination."
3577
  msgstr "Этот цвет будет использоваться для внешней границы таблицы целиком"
3578
 
3579
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
 
3580
  msgid "Current page background color"
3581
  msgstr "Цвет фона текущей страницы"
3582
 
3583
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
 
3584
  #, fuzzy
3585
  msgid "The color is used for background of the current page"
3586
  msgstr "Этот цвет будет использоваться как фоновый в шапке таблицы"
3587
 
3588
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
 
3589
  msgid "Current page color"
3590
  msgstr "Текущий цвет страницы"
3591
 
3592
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
 
3593
  #, fuzzy
3594
  msgid "This color is used for the color of the current page."
3595
  msgstr "Этот цвет будет использоваться для границы в шапке таблицы"
3596
 
3597
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
 
3598
  msgid "Other pages hover background color"
3599
  msgstr "Цвет фона заголовка других страниц"
3600
 
3601
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
 
3602
  #, fuzzy
3603
  msgid ""
3604
  "This background color is used when you hover the mouse above the other pages"
@@ -3608,10 +3701,12 @@ msgstr ""
3608
  "таблица"
3609
 
3610
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
 
3611
  msgid "Other pages hover color"
3612
  msgstr "Цвет других страниц"
3613
 
3614
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
 
3615
  #, fuzzy
3616
  msgid "This color is used when you hover the mouse above the other pages."
3617
  msgstr ""
@@ -3633,6 +3728,7 @@ msgstr ""
3633
  "wpDataTables (открывающие и закрывающие script тэги не нужны)"
3634
 
3635
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
 
3636
  #: templates/settings.inc.php:463
3637
  msgid "Custom wpDataTables CSS"
3638
  msgstr "Дополнительные CSS для wpDataTables"
@@ -3654,16 +3750,19 @@ msgid "Use minified version of Javascript files"
3654
  msgstr ""
3655
 
3656
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
 
3657
  #: templates/settings.inc.php:45
3658
  msgid "Interface language"
3659
  msgstr "Язык интерфейса"
3660
 
3661
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
 
3662
  msgid "Pick the language which will be used in tables interface."
3663
  msgstr ""
3664
  "Выберите язык, который будет использоваться во фронт-енд интерфейсе таблиц"
3665
 
3666
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
 
3667
  msgid "English (default)"
3668
  msgstr "Английский (по умолчанию)"
3669
 
@@ -3677,82 +3776,90 @@ msgid "Pick the date format to use in date column type."
3677
  msgstr ""
3678
  "Выберите формат даты, который будет использоваться в колонках типа \"Дата\""
3679
 
3680
- #: templates/admin/settings/tabs/main_plugin_settings.php:73
3681
  #: templates/settings.inc.php:119
3682
  msgid "Time format"
3683
  msgstr "Формат времени"
3684
 
3685
- #: templates/admin/settings/tabs/main_plugin_settings.php:75
3686
  msgid "Pick the time format to use in datetime and time column type."
3687
  msgstr ""
3688
  "Выберите формат времени, который будет использоваться в колонках типа \"Время"
3689
  "\""
3690
 
3691
- #: templates/admin/settings/tabs/main_plugin_settings.php:90
3692
  msgid "Parse shortcodes"
3693
  msgstr "Разобрать шорткоды"
3694
 
3695
- #: templates/admin/settings/tabs/main_plugin_settings.php:92
3696
  msgid ""
3697
  "If the option is enabled, you can use shortcodes of other plugins for "
3698
  "generating content."
3699
  msgstr ""
3700
 
3701
- #: templates/admin/settings/tabs/main_plugin_settings.php:96
3702
  msgid "Parse shortcodes in strings"
3703
  msgstr "Разбирать шорткоды в строках"
3704
 
3705
- #: templates/admin/settings/tabs/main_plugin_settings.php:103
 
3706
  #: templates/settings.inc.php:74
3707
  msgid "Base skin"
3708
  msgstr "Основной скин"
3709
 
3710
- #: templates/admin/settings/tabs/main_plugin_settings.php:105
 
3711
  msgid "Choose the base skin for the plugin."
3712
  msgstr "Выберите основной скин плагина"
3713
 
3714
- #: templates/admin/settings/tabs/main_plugin_settings.php:111
 
3715
  msgid "Material"
3716
  msgstr "Материал"
3717
 
3718
- #: templates/admin/settings/tabs/main_plugin_settings.php:112
 
3719
  msgid "Light"
3720
  msgstr "Лайт"
3721
 
3722
- #: templates/admin/settings/tabs/main_plugin_settings.php:113
 
3723
  msgid "Graphite"
3724
  msgstr "Графит"
3725
 
3726
- #: templates/admin/settings/tabs/main_plugin_settings.php:114
 
3727
  msgid "Aqua"
3728
  msgstr "Вода"
3729
 
3730
- #: templates/admin/settings/tabs/main_plugin_settings.php:115
 
3731
  msgid "Purple"
3732
  msgstr "Фиолетовый"
3733
 
3734
- #: templates/admin/settings/tabs/main_plugin_settings.php:116
 
3735
  msgid "Dark"
3736
  msgstr "Темный"
3737
 
3738
- #: templates/admin/settings/tabs/main_plugin_settings.php:124
3739
  #: templates/settings.inc.php:131
3740
  msgid "Number format"
3741
  msgstr "Форматирование чисел"
3742
 
3743
- #: templates/admin/settings/tabs/main_plugin_settings.php:126
3744
  #: templates/settings.inc.php:138
3745
  msgid "Pick the number format (thousands and decimals separator)"
3746
  msgstr ""
3747
  "Выберите, как форматировать числа (разделитель разрядов и разделитель "
3748
  "десятичной части)"
3749
 
3750
- #: templates/admin/settings/tabs/main_plugin_settings.php:143
3751
  #: templates/settings.inc.php:86
3752
  msgid "Render advanced filter"
3753
  msgstr "Отображать дополнительные фильтры"
3754
 
3755
- #: templates/admin/settings/tabs/main_plugin_settings.php:145
3756
  msgid ""
3757
  "Choose where you would like to render the advanced filter for tables where "
3758
  "enabled."
@@ -3760,62 +3867,62 @@ msgstr ""
3760
  "Где вы хотите отображать дополнительные фильтры для таблицы, когда они "
3761
  "включены"
3762
 
3763
- #: templates/admin/settings/tabs/main_plugin_settings.php:151
3764
  #: templates/settings.inc.php:90
3765
  msgid "In the header"
3766
  msgstr "В шапке таблицы"
3767
 
3768
- #: templates/admin/settings/tabs/main_plugin_settings.php:152
3769
  #: templates/settings.inc.php:91
3770
  msgid "In the footer"
3771
  msgstr "В подвале таблицы"
3772
 
3773
- #: templates/admin/settings/tabs/main_plugin_settings.php:160
3774
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3775
  #: templates/settings.inc.php:143
3776
  msgid "Decimal places"
3777
  msgstr "Знаков после запятой"
3778
 
3779
- #: templates/admin/settings/tabs/main_plugin_settings.php:162
3780
  msgid "Define the amount of decimal places for the float numbers."
3781
  msgstr "Определите количество знаков после запятой для дробных чисел"
3782
 
3783
- #: templates/admin/settings/tabs/main_plugin_settings.php:187
3784
  msgid "CSV delimiter"
3785
  msgstr "CSV разделитель"
3786
 
3787
- #: templates/admin/settings/tabs/main_plugin_settings.php:189
3788
  msgid "Pick the CSV delimiter"
3789
  msgstr "Выберите разделитель для CSV"
3790
 
3791
- #: templates/admin/settings/tabs/main_plugin_settings.php:208
3792
  msgid "Tables sorting direction in admin page"
3793
  msgstr ""
3794
 
3795
- #: templates/admin/settings/tabs/main_plugin_settings.php:210
3796
  msgid ""
3797
  "Here you can set sorting direction by id for browse tables and charts. By "
3798
  "default is ascending order."
3799
  msgstr ""
3800
 
3801
- #: templates/admin/settings/tabs/main_plugin_settings.php:216
3802
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3803
  #: templates/edit_table.inc.php:663
3804
  msgid "Ascending"
3805
  msgstr "По возрастанию"
3806
 
3807
- #: templates/admin/settings/tabs/main_plugin_settings.php:217
3808
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3809
  #: templates/edit_table.inc.php:665
3810
  msgid "Descending"
3811
  msgstr "По убыванию"
3812
 
3813
- #: templates/admin/settings/tabs/main_plugin_settings.php:228
3814
  #: templates/settings.inc.php:171
3815
  msgid "Tablet width"
3816
  msgstr "Ширина планшета"
3817
 
3818
- #: templates/admin/settings/tabs/main_plugin_settings.php:230
3819
  #: templates/settings.inc.php:175
3820
  msgid ""
3821
  "Here you can specify width of the screen (in pixels) that will be treated as "
@@ -3825,45 +3932,45 @@ msgstr ""
3825
  "шириной планшета. Вы можете установить ее шире, чем по умолчанию, если "
3826
  "хотите включить адаптивный эффект для стационарных компьютеров и ноутбуков."
3827
 
3828
- #: templates/admin/settings/tabs/main_plugin_settings.php:254
3829
  #: templates/settings.inc.php:181
3830
  msgid "Mobile width"
3831
  msgstr "Ширина мобильных телефонов"
3832
 
3833
- #: templates/admin/settings/tabs/main_plugin_settings.php:256
3834
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3835
  msgstr ""
3836
  "Здесь вы можете указать ширину экрана (в пикселях), которая будет считаться "
3837
  "шириной мобильных устройств"
3838
 
3839
- #: templates/admin/settings/tabs/main_plugin_settings.php:281
3840
  #: templates/settings.inc.php:61
3841
  msgid "Tables per admin page"
3842
  msgstr "Количество таблиц на странице обзора"
3843
 
3844
- #: templates/admin/settings/tabs/main_plugin_settings.php:283
3845
  msgid "How many tables to show in the browse page."
3846
  msgstr ""
3847
  "Сколько таблиц на одной странице показывать в админ-панели на странице обзора"
3848
 
3849
- #: templates/admin/settings/tabs/main_plugin_settings.php:299
3850
  msgid "Align numbers"
3851
  msgstr "Выравнивать чисел"
3852
 
3853
- #: templates/admin/settings/tabs/main_plugin_settings.php:301
3854
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3855
  msgstr ""
3856
 
3857
- #: templates/admin/settings/tabs/main_plugin_settings.php:305
3858
  #: templates/settings.inc.php:161
3859
  msgid "Align numbers to the right"
3860
  msgstr ""
3861
 
3862
- #: templates/admin/settings/tabs/main_plugin_settings.php:315
3863
  msgid "Sum functions label"
3864
  msgstr "Метка для функции Сумма"
3865
 
3866
- #: templates/admin/settings/tabs/main_plugin_settings.php:317
3867
  msgid ""
3868
  "Enter a label that will be used for Sum functions. If you leave it blank "
3869
  "default label will be Σ ="
@@ -3871,11 +3978,11 @@ msgstr ""
3871
  "Введите метку, которая будет использоваться для функции Сумма. Если вы "
3872
  "оставите это поле пустым, по умолчанию будет использоваться метка Σ ="
3873
 
3874
- #: templates/admin/settings/tabs/main_plugin_settings.php:335
3875
  msgid "Average functions label"
3876
  msgstr "Метка для функции вычисления среднего"
3877
 
3878
- #: templates/admin/settings/tabs/main_plugin_settings.php:337
3879
  msgid ""
3880
  "Enter a label that will be used for Average functions. If you leave it blank "
3881
  "default label will be Avg ="
@@ -3883,11 +3990,11 @@ msgstr ""
3883
  "Введите метку, которая будет использоваться для функции Среднее. Если вы "
3884
  "оставите это поле пустым, по умолчанию метка будет Avg ="
3885
 
3886
- #: templates/admin/settings/tabs/main_plugin_settings.php:360
3887
  msgid "Minimum functions label"
3888
  msgstr "Метка для функции Минимум"
3889
 
3890
- #: templates/admin/settings/tabs/main_plugin_settings.php:362
3891
  msgid ""
3892
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3893
  "default label will be Min ="
@@ -3895,11 +4002,11 @@ msgstr ""
3895
  "Введите метку, которая будет использоваться для функции Минимум. Если вы "
3896
  "оставите это поле пустым, метка по умолчанию будет Min ="
3897
 
3898
- #: templates/admin/settings/tabs/main_plugin_settings.php:380
3899
  msgid "Maximum functions label"
3900
  msgstr "Метка для функции Максимум"
3901
 
3902
- #: templates/admin/settings/tabs/main_plugin_settings.php:382
3903
  msgid ""
3904
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3905
  "default label will be Max ="
@@ -3907,12 +4014,12 @@ msgstr ""
3907
  "Введите метку, которая будет использоваться для функции Максимум. Если вы "
3908
  "оставите это поле пустым, метка по умолчанию будет Max ="
3909
 
3910
- #: templates/admin/settings/tabs/main_plugin_settings.php:408
3911
  msgid "Include full bootstrap front-end"
3912
  msgstr "Включить полный интерфейс начальной загрузки"
3913
 
3914
- #: templates/admin/settings/tabs/main_plugin_settings.php:410
3915
- #: templates/admin/settings/tabs/main_plugin_settings.php:421
3916
  msgid ""
3917
  "It is recommended to uncheck this option if bootstrap.js is already included "
3918
  "in one of the theme files. Unchecked option means that there is still "
@@ -3923,56 +4030,56 @@ msgstr ""
3923
  "js, включенный только в режиме noconflict, который должен предотвратить "
3924
  "ошибки."
3925
 
3926
- #: templates/admin/settings/tabs/main_plugin_settings.php:414
3927
  msgid "Include full bootstrap.js on the front-end"
3928
  msgstr ""
3929
 
3930
- #: templates/admin/settings/tabs/main_plugin_settings.php:419
3931
  msgid "Include full bootstrap back-end"
3932
  msgstr "Включить полный интерфейс начальной загрузки"
3933
 
3934
- #: templates/admin/settings/tabs/main_plugin_settings.php:425
3935
  msgid "Include full bootstrap.js on the back-end"
3936
  msgstr ""
3937
 
3938
- #: templates/admin/settings/tabs/main_plugin_settings.php:433
3939
- #: templates/admin/settings/tabs/main_plugin_settings.php:439
3940
  #: templates/settings.inc.php:32
3941
  msgid "Show plugin credentials below tables"
3942
  msgstr ""
3943
 
3944
- #: templates/admin/settings/tabs/main_plugin_settings.php:435
3945
  #: templates/settings.inc.php:32
3946
  msgid ""
3947
  "If you want to support our project, please, keep this checkbox as checked"
3948
  msgstr ""
3949
 
3950
- #: templates/admin/settings/tabs/main_plugin_settings.php:444
3951
  msgid "Prevent deleting tables in database"
3952
  msgstr "Запретить удаление таблиц в базе данных"
3953
 
3954
- #: templates/admin/settings/tabs/main_plugin_settings.php:446
3955
  msgid ""
3956
  "It is recommended to leave this option as checked if you what to keep your "
3957
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3958
  "this option, it will be deleted all tables in database after deleting plugin"
3959
  msgstr ""
3960
 
3961
- #: templates/admin/settings/tabs/main_plugin_settings.php:450
3962
  msgid ""
3963
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3964
  msgstr ""
3965
 
3966
- #: templates/admin/settings/tabs/main_plugin_settings.php:457
3967
  msgid "Remove Getting Started page"
3968
  msgstr ""
3969
 
3970
- #: templates/admin/settings/tabs/main_plugin_settings.php:459
3971
  msgid ""
3972
  "Check this option if you want to remove Getting Started page from admin menu."
3973
  msgstr ""
3974
 
3975
- #: templates/admin/settings/tabs/main_plugin_settings.php:463
3976
  msgid "Remove \"Getting Started\" page from admin menu."
3977
  msgstr ""
3978
 
@@ -4239,10 +4346,6 @@ msgstr ""
4239
  msgid "Column header"
4240
  msgstr "Заголовок колонки"
4241
 
4242
- #: templates/admin/table-settings/add_column_modal.inc.php:47
4243
- msgid "Type"
4244
- msgstr "Тип"
4245
-
4246
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4247
  msgid "Insert after"
4248
  msgstr "Добавить после"
@@ -4279,7 +4382,7 @@ msgstr "Настройки столбца"
4279
 
4280
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4281
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4282
- #: templates/admin/table-settings/table_settings_block.inc.php:63
4283
  msgid "Display"
4284
  msgstr "Показать"
4285
 
@@ -4292,7 +4395,7 @@ msgid "Global Filtering"
4292
  msgstr ""
4293
 
4294
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4295
- #: templates/admin/table-settings/table_settings_block.inc.php:71
4296
  msgid "Editing"
4297
  msgstr "Редактировать"
4298
 
@@ -4799,7 +4902,7 @@ msgid "Allow filtering"
4799
  msgstr "Разрешить фильтрацию"
4800
 
4801
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4802
- #: templates/admin/table-settings/table_settings_block.inc.php:665
4803
  msgid "Global search"
4804
  msgstr "Глобальный поиск"
4805
 
@@ -5373,19 +5476,19 @@ msgid "Clear data"
5373
  msgstr ""
5374
 
5375
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5376
- #: templates/admin/table-settings/table_settings_block.inc.php:199
5377
  #: templates/edit_table.inc.php:58
5378
  msgid "Table title"
5379
  msgstr "Имя таблицы"
5380
 
5381
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5382
- #: templates/admin/table-settings/table_settings_block.inc.php:207
5383
  #: templates/edit_table.inc.php:67
5384
  msgid "Show table title"
5385
  msgstr "Отображать имя таблицы"
5386
 
5387
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5388
- #: templates/admin/table-settings/table_settings_block.inc.php:214
5389
  msgid ""
5390
  "Enable this to show the table title in a h3 block above the table, disable "
5391
  "to hide."
@@ -5394,7 +5497,7 @@ msgstr ""
5394
  "отключить, чтобы скрыть."
5395
 
5396
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5397
- #: templates/admin/table-settings/table_settings_block.inc.php:222
5398
  msgid "Show table title on the page"
5399
  msgstr "Отображать название таблицы на странице"
5400
 
@@ -5461,48 +5564,48 @@ msgid "Scrollable"
5461
  msgstr "Прокрутка"
5462
 
5463
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5464
- #: templates/admin/table-settings/table_settings_block.inc.php:363
5465
  msgid "Scrollable table"
5466
  msgstr "Таблица с прокруткой"
5467
 
5468
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5469
- #: templates/admin/table-settings/table_settings_block.inc.php:370
5470
  msgid "Enable this to enable a horizontal scrollbar below the table."
5471
  msgstr ""
5472
  "Включите это, чтобы включить горизонтальную полосу прокрутки под таблицей."
5473
 
5474
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5475
- #: templates/admin/table-settings/table_settings_block.inc.php:379
5476
  msgid "Show a horizontal scrollbar"
5477
  msgstr "Показывать горизонтальную прокрутку"
5478
 
5479
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5480
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5481
- #: templates/admin/table-settings/table_settings_block.inc.php:423
5482
- #: templates/admin/table-settings/table_settings_block.inc.php:431
5483
  msgid "Limit table width"
5484
  msgstr "Ограничить ширину таблицы"
5485
 
5486
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5487
- #: templates/admin/table-settings/table_settings_block.inc.php:438
5488
  msgid "Enable this to restrict table width to page width."
5489
  msgstr "Включите это, чтобы ограничить ширину таблицы шириной страницы."
5490
 
5491
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5492
- #: templates/admin/table-settings/table_settings_block.inc.php:447
5493
  msgid "Limit table width to page width"
5494
  msgstr "Ограничить ширину таблицы по ширине страницы"
5495
 
5496
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5497
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5498
- #: templates/admin/table-settings/table_settings_block.inc.php:454
5499
- #: templates/admin/table-settings/table_settings_block.inc.php:462
5500
  #: templates/edit_table.inc.php:392
5501
  msgid "Word wrap"
5502
  msgstr "Перенос слов"
5503
 
5504
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5505
- #: templates/admin/table-settings/table_settings_block.inc.php:469
5506
  msgid ""
5507
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5508
  "height."
@@ -5511,7 +5614,7 @@ msgstr ""
5511
  "высоту ячеек."
5512
 
5513
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5514
- #: templates/admin/table-settings/table_settings_block.inc.php:477
5515
  msgid "Wrap words to newlines"
5516
  msgstr "Перенос слов на новую строку"
5517
 
@@ -5573,16 +5676,20 @@ msgstr "СТАНДАРТ"
5573
  msgid "EXCEL-LIKE"
5574
  msgstr "ВИД ЭКСЕЛЬ"
5575
 
5576
- #: templates/admin/table-settings/table_settings_block.inc.php:67
5577
  msgid "Sorting and filtering"
5578
  msgstr "Сортировка и фильтрация"
5579
 
5580
- #: templates/admin/table-settings/table_settings_block.inc.php:75
5581
- #: templates/admin/table-settings/table_settings_block.inc.php:990
5582
  msgid "Table Tools"
5583
  msgstr "Инструменты таблицы"
5584
 
5585
- #: templates/admin/table-settings/table_settings_block.inc.php:97
 
 
 
 
5586
  msgid ""
5587
  "Please choose a type of the input data source - it can be a MySQL query, a "
5588
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
@@ -5591,39 +5698,39 @@ msgstr ""
5591
  "MySQL, файл или URL. Только таблицы MySQL на основе запросов могут "
5592
  "использовать обработку на стороне сервера"
5593
 
5594
- #: templates/admin/table-settings/table_settings_block.inc.php:104
5595
  msgid "Select a data source type"
5596
  msgstr "Выберите тип таблицы"
5597
 
5598
- #: templates/admin/table-settings/table_settings_block.inc.php:105
5599
  msgid "SQL query "
5600
  msgstr ""
5601
 
5602
- #: templates/admin/table-settings/table_settings_block.inc.php:106
5603
  #: templates/edit_table.inc.php:85
5604
  msgid "CSV file"
5605
  msgstr "Файл CSV"
5606
 
5607
- #: templates/admin/table-settings/table_settings_block.inc.php:107
5608
  #: templates/edit_table.inc.php:86
5609
  msgid "Excel file"
5610
  msgstr "Файл Excel"
5611
 
5612
- #: templates/admin/table-settings/table_settings_block.inc.php:108
5613
  msgid "Google Spreadsheet "
5614
  msgstr ""
5615
 
5616
- #: templates/admin/table-settings/table_settings_block.inc.php:109
5617
  #: templates/edit_table.inc.php:89
5618
  msgid "XML file"
5619
  msgstr "XML"
5620
 
5621
- #: templates/admin/table-settings/table_settings_block.inc.php:110
5622
  #: templates/edit_table.inc.php:90
5623
  msgid "JSON file"
5624
  msgstr "JSON"
5625
 
5626
- #: templates/admin/table-settings/table_settings_block.inc.php:124
5627
  msgid ""
5628
  "Upload your file or provide the full URL here. For CSV or Excel input "
5629
  "sources only URLs or paths from same domain are supported. For Google "
@@ -5634,15 +5741,15 @@ msgstr ""
5634
  "или Excel поддерживаются только URL или пути из одного домена. Для таблиц "
5635
  "Google: не забудьте опубликовать таблицу перед вставкой URL."
5636
 
5637
- #: templates/admin/table-settings/table_settings_block.inc.php:130
5638
  msgid "Paste URL or path, or click Browse to choose"
5639
  msgstr "Вставьте URL или путь или нажмите кнопку «Обзор», чтобы выбрать"
5640
 
5641
- #: templates/admin/table-settings/table_settings_block.inc.php:134
5642
  msgid "Browse..."
5643
  msgstr "Поиск..."
5644
 
5645
- #: templates/admin/table-settings/table_settings_block.inc.php:146
5646
  msgid ""
5647
  "If it is turned on, all sorting, filtering, pagination and other data "
5648
  "interaction will be done by MySQL server. This feature is recommended if you "
@@ -5652,15 +5759,15 @@ msgstr ""
5652
  "и других данных будут выполняться сервером MySQL. Эта функция рекомендуется, "
5653
  "если у вас более 2000-3000 строк. Обязательно для редактируемых таблиц."
5654
 
5655
- #: templates/admin/table-settings/table_settings_block.inc.php:151
5656
  msgid "Enable server-side processing"
5657
  msgstr "Обработка данных на стороне сервера"
5658
 
5659
- #: templates/admin/table-settings/table_settings_block.inc.php:165
5660
  msgid "MySQL Query"
5661
  msgstr ""
5662
 
5663
- #: templates/admin/table-settings/table_settings_block.inc.php:167
5664
  msgid ""
5665
  "Enter the text of your MySQL query here - please make sure it returns actual "
5666
  "data first. You can use a number of placeholders to make the dataset in the "
@@ -5668,12 +5775,12 @@ msgid ""
5668
  "with different shortcodes."
5669
  msgstr ""
5670
 
5671
- #: templates/admin/table-settings/table_settings_block.inc.php:174
5672
  #: templates/edit_table.inc.php:292
5673
  msgid "Auto-refresh"
5674
  msgstr "Авто-обновление"
5675
 
5676
- #: templates/admin/table-settings/table_settings_block.inc.php:176
5677
  msgid ""
5678
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5679
  "with a given interval of seconds. Leave zero or empty not to use auto-"
@@ -5683,25 +5790,25 @@ msgstr ""
5683
  "показать фактические данные с заданным интервалом в секундах. Оставьте ноль "
5684
  "или пустым, чтобы не использовать автообновление."
5685
 
5686
- #: templates/admin/table-settings/table_settings_block.inc.php:181
5687
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5688
  msgstr ""
5689
  "Интервал авто-обновления в секундах. Оставьте пустым, или 0, чтобы отключить "
5690
  "авто-обновление"
5691
 
5692
- #: templates/admin/table-settings/table_settings_block.inc.php:230
5693
  msgid "Responsiveness"
5694
  msgstr "Адаптивность"
5695
 
5696
- #: templates/admin/table-settings/table_settings_block.inc.php:238
5697
  msgid "Responsive design"
5698
  msgstr "Адаптивный дизайн"
5699
 
5700
- #: templates/admin/table-settings/table_settings_block.inc.php:245
5701
  msgid "Enable this to allow responsiveness in the table."
5702
  msgstr "Включите это, чтобы разрешить отзывчивость в таблице."
5703
 
5704
- #: templates/admin/table-settings/table_settings_block.inc.php:246
5705
  msgid ""
5706
  "Please do not forget to define which columns will be hidden on mobiles and "
5707
  "tablets in the column settings!"
@@ -5709,15 +5816,15 @@ msgstr ""
5709
  "Пожалуйста, не забудьте указать, какие столбцы будут скрыты на мобильных "
5710
  "телефонах и планшетах в настройках столбцов!"
5711
 
5712
- #: templates/admin/table-settings/table_settings_block.inc.php:254
5713
  msgid "Allow collapsing on mobiles and tablets"
5714
  msgstr "Разрешить сворачивать на телефонах и планшетах"
5715
 
5716
- #: templates/admin/table-settings/table_settings_block.inc.php:262
5717
  msgid "Hide until loaded"
5718
  msgstr "Скрывать пока грузится"
5719
 
5720
- #: templates/admin/table-settings/table_settings_block.inc.php:264
5721
  msgid ""
5722
  "Enable to make whole table hidden until it is initialized to prevent "
5723
  "unformatted data flashing"
@@ -5725,28 +5832,28 @@ msgstr ""
5725
  "Включите, чтобы сделать всю таблицу скрытой до ее инициализации, чтобы "
5726
  "предотвратить мигание неформатированных данных"
5727
 
5728
- #: templates/admin/table-settings/table_settings_block.inc.php:269
5729
  msgid "Hide the table before it is fully loaded"
5730
  msgstr "Скрыть таблицу до полной загрузки"
5731
 
5732
- #: templates/admin/table-settings/table_settings_block.inc.php:281
5733
  msgid "Default rows per page"
5734
  msgstr "Количество строк по умолчанию"
5735
 
5736
- #: templates/admin/table-settings/table_settings_block.inc.php:289
5737
- #: templates/admin/table-settings/table_settings_block.inc.php:324
5738
  msgid "Rows per page"
5739
  msgstr "Строк на странице"
5740
 
5741
- #: templates/admin/table-settings/table_settings_block.inc.php:296
5742
  msgid "How many rows to show per page by default."
5743
  msgstr "Сколько строк показывать по умолчанию."
5744
 
5745
- #: templates/admin/table-settings/table_settings_block.inc.php:332
5746
  msgid "Show X entries"
5747
  msgstr "Показывать Х вхождений"
5748
 
5749
- #: templates/admin/table-settings/table_settings_block.inc.php:339
5750
  msgid ""
5751
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5752
  "frontend."
@@ -5754,31 +5861,31 @@ msgstr ""
5754
  "Включите или отключите, чтобы показать или скрыть текст «Показать X записей» "
5755
  "для каждой страницы в раскрывающемся меню."
5756
 
5757
- #: templates/admin/table-settings/table_settings_block.inc.php:347
5758
  msgid "Show \"Show X entries\" dropdown"
5759
  msgstr "Показать раскрывающийся список \"Показать X записей\""
5760
 
5761
- #: templates/admin/table-settings/table_settings_block.inc.php:371
5762
  msgid "This should be turned off if you want to set columns width manually."
5763
  msgstr ""
5764
  "Это должно быть отключено, если вы хотите установить ширину столбцов вручную."
5765
 
5766
- #: templates/admin/table-settings/table_settings_block.inc.php:392
5767
- #: templates/admin/table-settings/table_settings_block.inc.php:400
5768
  msgid "Info block"
5769
  msgstr "Инфо блок"
5770
 
5771
- #: templates/admin/table-settings/table_settings_block.inc.php:407
5772
  msgid ""
5773
  "Enable to show a block of information about the number of records below the "
5774
  "table."
5775
  msgstr "Разрешить отображение информации о количестве записей под таблицей"
5776
 
5777
- #: templates/admin/table-settings/table_settings_block.inc.php:415
5778
  msgid "Show information block below the table"
5779
  msgstr "Показывать инфо блок под таблицей"
5780
 
5781
- #: templates/admin/table-settings/table_settings_block.inc.php:439
5782
  msgid ""
5783
  "This should be turned on if you want to set columns width manually. Should "
5784
  "be on to use word wrapping."
@@ -5786,78 +5893,78 @@ msgstr ""
5786
  "Это должно быть включено, если вы хотите установить ширину столбцов вручную. "
5787
  "Следует использовать перенос слов."
5788
 
5789
- #: templates/admin/table-settings/table_settings_block.inc.php:501
5790
  msgid "Enable to show a pagination"
5791
  msgstr ""
5792
 
5793
- #: templates/admin/table-settings/table_settings_block.inc.php:509
5794
  msgid "Show pagination block below the table"
5795
  msgstr ""
5796
 
5797
- #: templates/admin/table-settings/table_settings_block.inc.php:517
5798
- #: templates/admin/table-settings/table_settings_block.inc.php:525
5799
  msgid "Pagination Alignment"
5800
  msgstr ""
5801
 
5802
- #: templates/admin/table-settings/table_settings_block.inc.php:529
5803
  msgid "Here you can set pagination position: right, center or left."
5804
  msgstr ""
5805
 
5806
- #: templates/admin/table-settings/table_settings_block.inc.php:537
5807
  msgid "Right"
5808
  msgstr ""
5809
 
5810
- #: templates/admin/table-settings/table_settings_block.inc.php:538
5811
  msgid "Center"
5812
  msgstr ""
5813
 
5814
- #: templates/admin/table-settings/table_settings_block.inc.php:539
5815
  msgid "Left"
5816
  msgstr ""
5817
 
5818
- #: templates/admin/table-settings/table_settings_block.inc.php:548
5819
- #: templates/admin/table-settings/table_settings_block.inc.php:556
5820
  msgid "Pagination Layout"
5821
  msgstr ""
5822
 
5823
- #: templates/admin/table-settings/table_settings_block.inc.php:560
5824
  msgid "Here you can choose between different pagination layout."
5825
  msgstr ""
5826
 
5827
- #: templates/admin/table-settings/table_settings_block.inc.php:568
5828
  msgid ""
5829
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5830
  msgstr ""
5831
 
5832
- #: templates/admin/table-settings/table_settings_block.inc.php:569
5833
  msgid "\"Previous\" and \"Next\" buttons only"
5834
  msgstr ""
5835
 
5836
- #: templates/admin/table-settings/table_settings_block.inc.php:570
5837
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5838
  msgstr ""
5839
 
5840
- #: templates/admin/table-settings/table_settings_block.inc.php:571
5841
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5842
  msgstr ""
5843
 
5844
- #: templates/admin/table-settings/table_settings_block.inc.php:572
5845
  msgid "Page number buttons only"
5846
  msgstr ""
5847
 
5848
- #: templates/admin/table-settings/table_settings_block.inc.php:573
5849
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5850
  msgstr ""
5851
 
5852
- #: templates/admin/table-settings/table_settings_block.inc.php:595
5853
  msgid "Advanced column filters"
5854
  msgstr "Дополнительный фильтр в столбце "
5855
 
5856
- #: templates/admin/table-settings/table_settings_block.inc.php:603
5857
  msgid "Advanced filter"
5858
  msgstr "Дополнительный фильтр"
5859
 
5860
- #: templates/admin/table-settings/table_settings_block.inc.php:610
5861
  msgid ""
5862
  "Enable to show an advanced filter for each of the columns, filters can be "
5863
  "shown in table footer, header or in a separate form."
@@ -5866,11 +5973,11 @@ msgstr ""
5866
  "могут отображаться в нижнем колонтитуле таблицы, в заголовке или в отдельной "
5867
  "форме."
5868
 
5869
- #: templates/admin/table-settings/table_settings_block.inc.php:618
5870
  msgid "Enable advanced column filters"
5871
  msgstr "Отображать дополнительные фильтры"
5872
 
5873
- #: templates/admin/table-settings/table_settings_block.inc.php:641
5874
  msgid ""
5875
  "If this is enabled, each column header will be clickable; clicking will sort "
5876
  "the whole table by the content of this column cells ascending or descending."
@@ -5879,15 +5986,15 @@ msgstr ""
5879
  "отсортирует всю таблицу по содержанию ячеек этого столбца по возрастанию или "
5880
  "убыванию."
5881
 
5882
- #: templates/admin/table-settings/table_settings_block.inc.php:649
5883
  msgid "Allow sorting for the table"
5884
  msgstr "Разрешить сортировку таблицы"
5885
 
5886
- #: templates/admin/table-settings/table_settings_block.inc.php:657
5887
  msgid "Main search block"
5888
  msgstr "Главное поле поиска"
5889
 
5890
- #: templates/admin/table-settings/table_settings_block.inc.php:672
5891
  msgid ""
5892
  "If this is enabled, a search block will be displayed on the top right of the "
5893
  "table, allowing to search through whole table with a single input."
@@ -5895,20 +6002,20 @@ msgstr ""
5895
  "Если это включено, блок поиска будет отображаться в правом верхнем углу "
5896
  "таблицы, позволяя осуществлять поиск по всей таблице."
5897
 
5898
- #: templates/admin/table-settings/table_settings_block.inc.php:680
5899
  msgid "Enable search block"
5900
  msgstr "Включить поле поиска"
5901
 
5902
- #: templates/admin/table-settings/table_settings_block.inc.php:694
5903
  msgid "Filters in a form"
5904
  msgstr "Фильтр во внешней форме"
5905
 
5906
- #: templates/admin/table-settings/table_settings_block.inc.php:701
5907
  #: templates/edit_table.inc.php:340
5908
  msgid "Filter in form"
5909
  msgstr "Фильтр во внешней форме"
5910
 
5911
- #: templates/admin/table-settings/table_settings_block.inc.php:708
5912
  msgid ""
5913
  "Enable to show the advanced column filter in a form above the table, instead "
5914
  "of showing in the table footer/header."
@@ -5916,24 +6023,24 @@ msgstr ""
5916
  "Включите отображение расширенного фильтра столбцов в форме над таблицей "
5917
  "вместо отображения в нижнем колонтитуле / заголовке таблицы."
5918
 
5919
- #: templates/admin/table-settings/table_settings_block.inc.php:716
5920
  msgid "Show filters in a form above the table"
5921
  msgstr "Показывать фильтры сверху таблицы"
5922
 
5923
- #: templates/admin/table-settings/table_settings_block.inc.php:724
5924
  msgid "Clear filters button"
5925
  msgstr "Кнопка \"Очистить фильтры\""
5926
 
5927
- #: templates/admin/table-settings/table_settings_block.inc.php:731
5928
  #: templates/frontend/filter_form.inc.php:32
5929
  msgid "Clear filters"
5930
  msgstr "Очистить фильтры"
5931
 
5932
- #: templates/admin/table-settings/table_settings_block.inc.php:735
5933
  msgid "Enable to show the clear filters button."
5934
  msgstr "Показывать кнопку очистки всех фильтров"
5935
 
5936
- #: templates/admin/table-settings/table_settings_block.inc.php:736
5937
  msgid ""
5938
  "If filter in form is enabled, clear button will be rendered after the last "
5939
  "filter."
@@ -5941,7 +6048,7 @@ msgstr ""
5941
  "Если фильтр в форме включен, кнопка очистки будет отображаться после "
5942
  "последнего фильтра."
5943
 
5944
- #: templates/admin/table-settings/table_settings_block.inc.php:741
5945
  msgid ""
5946
  "Otherwise, clear filter button will be rendered above the table next to "
5947
  "\"Table Tools\" buttons."
@@ -5949,37 +6056,37 @@ msgstr ""
5949
  "В противном случае кнопка «Очистить фильтр» будет отображаться над таблицей "
5950
  "рядом с кнопками «Инструменты таблицы»."
5951
 
5952
- #: templates/admin/table-settings/table_settings_block.inc.php:753
5953
  msgid "Show clear filters button"
5954
  msgstr "Показывать кнопку сброса фильтров"
5955
 
5956
- #: templates/admin/table-settings/table_settings_block.inc.php:773
5957
  msgid "Allow editing"
5958
  msgstr "Разрешить редактирование в таблице"
5959
 
5960
- #: templates/admin/table-settings/table_settings_block.inc.php:781
5961
  #: templates/edit_table.inc.php:180
5962
  msgid "Front-end editing"
5963
  msgstr "Онлайн-редактирование с сайта"
5964
 
5965
- #: templates/admin/table-settings/table_settings_block.inc.php:788
5966
  msgid "Allow editing the table from the front-end."
5967
  msgstr "Разрешить онлайн-редактирование с сайта"
5968
 
5969
- #: templates/admin/table-settings/table_settings_block.inc.php:796
5970
  msgid "Allow front-end editing"
5971
  msgstr "Онлайн-редактирование с сайта"
5972
 
5973
- #: templates/admin/table-settings/table_settings_block.inc.php:804
5974
  msgid "Popover edit block"
5975
  msgstr "Всплывающий блок редактирования"
5976
 
5977
- #: templates/admin/table-settings/table_settings_block.inc.php:812
5978
  #: templates/edit_table.inc.php:232
5979
  msgid "Popover tools"
5980
  msgstr "Всплывающий блок инструментов"
5981
 
5982
- #: templates/admin/table-settings/table_settings_block.inc.php:819
5983
  msgid ""
5984
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5985
  "popover when you click on any row, instead of Table Tools block above the "
@@ -5989,16 +6096,16 @@ msgstr ""
5989
  "\" и \"Удалить\" отображались во всплывающем блоке по щелчку на строке "
5990
  "таблицы, а не в блоке инструментов над таблицей."
5991
 
5992
- #: templates/admin/table-settings/table_settings_block.inc.php:827
5993
  msgid "Editing buttons in a popover"
5994
  msgstr "Кнопка РЕДАКТИРОВАТЬ во всплывающем окне"
5995
 
5996
- #: templates/admin/table-settings/table_settings_block.inc.php:835
5997
- #: templates/admin/table-settings/table_settings_block.inc.php:843
5998
  msgid "In-line editing"
5999
  msgstr "Редактирование в таблице"
6000
 
6001
- #: templates/admin/table-settings/table_settings_block.inc.php:850
6002
  msgid ""
6003
  "If this is enabled, front-end users will be able to edit cells by double-"
6004
  "clicking them, not only with the editor dialog."
@@ -6007,30 +6114,30 @@ msgstr ""
6007
  "двойному клику на ячейке таблицы, а не только через всплывающее диалоговое "
6008
  "окно"
6009
 
6010
- #: templates/admin/table-settings/table_settings_block.inc.php:858
6011
  msgid "Allow in-line editing"
6012
  msgstr "Разрешить редактирование в таблице"
6013
 
6014
- #: templates/admin/table-settings/table_settings_block.inc.php:873
6015
  #: templates/edit_table.inc.php:192
6016
  msgid "MySQL table name for editing"
6017
  msgstr "Имя MySQL-таблицы для редактирования"
6018
 
6019
- #: templates/admin/table-settings/table_settings_block.inc.php:875
6020
  msgid ""
6021
  "Name of the MySQL table which will be updated when edited from front-end."
6022
  msgstr "Имя MySQL-таблицы, которая будет использоваться для редактирования"
6023
 
6024
- #: templates/admin/table-settings/table_settings_block.inc.php:880
6025
  msgid "MySQL table name"
6026
  msgstr "Имя базы данных MySQL"
6027
 
6028
- #: templates/admin/table-settings/table_settings_block.inc.php:889
6029
  #: templates/edit_table.inc.php:203
6030
  msgid "ID column for editing"
6031
  msgstr "ID-колонка для редактирования"
6032
 
6033
- #: templates/admin/table-settings/table_settings_block.inc.php:891
6034
  msgid ""
6035
  "Choose the column values from which will be used as row identifiers. MUST be "
6036
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
@@ -6043,12 +6150,12 @@ msgstr ""
6043
  "wpDataTables будет угадывать правильный столбец, если он называется «id» или "
6044
  "«ID» на стороне MySQL."
6045
 
6046
- #: templates/admin/table-settings/table_settings_block.inc.php:905
6047
  #: templates/edit_table.inc.php:267
6048
  msgid "Editor roles"
6049
  msgstr "Разрешить редактирование таблицы для следующих ролей"
6050
 
6051
- #: templates/admin/table-settings/table_settings_block.inc.php:907
6052
  msgid ""
6053
  "If you want only specific user roles to be able to edit the table, choose in "
6054
  "this dropdown. Leave unchecked to allow editing for everyone."
@@ -6057,41 +6164,41 @@ msgstr ""
6057
  "редактировать таблицу, выберите в этом раскрывающемся списке. Оставьте не "
6058
  "отмеченным, чтобы разрешить редактирование для всех."
6059
 
6060
- #: templates/admin/table-settings/table_settings_block.inc.php:912
6061
  msgid "Everyone"
6062
  msgstr "Любой"
6063
 
6064
- #: templates/admin/table-settings/table_settings_block.inc.php:913
6065
  msgid "Administrators"
6066
  msgstr ""
6067
 
6068
- #: templates/admin/table-settings/table_settings_block.inc.php:914
6069
  msgid "Editors"
6070
  msgstr ""
6071
 
6072
- #: templates/admin/table-settings/table_settings_block.inc.php:915
6073
  msgid "Authors"
6074
  msgstr ""
6075
 
6076
- #: templates/admin/table-settings/table_settings_block.inc.php:916
6077
  msgid "Contributors"
6078
  msgstr ""
6079
 
6080
- #: templates/admin/table-settings/table_settings_block.inc.php:917
6081
  msgid "Subscribers"
6082
  msgstr ""
6083
 
6084
- #: templates/admin/table-settings/table_settings_block.inc.php:932
6085
  msgid "Users see and edit only own data"
6086
  msgstr ""
6087
  "Разрешать пользователям видеть и редактировать только собственные данные"
6088
 
6089
- #: templates/admin/table-settings/table_settings_block.inc.php:940
6090
  msgid "Users see and edit only their own data"
6091
  msgstr ""
6092
  "Разрешать пользователям видеть и редактировать только собственные данные"
6093
 
6094
- #: templates/admin/table-settings/table_settings_block.inc.php:947
6095
  msgid ""
6096
  "If this is enabled, users will see and edit only the rows that are related "
6097
  "to them or were created by them (associated using the User ID column)."
@@ -6100,18 +6207,18 @@ msgstr ""
6100
  "строки, которые связаны с ними или были созданы ими (связаны с "
6101
  "использованием столбца ID пользователя)."
6102
 
6103
- #: templates/admin/table-settings/table_settings_block.inc.php:955
6104
  msgid "Limit editing to own data only"
6105
  msgstr ""
6106
  "Ограничить возможность редактирования для пользователей только их "
6107
  "собственными данными"
6108
 
6109
- #: templates/admin/table-settings/table_settings_block.inc.php:963
6110
  #: templates/edit_table.inc.php:250
6111
  msgid "User ID column"
6112
  msgstr "Колонка-идентификатор пользователя"
6113
 
6114
- #: templates/admin/table-settings/table_settings_block.inc.php:965
6115
  msgid ""
6116
  "Choose the column values from which will be used as User identifiers. "
6117
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
@@ -6121,44 +6228,46 @@ msgstr ""
6121
  "пользователя. Ссылка на идентификатор из таблицы пользователей WordPress "
6122
  "(wp_users) ДОЛЖНА быть определена как целое число на стороне MySQL."
6123
 
6124
- #: templates/admin/table-settings/table_settings_block.inc.php:998
6125
  #: templates/edit_table.inc.php:350
6126
  msgid "Table tools"
6127
  msgstr "Блок табличных инструментов"
6128
 
6129
- #: templates/admin/table-settings/table_settings_block.inc.php:1005
6130
  msgid ""
6131
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6132
  msgstr ""
6133
  "Если это включено, панель инструментов с полезными инструментами будет "
6134
  "отображаться над таблицей"
6135
 
6136
- #: templates/admin/table-settings/table_settings_block.inc.php:1013
6137
  msgid "Enable Table Tools"
6138
  msgstr "Включить блок инструментов таблицы"
6139
 
6140
- #: templates/admin/table-settings/table_settings_block.inc.php:1021
6141
  msgid "Buttons"
6142
  msgstr "Кнопки"
6143
 
6144
- #: templates/admin/table-settings/table_settings_block.inc.php:1023
6145
  msgid "Choose which buttons to show in the Table Tools block."
6146
  msgstr "Выберите, какие кнопки показывать в блоке Table Tools."
6147
 
6148
- #: templates/admin/table-settings/table_settings_block.inc.php:1029
6149
  msgid "Columns visibility"
6150
  msgstr "Видимость столбца"
6151
 
6152
- #: templates/admin/table-settings/table_settings_block.inc.php:1051
6153
  msgid ""
6154
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6155
  "that will be replaced with some actual values at the execution time; usually "
6156
- "this is used for MySQL queries."
 
 
6157
  msgstr ""
6158
 
6159
- #: templates/admin/table-settings/table_settings_block.inc.php:1063
6160
- #: templates/admin/table-settings/table_settings_block.inc.php:1078
6161
- #: templates/admin/table-settings/table_settings_block.inc.php:1093
6162
  msgid ""
6163
  "This placeholder will be replaced with any value that you will provide in a "
6164
  "shortcode. Provide a default value here that will be used for table "
@@ -6168,16 +6277,23 @@ msgstr ""
6168
  "шорткоде. Укажите здесь значение по умолчанию, которое будет использоваться "
6169
  "для генерации таблицы, а когда другое значение не определено в шорткоде."
6170
 
6171
- #: templates/admin/table-settings/table_settings_block.inc.php:1083
6172
- #: templates/admin/table-settings/table_settings_block.inc.php:1098
6173
- #: templates/admin/table-settings/table_settings_block.inc.php:1120
6174
- #: templates/admin/table-settings/table_settings_block.inc.php:1138
6175
- #: templates/admin/table-settings/table_settings_block.inc.php:1155
6176
- #: templates/admin/table-settings/table_settings_block.inc.php:1176
 
 
 
 
 
 
 
6177
  msgid "Default for table generation"
6178
  msgstr "Значение по умолчанию для инициализирования таблицы"
6179
 
6180
- #: templates/admin/table-settings/table_settings_block.inc.php:1114
6181
  msgid ""
6182
  "This placeholder will be replaced with the ID of currently logged in user. "
6183
  "Provide a value here to be used for table generation"
@@ -6186,7 +6302,7 @@ msgstr ""
6186
  "пользователя. Укажите здесь значение, которое будет использоваться для "
6187
  "генерации таблицы"
6188
 
6189
- #: templates/admin/table-settings/table_settings_block.inc.php:1130
6190
  msgid ""
6191
  "This placeholder will be replaced with the login of currently logged in "
6192
  "user. Provide a value here to be used for table generation"
@@ -6194,15 +6310,13 @@ msgstr ""
6194
  "Этот заполнитель будет заменен именем пользователя, вошедшего в систему. "
6195
  "Укажите здесь значение, которое будет использоваться для генерации таблицы"
6196
 
6197
- #: templates/admin/table-settings/table_settings_block.inc.php:1148
6198
  msgid ""
6199
- "This placeholder will be replaced with the current prefix of WordPress "
6200
- "database. Provide a value here to be used for table generation"
6201
  msgstr ""
6202
- "Этот заполнитель будет заменен текущим префиксом базы данных WordPress. "
6203
- "Укажите здесь значение, которое будет использоваться для генерации таблицы"
6204
 
6205
- #: templates/admin/table-settings/table_settings_block.inc.php:1171
6206
  msgid ""
6207
  "This placeholder will be replaced with the ID of current post. Provide a "
6208
  "value here to be used for table generation"
@@ -6210,6 +6324,72 @@ msgstr ""
6210
  "Этот заполнитель будет заменен идентификатором текущей записи. Укажите здесь "
6211
  "значение, которое будет использоваться для генерации таблицы"
6212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6213
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6214
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6215
  msgid "Go to Dashboard"
@@ -8177,31 +8357,6 @@ msgstr ""
8177
  #~ "только для таблиц, созданных из XML, JSON, Excel, CSV, Google Spreadsheet "
8178
  #~ "и PHP Serialized array."
8179
 
8180
- #~ msgid ""
8181
- #~ "This placeholder will be replaced with the First Name of currently logged "
8182
- #~ "in user. Provide a value here to be used for table generation"
8183
- #~ msgstr ""
8184
- #~ "Этот заполнитель будет заменен именем, зарегистрированным в данный "
8185
- #~ "момент. Укажите здесь значение, которое будет использоваться для "
8186
- #~ "генерации таблицы"
8187
-
8188
- #~ msgid ""
8189
- #~ "This placeholder will be replaced with the Last Name of currently logged "
8190
- #~ "in user. Provide a value here to be used for table generation"
8191
- #~ msgstr ""
8192
- #~ "Этот заполнитель будет заменен фамилией текущего пользователя, вошедшего "
8193
- #~ "в систему. Укажите здесь значение, которое будет использоваться для "
8194
- #~ "генерации таблицы"
8195
-
8196
- #~ msgid "This placeholder will be replaced with current date."
8197
- #~ msgstr "Этот заполнитель будет заменен текущей датой."
8198
-
8199
- #~ msgid "This placeholder will be replaced with current datetime."
8200
- #~ msgstr "Этот заполнитель будет заменен на текущую дату и время."
8201
-
8202
- #~ msgid "This placeholder will be replaced with current time."
8203
- #~ msgstr "Этот заполнитель будет заменен текущим временем."
8204
-
8205
  #~ msgid "Create a table linked to an existing data source"
8206
  #~ msgstr "Создать таблицу ссылающуюся на существующий источник данных"
8207
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-26 13:11+0100\n"
6
+ "PO-Revision-Date: 2021-02-26 13:11+0100\n"
7
  "Last-Translator: narozhfy <narozhnyy.alexandr@yandex.ru>\n"
8
  "Language-Team: Русский\n"
9
  "Language: ru_RU\n"
159
  msgid "Go Premium"
160
  msgstr ""
161
 
162
+ #: controllers/wdt_admin.php:517 controllers/wdt_admin.php:566
163
+ #: controllers/wdt_admin.php:609 controllers/wdt_admin.php:630
164
+ #: controllers/wdt_admin.php:677 controllers/wdt_admin.php:703
165
+ #: controllers/wdt_admin.php:722 controllers/wdt_admin.php:742
166
+ #: controllers/wdt_admin.php:761 controllers/wdt_admin.php:781
167
+ #: controllers/wdt_admin.php:801 controllers/wdt_admin.php:821
168
+ #: controllers/wdt_admin.php:840
169
  msgid "You do not have sufficient permissions to access this page."
170
  msgstr ""
171
 
274
  "ниже, и шорткод будет вставлен автоматически. Вы можете предоставить "
275
  "значения для заполнителей, а также для имени файла экспорта."
276
 
277
+ #: source/class.wdtbrowsechartstable.php:29 source/class.wdtbrowsetable.php:30
278
+ msgid "ID"
279
+ msgstr ""
280
+
281
+ #: source/class.wdtbrowsechartstable.php:30 source/class.wdtbrowsetable.php:31
282
+ #: templates/admin/chart_wizard/steps/step4.inc.php:17
283
+ msgid "Title"
284
+ msgstr "Название"
285
+
286
+ #: source/class.wdtbrowsechartstable.php:31
287
+ msgid "Render Engine"
288
+ msgstr ""
289
+
290
+ #: source/class.wdtbrowsechartstable.php:32
291
+ msgid "Chart Type"
292
+ msgstr ""
293
+
294
+ #: source/class.wdtbrowsechartstable.php:33 source/class.wdtbrowsetable.php:33
295
+ msgid "Shortcode"
296
+ msgstr ""
297
+
298
  #: source/class.wdtbrowsechartstable.php:141
299
  #: source/class.wdtbrowsetable.php:168
300
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
317
  msgstr "Настроить"
318
 
319
  #: source/class.wdtbrowsechartstable.php:162
320
+ #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
321
  #: templates/admin/browse/bulk_actions.inc.php:14
322
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
323
  msgid "Delete"
403
  msgid "No wpDataCharts in the system yet."
404
  msgstr "Диаграмм пока не создано"
405
 
406
+ #: source/class.wdtbrowsetable.php:32
407
+ #: templates/admin/table-settings/add_column_modal.inc.php:47
408
+ msgid "Type"
409
+ msgstr "Тип"
410
+
411
  #: source/class.wdtbrowsetable.php:231
412
  msgid "MySQL"
413
  msgstr "MySQL сервер"
416
  msgid "Manual"
417
  msgstr "Ручной ввод"
418
 
419
+ #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2188
420
+ #: source/class.wpdatatable.php:2258
421
+ #: templates/admin/table-settings/table_settings_block.inc.php:1050
422
  msgid "Excel"
423
  msgstr "Excel"
424
 
425
+ #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2197
426
+ #: source/class.wpdatatable.php:2268
427
+ #: templates/admin/table-settings/table_settings_block.inc.php:1051
428
  msgid "CSV"
429
  msgstr "CSV"
430
 
437
  msgstr "JSON"
438
 
439
  #: source/class.wdtbrowsetable.php:249
440
+ #: templates/admin/table-settings/table_settings_block.inc.php:120
441
  #: templates/edit_table.inc.php:91
442
  msgid "Serialized PHP array"
443
  msgstr "Сериализованный массив PHP"
527
  msgid "Attachment"
528
  msgstr "Вложение"
529
 
530
+ #: source/class.wdttools.php:78
531
  msgid ""
532
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
533
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
537
  "они не опубликованы корректно. <br/> Вы можете опубликовать их перейдя "
538
  "<b>File -> Publish to the web</b> "
539
 
540
+ #: source/class.wdttools.php:206
541
  msgid "Back to date"
542
  msgstr "Назад к дате"
543
 
544
+ #: source/class.wdttools.php:207
545
  msgid "Browse"
546
  msgstr "Поиск"
547
 
548
+ #: source/class.wdttools.php:208 source/class.wdttools.php:330
549
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
550
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
551
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
563
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
564
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
565
  #: templates/admin/table-settings/table_preview_block.inc.php:86
566
+ #: templates/admin/table-settings/table_settings_block.inc.php:41
567
  #: templates/common/delete_modal.inc.php:39
568
  msgid "Cancel"
569
  msgstr "Отмена"
570
 
571
+ #: source/class.wdttools.php:209
572
  msgid " field cannot be empty!"
573
  msgstr " поле не может быть пустым!"
574
 
575
+ #: source/class.wdttools.php:210
576
  msgid "Use selected file"
577
  msgstr "Использовать выбранный файл"
578
 
579
+ #: source/class.wdttools.php:211
580
  msgid "Choose file"
581
  msgstr "Выберите файл"
582
 
583
+ #: source/class.wdttools.php:212 templates/admin/common/error_modal.inc.php:23
584
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
585
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
586
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
588
  msgid "Close"
589
  msgstr "Закрыть"
590
 
591
+ #: source/class.wdttools.php:213
592
  msgid "Column has been added!"
593
  msgstr "Столбец был добавлен!"
594
 
595
+ #: source/class.wdttools.php:214
596
  msgid "Column header cannot be empty!"
597
  msgstr "Имя колонки не может быть пустым!"
598
 
599
+ #: source/class.wdttools.php:215
600
  msgid "Please confirm column deletion!"
601
  msgstr "Подтвердите удаление строки!"
602
 
603
+ #: source/class.wdttools.php:216
604
  msgid "Column has been removed!"
605
  msgstr "Столбец был удален!"
606
 
607
+ #: source/class.wdttools.php:217
608
  msgid "Please select columns that you want to use in table"
609
  msgstr "Пожалуйста выберите столбец который вы хотите использовать в таблице"
610
 
611
+ #: source/class.wdttools.php:218 source/class.wpdatatable.php:2206
612
+ #: source/class.wpdatatable.php:2278
613
+ #: templates/admin/table-settings/table_settings_block.inc.php:1052
614
  msgid "Copy"
615
  msgstr "Копировать"
616
 
617
+ #: source/class.wdttools.php:219
618
  msgid "There was an error trying to insert a new row!"
619
  msgstr "При попытке добавления строки произошла ошибка! "
620
 
621
+ #: source/class.wdttools.php:220
622
  msgid "Data has been saved!"
623
  msgstr "Данные были сохранены!"
624
 
625
+ #: source/class.wdttools.php:221
626
  msgid "detach"
627
  msgstr "открепить"
628
 
629
+ #: source/class.wdttools.php:223
630
  msgid "Delete selected"
631
  msgstr ""
632
 
633
+ #: source/class.wdttools.php:224 templates/settings.inc.php:553
634
  #: templates/settings.inc.php:627
635
  msgid "Error!"
636
  msgstr "Ошибка!"
637
 
638
+ #: source/class.wdttools.php:225
639
  msgid "Please upload or choose a file from Media Library!"
640
  msgstr ""
641
  "Пожалуйста, загрузите файл, или выберите уже загруженный файл в медиа "
642
  "библиотеке!"
643
 
644
+ #: source/class.wdttools.php:226
645
  msgid "From"
646
  msgstr "От"
647
 
648
+ #: source/class.wdttools.php:227
649
  msgid "Please provide a valid e-mail address for field"
650
  msgstr "Пожалуйста, введите корректный e-mail адрес для поля "
651
 
652
+ #: source/class.wdttools.php:228
653
  msgid "Please provide a valid URL link for field"
654
  msgstr "Пожалуйста, введите корректный URL-адрес для поля "
655
 
656
+ #: source/class.wdttools.php:229
657
  msgid "You have entered invalid value. Press ESC to cancel."
658
  msgstr "Вы ввели неверное значение. Нажмите ESC для отмены"
659
 
660
+ #: source/class.wdttools.php:230 source/class.wdttools.php:260
661
  msgid "Show _MENU_ entries"
662
  msgstr "Показывать _MENU_ строк"
663
 
664
+ #: source/class.wdttools.php:231
665
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
666
  msgid "Merge"
667
  msgstr "Совместить"
668
 
669
+ #: source/class.wdttools.php:232
670
  msgid "New column"
671
  msgstr "Новая колонка"
672
 
673
+ #: source/class.wdttools.php:233
674
  msgid "Number of columns can not be empty or 0"
675
  msgstr ""
676
 
677
+ #: source/class.wdttools.php:234
678
  msgid "Number of rows can not be empty or 0"
679
  msgstr ""
680
 
681
+ #: source/class.wdttools.php:236
682
  msgid ": activate to sort column ascending"
683
  msgstr ": нажмите для сортировки по этой колонке по возрастанию"
684
 
685
+ #: source/class.wdttools.php:237
686
  msgid ": activate to sort column descending"
687
  msgstr ": нажмите для сортировки по этой колонке по убыванию"
688
 
689
+ #: source/class.wdttools.php:239
690
  msgid "Ok"
691
  msgstr "OK"
692
 
693
+ #: source/class.wdttools.php:241
694
  msgid "First"
695
  msgstr "Первая"
696
 
697
+ #: source/class.wdttools.php:242
698
  msgid "Last"
699
  msgstr "Последняя"
700
 
701
+ #: source/class.wdttools.php:243
702
  msgid "Next"
703
  msgstr "Следующая"
704
 
705
+ #: source/class.wdttools.php:244
706
  msgid "Previous"
707
  msgstr "Предыдущая"
708
 
709
+ #: source/class.wdttools.php:246
710
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
711
  msgid "Replace"
712
  msgstr "Заменить"
713
 
714
+ #: source/class.wdttools.php:247
715
  msgid "Row has been deleted!"
716
  msgstr "Строка была удалена!"
717
 
718
+ #: source/class.wdttools.php:248
719
+ msgid "Save chart"
720
+ msgstr ""
721
+
722
+ #: source/class.wdttools.php:249
723
  msgid "Select a file to use in table"
724
  msgstr "Выберите файл для использования в таблице"
725
 
726
+ #: source/class.wdttools.php:250
727
  msgid "Select an Excel or CSV file"
728
  msgstr "Выберите Excel или CSV файл"
729
 
730
+ #: source/class.wdttools.php:251
731
  msgid "No data available in table"
732
  msgstr "Нет данных в таблице"
733
 
734
+ #: source/class.wdttools.php:252
735
  msgid "Plugin settings saved successfully"
736
  msgstr "Настройки плагина успешно сохранены"
737
 
738
+ #: source/class.wdttools.php:253
739
  msgid ""
740
  "Unable to save settings of plugin. Please try again or contact us over "
741
  "Support page."
742
  msgstr ""
743
 
744
+ #: source/class.wdttools.php:254
745
  msgid "Shortcode has been copied to the clipboard."
746
  msgstr "Шоткод скопирован в буфер"
747
 
748
+ #: source/class.wdttools.php:255
749
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
750
  msgstr "Отображаются строки _START_ - _END_ из _TOTAL_"
751
 
752
+ #: source/class.wdttools.php:256
753
  msgid "Showing 0 to 0 of 0 entries"
754
  msgstr "Отображаются строки 0-0 из 0"
755
 
756
+ #: source/class.wdttools.php:257
757
  msgid "(filtered from _MAX_ total entries)"
758
  msgstr "(отфильтровано из _MAX_ всего)"
759
 
760
+ #: source/class.wdttools.php:259
761
  msgid ","
762
  msgstr ","
763
 
764
+ #: source/class.wdttools.php:261
765
  msgid "Loading..."
766
  msgstr "Загрузка…"
767
 
768
+ #: source/class.wdttools.php:262
769
  msgid "Processing..."
770
  msgstr "Обработка…"
771
 
772
+ #: source/class.wdttools.php:263
773
  msgid "SQL error"
774
  msgstr "Ошибка на стороне MySQL"
775
 
776
+ #: source/class.wdttools.php:264
777
  msgid "Search: "
778
  msgstr "Поиск: "
779
 
780
+ #: source/class.wdttools.php:265 templates/settings.inc.php:559
781
  #: templates/settings.inc.php:625
782
  msgid "Success!"
783
  msgstr "Выполнено!"
784
 
785
+ #: source/class.wdttools.php:266
786
  msgid "No matching records found"
787
  msgstr "Не найдены строки по заданным критериям"
788
 
789
+ #: source/class.wdttools.php:267
790
  msgid ""
791
  "System info data has been copied to the clipboard. You can now paste it in "
792
  "file or in support topic."
793
  msgstr ""
794
 
795
+ #: source/class.wdttools.php:268
796
  msgid "Table saved successfully!"
797
  msgstr "Таблица успешно сохранена!"
798
 
799
+ #: source/class.wdttools.php:269
800
  msgid "To"
801
  msgstr "До"
802
 
803
+ #: source/class.wdttools.php:305
804
  #: templates/admin/common/premium_modal.inc.php:17
805
+ #: templates/admin/table-settings/table_settings_block.inc.php:1072
806
+ #: templates/admin/table-settings/table_settings_block.inc.php:1348
807
  msgid "This is a premium feature"
808
  msgstr ""
809
 
810
+ #: source/class.wdttools.php:306
811
  #: templates/admin/common/premium_modal.inc.php:26
812
+ #: templates/admin/table-settings/table_settings_block.inc.php:1073
813
+ #: templates/admin/table-settings/table_settings_block.inc.php:1349
814
  msgid "This feature is available only in premium version of wpDataTables"
815
  msgstr ""
816
 
817
+ #: source/class.wdttools.php:307
818
  #: templates/admin/getting-started/getting_started.inc.php:133
819
  #: templates/admin/getting-started/getting_started.inc.php:145
820
  #: templates/admin/getting-started/getting_started.inc.php:157
821
  #: templates/admin/getting-started/getting_started.inc.php:169
822
+ #: templates/admin/table-settings/table_settings_block.inc.php:1077
823
+ #: templates/admin/table-settings/table_settings_block.inc.php:1353
824
  msgid "Compare and View Pricing"
825
  msgstr ""
826
 
827
+ #: source/class.wdttools.php:326
828
  msgid "Field cannot be empty!"
829
  msgstr ""
830
 
831
+ #: source/class.wdttools.php:327
832
  msgid "Please choose chart type."
833
  msgstr ""
834
 
835
+ #: source/class.wdttools.php:328
836
  msgid "Please select wpDataTable from dropdown."
837
  msgstr ""
838
 
839
+ #: source/class.wdttools.php:329
840
  msgid "Columns field cannot be empty"
841
  msgstr ""
842
 
843
+ #: source/class.wdttools.php:331
844
  msgid ""
845
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
846
  "clicking on Cancel button."
847
  msgstr ""
848
 
849
+ #: source/class.wdttools.php:332
850
  msgid "Finish Tutorial"
851
  msgstr ""
852
 
853
+ #: source/class.wdttools.php:333
854
  msgid "Continue"
855
  msgstr ""
856
 
857
+ #: source/class.wdttools.php:334
858
  msgid "Start"
859
  msgstr ""
860
 
861
+ #: source/class.wdttools.php:335
862
  msgid "Skip Tutorial"
863
  msgstr ""
864
 
865
+ #: source/class.wdttools.php:338 source/class.wdttools.php:404
866
+ #: source/class.wdttools.php:446
867
  msgid "Welcome to the tutorial!"
868
  msgstr ""
869
 
870
+ #: source/class.wdttools.php:339 source/class.wdttools.php:405
871
+ #: source/class.wdttools.php:447
872
  msgid "Hello "
873
  msgstr ""
874
 
875
+ #: source/class.wdttools.php:339
876
  msgid ""
877
  ", in this tutorial, we will show you how to create a simple table from "
878
  "scratch by choosing a custom number of columns and rows. How to customize "
879
  "each cell, merge cells and a lot more."
880
  msgstr ""
881
 
882
+ #: source/class.wdttools.php:342
883
  msgid " Let's create a new wpDataTable from scratch!"
884
  msgstr ""
885
 
886
+ #: source/class.wdttools.php:343 source/class.wdttools.php:409
887
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
888
  msgstr ""
889
 
890
+ #: source/class.wdttools.php:346
891
  msgid "Choose this option"
892
  msgstr ""
893
 
894
+ #: source/class.wdttools.php:347
895
  msgid "Please select 'Create a simple table from scratch'."
896
  msgstr ""
897
 
898
+ #: source/class.wdttools.php:350 source/class.wdttools.php:416
899
  msgid "Click Next"
900
  msgstr ""
901
 
902
+ #: source/class.wdttools.php:351 source/class.wdttools.php:417
903
  msgid "Please click the 'Next' button to continue."
904
  msgstr ""
905
 
906
+ #: source/class.wdttools.php:354
907
  msgid "Welcome to the Simple table wizard!"
908
  msgstr ""
909
 
910
+ #: source/class.wdttools.php:355
911
  msgid "Please click 'Continue' button to move on."
912
  msgstr ""
913
 
914
+ #: source/class.wdttools.php:358
915
  msgid "Choose a name for your table"
916
  msgstr ""
917
 
918
+ #: source/class.wdttools.php:359
919
  msgid "After inserting table name, click 'Continue' to move on."
920
  msgstr ""
921
 
922
+ #: source/class.wdttools.php:362
923
  msgid "Choose the number of columns for your table"
924
  msgstr ""
925
 
926
+ #: source/class.wdttools.php:363
927
  msgid ""
928
  "Please choose how many columns it will have. Remember that you can always "
929
  "add or reduce the number of columns later. Click 'Continue' when you finish."
930
  msgstr ""
931
 
932
+ #: source/class.wdttools.php:366
933
  msgid "Choose the number of rows for your table."
934
  msgstr ""
935
 
936
+ #: source/class.wdttools.php:367
937
  msgid ""
938
  "Please choose how many rows it will have. Remember that you can always add "
939
  "or reduce the number of rows later. Click 'Continue' when you finish."
940
  msgstr ""
941
 
942
+ #: source/class.wdttools.php:370
943
  msgid "Click on the 'Generate Table' button"
944
  msgstr ""
945
 
946
+ #: source/class.wdttools.php:371
947
  msgid "When you click on the button, the empty table will be ready for you. "
948
  msgstr ""
949
 
950
+ #: source/class.wdttools.php:374
951
  msgid "We are generating the table..."
952
  msgstr ""
953
 
954
+ #: source/class.wdttools.php:375
955
  msgid "Please, when you see the table, click 'Continue' to move on."
956
  msgstr ""
957
 
958
+ #: source/class.wdttools.php:378
959
  msgid ""
960
  "Nice job! You just configured your table and it is ready to fill it with "
961
  "data."
962
  msgstr ""
963
 
964
+ #: source/class.wdttools.php:379
965
  msgid ""
966
  "Now we will guide you on how to insert data and check table layout throw "
967
  "Simple table editor, table toolbar and table preview. Please click "
968
  "'Continue' to move on."
969
  msgstr ""
970
 
971
+ #: source/class.wdttools.php:382
972
  msgid "This is Simple table editor"
973
  msgstr ""
974
 
975
+ #: source/class.wdttools.php:383
976
  msgid ""
977
  "Here you can populate your table with data. <br><br>You can move around the "
978
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
981
  "line of the row header. Click 'Continue' to move on."
982
  msgstr ""
983
 
984
+ #: source/class.wdttools.php:386
985
  msgid "Check out the Simple table toolbar"
986
  msgstr ""
987
 
988
+ #: source/class.wdttools.php:387
989
  msgid ""
990
  "Here you can style and insert custom data for each cell or range of cells. "
991
  "You can add or delete columns and rows, merge cells, customize sections by "
993
  "ratings or custom HTML code."
994
  msgstr ""
995
 
996
+ #: source/class.wdttools.php:390
997
  msgid "Responsive table views"
998
  msgstr ""
999
 
1000
+ #: source/class.wdttools.php:391
1001
  msgid ""
1002
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
1003
  "tab that you need, so you can make sure your table looks excellent across "
1004
  "all devices. "
1005
  msgstr ""
1006
 
1007
+ #: source/class.wdttools.php:394
1008
  msgid "Real-time preview"
1009
  msgstr ""
1010
 
1011
+ #: source/class.wdttools.php:395
1012
  msgid ""
1013
  "Here you will see how your table will look like on the page. Please click "
1014
  "'Continue' to move on."
1015
  msgstr ""
1016
 
1017
+ #: source/class.wdttools.php:398
1018
  msgid "Congrats! Your table is ready."
1019
  msgstr ""
1020
 
1021
+ #: source/class.wdttools.php:399
1022
  msgid ""
1023
  "Now you can copy the shortcode for this table, and check out how it looks on "
1024
  "your website when you paste it to a post or page. You can always come back "
1025
  "and edit the table as you like."
1026
  msgstr ""
1027
 
1028
+ #: source/class.wdttools.php:405
1029
  msgid ""
1030
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
1031
  "existing data source. \"Linked\" in this context means that if you create a "
1034
  "reflected in the table."
1035
  msgstr ""
1036
 
1037
+ #: source/class.wdttools.php:408
1038
  msgid "Let's create a new wpDataTable!"
1039
  msgstr ""
1040
 
1041
+ #: source/class.wdttools.php:412
1042
  msgid "Choose this option."
1043
  msgstr ""
1044
 
1045
+ #: source/class.wdttools.php:413
1046
  msgid "Please select 'Create a table linked to an existing data source'."
1047
  msgstr ""
1048
 
1049
+ #: source/class.wdttools.php:420
1050
+ #: templates/admin/table-settings/table_settings_block.inc.php:101
1051
  msgid "Input data source type"
1052
  msgstr "Выбор источника данных"
1053
 
1054
+ #: source/class.wdttools.php:421
1055
  msgid "Please select a data source type that you need."
1056
  msgstr ""
1057
 
1058
+ #: source/class.wdttools.php:424
1059
  msgid "Select Data source type"
1060
  msgstr ""
1061
 
1062
+ #: source/class.wdttools.php:425
1063
  msgid ""
1064
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1065
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1066
  "are available in Premium version)"
1067
  msgstr ""
1068
 
1069
+ #: source/class.wdttools.php:428
1070
+ #: templates/admin/table-settings/table_settings_block.inc.php:131
1071
  msgid "Input file path or URL"
1072
  msgstr "Исходный файл, или URL"
1073
 
1074
+ #: source/class.wdttools.php:429
1075
  msgid ""
1076
  "Upload your file or provide the full URL here. When you finish click "
1077
  "'Continue' button."
1078
  msgstr ""
1079
 
1080
+ #: source/class.wdttools.php:432
1081
  msgid "Click Save Changes"
1082
  msgstr ""
1083
 
1084
+ #: source/class.wdttools.php:433
1085
  msgid ""
1086
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1087
  "get an error message after button click and you are not able to solve it, "
1090
  "click Skip tutorial."
1091
  msgstr ""
1092
 
1093
+ #: source/class.wdttools.php:436
1094
  msgid "The table is creating..."
1095
  msgstr ""
1096
 
1097
+ #: source/class.wdttools.php:437
1098
  msgid ""
1099
  "Now the table is creating. Wait until you see it in the background and then "
1100
  "click 'Continue'."
1101
  msgstr ""
1102
 
1103
+ #: source/class.wdttools.php:440
1104
  msgid "Nice job! You just created your first wpDataTable!"
1105
  msgstr ""
1106
 
1107
+ #: source/class.wdttools.php:441
1108
  msgid ""
1109
  "Now you can copy the shortcode for this table, and check out how it looks on "
1110
  "your website when you paste it to a post or page."
1111
  msgstr ""
1112
 
1113
+ #: source/class.wdttools.php:447
1114
  msgid ""
1115
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1116
  "plugin."
1117
  msgstr ""
1118
 
1119
+ #: source/class.wdttools.php:450
1120
  msgid "Let's create a new wpDataTables Chart!"
1121
  msgstr ""
1122
 
1123
+ #: source/class.wdttools.php:451
1124
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1125
  msgstr ""
1126
 
1127
+ #: source/class.wdttools.php:454
1128
  msgid "Welcome to the Chart Wizard!"
1129
  msgstr ""
1130
 
1131
+ #: source/class.wdttools.php:455
1132
  msgid ""
1133
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1134
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1135
  msgstr ""
1136
 
1137
+ #: source/class.wdttools.php:458
1138
  msgid "Follow the steps in the Chart Wizard"
1139
  msgstr ""
1140
 
1141
+ #: source/class.wdttools.php:459
1142
  msgid ""
1143
  "By following these steps, you will finish building your chart in the Chart "
1144
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1145
  "'Continue' button to move forward."
1146
  msgstr ""
1147
 
1148
+ #: source/class.wdttools.php:462
1149
  msgid "Choose a name for your Chart"
1150
  msgstr ""
1151
 
1152
+ #: source/class.wdttools.php:463
1153
  msgid "Click 'Continue' button when you’re ready to move forward."
1154
  msgstr ""
1155
 
1156
+ #: source/class.wdttools.php:466
1157
  msgid "In wpDataTables you can find several charts render engines."
1158
  msgstr ""
1159
 
1160
+ #: source/class.wdttools.php:467
1161
  msgid ""
1162
  "Click on the dropdown, and you will see several options that you can choose "
1163
  "from.(Google charts are only available) <br><br>To continue, click on the "
1164
  "dropdown."
1165
  msgstr ""
1166
 
1167
+ #: source/class.wdttools.php:470
1168
  msgid "Choose Google chart engine."
1169
  msgstr ""
1170
 
1171
+ #: source/class.wdttools.php:471
1172
  msgid ""
1173
  "By clicking on Google chart options, you will choose the engine that will "
1174
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1175
  "to move forward."
1176
  msgstr ""
1177
 
1178
+ #: source/class.wdttools.php:474
1179
  msgid "Different charts types. "
1180
  msgstr ""
1181
 
1182
+ #: source/class.wdttools.php:475
1183
  msgid ""
1184
  "Here you can choose a chart type. Please, click on the chart type that you "
1185
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1186
  "forward."
1187
  msgstr ""
1188
 
1189
+ #: source/class.wdttools.php:478
1190
  msgid "The first step is finished!"
1191
  msgstr ""
1192
 
1193
+ #: source/class.wdttools.php:479
1194
  msgid "Let's move on. Please, click 'Next' to continue."
1195
  msgstr ""
1196
 
1197
+ #: source/class.wdttools.php:482
1198
  msgid ""
1199
  "Now you need to choose a wpDataTable based on which we will build a chart "
1200
  "for you"
1201
  msgstr ""
1202
 
1203
+ #: source/class.wdttools.php:483
1204
  msgid ""
1205
  "Click on the dropdown, and all your tables will be listed. The columns of "
1206
  "the table that you choose will be used for creating the chart.<br><br>If you "
1208
  "button and create wpDataTable that would contain the data to visualize first."
1209
  msgstr ""
1210
 
1211
+ #: source/class.wdttools.php:486
1212
  msgid "Pick your wpDataTable"
1213
  msgstr ""
1214
 
1215
+ #: source/class.wdttools.php:487
1216
  msgid ""
1217
  "Pick a wpDataTable from which you want to render a chart and when you "
1218
  "finish, please click 'Continue' to move on."
1219
  msgstr ""
1220
 
1221
+ #: source/class.wdttools.php:490
1222
  msgid "The second step is finished!"
1223
  msgstr ""
1224
 
1225
+ #: source/class.wdttools.php:491
1226
  msgid ""
1227
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1228
  msgstr ""
1229
 
1230
+ #: source/class.wdttools.php:494
1231
  msgid "Just a heads up!"
1232
  msgstr ""
1233
 
1234
+ #: source/class.wdttools.php:495
1235
  msgid ""
1236
  "Here you will choose from which columns you will create a chart.<br><br> "
1237
  "Please click 'Continue' button to move forward."
1238
  msgstr ""
1239
 
1240
+ #: source/class.wdttools.php:498
1241
  msgid "Meet the wpDataTable Column Blocks"
1242
  msgstr ""
1243
 
1244
+ #: source/class.wdttools.php:499
1245
  msgid ""
1246
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1247
  "or click on the arrow to move the desired column to the 'Columns used in the "
1248
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1249
  msgstr ""
1250
 
1251
+ #: source/class.wdttools.php:502
1252
  msgid "Well done!"
1253
  msgstr ""
1254
 
1255
+ #: source/class.wdttools.php:503
1256
  msgid "Just two more steps to go. Please click 'Next' to continue."
1257
  msgstr ""
1258
 
1259
+ #: source/class.wdttools.php:506
1260
  msgid "Chart settings and chart preview."
1261
  msgstr ""
1262
 
1263
+ #: source/class.wdttools.php:507
1264
  msgid ""
1265
  "Here you can adjust chart settings, different parameters are grouped in "
1266
  "section; adjusting the parameters will be reflected in the preview of your "
1268
  "button to move forward."
1269
  msgstr ""
1270
 
1271
+ #: source/class.wdttools.php:510
1272
  msgid "In this sidebar, you can find the chart settings section."
1273
  msgstr ""
1274
 
1275
+ #: source/class.wdttools.php:511
1276
  msgid ""
1277
  "By clicking on each section, you can set your desired parameters per section."
1278
  "<br><br> Please click 'Continue' button to move on."
1279
  msgstr ""
1280
 
1281
+ #: source/class.wdttools.php:514
1282
  msgid "Here are the available chart options"
1283
  msgstr ""
1284
 
1285
+ #: source/class.wdttools.php:515
1286
  msgid ""
1287
  "Set different chart options for the chosen section to get your desired chart "
1288
  "look.<br><br> Please click 'Continue' button to move on."
1289
  msgstr ""
1290
 
1291
+ #: source/class.wdttools.php:518
1292
  msgid "How your chart will look like on the page of your website"
1293
  msgstr ""
1294
 
1295
+ #: source/class.wdttools.php:519
1296
  msgid ""
1297
  "Here you can see a preview of your chart based on the settings you have "
1298
  "chosen.<br><br> Please click 'Continue' button to move on."
1299
  msgstr ""
1300
 
1301
+ #: source/class.wdttools.php:522
1302
  msgid "You can save your chart now"
1303
  msgstr ""
1304
 
1305
+ #: source/class.wdttools.php:523
1306
  msgid ""
1307
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1308
  "button and all your settings for this chart will be saved in the database."
1309
  msgstr ""
1310
 
1311
+ #: source/class.wdttools.php:526
1312
  msgid "Congrats! Your first chart is ready!"
1313
  msgstr ""
1314
 
1315
+ #: source/class.wdttools.php:527
1316
  msgid ""
1317
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1318
  "page. <br><br>You may now finish this tutorial. "
1326
  msgid "You are mixing data types (several date axes and several number)"
1327
  msgstr "Вы смешиваете типы данных (несколько осей даты и несколько чисел)"
1328
 
1329
+ #: source/class.wpdatatable.php:1876
1330
  msgid ""
1331
  "You are trying to load a table of an unknown type. Probably you did not "
1332
  "activate the addon which is required to use this table type."
1334
  "Вы пытаетесь загрузить таблицу неизвестного типа. Возможно, вы не "
1335
  "активировали аддон, который требуется для использования этого типа таблицы."
1336
 
1337
+ #: source/class.wpdatatable.php:2106 source/class.wpdatatable.php:2109
1338
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1339
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1340
+ #: templates/admin/table-settings/table_settings_block.inc.php:327
1341
  #: templates/edit_table.inc.php:409
1342
  msgid "All"
1343
  msgstr "Все"
1344
 
1345
+ #: source/class.wpdatatable.php:2167 source/class.wpdatatable.php:2236
1346
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1347
  msgid "Columns"
1348
  msgstr "Колонки"
1349
 
1350
+ #: source/class.wpdatatable.php:2177 source/class.wpdatatable.php:2246
1351
+ #: templates/admin/table-settings/table_settings_block.inc.php:1049
1352
  msgid "Print"
1353
  msgstr "Печать"
1354
 
1355
+ #: source/class.wpdatatable.php:2216 source/class.wpdatatable.php:2289
1356
+ #: templates/admin/table-settings/table_settings_block.inc.php:1053
1357
  msgid "PDF"
1358
  msgstr "PDF"
1359
 
1360
+ #: source/class.wpdatatable.php:2224
1361
  msgid "Export"
1362
  msgstr "Экспорт"
1363
 
1364
+ #: source/class.wpdatatable.php:2302
1365
  msgid "Search table"
1366
  msgstr "Найти таблицу"
1367
 
1368
+ #: source/class.wpdatatable.php:2303
1369
  msgid "Showing _MENU_ Entries"
1370
  msgstr "Показ_Меню_Вхождений"
1371
 
1384
  msgid "if you have some questions or problems with the plugin."
1385
  msgstr ""
1386
 
1387
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1388
  msgid "wpDataTables Addons"
1389
  msgstr ""
1390
 
1403
  "разработчиками, так что не забывайте периодически проверять эту страницу!"
1404
 
1405
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1406
+ #: templates/admin/dashboard/dashboard.inc.php:570
1407
  msgid "Report Builder"
1408
  msgstr "Report Builder"
1409
 
1410
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1411
+ #: templates/admin/dashboard/dashboard.inc.php:574
1412
  msgid ""
1413
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1414
  "XLSX documents filled in with actual data from your database."
1436
  msgstr ""
1437
 
1438
  #: templates/admin/addons/addons.inc.php:40
1439
+ #: templates/admin/dashboard/dashboard.inc.php:517
1440
  msgid "Master Detail Tables for wpDataTables"
1441
  msgstr "Основные таблицы сведений для wpDataTables"
1442
 
1462
  msgstr ""
1463
 
1464
  #: templates/admin/addons/addons.inc.php:67
1465
+ #: templates/admin/dashboard/dashboard.inc.php:544
1466
  msgid "Powerful Filters for wpDataTables"
1467
  msgstr "Мощные фильтры для wpDataTables"
1468
 
1478
  "поиска."
1479
 
1480
  #: templates/admin/addons/addons.inc.php:120
1481
+ #: templates/admin/dashboard/dashboard.inc.php:597
1482
  msgid "Formidable Forms integration for wpDataTables"
1483
  msgstr "Интеграция Formidable Forms с wpDataTables"
1484
 
1485
  #: templates/admin/addons/addons.inc.php:123
1486
+ #: templates/admin/dashboard/dashboard.inc.php:601
1487
  msgid ""
1488
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1489
  "create wpDataTables from Formidable Forms entries data."
1493
  "Forms."
1494
 
1495
  #: templates/admin/addons/addons.inc.php:143
1496
+ #: templates/admin/dashboard/dashboard.inc.php:623
1497
  msgid "Gravity Forms integration for wpDataTables"
1498
  msgstr "Интеграция Gravity Forms for wpDataTables"
1499
 
1500
  #: templates/admin/addons/addons.inc.php:146
1501
+ #: templates/admin/dashboard/dashboard.inc.php:627
1502
  msgid ""
1503
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1504
  "wpDataTables from Gravity Forms entries data."
1580
  msgstr "Название и тип диаграммы"
1581
 
1582
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1583
+ #: templates/admin/table-settings/table_settings_block.inc.php:60
1584
  #: templates/chart_wizard.inc.php:36
1585
  msgid "Data source"
1586
  msgstr "Источник данных"
1623
 
1624
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1625
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
1626
+ #: templates/admin/table-settings/table_settings_block.inc.php:1902
1627
  #: templates/edit_table.inc.php:730
1628
  msgid "Color"
1629
  msgstr "Цвет"
1844
  #: templates/admin/getting-started/getting_started.inc.php:144
1845
  #: templates/admin/getting-started/getting_started.inc.php:156
1846
  #: templates/admin/getting-started/getting_started.inc.php:168
1847
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
1848
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
1849
  msgid "Available in Premium"
1850
  msgstr ""
1851
 
1986
  msgid "Axes"
1987
  msgstr " Оси"
1988
 
 
 
 
 
1989
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1990
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1991
  msgid "Tooltip"
2082
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2083
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2084
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
2085
+ #: templates/admin/table-settings/table_settings_block.inc.php:1549
2086
+ #: templates/admin/table-settings/table_settings_block.inc.php:1879
2087
  msgid "Background color"
2088
  msgstr "Цвет общего фона"
2089
 
2104
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2105
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2106
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
2107
+ #: templates/admin/table-settings/table_settings_block.inc.php:1571
2108
  msgid "Border color"
2109
  msgstr "Цвет границы"
2110
 
2147
 
2148
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2149
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
2150
+ #: templates/admin/table-settings/table_settings_block.inc.php:1483
2151
  msgid "Font size"
2152
  msgstr "Размер шрифта"
2153
 
2522
  #: templates/admin/dashboard/dashboard.inc.php:30
2523
  #: templates/admin/getting-started/getting_started.inc.php:34
2524
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2525
+ #: templates/admin/settings/settings.inc.php:100
2526
  #: templates/admin/support/support.inc.php:31
2527
  #: templates/admin/support/support.inc.php:47
2528
  #: templates/admin/system-info/system_info.inc.php:29
2529
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2530
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2531
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2532
+ #: templates/admin/table-settings/table_settings_block.inc.php:2063
2533
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2534
  msgid "View Documentation"
2535
  msgstr ""
2760
  msgstr ""
2761
 
2762
  #: templates/admin/dashboard/dashboard.inc.php:340
2763
+ msgid "A minor update with a couple of improvements and bug fixes:"
 
 
2764
  msgstr ""
2765
 
2766
  #: templates/admin/dashboard/dashboard.inc.php:345
2767
  msgid ""
2768
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2769
+ "media in Simple tables."
2770
  msgstr ""
2771
 
2772
  #: templates/admin/dashboard/dashboard.inc.php:346
2773
  msgid ""
2774
+ "<strong>Improvement:</strong> Added translate functions on some strings."
 
2775
  msgstr ""
2776
 
2777
  #: templates/admin/dashboard/dashboard.inc.php:347
2778
  msgid ""
2779
+ "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2780
+ "area and filters for elementor widgets."
2781
  msgstr ""
2782
 
2783
  #: templates/admin/dashboard/dashboard.inc.php:348
2784
  msgid ""
2785
+ "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2786
+ "background in graphite skin."
2787
  msgstr ""
2788
 
2789
  #: templates/admin/dashboard/dashboard.inc.php:349
2790
  msgid ""
2791
+ "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2792
+ "settings."
2793
  msgstr ""
2794
 
2795
  #: templates/admin/dashboard/dashboard.inc.php:350
2796
+ msgid "Compatibility with WordPress 5.6.2 approved."
2797
+ msgstr ""
2798
+
2799
+ #: templates/admin/dashboard/dashboard.inc.php:351
2800
  msgid "Other small bug fixes and stability improvements."
2801
  msgstr ""
2802
 
2803
+ #: templates/admin/dashboard/dashboard.inc.php:363
2804
  msgid "Go Premium!"
2805
  msgstr ""
2806
 
2807
+ #: templates/admin/dashboard/dashboard.inc.php:369
2808
  msgid "View Comparison"
2809
  msgstr ""
2810
 
2811
+ #: templates/admin/dashboard/dashboard.inc.php:377
2812
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2813
  msgid ""
2814
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2815
  "of the powerful features."
2816
  msgstr ""
2817
 
2818
+ #: templates/admin/dashboard/dashboard.inc.php:381
2819
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2820
  msgid "Create a table manually"
2821
  msgstr "Создать таблицу wpDataTable в ручном режиме"
2822
 
2823
+ #: templates/admin/dashboard/dashboard.inc.php:384
2824
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2825
  msgid "Creating tables from Google Spreadsheet"
2826
  msgstr ""
2827
 
2828
+ #: templates/admin/dashboard/dashboard.inc.php:387
2829
  msgid ""
2830
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2831
  "tables via Google Sheet API"
2832
  msgstr ""
2833
 
2834
+ #: templates/admin/dashboard/dashboard.inc.php:390
2835
  msgid ""
2836
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2837
  "tables from Private Google Spreadsheet"
2838
  msgstr ""
2839
 
2840
+ #: templates/admin/dashboard/dashboard.inc.php:393
2841
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2842
  msgid "Creating MySQL-based tables from database"
2843
  msgstr ""
2844
 
2845
+ #: templates/admin/dashboard/dashboard.inc.php:396
2846
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2847
  msgid "Creating MySQL-based tables from Wordpress post types"
2848
  msgstr ""
2849
 
2850
+ #: templates/admin/dashboard/dashboard.inc.php:399
2851
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
2852
  #: templates/edit_table.inc.php:329
2853
  msgid "Advanced filtering"
2854
  msgstr ""
2855
 
2856
+ #: templates/admin/dashboard/dashboard.inc.php:402
2857
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2858
+ #: templates/admin/table-settings/table_settings_block.inc.php:153
2859
  #: templates/edit_table.inc.php:282
2860
  msgid "Server-side processing"
2861
  msgstr "Обработка данных на стороне сервера"
2862
 
2863
+ #: templates/admin/dashboard/dashboard.inc.php:405
2864
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2865
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2866
  msgstr ""
2867
 
2868
+ #: templates/admin/dashboard/dashboard.inc.php:408
2869
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2870
  msgid "Front-end table editing"
2871
  msgstr ""
2872
 
2873
+ #: templates/admin/dashboard/dashboard.inc.php:411
2874
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2875
  msgid "Excel-like editing"
2876
  msgstr ""
2877
 
2878
+ #: templates/admin/dashboard/dashboard.inc.php:414
2879
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2880
  msgid "Creating charts with Highcharts"
2881
  msgstr ""
2882
 
2883
+ #: templates/admin/dashboard/dashboard.inc.php:417
2884
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2885
  msgid "Creating charts with Chart.js"
2886
  msgstr ""
2887
 
2888
+ #: templates/admin/dashboard/dashboard.inc.php:420
2889
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2890
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2891
  #: templates/edit_table.inc.php:301
2892
  msgid "Responsive"
2893
  msgstr ""
2894
 
2895
+ #: templates/admin/dashboard/dashboard.inc.php:423
2896
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2897
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2898
  #: templates/edit_table.inc.php:750
2899
  msgid "Conditional formatting"
2900
  msgstr "Условное форматирование"
2901
 
2902
+ #: templates/admin/dashboard/dashboard.inc.php:426
2903
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2904
  msgid "Calculating Tools"
2905
  msgstr ""
2906
 
2907
+ #: templates/admin/dashboard/dashboard.inc.php:429
2908
  msgid "Formula columns"
2909
  msgstr ""
2910
 
2911
+ #: templates/admin/dashboard/dashboard.inc.php:432
2912
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2913
+ #: templates/admin/table-settings/table_settings_block.inc.php:80
2914
  msgid "Placeholders"
2915
  msgstr "Переменная"
2916
 
2917
+ #: templates/admin/dashboard/dashboard.inc.php:435
2918
  msgid "Premium support"
2919
  msgstr ""
2920
 
2921
+ #: templates/admin/dashboard/dashboard.inc.php:439
2922
  msgid "Get Premium Today"
2923
  msgstr ""
2924
 
2925
+ #: templates/admin/dashboard/dashboard.inc.php:446
2926
  msgid "News Blog"
2927
  msgstr ""
2928
 
2929
+ #: templates/admin/dashboard/dashboard.inc.php:451
2930
  msgid "Checkout useful articles from wpdatatables.com"
2931
  msgstr ""
2932
 
2933
+ #: templates/admin/dashboard/dashboard.inc.php:474
2934
  msgid "Please install and enable PHP extensions xml and dom on your server."
2935
  msgstr ""
2936
 
2937
+ #: templates/admin/dashboard/dashboard.inc.php:482
2938
  msgid ""
2939
  "Never miss notifications about new cool features, promotions,\n"
2940
  " giveaways or freebies – subscribe to our "
2942
  " about 1 message per month and never spam!"
2943
  msgstr ""
2944
 
2945
+ #: templates/admin/dashboard/dashboard.inc.php:500
2946
  msgid "Premium "
2947
  msgstr ""
2948
 
2949
+ #: templates/admin/dashboard/dashboard.inc.php:503
2950
  msgid ""
2951
  "While wpDataTables itself provides quite a large amount of features and "
2952
  "unlimited customisation, flexibility, you can achieve even more with our "
2953
  "premium addons.(requires wpDataTables Premium version)"
2954
  msgstr ""
2955
 
2956
+ #: templates/admin/dashboard/dashboard.inc.php:521
2957
  msgid ""
2958
  "A wpDataTables addon which allows showing additional details for a specific "
2959
  "row in a popup or a separate page or post."
2960
  msgstr ""
2961
 
2962
+ #: templates/admin/dashboard/dashboard.inc.php:527
2963
+ #: templates/admin/dashboard/dashboard.inc.php:554
2964
+ #: templates/admin/dashboard/dashboard.inc.php:580
2965
+ #: templates/admin/dashboard/dashboard.inc.php:607
2966
+ #: templates/admin/dashboard/dashboard.inc.php:633
2967
+ #: templates/admin/dashboard/dashboard.inc.php:666
2968
  msgid "Learn More"
2969
  msgstr ""
2970
 
2971
+ #: templates/admin/dashboard/dashboard.inc.php:548
2972
  msgid ""
2973
  "An add-on for wpDataTables that provides powerful filtering features: "
2974
  "cascade filtering, applying filters on button click, hide table before "
2975
  "filtering."
2976
  msgstr ""
2977
 
2978
+ #: templates/admin/dashboard/dashboard.inc.php:644
2979
  msgid "Need free booking plugin?"
2980
  msgstr ""
2981
 
2982
+ #: templates/admin/dashboard/dashboard.inc.php:653
2983
  msgid "Appointments and Events WordPress Booking Plugin"
2984
  msgstr ""
2985
 
2986
+ #: templates/admin/dashboard/dashboard.inc.php:656
2987
  msgid ""
2988
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2989
  "set up a fully-featured automated booking system on your WordPress website "
2994
  "each month."
2995
  msgstr ""
2996
 
2997
+ #: templates/admin/dashboard/dashboard.inc.php:659
2998
  msgid "Rating: 4.3 - ‎97 reviews"
2999
  msgstr ""
3000
 
3001
+ #: templates/admin/dashboard/dashboard.inc.php:662
3002
  msgid "Free Download"
3003
  msgstr ""
3004
 
3005
+ #: templates/admin/dashboard/dashboard.inc.php:677
3006
  #: templates/admin/getting-started/getting_started.inc.php:184
3007
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
3008
  #: templates/admin/support/support.inc.php:78
3009
  #: templates/admin/system-info/system_info.inc.php:509
3010
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3011
  msgid "Made by"
3012
  msgstr ""
3013
 
3014
+ #: templates/admin/dashboard/dashboard.inc.php:685
3015
  #: templates/admin/getting-started/getting_started.inc.php:192
3016
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3017
  #: templates/admin/support/support.inc.php:45
3018
  #: templates/admin/support/support.inc.php:86
3019
  #: templates/admin/system-info/system_info.inc.php:517
3022
  msgid "Documentation"
3023
  msgstr "Документация по wpDataTables"
3024
 
3025
+ #: templates/admin/dashboard/dashboard.inc.php:689
3026
  #: templates/admin/getting-started/getting_started.inc.php:196
3027
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3028
  #: templates/admin/support/support.inc.php:24
3029
  #: templates/admin/support/support.inc.php:90
3030
  #: templates/admin/system-info/system_info.inc.php:521
3150
  msgstr ""
3151
 
3152
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3153
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3154
  msgid "Go Premium Now"
3155
  msgstr ""
3156
 
3163
  msgstr ""
3164
 
3165
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3166
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3167
  msgid "Premium"
3168
  msgstr ""
3169
 
3193
 
3194
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3195
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3196
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3197
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3198
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3199
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
3200
  msgid "NEW!"
3201
  msgstr ""
3202
 
3213
 
3214
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3215
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3216
+ #: templates/admin/table-settings/table_settings_block.inc.php:643
3217
+ #: templates/admin/table-settings/table_settings_block.inc.php:651
3218
  msgid "Sorting"
3219
  msgstr "Сортировка"
3220
 
3221
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3222
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3223
+ #: templates/admin/table-settings/table_settings_block.inc.php:504
3224
+ #: templates/admin/table-settings/table_settings_block.inc.php:512
3225
+ #: templates/admin/table-settings/table_settings_block.inc.php:1387
3226
  msgid "Pagination"
3227
  msgstr ""
3228
 
3249
  msgstr ""
3250
 
3251
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3252
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3253
  msgid "Limited"
3254
  msgstr ""
3255
 
3257
  msgid "Some options are not available."
3258
  msgstr ""
3259
 
3260
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3261
+ msgid "Table Customization"
3262
  msgstr ""
3263
 
3264
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3265
+ msgid "Creating tables via Google Sheet API"
3266
+ msgstr ""
3267
+
3268
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3269
  msgid "Creating tables from Private Google Spreadsheet"
3270
  msgstr ""
3271
 
3272
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3273
  msgid "Support"
3274
  msgstr ""
3275
 
3276
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3277
  msgid "Response time is slow and can be up to 5 business days."
3278
  msgstr ""
3279
 
3280
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3281
  msgid ""
3282
  "* Please note that wpDataTables add-ons are not included in premium version "
3283
  "of plugin."
3284
  msgstr ""
3285
 
3286
  #: templates/admin/settings/settings.inc.php:33
3287
+ #: templates/admin/settings/settings.inc.php:95
3288
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3289
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3290
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3291
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3292
  #: templates/admin/table-settings/table_preview_block.inc.php:89
 
3293
  #: templates/admin/table-settings/table_settings_block.inc.php:48
3294
+ #: templates/admin/table-settings/table_settings_block.inc.php:49
3295
  msgid "Save Changes"
3296
  msgstr ""
3297
 
3316
  msgid "Custom JS and CSS"
3317
  msgstr "Дополнительный JS и CSS"
3318
 
3319
+ #: templates/admin/settings/settings.inc.php:62
3320
+ msgid "Google Spreadsheet API settings"
3321
+ msgstr ""
3322
+
3323
+ #: templates/admin/settings/settings.inc.php:92 templates/settings.inc.php:434
3324
  msgid "Reset colors and fonts to default"
3325
  msgstr "Вернуть настройки по умолчанию"
3326
 
3327
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3328
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
3329
+ #: templates/admin/table-settings/table_settings_block.inc.php:1367
3330
+ #: templates/admin/table-settings/table_settings_block.inc.php:1461
3331
  msgid "Font"
3332
  msgstr "Шрифт"
3333
 
3334
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
3335
+ #: templates/admin/table-settings/table_settings_block.inc.php:1464
3336
  #: templates/settings.inc.php:428
3337
  msgid ""
3338
  "This font will be used in rendered tables. Leave blank not to override "
3342
  "пустым, чтобы не переопределять шрифт, установленный в теме."
3343
 
3344
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
3345
+ #: templates/admin/table-settings/table_settings_block.inc.php:1486
3346
  msgid "Define the font size"
3347
  msgstr "Определить размер шрифта"
3348
 
3349
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3350
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3351
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
3352
+ #: templates/admin/table-settings/table_settings_block.inc.php:1519
3353
+ #: templates/admin/table-settings/table_settings_block.inc.php:1594
3354
  msgid "Font color"
3355
  msgstr "Цвет шрифта"
3356
 
3357
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
3358
+ #: templates/admin/table-settings/table_settings_block.inc.php:1522
3359
  #, fuzzy
3360
  msgid "This color is used for the main font in table cells."
3361
  msgstr "Этот цвет будет использоваться для основного шрифта в ячейках таблицы"
3362
 
3363
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3364
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
3365
+ #: templates/admin/table-settings/table_settings_block.inc.php:1371
3366
  msgid "Header"
3367
  msgstr ""
3368
 
3369
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
3370
+ #: templates/admin/table-settings/table_settings_block.inc.php:1552
3371
  #, fuzzy
3372
  msgid "The color is used for background of the table header."
3373
  msgstr "Этот цвет будет использоваться как фоновый в шапке таблицы"
3374
 
3375
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
3376
+ #: templates/admin/table-settings/table_settings_block.inc.php:1574
3377
  #, fuzzy
3378
  msgid "This color is used for the border in the table header."
3379
  msgstr "Этот цвет будет использоваться для границы в шапке таблицы"
3380
 
3381
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
3382
+ #: templates/admin/table-settings/table_settings_block.inc.php:1597
3383
  #, fuzzy
3384
  msgid "This color is used for the font in the table header."
3385
  msgstr "Этот цвет будет использоваться для шрифта в шапке таблицы"
3386
 
3387
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
3388
+ #: templates/admin/table-settings/table_settings_block.inc.php:1616
3389
  msgid "Active and hover color\t"
3390
  msgstr "Цвет активного заголовка, и подсветки при наведении"
3391
 
3392
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
3393
+ #: templates/admin/table-settings/table_settings_block.inc.php:1619
3394
  #, fuzzy
3395
  msgid ""
3396
  "This color is used when you hover the mouse above the table header, or when "
3405
  msgstr ""
3406
 
3407
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
3408
+ #: templates/admin/table-settings/table_settings_block.inc.php:1647
3409
  msgid "Inner border"
3410
  msgstr "Цвет внутренней границы таблицы"
3411
 
3412
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
3413
+ #: templates/admin/table-settings/table_settings_block.inc.php:1650
3414
  #, fuzzy
3415
  msgid "This color is used for the inner border in the table between cells."
3416
  msgstr ""
3417
  "Этот цвет будет использоваться для внутренних границ между ячейками таблицы"
3418
 
3419
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
3420
+ #: templates/admin/table-settings/table_settings_block.inc.php:1670
3421
  msgid "Outer border"
3422
  msgstr "Цвет наружней границы таблицы"
3423
 
3424
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
3425
+ #: templates/admin/table-settings/table_settings_block.inc.php:1673
3426
  #, fuzzy
3427
  msgid "This color is used for the outer border of the whole table body."
3428
  msgstr "Этот цвет будет использоваться для внешней границы таблицы целиком"
3429
 
3430
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
3431
+ #: templates/admin/table-settings/table_settings_block.inc.php:1693
3432
  msgid "Table borders"
3433
  msgstr "Границы таблицы"
3434
 
3435
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
3436
+ #: templates/admin/table-settings/table_settings_block.inc.php:1696
3437
  msgid "When this is checked, borders in table will be removed "
3438
  msgstr "Когда помечено, границы в таблице будут удалены"
3439
 
3440
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
3441
+ #: templates/admin/table-settings/table_settings_block.inc.php:1702
3442
  msgid "Remove borders in table"
3443
  msgstr ""
3444
 
3445
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
3446
+ #: templates/admin/table-settings/table_settings_block.inc.php:1707
3447
  msgid "Header border"
3448
  msgstr "Граница заголовка"
3449
 
3450
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
3451
+ #: templates/admin/table-settings/table_settings_block.inc.php:1710
3452
  msgid "When this is checked,borders in header will be removed "
3453
  msgstr "Когда помечено, границы в заголовке будут удалены"
3454
 
3457
  msgstr ""
3458
 
3459
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
3460
+ #: templates/admin/table-settings/table_settings_block.inc.php:1379
3461
  msgid "Row color"
3462
  msgstr ""
3463
 
3464
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
3465
+ #: templates/admin/table-settings/table_settings_block.inc.php:1729
3466
  msgid "Even row background"
3467
  msgstr "Цвет фона четных строк"
3468
 
3469
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
3470
+ #: templates/admin/table-settings/table_settings_block.inc.php:1732
3471
  #, fuzzy
3472
  msgid "This color is used for for background in even rows."
3473
  msgstr "Этот цвет будет использоваться как фон четных строк"
3474
 
3475
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
3476
+ #: templates/admin/table-settings/table_settings_block.inc.php:1751
3477
  msgid "Odd row background"
3478
  msgstr "Цвет нечетных строк"
3479
 
3480
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
3481
+ #: templates/admin/table-settings/table_settings_block.inc.php:1754
3482
  #, fuzzy
3483
  msgid "This color is used for for background in odd rows."
3484
  msgstr "Этот цвет будет использоваться как фон нечетных строк"
3485
 
3486
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
3487
+ #: templates/admin/table-settings/table_settings_block.inc.php:1773
3488
  msgid "Hover row"
3489
  msgstr "Цвет подсветки строк"
3490
 
3491
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
3492
+ #: templates/admin/table-settings/table_settings_block.inc.php:1776
3493
  #, fuzzy
3494
  msgid ""
3495
  "This color is used for to highlight the row when you hover your mouse above "
3499
  "пользователь проводит курсором мыши"
3500
 
3501
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
3502
+ #: templates/admin/table-settings/table_settings_block.inc.php:1795
3503
  msgid "Background for selected rows"
3504
  msgstr "Фоновый цвет для выбранных строк"
3505
 
3506
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
3507
+ #: templates/admin/table-settings/table_settings_block.inc.php:1798
3508
  #, fuzzy
3509
  msgid "This color is used for background in selected rows."
3510
  msgstr ""
3511
  "Этот цвет будет использоваться как фон выбранных строк (для редактирования)"
3512
 
3513
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
3514
+ #: templates/admin/table-settings/table_settings_block.inc.php:1383
3515
  msgid "Cell color"
3516
  msgstr ""
3517
 
3518
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
3519
+ #: templates/admin/table-settings/table_settings_block.inc.php:1826
3520
  msgid "Sorted columns, even rows"
3521
  msgstr "Сортированные столбцы, четные строки"
3522
 
3523
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
3524
+ #: templates/admin/table-settings/table_settings_block.inc.php:1829
3525
  #, fuzzy
3526
  msgid ""
3527
  "This color is used for background in cells which are in the active columns "
3531
  "(колонок, используемых для сортировки) в четных строках"
3532
 
3533
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
3534
+ #: templates/admin/table-settings/table_settings_block.inc.php:1849
3535
  msgid "Sorted columns, odd rows"
3536
  msgstr "Сортированные столбцы, нечетные строки"
3537
 
3538
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
3539
+ #: templates/admin/table-settings/table_settings_block.inc.php:1852
3540
  #, fuzzy
3541
  msgid ""
3542
  "This color is used for background in cells which are in the active columns "
3652
  "появлении всплывающих диалогов"
3653
 
3654
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
3655
+ #: templates/admin/table-settings/table_settings_block.inc.php:1882
3656
  #, fuzzy
3657
  msgid "This color is used for the background of the pagination"
3658
  msgstr "Этот цвет будет использоваться как фоновый цвет кнопок"
3659
 
3660
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
3661
+ #: templates/admin/table-settings/table_settings_block.inc.php:1905
3662
  #, fuzzy
3663
  msgid "This color is used for the color of the links in the pagination."
3664
  msgstr "Этот цвет будет использоваться для внешней границы таблицы целиком"
3665
 
3666
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
3667
+ #: templates/admin/table-settings/table_settings_block.inc.php:1924
3668
  msgid "Current page background color"
3669
  msgstr "Цвет фона текущей страницы"
3670
 
3671
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
3672
+ #: templates/admin/table-settings/table_settings_block.inc.php:1927
3673
  #, fuzzy
3674
  msgid "The color is used for background of the current page"
3675
  msgstr "Этот цвет будет использоваться как фоновый в шапке таблицы"
3676
 
3677
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
3678
+ #: templates/admin/table-settings/table_settings_block.inc.php:1948
3679
  msgid "Current page color"
3680
  msgstr "Текущий цвет страницы"
3681
 
3682
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
3683
+ #: templates/admin/table-settings/table_settings_block.inc.php:1951
3684
  #, fuzzy
3685
  msgid "This color is used for the color of the current page."
3686
  msgstr "Этот цвет будет использоваться для границы в шапке таблицы"
3687
 
3688
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
3689
+ #: templates/admin/table-settings/table_settings_block.inc.php:1971
3690
  msgid "Other pages hover background color"
3691
  msgstr "Цвет фона заголовка других страниц"
3692
 
3693
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
3694
+ #: templates/admin/table-settings/table_settings_block.inc.php:1974
3695
  #, fuzzy
3696
  msgid ""
3697
  "This background color is used when you hover the mouse above the other pages"
3701
  "таблица"
3702
 
3703
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
3704
+ #: templates/admin/table-settings/table_settings_block.inc.php:1995
3705
  msgid "Other pages hover color"
3706
  msgstr "Цвет других страниц"
3707
 
3708
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
3709
+ #: templates/admin/table-settings/table_settings_block.inc.php:1998
3710
  #, fuzzy
3711
  msgid "This color is used when you hover the mouse above the other pages."
3712
  msgstr ""
3728
  "wpDataTables (открывающие и закрывающие script тэги не нужны)"
3729
 
3730
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
3731
+ #: templates/admin/table-settings/table_settings_block.inc.php:2025
3732
  #: templates/settings.inc.php:463
3733
  msgid "Custom wpDataTables CSS"
3734
  msgstr "Дополнительные CSS для wpDataTables"
3750
  msgstr ""
3751
 
3752
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
3753
+ #: templates/admin/table-settings/table_settings_block.inc.php:1407
3754
  #: templates/settings.inc.php:45
3755
  msgid "Interface language"
3756
  msgstr "Язык интерфейса"
3757
 
3758
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
3759
+ #: templates/admin/table-settings/table_settings_block.inc.php:1410
3760
  msgid "Pick the language which will be used in tables interface."
3761
  msgstr ""
3762
  "Выберите язык, который будет использоваться во фронт-енд интерфейсе таблиц"
3763
 
3764
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
3765
+ #: templates/admin/table-settings/table_settings_block.inc.php:1417
3766
  msgid "English (default)"
3767
  msgstr "Английский (по умолчанию)"
3768
 
3776
  msgstr ""
3777
  "Выберите формат даты, который будет использоваться в колонках типа \"Дата\""
3778
 
3779
+ #: templates/admin/settings/tabs/main_plugin_settings.php:74
3780
  #: templates/settings.inc.php:119
3781
  msgid "Time format"
3782
  msgstr "Формат времени"
3783
 
3784
+ #: templates/admin/settings/tabs/main_plugin_settings.php:76
3785
  msgid "Pick the time format to use in datetime and time column type."
3786
  msgstr ""
3787
  "Выберите формат времени, который будет использоваться в колонках типа \"Время"
3788
  "\""
3789
 
3790
+ #: templates/admin/settings/tabs/main_plugin_settings.php:91
3791
  msgid "Parse shortcodes"
3792
  msgstr "Разобрать шорткоды"
3793
 
3794
+ #: templates/admin/settings/tabs/main_plugin_settings.php:93
3795
  msgid ""
3796
  "If the option is enabled, you can use shortcodes of other plugins for "
3797
  "generating content."
3798
  msgstr ""
3799
 
3800
+ #: templates/admin/settings/tabs/main_plugin_settings.php:97
3801
  msgid "Parse shortcodes in strings"
3802
  msgstr "Разбирать шорткоды в строках"
3803
 
3804
+ #: templates/admin/settings/tabs/main_plugin_settings.php:104
3805
+ #: templates/admin/table-settings/table_settings_block.inc.php:1430
3806
  #: templates/settings.inc.php:74
3807
  msgid "Base skin"
3808
  msgstr "Основной скин"
3809
 
3810
+ #: templates/admin/settings/tabs/main_plugin_settings.php:106
3811
+ #: templates/admin/table-settings/table_settings_block.inc.php:1433
3812
  msgid "Choose the base skin for the plugin."
3813
  msgstr "Выберите основной скин плагина"
3814
 
3815
+ #: templates/admin/settings/tabs/main_plugin_settings.php:112
3816
+ #: templates/admin/table-settings/table_settings_block.inc.php:1440
3817
  msgid "Material"
3818
  msgstr "Материал"
3819
 
3820
+ #: templates/admin/settings/tabs/main_plugin_settings.php:113
3821
+ #: templates/admin/table-settings/table_settings_block.inc.php:1441
3822
  msgid "Light"
3823
  msgstr "Лайт"
3824
 
3825
+ #: templates/admin/settings/tabs/main_plugin_settings.php:114
3826
+ #: templates/admin/table-settings/table_settings_block.inc.php:1442
3827
  msgid "Graphite"
3828
  msgstr "Графит"
3829
 
3830
+ #: templates/admin/settings/tabs/main_plugin_settings.php:115
3831
+ #: templates/admin/table-settings/table_settings_block.inc.php:1443
3832
  msgid "Aqua"
3833
  msgstr "Вода"
3834
 
3835
+ #: templates/admin/settings/tabs/main_plugin_settings.php:116
3836
+ #: templates/admin/table-settings/table_settings_block.inc.php:1444
3837
  msgid "Purple"
3838
  msgstr "Фиолетовый"
3839
 
3840
+ #: templates/admin/settings/tabs/main_plugin_settings.php:117
3841
+ #: templates/admin/table-settings/table_settings_block.inc.php:1445
3842
  msgid "Dark"
3843
  msgstr "Темный"
3844
 
3845
+ #: templates/admin/settings/tabs/main_plugin_settings.php:125
3846
  #: templates/settings.inc.php:131
3847
  msgid "Number format"
3848
  msgstr "Форматирование чисел"
3849
 
3850
+ #: templates/admin/settings/tabs/main_plugin_settings.php:127
3851
  #: templates/settings.inc.php:138
3852
  msgid "Pick the number format (thousands and decimals separator)"
3853
  msgstr ""
3854
  "Выберите, как форматировать числа (разделитель разрядов и разделитель "
3855
  "десятичной части)"
3856
 
3857
+ #: templates/admin/settings/tabs/main_plugin_settings.php:144
3858
  #: templates/settings.inc.php:86
3859
  msgid "Render advanced filter"
3860
  msgstr "Отображать дополнительные фильтры"
3861
 
3862
+ #: templates/admin/settings/tabs/main_plugin_settings.php:146
3863
  msgid ""
3864
  "Choose where you would like to render the advanced filter for tables where "
3865
  "enabled."
3867
  "Где вы хотите отображать дополнительные фильтры для таблицы, когда они "
3868
  "включены"
3869
 
3870
+ #: templates/admin/settings/tabs/main_plugin_settings.php:152
3871
  #: templates/settings.inc.php:90
3872
  msgid "In the header"
3873
  msgstr "В шапке таблицы"
3874
 
3875
+ #: templates/admin/settings/tabs/main_plugin_settings.php:153
3876
  #: templates/settings.inc.php:91
3877
  msgid "In the footer"
3878
  msgstr "В подвале таблицы"
3879
 
3880
+ #: templates/admin/settings/tabs/main_plugin_settings.php:161
3881
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3882
  #: templates/settings.inc.php:143
3883
  msgid "Decimal places"
3884
  msgstr "Знаков после запятой"
3885
 
3886
+ #: templates/admin/settings/tabs/main_plugin_settings.php:163
3887
  msgid "Define the amount of decimal places for the float numbers."
3888
  msgstr "Определите количество знаков после запятой для дробных чисел"
3889
 
3890
+ #: templates/admin/settings/tabs/main_plugin_settings.php:188
3891
  msgid "CSV delimiter"
3892
  msgstr "CSV разделитель"
3893
 
3894
+ #: templates/admin/settings/tabs/main_plugin_settings.php:190
3895
  msgid "Pick the CSV delimiter"
3896
  msgstr "Выберите разделитель для CSV"
3897
 
3898
+ #: templates/admin/settings/tabs/main_plugin_settings.php:209
3899
  msgid "Tables sorting direction in admin page"
3900
  msgstr ""
3901
 
3902
+ #: templates/admin/settings/tabs/main_plugin_settings.php:211
3903
  msgid ""
3904
  "Here you can set sorting direction by id for browse tables and charts. By "
3905
  "default is ascending order."
3906
  msgstr ""
3907
 
3908
+ #: templates/admin/settings/tabs/main_plugin_settings.php:217
3909
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3910
  #: templates/edit_table.inc.php:663
3911
  msgid "Ascending"
3912
  msgstr "По возрастанию"
3913
 
3914
+ #: templates/admin/settings/tabs/main_plugin_settings.php:218
3915
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3916
  #: templates/edit_table.inc.php:665
3917
  msgid "Descending"
3918
  msgstr "По убыванию"
3919
 
3920
+ #: templates/admin/settings/tabs/main_plugin_settings.php:229
3921
  #: templates/settings.inc.php:171
3922
  msgid "Tablet width"
3923
  msgstr "Ширина планшета"
3924
 
3925
+ #: templates/admin/settings/tabs/main_plugin_settings.php:231
3926
  #: templates/settings.inc.php:175
3927
  msgid ""
3928
  "Here you can specify width of the screen (in pixels) that will be treated as "
3932
  "шириной планшета. Вы можете установить ее шире, чем по умолчанию, если "
3933
  "хотите включить адаптивный эффект для стационарных компьютеров и ноутбуков."
3934
 
3935
+ #: templates/admin/settings/tabs/main_plugin_settings.php:255
3936
  #: templates/settings.inc.php:181
3937
  msgid "Mobile width"
3938
  msgstr "Ширина мобильных телефонов"
3939
 
3940
+ #: templates/admin/settings/tabs/main_plugin_settings.php:257
3941
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3942
  msgstr ""
3943
  "Здесь вы можете указать ширину экрана (в пикселях), которая будет считаться "
3944
  "шириной мобильных устройств"
3945
 
3946
+ #: templates/admin/settings/tabs/main_plugin_settings.php:282
3947
  #: templates/settings.inc.php:61
3948
  msgid "Tables per admin page"
3949
  msgstr "Количество таблиц на странице обзора"
3950
 
3951
+ #: templates/admin/settings/tabs/main_plugin_settings.php:284
3952
  msgid "How many tables to show in the browse page."
3953
  msgstr ""
3954
  "Сколько таблиц на одной странице показывать в админ-панели на странице обзора"
3955
 
3956
+ #: templates/admin/settings/tabs/main_plugin_settings.php:300
3957
  msgid "Align numbers"
3958
  msgstr "Выравнивать чисел"
3959
 
3960
+ #: templates/admin/settings/tabs/main_plugin_settings.php:302
3961
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3962
  msgstr ""
3963
 
3964
+ #: templates/admin/settings/tabs/main_plugin_settings.php:306
3965
  #: templates/settings.inc.php:161
3966
  msgid "Align numbers to the right"
3967
  msgstr ""
3968
 
3969
+ #: templates/admin/settings/tabs/main_plugin_settings.php:316
3970
  msgid "Sum functions label"
3971
  msgstr "Метка для функции Сумма"
3972
 
3973
+ #: templates/admin/settings/tabs/main_plugin_settings.php:318
3974
  msgid ""
3975
  "Enter a label that will be used for Sum functions. If you leave it blank "
3976
  "default label will be Σ ="
3978
  "Введите метку, которая будет использоваться для функции Сумма. Если вы "
3979
  "оставите это поле пустым, по умолчанию будет использоваться метка Σ ="
3980
 
3981
+ #: templates/admin/settings/tabs/main_plugin_settings.php:336
3982
  msgid "Average functions label"
3983
  msgstr "Метка для функции вычисления среднего"
3984
 
3985
+ #: templates/admin/settings/tabs/main_plugin_settings.php:338
3986
  msgid ""
3987
  "Enter a label that will be used for Average functions. If you leave it blank "
3988
  "default label will be Avg ="
3990
  "Введите метку, которая будет использоваться для функции Среднее. Если вы "
3991
  "оставите это поле пустым, по умолчанию метка будет Avg ="
3992
 
3993
+ #: templates/admin/settings/tabs/main_plugin_settings.php:361
3994
  msgid "Minimum functions label"
3995
  msgstr "Метка для функции Минимум"
3996
 
3997
+ #: templates/admin/settings/tabs/main_plugin_settings.php:363
3998
  msgid ""
3999
  "Enter a label that will be used for Minimum functions. If you leave it blank "
4000
  "default label will be Min ="
4002
  "Введите метку, которая будет использоваться для функции Минимум. Если вы "
4003
  "оставите это поле пустым, метка по умолчанию будет Min ="
4004
 
4005
+ #: templates/admin/settings/tabs/main_plugin_settings.php:381
4006
  msgid "Maximum functions label"
4007
  msgstr "Метка для функции Максимум"
4008
 
4009
+ #: templates/admin/settings/tabs/main_plugin_settings.php:383
4010
  msgid ""
4011
  "Enter a label that will be used for Maximum functions. If you leave it blank "
4012
  "default label will be Max ="
4014
  "Введите метку, которая будет использоваться для функции Максимум. Если вы "
4015
  "оставите это поле пустым, метка по умолчанию будет Max ="
4016
 
4017
+ #: templates/admin/settings/tabs/main_plugin_settings.php:409
4018
  msgid "Include full bootstrap front-end"
4019
  msgstr "Включить полный интерфейс начальной загрузки"
4020
 
4021
+ #: templates/admin/settings/tabs/main_plugin_settings.php:411
4022
+ #: templates/admin/settings/tabs/main_plugin_settings.php:422
4023
  msgid ""
4024
  "It is recommended to uncheck this option if bootstrap.js is already included "
4025
  "in one of the theme files. Unchecked option means that there is still "
4030
  "js, включенный только в режиме noconflict, который должен предотвратить "
4031
  "ошибки."
4032
 
4033
+ #: templates/admin/settings/tabs/main_plugin_settings.php:415
4034
  msgid "Include full bootstrap.js on the front-end"
4035
  msgstr ""
4036
 
4037
+ #: templates/admin/settings/tabs/main_plugin_settings.php:420
4038
  msgid "Include full bootstrap back-end"
4039
  msgstr "Включить полный интерфейс начальной загрузки"
4040
 
4041
+ #: templates/admin/settings/tabs/main_plugin_settings.php:426
4042
  msgid "Include full bootstrap.js on the back-end"
4043
  msgstr ""
4044
 
4045
+ #: templates/admin/settings/tabs/main_plugin_settings.php:434
4046
+ #: templates/admin/settings/tabs/main_plugin_settings.php:440
4047
  #: templates/settings.inc.php:32
4048
  msgid "Show plugin credentials below tables"
4049
  msgstr ""
4050
 
4051
+ #: templates/admin/settings/tabs/main_plugin_settings.php:436
4052
  #: templates/settings.inc.php:32
4053
  msgid ""
4054
  "If you want to support our project, please, keep this checkbox as checked"
4055
  msgstr ""
4056
 
4057
+ #: templates/admin/settings/tabs/main_plugin_settings.php:445
4058
  msgid "Prevent deleting tables in database"
4059
  msgstr "Запретить удаление таблиц в базе данных"
4060
 
4061
+ #: templates/admin/settings/tabs/main_plugin_settings.php:447
4062
  msgid ""
4063
  "It is recommended to leave this option as checked if you what to keep your "
4064
  "tables in database after deleting plugin from Plugins page. If you uncheck "
4065
  "this option, it will be deleted all tables in database after deleting plugin"
4066
  msgstr ""
4067
 
4068
+ #: templates/admin/settings/tabs/main_plugin_settings.php:451
4069
  msgid ""
4070
  "Prevent deleting tables in database after deleting plugin from Plugins page"
4071
  msgstr ""
4072
 
4073
+ #: templates/admin/settings/tabs/main_plugin_settings.php:458
4074
  msgid "Remove Getting Started page"
4075
  msgstr ""
4076
 
4077
+ #: templates/admin/settings/tabs/main_plugin_settings.php:460
4078
  msgid ""
4079
  "Check this option if you want to remove Getting Started page from admin menu."
4080
  msgstr ""
4081
 
4082
+ #: templates/admin/settings/tabs/main_plugin_settings.php:464
4083
  msgid "Remove \"Getting Started\" page from admin menu."
4084
  msgstr ""
4085
 
4346
  msgid "Column header"
4347
  msgstr "Заголовок колонки"
4348
 
 
 
 
 
4349
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4350
  msgid "Insert after"
4351
  msgstr "Добавить после"
4382
 
4383
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4384
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4385
+ #: templates/admin/table-settings/table_settings_block.inc.php:64
4386
  msgid "Display"
4387
  msgstr "Показать"
4388
 
4395
  msgstr ""
4396
 
4397
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4398
+ #: templates/admin/table-settings/table_settings_block.inc.php:72
4399
  msgid "Editing"
4400
  msgstr "Редактировать"
4401
 
4902
  msgstr "Разрешить фильтрацию"
4903
 
4904
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4905
+ #: templates/admin/table-settings/table_settings_block.inc.php:682
4906
  msgid "Global search"
4907
  msgstr "Глобальный поиск"
4908
 
5476
  msgstr ""
5477
 
5478
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5479
+ #: templates/admin/table-settings/table_settings_block.inc.php:211
5480
  #: templates/edit_table.inc.php:58
5481
  msgid "Table title"
5482
  msgstr "Имя таблицы"
5483
 
5484
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5485
+ #: templates/admin/table-settings/table_settings_block.inc.php:219
5486
  #: templates/edit_table.inc.php:67
5487
  msgid "Show table title"
5488
  msgstr "Отображать имя таблицы"
5489
 
5490
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5491
+ #: templates/admin/table-settings/table_settings_block.inc.php:226
5492
  msgid ""
5493
  "Enable this to show the table title in a h3 block above the table, disable "
5494
  "to hide."
5497
  "отключить, чтобы скрыть."
5498
 
5499
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5500
+ #: templates/admin/table-settings/table_settings_block.inc.php:234
5501
  msgid "Show table title on the page"
5502
  msgstr "Отображать название таблицы на странице"
5503
 
5564
  msgstr "Прокрутка"
5565
 
5566
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5567
+ #: templates/admin/table-settings/table_settings_block.inc.php:378
5568
  msgid "Scrollable table"
5569
  msgstr "Таблица с прокруткой"
5570
 
5571
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5572
+ #: templates/admin/table-settings/table_settings_block.inc.php:385
5573
  msgid "Enable this to enable a horizontal scrollbar below the table."
5574
  msgstr ""
5575
  "Включите это, чтобы включить горизонтальную полосу прокрутки под таблицей."
5576
 
5577
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5578
+ #: templates/admin/table-settings/table_settings_block.inc.php:394
5579
  msgid "Show a horizontal scrollbar"
5580
  msgstr "Показывать горизонтальную прокрутку"
5581
 
5582
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5583
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5584
+ #: templates/admin/table-settings/table_settings_block.inc.php:438
5585
+ #: templates/admin/table-settings/table_settings_block.inc.php:446
5586
  msgid "Limit table width"
5587
  msgstr "Ограничить ширину таблицы"
5588
 
5589
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5590
+ #: templates/admin/table-settings/table_settings_block.inc.php:453
5591
  msgid "Enable this to restrict table width to page width."
5592
  msgstr "Включите это, чтобы ограничить ширину таблицы шириной страницы."
5593
 
5594
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5595
+ #: templates/admin/table-settings/table_settings_block.inc.php:462
5596
  msgid "Limit table width to page width"
5597
  msgstr "Ограничить ширину таблицы по ширине страницы"
5598
 
5599
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5600
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5601
+ #: templates/admin/table-settings/table_settings_block.inc.php:469
5602
+ #: templates/admin/table-settings/table_settings_block.inc.php:477
5603
  #: templates/edit_table.inc.php:392
5604
  msgid "Word wrap"
5605
  msgstr "Перенос слов"
5606
 
5607
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5608
+ #: templates/admin/table-settings/table_settings_block.inc.php:484
5609
  msgid ""
5610
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5611
  "height."
5614
  "высоту ячеек."
5615
 
5616
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5617
+ #: templates/admin/table-settings/table_settings_block.inc.php:492
5618
  msgid "Wrap words to newlines"
5619
  msgstr "Перенос слов на новую строку"
5620
 
5676
  msgid "EXCEL-LIKE"
5677
  msgstr "ВИД ЭКСЕЛЬ"
5678
 
5679
+ #: templates/admin/table-settings/table_settings_block.inc.php:68
5680
  msgid "Sorting and filtering"
5681
  msgstr "Сортировка и фильтрация"
5682
 
5683
+ #: templates/admin/table-settings/table_settings_block.inc.php:76
5684
+ #: templates/admin/table-settings/table_settings_block.inc.php:1009
5685
  msgid "Table Tools"
5686
  msgstr "Инструменты таблицы"
5687
 
5688
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
5689
+ msgid " Customize"
5690
+ msgstr ""
5691
+
5692
+ #: templates/admin/table-settings/table_settings_block.inc.php:103
5693
  msgid ""
5694
  "Please choose a type of the input data source - it can be a MySQL query, a "
5695
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5698
  "MySQL, файл или URL. Только таблицы MySQL на основе запросов могут "
5699
  "использовать обработку на стороне сервера"
5700
 
5701
+ #: templates/admin/table-settings/table_settings_block.inc.php:110
5702
  msgid "Select a data source type"
5703
  msgstr "Выберите тип таблицы"
5704
 
5705
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
5706
  msgid "SQL query "
5707
  msgstr ""
5708
 
5709
+ #: templates/admin/table-settings/table_settings_block.inc.php:113
5710
  #: templates/edit_table.inc.php:85
5711
  msgid "CSV file"
5712
  msgstr "Файл CSV"
5713
 
5714
+ #: templates/admin/table-settings/table_settings_block.inc.php:114
5715
  #: templates/edit_table.inc.php:86
5716
  msgid "Excel file"
5717
  msgstr "Файл Excel"
5718
 
5719
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
5720
  msgid "Google Spreadsheet "
5721
  msgstr ""
5722
 
5723
+ #: templates/admin/table-settings/table_settings_block.inc.php:118
5724
  #: templates/edit_table.inc.php:89
5725
  msgid "XML file"
5726
  msgstr "XML"
5727
 
5728
+ #: templates/admin/table-settings/table_settings_block.inc.php:119
5729
  #: templates/edit_table.inc.php:90
5730
  msgid "JSON file"
5731
  msgstr "JSON"
5732
 
5733
+ #: templates/admin/table-settings/table_settings_block.inc.php:133
5734
  msgid ""
5735
  "Upload your file or provide the full URL here. For CSV or Excel input "
5736
  "sources only URLs or paths from same domain are supported. For Google "
5741
  "или Excel поддерживаются только URL или пути из одного домена. Для таблиц "
5742
  "Google: не забудьте опубликовать таблицу перед вставкой URL."
5743
 
5744
+ #: templates/admin/table-settings/table_settings_block.inc.php:139
5745
  msgid "Paste URL or path, or click Browse to choose"
5746
  msgstr "Вставьте URL или путь или нажмите кнопку «Обзор», чтобы выбрать"
5747
 
5748
+ #: templates/admin/table-settings/table_settings_block.inc.php:143
5749
  msgid "Browse..."
5750
  msgstr "Поиск..."
5751
 
5752
+ #: templates/admin/table-settings/table_settings_block.inc.php:155
5753
  msgid ""
5754
  "If it is turned on, all sorting, filtering, pagination and other data "
5755
  "interaction will be done by MySQL server. This feature is recommended if you "
5759
  "и других данных будут выполняться сервером MySQL. Эта функция рекомендуется, "
5760
  "если у вас более 2000-3000 строк. Обязательно для редактируемых таблиц."
5761
 
5762
+ #: templates/admin/table-settings/table_settings_block.inc.php:162
5763
  msgid "Enable server-side processing"
5764
  msgstr "Обработка данных на стороне сервера"
5765
 
5766
+ #: templates/admin/table-settings/table_settings_block.inc.php:177
5767
  msgid "MySQL Query"
5768
  msgstr ""
5769
 
5770
+ #: templates/admin/table-settings/table_settings_block.inc.php:179
5771
  msgid ""
5772
  "Enter the text of your MySQL query here - please make sure it returns actual "
5773
  "data first. You can use a number of placeholders to make the dataset in the "
5775
  "with different shortcodes."
5776
  msgstr ""
5777
 
5778
+ #: templates/admin/table-settings/table_settings_block.inc.php:186
5779
  #: templates/edit_table.inc.php:292
5780
  msgid "Auto-refresh"
5781
  msgstr "Авто-обновление"
5782
 
5783
+ #: templates/admin/table-settings/table_settings_block.inc.php:188
5784
  msgid ""
5785
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5786
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5790
  "показать фактические данные с заданным интервалом в секундах. Оставьте ноль "
5791
  "или пустым, чтобы не использовать автообновление."
5792
 
5793
+ #: templates/admin/table-settings/table_settings_block.inc.php:193
5794
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5795
  msgstr ""
5796
  "Интервал авто-обновления в секундах. Оставьте пустым, или 0, чтобы отключить "
5797
  "авто-обновление"
5798
 
5799
+ #: templates/admin/table-settings/table_settings_block.inc.php:242
5800
  msgid "Responsiveness"
5801
  msgstr "Адаптивность"
5802
 
5803
+ #: templates/admin/table-settings/table_settings_block.inc.php:250
5804
  msgid "Responsive design"
5805
  msgstr "Адаптивный дизайн"
5806
 
5807
+ #: templates/admin/table-settings/table_settings_block.inc.php:257
5808
  msgid "Enable this to allow responsiveness in the table."
5809
  msgstr "Включите это, чтобы разрешить отзывчивость в таблице."
5810
 
5811
+ #: templates/admin/table-settings/table_settings_block.inc.php:258
5812
  msgid ""
5813
  "Please do not forget to define which columns will be hidden on mobiles and "
5814
  "tablets in the column settings!"
5816
  "Пожалуйста, не забудьте указать, какие столбцы будут скрыты на мобильных "
5817
  "телефонах и планшетах в настройках столбцов!"
5818
 
5819
+ #: templates/admin/table-settings/table_settings_block.inc.php:269
5820
  msgid "Allow collapsing on mobiles and tablets"
5821
  msgstr "Разрешить сворачивать на телефонах и планшетах"
5822
 
5823
+ #: templates/admin/table-settings/table_settings_block.inc.php:277
5824
  msgid "Hide until loaded"
5825
  msgstr "Скрывать пока грузится"
5826
 
5827
+ #: templates/admin/table-settings/table_settings_block.inc.php:279
5828
  msgid ""
5829
  "Enable to make whole table hidden until it is initialized to prevent "
5830
  "unformatted data flashing"
5832
  "Включите, чтобы сделать всю таблицу скрытой до ее инициализации, чтобы "
5833
  "предотвратить мигание неформатированных данных"
5834
 
5835
+ #: templates/admin/table-settings/table_settings_block.inc.php:284
5836
  msgid "Hide the table before it is fully loaded"
5837
  msgstr "Скрыть таблицу до полной загрузки"
5838
 
5839
+ #: templates/admin/table-settings/table_settings_block.inc.php:296
5840
  msgid "Default rows per page"
5841
  msgstr "Количество строк по умолчанию"
5842
 
5843
+ #: templates/admin/table-settings/table_settings_block.inc.php:304
5844
+ #: templates/admin/table-settings/table_settings_block.inc.php:339
5845
  msgid "Rows per page"
5846
  msgstr "Строк на странице"
5847
 
5848
+ #: templates/admin/table-settings/table_settings_block.inc.php:311
5849
  msgid "How many rows to show per page by default."
5850
  msgstr "Сколько строк показывать по умолчанию."
5851
 
5852
+ #: templates/admin/table-settings/table_settings_block.inc.php:347
5853
  msgid "Show X entries"
5854
  msgstr "Показывать Х вхождений"
5855
 
5856
+ #: templates/admin/table-settings/table_settings_block.inc.php:354
5857
  msgid ""
5858
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5859
  "frontend."
5861
  "Включите или отключите, чтобы показать или скрыть текст «Показать X записей» "
5862
  "для каждой страницы в раскрывающемся меню."
5863
 
5864
+ #: templates/admin/table-settings/table_settings_block.inc.php:362
5865
  msgid "Show \"Show X entries\" dropdown"
5866
  msgstr "Показать раскрывающийся список \"Показать X записей\""
5867
 
5868
+ #: templates/admin/table-settings/table_settings_block.inc.php:386
5869
  msgid "This should be turned off if you want to set columns width manually."
5870
  msgstr ""
5871
  "Это должно быть отключено, если вы хотите установить ширину столбцов вручную."
5872
 
5873
+ #: templates/admin/table-settings/table_settings_block.inc.php:407
5874
+ #: templates/admin/table-settings/table_settings_block.inc.php:415
5875
  msgid "Info block"
5876
  msgstr "Инфо блок"
5877
 
5878
+ #: templates/admin/table-settings/table_settings_block.inc.php:422
5879
  msgid ""
5880
  "Enable to show a block of information about the number of records below the "
5881
  "table."
5882
  msgstr "Разрешить отображение информации о количестве записей под таблицей"
5883
 
5884
+ #: templates/admin/table-settings/table_settings_block.inc.php:430
5885
  msgid "Show information block below the table"
5886
  msgstr "Показывать инфо блок под таблицей"
5887
 
5888
+ #: templates/admin/table-settings/table_settings_block.inc.php:454
5889
  msgid ""
5890
  "This should be turned on if you want to set columns width manually. Should "
5891
  "be on to use word wrapping."
5893
  "Это должно быть включено, если вы хотите установить ширину столбцов вручную. "
5894
  "Следует использовать перенос слов."
5895
 
5896
+ #: templates/admin/table-settings/table_settings_block.inc.php:516
5897
  msgid "Enable to show a pagination"
5898
  msgstr ""
5899
 
5900
+ #: templates/admin/table-settings/table_settings_block.inc.php:524
5901
  msgid "Show pagination block below the table"
5902
  msgstr ""
5903
 
5904
+ #: templates/admin/table-settings/table_settings_block.inc.php:532
5905
+ #: templates/admin/table-settings/table_settings_block.inc.php:540
5906
  msgid "Pagination Alignment"
5907
  msgstr ""
5908
 
5909
+ #: templates/admin/table-settings/table_settings_block.inc.php:544
5910
  msgid "Here you can set pagination position: right, center or left."
5911
  msgstr ""
5912
 
5913
+ #: templates/admin/table-settings/table_settings_block.inc.php:552
5914
  msgid "Right"
5915
  msgstr ""
5916
 
5917
+ #: templates/admin/table-settings/table_settings_block.inc.php:553
5918
  msgid "Center"
5919
  msgstr ""
5920
 
5921
+ #: templates/admin/table-settings/table_settings_block.inc.php:554
5922
  msgid "Left"
5923
  msgstr ""
5924
 
5925
+ #: templates/admin/table-settings/table_settings_block.inc.php:563
5926
+ #: templates/admin/table-settings/table_settings_block.inc.php:571
5927
  msgid "Pagination Layout"
5928
  msgstr ""
5929
 
5930
+ #: templates/admin/table-settings/table_settings_block.inc.php:575
5931
  msgid "Here you can choose between different pagination layout."
5932
  msgstr ""
5933
 
5934
+ #: templates/admin/table-settings/table_settings_block.inc.php:583
5935
  msgid ""
5936
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5937
  msgstr ""
5938
 
5939
+ #: templates/admin/table-settings/table_settings_block.inc.php:584
5940
  msgid "\"Previous\" and \"Next\" buttons only"
5941
  msgstr ""
5942
 
5943
+ #: templates/admin/table-settings/table_settings_block.inc.php:585
5944
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5945
  msgstr ""
5946
 
5947
+ #: templates/admin/table-settings/table_settings_block.inc.php:586
5948
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5949
  msgstr ""
5950
 
5951
+ #: templates/admin/table-settings/table_settings_block.inc.php:587
5952
  msgid "Page number buttons only"
5953
  msgstr ""
5954
 
5955
+ #: templates/admin/table-settings/table_settings_block.inc.php:588
5956
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5957
  msgstr ""
5958
 
5959
+ #: templates/admin/table-settings/table_settings_block.inc.php:609
5960
  msgid "Advanced column filters"
5961
  msgstr "Дополнительный фильтр в столбце "
5962
 
5963
+ #: templates/admin/table-settings/table_settings_block.inc.php:617
5964
  msgid "Advanced filter"
5965
  msgstr "Дополнительный фильтр"
5966
 
5967
+ #: templates/admin/table-settings/table_settings_block.inc.php:624
5968
  msgid ""
5969
  "Enable to show an advanced filter for each of the columns, filters can be "
5970
  "shown in table footer, header or in a separate form."
5973
  "могут отображаться в нижнем колонтитуле таблицы, в заголовке или в отдельной "
5974
  "форме."
5975
 
5976
+ #: templates/admin/table-settings/table_settings_block.inc.php:635
5977
  msgid "Enable advanced column filters"
5978
  msgstr "Отображать дополнительные фильтры"
5979
 
5980
+ #: templates/admin/table-settings/table_settings_block.inc.php:658
5981
  msgid ""
5982
  "If this is enabled, each column header will be clickable; clicking will sort "
5983
  "the whole table by the content of this column cells ascending or descending."
5986
  "отсортирует всю таблицу по содержанию ячеек этого столбца по возрастанию или "
5987
  "убыванию."
5988
 
5989
+ #: templates/admin/table-settings/table_settings_block.inc.php:666
5990
  msgid "Allow sorting for the table"
5991
  msgstr "Разрешить сортировку таблицы"
5992
 
5993
+ #: templates/admin/table-settings/table_settings_block.inc.php:674
5994
  msgid "Main search block"
5995
  msgstr "Главное поле поиска"
5996
 
5997
+ #: templates/admin/table-settings/table_settings_block.inc.php:689
5998
  msgid ""
5999
  "If this is enabled, a search block will be displayed on the top right of the "
6000
  "table, allowing to search through whole table with a single input."
6002
  "Если это включено, блок поиска будет отображаться в правом верхнем углу "
6003
  "таблицы, позволяя осуществлять поиск по всей таблице."
6004
 
6005
+ #: templates/admin/table-settings/table_settings_block.inc.php:697
6006
  msgid "Enable search block"
6007
  msgstr "Включить поле поиска"
6008
 
6009
+ #: templates/admin/table-settings/table_settings_block.inc.php:711
6010
  msgid "Filters in a form"
6011
  msgstr "Фильтр во внешней форме"
6012
 
6013
+ #: templates/admin/table-settings/table_settings_block.inc.php:718
6014
  #: templates/edit_table.inc.php:340
6015
  msgid "Filter in form"
6016
  msgstr "Фильтр во внешней форме"
6017
 
6018
+ #: templates/admin/table-settings/table_settings_block.inc.php:725
6019
  msgid ""
6020
  "Enable to show the advanced column filter in a form above the table, instead "
6021
  "of showing in the table footer/header."
6023
  "Включите отображение расширенного фильтра столбцов в форме над таблицей "
6024
  "вместо отображения в нижнем колонтитуле / заголовке таблицы."
6025
 
6026
+ #: templates/admin/table-settings/table_settings_block.inc.php:734
6027
  msgid "Show filters in a form above the table"
6028
  msgstr "Показывать фильтры сверху таблицы"
6029
 
6030
+ #: templates/admin/table-settings/table_settings_block.inc.php:742
6031
  msgid "Clear filters button"
6032
  msgstr "Кнопка \"Очистить фильтры\""
6033
 
6034
+ #: templates/admin/table-settings/table_settings_block.inc.php:749
6035
  #: templates/frontend/filter_form.inc.php:32
6036
  msgid "Clear filters"
6037
  msgstr "Очистить фильтры"
6038
 
6039
+ #: templates/admin/table-settings/table_settings_block.inc.php:753
6040
  msgid "Enable to show the clear filters button."
6041
  msgstr "Показывать кнопку очистки всех фильтров"
6042
 
6043
+ #: templates/admin/table-settings/table_settings_block.inc.php:754
6044
  msgid ""
6045
  "If filter in form is enabled, clear button will be rendered after the last "
6046
  "filter."
6048
  "Если фильтр в форме включен, кнопка очистки будет отображаться после "
6049
  "последнего фильтра."
6050
 
6051
+ #: templates/admin/table-settings/table_settings_block.inc.php:759
6052
  msgid ""
6053
  "Otherwise, clear filter button will be rendered above the table next to "
6054
  "\"Table Tools\" buttons."
6056
  "В противном случае кнопка «Очистить фильтр» будет отображаться над таблицей "
6057
  "рядом с кнопками «Инструменты таблицы»."
6058
 
6059
+ #: templates/admin/table-settings/table_settings_block.inc.php:772
6060
  msgid "Show clear filters button"
6061
  msgstr "Показывать кнопку сброса фильтров"
6062
 
6063
+ #: templates/admin/table-settings/table_settings_block.inc.php:792
6064
  msgid "Allow editing"
6065
  msgstr "Разрешить редактирование в таблице"
6066
 
6067
+ #: templates/admin/table-settings/table_settings_block.inc.php:800
6068
  #: templates/edit_table.inc.php:180
6069
  msgid "Front-end editing"
6070
  msgstr "Онлайн-редактирование с сайта"
6071
 
6072
+ #: templates/admin/table-settings/table_settings_block.inc.php:807
6073
  msgid "Allow editing the table from the front-end."
6074
  msgstr "Разрешить онлайн-редактирование с сайта"
6075
 
6076
+ #: templates/admin/table-settings/table_settings_block.inc.php:815
6077
  msgid "Allow front-end editing"
6078
  msgstr "Онлайн-редактирование с сайта"
6079
 
6080
+ #: templates/admin/table-settings/table_settings_block.inc.php:823
6081
  msgid "Popover edit block"
6082
  msgstr "Всплывающий блок редактирования"
6083
 
6084
+ #: templates/admin/table-settings/table_settings_block.inc.php:831
6085
  #: templates/edit_table.inc.php:232
6086
  msgid "Popover tools"
6087
  msgstr "Всплывающий блок инструментов"
6088
 
6089
+ #: templates/admin/table-settings/table_settings_block.inc.php:838
6090
  msgid ""
6091
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
6092
  "popover when you click on any row, instead of Table Tools block above the "
6096
  "\" и \"Удалить\" отображались во всплывающем блоке по щелчку на строке "
6097
  "таблицы, а не в блоке инструментов над таблицей."
6098
 
6099
+ #: templates/admin/table-settings/table_settings_block.inc.php:846
6100
  msgid "Editing buttons in a popover"
6101
  msgstr "Кнопка РЕДАКТИРОВАТЬ во всплывающем окне"
6102
 
6103
+ #: templates/admin/table-settings/table_settings_block.inc.php:854
6104
+ #: templates/admin/table-settings/table_settings_block.inc.php:862
6105
  msgid "In-line editing"
6106
  msgstr "Редактирование в таблице"
6107
 
6108
+ #: templates/admin/table-settings/table_settings_block.inc.php:869
6109
  msgid ""
6110
  "If this is enabled, front-end users will be able to edit cells by double-"
6111
  "clicking them, not only with the editor dialog."
6114
  "двойному клику на ячейке таблицы, а не только через всплывающее диалоговое "
6115
  "окно"
6116
 
6117
+ #: templates/admin/table-settings/table_settings_block.inc.php:877
6118
  msgid "Allow in-line editing"
6119
  msgstr "Разрешить редактирование в таблице"
6120
 
6121
+ #: templates/admin/table-settings/table_settings_block.inc.php:892
6122
  #: templates/edit_table.inc.php:192
6123
  msgid "MySQL table name for editing"
6124
  msgstr "Имя MySQL-таблицы для редактирования"
6125
 
6126
+ #: templates/admin/table-settings/table_settings_block.inc.php:894
6127
  msgid ""
6128
  "Name of the MySQL table which will be updated when edited from front-end."
6129
  msgstr "Имя MySQL-таблицы, которая будет использоваться для редактирования"
6130
 
6131
+ #: templates/admin/table-settings/table_settings_block.inc.php:899
6132
  msgid "MySQL table name"
6133
  msgstr "Имя базы данных MySQL"
6134
 
6135
+ #: templates/admin/table-settings/table_settings_block.inc.php:908
6136
  #: templates/edit_table.inc.php:203
6137
  msgid "ID column for editing"
6138
  msgstr "ID-колонка для редактирования"
6139
 
6140
+ #: templates/admin/table-settings/table_settings_block.inc.php:910
6141
  msgid ""
6142
  "Choose the column values from which will be used as row identifiers. MUST be "
6143
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
6150
  "wpDataTables будет угадывать правильный столбец, если он называется «id» или "
6151
  "«ID» на стороне MySQL."
6152
 
6153
+ #: templates/admin/table-settings/table_settings_block.inc.php:924
6154
  #: templates/edit_table.inc.php:267
6155
  msgid "Editor roles"
6156
  msgstr "Разрешить редактирование таблицы для следующих ролей"
6157
 
6158
+ #: templates/admin/table-settings/table_settings_block.inc.php:926
6159
  msgid ""
6160
  "If you want only specific user roles to be able to edit the table, choose in "
6161
  "this dropdown. Leave unchecked to allow editing for everyone."
6164
  "редактировать таблицу, выберите в этом раскрывающемся списке. Оставьте не "
6165
  "отмеченным, чтобы разрешить редактирование для всех."
6166
 
6167
+ #: templates/admin/table-settings/table_settings_block.inc.php:931
6168
  msgid "Everyone"
6169
  msgstr "Любой"
6170
 
6171
+ #: templates/admin/table-settings/table_settings_block.inc.php:932
6172
  msgid "Administrators"
6173
  msgstr ""
6174
 
6175
+ #: templates/admin/table-settings/table_settings_block.inc.php:933
6176
  msgid "Editors"
6177
  msgstr ""
6178
 
6179
+ #: templates/admin/table-settings/table_settings_block.inc.php:934
6180
  msgid "Authors"
6181
  msgstr ""
6182
 
6183
+ #: templates/admin/table-settings/table_settings_block.inc.php:935
6184
  msgid "Contributors"
6185
  msgstr ""
6186
 
6187
+ #: templates/admin/table-settings/table_settings_block.inc.php:936
6188
  msgid "Subscribers"
6189
  msgstr ""
6190
 
6191
+ #: templates/admin/table-settings/table_settings_block.inc.php:951
6192
  msgid "Users see and edit only own data"
6193
  msgstr ""
6194
  "Разрешать пользователям видеть и редактировать только собственные данные"
6195
 
6196
+ #: templates/admin/table-settings/table_settings_block.inc.php:959
6197
  msgid "Users see and edit only their own data"
6198
  msgstr ""
6199
  "Разрешать пользователям видеть и редактировать только собственные данные"
6200
 
6201
+ #: templates/admin/table-settings/table_settings_block.inc.php:966
6202
  msgid ""
6203
  "If this is enabled, users will see and edit only the rows that are related "
6204
  "to them or were created by them (associated using the User ID column)."
6207
  "строки, которые связаны с ними или были созданы ими (связаны с "
6208
  "использованием столбца ID пользователя)."
6209
 
6210
+ #: templates/admin/table-settings/table_settings_block.inc.php:974
6211
  msgid "Limit editing to own data only"
6212
  msgstr ""
6213
  "Ограничить возможность редактирования для пользователей только их "
6214
  "собственными данными"
6215
 
6216
+ #: templates/admin/table-settings/table_settings_block.inc.php:982
6217
  #: templates/edit_table.inc.php:250
6218
  msgid "User ID column"
6219
  msgstr "Колонка-идентификатор пользователя"
6220
 
6221
+ #: templates/admin/table-settings/table_settings_block.inc.php:984
6222
  msgid ""
6223
  "Choose the column values from which will be used as User identifiers. "
6224
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
6228
  "пользователя. Ссылка на идентификатор из таблицы пользователей WordPress "
6229
  "(wp_users) ДОЛЖНА быть определена как целое число на стороне MySQL."
6230
 
6231
+ #: templates/admin/table-settings/table_settings_block.inc.php:1017
6232
  #: templates/edit_table.inc.php:350
6233
  msgid "Table tools"
6234
  msgstr "Блок табличных инструментов"
6235
 
6236
+ #: templates/admin/table-settings/table_settings_block.inc.php:1024
6237
  msgid ""
6238
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6239
  msgstr ""
6240
  "Если это включено, панель инструментов с полезными инструментами будет "
6241
  "отображаться над таблицей"
6242
 
6243
+ #: templates/admin/table-settings/table_settings_block.inc.php:1032
6244
  msgid "Enable Table Tools"
6245
  msgstr "Включить блок инструментов таблицы"
6246
 
6247
+ #: templates/admin/table-settings/table_settings_block.inc.php:1040
6248
  msgid "Buttons"
6249
  msgstr "Кнопки"
6250
 
6251
+ #: templates/admin/table-settings/table_settings_block.inc.php:1042
6252
  msgid "Choose which buttons to show in the Table Tools block."
6253
  msgstr "Выберите, какие кнопки показывать в блоке Table Tools."
6254
 
6255
+ #: templates/admin/table-settings/table_settings_block.inc.php:1048
6256
  msgid "Columns visibility"
6257
  msgstr "Видимость столбца"
6258
 
6259
+ #: templates/admin/table-settings/table_settings_block.inc.php:1080
6260
  msgid ""
6261
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6262
  "that will be replaced with some actual values at the execution time; usually "
6263
+ "this is used for SQL queries, but you can use it for filtering and editing "
6264
+ "for manual tables and only filtering for tables created from XML, JSON, "
6265
+ "Excel, CSV, Google Spreadsheet and PHP Serialized array."
6266
  msgstr ""
6267
 
6268
+ #: templates/admin/table-settings/table_settings_block.inc.php:1094
6269
+ #: templates/admin/table-settings/table_settings_block.inc.php:1109
6270
+ #: templates/admin/table-settings/table_settings_block.inc.php:1124
6271
  msgid ""
6272
  "This placeholder will be replaced with any value that you will provide in a "
6273
  "shortcode. Provide a default value here that will be used for table "
6277
  "шорткоде. Укажите здесь значение по умолчанию, которое будет использоваться "
6278
  "для генерации таблицы, а когда другое значение не определено в шорткоде."
6279
 
6280
+ #: templates/admin/table-settings/table_settings_block.inc.php:1099
6281
+ #: templates/admin/table-settings/table_settings_block.inc.php:1114
6282
+ #: templates/admin/table-settings/table_settings_block.inc.php:1129
6283
+ #: templates/admin/table-settings/table_settings_block.inc.php:1152
6284
+ #: templates/admin/table-settings/table_settings_block.inc.php:1170
6285
+ #: templates/admin/table-settings/table_settings_block.inc.php:1188
6286
+ #: templates/admin/table-settings/table_settings_block.inc.php:1210
6287
+ #: templates/admin/table-settings/table_settings_block.inc.php:1228
6288
+ #: templates/admin/table-settings/table_settings_block.inc.php:1246
6289
+ #: templates/admin/table-settings/table_settings_block.inc.php:1271
6290
+ #: templates/admin/table-settings/table_settings_block.inc.php:1291
6291
+ #: templates/admin/table-settings/table_settings_block.inc.php:1310
6292
+ #: templates/admin/table-settings/table_settings_block.inc.php:1332
6293
  msgid "Default for table generation"
6294
  msgstr "Значение по умолчанию для инициализирования таблицы"
6295
 
6296
+ #: templates/admin/table-settings/table_settings_block.inc.php:1145
6297
  msgid ""
6298
  "This placeholder will be replaced with the ID of currently logged in user. "
6299
  "Provide a value here to be used for table generation"
6302
  "пользователя. Укажите здесь значение, которое будет использоваться для "
6303
  "генерации таблицы"
6304
 
6305
+ #: templates/admin/table-settings/table_settings_block.inc.php:1162
6306
  msgid ""
6307
  "This placeholder will be replaced with the login of currently logged in "
6308
  "user. Provide a value here to be used for table generation"
6310
  "Этот заполнитель будет заменен именем пользователя, вошедшего в систему. "
6311
  "Укажите здесь значение, которое будет использоваться для генерации таблицы"
6312
 
6313
+ #: templates/admin/table-settings/table_settings_block.inc.php:1180
6314
  msgid ""
6315
+ "This placeholder will be replaced with the Email of currently logged in "
6316
+ "user. Provide a value here to be used for table generation"
6317
  msgstr ""
 
 
6318
 
6319
+ #: templates/admin/table-settings/table_settings_block.inc.php:1204
6320
  msgid ""
6321
  "This placeholder will be replaced with the ID of current post. Provide a "
6322
  "value here to be used for table generation"
6324
  "Этот заполнитель будет заменен идентификатором текущей записи. Укажите здесь "
6325
  "значение, которое будет использоваться для генерации таблицы"
6326
 
6327
+ #: templates/admin/table-settings/table_settings_block.inc.php:1220
6328
+ msgid ""
6329
+ "This placeholder will be replaced with the First Name of currently logged in "
6330
+ "user. Provide a value here to be used for table generation"
6331
+ msgstr ""
6332
+ "Этот заполнитель будет заменен именем, зарегистрированным в данный момент. "
6333
+ "Укажите здесь значение, которое будет использоваться для генерации таблицы"
6334
+
6335
+ #: templates/admin/table-settings/table_settings_block.inc.php:1238
6336
+ msgid ""
6337
+ "This placeholder will be replaced with the Last Name of currently logged in "
6338
+ "user. Provide a value here to be used for table generation"
6339
+ msgstr ""
6340
+ "Этот заполнитель будет заменен фамилией текущего пользователя, вошедшего в "
6341
+ "систему. Укажите здесь значение, которое будет использоваться для генерации "
6342
+ "таблицы"
6343
+
6344
+ #: templates/admin/table-settings/table_settings_block.inc.php:1262
6345
+ msgid "This placeholder will be replaced with current date."
6346
+ msgstr "Этот заполнитель будет заменен текущей датой."
6347
+
6348
+ #: templates/admin/table-settings/table_settings_block.inc.php:1281
6349
+ msgid "This placeholder will be replaced with current datetime."
6350
+ msgstr "Этот заполнитель будет заменен на текущую дату и время."
6351
+
6352
+ #: templates/admin/table-settings/table_settings_block.inc.php:1301
6353
+ msgid "This placeholder will be replaced with current time."
6354
+ msgstr "Этот заполнитель будет заменен текущим временем."
6355
+
6356
+ #: templates/admin/table-settings/table_settings_block.inc.php:1325
6357
+ msgid ""
6358
+ "This placeholder will be replaced with the current prefix of WordPress "
6359
+ "database. Provide a value here to be used for table generation"
6360
+ msgstr ""
6361
+ "Этот заполнитель будет заменен текущим префиксом базы данных WordPress. "
6362
+ "Укажите здесь значение, которое будет использоваться для генерации таблицы"
6363
+
6364
+ #: templates/admin/table-settings/table_settings_block.inc.php:1356
6365
+ msgid ""
6366
+ "In premium version you can customize each table with different skin, font, "
6367
+ "background , colors and lot more. Checkout new table customize settings "
6368
+ "below."
6369
+ msgstr ""
6370
+
6371
+ #: templates/admin/table-settings/table_settings_block.inc.php:1363
6372
+ msgid "Main"
6373
+ msgstr ""
6374
+
6375
+ #: templates/admin/table-settings/table_settings_block.inc.php:1375
6376
+ msgid "Table border"
6377
+ msgstr ""
6378
+
6379
+ #: templates/admin/table-settings/table_settings_block.inc.php:1391
6380
+ msgid "Custom CSS"
6381
+ msgstr ""
6382
+
6383
+ #: templates/admin/table-settings/table_settings_block.inc.php:1716
6384
+ msgid "Remove borders in table header"
6385
+ msgstr ""
6386
+
6387
+ #: templates/admin/table-settings/table_settings_block.inc.php:2028
6388
+ msgid ""
6389
+ "This CSS will be inserted as an inline style block on every page that has "
6390
+ "this wpDataTable."
6391
+ msgstr ""
6392
+
6393
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6394
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6395
  msgid "Go to Dashboard"
8357
  #~ "только для таблиц, созданных из XML, JSON, Excel, CSV, Google Spreadsheet "
8358
  #~ "и PHP Serialized array."
8359
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8360
  #~ msgid "Create a table linked to an existing data source"
8361
  #~ msgstr "Создать таблицу ссылающуюся на существующий источник данных"
8362
 
languages/sl_SI/wpdatatables-sl_SI.mo CHANGED
Binary file
languages/sl_SI/wpdatatables-sl_SI.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-01-15 17:05+0100\n"
5
- "PO-Revision-Date: 2021-01-15 17:05+0100\n"
6
  "Last-Translator: Bostjan Laba <bostjan@neolink.si>\n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: sl_SI\n"
@@ -110,13 +110,13 @@ msgstr ""
110
  msgid "Go Premium"
111
  msgstr ""
112
 
113
- #: controllers/wdt_admin.php:516 controllers/wdt_admin.php:565
114
- #: controllers/wdt_admin.php:608 controllers/wdt_admin.php:629
115
- #: controllers/wdt_admin.php:676 controllers/wdt_admin.php:702
116
- #: controllers/wdt_admin.php:721 controllers/wdt_admin.php:741
117
- #: controllers/wdt_admin.php:760 controllers/wdt_admin.php:780
118
- #: controllers/wdt_admin.php:800 controllers/wdt_admin.php:820
119
- #: controllers/wdt_admin.php:839
120
  msgid "You do not have sufficient permissions to access this page."
121
  msgstr "Nimate dovolj pravic za dostop do te strani."
122
 
@@ -223,6 +223,27 @@ msgstr ""
223
  "kratka koda se bo vstavila samodejno. Lahko določite vrednosti za ograde in "
224
  "tudi za izvoz datoteke datoteke."
225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
  #: source/class.wdtbrowsechartstable.php:141
227
  #: source/class.wdtbrowsetable.php:168
228
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
@@ -245,7 +266,7 @@ msgid "Configure"
245
  msgstr "Nastavi"
246
 
247
  #: source/class.wdtbrowsechartstable.php:162
248
- #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:303
249
  #: templates/admin/browse/bulk_actions.inc.php:14
250
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
251
  msgid "Delete"
@@ -327,6 +348,11 @@ msgstr "Izberi vse"
327
  msgid "No wpDataCharts in the system yet."
328
  msgstr "V sistemu še ni wpDataCharts."
329
 
 
 
 
 
 
330
  #: source/class.wdtbrowsetable.php:231
331
  msgid "MySQL"
332
  msgstr "MySQL"
@@ -335,15 +361,15 @@ msgstr "MySQL"
335
  msgid "Manual"
336
  msgstr "Ročno"
337
 
338
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2216
339
- #: source/class.wpdatatable.php:2286
340
- #: templates/admin/table-settings/table_settings_block.inc.php:1031
341
  msgid "Excel"
342
  msgstr "Excel"
343
 
344
- #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2225
345
- #: source/class.wpdatatable.php:2296
346
- #: templates/admin/table-settings/table_settings_block.inc.php:1032
347
  msgid "CSV"
348
  msgstr "CSV"
349
 
@@ -356,7 +382,7 @@ msgid "JSON"
356
  msgstr "JSON"
357
 
358
  #: source/class.wdtbrowsetable.php:249
359
- #: templates/admin/table-settings/table_settings_block.inc.php:111
360
  #: templates/edit_table.inc.php:91
361
  msgid "Serialized PHP array"
362
  msgstr "Serializirani niz PHP"
@@ -446,7 +472,7 @@ msgstr "Slika"
446
  msgid "Attachment"
447
  msgstr "Priponka"
448
 
449
- #: source/class.wdttools.php:159
450
  msgid ""
451
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
452
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
@@ -456,15 +482,15 @@ msgstr ""
456
  "objavljen. <br/> Lahko ga objavite tako, da <b>odprete datoteko -> objava v "
457
  "spletu</b>"
458
 
459
- #: source/class.wdttools.php:287
460
  msgid "Back to date"
461
  msgstr "Nazaj na datum"
462
 
463
- #: source/class.wdttools.php:288
464
  msgid "Browse"
465
  msgstr "Prebrskaj"
466
 
467
- #: source/class.wdttools.php:289 source/class.wdttools.php:410
468
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
469
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
470
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
@@ -482,24 +508,24 @@ msgstr "Prebrskaj"
482
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
483
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
484
  #: templates/admin/table-settings/table_preview_block.inc.php:86
485
- #: templates/admin/table-settings/table_settings_block.inc.php:40
486
  #: templates/common/delete_modal.inc.php:39
487
  msgid "Cancel"
488
  msgstr "Prekliči"
489
 
490
- #: source/class.wdttools.php:290
491
  msgid " field cannot be empty!"
492
  msgstr "polje ne more biti prazno!"
493
 
494
- #: source/class.wdttools.php:291
495
  msgid "Use selected file"
496
  msgstr "Uporabi izbrano datoteko"
497
 
498
- #: source/class.wdttools.php:292
499
  msgid "Choose file"
500
  msgstr "Izberite datoteko"
501
 
502
- #: source/class.wdttools.php:293 templates/admin/common/error_modal.inc.php:23
503
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
504
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
505
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
@@ -507,379 +533,389 @@ msgstr "Izberite datoteko"
507
  msgid "Close"
508
  msgstr "Zapri"
509
 
510
- #: source/class.wdttools.php:294
511
  msgid "Column has been added!"
512
  msgstr "Stolpec je dodan!"
513
 
514
- #: source/class.wdttools.php:295
515
  msgid "Column header cannot be empty!"
516
  msgstr "Glava stolpca ne more biti prazna!"
517
 
518
- #: source/class.wdttools.php:296
519
  msgid "Please confirm column deletion!"
520
  msgstr "Potrdite brisanje stolpca!"
521
 
522
- #: source/class.wdttools.php:297
523
  msgid "Column has been removed!"
524
  msgstr "Stolpec je bil odstranjen!"
525
 
526
- #: source/class.wdttools.php:298
527
  msgid "Please select columns that you want to use in table"
528
  msgstr "Izberite stolpce, ki jih želite uporabiti v tabeli"
529
 
530
- #: source/class.wdttools.php:299 source/class.wpdatatable.php:2234
531
- #: source/class.wpdatatable.php:2306
532
- #: templates/admin/table-settings/table_settings_block.inc.php:1033
533
  msgid "Copy"
534
  msgstr "Kopiraj"
535
 
536
- #: source/class.wdttools.php:300
537
  msgid "There was an error trying to insert a new row!"
538
  msgstr "Pri poskusu vstavitve nove vrstice je prišlo do napake!"
539
 
540
- #: source/class.wdttools.php:301
541
  msgid "Data has been saved!"
542
  msgstr "Podatki so shranjeni!"
543
 
544
- #: source/class.wdttools.php:302
545
  msgid "detach"
546
  msgstr "loči"
547
 
548
- #: source/class.wdttools.php:304
549
  msgid "Delete selected"
550
  msgstr "Izbriši izbrano"
551
 
552
- #: source/class.wdttools.php:305 templates/settings.inc.php:553
553
  #: templates/settings.inc.php:627
554
  msgid "Error!"
555
  msgstr "Napaka!"
556
 
557
- #: source/class.wdttools.php:306
558
  msgid "Please upload or choose a file from Media Library!"
559
  msgstr "Prenesite ali izberite datoteko iz Knjižnice medijev!"
560
 
561
- #: source/class.wdttools.php:307
562
  msgid "From"
563
  msgstr "Od"
564
 
565
- #: source/class.wdttools.php:308
566
  msgid "Please provide a valid e-mail address for field"
567
  msgstr "V polje vnesite veljaven e-poštni naslov"
568
 
569
- #: source/class.wdttools.php:309
570
  msgid "Please provide a valid URL link for field"
571
  msgstr "Navedite veljavno povezavo URL za polje"
572
 
573
- #: source/class.wdttools.php:310
574
  msgid "You have entered invalid value. Press ESC to cancel."
575
  msgstr "Vnesli ste neveljavno vrednost. Za preklic pritisnite ESC."
576
 
577
- #: source/class.wdttools.php:311 source/class.wdttools.php:340
578
  msgid "Show _MENU_ entries"
579
  msgstr "Prikaži _MENU_ postavke"
580
 
581
- #: source/class.wdttools.php:312
582
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
583
  msgid "Merge"
584
  msgstr "Združi"
585
 
586
- #: source/class.wdttools.php:313
587
  msgid "New column"
588
  msgstr "Nov stolpec"
589
 
590
- #: source/class.wdttools.php:314
591
  msgid "Number of columns can not be empty or 0"
592
  msgstr ""
593
 
594
- #: source/class.wdttools.php:315
595
  msgid "Number of rows can not be empty or 0"
596
  msgstr ""
597
 
598
- #: source/class.wdttools.php:317
599
  msgid ": activate to sort column ascending"
600
  msgstr ": aktivirate, da razvrstite stolpec po naraščajočem stolpcu"
601
 
602
- #: source/class.wdttools.php:318
603
  msgid ": activate to sort column descending"
604
  msgstr ": aktiviranje za razvrščanje stolpca po padajočem"
605
 
606
- #: source/class.wdttools.php:320
607
  msgid "Ok"
608
  msgstr "V redu"
609
 
610
- #: source/class.wdttools.php:322
611
  msgid "First"
612
  msgstr "Prvi"
613
 
614
- #: source/class.wdttools.php:323
615
  msgid "Last"
616
  msgstr "Zadnji"
617
 
618
- #: source/class.wdttools.php:324
619
  msgid "Next"
620
  msgstr "Naprej"
621
 
622
- #: source/class.wdttools.php:325
623
  msgid "Previous"
624
  msgstr "Prejšnje"
625
 
626
- #: source/class.wdttools.php:327
627
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
628
  msgid "Replace"
629
  msgstr "Zamenjaj"
630
 
631
- #: source/class.wdttools.php:328
632
  msgid "Row has been deleted!"
633
  msgstr "Vrstica je bila izbrisana!"
634
 
635
- #: source/class.wdttools.php:329
 
 
 
 
636
  msgid "Select a file to use in table"
637
  msgstr "Izberite datoteko, ki jo želite uporabiti v tabeli"
638
 
639
- #: source/class.wdttools.php:330
640
  msgid "Select an Excel or CSV file"
641
  msgstr "Izberite datoteko Excel ali CSV"
642
 
643
- #: source/class.wdttools.php:331
644
  msgid "No data available in table"
645
  msgstr "V tabeli ni na voljo podatkov"
646
 
647
- #: source/class.wdttools.php:332
648
  msgid "Plugin settings saved successfully"
649
  msgstr "Nastavitve vtičnika so uspešno shranjene"
650
 
651
- #: source/class.wdttools.php:333
652
  msgid ""
653
  "Unable to save settings of plugin. Please try again or contact us over "
654
  "Support page."
655
  msgstr ""
656
 
657
- #: source/class.wdttools.php:334
658
  msgid "Shortcode has been copied to the clipboard."
659
  msgstr "Kratka koda je bila kopirana v odložišče."
660
 
661
- #: source/class.wdttools.php:335
662
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
663
  msgstr "Prikazuje _START_ do _END_ od _TOTAL_ navedb"
664
 
665
- #: source/class.wdttools.php:336
666
  msgid "Showing 0 to 0 of 0 entries"
667
  msgstr "Prikazuje 0 do 0 od 0 postavk"
668
 
669
- #: source/class.wdttools.php:337
670
  msgid "(filtered from _MAX_ total entries)"
671
  msgstr "(filtrirano od _MAX_ vseh izpisov)"
672
 
673
- #: source/class.wdttools.php:339
674
  msgid ","
675
  msgstr ","
676
 
677
- #: source/class.wdttools.php:341
678
  msgid "Loading..."
679
  msgstr "Nalaganje..."
680
 
681
- #: source/class.wdttools.php:342
682
  msgid "Processing..."
683
  msgstr "Obdelujem..."
684
 
685
- #: source/class.wdttools.php:343
686
  msgid "SQL error"
687
  msgstr "Napaka SQL"
688
 
689
- #: source/class.wdttools.php:344
690
  msgid "Search: "
691
  msgstr "Iskanje:"
692
 
693
- #: source/class.wdttools.php:345 templates/settings.inc.php:559
694
  #: templates/settings.inc.php:625
695
  msgid "Success!"
696
  msgstr "Uspeh!"
697
 
698
- #: source/class.wdttools.php:346
699
  msgid "No matching records found"
700
  msgstr "Ujemljivih zapisov ni mogoče najti"
701
 
702
- #: source/class.wdttools.php:347
703
  msgid ""
704
  "System info data has been copied to the clipboard. You can now paste it in "
705
  "file or in support topic."
706
  msgstr ""
707
 
708
- #: source/class.wdttools.php:348
709
  msgid "Table saved successfully!"
710
  msgstr "Tabela je uspešno shranjena!"
711
 
712
- #: source/class.wdttools.php:349
713
  msgid "To"
714
  msgstr "Do"
715
 
716
- #: source/class.wdttools.php:385
717
  #: templates/admin/common/premium_modal.inc.php:17
 
 
718
  msgid "This is a premium feature"
719
  msgstr ""
720
 
721
- #: source/class.wdttools.php:386
722
  #: templates/admin/common/premium_modal.inc.php:26
 
 
723
  msgid "This feature is available only in premium version of wpDataTables"
724
  msgstr ""
725
 
726
- #: source/class.wdttools.php:387
727
  #: templates/admin/getting-started/getting_started.inc.php:133
728
  #: templates/admin/getting-started/getting_started.inc.php:145
729
  #: templates/admin/getting-started/getting_started.inc.php:157
730
  #: templates/admin/getting-started/getting_started.inc.php:169
 
 
731
  msgid "Compare and View Pricing"
732
  msgstr ""
733
 
734
- #: source/class.wdttools.php:406
735
  msgid "Field cannot be empty!"
736
  msgstr ""
737
 
738
- #: source/class.wdttools.php:407
739
  msgid "Please choose chart type."
740
  msgstr ""
741
 
742
- #: source/class.wdttools.php:408
743
  msgid "Please select wpDataTable from dropdown."
744
  msgstr ""
745
 
746
- #: source/class.wdttools.php:409
747
  msgid "Columns field cannot be empty"
748
  msgstr ""
749
 
750
- #: source/class.wdttools.php:411
751
  msgid ""
752
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
753
  "clicking on Cancel button."
754
  msgstr ""
755
 
756
- #: source/class.wdttools.php:412
757
  msgid "Finish Tutorial"
758
  msgstr "Dokončaj vadnico"
759
 
760
- #: source/class.wdttools.php:413
761
  msgid "Continue"
762
  msgstr "Nadaljuj"
763
 
764
- #: source/class.wdttools.php:414
765
  msgid "Start"
766
  msgstr "Začetek"
767
 
768
- #: source/class.wdttools.php:415
769
  msgid "Skip Tutorial"
770
  msgstr "Preskoči vadnico"
771
 
772
- #: source/class.wdttools.php:418 source/class.wdttools.php:484
773
- #: source/class.wdttools.php:526
774
  msgid "Welcome to the tutorial!"
775
  msgstr "Dobrodošli na vadnici!"
776
 
777
- #: source/class.wdttools.php:419 source/class.wdttools.php:485
778
- #: source/class.wdttools.php:527
779
  msgid "Hello "
780
  msgstr "Pozdravljeni "
781
 
782
- #: source/class.wdttools.php:419
783
  msgid ""
784
  ", in this tutorial, we will show you how to create a simple table from "
785
  "scratch by choosing a custom number of columns and rows. How to customize "
786
  "each cell, merge cells and a lot more."
787
  msgstr ""
788
 
789
- #: source/class.wdttools.php:422
790
  msgid " Let's create a new wpDataTable from scratch!"
791
  msgstr ""
792
 
793
- #: source/class.wdttools.php:423 source/class.wdttools.php:489
794
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
795
  msgstr "Kliknite »Ustvari tabelo« za dostop do čarovnika tabele wpDataTables."
796
 
797
- #: source/class.wdttools.php:426
798
  msgid "Choose this option"
799
  msgstr "Izberite to možnost"
800
 
801
- #: source/class.wdttools.php:427
802
  msgid "Please select 'Create a simple table from scratch'."
803
  msgstr ""
804
 
805
- #: source/class.wdttools.php:430 source/class.wdttools.php:496
806
  msgid "Click Next"
807
  msgstr "Kliknite Naprej"
808
 
809
- #: source/class.wdttools.php:431 source/class.wdttools.php:497
810
  msgid "Please click the 'Next' button to continue."
811
  msgstr "Za nadaljevanje kliknite gumb »Naprej«."
812
 
813
- #: source/class.wdttools.php:434
814
  msgid "Welcome to the Simple table wizard!"
815
  msgstr ""
816
 
817
- #: source/class.wdttools.php:435
818
  msgid "Please click 'Continue' button to move on."
819
  msgstr ""
820
 
821
- #: source/class.wdttools.php:438
822
  msgid "Choose a name for your table"
823
  msgstr "Izberite ime za mizo"
824
 
825
- #: source/class.wdttools.php:439
826
  msgid "After inserting table name, click 'Continue' to move on."
827
  msgstr ""
828
 
829
- #: source/class.wdttools.php:442
830
  msgid "Choose the number of columns for your table"
831
  msgstr ""
832
 
833
- #: source/class.wdttools.php:443
834
  msgid ""
835
  "Please choose how many columns it will have. Remember that you can always "
836
  "add or reduce the number of columns later. Click 'Continue' when you finish."
837
  msgstr ""
838
 
839
- #: source/class.wdttools.php:446
840
  msgid "Choose the number of rows for your table."
841
  msgstr ""
842
 
843
- #: source/class.wdttools.php:447
844
  msgid ""
845
  "Please choose how many rows it will have. Remember that you can always add "
846
  "or reduce the number of rows later. Click 'Continue' when you finish."
847
  msgstr ""
848
 
849
- #: source/class.wdttools.php:450
850
  msgid "Click on the 'Generate Table' button"
851
  msgstr ""
852
 
853
- #: source/class.wdttools.php:451
854
  msgid "When you click on the button, the empty table will be ready for you. "
855
  msgstr ""
856
 
857
- #: source/class.wdttools.php:454
858
  msgid "We are generating the table..."
859
  msgstr ""
860
 
861
- #: source/class.wdttools.php:455
862
  msgid "Please, when you see the table, click 'Continue' to move on."
863
  msgstr ""
864
 
865
- #: source/class.wdttools.php:458
866
  msgid ""
867
  "Nice job! You just configured your table and it is ready to fill it with "
868
  "data."
869
  msgstr ""
870
 
871
- #: source/class.wdttools.php:459
872
  msgid ""
873
  "Now we will guide you on how to insert data and check table layout throw "
874
  "Simple table editor, table toolbar and table preview. Please click "
875
  "'Continue' to move on."
876
  msgstr ""
877
 
878
- #: source/class.wdttools.php:462
879
  msgid "This is Simple table editor"
880
  msgstr ""
881
 
882
- #: source/class.wdttools.php:463
883
  msgid ""
884
  "Here you can populate your table with data. <br><br>You can move around the "
885
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
@@ -888,11 +924,11 @@ msgid ""
888
  "line of the row header. Click 'Continue' to move on."
889
  msgstr ""
890
 
891
- #: source/class.wdttools.php:466
892
  msgid "Check out the Simple table toolbar"
893
  msgstr ""
894
 
895
- #: source/class.wdttools.php:467
896
  msgid ""
897
  "Here you can style and insert custom data for each cell or range of cells. "
898
  "You can add or delete columns and rows, merge cells, customize sections by "
@@ -900,39 +936,39 @@ msgid ""
900
  "ratings or custom HTML code."
901
  msgstr ""
902
 
903
- #: source/class.wdttools.php:470
904
  msgid "Responsive table views"
905
  msgstr ""
906
 
907
- #: source/class.wdttools.php:471
908
  msgid ""
909
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
910
  "tab that you need, so you can make sure your table looks excellent across "
911
  "all devices. "
912
  msgstr ""
913
 
914
- #: source/class.wdttools.php:474
915
  msgid "Real-time preview"
916
  msgstr ""
917
 
918
- #: source/class.wdttools.php:475
919
  msgid ""
920
  "Here you will see how your table will look like on the page. Please click "
921
  "'Continue' to move on."
922
  msgstr ""
923
 
924
- #: source/class.wdttools.php:478
925
  msgid "Congrats! Your table is ready."
926
  msgstr ""
927
 
928
- #: source/class.wdttools.php:479
929
  msgid ""
930
  "Now you can copy the shortcode for this table, and check out how it looks on "
931
  "your website when you paste it to a post or page. You can always come back "
932
  "and edit the table as you like."
933
  msgstr ""
934
 
935
- #: source/class.wdttools.php:485
936
  msgid ""
937
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
938
  "existing data source. \"Linked\" in this context means that if you create a "
@@ -946,44 +982,44 @@ msgstr ""
946
  "te datoteke vsakič, ko se naloži, in tako poskrbel, da se vse spremembe "
947
  "vrednosti tabele takoj odražajo v tabeli."
948
 
949
- #: source/class.wdttools.php:488
950
  msgid "Let's create a new wpDataTable!"
951
  msgstr "Ustvarimo novo wpDataTable!"
952
 
953
- #: source/class.wdttools.php:492
954
  msgid "Choose this option."
955
  msgstr "Izberite to možnost."
956
 
957
- #: source/class.wdttools.php:493
958
  msgid "Please select 'Create a table linked to an existing data source'."
959
  msgstr "Izberite „Ustvari tabelo, povezano z obstoječim virom podatkov“."
960
 
961
- #: source/class.wdttools.php:500
962
- #: templates/admin/table-settings/table_settings_block.inc.php:95
963
  msgid "Input data source type"
964
  msgstr "Vrsta vhodnih podatkovnih podatkov"
965
 
966
- #: source/class.wdttools.php:501
967
  msgid "Please select a data source type that you need."
968
  msgstr "Izberite vrsto vira podatkov, ki jo potrebujete."
969
 
970
- #: source/class.wdttools.php:504
971
  msgid "Select Data source type"
972
  msgstr "Izberite Vrsta vira podatkov"
973
 
974
- #: source/class.wdttools.php:505
975
  msgid ""
976
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
977
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
978
  "are available in Premium version)"
979
  msgstr ""
980
 
981
- #: source/class.wdttools.php:508
982
- #: templates/admin/table-settings/table_settings_block.inc.php:122
983
  msgid "Input file path or URL"
984
  msgstr "Pot ali URL vhodne datoteke"
985
 
986
- #: source/class.wdttools.php:509
987
  msgid ""
988
  "Upload your file or provide the full URL here. When you finish click "
989
  "'Continue' button."
@@ -991,11 +1027,11 @@ msgstr ""
991
  "Naložite datoteko ali navedite celoten URL tukaj. Ko končate, kliknite gumb "
992
  "»Nadaljuj«."
993
 
994
- #: source/class.wdttools.php:512
995
  msgid "Click Save Changes"
996
  msgstr "Kliknite Shrani spremembe"
997
 
998
- #: source/class.wdttools.php:513
999
  msgid ""
1000
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1001
  "get an error message after button click and you are not able to solve it, "
@@ -1009,11 +1045,11 @@ msgstr ""
1009
  "uporabljate za izdelavo te tabele, in kopirajte sporočilo o napaki in "
1010
  "kliknite Preskoči vadnico."
1011
 
1012
- #: source/class.wdttools.php:516
1013
  msgid "The table is creating..."
1014
  msgstr "Tabela ustvarja ..."
1015
 
1016
- #: source/class.wdttools.php:517
1017
  msgid ""
1018
  "Now the table is creating. Wait until you see it in the background and then "
1019
  "click 'Continue'."
@@ -1021,11 +1057,11 @@ msgstr ""
1021
  "Zdaj tabela ustvarja. Počakajte, da ga vidite v ozadju in kliknite "
1022
  "»Nadaljuj«."
1023
 
1024
- #: source/class.wdttools.php:520
1025
  msgid "Nice job! You just created your first wpDataTable!"
1026
  msgstr "Dobro opravljeno! Pravkar ste ustvarili svoj prvi wpDataTable!"
1027
 
1028
- #: source/class.wdttools.php:521
1029
  msgid ""
1030
  "Now you can copy the shortcode for this table, and check out how it looks on "
1031
  "your website when you paste it to a post or page."
@@ -1033,7 +1069,7 @@ msgstr ""
1033
  "Zdaj lahko kopirate bližnjico za to tabelo in preverite, kako je videti na "
1034
  "vašem spletnem mestu, ko jo prilepite v objavo ali stran."
1035
 
1036
- #: source/class.wdttools.php:527
1037
  msgid ""
1038
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1039
  "plugin."
@@ -1041,20 +1077,20 @@ msgstr ""
1041
  ", v tej vadnici vam bomo pokazali, kako ustvariti grafikon v vtičniku "
1042
  "wpDataTables."
1043
 
1044
- #: source/class.wdttools.php:530
1045
  msgid "Let's create a new wpDataTables Chart!"
1046
  msgstr "Ustvarimo novo shemo wpDataTables!"
1047
 
1048
- #: source/class.wdttools.php:531
1049
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1050
  msgstr ""
1051
  "Kliknite »Ustvari grafikon« za dostop do čarovnika za grafikone wpDataTables."
1052
 
1053
- #: source/class.wdttools.php:534
1054
  msgid "Welcome to the Chart Wizard!"
1055
  msgstr "Dobrodošli v Čarovniku za grafikone!"
1056
 
1057
- #: source/class.wdttools.php:535
1058
  msgid ""
1059
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1060
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
@@ -1062,11 +1098,11 @@ msgstr ""
1062
  "Zdaj ste na prvem koraku; vam bomo predstavili poglavje čarovnika za "
1063
  "grafikone wpDataTables. <br><br> Za premik naprej kliknite gumb »Nadaljuj«."
1064
 
1065
- #: source/class.wdttools.php:538
1066
  msgid "Follow the steps in the Chart Wizard"
1067
  msgstr "Sledite korakom v čarovniku Chart"
1068
 
1069
- #: source/class.wdttools.php:539
1070
  msgid ""
1071
  "By following these steps, you will finish building your chart in the Chart "
1072
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
@@ -1076,41 +1112,41 @@ msgstr ""
1076
  "grafikone. Trenutni korak bo vedno označen z modro barvo. <br><br> Za premik "
1077
  "naprej kliknite gumb »Nadaljuj«."
1078
 
1079
- #: source/class.wdttools.php:542
1080
  msgid "Choose a name for your Chart"
1081
  msgstr "Izberite ime za grafikon"
1082
 
1083
- #: source/class.wdttools.php:543
1084
  msgid "Click 'Continue' button when you’re ready to move forward."
1085
  msgstr "Ko ste pripravljeni za premik naprej, kliknite gumb »Nadaljuj«."
1086
 
1087
- #: source/class.wdttools.php:546
1088
  msgid "In wpDataTables you can find several charts render engines."
1089
  msgstr "V wpDataTables lahko najdete več grafikonov."
1090
 
1091
- #: source/class.wdttools.php:547
1092
  msgid ""
1093
  "Click on the dropdown, and you will see several options that you can choose "
1094
  "from.(Google charts are only available) <br><br>To continue, click on the "
1095
  "dropdown."
1096
  msgstr ""
1097
 
1098
- #: source/class.wdttools.php:550
1099
  msgid "Choose Google chart engine."
1100
  msgstr ""
1101
 
1102
- #: source/class.wdttools.php:551
1103
  msgid ""
1104
  "By clicking on Google chart options, you will choose the engine that will "
1105
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1106
  "to move forward."
1107
  msgstr ""
1108
 
1109
- #: source/class.wdttools.php:554
1110
  msgid "Different charts types. "
1111
  msgstr ""
1112
 
1113
- #: source/class.wdttools.php:555
1114
  msgid ""
1115
  "Here you can choose a chart type. Please, click on the chart type that you "
1116
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
@@ -1119,15 +1155,15 @@ msgstr ""
1119
  "Tu lahko izberete vrsto grafikona. Prosimo, kliknite želeno vrsto grafikona. "
1120
  "<br><br> Ko končate, kliknite »Nadaljuj«, da se premaknete naprej."
1121
 
1122
- #: source/class.wdttools.php:558
1123
  msgid "The first step is finished!"
1124
  msgstr "Prvi korak je končan!"
1125
 
1126
- #: source/class.wdttools.php:559
1127
  msgid "Let's move on. Please, click 'Next' to continue."
1128
  msgstr "Gremo naprej. Za nadaljevanje kliknite »Naprej«."
1129
 
1130
- #: source/class.wdttools.php:562
1131
  msgid ""
1132
  "Now you need to choose a wpDataTable based on which we will build a chart "
1133
  "for you"
@@ -1135,7 +1171,7 @@ msgstr ""
1135
  "Zdaj morate izbrati wpDataTable, na podlagi katerega bomo izdelali grafikon "
1136
  "za vas"
1137
 
1138
- #: source/class.wdttools.php:563
1139
  msgid ""
1140
  "Click on the dropdown, and all your tables will be listed. The columns of "
1141
  "the table that you choose will be used for creating the chart.<br><br>If you "
@@ -1147,11 +1183,11 @@ msgstr ""
1147
  "ustvarili wpDataTable, kliknite gumb 'Skip Tutorial' in ustvarite "
1148
  "wpDataTable, ki bi vseboval podatke, ki jih želite najprej vizualizirati."
1149
 
1150
- #: source/class.wdttools.php:566
1151
  msgid "Pick your wpDataTable"
1152
  msgstr "Izberite svoj wpDataTable"
1153
 
1154
- #: source/class.wdttools.php:567
1155
  msgid ""
1156
  "Pick a wpDataTable from which you want to render a chart and when you "
1157
  "finish, please click 'Continue' to move on."
@@ -1159,20 +1195,20 @@ msgstr ""
1159
  "Izberite wpDataTable, iz katerega želite upodobiti grafikon, in ko končate, "
1160
  "za nadaljevanje kliknite »Nadaljuj«."
1161
 
1162
- #: source/class.wdttools.php:570
1163
  msgid "The second step is finished!"
1164
  msgstr "Drugi korak je končan!"
1165
 
1166
- #: source/class.wdttools.php:571
1167
  msgid ""
1168
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1169
  msgstr "Poglejmo, kaj sledi. <br><br> Za nadaljevanje kliknite »Naprej«."
1170
 
1171
- #: source/class.wdttools.php:574
1172
  msgid "Just a heads up!"
1173
  msgstr "Samo glave navzgor!"
1174
 
1175
- #: source/class.wdttools.php:575
1176
  msgid ""
1177
  "Here you will choose from which columns you will create a chart.<br><br> "
1178
  "Please click 'Continue' button to move forward."
@@ -1180,30 +1216,30 @@ msgstr ""
1180
  "Tu boste izbrali, iz katerih stolpcev boste ustvarili grafikon. <br><br> Za "
1181
  "premik naprej kliknite gumb 'Nadaljuj'."
1182
 
1183
- #: source/class.wdttools.php:578
1184
  msgid "Meet the wpDataTable Column Blocks"
1185
  msgstr "Spoznajte stolpne bloke wpDataTable"
1186
 
1187
- #: source/class.wdttools.php:579
1188
  msgid ""
1189
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1190
  "or click on the arrow to move the desired column to the 'Columns used in the "
1191
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1192
  msgstr ""
1193
 
1194
- #: source/class.wdttools.php:582
1195
  msgid "Well done!"
1196
  msgstr "Dobro opravljeno!"
1197
 
1198
- #: source/class.wdttools.php:583
1199
  msgid "Just two more steps to go. Please click 'Next' to continue."
1200
  msgstr "Samo še dva koraka. Za nadaljevanje kliknite »Naprej«."
1201
 
1202
- #: source/class.wdttools.php:586
1203
  msgid "Chart settings and chart preview."
1204
  msgstr "Nastavitve grafikona in predogled grafikona."
1205
 
1206
- #: source/class.wdttools.php:587
1207
  msgid ""
1208
  "Here you can adjust chart settings, different parameters are grouped in "
1209
  "section; adjusting the parameters will be reflected in the preview of your "
@@ -1215,11 +1251,11 @@ msgstr ""
1215
  "realnem času na desni strani. <br><br> Za premik naprej kliknite gumb "
1216
  "'Nadaljuj'."
1217
 
1218
- #: source/class.wdttools.php:590
1219
  msgid "In this sidebar, you can find the chart settings section."
1220
  msgstr "Na tej stranski vrstici najdete razdelek z nastavitvami grafikona."
1221
 
1222
- #: source/class.wdttools.php:591
1223
  msgid ""
1224
  "By clicking on each section, you can set your desired parameters per section."
1225
  "<br><br> Please click 'Continue' button to move on."
@@ -1227,11 +1263,11 @@ msgstr ""
1227
  "S klikom na posamezen razdelek lahko nastavite želene parametre na odsek. "
1228
  "<br><br> Za nadaljevanje kliknite gumb 'Nadaljuj'."
1229
 
1230
- #: source/class.wdttools.php:594
1231
  msgid "Here are the available chart options"
1232
  msgstr "Tu so na voljo možnosti grafikona"
1233
 
1234
- #: source/class.wdttools.php:595
1235
  msgid ""
1236
  "Set different chart options for the chosen section to get your desired chart "
1237
  "look.<br><br> Please click 'Continue' button to move on."
@@ -1239,11 +1275,11 @@ msgstr ""
1239
  "Nastavite različne možnosti grafikona za izbrani razdelek, da dobite želeni "
1240
  "videz grafikona. <br><br> Za nadaljevanje kliknite gumb 'Nadaljuj'."
1241
 
1242
- #: source/class.wdttools.php:598
1243
  msgid "How your chart will look like on the page of your website"
1244
  msgstr "Kako bo izgledal vaš grafikon na strani vašega spletnega mesta"
1245
 
1246
- #: source/class.wdttools.php:599
1247
  msgid ""
1248
  "Here you can see a preview of your chart based on the settings you have "
1249
  "chosen.<br><br> Please click 'Continue' button to move on."
@@ -1251,11 +1287,11 @@ msgstr ""
1251
  "Tu lahko vidite predogled grafikona glede na izbrane nastavitve. <br><br> Za "
1252
  "nadaljevanje kliknite gumb 'Nadaljuj'."
1253
 
1254
- #: source/class.wdttools.php:602
1255
  msgid "You can save your chart now"
1256
  msgstr "Zdaj lahko shranite svoj grafikon"
1257
 
1258
- #: source/class.wdttools.php:603
1259
  msgid ""
1260
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1261
  "button and all your settings for this chart will be saved in the database."
@@ -1263,11 +1299,11 @@ msgstr ""
1263
  "Če ste zadovoljni z izgledom grafikona, kliknite gumb 'Shrani grafikon' in "
1264
  "vse vaše nastavitve tega grafikona bodo shranjene v bazi podatkov."
1265
 
1266
- #: source/class.wdttools.php:606
1267
  msgid "Congrats! Your first chart is ready!"
1268
  msgstr "Čestitke! Vaš prvi grafikon je pripravljen!"
1269
 
1270
- #: source/class.wdttools.php:607
1271
  msgid ""
1272
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1273
  "page. <br><br>You may now finish this tutorial. "
@@ -1283,7 +1319,7 @@ msgstr "Samo en stolpec je lahko vrste String"
1283
  msgid "You are mixing data types (several date axes and several number)"
1284
  msgstr "Mešate podatkovne vrste (več datumskih osi in več številk)"
1285
 
1286
- #: source/class.wpdatatable.php:1895
1287
  msgid ""
1288
  "You are trying to load a table of an unknown type. Probably you did not "
1289
  "activate the addon which is required to use this table type."
@@ -1291,38 +1327,38 @@ msgstr ""
1291
  "Poskušate naložiti tabelo neznanega tipa. Verjetno niste aktivirali dodatka, "
1292
  "ki je potreben za uporabo te vrste tabel."
1293
 
1294
- #: source/class.wpdatatable.php:2134 source/class.wpdatatable.php:2137
1295
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1296
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1297
- #: templates/admin/table-settings/table_settings_block.inc.php:312
1298
  #: templates/edit_table.inc.php:409
1299
  msgid "All"
1300
  msgstr "Vse"
1301
 
1302
- #: source/class.wpdatatable.php:2195 source/class.wpdatatable.php:2264
1303
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1304
  msgid "Columns"
1305
  msgstr "Stolpci"
1306
 
1307
- #: source/class.wpdatatable.php:2205 source/class.wpdatatable.php:2274
1308
- #: templates/admin/table-settings/table_settings_block.inc.php:1030
1309
  msgid "Print"
1310
  msgstr "Tiskaj"
1311
 
1312
- #: source/class.wpdatatable.php:2244 source/class.wpdatatable.php:2317
1313
- #: templates/admin/table-settings/table_settings_block.inc.php:1034
1314
  msgid "PDF"
1315
  msgstr "PDF"
1316
 
1317
- #: source/class.wpdatatable.php:2252
1318
  msgid "Export"
1319
  msgstr "Izvozi"
1320
 
1321
- #: source/class.wpdatatable.php:2330
1322
  msgid "Search table"
1323
  msgstr "Tabela iskanja"
1324
 
1325
- #: source/class.wpdatatable.php:2331
1326
  msgid "Showing _MENU_ Entries"
1327
  msgstr "Prikazovanje vnosov _MENU_"
1328
 
@@ -1341,7 +1377,7 @@ msgstr ""
1341
  msgid "if you have some questions or problems with the plugin."
1342
  msgstr ""
1343
 
1344
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:498
1345
  msgid "wpDataTables Addons"
1346
  msgstr "wpDataTables Addons"
1347
 
@@ -1360,12 +1396,12 @@ msgstr ""
1360
  "wpDataTables in razvijalcev tretjih oseb, zato bodite pozorni."
1361
 
1362
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1363
- #: templates/admin/dashboard/dashboard.inc.php:569
1364
  msgid "Report Builder"
1365
  msgstr "Graditelj poročil"
1366
 
1367
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1368
- #: templates/admin/dashboard/dashboard.inc.php:573
1369
  msgid ""
1370
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1371
  "XLSX documents filled in with actual data from your database."
@@ -1393,7 +1429,7 @@ msgid "NEW"
1393
  msgstr "NOVO"
1394
 
1395
  #: templates/admin/addons/addons.inc.php:40
1396
- #: templates/admin/dashboard/dashboard.inc.php:516
1397
  msgid "Master Detail Tables for wpDataTables"
1398
  msgstr "Glavne podrobne tabele za wpDataTables"
1399
 
@@ -1418,7 +1454,7 @@ msgid "Learn more"
1418
  msgstr "Preberi več"
1419
 
1420
  #: templates/admin/addons/addons.inc.php:67
1421
- #: templates/admin/dashboard/dashboard.inc.php:543
1422
  msgid "Powerful Filters for wpDataTables"
1423
  msgstr "Zmogljivi filtri za wpDataTables"
1424
 
@@ -1433,12 +1469,12 @@ msgstr ""
1433
  "tabele, preden uporabnik določi iskalne vrednosti."
1434
 
1435
  #: templates/admin/addons/addons.inc.php:120
1436
- #: templates/admin/dashboard/dashboard.inc.php:596
1437
  msgid "Formidable Forms integration for wpDataTables"
1438
  msgstr "Zapletena oblika integracije za wpDataTables"
1439
 
1440
  #: templates/admin/addons/addons.inc.php:123
1441
- #: templates/admin/dashboard/dashboard.inc.php:600
1442
  msgid ""
1443
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1444
  "create wpDataTables from Formidable Forms entries data."
@@ -1447,12 +1483,12 @@ msgstr ""
1447
  "ustvarjanje wpDataTables iz podatkov vnosov v Formidable Forms."
1448
 
1449
  #: templates/admin/addons/addons.inc.php:143
1450
- #: templates/admin/dashboard/dashboard.inc.php:622
1451
  msgid "Gravity Forms integration for wpDataTables"
1452
  msgstr "Gravity Forms integracija za wpDataTables"
1453
 
1454
  #: templates/admin/addons/addons.inc.php:146
1455
- #: templates/admin/dashboard/dashboard.inc.php:626
1456
  msgid ""
1457
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1458
  "wpDataTables from Gravity Forms entries data."
@@ -1534,7 +1570,7 @@ msgid "Chart title & type"
1534
  msgstr "Naslov in vrsta grafikona"
1535
 
1536
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1537
- #: templates/admin/table-settings/table_settings_block.inc.php:59
1538
  #: templates/chart_wizard.inc.php:36
1539
  msgid "Data source"
1540
  msgstr "Vir podatkov"
@@ -1577,6 +1613,7 @@ msgstr "Oznaka"
1577
 
1578
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1579
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
 
1580
  #: templates/edit_table.inc.php:730
1581
  msgid "Color"
1582
  msgstr "Barva"
@@ -1794,8 +1831,8 @@ msgstr ""
1794
  #: templates/admin/getting-started/getting_started.inc.php:144
1795
  #: templates/admin/getting-started/getting_started.inc.php:156
1796
  #: templates/admin/getting-started/getting_started.inc.php:168
1797
- #: templates/admin/table-settings/table_settings_block.inc.php:105
1798
- #: templates/admin/table-settings/table_settings_block.inc.php:108
1799
  msgid "Available in Premium"
1800
  msgstr ""
1801
 
@@ -1931,10 +1968,6 @@ msgstr "Serije"
1931
  msgid "Axes"
1932
  msgstr "Osi"
1933
 
1934
- #: templates/admin/chart_wizard/steps/step4.inc.php:17
1935
- msgid "Title"
1936
- msgstr "Naslov"
1937
-
1938
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1939
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1940
  msgid "Tooltip"
@@ -2028,6 +2061,8 @@ msgstr "Omogoči združevanje"
2028
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2029
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2030
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
 
 
2031
  msgid "Background color"
2032
  msgstr "Barva ozadja"
2033
 
@@ -2046,6 +2081,7 @@ msgstr "Širina slikovnih pik zunanje meje grafikona."
2046
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2047
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2048
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
 
2049
  msgid "Border color"
2050
  msgstr "Barva obrobe"
2051
 
@@ -2084,6 +2120,7 @@ msgstr "Barva notranjega diagrama ali meje območja ploskve."
2084
 
2085
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2086
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
 
2087
  msgid "Font size"
2088
  msgstr "VCelikost črk"
2089
 
@@ -2459,14 +2496,14 @@ msgstr "Odprite v Excelu podobnem urejevalniku"
2459
  #: templates/admin/dashboard/dashboard.inc.php:30
2460
  #: templates/admin/getting-started/getting_started.inc.php:34
2461
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2462
- #: templates/admin/settings/settings.inc.php:96
2463
  #: templates/admin/support/support.inc.php:31
2464
  #: templates/admin/support/support.inc.php:47
2465
  #: templates/admin/system-info/system_info.inc.php:29
2466
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2467
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2468
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2469
- #: templates/admin/table-settings/table_settings_block.inc.php:1197
2470
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2471
  msgid "View Documentation"
2472
  msgstr "Ogled dokumentacije"
@@ -2704,180 +2741,181 @@ msgid "Version "
2704
  msgstr "Različica"
2705
 
2706
  #: templates/admin/dashboard/dashboard.inc.php:340
2707
- msgid ""
2708
- "A minor update with a couple of features, bug fixes and stability "
2709
- "improvements:"
2710
  msgstr ""
2711
 
2712
  #: templates/admin/dashboard/dashboard.inc.php:345
2713
  msgid ""
2714
- "<strong>Feature:</strong> New option to set column data to be available/"
2715
- "disabled in global search results."
2716
  msgstr ""
2717
 
2718
  #: templates/admin/dashboard/dashboard.inc.php:346
2719
  msgid ""
2720
- "<strong>Feature:</strong> New option to set NOFOLLOW relation for links in "
2721
- "simple and data tables."
2722
  msgstr ""
2723
 
2724
  #: templates/admin/dashboard/dashboard.inc.php:347
2725
  msgid ""
2726
- "<strong>BugFix:</strong> Fixed issue with saving page in Divi builder with "
2727
- "simple table shortcode."
2728
  msgstr ""
2729
 
2730
  #: templates/admin/dashboard/dashboard.inc.php:348
2731
  msgid ""
2732
- "<strong>BugFix:</strong> Fixed issue with not showing tabs in backend after "
2733
- "switch."
2734
  msgstr ""
2735
 
2736
  #: templates/admin/dashboard/dashboard.inc.php:349
2737
  msgid ""
2738
- "<strong>BugFix:</strong> Fixed issue with tooltip in backend when is loaded "
2739
- "jQuery UI."
2740
  msgstr ""
2741
 
2742
  #: templates/admin/dashboard/dashboard.inc.php:350
 
 
 
 
2743
  msgid "Other small bug fixes and stability improvements."
2744
  msgstr ""
2745
 
2746
- #: templates/admin/dashboard/dashboard.inc.php:362
2747
  msgid "Go Premium!"
2748
  msgstr ""
2749
 
2750
- #: templates/admin/dashboard/dashboard.inc.php:368
2751
  msgid "View Comparison"
2752
  msgstr ""
2753
 
2754
- #: templates/admin/dashboard/dashboard.inc.php:376
2755
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2756
  msgid ""
2757
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2758
  "of the powerful features."
2759
  msgstr ""
2760
 
2761
- #: templates/admin/dashboard/dashboard.inc.php:380
2762
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2763
  msgid "Create a table manually"
2764
  msgstr "Ročno ustvarite tabelo"
2765
 
2766
- #: templates/admin/dashboard/dashboard.inc.php:383
2767
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2768
  msgid "Creating tables from Google Spreadsheet"
2769
  msgstr "Ustvarjanje tabel iz Google Spreadsheet-a"
2770
 
2771
- #: templates/admin/dashboard/dashboard.inc.php:386
2772
  msgid ""
2773
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2774
  "tables via Google Sheet API"
2775
  msgstr ""
2776
 
2777
- #: templates/admin/dashboard/dashboard.inc.php:389
2778
  msgid ""
2779
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2780
  "tables from Private Google Spreadsheet"
2781
  msgstr ""
2782
 
2783
- #: templates/admin/dashboard/dashboard.inc.php:392
2784
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2785
  msgid "Creating MySQL-based tables from database"
2786
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz baze podatkov"
2787
 
2788
- #: templates/admin/dashboard/dashboard.inc.php:395
2789
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2790
  msgid "Creating MySQL-based tables from Wordpress post types"
2791
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz vrst objav Wordpress"
2792
 
2793
- #: templates/admin/dashboard/dashboard.inc.php:398
2794
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2795
  #: templates/edit_table.inc.php:329
2796
  msgid "Advanced filtering"
2797
  msgstr "Napredno filtriranje"
2798
 
2799
- #: templates/admin/dashboard/dashboard.inc.php:401
2800
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2801
- #: templates/admin/table-settings/table_settings_block.inc.php:144
2802
  #: templates/edit_table.inc.php:282
2803
  msgid "Server-side processing"
2804
  msgstr "Obdelava na strani strežnika"
2805
 
2806
- #: templates/admin/dashboard/dashboard.inc.php:404
2807
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2808
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2809
  msgstr ""
2810
 
2811
- #: templates/admin/dashboard/dashboard.inc.php:407
2812
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2813
  msgid "Front-end table editing"
2814
  msgstr "Urejanje mize v sprednjem delu"
2815
 
2816
- #: templates/admin/dashboard/dashboard.inc.php:410
2817
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2818
  msgid "Excel-like editing"
2819
  msgstr "Urejanje v Excelu"
2820
 
2821
- #: templates/admin/dashboard/dashboard.inc.php:413
2822
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2823
  msgid "Creating charts with Highcharts"
2824
  msgstr "Ustvarjanje grafikonov z Highchartsi"
2825
 
2826
- #: templates/admin/dashboard/dashboard.inc.php:416
2827
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2828
  msgid "Creating charts with Chart.js"
2829
  msgstr "Ustvarjanje grafikonov s Chart.js"
2830
 
2831
- #: templates/admin/dashboard/dashboard.inc.php:419
2832
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2833
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2834
  #: templates/edit_table.inc.php:301
2835
  msgid "Responsive"
2836
  msgstr "Odziven"
2837
 
2838
- #: templates/admin/dashboard/dashboard.inc.php:422
2839
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2840
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2841
  #: templates/edit_table.inc.php:750
2842
  msgid "Conditional formatting"
2843
  msgstr "Pogojno oblikovanje"
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:425
2846
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2847
  msgid "Calculating Tools"
2848
  msgstr "Orodja za izračun"
2849
 
2850
- #: templates/admin/dashboard/dashboard.inc.php:428
2851
  msgid "Formula columns"
2852
  msgstr ""
2853
 
2854
- #: templates/admin/dashboard/dashboard.inc.php:431
2855
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2856
- #: templates/admin/table-settings/table_settings_block.inc.php:79
2857
  msgid "Placeholders"
2858
  msgstr "Imetniki mest"
2859
 
2860
- #: templates/admin/dashboard/dashboard.inc.php:434
2861
  msgid "Premium support"
2862
  msgstr ""
2863
 
2864
- #: templates/admin/dashboard/dashboard.inc.php:438
2865
  msgid "Get Premium Today"
2866
  msgstr ""
2867
 
2868
- #: templates/admin/dashboard/dashboard.inc.php:445
2869
  msgid "News Blog"
2870
  msgstr "Blog novic"
2871
 
2872
- #: templates/admin/dashboard/dashboard.inc.php:450
2873
  msgid "Checkout useful articles from wpdatatables.com"
2874
  msgstr "Oglejte si uporabne članke s spletnega mesta wpdatatables.com"
2875
 
2876
- #: templates/admin/dashboard/dashboard.inc.php:473
2877
  msgid "Please install and enable PHP extensions xml and dom on your server."
2878
  msgstr ""
2879
 
2880
- #: templates/admin/dashboard/dashboard.inc.php:481
2881
  msgid ""
2882
  "Never miss notifications about new cool features, promotions,\n"
2883
  " giveaways or freebies – subscribe to our "
@@ -2890,18 +2928,18 @@ msgstr ""
2890
  " približno 1 sporočilo na mesec in nikoli "
2891
  "neželeno!"
2892
 
2893
- #: templates/admin/dashboard/dashboard.inc.php:499
2894
  msgid "Premium "
2895
  msgstr ""
2896
 
2897
- #: templates/admin/dashboard/dashboard.inc.php:502
2898
  msgid ""
2899
  "While wpDataTables itself provides quite a large amount of features and "
2900
  "unlimited customisation, flexibility, you can achieve even more with our "
2901
  "premium addons.(requires wpDataTables Premium version)"
2902
  msgstr ""
2903
 
2904
- #: templates/admin/dashboard/dashboard.inc.php:520
2905
  msgid ""
2906
  "A wpDataTables addon which allows showing additional details for a specific "
2907
  "row in a popup or a separate page or post."
@@ -2909,16 +2947,16 @@ msgstr ""
2909
  "Dodatek wpDataTables, ki omogoča prikazovanje dodatnih podrobnosti za "
2910
  "določeno vrstico v pojavnem oknu ali na ločeni strani ali objavi."
2911
 
2912
- #: templates/admin/dashboard/dashboard.inc.php:526
2913
- #: templates/admin/dashboard/dashboard.inc.php:553
2914
- #: templates/admin/dashboard/dashboard.inc.php:579
2915
- #: templates/admin/dashboard/dashboard.inc.php:606
2916
- #: templates/admin/dashboard/dashboard.inc.php:632
2917
- #: templates/admin/dashboard/dashboard.inc.php:665
2918
  msgid "Learn More"
2919
  msgstr "Preberi več"
2920
 
2921
- #: templates/admin/dashboard/dashboard.inc.php:547
2922
  msgid ""
2923
  "An add-on for wpDataTables that provides powerful filtering features: "
2924
  "cascade filtering, applying filters on button click, hide table before "
@@ -2928,15 +2966,15 @@ msgstr ""
2928
  "filtriranje, nanašanje filtrov na klik gumba, skrivanje tabele pred "
2929
  "filtriranjem."
2930
 
2931
- #: templates/admin/dashboard/dashboard.inc.php:643
2932
  msgid "Need free booking plugin?"
2933
  msgstr ""
2934
 
2935
- #: templates/admin/dashboard/dashboard.inc.php:652
2936
  msgid "Appointments and Events WordPress Booking Plugin"
2937
  msgstr "Sestanki in dogodki WordPress Vtičnik za rezervacijo"
2938
 
2939
- #: templates/admin/dashboard/dashboard.inc.php:655
2940
  msgid ""
2941
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2942
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2947,26 +2985,26 @@ msgid ""
2947
  "each month."
2948
  msgstr ""
2949
 
2950
- #: templates/admin/dashboard/dashboard.inc.php:658
2951
  msgid "Rating: 4.3 - ‎97 reviews"
2952
  msgstr ""
2953
 
2954
- #: templates/admin/dashboard/dashboard.inc.php:661
2955
  msgid "Free Download"
2956
  msgstr ""
2957
 
2958
- #: templates/admin/dashboard/dashboard.inc.php:676
2959
  #: templates/admin/getting-started/getting_started.inc.php:184
2960
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2961
  #: templates/admin/support/support.inc.php:78
2962
  #: templates/admin/system-info/system_info.inc.php:509
2963
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2964
  msgid "Made by"
2965
  msgstr "Narejeno v"
2966
 
2967
- #: templates/admin/dashboard/dashboard.inc.php:684
2968
  #: templates/admin/getting-started/getting_started.inc.php:192
2969
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2970
  #: templates/admin/support/support.inc.php:45
2971
  #: templates/admin/support/support.inc.php:86
2972
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2975,9 +3013,9 @@ msgstr "Narejeno v"
2975
  msgid "Documentation"
2976
  msgstr "Dokumentacija"
2977
 
2978
- #: templates/admin/dashboard/dashboard.inc.php:688
2979
  #: templates/admin/getting-started/getting_started.inc.php:196
2980
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2981
  #: templates/admin/support/support.inc.php:24
2982
  #: templates/admin/support/support.inc.php:90
2983
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3112,7 +3150,7 @@ msgid "Lite vs Premium comparison"
3112
  msgstr "Primerjava Lite proti Premium"
3113
 
3114
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3115
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3116
  msgid "Go Premium Now"
3117
  msgstr ""
3118
 
@@ -3125,7 +3163,7 @@ msgid "Lite"
3125
  msgstr "Lite"
3126
 
3127
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3128
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:471
3129
  msgid "Premium"
3130
  msgstr "Premium"
3131
 
@@ -3155,8 +3193,10 @@ msgstr ""
3155
 
3156
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3157
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3158
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3159
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
 
 
3160
  msgid "NEW!"
3161
  msgstr ""
3162
 
@@ -3175,15 +3215,16 @@ msgstr ""
3175
 
3176
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3177
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3178
- #: templates/admin/table-settings/table_settings_block.inc.php:626
3179
- #: templates/admin/table-settings/table_settings_block.inc.php:634
3180
  msgid "Sorting"
3181
  msgstr "Razvrščanje"
3182
 
3183
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3184
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3185
- #: templates/admin/table-settings/table_settings_block.inc.php:489
3186
- #: templates/admin/table-settings/table_settings_block.inc.php:497
 
3187
  msgid "Pagination"
3188
  msgstr "Paginiranje (zaznamovanje strani)"
3189
 
@@ -3210,7 +3251,7 @@ msgid "Customize charts"
3210
  msgstr ""
3211
 
3212
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3213
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:465
3214
  msgid "Limited"
3215
  msgstr "Omejeno"
3216
 
@@ -3218,37 +3259,41 @@ msgstr "Omejeno"
3218
  msgid "Some options are not available."
3219
  msgstr ""
3220
 
3221
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
3222
- msgid "Creating tables via Google Sheet API"
3223
  msgstr ""
3224
 
3225
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
 
 
 
 
3226
  msgid "Creating tables from Private Google Spreadsheet"
3227
  msgstr ""
3228
 
3229
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:461
3230
  msgid "Support"
3231
  msgstr "Podpora"
3232
 
3233
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:467
3234
  msgid "Response time is slow and can be up to 5 business days."
3235
  msgstr ""
3236
 
3237
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3238
  msgid ""
3239
  "* Please note that wpDataTables add-ons are not included in premium version "
3240
  "of plugin."
3241
  msgstr ""
3242
 
3243
  #: templates/admin/settings/settings.inc.php:33
3244
- #: templates/admin/settings/settings.inc.php:91
3245
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3246
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3247
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3248
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3249
  #: templates/admin/table-settings/table_preview_block.inc.php:89
3250
- #: templates/admin/table-settings/table_settings_block.inc.php:47
3251
  #: templates/admin/table-settings/table_settings_block.inc.php:48
 
3252
  msgid "Save Changes"
3253
  msgstr "Shrani spremembe"
3254
 
@@ -3272,16 +3317,23 @@ msgstr "Nastavitve barve in pisave"
3272
  msgid "Custom JS and CSS"
3273
  msgstr "Po meri JS in CSS"
3274
 
3275
- #: templates/admin/settings/settings.inc.php:88 templates/settings.inc.php:434
 
 
 
 
3276
  msgid "Reset colors and fonts to default"
3277
  msgstr "Ponastavi barve in pisave na privzete vrednosti"
3278
 
3279
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3280
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
 
 
3281
  msgid "Font"
3282
  msgstr "Pisava"
3283
 
3284
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
 
3285
  #: templates/settings.inc.php:428
3286
  msgid ""
3287
  "This font will be used in rendered tables. Leave blank not to override "
@@ -3291,41 +3343,51 @@ msgstr ""
3291
  "preglasite privzetih nastavitev tem"
3292
 
3293
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
 
3294
  msgid "Define the font size"
3295
  msgstr "Določite velikost pisave"
3296
 
3297
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3298
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3299
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
 
 
3300
  msgid "Font color"
3301
  msgstr "Barva pisave"
3302
 
3303
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
 
3304
  msgid "This color is used for the main font in table cells."
3305
  msgstr "Ta barva se uporablja za glavno pisavo v celicah tabele."
3306
 
3307
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3308
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
 
3309
  msgid "Header"
3310
  msgstr ""
3311
 
3312
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
 
3313
  msgid "The color is used for background of the table header."
3314
  msgstr "Barva se uporablja za ozadje glave tabele."
3315
 
3316
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
 
3317
  msgid "This color is used for the border in the table header."
3318
  msgstr "Ta barva se uporablja za obrobo v glavi tabele."
3319
 
3320
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
 
3321
  msgid "This color is used for the font in the table header."
3322
  msgstr "Ta barva se uporablja za pisavo v glavi tabele."
3323
 
3324
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
 
3325
  msgid "Active and hover color\t"
3326
  msgstr "Aktivna in lebdi barva"
3327
 
3328
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
 
3329
  msgid ""
3330
  "This color is used when you hover the mouse above the table header, or when "
3331
  "you choose a column."
@@ -3338,38 +3400,47 @@ msgid "Table border "
3338
  msgstr ""
3339
 
3340
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
 
3341
  msgid "Inner border"
3342
  msgstr "Notranja meja"
3343
 
3344
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
 
3345
  msgid "This color is used for the inner border in the table between cells."
3346
  msgstr "Ta barva se uporablja za notranjo mejo v tabeli med celicami."
3347
 
3348
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
 
3349
  msgid "Outer border"
3350
  msgstr "Zunanja meja"
3351
 
3352
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
 
3353
  msgid "This color is used for the outer border of the whole table body."
3354
  msgstr "Ta barva se uporablja za zunanjo mejo celotnega telesa mize."
3355
 
3356
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
 
3357
  msgid "Table borders"
3358
  msgstr "Obrobe tabel"
3359
 
3360
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
 
3361
  msgid "When this is checked, borders in table will be removed "
3362
  msgstr "Ko je to potrjeno, bodo meje v tabeli odstranjene"
3363
 
3364
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
 
3365
  msgid "Remove borders in table"
3366
  msgstr "Odstranite obrobe v tabeli"
3367
 
3368
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
 
3369
  msgid "Header border"
3370
  msgstr "Meja glave"
3371
 
3372
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
 
3373
  msgid "When this is checked,borders in header will be removed "
3374
  msgstr "Ko je to potrjeno, se meje v glavi odstranijo"
3375
 
@@ -3378,30 +3449,37 @@ msgid "Remove borders in header"
3378
  msgstr "Odstranite obrobe v glavi"
3379
 
3380
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
 
3381
  msgid "Row color"
3382
  msgstr ""
3383
 
3384
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
 
3385
  msgid "Even row background"
3386
  msgstr "Ozadje vrstice"
3387
 
3388
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
 
3389
  msgid "This color is used for for background in even rows."
3390
  msgstr "Ta barva se uporablja za ozadje v enakomernih vrsticah."
3391
 
3392
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
 
3393
  msgid "Odd row background"
3394
  msgstr "Ozadje nenavadnih vrst"
3395
 
3396
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
 
3397
  msgid "This color is used for for background in odd rows."
3398
  msgstr "Ta barva se uporablja za ozadje v neparnih vrsticah."
3399
 
3400
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
 
3401
  msgid "Hover row"
3402
  msgstr "Premaknite vrvico"
3403
 
3404
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
 
3405
  msgid ""
3406
  "This color is used for to highlight the row when you hover your mouse above "
3407
  "it."
@@ -3410,22 +3488,27 @@ msgstr ""
3410
  "njo."
3411
 
3412
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
 
3413
  msgid "Background for selected rows"
3414
  msgstr "Ozadje za izbrane vrstice"
3415
 
3416
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
 
3417
  msgid "This color is used for background in selected rows."
3418
  msgstr "Ta barva se uporablja za ozadje v izbranih vrsticah."
3419
 
3420
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
 
3421
  msgid "Cell color"
3422
  msgstr ""
3423
 
3424
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
 
3425
  msgid "Sorted columns, even rows"
3426
  msgstr "Razvrščeni stolpci, celo vrstice"
3427
 
3428
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
 
3429
  msgid ""
3430
  "This color is used for background in cells which are in the active columns "
3431
  "(columns used for sorting) in even rows."
@@ -3434,10 +3517,12 @@ msgstr ""
3434
  "(stolpci za razvrščanje) v enakih vrsticah."
3435
 
3436
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
 
3437
  msgid "Sorted columns, odd rows"
3438
  msgstr "Razvrščeni stolpci, lihe vrstice"
3439
 
3440
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
 
3441
  msgid ""
3442
  "This color is used for background in cells which are in the active columns "
3443
  "(columns used for sorting) in odd rows."
@@ -3535,43 +3620,53 @@ msgstr ""
3535
  "vtičnika."
3536
 
3537
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
 
3538
  msgid "This color is used for the background of the pagination"
3539
  msgstr "Ta barva se uporablja za ozadje strani"
3540
 
3541
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
 
3542
  msgid "This color is used for the color of the links in the pagination."
3543
  msgstr "Ta barva se uporablja za barvo povezav na strani."
3544
 
3545
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
 
3546
  msgid "Current page background color"
3547
  msgstr "Trenutna barva ozadja strani"
3548
 
3549
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
 
3550
  msgid "The color is used for background of the current page"
3551
  msgstr "Barva se uporablja za ozadje trenutne strani"
3552
 
3553
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
 
3554
  msgid "Current page color"
3555
  msgstr "Trenutna barva strani"
3556
 
3557
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
 
3558
  msgid "This color is used for the color of the current page."
3559
  msgstr "Ta barva se uporablja za barvo trenutne strani."
3560
 
3561
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
 
3562
  msgid "Other pages hover background color"
3563
  msgstr "Druge strani se pomikajo po barvi ozadja"
3564
 
3565
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
 
3566
  msgid ""
3567
  "This background color is used when you hover the mouse above the other pages"
3568
  msgstr "Ta barva ozadja se uporablja, ko miško držite nad drugo stranjo"
3569
 
3570
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
 
3571
  msgid "Other pages hover color"
3572
  msgstr "Druge strani se pomikajo po barvi"
3573
 
3574
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
 
3575
  msgid "This color is used when you hover the mouse above the other pages."
3576
  msgstr "Ta barva se uporablja, ko miško držite nad drugo stranjo."
3577
 
@@ -3589,6 +3684,7 @@ msgstr ""
3589
  "wpDataTable."
3590
 
3591
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
 
3592
  #: templates/settings.inc.php:463
3593
  msgid "Custom wpDataTables CSS"
3594
  msgstr "CSS po meri wpDataTables"
@@ -3609,15 +3705,18 @@ msgid "Use minified version of Javascript files"
3609
  msgstr "Uporabite mešano različico datotek Javascript"
3610
 
3611
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
 
3612
  #: templates/settings.inc.php:45
3613
  msgid "Interface language"
3614
  msgstr "Jezik vmesnika"
3615
 
3616
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
 
3617
  msgid "Pick the language which will be used in tables interface."
3618
  msgstr "Izberite jezik, ki bo uporabljen v vmesniku tabel."
3619
 
3620
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
 
3621
  msgid "English (default)"
3622
  msgstr "Angleščina (privzeto)"
3623
 
@@ -3631,141 +3730,149 @@ msgid "Pick the date format to use in date column type."
3631
  msgstr ""
3632
  "Izberite obliko datuma, ki jo želite uporabiti v vrsti stolpca z datumom."
3633
 
3634
- #: templates/admin/settings/tabs/main_plugin_settings.php:73
3635
  #: templates/settings.inc.php:119
3636
  msgid "Time format"
3637
  msgstr "Časovna oblika"
3638
 
3639
- #: templates/admin/settings/tabs/main_plugin_settings.php:75
3640
  msgid "Pick the time format to use in datetime and time column type."
3641
  msgstr ""
3642
  "Izberite obliko časa, ki jo želite uporabiti v datumskem in časovnem stolpcu."
3643
 
3644
- #: templates/admin/settings/tabs/main_plugin_settings.php:90
3645
  msgid "Parse shortcodes"
3646
  msgstr "Razčlenite kratke kode"
3647
 
3648
- #: templates/admin/settings/tabs/main_plugin_settings.php:92
3649
  msgid ""
3650
  "If the option is enabled, you can use shortcodes of other plugins for "
3651
  "generating content."
3652
  msgstr ""
3653
 
3654
- #: templates/admin/settings/tabs/main_plugin_settings.php:96
3655
  msgid "Parse shortcodes in strings"
3656
  msgstr "Razvrsti kratke kode v strunah"
3657
 
3658
- #: templates/admin/settings/tabs/main_plugin_settings.php:103
 
3659
  #: templates/settings.inc.php:74
3660
  msgid "Base skin"
3661
  msgstr "Osnovna koža"
3662
 
3663
- #: templates/admin/settings/tabs/main_plugin_settings.php:105
 
3664
  msgid "Choose the base skin for the plugin."
3665
  msgstr "Izberite osnovno kožo za vtičnik."
3666
 
3667
- #: templates/admin/settings/tabs/main_plugin_settings.php:111
 
3668
  msgid "Material"
3669
  msgstr "Artikel"
3670
 
3671
- #: templates/admin/settings/tabs/main_plugin_settings.php:112
 
3672
  msgid "Light"
3673
  msgstr "Svetlo"
3674
 
3675
- #: templates/admin/settings/tabs/main_plugin_settings.php:113
 
3676
  msgid "Graphite"
3677
  msgstr "Grafit"
3678
 
3679
- #: templates/admin/settings/tabs/main_plugin_settings.php:114
 
3680
  msgid "Aqua"
3681
  msgstr "Aqua"
3682
 
3683
- #: templates/admin/settings/tabs/main_plugin_settings.php:115
 
3684
  msgid "Purple"
3685
  msgstr "Vijoličnoa"
3686
 
3687
- #: templates/admin/settings/tabs/main_plugin_settings.php:116
 
3688
  msgid "Dark"
3689
  msgstr "Temno"
3690
 
3691
- #: templates/admin/settings/tabs/main_plugin_settings.php:124
3692
  #: templates/settings.inc.php:131
3693
  msgid "Number format"
3694
  msgstr "Oblika številke"
3695
 
3696
- #: templates/admin/settings/tabs/main_plugin_settings.php:126
3697
  #: templates/settings.inc.php:138
3698
  msgid "Pick the number format (thousands and decimals separator)"
3699
  msgstr "Izberite obliko števila (ločilo tisoč in decimalk)"
3700
 
3701
- #: templates/admin/settings/tabs/main_plugin_settings.php:143
3702
  #: templates/settings.inc.php:86
3703
  msgid "Render advanced filter"
3704
  msgstr "Označi napredni filter"
3705
 
3706
- #: templates/admin/settings/tabs/main_plugin_settings.php:145
3707
  msgid ""
3708
  "Choose where you would like to render the advanced filter for tables where "
3709
  "enabled."
3710
  msgstr ""
3711
  "Izberite, kam želite prikazati napredni filter za tabele, kjer so omogočene."
3712
 
3713
- #: templates/admin/settings/tabs/main_plugin_settings.php:151
3714
  #: templates/settings.inc.php:90
3715
  msgid "In the header"
3716
  msgstr "V glavi"
3717
 
3718
- #: templates/admin/settings/tabs/main_plugin_settings.php:152
3719
  #: templates/settings.inc.php:91
3720
  msgid "In the footer"
3721
  msgstr "V nogi"
3722
 
3723
- #: templates/admin/settings/tabs/main_plugin_settings.php:160
3724
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3725
  #: templates/settings.inc.php:143
3726
  msgid "Decimal places"
3727
  msgstr "Decimalna mesta"
3728
 
3729
- #: templates/admin/settings/tabs/main_plugin_settings.php:162
3730
  msgid "Define the amount of decimal places for the float numbers."
3731
  msgstr "Določite količino decimalnih mest za float številke."
3732
 
3733
- #: templates/admin/settings/tabs/main_plugin_settings.php:187
3734
  msgid "CSV delimiter"
3735
  msgstr "Omejevalnik CSV"
3736
 
3737
- #: templates/admin/settings/tabs/main_plugin_settings.php:189
3738
  msgid "Pick the CSV delimiter"
3739
  msgstr "Izberite ločilo CSV"
3740
 
3741
- #: templates/admin/settings/tabs/main_plugin_settings.php:208
3742
  msgid "Tables sorting direction in admin page"
3743
  msgstr ""
3744
 
3745
- #: templates/admin/settings/tabs/main_plugin_settings.php:210
3746
  msgid ""
3747
  "Here you can set sorting direction by id for browse tables and charts. By "
3748
  "default is ascending order."
3749
  msgstr ""
3750
 
3751
- #: templates/admin/settings/tabs/main_plugin_settings.php:216
3752
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3753
  #: templates/edit_table.inc.php:663
3754
  msgid "Ascending"
3755
  msgstr "Naraščajoče"
3756
 
3757
- #: templates/admin/settings/tabs/main_plugin_settings.php:217
3758
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3759
  #: templates/edit_table.inc.php:665
3760
  msgid "Descending"
3761
  msgstr "Padajoče"
3762
 
3763
- #: templates/admin/settings/tabs/main_plugin_settings.php:228
3764
  #: templates/settings.inc.php:171
3765
  msgid "Tablet width"
3766
  msgstr "Širina tabličnega računalnika"
3767
 
3768
- #: templates/admin/settings/tabs/main_plugin_settings.php:230
3769
  #: templates/settings.inc.php:175
3770
  msgid ""
3771
  "Here you can specify width of the screen (in pixels) that will be treated as "
@@ -3774,43 +3881,43 @@ msgstr ""
3774
  "Tu lahko določite širino zaslona (v slikovnih pikah), ki bo obravnavana kot "
3775
  "tablica. Lahko ga nastavite širše, če želite odziven učinek na namizjih."
3776
 
3777
- #: templates/admin/settings/tabs/main_plugin_settings.php:254
3778
  #: templates/settings.inc.php:181
3779
  msgid "Mobile width"
3780
  msgstr "Mobilna širina"
3781
 
3782
- #: templates/admin/settings/tabs/main_plugin_settings.php:256
3783
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3784
  msgstr ""
3785
  "Tu lahko določite širino (v slikovnih pikah), ki bo obravnavana kot mobilna."
3786
 
3787
- #: templates/admin/settings/tabs/main_plugin_settings.php:281
3788
  #: templates/settings.inc.php:61
3789
  msgid "Tables per admin page"
3790
  msgstr "Tabele na skrbniško stran"
3791
 
3792
- #: templates/admin/settings/tabs/main_plugin_settings.php:283
3793
  msgid "How many tables to show in the browse page."
3794
  msgstr "Koliko tabel za prikaz na strani za brskanje."
3795
 
3796
- #: templates/admin/settings/tabs/main_plugin_settings.php:299
3797
  msgid "Align numbers"
3798
  msgstr "Poravnajte številke"
3799
 
3800
- #: templates/admin/settings/tabs/main_plugin_settings.php:301
3801
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3802
  msgstr ""
3803
 
3804
- #: templates/admin/settings/tabs/main_plugin_settings.php:305
3805
  #: templates/settings.inc.php:161
3806
  msgid "Align numbers to the right"
3807
  msgstr "Poravnajte številke na desni"
3808
 
3809
- #: templates/admin/settings/tabs/main_plugin_settings.php:315
3810
  msgid "Sum functions label"
3811
  msgstr "Oznaka funkcij seštevanja"
3812
 
3813
- #: templates/admin/settings/tabs/main_plugin_settings.php:317
3814
  msgid ""
3815
  "Enter a label that will be used for Sum functions. If you leave it blank "
3816
  "default label will be Σ ="
@@ -3818,11 +3925,11 @@ msgstr ""
3818
  "Vnesite oznako, ki bo uporabljena za funkcije vsote. Če ga pustite prazno, "
3819
  "bo privzeta oznaka Σ ="
3820
 
3821
- #: templates/admin/settings/tabs/main_plugin_settings.php:335
3822
  msgid "Average functions label"
3823
  msgstr "Oznaka povprečnih funkcij"
3824
 
3825
- #: templates/admin/settings/tabs/main_plugin_settings.php:337
3826
  msgid ""
3827
  "Enter a label that will be used for Average functions. If you leave it blank "
3828
  "default label will be Avg ="
@@ -3830,11 +3937,11 @@ msgstr ""
3830
  "Vnesite oznako, ki bo uporabljena za funkcije povprečja. Če ga pustite "
3831
  "prazno, bo privzeta oznaka Avg ="
3832
 
3833
- #: templates/admin/settings/tabs/main_plugin_settings.php:360
3834
  msgid "Minimum functions label"
3835
  msgstr "Oznaka minimalnih funkcij"
3836
 
3837
- #: templates/admin/settings/tabs/main_plugin_settings.php:362
3838
  msgid ""
3839
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3840
  "default label will be Min ="
@@ -3842,11 +3949,11 @@ msgstr ""
3842
  "Vnesite oznako, ki bo uporabljena za Minimalne funkcije. Če pustite prazno, "
3843
  "bo privzeta oznaka Min ="
3844
 
3845
- #: templates/admin/settings/tabs/main_plugin_settings.php:380
3846
  msgid "Maximum functions label"
3847
  msgstr "Oznaka največjih funkcij"
3848
 
3849
- #: templates/admin/settings/tabs/main_plugin_settings.php:382
3850
  msgid ""
3851
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3852
  "default label will be Max ="
@@ -3854,12 +3961,12 @@ msgstr ""
3854
  "Vnesite oznako, ki bo uporabljena za funkcije največ. Če ga pustite prazno, "
3855
  "bo privzeta oznaka Max ="
3856
 
3857
- #: templates/admin/settings/tabs/main_plugin_settings.php:408
3858
  msgid "Include full bootstrap front-end"
3859
  msgstr "Vključite sprednji del prtljažnika"
3860
 
3861
- #: templates/admin/settings/tabs/main_plugin_settings.php:410
3862
- #: templates/admin/settings/tabs/main_plugin_settings.php:421
3863
  msgid ""
3864
  "It is recommended to uncheck this option if bootstrap.js is already included "
3865
  "in one of the theme files. Unchecked option means that there is still "
@@ -3870,60 +3977,60 @@ msgstr ""
3870
  "vključen bootstrap.js samo v načinu brezkonflikta, kar bi moralo preprečiti "
3871
  "napake."
3872
 
3873
- #: templates/admin/settings/tabs/main_plugin_settings.php:414
3874
  msgid "Include full bootstrap.js on the front-end"
3875
  msgstr "Na sprednji strani vključite celoten bootstrap.js"
3876
 
3877
- #: templates/admin/settings/tabs/main_plugin_settings.php:419
3878
  msgid "Include full bootstrap back-end"
3879
  msgstr "Vključite popolno začetno vrv"
3880
 
3881
- #: templates/admin/settings/tabs/main_plugin_settings.php:425
3882
  msgid "Include full bootstrap.js on the back-end"
3883
  msgstr "Na zadnji strani vključite celoten bootstrap.js"
3884
 
3885
- #: templates/admin/settings/tabs/main_plugin_settings.php:433
3886
- #: templates/admin/settings/tabs/main_plugin_settings.php:439
3887
  #: templates/settings.inc.php:32
3888
  msgid "Show plugin credentials below tables"
3889
  msgstr ""
3890
 
3891
- #: templates/admin/settings/tabs/main_plugin_settings.php:435
3892
  #: templates/settings.inc.php:32
3893
  msgid ""
3894
  "If you want to support our project, please, keep this checkbox as checked"
3895
  msgstr ""
3896
 
3897
- #: templates/admin/settings/tabs/main_plugin_settings.php:444
3898
  msgid "Prevent deleting tables in database"
3899
  msgstr "Prepreči brisanje tabel v bazi podatkov"
3900
 
3901
- #: templates/admin/settings/tabs/main_plugin_settings.php:446
3902
  msgid ""
3903
  "It is recommended to leave this option as checked if you what to keep your "
3904
  "tables in database after deleting plugin from Plugins page. If you uncheck "
3905
  "this option, it will be deleted all tables in database after deleting plugin"
3906
  msgstr ""
3907
 
3908
- #: templates/admin/settings/tabs/main_plugin_settings.php:450
3909
  msgid ""
3910
  "Prevent deleting tables in database after deleting plugin from Plugins page"
3911
  msgstr ""
3912
  "Preprečite brisanje tabel v bazi podatkov po brisanju vtičnika s strani "
3913
  "Vtičniki"
3914
 
3915
- #: templates/admin/settings/tabs/main_plugin_settings.php:457
3916
  msgid "Remove Getting Started page"
3917
  msgstr "Odstranite stran z začetkom"
3918
 
3919
- #: templates/admin/settings/tabs/main_plugin_settings.php:459
3920
  msgid ""
3921
  "Check this option if you want to remove Getting Started page from admin menu."
3922
  msgstr ""
3923
  "Označite to možnost, če želite stran z začetkom dela odstraniti iz "
3924
  "skrbniškega menija."
3925
 
3926
- #: templates/admin/settings/tabs/main_plugin_settings.php:463
3927
  msgid "Remove \"Getting Started\" page from admin menu."
3928
  msgstr "Odstranite stran \"Uvod\" iz menija skrbnika."
3929
 
@@ -4208,10 +4315,6 @@ msgstr "Dodaj stolpec"
4208
  msgid "Column header"
4209
  msgstr "Glava stolpca"
4210
 
4211
- #: templates/admin/table-settings/add_column_modal.inc.php:47
4212
- msgid "Type"
4213
- msgstr "Vrsta"
4214
-
4215
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4216
  msgid "Insert after"
4217
  msgstr "Vstavi po"
@@ -4248,7 +4351,7 @@ msgstr "Nastavitve stolpcev"
4248
 
4249
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4250
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4251
- #: templates/admin/table-settings/table_settings_block.inc.php:63
4252
  msgid "Display"
4253
  msgstr "Prikaz"
4254
 
@@ -4261,7 +4364,7 @@ msgid "Global Filtering"
4261
  msgstr ""
4262
 
4263
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4264
- #: templates/admin/table-settings/table_settings_block.inc.php:71
4265
  msgid "Editing"
4266
  msgstr "Urejanje"
4267
 
@@ -4763,7 +4866,7 @@ msgid "Allow filtering"
4763
  msgstr "Dovoli filtriranje"
4764
 
4765
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4766
- #: templates/admin/table-settings/table_settings_block.inc.php:665
4767
  msgid "Global search"
4768
  msgstr "Globalno iskanje"
4769
 
@@ -5327,19 +5430,19 @@ msgid "Clear data"
5327
  msgstr ""
5328
 
5329
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5330
- #: templates/admin/table-settings/table_settings_block.inc.php:199
5331
  #: templates/edit_table.inc.php:58
5332
  msgid "Table title"
5333
  msgstr "Naslov tabele"
5334
 
5335
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5336
- #: templates/admin/table-settings/table_settings_block.inc.php:207
5337
  #: templates/edit_table.inc.php:67
5338
  msgid "Show table title"
5339
  msgstr "Prikaži naslov tabele"
5340
 
5341
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5342
- #: templates/admin/table-settings/table_settings_block.inc.php:214
5343
  msgid ""
5344
  "Enable this to show the table title in a h3 block above the table, disable "
5345
  "to hide."
@@ -5348,7 +5451,7 @@ msgstr ""
5348
  "skrivanje."
5349
 
5350
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5351
- #: templates/admin/table-settings/table_settings_block.inc.php:222
5352
  msgid "Show table title on the page"
5353
  msgstr "Pokaži naslov tabele na strani"
5354
 
@@ -5415,47 +5518,47 @@ msgid "Scrollable"
5415
  msgstr "Lahko se premikate"
5416
 
5417
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5418
- #: templates/admin/table-settings/table_settings_block.inc.php:363
5419
  msgid "Scrollable table"
5420
  msgstr "Drsna miza"
5421
 
5422
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5423
- #: templates/admin/table-settings/table_settings_block.inc.php:370
5424
  msgid "Enable this to enable a horizontal scrollbar below the table."
5425
  msgstr "To omogočite, da omogočite vodoravno drsno vrstico pod tabelo."
5426
 
5427
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5428
- #: templates/admin/table-settings/table_settings_block.inc.php:379
5429
  msgid "Show a horizontal scrollbar"
5430
  msgstr "Pokaži vodoravno drsno vrstico"
5431
 
5432
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5433
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5434
- #: templates/admin/table-settings/table_settings_block.inc.php:423
5435
- #: templates/admin/table-settings/table_settings_block.inc.php:431
5436
  msgid "Limit table width"
5437
  msgstr "Omejite širino mize"
5438
 
5439
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5440
- #: templates/admin/table-settings/table_settings_block.inc.php:438
5441
  msgid "Enable this to restrict table width to page width."
5442
  msgstr "To omogočite, da širino tabele omejite na širino strani."
5443
 
5444
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5445
- #: templates/admin/table-settings/table_settings_block.inc.php:447
5446
  msgid "Limit table width to page width"
5447
  msgstr "Omejite širino tabele na širino strani"
5448
 
5449
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5450
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5451
- #: templates/admin/table-settings/table_settings_block.inc.php:454
5452
- #: templates/admin/table-settings/table_settings_block.inc.php:462
5453
  #: templates/edit_table.inc.php:392
5454
  msgid "Word wrap"
5455
  msgstr "Preplet besed"
5456
 
5457
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5458
- #: templates/admin/table-settings/table_settings_block.inc.php:469
5459
  msgid ""
5460
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5461
  "height."
@@ -5464,7 +5567,7 @@ msgstr ""
5464
  "celic."
5465
 
5466
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5467
- #: templates/admin/table-settings/table_settings_block.inc.php:477
5468
  msgid "Wrap words to newlines"
5469
  msgstr "Prepišite besede v nove vrstice"
5470
 
@@ -5526,16 +5629,20 @@ msgstr ""
5526
  msgid "EXCEL-LIKE"
5527
  msgstr ""
5528
 
5529
- #: templates/admin/table-settings/table_settings_block.inc.php:67
5530
  msgid "Sorting and filtering"
5531
  msgstr "Razvrščanje in filtriranje"
5532
 
5533
- #: templates/admin/table-settings/table_settings_block.inc.php:75
5534
- #: templates/admin/table-settings/table_settings_block.inc.php:990
5535
  msgid "Table Tools"
5536
  msgstr "Orodja za tabele"
5537
 
5538
- #: templates/admin/table-settings/table_settings_block.inc.php:97
 
 
 
 
5539
  msgid ""
5540
  "Please choose a type of the input data source - it can be a MySQL query, a "
5541
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
@@ -5544,39 +5651,39 @@ msgstr ""
5544
  "ali URL. Samo tabele na osnovi poizvedb lahko uporabljajo obdelavo na strani "
5545
  "strežnika"
5546
 
5547
- #: templates/admin/table-settings/table_settings_block.inc.php:104
5548
  msgid "Select a data source type"
5549
  msgstr "Izberite vrsto vira podatkov"
5550
 
5551
- #: templates/admin/table-settings/table_settings_block.inc.php:105
5552
  msgid "SQL query "
5553
  msgstr ""
5554
 
5555
- #: templates/admin/table-settings/table_settings_block.inc.php:106
5556
  #: templates/edit_table.inc.php:85
5557
  msgid "CSV file"
5558
  msgstr "Datoteka CSV"
5559
 
5560
- #: templates/admin/table-settings/table_settings_block.inc.php:107
5561
  #: templates/edit_table.inc.php:86
5562
  msgid "Excel file"
5563
  msgstr "Excelova datoteka"
5564
 
5565
- #: templates/admin/table-settings/table_settings_block.inc.php:108
5566
  msgid "Google Spreadsheet "
5567
  msgstr ""
5568
 
5569
- #: templates/admin/table-settings/table_settings_block.inc.php:109
5570
  #: templates/edit_table.inc.php:89
5571
  msgid "XML file"
5572
  msgstr "Datoteka XML"
5573
 
5574
- #: templates/admin/table-settings/table_settings_block.inc.php:110
5575
  #: templates/edit_table.inc.php:90
5576
  msgid "JSON file"
5577
  msgstr "Datoteka JSON"
5578
 
5579
- #: templates/admin/table-settings/table_settings_block.inc.php:124
5580
  msgid ""
5581
  "Upload your file or provide the full URL here. For CSV or Excel input "
5582
  "sources only URLs or paths from same domain are supported. For Google "
@@ -5587,15 +5694,15 @@ msgstr ""
5587
  "Excel so podprti samo URL-ji ali poti iz iste domene. Za Googlove "
5588
  "preglednice: ne pozabite objaviti preglednice, preden prilepite URL."
5589
 
5590
- #: templates/admin/table-settings/table_settings_block.inc.php:130
5591
  msgid "Paste URL or path, or click Browse to choose"
5592
  msgstr "Prilepite URL ali pot ali kliknite Brskaj, da izberete"
5593
 
5594
- #: templates/admin/table-settings/table_settings_block.inc.php:134
5595
  msgid "Browse..."
5596
  msgstr "Prebrskaj..."
5597
 
5598
- #: templates/admin/table-settings/table_settings_block.inc.php:146
5599
  msgid ""
5600
  "If it is turned on, all sorting, filtering, pagination and other data "
5601
  "interaction will be done by MySQL server. This feature is recommended if you "
@@ -5605,15 +5712,15 @@ msgstr ""
5605
  "strjevanje strani in druge interakcije s podatki. Ta funkcija je "
5606
  "priporočljiva, če imate več kot 2000-3000 vrstic. Obvezno za urejanje tabel."
5607
 
5608
- #: templates/admin/table-settings/table_settings_block.inc.php:151
5609
  msgid "Enable server-side processing"
5610
  msgstr "Omogoči obdelavo na strani strežnika"
5611
 
5612
- #: templates/admin/table-settings/table_settings_block.inc.php:165
5613
  msgid "MySQL Query"
5614
  msgstr ""
5615
 
5616
- #: templates/admin/table-settings/table_settings_block.inc.php:167
5617
  msgid ""
5618
  "Enter the text of your MySQL query here - please make sure it returns actual "
5619
  "data first. You can use a number of placeholders to make the dataset in the "
@@ -5621,12 +5728,12 @@ msgid ""
5621
  "with different shortcodes."
5622
  msgstr ""
5623
 
5624
- #: templates/admin/table-settings/table_settings_block.inc.php:174
5625
  #: templates/edit_table.inc.php:292
5626
  msgid "Auto-refresh"
5627
  msgstr "Samodejno osveži"
5628
 
5629
- #: templates/admin/table-settings/table_settings_block.inc.php:176
5630
  msgid ""
5631
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5632
  "with a given interval of seconds. Leave zero or empty not to use auto-"
@@ -5636,24 +5743,24 @@ msgstr ""
5636
  "dejanskih podatkov v določenem intervalu sekund. Pustite nič ali prazno, da "
5637
  "ne želite samodejno osvežiti."
5638
 
5639
- #: templates/admin/table-settings/table_settings_block.inc.php:181
5640
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5641
  msgstr ""
5642
  "Interval samodejnega osveževanja v sekundah (nič ali prazno za onemogočanje)"
5643
 
5644
- #: templates/admin/table-settings/table_settings_block.inc.php:230
5645
  msgid "Responsiveness"
5646
  msgstr "Odzivnost"
5647
 
5648
- #: templates/admin/table-settings/table_settings_block.inc.php:238
5649
  msgid "Responsive design"
5650
  msgstr "Odzivno oblikovanje"
5651
 
5652
- #: templates/admin/table-settings/table_settings_block.inc.php:245
5653
  msgid "Enable this to allow responsiveness in the table."
5654
  msgstr "To omogočite, da omogočite odzivnost v tabeli."
5655
 
5656
- #: templates/admin/table-settings/table_settings_block.inc.php:246
5657
  msgid ""
5658
  "Please do not forget to define which columns will be hidden on mobiles and "
5659
  "tablets in the column settings!"
@@ -5661,15 +5768,15 @@ msgstr ""
5661
  "V nastavitvah stolpcev ne pozabite določiti, kateri stolpci bodo skriti na "
5662
  "mobilih in tabličnih računalnikih!"
5663
 
5664
- #: templates/admin/table-settings/table_settings_block.inc.php:254
5665
  msgid "Allow collapsing on mobiles and tablets"
5666
  msgstr "Dovoli, da se zrušijo na mobilih in tabličnih računalnikih"
5667
 
5668
- #: templates/admin/table-settings/table_settings_block.inc.php:262
5669
  msgid "Hide until loaded"
5670
  msgstr "Skrij, dokler se ne naloži"
5671
 
5672
- #: templates/admin/table-settings/table_settings_block.inc.php:264
5673
  msgid ""
5674
  "Enable to make whole table hidden until it is initialized to prevent "
5675
  "unformatted data flashing"
@@ -5677,28 +5784,28 @@ msgstr ""
5677
  "Omogoči, da se celotna tabela skrije, dokler se ne inicializira, da prepreči "
5678
  "utripanje neoblikovanih podatkov"
5679
 
5680
- #: templates/admin/table-settings/table_settings_block.inc.php:269
5681
  msgid "Hide the table before it is fully loaded"
5682
  msgstr "Skrijte mizo, preden je popolnoma naložena"
5683
 
5684
- #: templates/admin/table-settings/table_settings_block.inc.php:281
5685
  msgid "Default rows per page"
5686
  msgstr "Privzete vrstice na stran"
5687
 
5688
- #: templates/admin/table-settings/table_settings_block.inc.php:289
5689
- #: templates/admin/table-settings/table_settings_block.inc.php:324
5690
  msgid "Rows per page"
5691
  msgstr "Vrstic na stran"
5692
 
5693
- #: templates/admin/table-settings/table_settings_block.inc.php:296
5694
  msgid "How many rows to show per page by default."
5695
  msgstr "Koliko vrstic privzeto prikaže na stran."
5696
 
5697
- #: templates/admin/table-settings/table_settings_block.inc.php:332
5698
  msgid "Show X entries"
5699
  msgstr "Prikaži X vnose"
5700
 
5701
- #: templates/admin/table-settings/table_settings_block.inc.php:339
5702
  msgid ""
5703
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5704
  "frontend."
@@ -5706,30 +5813,30 @@ msgstr ""
5706
  "To omogočite / onemogočite, če želite prikazati / skriti \"Prikaži vnose X\" "
5707
  "na spustno stran na sprednji strani."
5708
 
5709
- #: templates/admin/table-settings/table_settings_block.inc.php:347
5710
  msgid "Show \"Show X entries\" dropdown"
5711
  msgstr "Prikaži spustni meni \"Prikaži X vnose\""
5712
 
5713
- #: templates/admin/table-settings/table_settings_block.inc.php:371
5714
  msgid "This should be turned off if you want to set columns width manually."
5715
  msgstr "To je treba izklopiti, če želite širino stolpcev nastaviti ročno."
5716
 
5717
- #: templates/admin/table-settings/table_settings_block.inc.php:392
5718
- #: templates/admin/table-settings/table_settings_block.inc.php:400
5719
  msgid "Info block"
5720
  msgstr "Info blok"
5721
 
5722
- #: templates/admin/table-settings/table_settings_block.inc.php:407
5723
  msgid ""
5724
  "Enable to show a block of information about the number of records below the "
5725
  "table."
5726
  msgstr "Omogoči prikaz tabele podatkov o številu zapisov pod tabelo."
5727
 
5728
- #: templates/admin/table-settings/table_settings_block.inc.php:415
5729
  msgid "Show information block below the table"
5730
  msgstr "Prikaži tabelo informacij pod tabelo"
5731
 
5732
- #: templates/admin/table-settings/table_settings_block.inc.php:439
5733
  msgid ""
5734
  "This should be turned on if you want to set columns width manually. Should "
5735
  "be on to use word wrapping."
@@ -5737,78 +5844,78 @@ msgstr ""
5737
  "To je treba vklopiti, če želite ročno nastaviti širino stolpcev. "
5738
  "Uporabljajte zavijanje besed."
5739
 
5740
- #: templates/admin/table-settings/table_settings_block.inc.php:501
5741
  msgid "Enable to show a pagination"
5742
  msgstr ""
5743
 
5744
- #: templates/admin/table-settings/table_settings_block.inc.php:509
5745
  msgid "Show pagination block below the table"
5746
  msgstr ""
5747
 
5748
- #: templates/admin/table-settings/table_settings_block.inc.php:517
5749
- #: templates/admin/table-settings/table_settings_block.inc.php:525
5750
  msgid "Pagination Alignment"
5751
  msgstr ""
5752
 
5753
- #: templates/admin/table-settings/table_settings_block.inc.php:529
5754
  msgid "Here you can set pagination position: right, center or left."
5755
  msgstr ""
5756
 
5757
- #: templates/admin/table-settings/table_settings_block.inc.php:537
5758
  msgid "Right"
5759
  msgstr ""
5760
 
5761
- #: templates/admin/table-settings/table_settings_block.inc.php:538
5762
  msgid "Center"
5763
  msgstr ""
5764
 
5765
- #: templates/admin/table-settings/table_settings_block.inc.php:539
5766
  msgid "Left"
5767
  msgstr ""
5768
 
5769
- #: templates/admin/table-settings/table_settings_block.inc.php:548
5770
- #: templates/admin/table-settings/table_settings_block.inc.php:556
5771
  msgid "Pagination Layout"
5772
  msgstr ""
5773
 
5774
- #: templates/admin/table-settings/table_settings_block.inc.php:560
5775
  msgid "Here you can choose between different pagination layout."
5776
  msgstr ""
5777
 
5778
- #: templates/admin/table-settings/table_settings_block.inc.php:568
5779
  msgid ""
5780
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5781
  msgstr ""
5782
 
5783
- #: templates/admin/table-settings/table_settings_block.inc.php:569
5784
  msgid "\"Previous\" and \"Next\" buttons only"
5785
  msgstr ""
5786
 
5787
- #: templates/admin/table-settings/table_settings_block.inc.php:570
5788
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5789
  msgstr ""
5790
 
5791
- #: templates/admin/table-settings/table_settings_block.inc.php:571
5792
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5793
  msgstr ""
5794
 
5795
- #: templates/admin/table-settings/table_settings_block.inc.php:572
5796
  msgid "Page number buttons only"
5797
  msgstr ""
5798
 
5799
- #: templates/admin/table-settings/table_settings_block.inc.php:573
5800
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5801
  msgstr ""
5802
 
5803
- #: templates/admin/table-settings/table_settings_block.inc.php:595
5804
  msgid "Advanced column filters"
5805
  msgstr "Napredni filtri stolpcev"
5806
 
5807
- #: templates/admin/table-settings/table_settings_block.inc.php:603
5808
  msgid "Advanced filter"
5809
  msgstr "Napredni filter"
5810
 
5811
- #: templates/admin/table-settings/table_settings_block.inc.php:610
5812
  msgid ""
5813
  "Enable to show an advanced filter for each of the columns, filters can be "
5814
  "shown in table footer, header or in a separate form."
@@ -5816,11 +5923,11 @@ msgstr ""
5816
  "Omogoči prikazovanje naprednega filtra za vsak stolpec, filtri so lahko "
5817
  "prikazani v nogi tabele, glavi tabele ali v ločenem obrazcu."
5818
 
5819
- #: templates/admin/table-settings/table_settings_block.inc.php:618
5820
  msgid "Enable advanced column filters"
5821
  msgstr "Omogoči napredne filtre stolpcev"
5822
 
5823
- #: templates/admin/table-settings/table_settings_block.inc.php:641
5824
  msgid ""
5825
  "If this is enabled, each column header will be clickable; clicking will sort "
5826
  "the whole table by the content of this column cells ascending or descending."
@@ -5829,15 +5936,15 @@ msgstr ""
5829
  "razvrstili celotno tabelo po vsebini celic tega stolpca, ki se povečujejo "
5830
  "ali padajoče."
5831
 
5832
- #: templates/admin/table-settings/table_settings_block.inc.php:649
5833
  msgid "Allow sorting for the table"
5834
  msgstr "Dovoli razvrščanje za mizo"
5835
 
5836
- #: templates/admin/table-settings/table_settings_block.inc.php:657
5837
  msgid "Main search block"
5838
  msgstr "Glavni iskalni blok"
5839
 
5840
- #: templates/admin/table-settings/table_settings_block.inc.php:672
5841
  msgid ""
5842
  "If this is enabled, a search block will be displayed on the top right of the "
5843
  "table, allowing to search through whole table with a single input."
@@ -5845,20 +5952,20 @@ msgstr ""
5845
  "Če je to omogočeno, se v zgornjem desnem kotu tabele prikaže iskalni blok, "
5846
  "ki omogoča iskanje po celotni tabeli z enim vhodom."
5847
 
5848
- #: templates/admin/table-settings/table_settings_block.inc.php:680
5849
  msgid "Enable search block"
5850
  msgstr "Omogoči iskalni blok"
5851
 
5852
- #: templates/admin/table-settings/table_settings_block.inc.php:694
5853
  msgid "Filters in a form"
5854
  msgstr "Filtrira v obliki"
5855
 
5856
- #: templates/admin/table-settings/table_settings_block.inc.php:701
5857
  #: templates/edit_table.inc.php:340
5858
  msgid "Filter in form"
5859
  msgstr "Filtrirajte v obliki"
5860
 
5861
- #: templates/admin/table-settings/table_settings_block.inc.php:708
5862
  msgid ""
5863
  "Enable to show the advanced column filter in a form above the table, instead "
5864
  "of showing in the table footer/header."
@@ -5866,30 +5973,30 @@ msgstr ""
5866
  "Omogoči prikaz naprednega filtra stolpcev v obliki nad tabelo, namesto da bi "
5867
  "se prikazoval v nogi / glavi tabele."
5868
 
5869
- #: templates/admin/table-settings/table_settings_block.inc.php:716
5870
  msgid "Show filters in a form above the table"
5871
  msgstr "Pokažite filtre v obliki nad tabelo"
5872
 
5873
- #: templates/admin/table-settings/table_settings_block.inc.php:724
5874
  msgid "Clear filters button"
5875
  msgstr "Gumb za brisanje filtrov"
5876
 
5877
- #: templates/admin/table-settings/table_settings_block.inc.php:731
5878
  #: templates/frontend/filter_form.inc.php:32
5879
  msgid "Clear filters"
5880
  msgstr "Počistite filtre"
5881
 
5882
- #: templates/admin/table-settings/table_settings_block.inc.php:735
5883
  msgid "Enable to show the clear filters button."
5884
  msgstr "Omogoči prikaz gumba za čisto filtre."
5885
 
5886
- #: templates/admin/table-settings/table_settings_block.inc.php:736
5887
  msgid ""
5888
  "If filter in form is enabled, clear button will be rendered after the last "
5889
  "filter."
5890
  msgstr "Če je filter v obliki omogočen, bo po zadnjem filtru upodobljen gumb."
5891
 
5892
- #: templates/admin/table-settings/table_settings_block.inc.php:741
5893
  msgid ""
5894
  "Otherwise, clear filter button will be rendered above the table next to "
5895
  "\"Table Tools\" buttons."
@@ -5897,37 +6004,37 @@ msgstr ""
5897
  "V nasprotnem primeru bo prozorni filter prikazan nad tabelo poleg gumbov "
5898
  "»Orodja tabele«."
5899
 
5900
- #: templates/admin/table-settings/table_settings_block.inc.php:753
5901
  msgid "Show clear filters button"
5902
  msgstr "Pokaži gumb za čiščenje filtrov"
5903
 
5904
- #: templates/admin/table-settings/table_settings_block.inc.php:773
5905
  msgid "Allow editing"
5906
  msgstr "Dovoli urejanje"
5907
 
5908
- #: templates/admin/table-settings/table_settings_block.inc.php:781
5909
  #: templates/edit_table.inc.php:180
5910
  msgid "Front-end editing"
5911
  msgstr "Sprednje urejanje"
5912
 
5913
- #: templates/admin/table-settings/table_settings_block.inc.php:788
5914
  msgid "Allow editing the table from the front-end."
5915
  msgstr "Dovoli urejanje tabele s sprednjega dela."
5916
 
5917
- #: templates/admin/table-settings/table_settings_block.inc.php:796
5918
  msgid "Allow front-end editing"
5919
  msgstr "Dovoli urejanje v sprednjem delu"
5920
 
5921
- #: templates/admin/table-settings/table_settings_block.inc.php:804
5922
  msgid "Popover edit block"
5923
  msgstr "Blok urejanja Popoverja"
5924
 
5925
- #: templates/admin/table-settings/table_settings_block.inc.php:812
5926
  #: templates/edit_table.inc.php:232
5927
  msgid "Popover tools"
5928
  msgstr "Popover orodja"
5929
 
5930
- #: templates/admin/table-settings/table_settings_block.inc.php:819
5931
  msgid ""
5932
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
5933
  "popover when you click on any row, instead of Table Tools block above the "
@@ -5936,16 +6043,16 @@ msgstr ""
5936
  "Če je to omogočeno, se gumbi Novo, Uredi in Zbriši prikažejo popo, ko "
5937
  "kliknete katero koli vrstico, namesto bloka Orodja tabele nad tabelo."
5938
 
5939
- #: templates/admin/table-settings/table_settings_block.inc.php:827
5940
  msgid "Editing buttons in a popover"
5941
  msgstr "Urejanje gumbov v popoverju"
5942
 
5943
- #: templates/admin/table-settings/table_settings_block.inc.php:835
5944
- #: templates/admin/table-settings/table_settings_block.inc.php:843
5945
  msgid "In-line editing"
5946
  msgstr "Redno urejanje"
5947
 
5948
- #: templates/admin/table-settings/table_settings_block.inc.php:850
5949
  msgid ""
5950
  "If this is enabled, front-end users will be able to edit cells by double-"
5951
  "clicking them, not only with the editor dialog."
@@ -5953,30 +6060,30 @@ msgstr ""
5953
  "Če je to omogočeno, bodo sprednji uporabniki lahko urejali celice z "
5954
  "dvoklikom, ne samo v pogovornem oknu urejevalnika."
5955
 
5956
- #: templates/admin/table-settings/table_settings_block.inc.php:858
5957
  msgid "Allow in-line editing"
5958
  msgstr "Dovoli urejanje po liniji"
5959
 
5960
- #: templates/admin/table-settings/table_settings_block.inc.php:873
5961
  #: templates/edit_table.inc.php:192
5962
  msgid "MySQL table name for editing"
5963
  msgstr "Ime tabele MySQL za urejanje"
5964
 
5965
- #: templates/admin/table-settings/table_settings_block.inc.php:875
5966
  msgid ""
5967
  "Name of the MySQL table which will be updated when edited from front-end."
5968
  msgstr "Ime tabele MySQL, ki bo posodobljena, ko bo urejena od spredaj."
5969
 
5970
- #: templates/admin/table-settings/table_settings_block.inc.php:880
5971
  msgid "MySQL table name"
5972
  msgstr "Ime tabele MySQL"
5973
 
5974
- #: templates/admin/table-settings/table_settings_block.inc.php:889
5975
  #: templates/edit_table.inc.php:203
5976
  msgid "ID column for editing"
5977
  msgstr "ID stolpec za urejanje"
5978
 
5979
- #: templates/admin/table-settings/table_settings_block.inc.php:891
5980
  msgid ""
5981
  "Choose the column values from which will be used as row identifiers. MUST be "
5982
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
@@ -5989,12 +6096,12 @@ msgstr ""
5989
  "wpDataTables bo uganil pravilen stolpec, če se na strani MySQL imenuje \"id"
5990
  "\" ali \"ID\"."
5991
 
5992
- #: templates/admin/table-settings/table_settings_block.inc.php:905
5993
  #: templates/edit_table.inc.php:267
5994
  msgid "Editor roles"
5995
  msgstr "Vloge urednika"
5996
 
5997
- #: templates/admin/table-settings/table_settings_block.inc.php:907
5998
  msgid ""
5999
  "If you want only specific user roles to be able to edit the table, choose in "
6000
  "this dropdown. Leave unchecked to allow editing for everyone."
@@ -6002,39 +6109,39 @@ msgstr ""
6002
  "Če želite le urejati tabelo uporabnikov, izberite v tem spustnem meniju. "
6003
  "Pustite brez nadzora, da lahko omogočite urejanje vsem."
6004
 
6005
- #: templates/admin/table-settings/table_settings_block.inc.php:912
6006
  msgid "Everyone"
6007
  msgstr "Vsi"
6008
 
6009
- #: templates/admin/table-settings/table_settings_block.inc.php:913
6010
  msgid "Administrators"
6011
  msgstr ""
6012
 
6013
- #: templates/admin/table-settings/table_settings_block.inc.php:914
6014
  msgid "Editors"
6015
  msgstr ""
6016
 
6017
- #: templates/admin/table-settings/table_settings_block.inc.php:915
6018
  msgid "Authors"
6019
  msgstr ""
6020
 
6021
- #: templates/admin/table-settings/table_settings_block.inc.php:916
6022
  msgid "Contributors"
6023
  msgstr ""
6024
 
6025
- #: templates/admin/table-settings/table_settings_block.inc.php:917
6026
  msgid "Subscribers"
6027
  msgstr ""
6028
 
6029
- #: templates/admin/table-settings/table_settings_block.inc.php:932
6030
  msgid "Users see and edit only own data"
6031
  msgstr "Uporabniki vidijo in urejajo samo lastne podatke"
6032
 
6033
- #: templates/admin/table-settings/table_settings_block.inc.php:940
6034
  msgid "Users see and edit only their own data"
6035
  msgstr "Uporabniki vidijo in urejajo samo svoje podatke"
6036
 
6037
- #: templates/admin/table-settings/table_settings_block.inc.php:947
6038
  msgid ""
6039
  "If this is enabled, users will see and edit only the rows that are related "
6040
  "to them or were created by them (associated using the User ID column)."
@@ -6042,16 +6149,16 @@ msgstr ""
6042
  "Če je to omogočeno, bodo uporabniki videli in uredili samo tiste vrstice, ki "
6043
  "so z njimi povezane ali so jih ustvarile (povezane s stolpcem User ID)."
6044
 
6045
- #: templates/admin/table-settings/table_settings_block.inc.php:955
6046
  msgid "Limit editing to own data only"
6047
  msgstr "Omejite urejanje samo na lastne podatke"
6048
 
6049
- #: templates/admin/table-settings/table_settings_block.inc.php:963
6050
  #: templates/edit_table.inc.php:250
6051
  msgid "User ID column"
6052
  msgstr "Stolpec User ID"
6053
 
6054
- #: templates/admin/table-settings/table_settings_block.inc.php:965
6055
  msgid ""
6056
  "Choose the column values from which will be used as User identifiers. "
6057
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
@@ -6061,43 +6168,45 @@ msgstr ""
6061
  "uporabnikov. Navaja ID iz tabele uporabnikov WordPressa (wp_users), MORAJO "
6062
  "biti definirani kot celo število na strani MySQL."
6063
 
6064
- #: templates/admin/table-settings/table_settings_block.inc.php:998
6065
  #: templates/edit_table.inc.php:350
6066
  msgid "Table tools"
6067
  msgstr "Orodja za mize"
6068
 
6069
- #: templates/admin/table-settings/table_settings_block.inc.php:1005
6070
  msgid ""
6071
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6072
  msgstr ""
6073
  "Če je to omogočeno, se nad tabelo prikaže orodna vrstica s koristnimi orodji"
6074
 
6075
- #: templates/admin/table-settings/table_settings_block.inc.php:1013
6076
  msgid "Enable Table Tools"
6077
  msgstr "Omogoči orodja za tabele"
6078
 
6079
- #: templates/admin/table-settings/table_settings_block.inc.php:1021
6080
  msgid "Buttons"
6081
  msgstr "Gumbi"
6082
 
6083
- #: templates/admin/table-settings/table_settings_block.inc.php:1023
6084
  msgid "Choose which buttons to show in the Table Tools block."
6085
  msgstr "Izberite, katere gumbe želite prikazati v bloku Orodja za tabele."
6086
 
6087
- #: templates/admin/table-settings/table_settings_block.inc.php:1029
6088
  msgid "Columns visibility"
6089
  msgstr "Vidnost stolpcev"
6090
 
6091
- #: templates/admin/table-settings/table_settings_block.inc.php:1051
6092
  msgid ""
6093
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6094
  "that will be replaced with some actual values at the execution time; usually "
6095
- "this is used for MySQL queries."
 
 
6096
  msgstr ""
6097
 
6098
- #: templates/admin/table-settings/table_settings_block.inc.php:1063
6099
- #: templates/admin/table-settings/table_settings_block.inc.php:1078
6100
- #: templates/admin/table-settings/table_settings_block.inc.php:1093
6101
  msgid ""
6102
  "This placeholder will be replaced with any value that you will provide in a "
6103
  "shortcode. Provide a default value here that will be used for table "
@@ -6107,16 +6216,23 @@ msgstr ""
6107
  "v kratki kodi. Tu navedite privzeto vrednost, ki bo uporabljena za "
6108
  "ustvarjanje tabel in kadar drugačna ni definirana v kratki kodi."
6109
 
6110
- #: templates/admin/table-settings/table_settings_block.inc.php:1083
6111
- #: templates/admin/table-settings/table_settings_block.inc.php:1098
6112
- #: templates/admin/table-settings/table_settings_block.inc.php:1120
6113
- #: templates/admin/table-settings/table_settings_block.inc.php:1138
6114
- #: templates/admin/table-settings/table_settings_block.inc.php:1155
6115
- #: templates/admin/table-settings/table_settings_block.inc.php:1176
 
 
 
 
 
 
 
6116
  msgid "Default for table generation"
6117
  msgstr "Privzeto za ustvarjanje tabel"
6118
 
6119
- #: templates/admin/table-settings/table_settings_block.inc.php:1114
6120
  msgid ""
6121
  "This placeholder will be replaced with the ID of currently logged in user. "
6122
  "Provide a value here to be used for table generation"
@@ -6124,7 +6240,7 @@ msgstr ""
6124
  "To rezervirano mesto bo nadomeščeno z ID-jem trenutno prijavljenega "
6125
  "uporabnika. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje tabel"
6126
 
6127
- #: templates/admin/table-settings/table_settings_block.inc.php:1130
6128
  msgid ""
6129
  "This placeholder will be replaced with the login of currently logged in "
6130
  "user. Provide a value here to be used for table generation"
@@ -6132,15 +6248,16 @@ msgstr ""
6132
  "To rezervirano mesto bo nadomeščeno z vpisom trenutno prijavljenega "
6133
  "uporabnika. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje tabel"
6134
 
6135
- #: templates/admin/table-settings/table_settings_block.inc.php:1148
6136
  msgid ""
6137
- "This placeholder will be replaced with the current prefix of WordPress "
6138
- "database. Provide a value here to be used for table generation"
6139
  msgstr ""
6140
- "To rezervirano mesto bo nadomeščeno s trenutno predpono baze podatkov "
6141
- "WordPress. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje tabel"
 
6142
 
6143
- #: templates/admin/table-settings/table_settings_block.inc.php:1171
6144
  msgid ""
6145
  "This placeholder will be replaced with the ID of current post. Provide a "
6146
  "value here to be used for table generation"
@@ -6148,6 +6265,72 @@ msgstr ""
6148
  "To rezervirano mesto bo zamenjano z ID-jem trenutne objave. Tu navedite "
6149
  "vrednost, ki jo želite uporabiti za ustvarjanje tabel"
6150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6151
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6152
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6153
  msgid "Go to Dashboard"
@@ -8766,39 +8949,6 @@ msgstr ""
8766
  #~ "ustvarjene iz XML, JSON, Excel, CSV, Google Spreadsheet in PHP Serialized "
8767
  #~ "array."
8768
 
8769
- #~ msgid ""
8770
- #~ "This placeholder will be replaced with the Email of currently logged in "
8771
- #~ "user. Provide a value here to be used for table generation"
8772
- #~ msgstr ""
8773
- #~ "To rezervirano mesto bo nadomeščeno z e-poštnim sporočilom trenutno "
8774
- #~ "prijavljenega uporabnika. Tu navedite vrednost, ki jo želite uporabiti za "
8775
- #~ "ustvarjanje tabel"
8776
-
8777
- #~ msgid ""
8778
- #~ "This placeholder will be replaced with the First Name of currently logged "
8779
- #~ "in user. Provide a value here to be used for table generation"
8780
- #~ msgstr ""
8781
- #~ "To rezervirano mesto bo nadomeščeno z imenom, ki je trenutno prijavljen "
8782
- #~ "uporabnikom. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje "
8783
- #~ "tabel"
8784
-
8785
- #~ msgid ""
8786
- #~ "This placeholder will be replaced with the Last Name of currently logged "
8787
- #~ "in user. Provide a value here to be used for table generation"
8788
- #~ msgstr ""
8789
- #~ "To rezervirano mesto bo nadomeščeno z Priimkom trenutno prijavljenega "
8790
- #~ "uporabnika. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje "
8791
- #~ "tabel"
8792
-
8793
- #~ msgid "This placeholder will be replaced with current date."
8794
- #~ msgstr "To rezervirano mesto bo zamenjano s trenutnim datumom."
8795
-
8796
- #~ msgid "This placeholder will be replaced with current datetime."
8797
- #~ msgstr "To rezervirano mesto bo zamenjano s trenutnim datumom."
8798
-
8799
- #~ msgid "This placeholder will be replaced with current time."
8800
- #~ msgstr "To rezervirano mesto bo zamenjano s trenutnim časom."
8801
-
8802
  #~ msgid ""
8803
  #~ "wpDataTables is the best-selling WordPress table plugin which makes your "
8804
  #~ "work with tables, charts and data management easy. 30,000+ companies and "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
+ "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: Bostjan Laba <bostjan@neolink.si>\n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: sl_SI\n"
110
  msgid "Go Premium"
111
  msgstr ""
112
 
113
+ #: controllers/wdt_admin.php:517 controllers/wdt_admin.php:566
114
+ #: controllers/wdt_admin.php:609 controllers/wdt_admin.php:630
115
+ #: controllers/wdt_admin.php:677 controllers/wdt_admin.php:703
116
+ #: controllers/wdt_admin.php:722 controllers/wdt_admin.php:742
117
+ #: controllers/wdt_admin.php:761 controllers/wdt_admin.php:781
118
+ #: controllers/wdt_admin.php:801 controllers/wdt_admin.php:821
119
+ #: controllers/wdt_admin.php:840
120
  msgid "You do not have sufficient permissions to access this page."
121
  msgstr "Nimate dovolj pravic za dostop do te strani."
122
 
223
  "kratka koda se bo vstavila samodejno. Lahko določite vrednosti za ograde in "
224
  "tudi za izvoz datoteke datoteke."
225
 
226
+ #: source/class.wdtbrowsechartstable.php:29 source/class.wdtbrowsetable.php:30
227
+ msgid "ID"
228
+ msgstr ""
229
+
230
+ #: source/class.wdtbrowsechartstable.php:30 source/class.wdtbrowsetable.php:31
231
+ #: templates/admin/chart_wizard/steps/step4.inc.php:17
232
+ msgid "Title"
233
+ msgstr "Naslov"
234
+
235
+ #: source/class.wdtbrowsechartstable.php:31
236
+ msgid "Render Engine"
237
+ msgstr ""
238
+
239
+ #: source/class.wdtbrowsechartstable.php:32
240
+ msgid "Chart Type"
241
+ msgstr ""
242
+
243
+ #: source/class.wdtbrowsechartstable.php:33 source/class.wdtbrowsetable.php:33
244
+ msgid "Shortcode"
245
+ msgstr ""
246
+
247
  #: source/class.wdtbrowsechartstable.php:141
248
  #: source/class.wdtbrowsetable.php:168
249
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
266
  msgstr "Nastavi"
267
 
268
  #: source/class.wdtbrowsechartstable.php:162
269
+ #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
270
  #: templates/admin/browse/bulk_actions.inc.php:14
271
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
272
  msgid "Delete"
348
  msgid "No wpDataCharts in the system yet."
349
  msgstr "V sistemu še ni wpDataCharts."
350
 
351
+ #: source/class.wdtbrowsetable.php:32
352
+ #: templates/admin/table-settings/add_column_modal.inc.php:47
353
+ msgid "Type"
354
+ msgstr "Vrsta"
355
+
356
  #: source/class.wdtbrowsetable.php:231
357
  msgid "MySQL"
358
  msgstr "MySQL"
361
  msgid "Manual"
362
  msgstr "Ročno"
363
 
364
+ #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2188
365
+ #: source/class.wpdatatable.php:2258
366
+ #: templates/admin/table-settings/table_settings_block.inc.php:1050
367
  msgid "Excel"
368
  msgstr "Excel"
369
 
370
+ #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2197
371
+ #: source/class.wpdatatable.php:2268
372
+ #: templates/admin/table-settings/table_settings_block.inc.php:1051
373
  msgid "CSV"
374
  msgstr "CSV"
375
 
382
  msgstr "JSON"
383
 
384
  #: source/class.wdtbrowsetable.php:249
385
+ #: templates/admin/table-settings/table_settings_block.inc.php:120
386
  #: templates/edit_table.inc.php:91
387
  msgid "Serialized PHP array"
388
  msgstr "Serializirani niz PHP"
472
  msgid "Attachment"
473
  msgstr "Priponka"
474
 
475
+ #: source/class.wdttools.php:78
476
  msgid ""
477
  "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
478
  "published correctly. <br/> You can publish it by going to <b>File -> Publish "
482
  "objavljen. <br/> Lahko ga objavite tako, da <b>odprete datoteko -> objava v "
483
  "spletu</b>"
484
 
485
+ #: source/class.wdttools.php:206
486
  msgid "Back to date"
487
  msgstr "Nazaj na datum"
488
 
489
+ #: source/class.wdttools.php:207
490
  msgid "Browse"
491
  msgstr "Prebrskaj"
492
 
493
+ #: source/class.wdttools.php:208 source/class.wdttools.php:330
494
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
495
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
496
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
508
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
509
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
510
  #: templates/admin/table-settings/table_preview_block.inc.php:86
511
+ #: templates/admin/table-settings/table_settings_block.inc.php:41
512
  #: templates/common/delete_modal.inc.php:39
513
  msgid "Cancel"
514
  msgstr "Prekliči"
515
 
516
+ #: source/class.wdttools.php:209
517
  msgid " field cannot be empty!"
518
  msgstr "polje ne more biti prazno!"
519
 
520
+ #: source/class.wdttools.php:210
521
  msgid "Use selected file"
522
  msgstr "Uporabi izbrano datoteko"
523
 
524
+ #: source/class.wdttools.php:211
525
  msgid "Choose file"
526
  msgstr "Izberite datoteko"
527
 
528
+ #: source/class.wdttools.php:212 templates/admin/common/error_modal.inc.php:23
529
  #: templates/admin/table-settings/columns_list_modal.inc.php:33
530
  #: templates/admin/table-settings/foreign_key_config.inc.php:94
531
  #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
533
  msgid "Close"
534
  msgstr "Zapri"
535
 
536
+ #: source/class.wdttools.php:213
537
  msgid "Column has been added!"
538
  msgstr "Stolpec je dodan!"
539
 
540
+ #: source/class.wdttools.php:214
541
  msgid "Column header cannot be empty!"
542
  msgstr "Glava stolpca ne more biti prazna!"
543
 
544
+ #: source/class.wdttools.php:215
545
  msgid "Please confirm column deletion!"
546
  msgstr "Potrdite brisanje stolpca!"
547
 
548
+ #: source/class.wdttools.php:216
549
  msgid "Column has been removed!"
550
  msgstr "Stolpec je bil odstranjen!"
551
 
552
+ #: source/class.wdttools.php:217
553
  msgid "Please select columns that you want to use in table"
554
  msgstr "Izberite stolpce, ki jih želite uporabiti v tabeli"
555
 
556
+ #: source/class.wdttools.php:218 source/class.wpdatatable.php:2206
557
+ #: source/class.wpdatatable.php:2278
558
+ #: templates/admin/table-settings/table_settings_block.inc.php:1052
559
  msgid "Copy"
560
  msgstr "Kopiraj"
561
 
562
+ #: source/class.wdttools.php:219
563
  msgid "There was an error trying to insert a new row!"
564
  msgstr "Pri poskusu vstavitve nove vrstice je prišlo do napake!"
565
 
566
+ #: source/class.wdttools.php:220
567
  msgid "Data has been saved!"
568
  msgstr "Podatki so shranjeni!"
569
 
570
+ #: source/class.wdttools.php:221
571
  msgid "detach"
572
  msgstr "loči"
573
 
574
+ #: source/class.wdttools.php:223
575
  msgid "Delete selected"
576
  msgstr "Izbriši izbrano"
577
 
578
+ #: source/class.wdttools.php:224 templates/settings.inc.php:553
579
  #: templates/settings.inc.php:627
580
  msgid "Error!"
581
  msgstr "Napaka!"
582
 
583
+ #: source/class.wdttools.php:225
584
  msgid "Please upload or choose a file from Media Library!"
585
  msgstr "Prenesite ali izberite datoteko iz Knjižnice medijev!"
586
 
587
+ #: source/class.wdttools.php:226
588
  msgid "From"
589
  msgstr "Od"
590
 
591
+ #: source/class.wdttools.php:227
592
  msgid "Please provide a valid e-mail address for field"
593
  msgstr "V polje vnesite veljaven e-poštni naslov"
594
 
595
+ #: source/class.wdttools.php:228
596
  msgid "Please provide a valid URL link for field"
597
  msgstr "Navedite veljavno povezavo URL za polje"
598
 
599
+ #: source/class.wdttools.php:229
600
  msgid "You have entered invalid value. Press ESC to cancel."
601
  msgstr "Vnesli ste neveljavno vrednost. Za preklic pritisnite ESC."
602
 
603
+ #: source/class.wdttools.php:230 source/class.wdttools.php:260
604
  msgid "Show _MENU_ entries"
605
  msgstr "Prikaži _MENU_ postavke"
606
 
607
+ #: source/class.wdttools.php:231
608
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
609
  msgid "Merge"
610
  msgstr "Združi"
611
 
612
+ #: source/class.wdttools.php:232
613
  msgid "New column"
614
  msgstr "Nov stolpec"
615
 
616
+ #: source/class.wdttools.php:233
617
  msgid "Number of columns can not be empty or 0"
618
  msgstr ""
619
 
620
+ #: source/class.wdttools.php:234
621
  msgid "Number of rows can not be empty or 0"
622
  msgstr ""
623
 
624
+ #: source/class.wdttools.php:236
625
  msgid ": activate to sort column ascending"
626
  msgstr ": aktivirate, da razvrstite stolpec po naraščajočem stolpcu"
627
 
628
+ #: source/class.wdttools.php:237
629
  msgid ": activate to sort column descending"
630
  msgstr ": aktiviranje za razvrščanje stolpca po padajočem"
631
 
632
+ #: source/class.wdttools.php:239
633
  msgid "Ok"
634
  msgstr "V redu"
635
 
636
+ #: source/class.wdttools.php:241
637
  msgid "First"
638
  msgstr "Prvi"
639
 
640
+ #: source/class.wdttools.php:242
641
  msgid "Last"
642
  msgstr "Zadnji"
643
 
644
+ #: source/class.wdttools.php:243
645
  msgid "Next"
646
  msgstr "Naprej"
647
 
648
+ #: source/class.wdttools.php:244
649
  msgid "Previous"
650
  msgstr "Prejšnje"
651
 
652
+ #: source/class.wdttools.php:246
653
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
654
  msgid "Replace"
655
  msgstr "Zamenjaj"
656
 
657
+ #: source/class.wdttools.php:247
658
  msgid "Row has been deleted!"
659
  msgstr "Vrstica je bila izbrisana!"
660
 
661
+ #: source/class.wdttools.php:248
662
+ msgid "Save chart"
663
+ msgstr ""
664
+
665
+ #: source/class.wdttools.php:249
666
  msgid "Select a file to use in table"
667
  msgstr "Izberite datoteko, ki jo želite uporabiti v tabeli"
668
 
669
+ #: source/class.wdttools.php:250
670
  msgid "Select an Excel or CSV file"
671
  msgstr "Izberite datoteko Excel ali CSV"
672
 
673
+ #: source/class.wdttools.php:251
674
  msgid "No data available in table"
675
  msgstr "V tabeli ni na voljo podatkov"
676
 
677
+ #: source/class.wdttools.php:252
678
  msgid "Plugin settings saved successfully"
679
  msgstr "Nastavitve vtičnika so uspešno shranjene"
680
 
681
+ #: source/class.wdttools.php:253
682
  msgid ""
683
  "Unable to save settings of plugin. Please try again or contact us over "
684
  "Support page."
685
  msgstr ""
686
 
687
+ #: source/class.wdttools.php:254
688
  msgid "Shortcode has been copied to the clipboard."
689
  msgstr "Kratka koda je bila kopirana v odložišče."
690
 
691
+ #: source/class.wdttools.php:255
692
  msgid "Showing _START_ to _END_ of _TOTAL_ entries"
693
  msgstr "Prikazuje _START_ do _END_ od _TOTAL_ navedb"
694
 
695
+ #: source/class.wdttools.php:256
696
  msgid "Showing 0 to 0 of 0 entries"
697
  msgstr "Prikazuje 0 do 0 od 0 postavk"
698
 
699
+ #: source/class.wdttools.php:257
700
  msgid "(filtered from _MAX_ total entries)"
701
  msgstr "(filtrirano od _MAX_ vseh izpisov)"
702
 
703
+ #: source/class.wdttools.php:259
704
  msgid ","
705
  msgstr ","
706
 
707
+ #: source/class.wdttools.php:261
708
  msgid "Loading..."
709
  msgstr "Nalaganje..."
710
 
711
+ #: source/class.wdttools.php:262
712
  msgid "Processing..."
713
  msgstr "Obdelujem..."
714
 
715
+ #: source/class.wdttools.php:263
716
  msgid "SQL error"
717
  msgstr "Napaka SQL"
718
 
719
+ #: source/class.wdttools.php:264
720
  msgid "Search: "
721
  msgstr "Iskanje:"
722
 
723
+ #: source/class.wdttools.php:265 templates/settings.inc.php:559
724
  #: templates/settings.inc.php:625
725
  msgid "Success!"
726
  msgstr "Uspeh!"
727
 
728
+ #: source/class.wdttools.php:266
729
  msgid "No matching records found"
730
  msgstr "Ujemljivih zapisov ni mogoče najti"
731
 
732
+ #: source/class.wdttools.php:267
733
  msgid ""
734
  "System info data has been copied to the clipboard. You can now paste it in "
735
  "file or in support topic."
736
  msgstr ""
737
 
738
+ #: source/class.wdttools.php:268
739
  msgid "Table saved successfully!"
740
  msgstr "Tabela je uspešno shranjena!"
741
 
742
+ #: source/class.wdttools.php:269
743
  msgid "To"
744
  msgstr "Do"
745
 
746
+ #: source/class.wdttools.php:305
747
  #: templates/admin/common/premium_modal.inc.php:17
748
+ #: templates/admin/table-settings/table_settings_block.inc.php:1072
749
+ #: templates/admin/table-settings/table_settings_block.inc.php:1348
750
  msgid "This is a premium feature"
751
  msgstr ""
752
 
753
+ #: source/class.wdttools.php:306
754
  #: templates/admin/common/premium_modal.inc.php:26
755
+ #: templates/admin/table-settings/table_settings_block.inc.php:1073
756
+ #: templates/admin/table-settings/table_settings_block.inc.php:1349
757
  msgid "This feature is available only in premium version of wpDataTables"
758
  msgstr ""
759
 
760
+ #: source/class.wdttools.php:307
761
  #: templates/admin/getting-started/getting_started.inc.php:133
762
  #: templates/admin/getting-started/getting_started.inc.php:145
763
  #: templates/admin/getting-started/getting_started.inc.php:157
764
  #: templates/admin/getting-started/getting_started.inc.php:169
765
+ #: templates/admin/table-settings/table_settings_block.inc.php:1077
766
+ #: templates/admin/table-settings/table_settings_block.inc.php:1353
767
  msgid "Compare and View Pricing"
768
  msgstr ""
769
 
770
+ #: source/class.wdttools.php:326
771
  msgid "Field cannot be empty!"
772
  msgstr ""
773
 
774
+ #: source/class.wdttools.php:327
775
  msgid "Please choose chart type."
776
  msgstr ""
777
 
778
+ #: source/class.wdttools.php:328
779
  msgid "Please select wpDataTable from dropdown."
780
  msgstr ""
781
 
782
+ #: source/class.wdttools.php:329
783
  msgid "Columns field cannot be empty"
784
  msgstr ""
785
 
786
+ #: source/class.wdttools.php:331
787
  msgid ""
788
  "Tutorial is not canceled, closed or end properly. Please cancel it by "
789
  "clicking on Cancel button."
790
  msgstr ""
791
 
792
+ #: source/class.wdttools.php:332
793
  msgid "Finish Tutorial"
794
  msgstr "Dokončaj vadnico"
795
 
796
+ #: source/class.wdttools.php:333
797
  msgid "Continue"
798
  msgstr "Nadaljuj"
799
 
800
+ #: source/class.wdttools.php:334
801
  msgid "Start"
802
  msgstr "Začetek"
803
 
804
+ #: source/class.wdttools.php:335
805
  msgid "Skip Tutorial"
806
  msgstr "Preskoči vadnico"
807
 
808
+ #: source/class.wdttools.php:338 source/class.wdttools.php:404
809
+ #: source/class.wdttools.php:446
810
  msgid "Welcome to the tutorial!"
811
  msgstr "Dobrodošli na vadnici!"
812
 
813
+ #: source/class.wdttools.php:339 source/class.wdttools.php:405
814
+ #: source/class.wdttools.php:447
815
  msgid "Hello "
816
  msgstr "Pozdravljeni "
817
 
818
+ #: source/class.wdttools.php:339
819
  msgid ""
820
  ", in this tutorial, we will show you how to create a simple table from "
821
  "scratch by choosing a custom number of columns and rows. How to customize "
822
  "each cell, merge cells and a lot more."
823
  msgstr ""
824
 
825
+ #: source/class.wdttools.php:342
826
  msgid " Let's create a new wpDataTable from scratch!"
827
  msgstr ""
828
 
829
+ #: source/class.wdttools.php:343 source/class.wdttools.php:409
830
  msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
831
  msgstr "Kliknite »Ustvari tabelo« za dostop do čarovnika tabele wpDataTables."
832
 
833
+ #: source/class.wdttools.php:346
834
  msgid "Choose this option"
835
  msgstr "Izberite to možnost"
836
 
837
+ #: source/class.wdttools.php:347
838
  msgid "Please select 'Create a simple table from scratch'."
839
  msgstr ""
840
 
841
+ #: source/class.wdttools.php:350 source/class.wdttools.php:416
842
  msgid "Click Next"
843
  msgstr "Kliknite Naprej"
844
 
845
+ #: source/class.wdttools.php:351 source/class.wdttools.php:417
846
  msgid "Please click the 'Next' button to continue."
847
  msgstr "Za nadaljevanje kliknite gumb »Naprej«."
848
 
849
+ #: source/class.wdttools.php:354
850
  msgid "Welcome to the Simple table wizard!"
851
  msgstr ""
852
 
853
+ #: source/class.wdttools.php:355
854
  msgid "Please click 'Continue' button to move on."
855
  msgstr ""
856
 
857
+ #: source/class.wdttools.php:358
858
  msgid "Choose a name for your table"
859
  msgstr "Izberite ime za mizo"
860
 
861
+ #: source/class.wdttools.php:359
862
  msgid "After inserting table name, click 'Continue' to move on."
863
  msgstr ""
864
 
865
+ #: source/class.wdttools.php:362
866
  msgid "Choose the number of columns for your table"
867
  msgstr ""
868
 
869
+ #: source/class.wdttools.php:363
870
  msgid ""
871
  "Please choose how many columns it will have. Remember that you can always "
872
  "add or reduce the number of columns later. Click 'Continue' when you finish."
873
  msgstr ""
874
 
875
+ #: source/class.wdttools.php:366
876
  msgid "Choose the number of rows for your table."
877
  msgstr ""
878
 
879
+ #: source/class.wdttools.php:367
880
  msgid ""
881
  "Please choose how many rows it will have. Remember that you can always add "
882
  "or reduce the number of rows later. Click 'Continue' when you finish."
883
  msgstr ""
884
 
885
+ #: source/class.wdttools.php:370
886
  msgid "Click on the 'Generate Table' button"
887
  msgstr ""
888
 
889
+ #: source/class.wdttools.php:371
890
  msgid "When you click on the button, the empty table will be ready for you. "
891
  msgstr ""
892
 
893
+ #: source/class.wdttools.php:374
894
  msgid "We are generating the table..."
895
  msgstr ""
896
 
897
+ #: source/class.wdttools.php:375
898
  msgid "Please, when you see the table, click 'Continue' to move on."
899
  msgstr ""
900
 
901
+ #: source/class.wdttools.php:378
902
  msgid ""
903
  "Nice job! You just configured your table and it is ready to fill it with "
904
  "data."
905
  msgstr ""
906
 
907
+ #: source/class.wdttools.php:379
908
  msgid ""
909
  "Now we will guide you on how to insert data and check table layout throw "
910
  "Simple table editor, table toolbar and table preview. Please click "
911
  "'Continue' to move on."
912
  msgstr ""
913
 
914
+ #: source/class.wdttools.php:382
915
  msgid "This is Simple table editor"
916
  msgstr ""
917
 
918
+ #: source/class.wdttools.php:383
919
  msgid ""
920
  "Here you can populate your table with data. <br><br>You can move around the "
921
  "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
924
  "line of the row header. Click 'Continue' to move on."
925
  msgstr ""
926
 
927
+ #: source/class.wdttools.php:386
928
  msgid "Check out the Simple table toolbar"
929
  msgstr ""
930
 
931
+ #: source/class.wdttools.php:387
932
  msgid ""
933
  "Here you can style and insert custom data for each cell or range of cells. "
934
  "You can add or delete columns and rows, merge cells, customize sections by "
936
  "ratings or custom HTML code."
937
  msgstr ""
938
 
939
+ #: source/class.wdttools.php:390
940
  msgid "Responsive table views"
941
  msgstr ""
942
 
943
+ #: source/class.wdttools.php:391
944
  msgid ""
945
  "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
946
  "tab that you need, so you can make sure your table looks excellent across "
947
  "all devices. "
948
  msgstr ""
949
 
950
+ #: source/class.wdttools.php:394
951
  msgid "Real-time preview"
952
  msgstr ""
953
 
954
+ #: source/class.wdttools.php:395
955
  msgid ""
956
  "Here you will see how your table will look like on the page. Please click "
957
  "'Continue' to move on."
958
  msgstr ""
959
 
960
+ #: source/class.wdttools.php:398
961
  msgid "Congrats! Your table is ready."
962
  msgstr ""
963
 
964
+ #: source/class.wdttools.php:399
965
  msgid ""
966
  "Now you can copy the shortcode for this table, and check out how it looks on "
967
  "your website when you paste it to a post or page. You can always come back "
968
  "and edit the table as you like."
969
  msgstr ""
970
 
971
+ #: source/class.wdttools.php:405
972
  msgid ""
973
  ", in this tutorial we will show you how to create a wpDataTable linked to an "
974
  "existing data source. \"Linked\" in this context means that if you create a "
982
  "te datoteke vsakič, ko se naloži, in tako poskrbel, da se vse spremembe "
983
  "vrednosti tabele takoj odražajo v tabeli."
984
 
985
+ #: source/class.wdttools.php:408
986
  msgid "Let's create a new wpDataTable!"
987
  msgstr "Ustvarimo novo wpDataTable!"
988
 
989
+ #: source/class.wdttools.php:412
990
  msgid "Choose this option."
991
  msgstr "Izberite to možnost."
992
 
993
+ #: source/class.wdttools.php:413
994
  msgid "Please select 'Create a table linked to an existing data source'."
995
  msgstr "Izberite „Ustvari tabelo, povezano z obstoječim virom podatkov“."
996
 
997
+ #: source/class.wdttools.php:420
998
+ #: templates/admin/table-settings/table_settings_block.inc.php:101
999
  msgid "Input data source type"
1000
  msgstr "Vrsta vhodnih podatkovnih podatkov"
1001
 
1002
+ #: source/class.wdttools.php:421
1003
  msgid "Please select a data source type that you need."
1004
  msgstr "Izberite vrsto vira podatkov, ki jo potrebujete."
1005
 
1006
+ #: source/class.wdttools.php:424
1007
  msgid "Select Data source type"
1008
  msgstr "Izberite Vrsta vira podatkov"
1009
 
1010
+ #: source/class.wdttools.php:425
1011
  msgid ""
1012
  "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1013
  "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1014
  "are available in Premium version)"
1015
  msgstr ""
1016
 
1017
+ #: source/class.wdttools.php:428
1018
+ #: templates/admin/table-settings/table_settings_block.inc.php:131
1019
  msgid "Input file path or URL"
1020
  msgstr "Pot ali URL vhodne datoteke"
1021
 
1022
+ #: source/class.wdttools.php:429
1023
  msgid ""
1024
  "Upload your file or provide the full URL here. When you finish click "
1025
  "'Continue' button."
1027
  "Naložite datoteko ali navedite celoten URL tukaj. Ko končate, kliknite gumb "
1028
  "»Nadaljuj«."
1029
 
1030
+ #: source/class.wdttools.php:432
1031
  msgid "Click Save Changes"
1032
  msgstr "Kliknite Shrani spremembe"
1033
 
1034
+ #: source/class.wdttools.php:433
1035
  msgid ""
1036
  "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1037
  "get an error message after button click and you are not able to solve it, "
1045
  "uporabljate za izdelavo te tabele, in kopirajte sporočilo o napaki in "
1046
  "kliknite Preskoči vadnico."
1047
 
1048
+ #: source/class.wdttools.php:436
1049
  msgid "The table is creating..."
1050
  msgstr "Tabela ustvarja ..."
1051
 
1052
+ #: source/class.wdttools.php:437
1053
  msgid ""
1054
  "Now the table is creating. Wait until you see it in the background and then "
1055
  "click 'Continue'."
1057
  "Zdaj tabela ustvarja. Počakajte, da ga vidite v ozadju in kliknite "
1058
  "»Nadaljuj«."
1059
 
1060
+ #: source/class.wdttools.php:440
1061
  msgid "Nice job! You just created your first wpDataTable!"
1062
  msgstr "Dobro opravljeno! Pravkar ste ustvarili svoj prvi wpDataTable!"
1063
 
1064
+ #: source/class.wdttools.php:441
1065
  msgid ""
1066
  "Now you can copy the shortcode for this table, and check out how it looks on "
1067
  "your website when you paste it to a post or page."
1069
  "Zdaj lahko kopirate bližnjico za to tabelo in preverite, kako je videti na "
1070
  "vašem spletnem mestu, ko jo prilepite v objavo ali stran."
1071
 
1072
+ #: source/class.wdttools.php:447
1073
  msgid ""
1074
  ", in this tutorial we will show you how to create a chart in wpDataTables "
1075
  "plugin."
1077
  ", v tej vadnici vam bomo pokazali, kako ustvariti grafikon v vtičniku "
1078
  "wpDataTables."
1079
 
1080
+ #: source/class.wdttools.php:450
1081
  msgid "Let's create a new wpDataTables Chart!"
1082
  msgstr "Ustvarimo novo shemo wpDataTables!"
1083
 
1084
+ #: source/class.wdttools.php:451
1085
  msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1086
  msgstr ""
1087
  "Kliknite »Ustvari grafikon« za dostop do čarovnika za grafikone wpDataTables."
1088
 
1089
+ #: source/class.wdttools.php:454
1090
  msgid "Welcome to the Chart Wizard!"
1091
  msgstr "Dobrodošli v Čarovniku za grafikone!"
1092
 
1093
+ #: source/class.wdttools.php:455
1094
  msgid ""
1095
  "You are at the first step now; we will introduce you the wpDataTables Chart "
1096
  "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1098
  "Zdaj ste na prvem koraku; vam bomo predstavili poglavje čarovnika za "
1099
  "grafikone wpDataTables. <br><br> Za premik naprej kliknite gumb »Nadaljuj«."
1100
 
1101
+ #: source/class.wdttools.php:458
1102
  msgid "Follow the steps in the Chart Wizard"
1103
  msgstr "Sledite korakom v čarovniku Chart"
1104
 
1105
+ #: source/class.wdttools.php:459
1106
  msgid ""
1107
  "By following these steps, you will finish building your chart in the Chart "
1108
  "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1112
  "grafikone. Trenutni korak bo vedno označen z modro barvo. <br><br> Za premik "
1113
  "naprej kliknite gumb »Nadaljuj«."
1114
 
1115
+ #: source/class.wdttools.php:462
1116
  msgid "Choose a name for your Chart"
1117
  msgstr "Izberite ime za grafikon"
1118
 
1119
+ #: source/class.wdttools.php:463
1120
  msgid "Click 'Continue' button when you’re ready to move forward."
1121
  msgstr "Ko ste pripravljeni za premik naprej, kliknite gumb »Nadaljuj«."
1122
 
1123
+ #: source/class.wdttools.php:466
1124
  msgid "In wpDataTables you can find several charts render engines."
1125
  msgstr "V wpDataTables lahko najdete več grafikonov."
1126
 
1127
+ #: source/class.wdttools.php:467
1128
  msgid ""
1129
  "Click on the dropdown, and you will see several options that you can choose "
1130
  "from.(Google charts are only available) <br><br>To continue, click on the "
1131
  "dropdown."
1132
  msgstr ""
1133
 
1134
+ #: source/class.wdttools.php:470
1135
  msgid "Choose Google chart engine."
1136
  msgstr ""
1137
 
1138
+ #: source/class.wdttools.php:471
1139
  msgid ""
1140
  "By clicking on Google chart options, you will choose the engine that will "
1141
  "render your chart.<br><br> When you finish, please click 'Continue' button "
1142
  "to move forward."
1143
  msgstr ""
1144
 
1145
+ #: source/class.wdttools.php:474
1146
  msgid "Different charts types. "
1147
  msgstr ""
1148
 
1149
+ #: source/class.wdttools.php:475
1150
  msgid ""
1151
  "Here you can choose a chart type. Please, click on the chart type that you "
1152
  "prefer.<br><br> When you finish, please click 'Continue' button to move "
1155
  "Tu lahko izberete vrsto grafikona. Prosimo, kliknite želeno vrsto grafikona. "
1156
  "<br><br> Ko končate, kliknite »Nadaljuj«, da se premaknete naprej."
1157
 
1158
+ #: source/class.wdttools.php:478
1159
  msgid "The first step is finished!"
1160
  msgstr "Prvi korak je končan!"
1161
 
1162
+ #: source/class.wdttools.php:479
1163
  msgid "Let's move on. Please, click 'Next' to continue."
1164
  msgstr "Gremo naprej. Za nadaljevanje kliknite »Naprej«."
1165
 
1166
+ #: source/class.wdttools.php:482
1167
  msgid ""
1168
  "Now you need to choose a wpDataTable based on which we will build a chart "
1169
  "for you"
1171
  "Zdaj morate izbrati wpDataTable, na podlagi katerega bomo izdelali grafikon "
1172
  "za vas"
1173
 
1174
+ #: source/class.wdttools.php:483
1175
  msgid ""
1176
  "Click on the dropdown, and all your tables will be listed. The columns of "
1177
  "the table that you choose will be used for creating the chart.<br><br>If you "
1183
  "ustvarili wpDataTable, kliknite gumb 'Skip Tutorial' in ustvarite "
1184
  "wpDataTable, ki bi vseboval podatke, ki jih želite najprej vizualizirati."
1185
 
1186
+ #: source/class.wdttools.php:486
1187
  msgid "Pick your wpDataTable"
1188
  msgstr "Izberite svoj wpDataTable"
1189
 
1190
+ #: source/class.wdttools.php:487
1191
  msgid ""
1192
  "Pick a wpDataTable from which you want to render a chart and when you "
1193
  "finish, please click 'Continue' to move on."
1195
  "Izberite wpDataTable, iz katerega želite upodobiti grafikon, in ko končate, "
1196
  "za nadaljevanje kliknite »Nadaljuj«."
1197
 
1198
+ #: source/class.wdttools.php:490
1199
  msgid "The second step is finished!"
1200
  msgstr "Drugi korak je končan!"
1201
 
1202
+ #: source/class.wdttools.php:491
1203
  msgid ""
1204
  "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1205
  msgstr "Poglejmo, kaj sledi. <br><br> Za nadaljevanje kliknite »Naprej«."
1206
 
1207
+ #: source/class.wdttools.php:494
1208
  msgid "Just a heads up!"
1209
  msgstr "Samo glave navzgor!"
1210
 
1211
+ #: source/class.wdttools.php:495
1212
  msgid ""
1213
  "Here you will choose from which columns you will create a chart.<br><br> "
1214
  "Please click 'Continue' button to move forward."
1216
  "Tu boste izbrali, iz katerih stolpcev boste ustvarili grafikon. <br><br> Za "
1217
  "premik naprej kliknite gumb 'Nadaljuj'."
1218
 
1219
+ #: source/class.wdttools.php:498
1220
  msgid "Meet the wpDataTable Column Blocks"
1221
  msgstr "Spoznajte stolpne bloke wpDataTable"
1222
 
1223
+ #: source/class.wdttools.php:499
1224
  msgid ""
1225
  "Here you will choose columns you want to use in the chart. Drag and drop it, "
1226
  "or click on the arrow to move the desired column to the 'Columns used in the "
1227
  "chart' section.<br><br> When you finish please, click 'Continue.'"
1228
  msgstr ""
1229
 
1230
+ #: source/class.wdttools.php:502
1231
  msgid "Well done!"
1232
  msgstr "Dobro opravljeno!"
1233
 
1234
+ #: source/class.wdttools.php:503
1235
  msgid "Just two more steps to go. Please click 'Next' to continue."
1236
  msgstr "Samo še dva koraka. Za nadaljevanje kliknite »Naprej«."
1237
 
1238
+ #: source/class.wdttools.php:506
1239
  msgid "Chart settings and chart preview."
1240
  msgstr "Nastavitve grafikona in predogled grafikona."
1241
 
1242
+ #: source/class.wdttools.php:507
1243
  msgid ""
1244
  "Here you can adjust chart settings, different parameters are grouped in "
1245
  "section; adjusting the parameters will be reflected in the preview of your "
1251
  "realnem času na desni strani. <br><br> Za premik naprej kliknite gumb "
1252
  "'Nadaljuj'."
1253
 
1254
+ #: source/class.wdttools.php:510
1255
  msgid "In this sidebar, you can find the chart settings section."
1256
  msgstr "Na tej stranski vrstici najdete razdelek z nastavitvami grafikona."
1257
 
1258
+ #: source/class.wdttools.php:511
1259
  msgid ""
1260
  "By clicking on each section, you can set your desired parameters per section."
1261
  "<br><br> Please click 'Continue' button to move on."
1263
  "S klikom na posamezen razdelek lahko nastavite želene parametre na odsek. "
1264
  "<br><br> Za nadaljevanje kliknite gumb 'Nadaljuj'."
1265
 
1266
+ #: source/class.wdttools.php:514
1267
  msgid "Here are the available chart options"
1268
  msgstr "Tu so na voljo možnosti grafikona"
1269
 
1270
+ #: source/class.wdttools.php:515
1271
  msgid ""
1272
  "Set different chart options for the chosen section to get your desired chart "
1273
  "look.<br><br> Please click 'Continue' button to move on."
1275
  "Nastavite različne možnosti grafikona za izbrani razdelek, da dobite želeni "
1276
  "videz grafikona. <br><br> Za nadaljevanje kliknite gumb 'Nadaljuj'."
1277
 
1278
+ #: source/class.wdttools.php:518
1279
  msgid "How your chart will look like on the page of your website"
1280
  msgstr "Kako bo izgledal vaš grafikon na strani vašega spletnega mesta"
1281
 
1282
+ #: source/class.wdttools.php:519
1283
  msgid ""
1284
  "Here you can see a preview of your chart based on the settings you have "
1285
  "chosen.<br><br> Please click 'Continue' button to move on."
1287
  "Tu lahko vidite predogled grafikona glede na izbrane nastavitve. <br><br> Za "
1288
  "nadaljevanje kliknite gumb 'Nadaljuj'."
1289
 
1290
+ #: source/class.wdttools.php:522
1291
  msgid "You can save your chart now"
1292
  msgstr "Zdaj lahko shranite svoj grafikon"
1293
 
1294
+ #: source/class.wdttools.php:523
1295
  msgid ""
1296
  "If you are satisfied with your chart appearance, click on the 'Save chart' "
1297
  "button and all your settings for this chart will be saved in the database."
1299
  "Če ste zadovoljni z izgledom grafikona, kliknite gumb 'Shrani grafikon' in "
1300
  "vse vaše nastavitve tega grafikona bodo shranjene v bazi podatkov."
1301
 
1302
+ #: source/class.wdttools.php:526
1303
  msgid "Congrats! Your first chart is ready!"
1304
  msgstr "Čestitke! Vaš prvi grafikon je pripravljen!"
1305
 
1306
+ #: source/class.wdttools.php:527
1307
  msgid ""
1308
  "Now you can copy the shortcode for this chart and paste it in any WP post or "
1309
  "page. <br><br>You may now finish this tutorial. "
1319
  msgid "You are mixing data types (several date axes and several number)"
1320
  msgstr "Mešate podatkovne vrste (več datumskih osi in več številk)"
1321
 
1322
+ #: source/class.wpdatatable.php:1876
1323
  msgid ""
1324
  "You are trying to load a table of an unknown type. Probably you did not "
1325
  "activate the addon which is required to use this table type."
1327
  "Poskušate naložiti tabelo neznanega tipa. Verjetno niste aktivirali dodatka, "
1328
  "ki je potreben za uporabo te vrste tabel."
1329
 
1330
+ #: source/class.wpdatatable.php:2106 source/class.wpdatatable.php:2109
1331
  #: templates/admin/chart_wizard/steps/step3.inc.php:86
1332
  #: templates/admin/table-settings/column_settings_panel.inc.php:554
1333
+ #: templates/admin/table-settings/table_settings_block.inc.php:327
1334
  #: templates/edit_table.inc.php:409
1335
  msgid "All"
1336
  msgstr "Vse"
1337
 
1338
+ #: source/class.wpdatatable.php:2167 source/class.wpdatatable.php:2236
1339
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1340
  msgid "Columns"
1341
  msgstr "Stolpci"
1342
 
1343
+ #: source/class.wpdatatable.php:2177 source/class.wpdatatable.php:2246
1344
+ #: templates/admin/table-settings/table_settings_block.inc.php:1049
1345
  msgid "Print"
1346
  msgstr "Tiskaj"
1347
 
1348
+ #: source/class.wpdatatable.php:2216 source/class.wpdatatable.php:2289
1349
+ #: templates/admin/table-settings/table_settings_block.inc.php:1053
1350
  msgid "PDF"
1351
  msgstr "PDF"
1352
 
1353
+ #: source/class.wpdatatable.php:2224
1354
  msgid "Export"
1355
  msgstr "Izvozi"
1356
 
1357
+ #: source/class.wpdatatable.php:2302
1358
  msgid "Search table"
1359
  msgstr "Tabela iskanja"
1360
 
1361
+ #: source/class.wpdatatable.php:2303
1362
  msgid "Showing _MENU_ Entries"
1363
  msgstr "Prikazovanje vnosov _MENU_"
1364
 
1377
  msgid "if you have some questions or problems with the plugin."
1378
  msgstr ""
1379
 
1380
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1381
  msgid "wpDataTables Addons"
1382
  msgstr "wpDataTables Addons"
1383
 
1396
  "wpDataTables in razvijalcev tretjih oseb, zato bodite pozorni."
1397
 
1398
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1399
+ #: templates/admin/dashboard/dashboard.inc.php:570
1400
  msgid "Report Builder"
1401
  msgstr "Graditelj poročil"
1402
 
1403
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1404
+ #: templates/admin/dashboard/dashboard.inc.php:574
1405
  msgid ""
1406
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1407
  "XLSX documents filled in with actual data from your database."
1429
  msgstr "NOVO"
1430
 
1431
  #: templates/admin/addons/addons.inc.php:40
1432
+ #: templates/admin/dashboard/dashboard.inc.php:517
1433
  msgid "Master Detail Tables for wpDataTables"
1434
  msgstr "Glavne podrobne tabele za wpDataTables"
1435
 
1454
  msgstr "Preberi več"
1455
 
1456
  #: templates/admin/addons/addons.inc.php:67
1457
+ #: templates/admin/dashboard/dashboard.inc.php:544
1458
  msgid "Powerful Filters for wpDataTables"
1459
  msgstr "Zmogljivi filtri za wpDataTables"
1460
 
1469
  "tabele, preden uporabnik določi iskalne vrednosti."
1470
 
1471
  #: templates/admin/addons/addons.inc.php:120
1472
+ #: templates/admin/dashboard/dashboard.inc.php:597
1473
  msgid "Formidable Forms integration for wpDataTables"
1474
  msgstr "Zapletena oblika integracije za wpDataTables"
1475
 
1476
  #: templates/admin/addons/addons.inc.php:123
1477
+ #: templates/admin/dashboard/dashboard.inc.php:601
1478
  msgid ""
1479
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1480
  "create wpDataTables from Formidable Forms entries data."
1483
  "ustvarjanje wpDataTables iz podatkov vnosov v Formidable Forms."
1484
 
1485
  #: templates/admin/addons/addons.inc.php:143
1486
+ #: templates/admin/dashboard/dashboard.inc.php:623
1487
  msgid "Gravity Forms integration for wpDataTables"
1488
  msgstr "Gravity Forms integracija za wpDataTables"
1489
 
1490
  #: templates/admin/addons/addons.inc.php:146
1491
+ #: templates/admin/dashboard/dashboard.inc.php:627
1492
  msgid ""
1493
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1494
  "wpDataTables from Gravity Forms entries data."
1570
  msgstr "Naslov in vrsta grafikona"
1571
 
1572
  #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1573
+ #: templates/admin/table-settings/table_settings_block.inc.php:60
1574
  #: templates/chart_wizard.inc.php:36
1575
  msgid "Data source"
1576
  msgstr "Vir podatkov"
1613
 
1614
  #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1615
  #: templates/admin/settings/tabs/color_and_font_settings.php:680
1616
+ #: templates/admin/table-settings/table_settings_block.inc.php:1902
1617
  #: templates/edit_table.inc.php:730
1618
  msgid "Color"
1619
  msgstr "Barva"
1831
  #: templates/admin/getting-started/getting_started.inc.php:144
1832
  #: templates/admin/getting-started/getting_started.inc.php:156
1833
  #: templates/admin/getting-started/getting_started.inc.php:168
1834
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
1835
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
1836
  msgid "Available in Premium"
1837
  msgstr ""
1838
 
1968
  msgid "Axes"
1969
  msgstr "Osi"
1970
 
 
 
 
 
1971
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1972
  #: templates/admin/chart_wizard/steps/step4.inc.php:532
1973
  msgid "Tooltip"
2061
  #: templates/admin/settings/tabs/color_and_font_settings.php:104
2062
  #: templates/admin/settings/tabs/color_and_font_settings.php:425
2063
  #: templates/admin/settings/tabs/color_and_font_settings.php:660
2064
+ #: templates/admin/table-settings/table_settings_block.inc.php:1549
2065
+ #: templates/admin/table-settings/table_settings_block.inc.php:1879
2066
  msgid "Background color"
2067
  msgstr "Barva ozadja"
2068
 
2081
  #: templates/admin/chart_wizard/steps/step4.inc.php:177
2082
  #: templates/admin/settings/tabs/color_and_font_settings.php:123
2083
  #: templates/admin/settings/tabs/color_and_font_settings.php:444
2084
+ #: templates/admin/table-settings/table_settings_block.inc.php:1571
2085
  msgid "Border color"
2086
  msgstr "Barva obrobe"
2087
 
2120
 
2121
  #: templates/admin/chart_wizard/steps/step4.inc.php:287
2122
  #: templates/admin/settings/tabs/color_and_font_settings.php:45
2123
+ #: templates/admin/table-settings/table_settings_block.inc.php:1483
2124
  msgid "Font size"
2125
  msgstr "VCelikost črk"
2126
 
2496
  #: templates/admin/dashboard/dashboard.inc.php:30
2497
  #: templates/admin/getting-started/getting_started.inc.php:34
2498
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2499
+ #: templates/admin/settings/settings.inc.php:100
2500
  #: templates/admin/support/support.inc.php:31
2501
  #: templates/admin/support/support.inc.php:47
2502
  #: templates/admin/system-info/system_info.inc.php:29
2503
  #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2504
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2505
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2506
+ #: templates/admin/table-settings/table_settings_block.inc.php:2063
2507
  #: templates/admin/welcome_page/welcome_page.inc.php:228
2508
  msgid "View Documentation"
2509
  msgstr "Ogled dokumentacije"
2741
  msgstr "Različica"
2742
 
2743
  #: templates/admin/dashboard/dashboard.inc.php:340
2744
+ msgid "A minor update with a couple of improvements and bug fixes:"
 
 
2745
  msgstr ""
2746
 
2747
  #: templates/admin/dashboard/dashboard.inc.php:345
2748
  msgid ""
2749
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2750
+ "media in Simple tables."
2751
  msgstr ""
2752
 
2753
  #: templates/admin/dashboard/dashboard.inc.php:346
2754
  msgid ""
2755
+ "<strong>Improvement:</strong> Added translate functions on some strings."
 
2756
  msgstr ""
2757
 
2758
  #: templates/admin/dashboard/dashboard.inc.php:347
2759
  msgid ""
2760
+ "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2761
+ "area and filters for elementor widgets."
2762
  msgstr ""
2763
 
2764
  #: templates/admin/dashboard/dashboard.inc.php:348
2765
  msgid ""
2766
+ "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2767
+ "background in graphite skin."
2768
  msgstr ""
2769
 
2770
  #: templates/admin/dashboard/dashboard.inc.php:349
2771
  msgid ""
2772
+ "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2773
+ "settings."
2774
  msgstr ""
2775
 
2776
  #: templates/admin/dashboard/dashboard.inc.php:350
2777
+ msgid "Compatibility with WordPress 5.6.2 approved."
2778
+ msgstr ""
2779
+
2780
+ #: templates/admin/dashboard/dashboard.inc.php:351
2781
  msgid "Other small bug fixes and stability improvements."
2782
  msgstr ""
2783
 
2784
+ #: templates/admin/dashboard/dashboard.inc.php:363
2785
  msgid "Go Premium!"
2786
  msgstr ""
2787
 
2788
+ #: templates/admin/dashboard/dashboard.inc.php:369
2789
  msgid "View Comparison"
2790
  msgstr ""
2791
 
2792
+ #: templates/admin/dashboard/dashboard.inc.php:377
2793
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2794
  msgid ""
2795
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2796
  "of the powerful features."
2797
  msgstr ""
2798
 
2799
+ #: templates/admin/dashboard/dashboard.inc.php:381
2800
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2801
  msgid "Create a table manually"
2802
  msgstr "Ročno ustvarite tabelo"
2803
 
2804
+ #: templates/admin/dashboard/dashboard.inc.php:384
2805
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2806
  msgid "Creating tables from Google Spreadsheet"
2807
  msgstr "Ustvarjanje tabel iz Google Spreadsheet-a"
2808
 
2809
+ #: templates/admin/dashboard/dashboard.inc.php:387
2810
  msgid ""
2811
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2812
  "tables via Google Sheet API"
2813
  msgstr ""
2814
 
2815
+ #: templates/admin/dashboard/dashboard.inc.php:390
2816
  msgid ""
2817
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2818
  "tables from Private Google Spreadsheet"
2819
  msgstr ""
2820
 
2821
+ #: templates/admin/dashboard/dashboard.inc.php:393
2822
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2823
  msgid "Creating MySQL-based tables from database"
2824
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz baze podatkov"
2825
 
2826
+ #: templates/admin/dashboard/dashboard.inc.php:396
2827
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2828
  msgid "Creating MySQL-based tables from Wordpress post types"
2829
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz vrst objav Wordpress"
2830
 
2831
+ #: templates/admin/dashboard/dashboard.inc.php:399
2832
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
2833
  #: templates/edit_table.inc.php:329
2834
  msgid "Advanced filtering"
2835
  msgstr "Napredno filtriranje"
2836
 
2837
+ #: templates/admin/dashboard/dashboard.inc.php:402
2838
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2839
+ #: templates/admin/table-settings/table_settings_block.inc.php:153
2840
  #: templates/edit_table.inc.php:282
2841
  msgid "Server-side processing"
2842
  msgstr "Obdelava na strani strežnika"
2843
 
2844
+ #: templates/admin/dashboard/dashboard.inc.php:405
2845
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2846
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2847
  msgstr ""
2848
 
2849
+ #: templates/admin/dashboard/dashboard.inc.php:408
2850
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2851
  msgid "Front-end table editing"
2852
  msgstr "Urejanje mize v sprednjem delu"
2853
 
2854
+ #: templates/admin/dashboard/dashboard.inc.php:411
2855
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2856
  msgid "Excel-like editing"
2857
  msgstr "Urejanje v Excelu"
2858
 
2859
+ #: templates/admin/dashboard/dashboard.inc.php:414
2860
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2861
  msgid "Creating charts with Highcharts"
2862
  msgstr "Ustvarjanje grafikonov z Highchartsi"
2863
 
2864
+ #: templates/admin/dashboard/dashboard.inc.php:417
2865
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2866
  msgid "Creating charts with Chart.js"
2867
  msgstr "Ustvarjanje grafikonov s Chart.js"
2868
 
2869
+ #: templates/admin/dashboard/dashboard.inc.php:420
2870
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2871
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2872
  #: templates/edit_table.inc.php:301
2873
  msgid "Responsive"
2874
  msgstr "Odziven"
2875
 
2876
+ #: templates/admin/dashboard/dashboard.inc.php:423
2877
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2878
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2879
  #: templates/edit_table.inc.php:750
2880
  msgid "Conditional formatting"
2881
  msgstr "Pogojno oblikovanje"
2882
 
2883
+ #: templates/admin/dashboard/dashboard.inc.php:426
2884
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2885
  msgid "Calculating Tools"
2886
  msgstr "Orodja za izračun"
2887
 
2888
+ #: templates/admin/dashboard/dashboard.inc.php:429
2889
  msgid "Formula columns"
2890
  msgstr ""
2891
 
2892
+ #: templates/admin/dashboard/dashboard.inc.php:432
2893
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2894
+ #: templates/admin/table-settings/table_settings_block.inc.php:80
2895
  msgid "Placeholders"
2896
  msgstr "Imetniki mest"
2897
 
2898
+ #: templates/admin/dashboard/dashboard.inc.php:435
2899
  msgid "Premium support"
2900
  msgstr ""
2901
 
2902
+ #: templates/admin/dashboard/dashboard.inc.php:439
2903
  msgid "Get Premium Today"
2904
  msgstr ""
2905
 
2906
+ #: templates/admin/dashboard/dashboard.inc.php:446
2907
  msgid "News Blog"
2908
  msgstr "Blog novic"
2909
 
2910
+ #: templates/admin/dashboard/dashboard.inc.php:451
2911
  msgid "Checkout useful articles from wpdatatables.com"
2912
  msgstr "Oglejte si uporabne članke s spletnega mesta wpdatatables.com"
2913
 
2914
+ #: templates/admin/dashboard/dashboard.inc.php:474
2915
  msgid "Please install and enable PHP extensions xml and dom on your server."
2916
  msgstr ""
2917
 
2918
+ #: templates/admin/dashboard/dashboard.inc.php:482
2919
  msgid ""
2920
  "Never miss notifications about new cool features, promotions,\n"
2921
  " giveaways or freebies – subscribe to our "
2928
  " približno 1 sporočilo na mesec in nikoli "
2929
  "neželeno!"
2930
 
2931
+ #: templates/admin/dashboard/dashboard.inc.php:500
2932
  msgid "Premium "
2933
  msgstr ""
2934
 
2935
+ #: templates/admin/dashboard/dashboard.inc.php:503
2936
  msgid ""
2937
  "While wpDataTables itself provides quite a large amount of features and "
2938
  "unlimited customisation, flexibility, you can achieve even more with our "
2939
  "premium addons.(requires wpDataTables Premium version)"
2940
  msgstr ""
2941
 
2942
+ #: templates/admin/dashboard/dashboard.inc.php:521
2943
  msgid ""
2944
  "A wpDataTables addon which allows showing additional details for a specific "
2945
  "row in a popup or a separate page or post."
2947
  "Dodatek wpDataTables, ki omogoča prikazovanje dodatnih podrobnosti za "
2948
  "določeno vrstico v pojavnem oknu ali na ločeni strani ali objavi."
2949
 
2950
+ #: templates/admin/dashboard/dashboard.inc.php:527
2951
+ #: templates/admin/dashboard/dashboard.inc.php:554
2952
+ #: templates/admin/dashboard/dashboard.inc.php:580
2953
+ #: templates/admin/dashboard/dashboard.inc.php:607
2954
+ #: templates/admin/dashboard/dashboard.inc.php:633
2955
+ #: templates/admin/dashboard/dashboard.inc.php:666
2956
  msgid "Learn More"
2957
  msgstr "Preberi več"
2958
 
2959
+ #: templates/admin/dashboard/dashboard.inc.php:548
2960
  msgid ""
2961
  "An add-on for wpDataTables that provides powerful filtering features: "
2962
  "cascade filtering, applying filters on button click, hide table before "
2966
  "filtriranje, nanašanje filtrov na klik gumba, skrivanje tabele pred "
2967
  "filtriranjem."
2968
 
2969
+ #: templates/admin/dashboard/dashboard.inc.php:644
2970
  msgid "Need free booking plugin?"
2971
  msgstr ""
2972
 
2973
+ #: templates/admin/dashboard/dashboard.inc.php:653
2974
  msgid "Appointments and Events WordPress Booking Plugin"
2975
  msgstr "Sestanki in dogodki WordPress Vtičnik za rezervacijo"
2976
 
2977
+ #: templates/admin/dashboard/dashboard.inc.php:656
2978
  msgid ""
2979
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2980
  "set up a fully-featured automated booking system on your WordPress website "
2985
  "each month."
2986
  msgstr ""
2987
 
2988
+ #: templates/admin/dashboard/dashboard.inc.php:659
2989
  msgid "Rating: 4.3 - ‎97 reviews"
2990
  msgstr ""
2991
 
2992
+ #: templates/admin/dashboard/dashboard.inc.php:662
2993
  msgid "Free Download"
2994
  msgstr ""
2995
 
2996
+ #: templates/admin/dashboard/dashboard.inc.php:677
2997
  #: templates/admin/getting-started/getting_started.inc.php:184
2998
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
2999
  #: templates/admin/support/support.inc.php:78
3000
  #: templates/admin/system-info/system_info.inc.php:509
3001
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3002
  msgid "Made by"
3003
  msgstr "Narejeno v"
3004
 
3005
+ #: templates/admin/dashboard/dashboard.inc.php:685
3006
  #: templates/admin/getting-started/getting_started.inc.php:192
3007
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3008
  #: templates/admin/support/support.inc.php:45
3009
  #: templates/admin/support/support.inc.php:86
3010
  #: templates/admin/system-info/system_info.inc.php:517
3013
  msgid "Documentation"
3014
  msgstr "Dokumentacija"
3015
 
3016
+ #: templates/admin/dashboard/dashboard.inc.php:689
3017
  #: templates/admin/getting-started/getting_started.inc.php:196
3018
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3019
  #: templates/admin/support/support.inc.php:24
3020
  #: templates/admin/support/support.inc.php:90
3021
  #: templates/admin/system-info/system_info.inc.php:521
3150
  msgstr "Primerjava Lite proti Premium"
3151
 
3152
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3153
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3154
  msgid "Go Premium Now"
3155
  msgstr ""
3156
 
3163
  msgstr "Lite"
3164
 
3165
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3166
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3167
  msgid "Premium"
3168
  msgstr "Premium"
3169
 
3193
 
3194
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3195
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3196
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3197
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3198
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3199
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
3200
  msgid "NEW!"
3201
  msgstr ""
3202
 
3215
 
3216
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3217
  #: templates/admin/table-settings/column_settings_panel.inc.php:47
3218
+ #: templates/admin/table-settings/table_settings_block.inc.php:643
3219
+ #: templates/admin/table-settings/table_settings_block.inc.php:651
3220
  msgid "Sorting"
3221
  msgstr "Razvrščanje"
3222
 
3223
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3224
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3225
+ #: templates/admin/table-settings/table_settings_block.inc.php:504
3226
+ #: templates/admin/table-settings/table_settings_block.inc.php:512
3227
+ #: templates/admin/table-settings/table_settings_block.inc.php:1387
3228
  msgid "Pagination"
3229
  msgstr "Paginiranje (zaznamovanje strani)"
3230
 
3251
  msgstr ""
3252
 
3253
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3254
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3255
  msgid "Limited"
3256
  msgstr "Omejeno"
3257
 
3259
  msgid "Some options are not available."
3260
  msgstr ""
3261
 
3262
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3263
+ msgid "Table Customization"
3264
  msgstr ""
3265
 
3266
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3267
+ msgid "Creating tables via Google Sheet API"
3268
+ msgstr ""
3269
+
3270
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3271
  msgid "Creating tables from Private Google Spreadsheet"
3272
  msgstr ""
3273
 
3274
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3275
  msgid "Support"
3276
  msgstr "Podpora"
3277
 
3278
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3279
  msgid "Response time is slow and can be up to 5 business days."
3280
  msgstr ""
3281
 
3282
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3283
  msgid ""
3284
  "* Please note that wpDataTables add-ons are not included in premium version "
3285
  "of plugin."
3286
  msgstr ""
3287
 
3288
  #: templates/admin/settings/settings.inc.php:33
3289
+ #: templates/admin/settings/settings.inc.php:95
3290
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3291
  #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3292
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3293
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3294
  #: templates/admin/table-settings/table_preview_block.inc.php:89
 
3295
  #: templates/admin/table-settings/table_settings_block.inc.php:48
3296
+ #: templates/admin/table-settings/table_settings_block.inc.php:49
3297
  msgid "Save Changes"
3298
  msgstr "Shrani spremembe"
3299
 
3317
  msgid "Custom JS and CSS"
3318
  msgstr "Po meri JS in CSS"
3319
 
3320
+ #: templates/admin/settings/settings.inc.php:62
3321
+ msgid "Google Spreadsheet API settings"
3322
+ msgstr ""
3323
+
3324
+ #: templates/admin/settings/settings.inc.php:92 templates/settings.inc.php:434
3325
  msgid "Reset colors and fonts to default"
3326
  msgstr "Ponastavi barve in pisave na privzete vrednosti"
3327
 
3328
  #: templates/admin/settings/tabs/color_and_font_settings.php:18
3329
  #: templates/admin/settings/tabs/color_and_font_settings.php:25
3330
+ #: templates/admin/table-settings/table_settings_block.inc.php:1367
3331
+ #: templates/admin/table-settings/table_settings_block.inc.php:1461
3332
  msgid "Font"
3333
  msgstr "Pisava"
3334
 
3335
  #: templates/admin/settings/tabs/color_and_font_settings.php:27
3336
+ #: templates/admin/table-settings/table_settings_block.inc.php:1464
3337
  #: templates/settings.inc.php:428
3338
  msgid ""
3339
  "This font will be used in rendered tables. Leave blank not to override "
3343
  "preglasite privzetih nastavitev tem"
3344
 
3345
  #: templates/admin/settings/tabs/color_and_font_settings.php:47
3346
+ #: templates/admin/table-settings/table_settings_block.inc.php:1486
3347
  msgid "Define the font size"
3348
  msgstr "Določite velikost pisave"
3349
 
3350
  #: templates/admin/settings/tabs/color_and_font_settings.php:70
3351
  #: templates/admin/settings/tabs/color_and_font_settings.php:143
3352
  #: templates/admin/settings/tabs/color_and_font_settings.php:464
3353
+ #: templates/admin/table-settings/table_settings_block.inc.php:1519
3354
+ #: templates/admin/table-settings/table_settings_block.inc.php:1594
3355
  msgid "Font color"
3356
  msgstr "Barva pisave"
3357
 
3358
  #: templates/admin/settings/tabs/color_and_font_settings.php:72
3359
+ #: templates/admin/table-settings/table_settings_block.inc.php:1522
3360
  msgid "This color is used for the main font in table cells."
3361
  msgstr "Ta barva se uporablja za glavno pisavo v celicah tabele."
3362
 
3363
  #: templates/admin/settings/tabs/color_and_font_settings.php:97
3364
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
3365
+ #: templates/admin/table-settings/table_settings_block.inc.php:1371
3366
  msgid "Header"
3367
  msgstr ""
3368
 
3369
  #: templates/admin/settings/tabs/color_and_font_settings.php:106
3370
+ #: templates/admin/table-settings/table_settings_block.inc.php:1552
3371
  msgid "The color is used for background of the table header."
3372
  msgstr "Barva se uporablja za ozadje glave tabele."
3373
 
3374
  #: templates/admin/settings/tabs/color_and_font_settings.php:125
3375
+ #: templates/admin/table-settings/table_settings_block.inc.php:1574
3376
  msgid "This color is used for the border in the table header."
3377
  msgstr "Ta barva se uporablja za obrobo v glavi tabele."
3378
 
3379
  #: templates/admin/settings/tabs/color_and_font_settings.php:145
3380
+ #: templates/admin/table-settings/table_settings_block.inc.php:1597
3381
  msgid "This color is used for the font in the table header."
3382
  msgstr "Ta barva se uporablja za pisavo v glavi tabele."
3383
 
3384
  #: templates/admin/settings/tabs/color_and_font_settings.php:162
3385
+ #: templates/admin/table-settings/table_settings_block.inc.php:1616
3386
  msgid "Active and hover color\t"
3387
  msgstr "Aktivna in lebdi barva"
3388
 
3389
  #: templates/admin/settings/tabs/color_and_font_settings.php:164
3390
+ #: templates/admin/table-settings/table_settings_block.inc.php:1619
3391
  msgid ""
3392
  "This color is used when you hover the mouse above the table header, or when "
3393
  "you choose a column."
3400
  msgstr ""
3401
 
3402
  #: templates/admin/settings/tabs/color_and_font_settings.php:198
3403
+ #: templates/admin/table-settings/table_settings_block.inc.php:1647
3404
  msgid "Inner border"
3405
  msgstr "Notranja meja"
3406
 
3407
  #: templates/admin/settings/tabs/color_and_font_settings.php:200
3408
+ #: templates/admin/table-settings/table_settings_block.inc.php:1650
3409
  msgid "This color is used for the inner border in the table between cells."
3410
  msgstr "Ta barva se uporablja za notranjo mejo v tabeli med celicami."
3411
 
3412
  #: templates/admin/settings/tabs/color_and_font_settings.php:218
3413
+ #: templates/admin/table-settings/table_settings_block.inc.php:1670
3414
  msgid "Outer border"
3415
  msgstr "Zunanja meja"
3416
 
3417
  #: templates/admin/settings/tabs/color_and_font_settings.php:220
3418
+ #: templates/admin/table-settings/table_settings_block.inc.php:1673
3419
  msgid "This color is used for the outer border of the whole table body."
3420
  msgstr "Ta barva se uporablja za zunanjo mejo celotnega telesa mize."
3421
 
3422
  #: templates/admin/settings/tabs/color_and_font_settings.php:238
3423
+ #: templates/admin/table-settings/table_settings_block.inc.php:1693
3424
  msgid "Table borders"
3425
  msgstr "Obrobe tabel"
3426
 
3427
  #: templates/admin/settings/tabs/color_and_font_settings.php:240
3428
+ #: templates/admin/table-settings/table_settings_block.inc.php:1696
3429
  msgid "When this is checked, borders in table will be removed "
3430
  msgstr "Ko je to potrjeno, bodo meje v tabeli odstranjene"
3431
 
3432
  #: templates/admin/settings/tabs/color_and_font_settings.php:244
3433
+ #: templates/admin/table-settings/table_settings_block.inc.php:1702
3434
  msgid "Remove borders in table"
3435
  msgstr "Odstranite obrobe v tabeli"
3436
 
3437
  #: templates/admin/settings/tabs/color_and_font_settings.php:249
3438
+ #: templates/admin/table-settings/table_settings_block.inc.php:1707
3439
  msgid "Header border"
3440
  msgstr "Meja glave"
3441
 
3442
  #: templates/admin/settings/tabs/color_and_font_settings.php:251
3443
+ #: templates/admin/table-settings/table_settings_block.inc.php:1710
3444
  msgid "When this is checked,borders in header will be removed "
3445
  msgstr "Ko je to potrjeno, se meje v glavi odstranijo"
3446
 
3449
  msgstr "Odstranite obrobe v glavi"
3450
 
3451
  #: templates/admin/settings/tabs/color_and_font_settings.php:269
3452
+ #: templates/admin/table-settings/table_settings_block.inc.php:1379
3453
  msgid "Row color"
3454
  msgstr ""
3455
 
3456
  #: templates/admin/settings/tabs/color_and_font_settings.php:276
3457
+ #: templates/admin/table-settings/table_settings_block.inc.php:1729
3458
  msgid "Even row background"
3459
  msgstr "Ozadje vrstice"
3460
 
3461
  #: templates/admin/settings/tabs/color_and_font_settings.php:278
3462
+ #: templates/admin/table-settings/table_settings_block.inc.php:1732
3463
  msgid "This color is used for for background in even rows."
3464
  msgstr "Ta barva se uporablja za ozadje v enakomernih vrsticah."
3465
 
3466
  #: templates/admin/settings/tabs/color_and_font_settings.php:295
3467
+ #: templates/admin/table-settings/table_settings_block.inc.php:1751
3468
  msgid "Odd row background"
3469
  msgstr "Ozadje nenavadnih vrst"
3470
 
3471
  #: templates/admin/settings/tabs/color_and_font_settings.php:297
3472
+ #: templates/admin/table-settings/table_settings_block.inc.php:1754
3473
  msgid "This color is used for for background in odd rows."
3474
  msgstr "Ta barva se uporablja za ozadje v neparnih vrsticah."
3475
 
3476
  #: templates/admin/settings/tabs/color_and_font_settings.php:314
3477
+ #: templates/admin/table-settings/table_settings_block.inc.php:1773
3478
  msgid "Hover row"
3479
  msgstr "Premaknite vrvico"
3480
 
3481
  #: templates/admin/settings/tabs/color_and_font_settings.php:316
3482
+ #: templates/admin/table-settings/table_settings_block.inc.php:1776
3483
  msgid ""
3484
  "This color is used for to highlight the row when you hover your mouse above "
3485
  "it."
3488
  "njo."
3489
 
3490
  #: templates/admin/settings/tabs/color_and_font_settings.php:333
3491
+ #: templates/admin/table-settings/table_settings_block.inc.php:1795
3492
  msgid "Background for selected rows"
3493
  msgstr "Ozadje za izbrane vrstice"
3494
 
3495
  #: templates/admin/settings/tabs/color_and_font_settings.php:335
3496
+ #: templates/admin/table-settings/table_settings_block.inc.php:1798
3497
  msgid "This color is used for background in selected rows."
3498
  msgstr "Ta barva se uporablja za ozadje v izbranih vrsticah."
3499
 
3500
  #: templates/admin/settings/tabs/color_and_font_settings.php:362
3501
+ #: templates/admin/table-settings/table_settings_block.inc.php:1383
3502
  msgid "Cell color"
3503
  msgstr ""
3504
 
3505
  #: templates/admin/settings/tabs/color_and_font_settings.php:369
3506
+ #: templates/admin/table-settings/table_settings_block.inc.php:1826
3507
  msgid "Sorted columns, even rows"
3508
  msgstr "Razvrščeni stolpci, celo vrstice"
3509
 
3510
  #: templates/admin/settings/tabs/color_and_font_settings.php:371
3511
+ #: templates/admin/table-settings/table_settings_block.inc.php:1829
3512
  msgid ""
3513
  "This color is used for background in cells which are in the active columns "
3514
  "(columns used for sorting) in even rows."
3517
  "(stolpci za razvrščanje) v enakih vrsticah."
3518
 
3519
  #: templates/admin/settings/tabs/color_and_font_settings.php:389
3520
+ #: templates/admin/table-settings/table_settings_block.inc.php:1849
3521
  msgid "Sorted columns, odd rows"
3522
  msgstr "Razvrščeni stolpci, lihe vrstice"
3523
 
3524
  #: templates/admin/settings/tabs/color_and_font_settings.php:391
3525
+ #: templates/admin/table-settings/table_settings_block.inc.php:1852
3526
  msgid ""
3527
  "This color is used for background in cells which are in the active columns "
3528
  "(columns used for sorting) in odd rows."
3620
  "vtičnika."
3621
 
3622
  #: templates/admin/settings/tabs/color_and_font_settings.php:662
3623
+ #: templates/admin/table-settings/table_settings_block.inc.php:1882
3624
  msgid "This color is used for the background of the pagination"
3625
  msgstr "Ta barva se uporablja za ozadje strani"
3626
 
3627
  #: templates/admin/settings/tabs/color_and_font_settings.php:682
3628
+ #: templates/admin/table-settings/table_settings_block.inc.php:1905
3629
  msgid "This color is used for the color of the links in the pagination."
3630
  msgstr "Ta barva se uporablja za barvo povezav na strani."
3631
 
3632
  #: templates/admin/settings/tabs/color_and_font_settings.php:700
3633
+ #: templates/admin/table-settings/table_settings_block.inc.php:1924
3634
  msgid "Current page background color"
3635
  msgstr "Trenutna barva ozadja strani"
3636
 
3637
  #: templates/admin/settings/tabs/color_and_font_settings.php:702
3638
+ #: templates/admin/table-settings/table_settings_block.inc.php:1927
3639
  msgid "The color is used for background of the current page"
3640
  msgstr "Barva se uporablja za ozadje trenutne strani"
3641
 
3642
  #: templates/admin/settings/tabs/color_and_font_settings.php:719
3643
+ #: templates/admin/table-settings/table_settings_block.inc.php:1948
3644
  msgid "Current page color"
3645
  msgstr "Trenutna barva strani"
3646
 
3647
  #: templates/admin/settings/tabs/color_and_font_settings.php:721
3648
+ #: templates/admin/table-settings/table_settings_block.inc.php:1951
3649
  msgid "This color is used for the color of the current page."
3650
  msgstr "Ta barva se uporablja za barvo trenutne strani."
3651
 
3652
  #: templates/admin/settings/tabs/color_and_font_settings.php:739
3653
+ #: templates/admin/table-settings/table_settings_block.inc.php:1971
3654
  msgid "Other pages hover background color"
3655
  msgstr "Druge strani se pomikajo po barvi ozadja"
3656
 
3657
  #: templates/admin/settings/tabs/color_and_font_settings.php:741
3658
+ #: templates/admin/table-settings/table_settings_block.inc.php:1974
3659
  msgid ""
3660
  "This background color is used when you hover the mouse above the other pages"
3661
  msgstr "Ta barva ozadja se uporablja, ko miško držite nad drugo stranjo"
3662
 
3663
  #: templates/admin/settings/tabs/color_and_font_settings.php:758
3664
+ #: templates/admin/table-settings/table_settings_block.inc.php:1995
3665
  msgid "Other pages hover color"
3666
  msgstr "Druge strani se pomikajo po barvi"
3667
 
3668
  #: templates/admin/settings/tabs/color_and_font_settings.php:760
3669
+ #: templates/admin/table-settings/table_settings_block.inc.php:1998
3670
  msgid "This color is used when you hover the mouse above the other pages."
3671
  msgstr "Ta barva se uporablja, ko miško držite nad drugo stranjo."
3672
 
3684
  "wpDataTable."
3685
 
3686
  #: templates/admin/settings/tabs/custom_js_and_css.php:30
3687
+ #: templates/admin/table-settings/table_settings_block.inc.php:2025
3688
  #: templates/settings.inc.php:463
3689
  msgid "Custom wpDataTables CSS"
3690
  msgstr "CSS po meri wpDataTables"
3705
  msgstr "Uporabite mešano različico datotek Javascript"
3706
 
3707
  #: templates/admin/settings/tabs/main_plugin_settings.php:15
3708
+ #: templates/admin/table-settings/table_settings_block.inc.php:1407
3709
  #: templates/settings.inc.php:45
3710
  msgid "Interface language"
3711
  msgstr "Jezik vmesnika"
3712
 
3713
  #: templates/admin/settings/tabs/main_plugin_settings.php:17
3714
+ #: templates/admin/table-settings/table_settings_block.inc.php:1410
3715
  msgid "Pick the language which will be used in tables interface."
3716
  msgstr "Izberite jezik, ki bo uporabljen v vmesniku tabel."
3717
 
3718
  #: templates/admin/settings/tabs/main_plugin_settings.php:23
3719
+ #: templates/admin/table-settings/table_settings_block.inc.php:1417
3720
  msgid "English (default)"
3721
  msgstr "Angleščina (privzeto)"
3722
 
3730
  msgstr ""
3731
  "Izberite obliko datuma, ki jo želite uporabiti v vrsti stolpca z datumom."
3732
 
3733
+ #: templates/admin/settings/tabs/main_plugin_settings.php:74
3734
  #: templates/settings.inc.php:119
3735
  msgid "Time format"
3736
  msgstr "Časovna oblika"
3737
 
3738
+ #: templates/admin/settings/tabs/main_plugin_settings.php:76
3739
  msgid "Pick the time format to use in datetime and time column type."
3740
  msgstr ""
3741
  "Izberite obliko časa, ki jo želite uporabiti v datumskem in časovnem stolpcu."
3742
 
3743
+ #: templates/admin/settings/tabs/main_plugin_settings.php:91
3744
  msgid "Parse shortcodes"
3745
  msgstr "Razčlenite kratke kode"
3746
 
3747
+ #: templates/admin/settings/tabs/main_plugin_settings.php:93
3748
  msgid ""
3749
  "If the option is enabled, you can use shortcodes of other plugins for "
3750
  "generating content."
3751
  msgstr ""
3752
 
3753
+ #: templates/admin/settings/tabs/main_plugin_settings.php:97
3754
  msgid "Parse shortcodes in strings"
3755
  msgstr "Razvrsti kratke kode v strunah"
3756
 
3757
+ #: templates/admin/settings/tabs/main_plugin_settings.php:104
3758
+ #: templates/admin/table-settings/table_settings_block.inc.php:1430
3759
  #: templates/settings.inc.php:74
3760
  msgid "Base skin"
3761
  msgstr "Osnovna koža"
3762
 
3763
+ #: templates/admin/settings/tabs/main_plugin_settings.php:106
3764
+ #: templates/admin/table-settings/table_settings_block.inc.php:1433
3765
  msgid "Choose the base skin for the plugin."
3766
  msgstr "Izberite osnovno kožo za vtičnik."
3767
 
3768
+ #: templates/admin/settings/tabs/main_plugin_settings.php:112
3769
+ #: templates/admin/table-settings/table_settings_block.inc.php:1440
3770
  msgid "Material"
3771
  msgstr "Artikel"
3772
 
3773
+ #: templates/admin/settings/tabs/main_plugin_settings.php:113
3774
+ #: templates/admin/table-settings/table_settings_block.inc.php:1441
3775
  msgid "Light"
3776
  msgstr "Svetlo"
3777
 
3778
+ #: templates/admin/settings/tabs/main_plugin_settings.php:114
3779
+ #: templates/admin/table-settings/table_settings_block.inc.php:1442
3780
  msgid "Graphite"
3781
  msgstr "Grafit"
3782
 
3783
+ #: templates/admin/settings/tabs/main_plugin_settings.php:115
3784
+ #: templates/admin/table-settings/table_settings_block.inc.php:1443
3785
  msgid "Aqua"
3786
  msgstr "Aqua"
3787
 
3788
+ #: templates/admin/settings/tabs/main_plugin_settings.php:116
3789
+ #: templates/admin/table-settings/table_settings_block.inc.php:1444
3790
  msgid "Purple"
3791
  msgstr "Vijoličnoa"
3792
 
3793
+ #: templates/admin/settings/tabs/main_plugin_settings.php:117
3794
+ #: templates/admin/table-settings/table_settings_block.inc.php:1445
3795
  msgid "Dark"
3796
  msgstr "Temno"
3797
 
3798
+ #: templates/admin/settings/tabs/main_plugin_settings.php:125
3799
  #: templates/settings.inc.php:131
3800
  msgid "Number format"
3801
  msgstr "Oblika številke"
3802
 
3803
+ #: templates/admin/settings/tabs/main_plugin_settings.php:127
3804
  #: templates/settings.inc.php:138
3805
  msgid "Pick the number format (thousands and decimals separator)"
3806
  msgstr "Izberite obliko števila (ločilo tisoč in decimalk)"
3807
 
3808
+ #: templates/admin/settings/tabs/main_plugin_settings.php:144
3809
  #: templates/settings.inc.php:86
3810
  msgid "Render advanced filter"
3811
  msgstr "Označi napredni filter"
3812
 
3813
+ #: templates/admin/settings/tabs/main_plugin_settings.php:146
3814
  msgid ""
3815
  "Choose where you would like to render the advanced filter for tables where "
3816
  "enabled."
3817
  msgstr ""
3818
  "Izberite, kam želite prikazati napredni filter za tabele, kjer so omogočene."
3819
 
3820
+ #: templates/admin/settings/tabs/main_plugin_settings.php:152
3821
  #: templates/settings.inc.php:90
3822
  msgid "In the header"
3823
  msgstr "V glavi"
3824
 
3825
+ #: templates/admin/settings/tabs/main_plugin_settings.php:153
3826
  #: templates/settings.inc.php:91
3827
  msgid "In the footer"
3828
  msgstr "V nogi"
3829
 
3830
+ #: templates/admin/settings/tabs/main_plugin_settings.php:161
3831
  #: templates/admin/table-settings/column_settings_panel.inc.php:385
3832
  #: templates/settings.inc.php:143
3833
  msgid "Decimal places"
3834
  msgstr "Decimalna mesta"
3835
 
3836
+ #: templates/admin/settings/tabs/main_plugin_settings.php:163
3837
  msgid "Define the amount of decimal places for the float numbers."
3838
  msgstr "Določite količino decimalnih mest za float številke."
3839
 
3840
+ #: templates/admin/settings/tabs/main_plugin_settings.php:188
3841
  msgid "CSV delimiter"
3842
  msgstr "Omejevalnik CSV"
3843
 
3844
+ #: templates/admin/settings/tabs/main_plugin_settings.php:190
3845
  msgid "Pick the CSV delimiter"
3846
  msgstr "Izberite ločilo CSV"
3847
 
3848
+ #: templates/admin/settings/tabs/main_plugin_settings.php:209
3849
  msgid "Tables sorting direction in admin page"
3850
  msgstr ""
3851
 
3852
+ #: templates/admin/settings/tabs/main_plugin_settings.php:211
3853
  msgid ""
3854
  "Here you can set sorting direction by id for browse tables and charts. By "
3855
  "default is ascending order."
3856
  msgstr ""
3857
 
3858
+ #: templates/admin/settings/tabs/main_plugin_settings.php:217
3859
  #: templates/admin/table-settings/column_settings_panel.inc.php:783
3860
  #: templates/edit_table.inc.php:663
3861
  msgid "Ascending"
3862
  msgstr "Naraščajoče"
3863
 
3864
+ #: templates/admin/settings/tabs/main_plugin_settings.php:218
3865
  #: templates/admin/table-settings/column_settings_panel.inc.php:784
3866
  #: templates/edit_table.inc.php:665
3867
  msgid "Descending"
3868
  msgstr "Padajoče"
3869
 
3870
+ #: templates/admin/settings/tabs/main_plugin_settings.php:229
3871
  #: templates/settings.inc.php:171
3872
  msgid "Tablet width"
3873
  msgstr "Širina tabličnega računalnika"
3874
 
3875
+ #: templates/admin/settings/tabs/main_plugin_settings.php:231
3876
  #: templates/settings.inc.php:175
3877
  msgid ""
3878
  "Here you can specify width of the screen (in pixels) that will be treated as "
3881
  "Tu lahko določite širino zaslona (v slikovnih pikah), ki bo obravnavana kot "
3882
  "tablica. Lahko ga nastavite širše, če želite odziven učinek na namizjih."
3883
 
3884
+ #: templates/admin/settings/tabs/main_plugin_settings.php:255
3885
  #: templates/settings.inc.php:181
3886
  msgid "Mobile width"
3887
  msgstr "Mobilna širina"
3888
 
3889
+ #: templates/admin/settings/tabs/main_plugin_settings.php:257
3890
  msgid "Here you can specify width (in pixels) will be treated as a mobile.."
3891
  msgstr ""
3892
  "Tu lahko določite širino (v slikovnih pikah), ki bo obravnavana kot mobilna."
3893
 
3894
+ #: templates/admin/settings/tabs/main_plugin_settings.php:282
3895
  #: templates/settings.inc.php:61
3896
  msgid "Tables per admin page"
3897
  msgstr "Tabele na skrbniško stran"
3898
 
3899
+ #: templates/admin/settings/tabs/main_plugin_settings.php:284
3900
  msgid "How many tables to show in the browse page."
3901
  msgstr "Koliko tabel za prikaz na strani za brskanje."
3902
 
3903
+ #: templates/admin/settings/tabs/main_plugin_settings.php:300
3904
  msgid "Align numbers"
3905
  msgstr "Poravnajte številke"
3906
 
3907
+ #: templates/admin/settings/tabs/main_plugin_settings.php:302
3908
  msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
3909
  msgstr ""
3910
 
3911
+ #: templates/admin/settings/tabs/main_plugin_settings.php:306
3912
  #: templates/settings.inc.php:161
3913
  msgid "Align numbers to the right"
3914
  msgstr "Poravnajte številke na desni"
3915
 
3916
+ #: templates/admin/settings/tabs/main_plugin_settings.php:316
3917
  msgid "Sum functions label"
3918
  msgstr "Oznaka funkcij seštevanja"
3919
 
3920
+ #: templates/admin/settings/tabs/main_plugin_settings.php:318
3921
  msgid ""
3922
  "Enter a label that will be used for Sum functions. If you leave it blank "
3923
  "default label will be Σ ="
3925
  "Vnesite oznako, ki bo uporabljena za funkcije vsote. Če ga pustite prazno, "
3926
  "bo privzeta oznaka Σ ="
3927
 
3928
+ #: templates/admin/settings/tabs/main_plugin_settings.php:336
3929
  msgid "Average functions label"
3930
  msgstr "Oznaka povprečnih funkcij"
3931
 
3932
+ #: templates/admin/settings/tabs/main_plugin_settings.php:338
3933
  msgid ""
3934
  "Enter a label that will be used for Average functions. If you leave it blank "
3935
  "default label will be Avg ="
3937
  "Vnesite oznako, ki bo uporabljena za funkcije povprečja. Če ga pustite "
3938
  "prazno, bo privzeta oznaka Avg ="
3939
 
3940
+ #: templates/admin/settings/tabs/main_plugin_settings.php:361
3941
  msgid "Minimum functions label"
3942
  msgstr "Oznaka minimalnih funkcij"
3943
 
3944
+ #: templates/admin/settings/tabs/main_plugin_settings.php:363
3945
  msgid ""
3946
  "Enter a label that will be used for Minimum functions. If you leave it blank "
3947
  "default label will be Min ="
3949
  "Vnesite oznako, ki bo uporabljena za Minimalne funkcije. Če pustite prazno, "
3950
  "bo privzeta oznaka Min ="
3951
 
3952
+ #: templates/admin/settings/tabs/main_plugin_settings.php:381
3953
  msgid "Maximum functions label"
3954
  msgstr "Oznaka največjih funkcij"
3955
 
3956
+ #: templates/admin/settings/tabs/main_plugin_settings.php:383
3957
  msgid ""
3958
  "Enter a label that will be used for Maximum functions. If you leave it blank "
3959
  "default label will be Max ="
3961
  "Vnesite oznako, ki bo uporabljena za funkcije največ. Če ga pustite prazno, "
3962
  "bo privzeta oznaka Max ="
3963
 
3964
+ #: templates/admin/settings/tabs/main_plugin_settings.php:409
3965
  msgid "Include full bootstrap front-end"
3966
  msgstr "Vključite sprednji del prtljažnika"
3967
 
3968
+ #: templates/admin/settings/tabs/main_plugin_settings.php:411
3969
+ #: templates/admin/settings/tabs/main_plugin_settings.php:422
3970
  msgid ""
3971
  "It is recommended to uncheck this option if bootstrap.js is already included "
3972
  "in one of the theme files. Unchecked option means that there is still "
3977
  "vključen bootstrap.js samo v načinu brezkonflikta, kar bi moralo preprečiti "
3978
  "napake."
3979
 
3980
+ #: templates/admin/settings/tabs/main_plugin_settings.php:415
3981
  msgid "Include full bootstrap.js on the front-end"
3982
  msgstr "Na sprednji strani vključite celoten bootstrap.js"
3983
 
3984
+ #: templates/admin/settings/tabs/main_plugin_settings.php:420
3985
  msgid "Include full bootstrap back-end"
3986
  msgstr "Vključite popolno začetno vrv"
3987
 
3988
+ #: templates/admin/settings/tabs/main_plugin_settings.php:426
3989
  msgid "Include full bootstrap.js on the back-end"
3990
  msgstr "Na zadnji strani vključite celoten bootstrap.js"
3991
 
3992
+ #: templates/admin/settings/tabs/main_plugin_settings.php:434
3993
+ #: templates/admin/settings/tabs/main_plugin_settings.php:440
3994
  #: templates/settings.inc.php:32
3995
  msgid "Show plugin credentials below tables"
3996
  msgstr ""
3997
 
3998
+ #: templates/admin/settings/tabs/main_plugin_settings.php:436
3999
  #: templates/settings.inc.php:32
4000
  msgid ""
4001
  "If you want to support our project, please, keep this checkbox as checked"
4002
  msgstr ""
4003
 
4004
+ #: templates/admin/settings/tabs/main_plugin_settings.php:445
4005
  msgid "Prevent deleting tables in database"
4006
  msgstr "Prepreči brisanje tabel v bazi podatkov"
4007
 
4008
+ #: templates/admin/settings/tabs/main_plugin_settings.php:447
4009
  msgid ""
4010
  "It is recommended to leave this option as checked if you what to keep your "
4011
  "tables in database after deleting plugin from Plugins page. If you uncheck "
4012
  "this option, it will be deleted all tables in database after deleting plugin"
4013
  msgstr ""
4014
 
4015
+ #: templates/admin/settings/tabs/main_plugin_settings.php:451
4016
  msgid ""
4017
  "Prevent deleting tables in database after deleting plugin from Plugins page"
4018
  msgstr ""
4019
  "Preprečite brisanje tabel v bazi podatkov po brisanju vtičnika s strani "
4020
  "Vtičniki"
4021
 
4022
+ #: templates/admin/settings/tabs/main_plugin_settings.php:458
4023
  msgid "Remove Getting Started page"
4024
  msgstr "Odstranite stran z začetkom"
4025
 
4026
+ #: templates/admin/settings/tabs/main_plugin_settings.php:460
4027
  msgid ""
4028
  "Check this option if you want to remove Getting Started page from admin menu."
4029
  msgstr ""
4030
  "Označite to možnost, če želite stran z začetkom dela odstraniti iz "
4031
  "skrbniškega menija."
4032
 
4033
+ #: templates/admin/settings/tabs/main_plugin_settings.php:464
4034
  msgid "Remove \"Getting Started\" page from admin menu."
4035
  msgstr "Odstranite stran \"Uvod\" iz menija skrbnika."
4036
 
4315
  msgid "Column header"
4316
  msgstr "Glava stolpca"
4317
 
 
 
 
 
4318
  #: templates/admin/table-settings/add_column_modal.inc.php:64
4319
  msgid "Insert after"
4320
  msgstr "Vstavi po"
4351
 
4352
  #: templates/admin/table-settings/column_settings_panel.inc.php:39
4353
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4354
+ #: templates/admin/table-settings/table_settings_block.inc.php:64
4355
  msgid "Display"
4356
  msgstr "Prikaz"
4357
 
4364
  msgstr ""
4365
 
4366
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4367
+ #: templates/admin/table-settings/table_settings_block.inc.php:72
4368
  msgid "Editing"
4369
  msgstr "Urejanje"
4370
 
4866
  msgstr "Dovoli filtriranje"
4867
 
4868
  #: templates/admin/table-settings/column_settings_panel.inc.php:834
4869
+ #: templates/admin/table-settings/table_settings_block.inc.php:682
4870
  msgid "Global search"
4871
  msgstr "Globalno iskanje"
4872
 
5430
  msgstr ""
5431
 
5432
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5433
+ #: templates/admin/table-settings/table_settings_block.inc.php:211
5434
  #: templates/edit_table.inc.php:58
5435
  msgid "Table title"
5436
  msgstr "Naslov tabele"
5437
 
5438
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5439
+ #: templates/admin/table-settings/table_settings_block.inc.php:219
5440
  #: templates/edit_table.inc.php:67
5441
  msgid "Show table title"
5442
  msgstr "Prikaži naslov tabele"
5443
 
5444
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5445
+ #: templates/admin/table-settings/table_settings_block.inc.php:226
5446
  msgid ""
5447
  "Enable this to show the table title in a h3 block above the table, disable "
5448
  "to hide."
5451
  "skrivanje."
5452
 
5453
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5454
+ #: templates/admin/table-settings/table_settings_block.inc.php:234
5455
  msgid "Show table title on the page"
5456
  msgstr "Pokaži naslov tabele na strani"
5457
 
5518
  msgstr "Lahko se premikate"
5519
 
5520
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5521
+ #: templates/admin/table-settings/table_settings_block.inc.php:378
5522
  msgid "Scrollable table"
5523
  msgstr "Drsna miza"
5524
 
5525
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5526
+ #: templates/admin/table-settings/table_settings_block.inc.php:385
5527
  msgid "Enable this to enable a horizontal scrollbar below the table."
5528
  msgstr "To omogočite, da omogočite vodoravno drsno vrstico pod tabelo."
5529
 
5530
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5531
+ #: templates/admin/table-settings/table_settings_block.inc.php:394
5532
  msgid "Show a horizontal scrollbar"
5533
  msgstr "Pokaži vodoravno drsno vrstico"
5534
 
5535
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5536
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5537
+ #: templates/admin/table-settings/table_settings_block.inc.php:438
5538
+ #: templates/admin/table-settings/table_settings_block.inc.php:446
5539
  msgid "Limit table width"
5540
  msgstr "Omejite širino mize"
5541
 
5542
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5543
+ #: templates/admin/table-settings/table_settings_block.inc.php:453
5544
  msgid "Enable this to restrict table width to page width."
5545
  msgstr "To omogočite, da širino tabele omejite na širino strani."
5546
 
5547
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5548
+ #: templates/admin/table-settings/table_settings_block.inc.php:462
5549
  msgid "Limit table width to page width"
5550
  msgstr "Omejite širino tabele na širino strani"
5551
 
5552
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5553
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5554
+ #: templates/admin/table-settings/table_settings_block.inc.php:469
5555
+ #: templates/admin/table-settings/table_settings_block.inc.php:477
5556
  #: templates/edit_table.inc.php:392
5557
  msgid "Word wrap"
5558
  msgstr "Preplet besed"
5559
 
5560
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5561
+ #: templates/admin/table-settings/table_settings_block.inc.php:484
5562
  msgid ""
5563
  "Enable this to wrap long strings into multiple lines and stretch the cells "
5564
  "height."
5567
  "celic."
5568
 
5569
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5570
+ #: templates/admin/table-settings/table_settings_block.inc.php:492
5571
  msgid "Wrap words to newlines"
5572
  msgstr "Prepišite besede v nove vrstice"
5573
 
5629
  msgid "EXCEL-LIKE"
5630
  msgstr ""
5631
 
5632
+ #: templates/admin/table-settings/table_settings_block.inc.php:68
5633
  msgid "Sorting and filtering"
5634
  msgstr "Razvrščanje in filtriranje"
5635
 
5636
+ #: templates/admin/table-settings/table_settings_block.inc.php:76
5637
+ #: templates/admin/table-settings/table_settings_block.inc.php:1009
5638
  msgid "Table Tools"
5639
  msgstr "Orodja za tabele"
5640
 
5641
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
5642
+ msgid " Customize"
5643
+ msgstr ""
5644
+
5645
+ #: templates/admin/table-settings/table_settings_block.inc.php:103
5646
  msgid ""
5647
  "Please choose a type of the input data source - it can be a MySQL query, a "
5648
  "file, or an URL. Only MySQL query-based tables can use server-side processing"
5651
  "ali URL. Samo tabele na osnovi poizvedb lahko uporabljajo obdelavo na strani "
5652
  "strežnika"
5653
 
5654
+ #: templates/admin/table-settings/table_settings_block.inc.php:110
5655
  msgid "Select a data source type"
5656
  msgstr "Izberite vrsto vira podatkov"
5657
 
5658
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
5659
  msgid "SQL query "
5660
  msgstr ""
5661
 
5662
+ #: templates/admin/table-settings/table_settings_block.inc.php:113
5663
  #: templates/edit_table.inc.php:85
5664
  msgid "CSV file"
5665
  msgstr "Datoteka CSV"
5666
 
5667
+ #: templates/admin/table-settings/table_settings_block.inc.php:114
5668
  #: templates/edit_table.inc.php:86
5669
  msgid "Excel file"
5670
  msgstr "Excelova datoteka"
5671
 
5672
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
5673
  msgid "Google Spreadsheet "
5674
  msgstr ""
5675
 
5676
+ #: templates/admin/table-settings/table_settings_block.inc.php:118
5677
  #: templates/edit_table.inc.php:89
5678
  msgid "XML file"
5679
  msgstr "Datoteka XML"
5680
 
5681
+ #: templates/admin/table-settings/table_settings_block.inc.php:119
5682
  #: templates/edit_table.inc.php:90
5683
  msgid "JSON file"
5684
  msgstr "Datoteka JSON"
5685
 
5686
+ #: templates/admin/table-settings/table_settings_block.inc.php:133
5687
  msgid ""
5688
  "Upload your file or provide the full URL here. For CSV or Excel input "
5689
  "sources only URLs or paths from same domain are supported. For Google "
5694
  "Excel so podprti samo URL-ji ali poti iz iste domene. Za Googlove "
5695
  "preglednice: ne pozabite objaviti preglednice, preden prilepite URL."
5696
 
5697
+ #: templates/admin/table-settings/table_settings_block.inc.php:139
5698
  msgid "Paste URL or path, or click Browse to choose"
5699
  msgstr "Prilepite URL ali pot ali kliknite Brskaj, da izberete"
5700
 
5701
+ #: templates/admin/table-settings/table_settings_block.inc.php:143
5702
  msgid "Browse..."
5703
  msgstr "Prebrskaj..."
5704
 
5705
+ #: templates/admin/table-settings/table_settings_block.inc.php:155
5706
  msgid ""
5707
  "If it is turned on, all sorting, filtering, pagination and other data "
5708
  "interaction will be done by MySQL server. This feature is recommended if you "
5712
  "strjevanje strani in druge interakcije s podatki. Ta funkcija je "
5713
  "priporočljiva, če imate več kot 2000-3000 vrstic. Obvezno za urejanje tabel."
5714
 
5715
+ #: templates/admin/table-settings/table_settings_block.inc.php:162
5716
  msgid "Enable server-side processing"
5717
  msgstr "Omogoči obdelavo na strani strežnika"
5718
 
5719
+ #: templates/admin/table-settings/table_settings_block.inc.php:177
5720
  msgid "MySQL Query"
5721
  msgstr ""
5722
 
5723
+ #: templates/admin/table-settings/table_settings_block.inc.php:179
5724
  msgid ""
5725
  "Enter the text of your MySQL query here - please make sure it returns actual "
5726
  "data first. You can use a number of placeholders to make the dataset in the "
5728
  "with different shortcodes."
5729
  msgstr ""
5730
 
5731
+ #: templates/admin/table-settings/table_settings_block.inc.php:186
5732
  #: templates/edit_table.inc.php:292
5733
  msgid "Auto-refresh"
5734
  msgstr "Samodejno osveži"
5735
 
5736
+ #: templates/admin/table-settings/table_settings_block.inc.php:188
5737
  msgid ""
5738
  "If you enter a non-zero value, table will auto-refresh to show actual data "
5739
  "with a given interval of seconds. Leave zero or empty not to use auto-"
5743
  "dejanskih podatkov v določenem intervalu sekund. Pustite nič ali prazno, da "
5744
  "ne želite samodejno osvežiti."
5745
 
5746
+ #: templates/admin/table-settings/table_settings_block.inc.php:193
5747
  msgid "Auto-refresh interval in seconds (zero or blank to disable)"
5748
  msgstr ""
5749
  "Interval samodejnega osveževanja v sekundah (nič ali prazno za onemogočanje)"
5750
 
5751
+ #: templates/admin/table-settings/table_settings_block.inc.php:242
5752
  msgid "Responsiveness"
5753
  msgstr "Odzivnost"
5754
 
5755
+ #: templates/admin/table-settings/table_settings_block.inc.php:250
5756
  msgid "Responsive design"
5757
  msgstr "Odzivno oblikovanje"
5758
 
5759
+ #: templates/admin/table-settings/table_settings_block.inc.php:257
5760
  msgid "Enable this to allow responsiveness in the table."
5761
  msgstr "To omogočite, da omogočite odzivnost v tabeli."
5762
 
5763
+ #: templates/admin/table-settings/table_settings_block.inc.php:258
5764
  msgid ""
5765
  "Please do not forget to define which columns will be hidden on mobiles and "
5766
  "tablets in the column settings!"
5768
  "V nastavitvah stolpcev ne pozabite določiti, kateri stolpci bodo skriti na "
5769
  "mobilih in tabličnih računalnikih!"
5770
 
5771
+ #: templates/admin/table-settings/table_settings_block.inc.php:269
5772
  msgid "Allow collapsing on mobiles and tablets"
5773
  msgstr "Dovoli, da se zrušijo na mobilih in tabličnih računalnikih"
5774
 
5775
+ #: templates/admin/table-settings/table_settings_block.inc.php:277
5776
  msgid "Hide until loaded"
5777
  msgstr "Skrij, dokler se ne naloži"
5778
 
5779
+ #: templates/admin/table-settings/table_settings_block.inc.php:279
5780
  msgid ""
5781
  "Enable to make whole table hidden until it is initialized to prevent "
5782
  "unformatted data flashing"
5784
  "Omogoči, da se celotna tabela skrije, dokler se ne inicializira, da prepreči "
5785
  "utripanje neoblikovanih podatkov"
5786
 
5787
+ #: templates/admin/table-settings/table_settings_block.inc.php:284
5788
  msgid "Hide the table before it is fully loaded"
5789
  msgstr "Skrijte mizo, preden je popolnoma naložena"
5790
 
5791
+ #: templates/admin/table-settings/table_settings_block.inc.php:296
5792
  msgid "Default rows per page"
5793
  msgstr "Privzete vrstice na stran"
5794
 
5795
+ #: templates/admin/table-settings/table_settings_block.inc.php:304
5796
+ #: templates/admin/table-settings/table_settings_block.inc.php:339
5797
  msgid "Rows per page"
5798
  msgstr "Vrstic na stran"
5799
 
5800
+ #: templates/admin/table-settings/table_settings_block.inc.php:311
5801
  msgid "How many rows to show per page by default."
5802
  msgstr "Koliko vrstic privzeto prikaže na stran."
5803
 
5804
+ #: templates/admin/table-settings/table_settings_block.inc.php:347
5805
  msgid "Show X entries"
5806
  msgstr "Prikaži X vnose"
5807
 
5808
+ #: templates/admin/table-settings/table_settings_block.inc.php:354
5809
  msgid ""
5810
  "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
5811
  "frontend."
5813
  "To omogočite / onemogočite, če želite prikazati / skriti \"Prikaži vnose X\" "
5814
  "na spustno stran na sprednji strani."
5815
 
5816
+ #: templates/admin/table-settings/table_settings_block.inc.php:362
5817
  msgid "Show \"Show X entries\" dropdown"
5818
  msgstr "Prikaži spustni meni \"Prikaži X vnose\""
5819
 
5820
+ #: templates/admin/table-settings/table_settings_block.inc.php:386
5821
  msgid "This should be turned off if you want to set columns width manually."
5822
  msgstr "To je treba izklopiti, če želite širino stolpcev nastaviti ročno."
5823
 
5824
+ #: templates/admin/table-settings/table_settings_block.inc.php:407
5825
+ #: templates/admin/table-settings/table_settings_block.inc.php:415
5826
  msgid "Info block"
5827
  msgstr "Info blok"
5828
 
5829
+ #: templates/admin/table-settings/table_settings_block.inc.php:422
5830
  msgid ""
5831
  "Enable to show a block of information about the number of records below the "
5832
  "table."
5833
  msgstr "Omogoči prikaz tabele podatkov o številu zapisov pod tabelo."
5834
 
5835
+ #: templates/admin/table-settings/table_settings_block.inc.php:430
5836
  msgid "Show information block below the table"
5837
  msgstr "Prikaži tabelo informacij pod tabelo"
5838
 
5839
+ #: templates/admin/table-settings/table_settings_block.inc.php:454
5840
  msgid ""
5841
  "This should be turned on if you want to set columns width manually. Should "
5842
  "be on to use word wrapping."
5844
  "To je treba vklopiti, če želite ročno nastaviti širino stolpcev. "
5845
  "Uporabljajte zavijanje besed."
5846
 
5847
+ #: templates/admin/table-settings/table_settings_block.inc.php:516
5848
  msgid "Enable to show a pagination"
5849
  msgstr ""
5850
 
5851
+ #: templates/admin/table-settings/table_settings_block.inc.php:524
5852
  msgid "Show pagination block below the table"
5853
  msgstr ""
5854
 
5855
+ #: templates/admin/table-settings/table_settings_block.inc.php:532
5856
+ #: templates/admin/table-settings/table_settings_block.inc.php:540
5857
  msgid "Pagination Alignment"
5858
  msgstr ""
5859
 
5860
+ #: templates/admin/table-settings/table_settings_block.inc.php:544
5861
  msgid "Here you can set pagination position: right, center or left."
5862
  msgstr ""
5863
 
5864
+ #: templates/admin/table-settings/table_settings_block.inc.php:552
5865
  msgid "Right"
5866
  msgstr ""
5867
 
5868
+ #: templates/admin/table-settings/table_settings_block.inc.php:553
5869
  msgid "Center"
5870
  msgstr ""
5871
 
5872
+ #: templates/admin/table-settings/table_settings_block.inc.php:554
5873
  msgid "Left"
5874
  msgstr ""
5875
 
5876
+ #: templates/admin/table-settings/table_settings_block.inc.php:563
5877
+ #: templates/admin/table-settings/table_settings_block.inc.php:571
5878
  msgid "Pagination Layout"
5879
  msgstr ""
5880
 
5881
+ #: templates/admin/table-settings/table_settings_block.inc.php:575
5882
  msgid "Here you can choose between different pagination layout."
5883
  msgstr ""
5884
 
5885
+ #: templates/admin/table-settings/table_settings_block.inc.php:583
5886
  msgid ""
5887
  "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
5888
  msgstr ""
5889
 
5890
+ #: templates/admin/table-settings/table_settings_block.inc.php:584
5891
  msgid "\"Previous\" and \"Next\" buttons only"
5892
  msgstr ""
5893
 
5894
+ #: templates/admin/table-settings/table_settings_block.inc.php:585
5895
  msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
5896
  msgstr ""
5897
 
5898
+ #: templates/admin/table-settings/table_settings_block.inc.php:586
5899
  msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
5900
  msgstr ""
5901
 
5902
+ #: templates/admin/table-settings/table_settings_block.inc.php:587
5903
  msgid "Page number buttons only"
5904
  msgstr ""
5905
 
5906
+ #: templates/admin/table-settings/table_settings_block.inc.php:588
5907
  msgid "\"First\" and \"Last\" buttons, plus page numbers"
5908
  msgstr ""
5909
 
5910
+ #: templates/admin/table-settings/table_settings_block.inc.php:609
5911
  msgid "Advanced column filters"
5912
  msgstr "Napredni filtri stolpcev"
5913
 
5914
+ #: templates/admin/table-settings/table_settings_block.inc.php:617
5915
  msgid "Advanced filter"
5916
  msgstr "Napredni filter"
5917
 
5918
+ #: templates/admin/table-settings/table_settings_block.inc.php:624
5919
  msgid ""
5920
  "Enable to show an advanced filter for each of the columns, filters can be "
5921
  "shown in table footer, header or in a separate form."
5923
  "Omogoči prikazovanje naprednega filtra za vsak stolpec, filtri so lahko "
5924
  "prikazani v nogi tabele, glavi tabele ali v ločenem obrazcu."
5925
 
5926
+ #: templates/admin/table-settings/table_settings_block.inc.php:635
5927
  msgid "Enable advanced column filters"
5928
  msgstr "Omogoči napredne filtre stolpcev"
5929
 
5930
+ #: templates/admin/table-settings/table_settings_block.inc.php:658
5931
  msgid ""
5932
  "If this is enabled, each column header will be clickable; clicking will sort "
5933
  "the whole table by the content of this column cells ascending or descending."
5936
  "razvrstili celotno tabelo po vsebini celic tega stolpca, ki se povečujejo "
5937
  "ali padajoče."
5938
 
5939
+ #: templates/admin/table-settings/table_settings_block.inc.php:666
5940
  msgid "Allow sorting for the table"
5941
  msgstr "Dovoli razvrščanje za mizo"
5942
 
5943
+ #: templates/admin/table-settings/table_settings_block.inc.php:674
5944
  msgid "Main search block"
5945
  msgstr "Glavni iskalni blok"
5946
 
5947
+ #: templates/admin/table-settings/table_settings_block.inc.php:689
5948
  msgid ""
5949
  "If this is enabled, a search block will be displayed on the top right of the "
5950
  "table, allowing to search through whole table with a single input."
5952
  "Če je to omogočeno, se v zgornjem desnem kotu tabele prikaže iskalni blok, "
5953
  "ki omogoča iskanje po celotni tabeli z enim vhodom."
5954
 
5955
+ #: templates/admin/table-settings/table_settings_block.inc.php:697
5956
  msgid "Enable search block"
5957
  msgstr "Omogoči iskalni blok"
5958
 
5959
+ #: templates/admin/table-settings/table_settings_block.inc.php:711
5960
  msgid "Filters in a form"
5961
  msgstr "Filtrira v obliki"
5962
 
5963
+ #: templates/admin/table-settings/table_settings_block.inc.php:718
5964
  #: templates/edit_table.inc.php:340
5965
  msgid "Filter in form"
5966
  msgstr "Filtrirajte v obliki"
5967
 
5968
+ #: templates/admin/table-settings/table_settings_block.inc.php:725
5969
  msgid ""
5970
  "Enable to show the advanced column filter in a form above the table, instead "
5971
  "of showing in the table footer/header."
5973
  "Omogoči prikaz naprednega filtra stolpcev v obliki nad tabelo, namesto da bi "
5974
  "se prikazoval v nogi / glavi tabele."
5975
 
5976
+ #: templates/admin/table-settings/table_settings_block.inc.php:734
5977
  msgid "Show filters in a form above the table"
5978
  msgstr "Pokažite filtre v obliki nad tabelo"
5979
 
5980
+ #: templates/admin/table-settings/table_settings_block.inc.php:742
5981
  msgid "Clear filters button"
5982
  msgstr "Gumb za brisanje filtrov"
5983
 
5984
+ #: templates/admin/table-settings/table_settings_block.inc.php:749
5985
  #: templates/frontend/filter_form.inc.php:32
5986
  msgid "Clear filters"
5987
  msgstr "Počistite filtre"
5988
 
5989
+ #: templates/admin/table-settings/table_settings_block.inc.php:753
5990
  msgid "Enable to show the clear filters button."
5991
  msgstr "Omogoči prikaz gumba za čisto filtre."
5992
 
5993
+ #: templates/admin/table-settings/table_settings_block.inc.php:754
5994
  msgid ""
5995
  "If filter in form is enabled, clear button will be rendered after the last "
5996
  "filter."
5997
  msgstr "Če je filter v obliki omogočen, bo po zadnjem filtru upodobljen gumb."
5998
 
5999
+ #: templates/admin/table-settings/table_settings_block.inc.php:759
6000
  msgid ""
6001
  "Otherwise, clear filter button will be rendered above the table next to "
6002
  "\"Table Tools\" buttons."
6004
  "V nasprotnem primeru bo prozorni filter prikazan nad tabelo poleg gumbov "
6005
  "»Orodja tabele«."
6006
 
6007
+ #: templates/admin/table-settings/table_settings_block.inc.php:772
6008
  msgid "Show clear filters button"
6009
  msgstr "Pokaži gumb za čiščenje filtrov"
6010
 
6011
+ #: templates/admin/table-settings/table_settings_block.inc.php:792
6012
  msgid "Allow editing"
6013
  msgstr "Dovoli urejanje"
6014
 
6015
+ #: templates/admin/table-settings/table_settings_block.inc.php:800
6016
  #: templates/edit_table.inc.php:180
6017
  msgid "Front-end editing"
6018
  msgstr "Sprednje urejanje"
6019
 
6020
+ #: templates/admin/table-settings/table_settings_block.inc.php:807
6021
  msgid "Allow editing the table from the front-end."
6022
  msgstr "Dovoli urejanje tabele s sprednjega dela."
6023
 
6024
+ #: templates/admin/table-settings/table_settings_block.inc.php:815
6025
  msgid "Allow front-end editing"
6026
  msgstr "Dovoli urejanje v sprednjem delu"
6027
 
6028
+ #: templates/admin/table-settings/table_settings_block.inc.php:823
6029
  msgid "Popover edit block"
6030
  msgstr "Blok urejanja Popoverja"
6031
 
6032
+ #: templates/admin/table-settings/table_settings_block.inc.php:831
6033
  #: templates/edit_table.inc.php:232
6034
  msgid "Popover tools"
6035
  msgstr "Popover orodja"
6036
 
6037
+ #: templates/admin/table-settings/table_settings_block.inc.php:838
6038
  msgid ""
6039
  "If this is enabled, the New, Edit and Delete buttons will appear in a "
6040
  "popover when you click on any row, instead of Table Tools block above the "
6043
  "Če je to omogočeno, se gumbi Novo, Uredi in Zbriši prikažejo popo, ko "
6044
  "kliknete katero koli vrstico, namesto bloka Orodja tabele nad tabelo."
6045
 
6046
+ #: templates/admin/table-settings/table_settings_block.inc.php:846
6047
  msgid "Editing buttons in a popover"
6048
  msgstr "Urejanje gumbov v popoverju"
6049
 
6050
+ #: templates/admin/table-settings/table_settings_block.inc.php:854
6051
+ #: templates/admin/table-settings/table_settings_block.inc.php:862
6052
  msgid "In-line editing"
6053
  msgstr "Redno urejanje"
6054
 
6055
+ #: templates/admin/table-settings/table_settings_block.inc.php:869
6056
  msgid ""
6057
  "If this is enabled, front-end users will be able to edit cells by double-"
6058
  "clicking them, not only with the editor dialog."
6060
  "Če je to omogočeno, bodo sprednji uporabniki lahko urejali celice z "
6061
  "dvoklikom, ne samo v pogovornem oknu urejevalnika."
6062
 
6063
+ #: templates/admin/table-settings/table_settings_block.inc.php:877
6064
  msgid "Allow in-line editing"
6065
  msgstr "Dovoli urejanje po liniji"
6066
 
6067
+ #: templates/admin/table-settings/table_settings_block.inc.php:892
6068
  #: templates/edit_table.inc.php:192
6069
  msgid "MySQL table name for editing"
6070
  msgstr "Ime tabele MySQL za urejanje"
6071
 
6072
+ #: templates/admin/table-settings/table_settings_block.inc.php:894
6073
  msgid ""
6074
  "Name of the MySQL table which will be updated when edited from front-end."
6075
  msgstr "Ime tabele MySQL, ki bo posodobljena, ko bo urejena od spredaj."
6076
 
6077
+ #: templates/admin/table-settings/table_settings_block.inc.php:899
6078
  msgid "MySQL table name"
6079
  msgstr "Ime tabele MySQL"
6080
 
6081
+ #: templates/admin/table-settings/table_settings_block.inc.php:908
6082
  #: templates/edit_table.inc.php:203
6083
  msgid "ID column for editing"
6084
  msgstr "ID stolpec za urejanje"
6085
 
6086
+ #: templates/admin/table-settings/table_settings_block.inc.php:910
6087
  msgid ""
6088
  "Choose the column values from which will be used as row identifiers. MUST be "
6089
  "a unique auto-increment integer on MySQL side so insert/edit/delete would "
6096
  "wpDataTables bo uganil pravilen stolpec, če se na strani MySQL imenuje \"id"
6097
  "\" ali \"ID\"."
6098
 
6099
+ #: templates/admin/table-settings/table_settings_block.inc.php:924
6100
  #: templates/edit_table.inc.php:267
6101
  msgid "Editor roles"
6102
  msgstr "Vloge urednika"
6103
 
6104
+ #: templates/admin/table-settings/table_settings_block.inc.php:926
6105
  msgid ""
6106
  "If you want only specific user roles to be able to edit the table, choose in "
6107
  "this dropdown. Leave unchecked to allow editing for everyone."
6109
  "Če želite le urejati tabelo uporabnikov, izberite v tem spustnem meniju. "
6110
  "Pustite brez nadzora, da lahko omogočite urejanje vsem."
6111
 
6112
+ #: templates/admin/table-settings/table_settings_block.inc.php:931
6113
  msgid "Everyone"
6114
  msgstr "Vsi"
6115
 
6116
+ #: templates/admin/table-settings/table_settings_block.inc.php:932
6117
  msgid "Administrators"
6118
  msgstr ""
6119
 
6120
+ #: templates/admin/table-settings/table_settings_block.inc.php:933
6121
  msgid "Editors"
6122
  msgstr ""
6123
 
6124
+ #: templates/admin/table-settings/table_settings_block.inc.php:934
6125
  msgid "Authors"
6126
  msgstr ""
6127
 
6128
+ #: templates/admin/table-settings/table_settings_block.inc.php:935
6129
  msgid "Contributors"
6130
  msgstr ""
6131
 
6132
+ #: templates/admin/table-settings/table_settings_block.inc.php:936
6133
  msgid "Subscribers"
6134
  msgstr ""
6135
 
6136
+ #: templates/admin/table-settings/table_settings_block.inc.php:951
6137
  msgid "Users see and edit only own data"
6138
  msgstr "Uporabniki vidijo in urejajo samo lastne podatke"
6139
 
6140
+ #: templates/admin/table-settings/table_settings_block.inc.php:959
6141
  msgid "Users see and edit only their own data"
6142
  msgstr "Uporabniki vidijo in urejajo samo svoje podatke"
6143
 
6144
+ #: templates/admin/table-settings/table_settings_block.inc.php:966
6145
  msgid ""
6146
  "If this is enabled, users will see and edit only the rows that are related "
6147
  "to them or were created by them (associated using the User ID column)."
6149
  "Če je to omogočeno, bodo uporabniki videli in uredili samo tiste vrstice, ki "
6150
  "so z njimi povezane ali so jih ustvarile (povezane s stolpcem User ID)."
6151
 
6152
+ #: templates/admin/table-settings/table_settings_block.inc.php:974
6153
  msgid "Limit editing to own data only"
6154
  msgstr "Omejite urejanje samo na lastne podatke"
6155
 
6156
+ #: templates/admin/table-settings/table_settings_block.inc.php:982
6157
  #: templates/edit_table.inc.php:250
6158
  msgid "User ID column"
6159
  msgstr "Stolpec User ID"
6160
 
6161
+ #: templates/admin/table-settings/table_settings_block.inc.php:984
6162
  msgid ""
6163
  "Choose the column values from which will be used as User identifiers. "
6164
  "References the ID from WordPress Users table (wp_users), MUST be defined as "
6168
  "uporabnikov. Navaja ID iz tabele uporabnikov WordPressa (wp_users), MORAJO "
6169
  "biti definirani kot celo število na strani MySQL."
6170
 
6171
+ #: templates/admin/table-settings/table_settings_block.inc.php:1017
6172
  #: templates/edit_table.inc.php:350
6173
  msgid "Table tools"
6174
  msgstr "Orodja za mize"
6175
 
6176
+ #: templates/admin/table-settings/table_settings_block.inc.php:1024
6177
  msgid ""
6178
  "If this is enabled, a toolbar with useful tools will be shown above the table"
6179
  msgstr ""
6180
  "Če je to omogočeno, se nad tabelo prikaže orodna vrstica s koristnimi orodji"
6181
 
6182
+ #: templates/admin/table-settings/table_settings_block.inc.php:1032
6183
  msgid "Enable Table Tools"
6184
  msgstr "Omogoči orodja za tabele"
6185
 
6186
+ #: templates/admin/table-settings/table_settings_block.inc.php:1040
6187
  msgid "Buttons"
6188
  msgstr "Gumbi"
6189
 
6190
+ #: templates/admin/table-settings/table_settings_block.inc.php:1042
6191
  msgid "Choose which buttons to show in the Table Tools block."
6192
  msgstr "Izberite, katere gumbe želite prikazati v bloku Orodja za tabele."
6193
 
6194
+ #: templates/admin/table-settings/table_settings_block.inc.php:1048
6195
  msgid "Columns visibility"
6196
  msgstr "Vidnost stolpcev"
6197
 
6198
+ #: templates/admin/table-settings/table_settings_block.inc.php:1080
6199
  msgid ""
6200
  "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6201
  "that will be replaced with some actual values at the execution time; usually "
6202
+ "this is used for SQL queries, but you can use it for filtering and editing "
6203
+ "for manual tables and only filtering for tables created from XML, JSON, "
6204
+ "Excel, CSV, Google Spreadsheet and PHP Serialized array."
6205
  msgstr ""
6206
 
6207
+ #: templates/admin/table-settings/table_settings_block.inc.php:1094
6208
+ #: templates/admin/table-settings/table_settings_block.inc.php:1109
6209
+ #: templates/admin/table-settings/table_settings_block.inc.php:1124
6210
  msgid ""
6211
  "This placeholder will be replaced with any value that you will provide in a "
6212
  "shortcode. Provide a default value here that will be used for table "
6216
  "v kratki kodi. Tu navedite privzeto vrednost, ki bo uporabljena za "
6217
  "ustvarjanje tabel in kadar drugačna ni definirana v kratki kodi."
6218
 
6219
+ #: templates/admin/table-settings/table_settings_block.inc.php:1099
6220
+ #: templates/admin/table-settings/table_settings_block.inc.php:1114
6221
+ #: templates/admin/table-settings/table_settings_block.inc.php:1129
6222
+ #: templates/admin/table-settings/table_settings_block.inc.php:1152
6223
+ #: templates/admin/table-settings/table_settings_block.inc.php:1170
6224
+ #: templates/admin/table-settings/table_settings_block.inc.php:1188
6225
+ #: templates/admin/table-settings/table_settings_block.inc.php:1210
6226
+ #: templates/admin/table-settings/table_settings_block.inc.php:1228
6227
+ #: templates/admin/table-settings/table_settings_block.inc.php:1246
6228
+ #: templates/admin/table-settings/table_settings_block.inc.php:1271
6229
+ #: templates/admin/table-settings/table_settings_block.inc.php:1291
6230
+ #: templates/admin/table-settings/table_settings_block.inc.php:1310
6231
+ #: templates/admin/table-settings/table_settings_block.inc.php:1332
6232
  msgid "Default for table generation"
6233
  msgstr "Privzeto za ustvarjanje tabel"
6234
 
6235
+ #: templates/admin/table-settings/table_settings_block.inc.php:1145
6236
  msgid ""
6237
  "This placeholder will be replaced with the ID of currently logged in user. "
6238
  "Provide a value here to be used for table generation"
6240
  "To rezervirano mesto bo nadomeščeno z ID-jem trenutno prijavljenega "
6241
  "uporabnika. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje tabel"
6242
 
6243
+ #: templates/admin/table-settings/table_settings_block.inc.php:1162
6244
  msgid ""
6245
  "This placeholder will be replaced with the login of currently logged in "
6246
  "user. Provide a value here to be used for table generation"
6248
  "To rezervirano mesto bo nadomeščeno z vpisom trenutno prijavljenega "
6249
  "uporabnika. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje tabel"
6250
 
6251
+ #: templates/admin/table-settings/table_settings_block.inc.php:1180
6252
  msgid ""
6253
+ "This placeholder will be replaced with the Email of currently logged in "
6254
+ "user. Provide a value here to be used for table generation"
6255
  msgstr ""
6256
+ "To rezervirano mesto bo nadomeščeno z e-poštnim sporočilom trenutno "
6257
+ "prijavljenega uporabnika. Tu navedite vrednost, ki jo želite uporabiti za "
6258
+ "ustvarjanje tabel"
6259
 
6260
+ #: templates/admin/table-settings/table_settings_block.inc.php:1204
6261
  msgid ""
6262
  "This placeholder will be replaced with the ID of current post. Provide a "
6263
  "value here to be used for table generation"
6265
  "To rezervirano mesto bo zamenjano z ID-jem trenutne objave. Tu navedite "
6266
  "vrednost, ki jo želite uporabiti za ustvarjanje tabel"
6267
 
6268
+ #: templates/admin/table-settings/table_settings_block.inc.php:1220
6269
+ msgid ""
6270
+ "This placeholder will be replaced with the First Name of currently logged in "
6271
+ "user. Provide a value here to be used for table generation"
6272
+ msgstr ""
6273
+ "To rezervirano mesto bo nadomeščeno z imenom, ki je trenutno prijavljen "
6274
+ "uporabnikom. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje "
6275
+ "tabel"
6276
+
6277
+ #: templates/admin/table-settings/table_settings_block.inc.php:1238
6278
+ msgid ""
6279
+ "This placeholder will be replaced with the Last Name of currently logged in "
6280
+ "user. Provide a value here to be used for table generation"
6281
+ msgstr ""
6282
+ "To rezervirano mesto bo nadomeščeno z Priimkom trenutno prijavljenega "
6283
+ "uporabnika. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje tabel"
6284
+
6285
+ #: templates/admin/table-settings/table_settings_block.inc.php:1262
6286
+ msgid "This placeholder will be replaced with current date."
6287
+ msgstr "To rezervirano mesto bo zamenjano s trenutnim datumom."
6288
+
6289
+ #: templates/admin/table-settings/table_settings_block.inc.php:1281
6290
+ msgid "This placeholder will be replaced with current datetime."
6291
+ msgstr "To rezervirano mesto bo zamenjano s trenutnim datumom."
6292
+
6293
+ #: templates/admin/table-settings/table_settings_block.inc.php:1301
6294
+ msgid "This placeholder will be replaced with current time."
6295
+ msgstr "To rezervirano mesto bo zamenjano s trenutnim časom."
6296
+
6297
+ #: templates/admin/table-settings/table_settings_block.inc.php:1325
6298
+ msgid ""
6299
+ "This placeholder will be replaced with the current prefix of WordPress "
6300
+ "database. Provide a value here to be used for table generation"
6301
+ msgstr ""
6302
+ "To rezervirano mesto bo nadomeščeno s trenutno predpono baze podatkov "
6303
+ "WordPress. Tu navedite vrednost, ki jo želite uporabiti za ustvarjanje tabel"
6304
+
6305
+ #: templates/admin/table-settings/table_settings_block.inc.php:1356
6306
+ msgid ""
6307
+ "In premium version you can customize each table with different skin, font, "
6308
+ "background , colors and lot more. Checkout new table customize settings "
6309
+ "below."
6310
+ msgstr ""
6311
+
6312
+ #: templates/admin/table-settings/table_settings_block.inc.php:1363
6313
+ msgid "Main"
6314
+ msgstr ""
6315
+
6316
+ #: templates/admin/table-settings/table_settings_block.inc.php:1375
6317
+ msgid "Table border"
6318
+ msgstr ""
6319
+
6320
+ #: templates/admin/table-settings/table_settings_block.inc.php:1391
6321
+ msgid "Custom CSS"
6322
+ msgstr ""
6323
+
6324
+ #: templates/admin/table-settings/table_settings_block.inc.php:1716
6325
+ msgid "Remove borders in table header"
6326
+ msgstr ""
6327
+
6328
+ #: templates/admin/table-settings/table_settings_block.inc.php:2028
6329
+ msgid ""
6330
+ "This CSS will be inserted as an inline style block on every page that has "
6331
+ "this wpDataTable."
6332
+ msgstr ""
6333
+
6334
  #: templates/admin/welcome_page/welcome_page.inc.php:26
6335
  #: templates/admin/welcome_page/welcome_page.inc.php:333
6336
  msgid "Go to Dashboard"
8949
  #~ "ustvarjene iz XML, JSON, Excel, CSV, Google Spreadsheet in PHP Serialized "
8950
  #~ "array."
8951
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8952
  #~ msgid ""
8953
  #~ "wpDataTables is the best-selling WordPress table plugin which makes your "
8954
  #~ "work with tables, charts and data management easy. 30,000+ companies and "
readme.txt CHANGED
@@ -4,9 +4,9 @@ Author URI: https://tms-outsource.com
4
  Plugin URI: https://wpdatatables.com/
5
  Tags: table, table builder, data tables, tables, charts, simple table, tables from csv, tables from excel, datatables, responsive tables, charting, pie charts, mysql tables, table plugin, wp table, WordPress table Plugin, Google Charts, Excel, JSON, XML, PHP array, line chart, donut, bar chart, histogram, area chart, bubble chart, gauge chart, scatter chart, candlestick, waterfall
6
  Requires at least: 4.0
7
- Tested up to: 5.6.1
8
  Requires PHP: 5.6
9
- Stable tag: 2.1.8
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -99,6 +99,7 @@ Please note some limitations compared to the Premium version of the wpDataTables
99
  8. Excel-like editing is not included.
100
  9. Advanced HighCharts and Chart.js are not included
101
  10. Table Constructor Wizard (step-by-step table generator) is not included.
 
102
  11. Access to our premium support system is not included.
103
 
104
  You can get all of these features by purchasing the Premium version on [the plugin's site](https://wpdatatables.com).
@@ -131,6 +132,7 @@ The major features of wpDataTables include but are not limited to:
131
 
132
  Additional useful features include:
133
 
 
134
  * [NEW! Create Tables via Google Spreadsheet API](https://wpdatatables.com/documentation/connect-wordpress-tables-with-google-sheets-api/) – Instant synchronization in wpDataTables after changes in Google sheets. Create tables from Private Google Spreadsheets.
135
  * [Multiple databases support](https://wpdatatables.com/documentation/general/configuration/#separate-connection) - wpDataTables is the only WordPress table plugin that can display the data from MySQL, MS SQL or PostgreSQL databases.
136
  * [Responsive Tables](https://wpdatatables.com/documentation/table-features/responsiveness/) – your WordPress tables will be 100% functional and they will look great on all screen and devices
@@ -203,6 +205,15 @@ This can be changed from the “Number format” drop-down menu in the wpDataTab
203
 
204
  == Changelog ==
205
 
 
 
 
 
 
 
 
 
 
206
  = 2.1.8 =
207
  * Feature: Added new date formats
208
  * BugFix: Fixed issue with warnings and notices with simple table and other page builders.
4
  Plugin URI: https://wpdatatables.com/
5
  Tags: table, table builder, data tables, tables, charts, simple table, tables from csv, tables from excel, datatables, responsive tables, charting, pie charts, mysql tables, table plugin, wp table, WordPress table Plugin, Google Charts, Excel, JSON, XML, PHP array, line chart, donut, bar chart, histogram, area chart, bubble chart, gauge chart, scatter chart, candlestick, waterfall
6
  Requires at least: 4.0
7
+ Tested up to: 5.6.2
8
  Requires PHP: 5.6
9
+ Stable tag: 2.1.9
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
99
  8. Excel-like editing is not included.
100
  9. Advanced HighCharts and Chart.js are not included
101
  10. Table Constructor Wizard (step-by-step table generator) is not included.
102
+ 10. Customize options for each table are not included.
103
  11. Access to our premium support system is not included.
104
 
105
  You can get all of these features by purchasing the Premium version on [the plugin's site](https://wpdatatables.com).
132
 
133
  Additional useful features include:
134
 
135
+ * [NEW! Customize options for each table](https://wpdatatables.com/documentation/table-features/customize-table/) – Now you can customize each table with different skin, font, background , colors and lot more.
136
  * [NEW! Create Tables via Google Spreadsheet API](https://wpdatatables.com/documentation/connect-wordpress-tables-with-google-sheets-api/) – Instant synchronization in wpDataTables after changes in Google sheets. Create tables from Private Google Spreadsheets.
137
  * [Multiple databases support](https://wpdatatables.com/documentation/general/configuration/#separate-connection) - wpDataTables is the only WordPress table plugin that can display the data from MySQL, MS SQL or PostgreSQL databases.
138
  * [Responsive Tables](https://wpdatatables.com/documentation/table-features/responsiveness/) – your WordPress tables will be 100% functional and they will look great on all screen and devices
205
 
206
  == Changelog ==
207
 
208
+ = 2.1.9 =
209
+ * Improvement: Added auto-save functionality after insert media in Simple tables
210
+ * Improvement: Added translate functions on some strings
211
+ * Improvement: Added new hooks for enqueuing scripts in admin area and filters for elementor widgets
212
+ * BugFix: Fixed issue with font in material skin and background in graphite skin.
213
+ * BugFix: Fixed issue with class name in Global font color settings.
214
+ * Compatibility with WordPress 5.6.2 approved.
215
+ * Other small bug fixes and stability improvements.
216
+
217
  = 2.1.8 =
218
  * Feature: Added new date formats
219
  * BugFix: Fixed issue with warnings and notices with simple table and other page builders.
source/class.wdtbrowsechartstable.php CHANGED
@@ -25,13 +25,13 @@ class WDTBrowseChartsTable extends WP_List_Table
25
  public function get_columns()
26
  {
27
  return array(
28
- 'cb' => '<input type="checkbox" />',
29
- 'id' => 'ID',
30
- 'title' => 'Title',
31
- 'engine' => 'Render Engine',
32
- 'type' => 'Chart Type',
33
- 'shortcode' => 'Shortcode',
34
- 'functions' => 'Functions',
35
  );
36
  }
37
 
25
  public function get_columns()
26
  {
27
  return array(
28
+ 'cb' => '<input type="checkbox" />',
29
+ 'id' => __('ID', 'wpdatatables'),
30
+ 'title' => __('Title', 'wpdatatables'),
31
+ 'engine' => __('Render Engine', 'wpdatatables'),
32
+ 'type' => __('Chart Type', 'wpdatatables'),
33
+ 'shortcode'=> __('Shortcode', 'wpdatatables'),
34
+ 'functions'=> ''
35
  );
36
  }
37
 
source/class.wdtbrowsetable.php CHANGED
@@ -26,12 +26,12 @@ class WDTBrowseTable extends WP_List_Table {
26
  */
27
  function get_columns() {
28
  return array(
29
- 'cb' => '1',
30
- 'id' => 'ID',
31
- 'title' => 'Title',
32
- 'table_type' => 'Type',
33
- 'shortcode' => 'Shortcode',
34
- 'functions' => 'Functions'
35
  );
36
  }
37
 
26
  */
27
  function get_columns() {
28
  return array(
29
+ 'cb' => '1',
30
+ 'id' => __('ID', 'wpdatatables'),
31
+ 'title' => __('Title', 'wpdatatables'),
32
+ 'table_type' => __('Type', 'wpdatatables'),
33
+ 'shortcode' => __('Shortcode', 'wpdatatables'),
34
+ 'functions' => ''
35
  );
36
  }
37
 
source/class.wdttools.php CHANGED
@@ -49,87 +49,6 @@ class WDTTools
49
  );
50
  }
51
 
52
- /**
53
- * Helper function for applying placeholders(variables)
54
- * @param $string
55
- * @return mixed
56
- */
57
- public static function applyPlaceholders($string)
58
- {
59
- global $wdtVar1, $wdtVar2, $wdtVar3, $wpdb;
60
-
61
- $table = isset($_POST['table']) ? json_decode(stripslashes($_POST['table'])) : null;
62
-
63
- // Placeholders
64
- if (strpos($string, '%CURRENT_USER_ID%') !== false) {
65
- if (isset($table->currentUserIdPlaceholder)) {
66
- $currentUserIdPlaceholder = $table->currentUserIdPlaceholder;
67
- } elseif (isset($_POST['currentUserId'])) {
68
- $currentUserIdPlaceholder = $_POST['currentUserId'];
69
- }
70
-
71
- $wdtCurUserId = isset($currentUserIdPlaceholder) ?
72
- $currentUserIdPlaceholder : get_current_user_id();
73
-
74
- $string = str_replace('%CURRENT_USER_ID%', $wdtCurUserId, $string);
75
- }
76
- if (strpos($string, '%CURRENT_USER_LOGIN%') !== false) {
77
- if (isset($table->currentUserLoginPlaceholder)) {
78
- $currentUserLoginPlaceholder = $table->currentUserLoginPlaceholder;
79
- } elseif (isset($_POST['currentUserLogin'])) {
80
- $currentUserLoginPlaceholder = $_POST['currentUserLogin'];
81
- }
82
-
83
- $wdtCurUserLogin = isset($currentUserLoginPlaceholder) ?
84
- $currentUserLoginPlaceholder : wp_get_current_user()->user_login;
85
-
86
- $string = str_replace('%CURRENT_USER_LOGIN%', "'{$wdtCurUserLogin}'", $string);
87
- }
88
- if (strpos($string, '%CURRENT_POST_ID%') !== false) {
89
- if (isset($table->currentPostIdPlaceholder)) {
90
- $currentPostIdPlaceholder = $table->currentPostIdPlaceholder;
91
- } elseif (isset($_POST['currentPostIdPlaceholder'])) {
92
- $currentPostIdPlaceholder = $_POST['currentPostIdPlaceholder'];
93
- }
94
-
95
- $post = get_post();
96
-
97
- $wdtCurPostId = isset($currentPostIdPlaceholder) ?
98
- $currentPostIdPlaceholder : (!empty($post) ? $post->ID : false);
99
-
100
- $string = str_replace('%CURRENT_POST_ID%', $wdtCurPostId, $string);
101
- }
102
- if (strpos($string, '%WPDB%') !== false) {
103
- if (isset($table->wpdbPlaceholder)) {
104
- $wpdbPlaceholder = $table->wpdbPlaceholder;
105
- } elseif (isset($_POST['wpdbPlaceholder'])) {
106
- $wpdbPlaceholder = $_POST['wpdbPlaceholder'];
107
- }
108
-
109
- $wpdbPrefix = isset($wpdbPlaceholder) ?
110
- $wpdbPlaceholder : $wpdb->prefix;
111
-
112
- $string = str_replace('%WPDB%', $wpdbPrefix, $string);
113
- }
114
-
115
- // Shortcode VAR1
116
- if (strpos($string, '%VAR1%') !== false) {
117
- $string = str_replace('%VAR1%', $wdtVar1, $string);
118
- }
119
-
120
- // Shortcode VAR2
121
- if (strpos($string, '%VAR2%') !== false) {
122
- $string = str_replace('%VAR2%', $wdtVar2, $string);
123
- }
124
-
125
- // Shortcode VAR3
126
- if (strpos($string, '%VAR3%') !== false) {
127
- $string = str_replace('%VAR3%', $wdtVar3, $string);
128
- }
129
-
130
- return $string;
131
-
132
- }
133
 
134
  /**
135
  * Helper function that returns curl data
@@ -326,6 +245,7 @@ class WDTTools
326
  ),
327
  'replace' => __('Replace', 'wpdatatables'),
328
  'rowDeleted' => __('Row has been deleted!', 'wpdatatables'),
 
329
  'select_upload_file' => __('Select a file to use in table', 'wpdatatables'),
330
  'selectExcelCsv' => __('Select an Excel or CSV file', 'wpdatatables'),
331
  'sEmptyTable' => __('No data available in table', 'wpdatatables'),
@@ -1130,7 +1050,7 @@ class WDTTools
1130
  {
1131
  if (null !== $dateFormat && $dateFormat == 'd/m/Y') {
1132
  $returnDate = strtotime(str_replace('/', '-', $dateString));
1133
- } else if (null !== $dateFormat && in_array($dateFormat, ['m.d.Y', 'm-d-Y'])) {
1134
  $returnDate = strtotime(str_replace(['.', '-'], '/', $dateString));
1135
  } else {
1136
  $returnDate = strtotime($dateString);
49
  );
50
  }
51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
  /**
54
  * Helper function that returns curl data
245
  ),
246
  'replace' => __('Replace', 'wpdatatables'),
247
  'rowDeleted' => __('Row has been deleted!', 'wpdatatables'),
248
+ 'saveChart' => __('Save chart', 'wpdatatables'),
249
  'select_upload_file' => __('Select a file to use in table', 'wpdatatables'),
250
  'selectExcelCsv' => __('Select an Excel or CSV file', 'wpdatatables'),
251
  'sEmptyTable' => __('No data available in table', 'wpdatatables'),
1050
  {
1051
  if (null !== $dateFormat && $dateFormat == 'd/m/Y') {
1052
  $returnDate = strtotime(str_replace('/', '-', $dateString));
1053
+ } else if (null !== $dateFormat && in_array($dateFormat, ['m.d.Y', 'm-d-Y', 'm-d-y'])) {
1054
  $returnDate = strtotime(str_replace(['.', '-'], '/', $dateString));
1055
  } else {
1056
  $returnDate = strtotime($dateString);
source/class.wpdatacolumn.php CHANGED
@@ -54,7 +54,6 @@ class WDTColumn
54
  $this->_exactFiltering = WDTTools::defineDefaultValue($properties, 'exactFiltering', '');
55
  $this->setGlobalSearchColumn(WDTTools::defineDefaultValue($properties, 'globalSearchColumn', 1));
56
  $this->_searchable = WDTTools::defineDefaultValue($properties, 'searchable', true);
57
- $this->setFilterDefaultValue(WDTTools::defineDefaultValue($properties, 'filterDefaultValue', null));
58
  $this->setFilterLabel(WDTTools::defineDefaultValue($properties, 'filterLabel', null));
59
  $this->_possibleValuesType = WDTTools::defineDefaultValue($properties, 'possibleValuesType', '');
60
  $this->setPossibleValuesAddEmpty(WDTTools::defineDefaultValue($properties, 'possibleValuesAddEmpty', false));
@@ -311,32 +310,9 @@ class WDTColumn
311
  }
312
  }
313
 
314
- /**
315
- * @return string
316
- */
317
- public function getFilterDefaultValue()
318
- {
319
- $value = $this->_filterDefaultValue;
320
- if (is_array($value)) {
321
- foreach ($value as &$singleValue) {
322
- $singleValue = $this->applyPlaceholders($singleValue);
323
- }
324
- } else {
325
- $value = $this->applyPlaceholders($value);
326
- }
327
- return $value;
328
- }
329
-
330
  /**
331
  * @param string $defaultValue
332
  */
333
- public function setFilterDefaultValue($defaultValue)
334
- {
335
- if (strpos($defaultValue, '|') !== false) {
336
- $defaultValue = explode('|', $defaultValue);
337
- }
338
- $this->_filterDefaultValue = $defaultValue;
339
- }
340
 
341
  /**
342
  * @return string
@@ -652,49 +628,6 @@ class WDTColumn
652
  }
653
  }
654
 
655
- /**
656
- * Apply placeholders
657
- *
658
- * @param $value
659
- * @return mixed
660
- */
661
- private function applyPlaceholders($value)
662
- {
663
- global $wdtVar1, $wdtVar2, $wdtVar3;
664
-
665
- // Current user ID
666
- if (strpos($value, '%CURRENT_USER_ID%') !== false) {
667
- $value = str_replace('%CURRENT_USER_ID%', get_current_user_id(), $value);
668
- }
669
-
670
- // Current user login
671
- if (strpos($value, '%CURRENT_USER_LOGIN%') !== false) {
672
- $value = str_replace('%CURRENT_USER_LOGIN%', wp_get_current_user()->user_login, $value);
673
- }
674
-
675
- // Current post id
676
- if (strpos($value, '%CURRENT_POST_ID%') !== false) {
677
- $value = str_replace('%CURRENT_POST_ID%', get_post()->ID, $value);
678
- }
679
-
680
- // Shortcode VAR1
681
- if (strpos($value, '%VAR1%') !== false) {
682
- $value = str_replace('%VAR1%', $wdtVar1, $value);
683
- }
684
-
685
- // Shortcode VAR2
686
- if (strpos($value, '%VAR2%') !== false) {
687
- $value = str_replace('%VAR2%', $wdtVar2, $value);
688
- }
689
-
690
- // Shortcode VAR3
691
- if (strpos($value, '%VAR3%') !== false) {
692
- $value = str_replace('%VAR3%', $wdtVar3, $value);
693
- }
694
-
695
- return $value;
696
- }
697
-
698
  /**
699
  * Generates column object based on column type
700
  * @param string $wdtColumnType
@@ -742,63 +675,6 @@ class WDTColumn
742
  return $colJsDefinition;
743
  }
744
 
745
- /**
746
- * Get Filter definition for a column
747
- * @return stdClass
748
- */
749
- public function getJSFilterDefinition()
750
- {
751
- /** @var WPDataTable $parentTable */
752
- $parentTable = $this->getParentTable();
753
- $jsFilterDef = new stdClass();
754
-
755
- $jsFilterDef->type = $this->getFilterType();
756
- $jsFilterDef->possibleValuesType = $this->getPossibleValuesType();
757
- $jsFilterDef->globalSearchColumn = $this->getGlobalSearchColumn();
758
-
759
- $jsFilterDef->values = null;
760
- if (in_array($this->getFilterType(), array('select', 'checkbox')) || in_array($this->getInputType(), array('selectbox', 'multi-selectbox'))) {
761
- if ($this->_possibleValuesType == 'read' && $parentTable->serverSide()) {
762
- $jsFilterDef->values = WDTColumn::getColumnDistinctValues($this);
763
- } elseif ($this->_possibleValuesType == 'list') {
764
- $jsFilterDef->values = $this->getPossibleValues();
765
- } elseif ($this->_possibleValuesType == 'foreignkey' && $parentTable->serverSide()) {
766
- foreach ($this->getPossibleValues() as $value => $label) {
767
- $distinctValue['value'] = $value;
768
- $distinctValue['label'] = $label;
769
- $jsFilterDef->values[] = $distinctValue;
770
- }
771
- }
772
- }
773
-
774
- if ($this->getFilterType() == 'select' && $parentTable->serverSide() && $this->getPossibleValuesAddEmpty()) {
775
- array_unshift($jsFilterDef->values, 'possibleValuesAddEmpty');
776
- }
777
-
778
- $jsFilterDef->origHeader = $this->getOriginalHeader();
779
- $jsFilterDef->possibleValuesAddEmpty = $this->getPossibleValuesAddEmpty();
780
- $jsFilterDef->defaultValue = $this->getFilterDefaultValue();
781
- $jsFilterDef->exactFiltering = $this->getExactFiltering();
782
- $jsFilterDef->filterLabel = $this->getFilterLabel();
783
- $jsFilterDef->linkButtonLabel = $this->getLinkButtonLabel();
784
-
785
- return $jsFilterDef;
786
- }
787
-
788
- /**
789
- * Get Editing definition for a column
790
- * @return stdClass
791
- */
792
- public function getJSEditingDefinition()
793
- {
794
- $jsEditingDef = new stdClass();
795
-
796
- $jsEditingDef->editorInputType = $this->getInputType();
797
- $jsEditingDef->defaultValue = $this->getEditingDefaultValue();
798
- $jsEditingDef->defaultValue = $this->applyPlaceholders($jsEditingDef->defaultValue);
799
-
800
- return $jsEditingDef;
801
- }
802
 
803
  /**
804
  * Get values that will be used in the in the Default Value Inputs
54
  $this->_exactFiltering = WDTTools::defineDefaultValue($properties, 'exactFiltering', '');
55
  $this->setGlobalSearchColumn(WDTTools::defineDefaultValue($properties, 'globalSearchColumn', 1));
56
  $this->_searchable = WDTTools::defineDefaultValue($properties, 'searchable', true);
 
57
  $this->setFilterLabel(WDTTools::defineDefaultValue($properties, 'filterLabel', null));
58
  $this->_possibleValuesType = WDTTools::defineDefaultValue($properties, 'possibleValuesType', '');
59
  $this->setPossibleValuesAddEmpty(WDTTools::defineDefaultValue($properties, 'possibleValuesAddEmpty', false));
310
  }
311
  }
312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  /**
314
  * @param string $defaultValue
315
  */
 
 
 
 
 
 
 
316
 
317
  /**
318
  * @return string
628
  }
629
  }
630
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
631
  /**
632
  * Generates column object based on column type
633
  * @param string $wdtColumnType
675
  return $colJsDefinition;
676
  }
677
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
 
679
  /**
680
  * Get values that will be used in the in the Default Value Inputs
source/class.wpdatatable.php CHANGED
@@ -1035,23 +1035,6 @@ class WPDataTable
1035
  return implode(', ', $columnDefinitions);
1036
  }
1037
 
1038
- /**
1039
- * Get column editing definitions
1040
- *
1041
- * @return string
1042
- */
1043
- public function getColumnEditingDefinitions()
1044
- {
1045
- $columnDefinitions = array();
1046
- foreach ($this->_wdtIndexedColumns as $key => $dataColumn) {
1047
-
1048
- /** @var WDTColumn $dataColumn */
1049
- $columnDefinition = $dataColumn->getJSEditingDefinition();
1050
-
1051
- $columnDefinitions[] = json_encode($columnDefinition);
1052
- }
1053
- return implode(', ', $columnDefinitions);
1054
- }
1055
 
1056
  /**
1057
  * Get WDTColumn by column original header
@@ -1422,7 +1405,6 @@ class WPDataTable
1422
 
1423
  public function jsonBasedConstruct($json, $wdtParameters = array())
1424
  {
1425
- $json = WDTTools::applyPlaceholders($json);
1426
  $json = WDTTools::curlGetData($json);
1427
  $json = apply_filters('wpdatatables_filter_json', $json, $this->getWpId());
1428
  return $this->arrayBasedConstruct(json_decode($json, true), $wdtParameters);
@@ -1436,7 +1418,6 @@ class WPDataTable
1436
  if (strpos($xml, '.xml') === false) {
1437
  throw new WDTException('Non-XML file provided!');
1438
  }
1439
- $xml = WDTTools::applyPlaceholders($xml);
1440
  $XMLObject = simplexml_load_file($xml);
1441
  $XMLObject = apply_filters('wpdatatables_filter_simplexml', $XMLObject, $this->getWpId());
1442
  $XMLArray = WDTTools::convertXMLtoArr($XMLObject);
@@ -2078,15 +2059,6 @@ class WPDataTable
2078
  $columnIndex++;
2079
  }
2080
 
2081
- // Check the default values passed from URL
2082
- if (isset($_GET['wdt_column_filter'])) {
2083
- foreach ($_GET['wdt_column_filter'] as $fltColKey => $fltDefVal) {
2084
- $wdtCol = $this->getColumn($fltColKey);
2085
- if (!empty($wdtCol)) {
2086
- $this->getColumn($fltColKey)->setFilterDefaultValue($fltDefVal);
2087
- }
2088
- }
2089
- }
2090
  }
2091
 
2092
  /**
1035
  return implode(', ', $columnDefinitions);
1036
  }
1037
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1038
 
1039
  /**
1040
  * Get WDTColumn by column original header
1405
 
1406
  public function jsonBasedConstruct($json, $wdtParameters = array())
1407
  {
 
1408
  $json = WDTTools::curlGetData($json);
1409
  $json = apply_filters('wpdatatables_filter_json', $json, $this->getWpId());
1410
  return $this->arrayBasedConstruct(json_decode($json, true), $wdtParameters);
1418
  if (strpos($xml, '.xml') === false) {
1419
  throw new WDTException('Non-XML file provided!');
1420
  }
 
1421
  $XMLObject = simplexml_load_file($xml);
1422
  $XMLObject = apply_filters('wpdatatables_filter_simplexml', $XMLObject, $this->getWpId());
1423
  $XMLArray = WDTTools::convertXMLtoArr($XMLObject);
2059
  $columnIndex++;
2060
  }
2061
 
 
 
 
 
 
 
 
 
 
2062
  }
2063
 
2064
  /**
templates/admin/dashboard/dashboard.inc.php CHANGED
@@ -337,16 +337,17 @@ $tableChartsCount = WDTTools::getTablesCount('chart');
337
  </span>
338
  </p>
339
  <p class="wpdt-text wpdt-font m-b-18">
340
- <?php _e('A minor update with a couple of features, bug fixes and stability improvements:', 'wpdatatables'); ?>
341
  </p>
342
  <div class="alert alert-info m-b-0" role="alert">
343
  <i class="wpdt-icon-info-circle-full"></i>
344
  <ul>
345
- <li> <?php _e('<strong>Feature:</strong> Added new date formats.', 'wpdatatables'); ?></li>
346
- <li> <?php _e('<strong>BugFix:</strong> Fixed issue with warnings and notices with simple table and other page builders.', 'wpdatatables'); ?></li>
347
- <li> <?php _e('<strong>BugFix:</strong> Fixed issue with showing charts with WP rocket caching.', 'wpdatatables'); ?></li>
348
- <li> <?php _e('<strong>BugFix:</strong> Fixed issue with counter variable in charts.', 'wpdatatables'); ?></li>
349
- <li> <?php _e('Compatibility with WordPress 5.6.1 approved.', 'wpdatatables'); ?></li>
 
350
  <li> <?php _e('Other small bug fixes and stability improvements.', 'wpdatatables'); ?></li>
351
  </ul>
352
  </div>
337
  </span>
338
  </p>
339
  <p class="wpdt-text wpdt-font m-b-18">
340
+ <?php _e('A minor update with a couple of improvements and bug fixes:', 'wpdatatables'); ?>
341
  </p>
342
  <div class="alert alert-info m-b-0" role="alert">
343
  <i class="wpdt-icon-info-circle-full"></i>
344
  <ul>
345
+ <li> <?php _e('<strong>Improvement:</strong> Added auto-save functionality after insert media in Simple tables.', 'wpdatatables'); ?></li>
346
+ <li> <?php _e('<strong>Improvement:</strong> Added translate functions on some strings.', 'wpdatatables'); ?></li>
347
+ <li> <?php _e('<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin area and filters for elementor widgets.', 'wpdatatables'); ?></li>
348
+ <li> <?php _e('<strong>BugFix:</strong> Fixed issue with font in material skin and background in graphite skin.', 'wpdatatables'); ?></li>
349
+ <li> <?php _e('<strong>BugFix:</strong> Fixed issue with class name in Global font color settings.', 'wpdatatables'); ?></li>
350
+ <li> <?php _e('Compatibility with WordPress 5.6.2 approved.', 'wpdatatables'); ?></li>
351
  <li> <?php _e('Other small bug fixes and stability improvements.', 'wpdatatables'); ?></li>
352
  </ul>
353
  </div>
templates/admin/settings/settings.inc.php CHANGED
@@ -57,6 +57,10 @@
57
  <a href="#custom-js-and-css" aria-controls="custom-js-and-css" role="tab"
58
  data-toggle="tab"><?php _e('Custom JS and CSS', 'wpdatatables'); ?></a>
59
  </li>
 
 
 
 
60
  </ul>
61
 
62
  <div class="tab-content">
57
  <a href="#custom-js-and-css" aria-controls="custom-js-and-css" role="tab"
58
  data-toggle="tab"><?php _e('Custom JS and CSS', 'wpdatatables'); ?></a>
59
  </li>
60
+ <li class="google_sheet_settings-tab">
61
+ <a href="#google-sheet-api-settings" aria-controls="google_sheet_settings" role="tab"
62
+ data-toggle="html-input-premium-popover" data-placement="bottom" title="" data-content="content"><i class="wpdt-icon-star-full m-r-5" style="color: #FFC078;"></i><span class="opacity-6"><?php _e('Google Spreadsheet API settings', 'wpdatatables'); ?></span></a>
63
+ </li>
64
  </ul>
65
 
66
  <div class="tab-content">
templates/admin/table-settings/table_settings_block.inc.php CHANGED
@@ -32,7 +32,8 @@
32
  <li>
33
  <button class="btn wdt-collapse-table-settings <?php if (isset($_GET['collapsed'])) { ?>collapsed <?php } else { ?>expanded <?php } ?>">
34
  <?php _e('Settings', 'wpdatatables'); ?>
35
- <i style="color: #008CFF;" class="wpdt-icon-angle-<?php if (isset($_GET['collapsed'])) { ?>down <?php } else { ?>up <?php } ?>"></i>
 
36
  </button>
37
  </li>
38
  <li>
@@ -74,9 +75,14 @@
74
  <a href="#table-tools-settings" aria-controls="table-tools-settings" role="tab"
75
  data-toggle="tab"><?php _e('Table Tools', 'wpdatatables'); ?></a>
76
  </li>
77
- <li class="placeholders-settings-tab hidden">
78
- <a href="#placeholders-settings" aria-controls="placeholders-settings" role="tab"
79
- data-toggle="tab"><?php _e('Placeholders', 'wpdatatables'); ?></a>
 
 
 
 
 
80
  </li>
81
 
82
  <?php do_action('wdt_add_table_configuration_tab'); ?>
@@ -100,12 +106,15 @@
100
  <div class="form-group">
101
  <div class="fg-line">
102
  <div class="select">
103
- <select class="selectpicker" id="wdt-table-type" >
104
  <option value=""><?php _e('Select a data source type', 'wpdatatables'); ?></option>
105
- <option disabled class="wdt-premium-option-disabled" value="mysql" data-content="<i class='wpdt-icon-star-full m-r-5' style='color: #FFC078;'></i> <span ><?php _e('SQL query ', 'wpdatatables'); ?><span class='wdt-premium'><?php _e('Available in Premium', 'wpdatatables'); ?></span></span>"></option>
 
106
  <option value="csv"><?php _e('CSV file', 'wpdatatables'); ?></option>
107
  <option value="xls"><?php _e('Excel file', 'wpdatatables'); ?></option>
108
- <option disabled class="wdt-premium-option-disabled" value="google_spreadsheet" data-content="<i class='wpdt-icon-star-full m-r-5' style='color: #FFC078;'></i> <span ><?php _e('Google Spreadsheet ', 'wpdatatables'); ?><span class='wdt-premium'><?php _e('Available in Premium', 'wpdatatables'); ?></span></span>"></option>
 
 
109
  <option value="xml"><?php _e('XML file', 'wpdatatables'); ?></option>
110
  <option value="json"><?php _e('JSON file', 'wpdatatables'); ?></option>
111
  <option value="serialized"><?php _e('Serialized PHP array', 'wpdatatables'); ?></option>
@@ -147,8 +156,11 @@
147
  </h4>
148
  <div class="toggle-switch" data-ts-color="blue">
149
  <input id="wdt-server-side" type="checkbox">
150
- <label data-toggle="html-checkbox-premium-popover" data-placement="top" title="" data-content="content" for="wdt-server-side"
151
- class="ts-label"><i class="wpdt-icon-star-full m-r-5" style="color: #FFC078;"></i><?php _e('Enable server-side processing'
32
  <li>
33
  <button class="btn wdt-collapse-table-settings <?php if (isset($_GET['collapsed'])) { ?>collapsed <?php } else { ?>expanded <?php } ?>">
34
  <?php _e('Settings', 'wpdatatables'); ?>
35
+ <i style="color: #008CFF;"
36
+ class="wpdt-icon-angle-<?php if (isset($_GET['collapsed'])) { ?>down <?php } else { ?>up <?php } ?>"></i>
37
  </button>
38
  </li>
39
  <li>
75
  <a href="#table-tools-settings" aria-controls="table-tools-settings" role="tab"
76
  data-toggle="tab"><?php _e('Table Tools', 'wpdatatables'); ?></a>
77
  </li>
78
+ <li class="placeholders-settings-tab">
79
+ <a href="#placeholders-settings" aria-controls="placeholders-settings" role="tab">
80
+ <?php _e('Placeholders', 'wpdatatables'); ?></a>
81
+ </li>
82
+ <li class="customize-table-settings-tab ">
83
+ <a href="#customize-table-settings" aria-controls="customize-table-settings" role="tab">
84
+ <strong style="color: #ef8137"><?php _e('NEW!', 'wpdatatables'); ?></strong> <?php _e(' Customize', 'wpdatatables'); ?>
85
+ </a>
86
  </li>
87
 
88
  <?php do_action('wdt_add_table_configuration_tab'); ?>
106
  <div class="form-group">
107
  <div class="fg-line">
108
  <div class="select">
109
+ <select class="selectpicker" id="wdt-table-type">
110
  <option value=""><?php _e('Select a data source type', 'wpdatatables'); ?></option>
111
+ <option disabled class="wdt-premium-option-disabled" value="mysql"
112
+ data-content="<i class='wpdt-icon-star-full m-r-5' style='color: #FFC078;'></i> <span ><?php _e('SQL query ', 'wpdatatables'); ?><span class='wdt-premium'><?php _e('Available in Premium', 'wpdatatables'); ?></span></span>"></option>
113
  <option value="csv"><?php _e('CSV file', 'wpdatatables'); ?></option>
114
  <option value="xls"><?php _e('Excel file', 'wpdatatables'); ?></option>
115
+ <option disabled class="wdt-premium-option-disabled"
116
+ value="google_spreadsheet"
117
+ data-content="<i class='wpdt-icon-star-full m-r-5' style='color: #FFC078;'></i> <span ><?php _e('Google Spreadsheet ', 'wpdatatables'); ?><span class='wdt-premium'><?php _e('Available in Premium', 'wpdatatables'); ?></span></span>"></option>
118
  <option value="xml"><?php _e('XML file', 'wpdatatables'); ?></option>
119
  <option value="json"><?php _e('JSON file', 'wpdatatables'); ?></option>
120
  <option value="serialized"><?php _e('Serialized PHP array', 'wpdatatables'); ?></option>
156
  </h4>
157
  <div class="toggle-switch" data-ts-color="blue">
158
  <input id="wdt-server-side" type="checkbox">