wpDataTables Lite - Version 2.1.7

Version Description

  • Feature: New option to set column data to be available/disabled in global Search results
  • Feature: New option to set NOFOLLOW relation for links in simple and data tables
  • BugFix: Fixed issue with saving page in Divi builder with simple table shortcode.
  • BugFix: Fixed issue with not showing tabs in backend after switch.
  • BugFix: Fixed issue with tooltip when is loaded jQuery UI.
  • BugFix: Fixed issue with disappearing Display length selectbox.
  • Other small bug fixes and stability improvements.
Download this release

Release Info

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

Code changes from version 2.1.6 to 2.1.7

Files changed (35) hide show
  1. assets/css/bootstrap/wpdatatables-bootstrap.css +11 -0
  2. assets/js/wpdatatables/admin/common.js +7 -2
  3. assets/js/wpdatatables/admin/constructor/wdt.simpleTable.js +30 -3
  4. assets/js/wpdatatables/admin/plugin-settings/main.js +8 -0
  5. assets/js/wpdatatables/admin/table-settings/column_config_object.js +420 -346
  6. assets/js/wpdatatables/admin/table-settings/main.js +13 -12
  7. config/config.inc.php +1 -1
  8. controllers/wdt_functions.php +15 -0
  9. languages/en_US/wpdatatables.mo +0 -0
  10. languages/en_US/wpdatatables.po +272 -202
  11. languages/fr_FR/wpdatatables-fr_FR.mo +0 -0
  12. languages/fr_FR/wpdatatables-fr_FR.po +276 -203
  13. languages/hu_HU/wpdatatables-hu_HU.mo +0 -0
  14. languages/hu_HU/wpdatatables-hu_HU.po +272 -202
  15. languages/nl_NL/nl_NL.mo +0 -0
  16. languages/nl_NL/nl_NL.po +277 -204
  17. languages/nl_NL/wpdatatables-nl_NL.mo +0 -0
  18. languages/nl_NL/wpdatatables-nl_NL.po +277 -204
  19. languages/pl_PL/wpdatatables-pl_PL.mo +0 -0
  20. languages/pl_PL/wpdatatables-pl_PL.po +276 -203
  21. languages/ru_RU/wpdatatables-ru_RU.mo +0 -0
  22. languages/ru_RU/wpdatatables-ru_RU.po +276 -203
  23. languages/sl_SI/wpdatatables-sl_SI.mo +0 -0
  24. languages/sl_SI/wpdatatables-sl_SI.po +276 -203
  25. readme.txt +11 -2
  26. source/class.link.wpdatacolumn.php +26 -7
  27. source/class.wdtconfigcontroller.php +12 -2
  28. source/class.wpdatacolumn.php +188 -95
  29. source/class.wpdatatable.php +13 -1
  30. templates/admin/common/linkModal.inc.php +12 -1
  31. templates/admin/dashboard/dashboard.inc.php +7 -4
  32. templates/admin/table-settings/column_settings_panel.inc.php +40 -24
  33. templates/admin/table-settings/column_small_block.inc.php +2 -0
  34. templates/admin/table-settings/simple_table_preview_block.inc.php +17 -1
  35. wpdatatables.php +1 -1
assets/css/bootstrap/wpdatatables-bootstrap.css CHANGED
@@ -1915,18 +1915,21 @@
1915
  @media (min-width: 768px) {
1916
  .wpdt-c .container {
1917
  width: 100%;
 
1918
  }
1919
  }
1920
 
1921
  @media (min-width: 992px) {
1922
  .wpdt-c .container {
1923
  width: 100%;
 
1924
  }
1925
  }
1926
 
1927
  @media (min-width: 1200px) {
1928
  .wpdt-c .container {
1929
  width: 100%;
 
1930
  }
1931
  }
1932
 
@@ -13749,4 +13752,12 @@ input:focus {
13749
  .wpdt-c .wpdt-custom-center-flex{
13750
  display: flex;
13751
  justify-content: center;
 
 
 
 
 
 
 
 
13752
  }
1915
  @media (min-width: 768px) {
1916
  .wpdt-c .container {
1917
  width: 100%;
1918
+ max-width: 100%;
1919
  }
1920
  }
1921
 
1922
  @media (min-width: 992px) {
1923
  .wpdt-c .container {
1924
  width: 100%;
1925
+ max-width: 100%;
1926
  }
1927
  }
1928
 
1929
  @media (min-width: 1200px) {
1930
  .wpdt-c .container {
1931
  width: 100%;
1932
+ max-width: 100%;
1933
  }
1934
  }
1935
 
13752
  .wpdt-c .wpdt-custom-center-flex{
13753
  display: flex;
13754
  justify-content: center;
13755
+ }
13756
+ .wpDataTables .dataTables_length select.selectpicker {
13757
+ display: inline-block !important;
13758
+ width: inherit;
13759
+ padding: 3px 24px 3px 8px !important;
13760
+ border-radius: 4px;
13761
+ border: solid 1px #dcdfe6;
13762
+ outline: none !important;
13763
  }
assets/js/wpdatatables/admin/common.js CHANGED
@@ -34,7 +34,7 @@ var popoverOptions = {
34
  */
35
  var wdtHideTooltip = function () {
36
  jQuery('[data-toggle="tooltip"]').click(function () {
37
- jQuery(this).tooltip('hide');
38
  });
39
 
40
  jQuery('[data-toggle="tooltip"]').mouseout(function (event) {
@@ -42,10 +42,15 @@ var wdtHideTooltip = function () {
42
  if (e != null && (e.parentNode == this || e == this)) {
43
  return;
44
  }
45
- jQuery(this).tooltip('hide');
46
  });
47
  };
48
 
 
 
 
 
 
49
  /**
50
  * Extend jQuery to use AnimateCSS
51
  */
34
  */
35
  var wdtHideTooltip = function () {
36
  jQuery('[data-toggle="tooltip"]').click(function () {
37
+ jQuery(this).wdtBootstrapTooltip('hide');
38
  });
39
 
40
  jQuery('[data-toggle="tooltip"]').mouseout(function (event) {
42
  if (e != null && (e.parentNode == this || e == this)) {
43
  return;
44
  }
45
+ jQuery(this).wdtBootstrapTooltip('hide');
46
  });
47
  };
48
 
49
+ /**
50
+ * Extend jQuery to use our custom function for tooltip
51
+ */
52
+ jQuery.fn.wdtBootstrapTooltip = jQuery.fn.tooltip;
53
+
54
  /**
55
  * Extend jQuery to use AnimateCSS
56
  */
assets/js/wpdatatables/admin/constructor/wdt.simpleTable.js CHANGED
@@ -1297,6 +1297,7 @@
1297
  $('#wpdt-link-url').val(linkData.data('link-url'));
1298
  $('#wpdt-link-text').val(linkData.data('link-text'));
1299
  $("#wpdt-link-target-attribute").prop("checked", linkData.data('link-target') === true);
 
1300
  $("#wpdt-link-button-attribute").prop("checked", linkData.data('link-btn-status') === true);
1301
  if (linkData.data('link-btn-status') === true) {
1302
  $('div.wpdt-link-button-class-block').show();
@@ -1309,6 +1310,7 @@
1309
  $('#wpdt-link-url').val('');
1310
  $('#wpdt-link-text').val('');
1311
  $("#wpdt-link-target-attribute").prop("checked", false);
 
1312
  $("#wpdt-link-button-attribute").prop("checked", false);
1313
  $('div.wpdt-link-button-text-block').hide();
1314
  $('div.wpdt-link-button-class-block').hide();
@@ -1318,7 +1320,7 @@
1318
  $('#wdt-backend-insert-link-button').on('click', function (e) {
1319
  e.preventDefault();
1320
  e.stopImmediatePropagation();
1321
- let targetAttr, formdata, dataAttr, selectedRange = wpdtEditor.getSelectedRange()[0],
1322
  highlightRow = selectedRange.highlight.row,
1323
  highlightCol = selectedRange.highlight.col,
1324
  linkUrl = $('#wpdt-link-url'),
@@ -1326,11 +1328,13 @@
1326
  linkText = $('#wpdt-link-text'),
1327
  linkTextValue = linkText.val(),
1328
  linkTarget = $("#wpdt-link-target-attribute").is(":checked") || 0,
 
1329
  linkButtonStatus = $("#wpdt-link-button-attribute").is(":checked") || 0,
1330
  buttonClass = $("#wpdt-button-class").val(),
1331
  pattern = new RegExp('^(https?)://');
1332
 
1333
  targetAttr = linkTarget ? "_blank" : "_self";
 
1334
 
1335
  if (linkUrlValue == '') {
1336
  linkUrl.closest('.col-sm-12').siblings('.error-msg').show();
@@ -1351,14 +1355,15 @@
1351
  dataAttr += ' data-link-url="' + linkUrl + '"';
1352
  dataAttr += ' data-link-text="' + linkTextValue + '"';
1353
  dataAttr += ' data-link-target="' + linkTarget + '"';
 
1354
  dataAttr += ' data-link-btn-status="' + linkButtonStatus + '"';
1355
  dataAttr += ' data-link-btn-class="' + buttonClass + '"';
1356
  dataAttr += ' data-link-content="wpdt-link-content"';
1357
 
1358
  if (!linkButtonStatus) {
1359
- formdata = '<a class="wpdt-link-content" href="' + linkUrl + '" target="' + targetAttr + '"' + dataAttr + '>' + linkTextValue + '</a>';
1360
  } else {
1361
- formdata = '<a class="wpdt-link-content" href="' + linkUrl + '" target="' + targetAttr + '" ' + dataAttr + '><button class="' + buttonClass + '">' + linkTextValue + '</button></a>';
1362
  }
1363
 
1364
  wpdtEditor.setDataAtCell(highlightRow, highlightCol, formdata);
@@ -1856,6 +1861,28 @@
1856
  $('.wdt-save-data').click()
1857
  }, 1000);
1858
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1859
  });
1860
 
1861
  })(jQuery);
1297
  $('#wpdt-link-url').val(linkData.data('link-url'));
1298
  $('#wpdt-link-text').val(linkData.data('link-text'));
1299
  $("#wpdt-link-target-attribute").prop("checked", linkData.data('link-target') === true);
1300
+ $("#wpdt-link-nofollow-attribute").prop("checked", linkData.data('link-nofollow') === true);
1301
  $("#wpdt-link-button-attribute").prop("checked", linkData.data('link-btn-status') === true);
1302
  if (linkData.data('link-btn-status') === true) {
1303
  $('div.wpdt-link-button-class-block').show();
1310
  $('#wpdt-link-url').val('');
1311
  $('#wpdt-link-text').val('');
1312
  $("#wpdt-link-target-attribute").prop("checked", false);
1313
+ $("#wpdt-link-nofollow-attribute").prop("checked", false);
1314
  $("#wpdt-link-button-attribute").prop("checked", false);
1315
  $('div.wpdt-link-button-text-block').hide();
1316
  $('div.wpdt-link-button-class-block').hide();
1320
  $('#wdt-backend-insert-link-button').on('click', function (e) {
1321
  e.preventDefault();
1322
  e.stopImmediatePropagation();
1323
+ let targetAttr, nofollowAttr, formdata, dataAttr, selectedRange = wpdtEditor.getSelectedRange()[0],
1324
  highlightRow = selectedRange.highlight.row,
1325
  highlightCol = selectedRange.highlight.col,
1326
  linkUrl = $('#wpdt-link-url'),
1328
  linkText = $('#wpdt-link-text'),
1329
  linkTextValue = linkText.val(),
1330
  linkTarget = $("#wpdt-link-target-attribute").is(":checked") || 0,
1331
+ linkNofollow = $("#wpdt-link-nofollow-attribute").is(":checked") || 0,
1332
  linkButtonStatus = $("#wpdt-link-button-attribute").is(":checked") || 0,
1333
  buttonClass = $("#wpdt-button-class").val(),
1334
  pattern = new RegExp('^(https?)://');
1335
 
1336
  targetAttr = linkTarget ? "_blank" : "_self";
1337
+ nofollowAttr = linkNofollow ? 'rel="nofollow"' : '';
1338
 
1339
  if (linkUrlValue == '') {
1340
  linkUrl.closest('.col-sm-12').siblings('.error-msg').show();
1355
  dataAttr += ' data-link-url="' + linkUrl + '"';
1356
  dataAttr += ' data-link-text="' + linkTextValue + '"';
1357
  dataAttr += ' data-link-target="' + linkTarget + '"';
1358
+ dataAttr += ' data-link-nofollow="' + linkNofollow + '"';
1359
  dataAttr += ' data-link-btn-status="' + linkButtonStatus + '"';
1360
  dataAttr += ' data-link-btn-class="' + buttonClass + '"';
1361
  dataAttr += ' data-link-content="wpdt-link-content"';
1362
 
1363
  if (!linkButtonStatus) {
1364
+ formdata = '<a class="wpdt-link-content" href="' + linkUrl + '" ' + nofollowAttr + ' target="' + targetAttr + '"' + dataAttr + '>' + linkTextValue + '</a>';
1365
  } else {
1366
+ formdata = '<a class="wpdt-link-content" href="' + linkUrl + '" ' + nofollowAttr + ' target="' + targetAttr + '" ' + dataAttr + '><button class="' + buttonClass + '">' + linkTextValue + '</button></a>';
1367
  }
1368
 
1369
  wpdtEditor.setDataAtCell(highlightRow, highlightCol, formdata);
1861
  $('.wdt-save-data').click()
1862
  }, 1000);
1863
  });
1864
+
1865
+ /**
1866
+ * Remove Simple Table alert message
1867
+ */
1868
+ $(document).on('click', '.wdt-simple-table-alert button', function (e) {
1869
+ e.preventDefault();
1870
+ $.ajax({
1871
+ url: ajaxurl,
1872
+ method: "POST",
1873
+ data: {
1874
+ 'action': 'wdtHideSimpleTableAlert'
1875
+ },
1876
+ dataType: "json",
1877
+ async: !0,
1878
+ success: function (e) {
1879
+ if (e == "success") {
1880
+ $('.wdt-simple-table-alert').slideUp('fast');
1881
+ }
1882
+ }
1883
+ });
1884
+ })
1885
+
1886
  });
1887
 
1888
  })(jQuery);
assets/js/wpdatatables/admin/plugin-settings/main.js CHANGED
@@ -292,6 +292,14 @@
292
  $('#wdt-remove-borders-header').prop( 'checked', false ).change();
293
  });
294
 
 
 
 
 
 
 
 
 
295
  /**
296
  * Save settings on Apply button
297
  */
292
  $('#wdt-remove-borders-header').prop( 'checked', false ).change();
293
  });
294
 
295
+ /**
296
+ * Switch tabs in plugin settings
297
+ */
298
+ $('.wdt-datatables-admin-wrap .plugin-settings .tab-nav:not(.mysql-serverside-settings-block) a').click(function (e) {
299
+ $(this).tab('show');
300
+ });
301
+
302
+
303
  /**
304
  * Save settings on Apply button
305
  */
assets/js/wpdatatables/admin/table-settings/column_config_object.js CHANGED
@@ -4,7 +4,7 @@
4
  * @author Alexander Gilmanov
5
  * @since 22.11.2016
6
  */
7
- var WDTColumn = function( column, parent_table ){
8
  /**
9
  * Id of column
10
  * @type {null|int}
@@ -168,6 +168,12 @@ var WDTColumn = function( column, parent_table ){
168
  */
169
  this.filtering = 0;
170
 
 
 
 
 
 
 
171
  /**
172
  * Filter type for this column
173
  * @type {string}
@@ -253,6 +259,11 @@ var WDTColumn = function( column, parent_table ){
253
  */
254
  this.linkTargetAttribute = '_self';
255
 
 
 
 
 
 
256
  /**
257
  * Open link column as a button
258
  */
@@ -270,51 +281,53 @@ var WDTColumn = function( column, parent_table ){
270
  /**
271
  * Initialize with object if passed
272
  */
273
- if( typeof column !== 'undefined' ){
274
- this.calculateAvg = column.calculateAvg || 0;
275
- this.calculateMax = column.calculateMax || 0;
276
- this.calculateMin = column.calculateMin || 0;
277
- this.calculateTotal = column.calculateTotal || 0;
278
- this.color = column.color || '';
279
- this.conditional_formatting = column.conditional_formatting || [];
280
- this.css_class = column.css_class || '';
281
- this.dateInputFormat = column.dateInputFormat || '';
282
- this.decimalPlaces = column.decimalPlaces;
283
- this.defaultSortingColumn = column.defaultSortingColumn || 0;
284
- this.defaultValueValues = column.defaultValueValues || null;
285
- this.display_header = column.display_header || null;
286
- this.editingDefaultValue = column.editingDefaultValue || null;
287
- this.editingNonEmpty = column.input_mandatory || 0;
288
- this.editor_type = column.editor_type || 'none';
289
- this.exactFiltering = column.exactFiltering || 0;
290
- this.filter_type = column.filter_type || 'text';
291
- this.filterDefaultValue = column.filterDefaultValue || null;
292
- this.filtering = typeof column.filtering !== 'undefined' ? column.filtering : 1;
293
- this.filterLabel = column.filterLabel || null;
294
- this.foreignKeyRule = column.foreignKeyRule || null;
295
- this.formula = column.formula || '';
296
- this.groupColumn = column.groupColumn || 0;
297
- this.hide_on_mobiles = column.hide_on_mobiles || 0;
298
- this.hide_on_tablets = column.hide_on_tablets || 0;
299
- this.id = column.id || null;
300
- this.id_column = column.id_column || 0;
 
301
  this.linkTargetAttribute = column.linkTargetAttribute || '_self';
 
302
  this.linkButtonAttribute = column.linkButtonAttribute || 0;
303
  this.linkButtonLabel = column.linkButtonLabel || null;
304
  this.linkButtonClass = column.linkButtonClass || null;
305
- this.orig_header = column.orig_header || null;
306
- this.parent_table = column.parent_table || null;
307
- this.pos = column.pos || 0;
308
- this.possibleValuesAddEmpty = column.possibleValuesAddEmpty || 0;
309
- this.possibleValuesType = column.possibleValuesType || null;
310
- this.skip_thousands_separator = column.skip_thousands_separator || 0;
311
- this.sorting = typeof column.sorting !== 'undefined' ? column.sorting : 1;
312
- this.text_after = column.text_after || null;
313
- this.text_before = column.text_before || null;
314
- this.type = column.type || null;
315
- this.valuesList = column.valuesList || null;
316
- this.visible = typeof column.visible !== 'undefined' ? column.visible : 1;
317
- this.width = column.width || null;
318
  }
319
  };
320
 
@@ -322,7 +335,7 @@ var WDTColumn = function( column, parent_table ){
322
  * Set column type
323
  * @param type
324
  */
325
- WDTColumn.prototype.setType = function( type ){
326
  this.type = type;
327
  };
328
 
@@ -330,7 +343,7 @@ WDTColumn.prototype.setType = function( type ){
330
  * Gets column type
331
  * @returns {null|*}
332
  */
333
- WDTColumn.prototype.getType = function(){
334
  return this.type;
335
  };
336
 
@@ -338,7 +351,7 @@ WDTColumn.prototype.getType = function(){
338
  * Set column ID
339
  * @param id
340
  */
341
- WDTColumn.prototype.setId = function( id ){
342
  this.id = id;
343
  };
344
 
@@ -346,7 +359,7 @@ WDTColumn.prototype.setId = function( id ){
346
  * Get column ID
347
  * @returns {null|*}
348
  */
349
- WDTColumn.prototype.getId = function(){
350
  return this.id;
351
  };
352
 
@@ -355,14 +368,14 @@ WDTColumn.prototype.getId = function(){
355
  * Set column display header
356
  * @param display_header
357
  */
358
- WDTColumn.prototype.setDisplayHeader = function( display_header ){
359
  this.display_header = display_header;
360
  };
361
 
362
  /**
363
  * Get column display header
364
  */
365
- WDTColumn.prototype.getDisplayHeader = function(){
366
  return this.display_header;
367
  };
368
 
@@ -370,7 +383,7 @@ WDTColumn.prototype.getDisplayHeader = function(){
370
  * Set text before
371
  * @param {string} text_before
372
  */
373
- WDTColumn.prototype.setTextBefore = function( text_before ){
374
  this.text_before = text_before;
375
  };
376
 
@@ -378,7 +391,7 @@ WDTColumn.prototype.setTextBefore = function( text_before ){
378
  * Get text before
379
  * @returns {string|*|null}
380
  */
381
- WDTColumn.prototype.getTextBefore = function(){
382
  return this.text_before;
383
  };
384
 
@@ -386,7 +399,7 @@ WDTColumn.prototype.getTextBefore = function(){
386
  * Set text after
387
  * @param {string} text_after
388
  */
389
- WDTColumn.prototype.setTextAfter = function( text_after ){
390
  this.text_after = text_after;
391
  };
392
 
@@ -394,7 +407,7 @@ WDTColumn.prototype.setTextAfter = function( text_after ){
394
  * Get text after
395
  * @returns {string|*|null}
396
  */
397
- WDTColumn.prototype.getTextAfter = function(){
398
  return this.text_after;
399
  };
400
 
@@ -402,7 +415,7 @@ WDTColumn.prototype.getTextAfter = function(){
402
  * Set Hide on Mobiles for responsive tables
403
  * @param {int} hideOnMobiles
404
  */
405
- WDTColumn.prototype.setHideOnMobiles = function( hideOnMobiles ){
406
  this.hide_on_mobiles = hideOnMobiles;
407
  };
408
 
@@ -410,7 +423,7 @@ WDTColumn.prototype.setHideOnMobiles = function( hideOnMobiles ){
410
  * Get Hide On Mobiles
411
  * @returns {int}
412
  */
413
- WDTColumn.prototype.getHideOnMobiles = function(){
414
  return this.hide_on_mobiles;
415
  };
416
 
@@ -418,7 +431,7 @@ WDTColumn.prototype.getHideOnMobiles = function(){
418
  * Set Hide on Mobiles for responsive tables
419
  * @param {int} hideOnTablets
420
  */
421
- WDTColumn.prototype.setHideOnTablets = function( hideOnTablets ){
422
  this.hide_on_tablets = hideOnTablets;
423
  };
424
 
@@ -426,7 +439,7 @@ WDTColumn.prototype.setHideOnTablets = function( hideOnTablets ){
426
  * Get Hide On Mobiles
427
  * @returns {int}
428
  */
429
- WDTColumn.prototype.getHideOnTablets = function(){
430
  return this.hide_on_tablets;
431
  };
432
 
@@ -434,7 +447,7 @@ WDTColumn.prototype.getHideOnTablets = function(){
434
  * Set column CSS class
435
  * @param {string} css_class
436
  */
437
- WDTColumn.prototype.setCssClass = function( css_class ){
438
  this.css_class = css_class;
439
  };
440
 
@@ -442,7 +455,7 @@ WDTColumn.prototype.setCssClass = function( css_class ){
442
  * Get column Column CSS class
443
  * @returns {string}
444
  */
445
- WDTColumn.prototype.getCssClass = function(){
446
  return this.css_class;
447
  };
448
 
@@ -450,7 +463,7 @@ WDTColumn.prototype.getCssClass = function(){
450
  * Set Group Column
451
  * @param {int} groupColumn
452
  */
453
- WDTColumn.prototype.setGroupColumn = function( groupColumn ){
454
  this.groupColumn = groupColumn;
455
  };
456
 
@@ -458,7 +471,7 @@ WDTColumn.prototype.setGroupColumn = function( groupColumn ){
458
  * Get Group Column
459
  * @return {int}
460
  */
461
- WDTColumn.prototype.getGroupColumn = function(){
462
  return this.groupColumn;
463
  };
464
 
@@ -466,7 +479,7 @@ WDTColumn.prototype.getGroupColumn = function(){
466
  * Set column color
467
  * @param {string} color
468
  */
469
- WDTColumn.prototype.setColor = function( color ){
470
  this.color = color;
471
  };
472
 
@@ -474,7 +487,7 @@ WDTColumn.prototype.setColor = function( color ){
474
  * Get column color
475
  * @returns {string}
476
  */
477
- WDTColumn.prototype.getColor = function(){
478
  return this.color;
479
  };
480
 
@@ -482,16 +495,16 @@ WDTColumn.prototype.getColor = function(){
482
  * Set column ID for editing flog
483
  * @param {int} idColumn
484
  */
485
- WDTColumn.prototype.setIdColumn = function( idColumn ){
486
  this.id_column = idColumn;
487
- jQuery('#wdt-id-editing-column').val( this.id );
488
  };
489
 
490
  /**
491
  * Get column ID for editing flog
492
  * @returns {string}
493
  */
494
- WDTColumn.prototype.getIdColumn = function(){
495
  return this.id_column;
496
  };
497
 
@@ -499,7 +512,7 @@ WDTColumn.prototype.getIdColumn = function(){
499
  * Set Visibility
500
  * @param {int} visible
501
  */
502
- WDTColumn.prototype.setVisible = function( visible ){
503
  this.visible = visible;
504
  };
505
 
@@ -507,7 +520,7 @@ WDTColumn.prototype.setVisible = function( visible ){
507
  * Get Visibility
508
  * @return {int}
509
  */
510
- WDTColumn.prototype.getVisible = function(){
511
  return this.visible;
512
  };
513
 
@@ -515,7 +528,7 @@ WDTColumn.prototype.getVisible = function(){
515
  * Set Width
516
  * @param {string} width
517
  */
518
- WDTColumn.prototype.setWidth = function( width ){
519
  this.width = width;
520
  };
521
 
@@ -523,7 +536,7 @@ WDTColumn.prototype.setWidth = function( width ){
523
  * Get Width
524
  * @return {string}
525
  */
526
- WDTColumn.prototype.getWidth = function(){
527
  return this.width;
528
  };
529
 
@@ -531,14 +544,14 @@ WDTColumn.prototype.getWidth = function(){
531
  * Get Position
532
  * @return {int}
533
  */
534
- WDTColumn.prototype.getPos = function(){
535
  return this.pos;
536
  };
537
 
538
  /**
539
  * Set Position
540
  */
541
- WDTColumn.prototype.setPos = function( pos ){
542
  this.pos = pos;
543
  };
544
 
@@ -546,7 +559,7 @@ WDTColumn.prototype.setPos = function( pos ){
546
  * Set Decimal Places
547
  * @param {int} decimalPlaces
548
  */
549
- WDTColumn.prototype.setDecimalPlaces = function( decimalPlaces ){
550
  this.decimalPlaces = decimalPlaces;
551
  };
552
 
@@ -554,7 +567,7 @@ WDTColumn.prototype.setDecimalPlaces = function( decimalPlaces ){
554
  * Get Decimal Places
555
  * @return {int}
556
  */
557
- WDTColumn.prototype.getDecimalPlaces = function(){
558
  return this.decimalPlaces;
559
  };
560
 
@@ -562,7 +575,7 @@ WDTColumn.prototype.getDecimalPlaces = function(){
562
  * Set Values Type (how to handle possible values)
563
  * @param {string} valuesType
564
  */
565
- WDTColumn.prototype.setPossibleValuesType = function( valuesType ){
566
  this.possibleValuesType = valuesType;
567
  };
568
 
@@ -570,7 +583,7 @@ WDTColumn.prototype.setPossibleValuesType = function( valuesType ){
570
  * Get Values Type
571
  * @return {string}
572
  */
573
- WDTColumn.prototype.getPossibleValuesType = function(){
574
  return this.possibleValuesType;
575
  };
576
 
@@ -579,7 +592,7 @@ WDTColumn.prototype.getPossibleValuesType = function(){
579
  * Defines whether an empty value will be added to the list of possible values
580
  * @param {int} possibleValuesAddEmpty
581
  */
582
- WDTColumn.prototype.setPossibleValuesAddEmpty = function( possibleValuesAddEmpty ){
583
  this.possibleValuesAddEmpty = possibleValuesAddEmpty;
584
  };
585
 
@@ -588,7 +601,7 @@ WDTColumn.prototype.setPossibleValuesAddEmpty = function( possibleValuesAddEmpty
588
  * (If an empty value in the list of possible values is allowed)
589
  * @return {int}
590
  */
591
- WDTColumn.prototype.getPossibleValuesAddEmpty = function(){
592
  return this.possibleValuesAddEmpty;
593
  };
594
 
@@ -596,7 +609,7 @@ WDTColumn.prototype.getPossibleValuesAddEmpty = function(){
596
  * Set Values List (for columns with hardcoded list of possible values)
597
  * @param {string} valuesList
598
  */
599
- WDTColumn.prototype.setValuesList = function( valuesList ){
600
  this.valuesList = valuesList;
601
  };
602
 
@@ -604,7 +617,7 @@ WDTColumn.prototype.setValuesList = function( valuesList ){
604
  * Get Values List
605
  * @return {string}
606
  */
607
- WDTColumn.prototype.getValuesList = function(){
608
  return this.valuesList;
609
  };
610
 
@@ -613,7 +626,7 @@ WDTColumn.prototype.getValuesList = function(){
613
  * for list of values for filtering and editing)
614
  * @param {obj} foreignKeyRule
615
  */
616
- WDTColumn.prototype.setForeignKeyRule = function( foreignKeyRule ){
617
  this.foreignKeyRule = foreignKeyRule;
618
  };
619
 
@@ -621,7 +634,7 @@ WDTColumn.prototype.setForeignKeyRule = function( foreignKeyRule ){
621
  * Get Values Foreign Key config
622
  * @return {obj}
623
  */
624
- WDTColumn.prototype.getForeignKeyRule = function(){
625
  return this.foreignKeyRule;
626
  };
627
 
@@ -629,7 +642,7 @@ WDTColumn.prototype.getForeignKeyRule = function(){
629
  * Set Calculate Total
630
  * @param calculateTotal
631
  */
632
- WDTColumn.prototype.setCalculateTotal = function( calculateTotal ){
633
  this.calculateTotal = calculateTotal;
634
  };
635
 
@@ -637,7 +650,7 @@ WDTColumn.prototype.setCalculateTotal = function( calculateTotal ){
637
  * Get Calculate Total
638
  * @return calculateTotal
639
  */
640
- WDTColumn.prototype.getCalculateTotal = function( ){
641
  return this.calculateTotal;
642
  };
643
 
@@ -645,7 +658,7 @@ WDTColumn.prototype.getCalculateTotal = function( ){
645
  * Set Calculate Average
646
  * @param {int} calculateAvg
647
  */
648
- WDTColumn.prototype.setCalculateAvg = function( calculateAvg ){
649
  this.calculateAvg = calculateAvg;
650
  };
651
 
@@ -653,7 +666,7 @@ WDTColumn.prototype.setCalculateAvg = function( calculateAvg ){
653
  * Get Calculate Average
654
  * @return {int} calculateTotal
655
  */
656
- WDTColumn.prototype.getCalculateAvg = function( ){
657
  return this.calculateAvg;
658
  };
659
 
@@ -661,7 +674,7 @@ WDTColumn.prototype.getCalculateAvg = function( ){
661
  * Set Calculate Max
662
  * @param {int} calculateMax
663
  */
664
- WDTColumn.prototype.setCalculateMax = function( calculateMax ){
665
  this.calculateMax = calculateMax;
666
  };
667
 
@@ -669,7 +682,7 @@ WDTColumn.prototype.setCalculateMax = function( calculateMax ){
669
  * Get Calculate Max
670
  * @return {int} calculateMax
671
  */
672
- WDTColumn.prototype.getCalculateMax = function( ){
673
  return this.calculateMax;
674
  };
675
 
@@ -677,7 +690,7 @@ WDTColumn.prototype.getCalculateMax = function( ){
677
  * Set Calculate Min
678
  * @param {int} calculateMin
679
  */
680
- WDTColumn.prototype.setCalculateMin = function( calculateMin ){
681
  this.calculateMin = calculateMin;
682
  };
683
 
@@ -685,7 +698,7 @@ WDTColumn.prototype.setCalculateMin = function( calculateMin ){
685
  * Get Calculate Min
686
  * @return calculateMin
687
  */
688
- WDTColumn.prototype.getCalculateMin = function( ){
689
  return this.calculateMin;
690
  };
691
 
@@ -693,7 +706,7 @@ WDTColumn.prototype.getCalculateMin = function( ){
693
  * Set Skip Thousands Separator
694
  * @param {int} skipThousandsSeparator
695
  */
696
- WDTColumn.prototype.setSkipThousandsSeparator = function( skipThousandsSeparator ){
697
  this.skip_thousands_separator = skipThousandsSeparator;
698
  };
699
 
@@ -701,7 +714,7 @@ WDTColumn.prototype.setSkipThousandsSeparator = function( skipThousandsSeparator
701
  * Get Skip Thousands Separator
702
  * @return {int} skipThousandsSeparator
703
  */
704
- WDTColumn.prototype.getSkipThousandsSeparator = function( ){
705
  return this.skip_thousands_separator;
706
  };
707
 
@@ -709,7 +722,7 @@ WDTColumn.prototype.getSkipThousandsSeparator = function( ){
709
  * Set Sorting
710
  * @param {int} sorting
711
  */
712
- WDTColumn.prototype.setSorting = function( sorting ){
713
  this.sorting = sorting;
714
  };
715
 
@@ -717,7 +730,7 @@ WDTColumn.prototype.setSorting = function( sorting ){
717
  * Get Sorting
718
  * @return {int} sorting
719
  */
720
- WDTColumn.prototype.getSorting = function( ){
721
  return this.sorting;
722
  };
723
 
@@ -725,7 +738,7 @@ WDTColumn.prototype.getSorting = function( ){
725
  * Set as Default Sorting Column
726
  * @param {int} defaultSortingColumn
727
  */
728
- WDTColumn.prototype.setDefaultSortingColumn = function( defaultSortingColumn ){
729
  this.defaultSortingColumn = defaultSortingColumn;
730
  };
731
 
@@ -733,7 +746,7 @@ WDTColumn.prototype.setDefaultSortingColumn = function( defaultSortingColumn ){
733
  * Get Default Sorting Column
734
  * @return {int} sorting
735
  */
736
- WDTColumn.prototype.getDefaultSortingColumn = function( ){
737
  return this.defaultSortingColumn;
738
  };
739
 
@@ -741,7 +754,7 @@ WDTColumn.prototype.getDefaultSortingColumn = function( ){
741
  * Set Filtering
742
  * @param {int} filtering
743
  */
744
- WDTColumn.prototype.setFiltering = function( filtering ){
745
  this.filtering = filtering;
746
  };
747
 
@@ -749,15 +762,33 @@ WDTColumn.prototype.setFiltering = function( filtering ){
749
  * Get Filtering
750
  * @return {int} filtering
751
  */
752
- WDTColumn.prototype.getFiltering = function( ){
753
  return this.filtering;
754
  };
755
 
756
  /**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
757
  * Set Filter Type
758
  * @param {string} filterType
759
  */
760
- WDTColumn.prototype.setFilterType = function( filterType ){
761
  this.filter_type = filterType;
762
  };
763
 
@@ -765,7 +796,7 @@ WDTColumn.prototype.setFilterType = function( filterType ){
765
  * Get Filter Type
766
  * @return {int} filterType
767
  */
768
- WDTColumn.prototype.getFilterType = function( ){
769
  return this.filter_type;
770
  };
771
 
@@ -773,7 +804,7 @@ WDTColumn.prototype.getFilterType = function( ){
773
  * Set Editor Type
774
  * @param {string} editorType
775
  */
776
- WDTColumn.prototype.setEditorType = function( editorType ){
777
  this.editor_type = editorType;
778
  };
779
 
@@ -781,7 +812,7 @@ WDTColumn.prototype.setEditorType = function( editorType ){
781
  * Get Editor Type
782
  * @return {string} editorType
783
  */
784
- WDTColumn.prototype.getEditorType = function( ){
785
  return this.filter_type;
786
  };
787
 
@@ -789,7 +820,7 @@ WDTColumn.prototype.getEditorType = function( ){
789
  * Set Non Empty
790
  * @param {int} nonEmpty
791
  */
792
- WDTColumn.prototype.setNonEmpty = function( nonEmpty ){
793
  this.editingNonEmpty = nonEmpty;
794
  };
795
 
@@ -797,7 +828,7 @@ WDTColumn.prototype.setNonEmpty = function( nonEmpty ){
797
  * Get Non Empty
798
  * @return {int} nonEmpty
799
  */
800
- WDTColumn.prototype.getNonEmpty = function( ){
801
  return this.editingNonEmpty;
802
  };
803
 
@@ -805,7 +836,7 @@ WDTColumn.prototype.getNonEmpty = function( ){
805
  * Set Conditional Formatting rules
806
  * @param {array} conditionalFormatting
807
  */
808
- WDTColumn.prototype.setConditionalFormatting = function( conditionalFormatting ){
809
  this.conditional_formatting = conditionalFormatting;
810
  };
811
 
@@ -813,7 +844,7 @@ WDTColumn.prototype.setConditionalFormatting = function( conditionalFormatting )
813
  * Get Conditional Formatting rules
814
  * @return {int} nonEmpty
815
  */
816
- WDTColumn.prototype.getConditionalFormatting = function( ){
817
  return this.conditional_formatting;
818
  };
819
 
@@ -821,7 +852,7 @@ WDTColumn.prototype.getConditionalFormatting = function( ){
821
  * Set Formula
822
  * @param {string} formula
823
  */
824
- WDTColumn.prototype.setFormula = function( formula ){
825
  this.formula = formula;
826
  };
827
 
@@ -829,7 +860,7 @@ WDTColumn.prototype.setFormula = function( formula ){
829
  * Get Formula
830
  * @return {string}
831
  */
832
- WDTColumn.prototype.getFormula = function( ){
833
  return this.formula;
834
  };
835
 
@@ -837,7 +868,7 @@ WDTColumn.prototype.getFormula = function( ){
837
  * Defines a link to a parent table
838
  * @param tableLink
839
  */
840
- WDTColumn.prototype.setParentTable = function( tableLink ){
841
  this.parent_table = tableLink;
842
  };
843
 
@@ -845,7 +876,7 @@ WDTColumn.prototype.setParentTable = function( tableLink ){
845
  * Returns the link to parent table
846
  * @returns {null|*}
847
  */
848
- WDTColumn.prototype.getParentTable = function(){
849
  return this.parent_table;
850
  };
851
 
@@ -853,7 +884,7 @@ WDTColumn.prototype.getParentTable = function(){
853
  * Set date input format
854
  * @param {string} dateInputFormat
855
  */
856
- WDTColumn.prototype.setDateInputFormat = function( dateInputFormat ){
857
  this.dateInputFormat = dateInputFormat;
858
  };
859
 
@@ -861,7 +892,7 @@ WDTColumn.prototype.setDateInputFormat = function( dateInputFormat ){
861
  * Get date input format
862
  * @returns {string|*|null}
863
  */
864
- WDTColumn.prototype.getDateInputFormat = function(){
865
  return this.dateInputFormat;
866
  };
867
 
@@ -869,44 +900,44 @@ WDTColumn.prototype.getDateInputFormat = function(){
869
  * Renders the conditional formatting rule in the column settings panel
870
  * @param formattingRule object with the rule
871
  */
872
- WDTColumn.prototype.renderConditionalFormattingBlock = function( formattingRule ){
873
  var conditional_formatting_tpl = jQuery('#wdt-column-conditional-formatting-template').html();
874
- var $block = jQuery( conditional_formatting_tpl )
875
- .appendTo( 'div.wdt-conditional-formatting-rules-container' );
876
- $block.find( 'select.formatting-rule-if-clause' )
877
- .val( formattingRule.ifClause )
878
  .selectpicker();
879
- $block.find( 'input.formatting-rule-cell-value' )
880
- .val( formattingRule.cellVal ).addClass('wdt-' + jQuery('#wdt-column-type').val() + 'picker');
881
- $block.find( 'select.formatting-rule-action' )
882
- .val( formattingRule.action )
883
  .selectpicker();
884
- $block.find( 'input.formatting-rule-set-value' )
885
- .val( formattingRule.setVal );
886
 
887
- if( ['date','int','float','datetime','time'].indexOf(jQuery('#wdt-column-type').val()) !== -1 ){
888
  $block
889
  .find('select.formatting-rule-if-clause option[value="contains"],select.formatting-rule-if-clause option[value="contains_not"]')
890
  .remove();
891
- } else if ( ['string','link','email','image'].indexOf(jQuery('#wdt-column-type').val()) !== -1 ){
892
  $block
893
  .find('select.formatting-rule-if-clause option[value="lt"],'
894
- +'select.formatting-rule-if-clause option[value="lteq"],'
895
- +'select.formatting-rule-if-clause option[value="gteq"],'
896
- +'select.formatting-rule-if-clause option[value="gt"]'
897
  )
898
  .remove();
899
  }
900
 
901
- $block.find('select.formatting-rule-action').change(function(e){
902
  e.preventDefault();
903
  e.stopImmediatePropagation();
904
- if( ['setCellColor','setRowColor','setColumnColor'].indexOf( jQuery(this).val() ) !== -1 ){
905
- if( !$block.find('div.wdt-color-picker').length ){
906
- wdtInputToColorpicker( $block.find('input.formatting-rule-set-value') );
907
  }
908
- }else if( $block.find('div.wdt-color-picker').length ){
909
- wdtColorPickerToInput( $block.find('input.formatting-rule-set-value') );
910
  }
911
  }).change();
912
 
@@ -916,30 +947,30 @@ WDTColumn.prototype.renderConditionalFormattingBlock = function( formattingRule
916
  /**
917
  * Helper function to show/hide the colorpicker in conditional formatting block
918
  */
919
- jQuery(document).on('change','div.wdt-conditional-formatting-rules-container select.formatting-rule-action',function(e){
920
  e.preventDefault();
921
- if( jQuery(this).val() == 'setCellColor' || jQuery(this).val() == 'setRowColor' || jQuery(this).val() == 'setColumnColor' ){
922
  jQuery('.wdt-conditional-formatting-rules-container').parent().find('input.formatting-rule-set-value').remove();
923
- }else{
924
  var val = jQuery(this).parent().find('input.formatting-rule-set-value').val();
925
- jQuery(this).parent().find('div.wp-picker-container').replaceWith('<input class="setVal" value="'+val+'" />')
926
  }
927
  });
928
 
929
- WDTColumn.prototype.compileConditionalFormattingRules = function(){
930
  var column = this;
931
  var formattingRules = [];
932
- jQuery('div.wdt-conditional-formatting-rules-container div.wdt-conditional-formatting-rule').each(function(){
933
- if( ( column.type == 'int' ) || ( column.type == 'float' ) ){
934
- var cellVal = parseFloat( jQuery(this).find('input.formatting-rule-cell-value').val() );
935
- }else{
936
- cellVal = jQuery(this).find('input.formatting-rule-cell-value').val().replace('"',"'");
937
  }
938
  formattingRules.push({
939
  ifClause: jQuery(this).find('select.formatting-rule-if-clause').val(),
940
  cellVal: cellVal,
941
  action: jQuery(this).find('select.formatting-rule-action').val(),
942
- setVal: jQuery(this).find('input.formatting-rule-set-value').val()
943
  });
944
  });
945
  this.conditional_formatting = formattingRules;
@@ -948,100 +979,110 @@ WDTColumn.prototype.compileConditionalFormattingRules = function(){
948
  /**
949
  * Fill in the visible inputs with data
950
  */
951
- WDTColumn.prototype.fillInputs = function(){
952
- jQuery('span.wdtColumnOrigHeader').html( this.orig_header );
953
- jQuery('#wdt-column-display-header').val( this.display_header );
954
- jQuery('#wdt-column-position').val( this.pos );
955
- jQuery('#wdt-column-display-text-before').val( this.text_before );
956
- jQuery('#wdt-column-display-text-after').val( this.text_after );
957
 
958
- if( this.parent_table.responsive ){
959
  jQuery('div.wdt-columns-responsive-block').show();
960
 
961
-
962
- }else{
963
  jQuery('div.wdt-columns-responsive-block').hide();
964
  }
965
 
966
- jQuery('#wdt-column-css-class').val( this.css_class ).keyup();
967
  wpdatatable_config.server_side == 1 ? jQuery('div.wdt-group-column-block').hide() : jQuery('div.wdt-group-column-block').show();
968
- jQuery('#wdt-group-column').prop( 'checked', this.groupColumn );
969
- jQuery('#wdt-column-color').val( this.color ).keyup();
970
  jQuery('#wdt-column-color').siblings('.wpcolorpicker-icon').find('i').css("background", this.color);
971
- jQuery('#wdt-column-visible').prop( 'checked', this.visible );
972
  jQuery('#wdt-column-width').val(this.width);
973
  jQuery('#wdt-link-target-attribute').prop('checked', this.linkTargetAttribute === '_self' ? 0 : 1);
 
974
  jQuery('#wdt-link-button-attribute').prop('checked', this.linkButtonAttribute).change();
975
  jQuery('#wdt-link-button-label').val(this.linkButtonLabel);
976
  jQuery('#wdt-link-button-class').val(this.linkButtonClass);
977
-
978
- jQuery('#wdt-column-decimal-places').val( '' );
979
- if( this.type == 'formula' ){
980
- jQuery('#wdt-column-type option[value="formula"]').prop('disabled','');
981
- jQuery('#wdt-column-type').prop( 'disabled','disabled' );
982
- if( this.decimalPlaces != -1 ) { jQuery('#wdt-column-decimal-places').val( this.decimalPlaces ); }
983
- }else{
984
- jQuery('#wdt-column-type option[value="formula"]').prop('disabled','disabled');
985
- jQuery('#wdt-column-type').prop( 'disabled','' );
 
 
 
986
  }
987
- jQuery('#wdt-column-type').selectpicker( 'val', this.type ).change();
988
  if (jQuery.inArray(this.type, ['date', 'datetime']) !== -1) {
989
  jQuery('#wdt-date-input-format').selectpicker('val', this.dateInputFormat);
990
  }
991
 
992
 
993
  jQuery('#wdt-column-values').selectpicker('val', this.possibleValuesType).trigger('change-without-notification');
994
- jQuery('#wdt-column-values-list').tagsinput( 'removeAll' );
995
  if (this.possibleValuesType == 'list') {
996
- jQuery('#wdt-column-values-list').tagsinput( 'add', this.valuesList );
997
  } else if (this.possibleValuesType == 'foreignkey') {
998
- jQuery('#wdt-connected-table-name').html( this.foreignKeyRule.tableName );
999
- jQuery('#wdt-connected-table-show-column').html( this.foreignKeyRule.displayColumnName );
1000
- jQuery('#wdt-connected-table-value-column').html( this.foreignKeyRule.storeColumnName );
1001
- jQuery('div.wdt-foreign-rule-display').show();
1002
  }
1003
- jQuery('#wdt-column-values-add-empty').prop( 'checked', this.possibleValuesAddEmpty );
1004
 
1005
- jQuery('#wdt-column-calc-total').prop( 'checked', this.calculateTotal );
1006
  jQuery('div.wdt-column-calc-total-block #wdt-column-calc-total-shortcode span')
1007
  .html('[wpdatatable_sum table_id=' + wpdatatable_config.id + ' col_id=' + wpdatatable_config.currentOpenColumn.id + ']');
1008
- jQuery('#wdt-column-calc-avg').prop( 'checked', this.calculateAvg );
1009
  jQuery('div.wdt-column-calc-avg-block #wdt-column-calc-avg-shortcode span')
1010
  .html('[wpdatatable_avg table_id=' + wpdatatable_config.id + ' col_id=' + wpdatatable_config.currentOpenColumn.id + ']');
1011
- jQuery('#wdt-column-calc-min').prop( 'checked', this.calculateMin );
1012
  jQuery('div.wdt-column-calc-min-block #wdt-column-calc-min-shortcode span')
1013
  .html('[wpdatatable_min table_id=' + wpdatatable_config.id + ' col_id=' + wpdatatable_config.currentOpenColumn.id + ']');
1014
- jQuery('#wdt-column-calc-max').prop( 'checked', this.calculateMax );
1015
  jQuery('div.wdt-column-calc-max-block #wdt-column-calc-max-shortcode span')
1016
  .html('[wpdatatable_max table_id=' + wpdatatable_config.id + ' col_id=' + wpdatatable_config.currentOpenColumn.id + ']');
1017
 
1018
  if (jQuery.inArray(this.type, ['int', 'float', 'formula']) !== -1) {
1019
  this.type == 'int' ?
1020
- jQuery('#wdt-column-skip-thousands').prop( 'checked', this.skip_thousands_separator )
1021
  : this.decimalPlaces != -1 ?
1022
- jQuery('#wdt-column-decimal-places').val( this.decimalPlaces ) :
1023
- jQuery('#wdt-column-decimal-places').val( '' );
1024
  }
1025
 
1026
- jQuery('#wdt-column-allow-sorting').prop( 'checked', this.sorting ).change();
1027
- jQuery('#wdt-column-default-sort').prop( 'checked', this.defaultSortingColumn ).change();
1028
- if( this.defaultSortingColumn ){
1029
  jQuery('#wdt-column-default-sorting-direction')
1030
- .selectpicker( 'val', this.defaultSortingColumn );
1031
  }
1032
-
1033
- if (!this.parent_table.filtering || this.type == 'formula') {
 
1034
  jQuery('li.column-filtering-settings-tab').hide();
1035
- }else{
 
 
 
 
 
 
1036
  jQuery('li.column-filtering-settings-tab').removeClass('active').show();
1037
- jQuery('#wdt-column-filter-label').val( this.filterLabel );
1038
 
1039
-
1040
 
1041
- if( this.filter_type != 'none' ){
1042
-
1043
 
1044
- if ( this.filterDefaultValue ) {
 
1045
  if (jQuery.inArray(this.filter_type, ['text', 'number']) != -1) {
1046
  jQuery('#wdt-filter-default-value').val(this.filterDefaultValue);
1047
  } else if (jQuery.inArray(this.filter_type, ['number-range', 'date-range', 'datetime-range', 'time-range']) != -1) {
@@ -1059,32 +1100,32 @@ WDTColumn.prototype.fillInputs = function(){
1059
  jQuery('#wdt-filter-default-value-selectpicker').selectpicker('val', '');
1060
  }
1061
  } else {
1062
-
1063
  }
1064
  }
1065
 
1066
  if ((this.parent_table.editable || this.parent_table.table_type == 'manual') && this.type != 'formula') {
1067
  jQuery('li.column-editing-settings-tab').show();
1068
- jQuery( '#wdt-column-editor-input-type' ).selectpicker( 'val', this.editor_type ).change();
1069
- jQuery( '#wdt-column-not-null' ).prop( 'checked', this.editingNonEmpty );
1070
  if (this.editingDefaultValue) {
1071
  if (jQuery.inArray(this.editor_type, ['selectbox', 'multi-selectbox']) != -1) {
1072
  this.editingDefaultValue = this.editor_type == 'multi-selectbox' ? this.editingDefaultValue.split('|') : this.editingDefaultValue;
1073
  jQuery('#wdt-editing-default-value-selectpicker').selectpicker('val', this.editingDefaultValue);
1074
  } else {
1075
- jQuery( '#wdt-editing-default-value' ).val( this.editingDefaultValue );
1076
  }
1077
  } else {
1078
- jQuery( '#wdt-editing-default-value' ).val('');
1079
  }
1080
- this.id_column == 1 ?jQuery('.wdt-skip-thousands-separator-block').hide() : '';
1081
  } else {
1082
  jQuery('li.column-editing-settings-tab').hide();
1083
  }
1084
- jQuery('div.wdt-conditional-formatting-rules-container').html( '' );
1085
- if( this.conditional_formatting ){
1086
- for( var i in this.conditional_formatting ){
1087
- this.renderConditionalFormattingBlock( this.conditional_formatting[i] );
1088
  }
1089
  }
1090
 
@@ -1094,7 +1135,7 @@ WDTColumn.prototype.fillInputs = function(){
1094
  * Open the column settings block on the right, setting all
1095
  * the UI controls to match the object config
1096
  */
1097
- WDTColumn.prototype.show = function(){
1098
  jQuery('div.column-settings-panel').fadeInRight();
1099
  jQuery('div.column-settings-overlay').animateFadeIn();
1100
  wpdatatable_config.currentOpenColumn = this;
@@ -1110,13 +1151,17 @@ WDTColumn.prototype.show = function(){
1110
  jQuery('.column-sorting-settings-tab').hide() :
1111
  jQuery('.column-sorting-settings-tab').show();
1112
 
1113
- jQuery(document).on('keyup.hideCSEsc',function(e){
1114
- if(e.which == 27){
 
 
 
 
1115
  e.preventDefault();
1116
  e.stopImmediatePropagation();
1117
- if( jQuery('.wdt-datatables-admin-wrap div.modal').is(':visible') ){
1118
  jQuery('.wdt-datatables-admin-wrap div.modal').modal('hide');
1119
- } else{
1120
  wpdatatable_config.currentOpenColumn.hide();
1121
  }
1122
  }
@@ -1128,7 +1173,7 @@ WDTColumn.prototype.show = function(){
1128
  /**
1129
  * Hide the column settings block
1130
  */
1131
- WDTColumn.prototype.hide = function(){
1132
  jQuery('div.column-settings-panel').fadeOutRight();
1133
  jQuery('div.column-settings-overlay').animateFadeOut();
1134
  jQuery(document).off('keyup.hideCSEsc');
@@ -1139,44 +1184,49 @@ WDTColumn.prototype.hide = function(){
1139
  /**
1140
  * Apply changes from UI to the object
1141
  */
1142
- WDTColumn.prototype.applyChanges = function(){
1143
- if( !this.is_config_open ){ return; }
1144
- this.type = jQuery('#wdt-column-type').val();
1145
- this.display_header = jQuery('#wdt-column-display-header').val();
 
 
1146
 
1147
  // Reorder columns if columns position is changed
1148
- var oldPos = this.pos;
1149
  this.pos = jQuery('#wdt-column-position').val() > wpdatatable_config.columns.length - 1 ?
1150
  wpdatatable_config.columns.length - 1 : parseInt(jQuery('#wdt-column-position').val());
1151
- if ( this.pos < 0) { this.pos = 0 }
1152
- if ( oldPos != this.pos ) {
1153
- if ( oldPos < this.pos ) {
 
 
1154
  for (var i = 0; i < wpdatatable_config.columns.length; i++) {
1155
  if (i > oldPos && i <= this.pos) {
1156
- -- wpdatatable_config.columns[i].pos;
1157
  }
1158
  }
1159
  } else {
1160
  for (i in wpdatatable_config.columns) {
1161
  if (i >= this.pos && i < oldPos) {
1162
- ++ wpdatatable_config.columns[i].pos;
1163
  }
1164
  }
1165
  }
1166
  }
1167
 
1168
- this.text_before = jQuery('#wdt-column-display-text-before').val();
1169
- this.text_after = jQuery('#wdt-column-display-text-after').val();
1170
- this.hide_on_mobiles = jQuery('#wdt-hide-column-on-mobiles').is(':checked') ? 1 : 0;
1171
- this.hide_on_tablets = jQuery('#wdt-hide-column-on-tablets').is(':checked') ? 1 : 0;
1172
- this.css_class = jQuery('#wdt-column-css-class').val();
1173
  this.linkTargetAttribute = jQuery('#wdt-link-target-attribute').is(':checked') ? '_blank' : '_self';
 
1174
  this.linkButtonAttribute = jQuery('#wdt-link-button-attribute').is(':checked') ? 1 : 0;
1175
  this.linkButtonLabel = jQuery('#wdt-link-button-label').val();
1176
  this.linkButtonClass = jQuery('#wdt-link-button-class').val();
1177
 
1178
  // If group is checked ungroup all other columns
1179
- if ( jQuery('#wdt-group-column').is(':checked') ) {
1180
  for (i in wpdatatable_config.columns) {
1181
  wpdatatable_config.columns[i].groupColumn =
1182
  wpdatatable_config.columns[i].orig_header != this.orig_header ? 0 : 1;
@@ -1185,29 +1235,29 @@ WDTColumn.prototype.applyChanges = function(){
1185
  this.groupColumn = 0;
1186
  }
1187
 
1188
- this.color = jQuery('#wdt-column-color').val();
1189
- this.visible = jQuery('#wdt-column-visible').is(':checked') ? 1 : 0;
1190
- this.width = jQuery('#wdt-column-width').val();
1191
- this.decimalPlaces = ( ( this.type == 'float' || this.type == 'formula' ) && jQuery('#wdt-column-decimal-places').val() != '' ) ?
1192
  jQuery('#wdt-column-decimal-places').val() : -1;
1193
  if (jQuery.inArray(this.type, ['date', 'datetime']) !== -1) {
1194
  this.dateInputFormat = jQuery('#wdt-date-input-format').selectpicker('val');
1195
  }
1196
- this.possibleValuesType = jQuery('#wdt-column-values').val();
1197
- if( this.possibleValuesType == 'list' ){
1198
  this.valuesList = jQuery('#wdt-column-values-list').val().replace(/,/g, '|');
1199
  }
1200
- this.possibleValuesAddEmpty = jQuery('#wdt-column-values-add-empty').is(':checked') ? 1 : 0;
1201
- this.calculateTotal = ( jQuery('#wdt-column-calc-total').is(':checked') && ( this.type == 'int' || this.type == 'float' || this.type == 'formula') ) ? 1 : 0;
1202
- this.calculateAvg = ( jQuery('#wdt-column-calc-avg').is(':checked') && ( this.type == 'int' || this.type == 'float' || this.type == 'formula') ) ? 1 : 0;
1203
- this.calculateMax = ( jQuery('#wdt-column-calc-max').is(':checked') && ( this.type == 'int' || this.type == 'float' || this.type == 'formula') ) ? 1 : 0;
1204
- this.calculateMin = ( jQuery('#wdt-column-calc-min').is(':checked') && ( this.type == 'int' || this.type == 'float' || this.type == 'formula') ) ? 1 : 0;
1205
- this.skip_thousands_separator = jQuery('#wdt-column-skip-thousands').is(':checked') ? 1 : 0;
1206
- this.sorting = jQuery('#wdt-column-allow-sorting').is(':checked') ? 1 : 0;
1207
- this.defaultSortingColumn = jQuery('#wdt-column-default-sort').is(':checked') ? 1 : 0;
1208
 
1209
  // If default sort column is checked remove default sort column for all other columns
1210
- if ( jQuery('#wdt-column-default-sort').is(':checked') ) {
1211
  for (i in wpdatatable_config.columns) {
1212
  wpdatatable_config.columns[i].defaultSortingColumn =
1213
  wpdatatable_config.columns[i].orig_header != this.orig_header ? 0 : 1;
@@ -1217,31 +1267,32 @@ WDTColumn.prototype.applyChanges = function(){
1217
  this.defaultSortingColumn = 0;
1218
  }
1219
 
1220
- this.filter_type = jQuery('#wdt-column-enable-filter').is(':checked') ?
1221
  jQuery('#wdt-column-filter-type').val() :
1222
  'none';
1223
- this.exactFiltering = jQuery('#wdt-column-exact-filtering').is(':checked') ? 1 : 0;
1224
- this.filterLabel = jQuery('#wdt-column-filter-label').val();
1225
-
1226
- if ( jQuery.inArray( this.filter_type, ['text', 'number']) != -1 ) {
1227
- this.filterDefaultValue = jQuery('#wdt-filter-default-value').val();
1228
- } else if ( jQuery.inArray( this.filter_type, ['number-range', 'date-range', 'datetime-range', 'time-range']) != -1 ) {
1229
- this.filterDefaultValue = jQuery('#wdt-filter-default-value-from').val() + '|' + jQuery('#wdt-filter-default-value-to').val();
 
1230
  } else {
1231
- this.filterDefaultValue = jQuery.isArray( jQuery('#wdt-filter-default-value-selectpicker').selectpicker('val') ) ?
1232
  jQuery('#wdt-filter-default-value-selectpicker').selectpicker('val').join('|') :
1233
  jQuery('#wdt-filter-default-value-selectpicker').selectpicker('val');
1234
  }
1235
 
1236
- this.editor_type = jQuery('#wdt-column-editor-input-type').val();
1237
- this.editingNonEmpty = jQuery('#wdt-column-not-null').is(':checked') ? 1 : 0;
1238
 
1239
- if ( jQuery.inArray( this.editor_type, ['selectbox', 'multi-selectbox']) != -1 ) {
1240
- this.editingDefaultValue = jQuery.isArray( jQuery('#wdt-editing-default-value-selectpicker').selectpicker('val') ) ?
1241
  jQuery('#wdt-editing-default-value-selectpicker').selectpicker('val').join('|') :
1242
  jQuery('#wdt-editing-default-value-selectpicker').selectpicker('val');
1243
  } else {
1244
- this.editingDefaultValue = jQuery('#wdt-editing-default-value').val();
1245
  }
1246
  this.compileConditionalFormattingRules();
1247
 
@@ -1252,66 +1303,68 @@ WDTColumn.prototype.applyChanges = function(){
1252
  * Return all settings in an object format
1253
  * @return {} column config
1254
  */
1255
- WDTColumn.prototype.getJSON = function(){
1256
  return {
1257
- calculateAvg: this.calculateAvg,
1258
- calculateMax: this.calculateMax,
1259
- calculateMin: this.calculateMin,
1260
- calculateTotal: this.calculateTotal,
1261
- color: this.color,
1262
- conditional_formatting: this.conditional_formatting,
1263
- css_class: this.css_class,
1264
- dateInputFormat: this.dateInputFormat,
1265
- decimalPlaces: this.decimalPlaces,
1266
- defaultSortingColumn: this.defaultSortingColumn,
1267
- defaultValueValues: this.defaultValueValues,
1268
- display_header: this.display_header,
1269
- editingDefaultValue: this.editingDefaultValue,
1270
- editingNonEmpty: this.editingNonEmpty,
1271
- editor_type: this.editor_type,
1272
- exactFiltering: this.exactFiltering,
1273
- filter_type: this.filter_type,
1274
- filterDefaultValue: this.filterDefaultValue,
1275
- filtering: this.filtering,
1276
- filterLabel: this.filterLabel,
1277
- foreignKeyRule: this.foreignKeyRule,
1278
- formula: this.formula,
1279
- groupColumn: this.groupColumn,
1280
- hide_on_mobiles: this.hide_on_mobiles,
1281
- hide_on_tablets: this.hide_on_tablets,
1282
- id: this.id,
1283
- id_column: this.id_column,
1284
- linkTargetAttribute: this.linkTargetAttribute,
1285
- linkButtonAttribute: this.linkButtonAttribute,
1286
- linkButtonLabel: this.linkButtonLabel,
1287
- linkButtonClass: this.linkButtonClass,
1288
- orig_header: this.orig_header,
1289
- pos: this.pos,
1290
- possibleValuesAddEmpty: this.possibleValuesAddEmpty,
1291
- possibleValuesType: this.possibleValuesType,
1292
- skip_thousands_separator: this.skip_thousands_separator,
1293
- sorting: this.sorting,
1294
- text_after: this.text_after,
1295
- text_before: this.text_before,
1296
- type: this.type,
1297
- valuesList: this.valuesList,
1298
- visible: this.visible,
1299
- width: this.width
 
 
1300
  }
1301
  };
1302
 
1303
  /**
1304
  * Renders a small block for this column in the list (in the columns quickaccess modal, and in the formula editor)
1305
  */
1306
- WDTColumn.prototype.renderSmallColumnBlock = function( columnIndex ){
1307
  var columnHtml = jQuery('#wdt-column-small-block').html();
1308
 
1309
  // Adding to the columns quickaccess modal
1310
- var $columnBlock = jQuery(columnHtml).appendTo( '#wdt-columns-list-modal div.wdt-columns-container');
1311
  this.display_header != null ?
1312
- $columnBlock.find( 'div.fg-line input' ).val( this.display_header ) :
1313
- $columnBlock.find( 'div.fg-line input' ).val( this.orig_header );
1314
- $columnBlock.attr( 'data-orig_header', this.orig_header );
1315
  var column = this;
1316
  $columnBlock.find('i.toggle-visibility').click(function (e) {
1317
  e.preventDefault();
@@ -1383,6 +1436,27 @@ WDTColumn.prototype.renderSmallColumnBlock = function( columnIndex ){
1383
  .addClass('inactive')
1384
  }
1385
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1386
  /**
1387
  * Open column settings on wrench click
1388
  */
@@ -1393,11 +1467,11 @@ WDTColumn.prototype.renderSmallColumnBlock = function( columnIndex ){
1393
  });
1394
 
1395
  // Adding to the formula editor
1396
- if( this.type == 'int' || this.type == 'float' ){
1397
- $columnBlock = jQuery(columnHtml).appendTo( '#wdt-formula-editor-modal div.formula-columns-container');
1398
- $columnBlock.find( 'div.fg-line input' ).replaceWith('<span>' + this.display_header + '</span>');
1399
- $columnBlock.attr( 'data-orig_header', this.orig_header );
1400
- $columnBlock.find( 'i.column-control' ).remove();
1401
  }
1402
 
1403
  };
@@ -1405,14 +1479,14 @@ WDTColumn.prototype.renderSmallColumnBlock = function( columnIndex ){
1405
  /**
1406
  * Populate Column For Editing And User Selectpicker
1407
  */
1408
- WDTColumn.prototype.populateColumnForEditing = function() {
1409
- var $selecter = jQuery( '#editing-settings #wdt-id-editing-column' );
1410
 
1411
- jQuery( '<option value="' + this.id + '">' + this.orig_header + '</option>' )
1412
- .appendTo( $selecter );
1413
 
1414
  if (this.id_column) {
1415
- $selecter.selectpicker( 'val', this.id );
1416
  wpdatatable_config.id_editing_column = true;
1417
  }
1418
  };
@@ -1420,41 +1494,41 @@ WDTColumn.prototype.populateColumnForEditing = function() {
1420
  /**
1421
  * Populate User ID Column Selectpicker
1422
  */
1423
- WDTColumn.prototype.populateUserIdColumn = function() {
1424
- var $selecter = jQuery( '#editing-settings #wdt-user-id-column' );
1425
 
1426
- jQuery( '<option value="' + this.id + '">' + this.orig_header + '</option>' ).appendTo( $selecter );
1427
  };
1428
 
1429
- WDTColumn.prototype.getPremiumPopover = function(e) {
1430
  e.preventDefault();
1431
- jQuery('[data-toggle="html-input-premium-popover"]').popover('destroy').popover({
1432
- html: true,
1433
- template: '<div class="popover wdt-premium-popover" role="tooltip">' +
1434
- '<div class="arrow"></div>' +
1435
- '<h3 class="popover-header">' +
1436
- '<i class="wpdt-icon-star-full m-r-5" style="color: #FFC078;"></i>' +
1437
- wdtWpDataTablesPopoverStrings.title +
1438
- '<button type="button" class="closePopover">' +
1439
- '<span aria-hidden="true"><i class="wpdt-icon-times-full"></i></span></button></h3>' +
1440
- '<div class="popover-body"><span>' + wdtWpDataTablesPopoverStrings.description + '</span> ' +
1441
- '<div class="popover-footer"><a id="wdt-premium-compare-link">' + wdtWpDataTablesPopoverStrings.compare_link + '</a></div></div' +
1442
- '</div>',
1443
- content: function () {
1444
- var content = jQuery(this).attr("data-popover-content");
1445
- return jQuery(content).children(".popover-body").html();
1446
- },
1447
- title: function () {
1448
- var title = jQuery(this).attr("data-popover-content");
1449
- return jQuery(title).children(".popover-heading").html();
1450
- }
1451
- }).on('shown.bs.popover', function () {
1452
- var $popup = jQuery(this);
1453
- jQuery(this).next('.popover').find('button.closePopover').click(function (e) {
1454
- $popup.popover('hide');
1455
- });
1456
- jQuery('#wdt-premium-compare-link').click(function () {
1457
- jQuery(location).attr('href', wdtWpDataTablesPage.liteVSPremiumUrl);
1458
- });
1459
- })
1460
  };
4
  * @author Alexander Gilmanov
5
  * @since 22.11.2016
6
  */
7
+ var WDTColumn = function (column, parent_table) {
8
  /**
9
  * Id of column
10
  * @type {null|int}
168
  */
169
  this.filtering = 0;
170
 
171
+ /**
172
+ * Toggle global search column
173
+ * @type {int}
174
+ */
175
+ this.globalSearchColumn = 1;
176
+
177
  /**
178
  * Filter type for this column
179
  * @type {string}
259
  */
260
  this.linkTargetAttribute = '_self';
261
 
262
+ /**
263
+ * Set NOFOLLOW link
264
+ */
265
+ this.linkNofollowAttribute = 0;
266
+
267
  /**
268
  * Open link column as a button
269
  */
281
  /**
282
  * Initialize with object if passed
283
  */
284
+ if (typeof column !== 'undefined') {
285
+ this.calculateAvg = column.calculateAvg || 0;
286
+ this.calculateMax = column.calculateMax || 0;
287
+ this.calculateMin = column.calculateMin || 0;
288
+ this.calculateTotal = column.calculateTotal || 0;
289
+ this.color = column.color || '';
290
+ this.conditional_formatting = column.conditional_formatting || [];
291
+ this.css_class = column.css_class || '';
292
+ this.dateInputFormat = column.dateInputFormat || '';
293
+ this.decimalPlaces = column.decimalPlaces;
294
+ this.defaultSortingColumn = column.defaultSortingColumn || 0;
295
+ this.defaultValueValues = column.defaultValueValues || null;
296
+ this.display_header = column.display_header || null;
297
+ this.editingDefaultValue = column.editingDefaultValue || null;
298
+ this.editingNonEmpty = column.input_mandatory || 0;
299
+ this.editor_type = column.editor_type || 'none';
300
+ this.exactFiltering = column.exactFiltering || 0;
301
+ this.filter_type = column.filter_type || 'text';
302
+ this.filterDefaultValue = column.filterDefaultValue || null;
303
+ this.filtering = typeof column.filtering !== 'undefined' ? column.filtering : 1;
304
+ this.globalSearchColumn = column.globalSearchColumn || 0;
305
+ this.filterLabel = column.filterLabel || null;
306
+ this.foreignKeyRule = column.foreignKeyRule || null;
307
+ this.formula = column.formula || '';
308
+ this.groupColumn = column.groupColumn || 0;
309
+ this.hide_on_mobiles = column.hide_on_mobiles || 0;
310
+ this.hide_on_tablets = column.hide_on_tablets || 0;
311
+ this.id = column.id || null;
312
+ this.id_column = column.id_column || 0;
313
  this.linkTargetAttribute = column.linkTargetAttribute || '_self';
314
+ this.linkNofollowAttribute = column.linkNofollowAttribute || 0;
315
  this.linkButtonAttribute = column.linkButtonAttribute || 0;
316
  this.linkButtonLabel = column.linkButtonLabel || null;
317
  this.linkButtonClass = column.linkButtonClass || null;
318
+ this.orig_header = column.orig_header || null;
319
+ this.parent_table = column.parent_table || null;
320
+ this.pos = column.pos || 0;
321
+ this.possibleValuesAddEmpty = column.possibleValuesAddEmpty || 0;
322
+ this.possibleValuesType = column.possibleValuesType || null;
323
+ this.skip_thousands_separator = column.skip_thousands_separator || 0;
324
+ this.sorting = typeof column.sorting !== 'undefined' ? column.sorting : 1;
325
+ this.text_after = column.text_after || null;
326
+ this.text_before = column.text_before || null;
327
+ this.type = column.type || null;
328
+ this.valuesList = column.valuesList || null;
329
+ this.visible = typeof column.visible !== 'undefined' ? column.visible : 1;
330
+ this.width = column.width || null;
331
  }
332
  };
333
 
335
  * Set column type
336
  * @param type
337
  */
338
+ WDTColumn.prototype.setType = function (type) {
339
  this.type = type;
340
  };
341
 
343
  * Gets column type
344
  * @returns {null|*}
345
  */
346
+ WDTColumn.prototype.getType = function () {
347
  return this.type;
348
  };
349
 
351
  * Set column ID
352
  * @param id
353
  */
354
+ WDTColumn.prototype.setId = function (id) {
355
  this.id = id;
356
  };
357
 
359
  * Get column ID
360
  * @returns {null|*}
361
  */
362
+ WDTColumn.prototype.getId = function () {
363
  return this.id;
364
  };
365
 
368
  * Set column display header
369
  * @param display_header
370
  */
371
+ WDTColumn.prototype.setDisplayHeader = function (display_header) {
372
  this.display_header = display_header;
373
  };
374
 
375
  /**
376
  * Get column display header
377
  */
378
+ WDTColumn.prototype.getDisplayHeader = function () {
379
  return this.display_header;
380
  };
381
 
383
  * Set text before
384
  * @param {string} text_before
385
  */
386
+ WDTColumn.prototype.setTextBefore = function (text_before) {
387
  this.text_before = text_before;
388
  };
389
 
391
  * Get text before
392
  * @returns {string|*|null}
393
  */
394
+ WDTColumn.prototype.getTextBefore = function () {
395
  return this.text_before;
396
  };
397
 
399
  * Set text after
400
  * @param {string} text_after
401
  */
402
+ WDTColumn.prototype.setTextAfter = function (text_after) {
403
  this.text_after = text_after;
404
  };
405
 
407
  * Get text after
408
  * @returns {string|*|null}
409
  */
410
+ WDTColumn.prototype.getTextAfter = function () {
411
  return this.text_after;
412
  };
413
 
415
  * Set Hide on Mobiles for responsive tables
416
  * @param {int} hideOnMobiles
417
  */
418
+ WDTColumn.prototype.setHideOnMobiles = function (hideOnMobiles) {
419
  this.hide_on_mobiles = hideOnMobiles;
420
  };
421
 
423
  * Get Hide On Mobiles
424
  * @returns {int}
425
  */
426
+ WDTColumn.prototype.getHideOnMobiles = function () {
427
  return this.hide_on_mobiles;
428
  };
429
 
431
  * Set Hide on Mobiles for responsive tables
432
  * @param {int} hideOnTablets
433
  */
434
+ WDTColumn.prototype.setHideOnTablets = function (hideOnTablets) {
435
  this.hide_on_tablets = hideOnTablets;
436
  };
437
 
439
  * Get Hide On Mobiles
440
  * @returns {int}
441
  */
442
+ WDTColumn.prototype.getHideOnTablets = function () {
443
  return this.hide_on_tablets;
444
  };
445
 
447
  * Set column CSS class
448
  * @param {string} css_class
449
  */
450
+ WDTColumn.prototype.setCssClass = function (css_class) {
451
  this.css_class = css_class;
452
  };
453
 
455
  * Get column Column CSS class
456
  * @returns {string}
457
  */
458
+ WDTColumn.prototype.getCssClass = function () {
459
  return this.css_class;
460
  };
461
 
463
  * Set Group Column
464
  * @param {int} groupColumn
465
  */
466
+ WDTColumn.prototype.setGroupColumn = function (groupColumn) {
467
  this.groupColumn = groupColumn;
468
  };
469
 
471
  * Get Group Column
472
  * @return {int}
473
  */
474
+ WDTColumn.prototype.getGroupColumn = function () {
475
  return this.groupColumn;
476
  };
477
 
479
  * Set column color
480
  * @param {string} color
481
  */
482
+ WDTColumn.prototype.setColor = function (color) {
483
  this.color = color;
484
  };
485
 
487
  * Get column color
488
  * @returns {string}
489
  */
490
+ WDTColumn.prototype.getColor = function () {
491
  return this.color;
492
  };
493
 
495
  * Set column ID for editing flog
496
  * @param {int} idColumn
497
  */
498
+ WDTColumn.prototype.setIdColumn = function (idColumn) {
499
  this.id_column = idColumn;
500
+ jQuery('#wdt-id-editing-column').val(this.id);
501
  };
502
 
503
  /**
504
  * Get column ID for editing flog
505
  * @returns {string}
506
  */
507
+ WDTColumn.prototype.getIdColumn = function () {
508
  return this.id_column;
509
  };
510
 
512
  * Set Visibility
513
  * @param {int} visible
514
  */
515
+ WDTColumn.prototype.setVisible = function (visible) {
516
  this.visible = visible;
517
  };
518
 
520
  * Get Visibility
521
  * @return {int}
522
  */
523
+ WDTColumn.prototype.getVisible = function () {
524
  return this.visible;
525
  };
526
 
528
  * Set Width
529
  * @param {string} width
530
  */
531
+ WDTColumn.prototype.setWidth = function (width) {
532
  this.width = width;
533
  };
534
 
536
  * Get Width
537
  * @return {string}
538
  */
539
+ WDTColumn.prototype.getWidth = function () {
540
  return this.width;
541
  };
542
 
544
  * Get Position
545
  * @return {int}
546
  */
547
+ WDTColumn.prototype.getPos = function () {
548
  return this.pos;
549
  };
550
 
551
  /**
552
  * Set Position
553
  */
554
+ WDTColumn.prototype.setPos = function (pos) {
555
  this.pos = pos;
556
  };
557
 
559
  * Set Decimal Places
560
  * @param {int} decimalPlaces
561
  */
562
+ WDTColumn.prototype.setDecimalPlaces = function (decimalPlaces) {
563
  this.decimalPlaces = decimalPlaces;
564
  };
565
 
567
  * Get Decimal Places
568
  * @return {int}
569
  */
570
+ WDTColumn.prototype.getDecimalPlaces = function () {
571
  return this.decimalPlaces;
572
  };
573
 
575
  * Set Values Type (how to handle possible values)
576
  * @param {string} valuesType
577
  */
578
+ WDTColumn.prototype.setPossibleValuesType = function (valuesType) {
579
  this.possibleValuesType = valuesType;
580
  };
581
 
583
  * Get Values Type
584
  * @return {string}
585
  */
586
+ WDTColumn.prototype.getPossibleValuesType = function () {
587
  return this.possibleValuesType;
588
  };
589
 
592
  * Defines whether an empty value will be added to the list of possible values
593
  * @param {int} possibleValuesAddEmpty
594
  */
595
+ WDTColumn.prototype.setPossibleValuesAddEmpty = function (possibleValuesAddEmpty) {
596
  this.possibleValuesAddEmpty = possibleValuesAddEmpty;
597
  };
598
 
601
  * (If an empty value in the list of possible values is allowed)
602
  * @return {int}
603
  */
604
+ WDTColumn.prototype.getPossibleValuesAddEmpty = function () {
605
  return this.possibleValuesAddEmpty;
606
  };
607
 
609
  * Set Values List (for columns with hardcoded list of possible values)
610
  * @param {string} valuesList
611
  */
612
+ WDTColumn.prototype.setValuesList = function (valuesList) {
613
  this.valuesList = valuesList;
614
  };
615
 
617
  * Get Values List
618
  * @return {string}
619
  */
620
+ WDTColumn.prototype.getValuesList = function () {
621
  return this.valuesList;
622
  };
623
 
626
  * for list of values for filtering and editing)
627
  * @param {obj} foreignKeyRule
628
  */
629
+ WDTColumn.prototype.setForeignKeyRule = function (foreignKeyRule) {
630
  this.foreignKeyRule = foreignKeyRule;
631
  };
632
 
634
  * Get Values Foreign Key config
635
  * @return {obj}
636
  */
637
+ WDTColumn.prototype.getForeignKeyRule = function () {
638
  return this.foreignKeyRule;
639
  };
640
 
642
  * Set Calculate Total
643
  * @param calculateTotal
644
  */
645
+ WDTColumn.prototype.setCalculateTotal = function (calculateTotal) {
646
  this.calculateTotal = calculateTotal;
647
  };
648
 
650
  * Get Calculate Total
651
  * @return calculateTotal
652
  */
653
+ WDTColumn.prototype.getCalculateTotal = function () {
654
  return this.calculateTotal;
655
  };
656
 
658
  * Set Calculate Average
659
  * @param {int} calculateAvg
660
  */
661
+ WDTColumn.prototype.setCalculateAvg = function (calculateAvg) {
662
  this.calculateAvg = calculateAvg;
663
  };
664
 
666
  * Get Calculate Average
667
  * @return {int} calculateTotal
668
  */
669
+ WDTColumn.prototype.getCalculateAvg = function () {
670
  return this.calculateAvg;
671
  };
672
 
674
  * Set Calculate Max
675
  * @param {int} calculateMax
676
  */
677
+ WDTColumn.prototype.setCalculateMax = function (calculateMax) {
678
  this.calculateMax = calculateMax;
679
  };
680
 
682
  * Get Calculate Max
683
  * @return {int} calculateMax
684
  */
685
+ WDTColumn.prototype.getCalculateMax = function () {
686
  return this.calculateMax;
687
  };
688
 
690
  * Set Calculate Min
691
  * @param {int} calculateMin
692
  */
693
+ WDTColumn.prototype.setCalculateMin = function (calculateMin) {
694
  this.calculateMin = calculateMin;
695
  };
696
 
698
  * Get Calculate Min
699
  * @return calculateMin
700
  */
701
+ WDTColumn.prototype.getCalculateMin = function () {
702
  return this.calculateMin;
703
  };
704
 
706
  * Set Skip Thousands Separator
707
  * @param {int} skipThousandsSeparator
708
  */
709
+ WDTColumn.prototype.setSkipThousandsSeparator = function (skipThousandsSeparator) {
710
  this.skip_thousands_separator = skipThousandsSeparator;
711
  };
712
 
714
  * Get Skip Thousands Separator
715
  * @return {int} skipThousandsSeparator
716
  */
717
+ WDTColumn.prototype.getSkipThousandsSeparator = function () {
718
  return this.skip_thousands_separator;
719
  };
720
 
722
  * Set Sorting
723
  * @param {int} sorting
724
  */
725
+ WDTColumn.prototype.setSorting = function (sorting) {
726
  this.sorting = sorting;
727
  };
728
 
730
  * Get Sorting
731
  * @return {int} sorting
732
  */
733
+ WDTColumn.prototype.getSorting = function () {
734
  return this.sorting;
735
  };
736
 
738
  * Set as Default Sorting Column
739
  * @param {int} defaultSortingColumn
740
  */
741
+ WDTColumn.prototype.setDefaultSortingColumn = function (defaultSortingColumn) {
742
  this.defaultSortingColumn = defaultSortingColumn;
743
  };
744
 
746
  * Get Default Sorting Column
747
  * @return {int} sorting
748
  */
749
+ WDTColumn.prototype.getDefaultSortingColumn = function () {
750
  return this.defaultSortingColumn;
751
  };
752
 
754
  * Set Filtering
755
  * @param {int} filtering
756
  */
757
+ WDTColumn.prototype.setFiltering = function (filtering) {
758
  this.filtering = filtering;
759
  };
760
 
762
  * Get Filtering
763
  * @return {int} filtering
764
  */
765
+ WDTColumn.prototype.getFiltering = function () {
766
  return this.filtering;
767
  };
768
 
769
  /**
770
+ * Set global search for column
771
+ * @param {int} globalSearchColumn
772
+ */
773
+ WDTColumn.prototype.setGlobalSearchColumm = function (globalSearchColumn) {
774
+ this.globalSearchColumn = globalSearchColumn;
775
+ };
776
+
777
+ /**
778
+ * Get global search for column
779
+ * @return {int} globalSearchColumn
780
+ */
781
+ WDTColumn.prototype.getGlobalSearchColumn = function () {
782
+ return this.globalSearchColumn;
783
+ };
784
+
785
+ /**
786
+
787
+ /**
788
  * Set Filter Type
789
  * @param {string} filterType
790
  */
791
+ WDTColumn.prototype.setFilterType = function (filterType) {
792
  this.filter_type = filterType;
793
  };
794
 
796
  * Get Filter Type
797
  * @return {int} filterType
798
  */
799
+ WDTColumn.prototype.getFilterType = function () {
800
  return this.filter_type;
801
  };
802
 
804
  * Set Editor Type
805
  * @param {string} editorType
806
  */
807
+ WDTColumn.prototype.setEditorType = function (editorType) {
808
  this.editor_type = editorType;
809
  };
810
 
812
  * Get Editor Type
813
  * @return {string} editorType
814
  */
815
+ WDTColumn.prototype.getEditorType = function () {
816
  return this.filter_type;
817
  };
818
 
820
  * Set Non Empty
821
  * @param {int} nonEmpty
822
  */
823
+ WDTColumn.prototype.setNonEmpty = function (nonEmpty) {
824
  this.editingNonEmpty = nonEmpty;
825
  };
826
 
828
  * Get Non Empty
829
  * @return {int} nonEmpty
830
  */
831
+ WDTColumn.prototype.getNonEmpty = function () {
832
  return this.editingNonEmpty;
833
  };
834
 
836
  * Set Conditional Formatting rules
837
  * @param {array} conditionalFormatting
838
  */
839
+ WDTColumn.prototype.setConditionalFormatting = function (conditionalFormatting) {
840
  this.conditional_formatting = conditionalFormatting;
841
  };
842
 
844
  * Get Conditional Formatting rules
845
  * @return {int} nonEmpty
846
  */
847
+ WDTColumn.prototype.getConditionalFormatting = function () {
848
  return this.conditional_formatting;
849
  };
850
 
852
  * Set Formula
853
  * @param {string} formula
854
  */
855
+ WDTColumn.prototype.setFormula = function (formula) {
856
  this.formula = formula;
857
  };
858
 
860
  * Get Formula
861
  * @return {string}
862
  */
863
+ WDTColumn.prototype.getFormula = function () {
864
  return this.formula;
865
  };
866
 
868
  * Defines a link to a parent table
869
  * @param tableLink
870
  */
871
+ WDTColumn.prototype.setParentTable = function (tableLink) {
872
  this.parent_table = tableLink;
873
  };
874
 
876
  * Returns the link to parent table
877
  * @returns {null|*}
878
  */
879
+ WDTColumn.prototype.getParentTable = function () {
880
  return this.parent_table;
881
  };
882
 
884
  * Set date input format
885
  * @param {string} dateInputFormat
886
  */
887
+ WDTColumn.prototype.setDateInputFormat = function (dateInputFormat) {
888
  this.dateInputFormat = dateInputFormat;
889
  };
890
 
892
  * Get date input format
893
  * @returns {string|*|null}
894
  */
895
+ WDTColumn.prototype.getDateInputFormat = function () {
896
  return this.dateInputFormat;
897
  };
898
 
900
  * Renders the conditional formatting rule in the column settings panel
901
  * @param formattingRule object with the rule
902
  */
903
+ WDTColumn.prototype.renderConditionalFormattingBlock = function (formattingRule) {
904
  var conditional_formatting_tpl = jQuery('#wdt-column-conditional-formatting-template').html();
905
+ var $block = jQuery(conditional_formatting_tpl)
906
+ .appendTo('div.wdt-conditional-formatting-rules-container');
907
+ $block.find('select.formatting-rule-if-clause')
908
+ .val(formattingRule.ifClause)
909
  .selectpicker();
910
+ $block.find('input.formatting-rule-cell-value')
911
+ .val(formattingRule.cellVal).addClass('wdt-' + jQuery('#wdt-column-type').val() + 'picker');
912
+ $block.find('select.formatting-rule-action')
913
+ .val(formattingRule.action)
914
  .selectpicker();
915
+ $block.find('input.formatting-rule-set-value')
916
+ .val(formattingRule.setVal);
917
 
918
+ if (['date', 'int', 'float', 'datetime', 'time'].indexOf(jQuery('#wdt-column-type').val()) !== -1) {
919
  $block
920
  .find('select.formatting-rule-if-clause option[value="contains"],select.formatting-rule-if-clause option[value="contains_not"]')
921
  .remove();
922
+ } else if (['string', 'link', 'email', 'image'].indexOf(jQuery('#wdt-column-type').val()) !== -1) {
923
  $block
924
  .find('select.formatting-rule-if-clause option[value="lt"],'
925
+ + 'select.formatting-rule-if-clause option[value="lteq"],'
926
+ + 'select.formatting-rule-if-clause option[value="gteq"],'
927
+ + 'select.formatting-rule-if-clause option[value="gt"]'
928
  )
929
  .remove();
930
  }
931
 
932
+ $block.find('select.formatting-rule-action').change(function (e) {
933
  e.preventDefault();
934
  e.stopImmediatePropagation();
935
+ if (['setCellColor', 'setRowColor', 'setColumnColor'].indexOf(jQuery(this).val()) !== -1) {
936
+ if (!$block.find('div.wdt-color-picker').length) {
937
+ wdtInputToColorpicker($block.find('input.formatting-rule-set-value'));
938
  }
939
+ } else if ($block.find('div.wdt-color-picker').length) {
940
+ wdtColorPickerToInput($block.find('input.formatting-rule-set-value'));
941
  }
942
  }).change();
943
 
947
  /**
948
  * Helper function to show/hide the colorpicker in conditional formatting block
949
  */
950
+ jQuery(document).on('change', 'div.wdt-conditional-formatting-rules-container select.formatting-rule-action', function (e) {
951
  e.preventDefault();
952
+ if (jQuery(this).val() == 'setCellColor' || jQuery(this).val() == 'setRowColor' || jQuery(this).val() == 'setColumnColor') {
953
  jQuery('.wdt-conditional-formatting-rules-container').parent().find('input.formatting-rule-set-value').remove();
954
+ } else {
955
  var val = jQuery(this).parent().find('input.formatting-rule-set-value').val();
956
+ jQuery(this).parent().find('div.wp-picker-container').replaceWith('<input class="setVal" value="' + val + '" />')
957
  }
958
  });
959
 
960
+ WDTColumn.prototype.compileConditionalFormattingRules = function () {
961
  var column = this;
962
  var formattingRules = [];
963
+ jQuery('div.wdt-conditional-formatting-rules-container div.wdt-conditional-formatting-rule').each(function () {
964
+ if ((column.type == 'int') || (column.type == 'float')) {
965
+ var cellVal = parseFloat(jQuery(this).find('input.formatting-rule-cell-value').val());
966
+ } else {
967
+ cellVal = jQuery(this).find('input.formatting-rule-cell-value').val().replace('"', "'");
968
  }
969
  formattingRules.push({
970
  ifClause: jQuery(this).find('select.formatting-rule-if-clause').val(),
971
  cellVal: cellVal,
972
  action: jQuery(this).find('select.formatting-rule-action').val(),
973
+ setVal: jQuery(this).find('input.formatting-rule-set-value').val()
974
  });
975
  });
976
  this.conditional_formatting = formattingRules;
979
  /**
980
  * Fill in the visible inputs with data
981
  */
982
+ WDTColumn.prototype.fillInputs = function () {
983
+ jQuery('span.wdtColumnOrigHeader').html(this.orig_header);
984
+ jQuery('#wdt-column-display-header').val(this.display_header);
985
+ jQuery('#wdt-column-position').val(this.pos);
986
+ jQuery('#wdt-column-display-text-before').val(this.text_before);
987
+ jQuery('#wdt-column-display-text-after').val(this.text_after);
988
 
989
+ if (this.parent_table.responsive) {
990
  jQuery('div.wdt-columns-responsive-block').show();
991
 
992
+
993
+ } else {
994
  jQuery('div.wdt-columns-responsive-block').hide();
995
  }
996
 
997
+ jQuery('#wdt-column-css-class').val(this.css_class).keyup();
998
  wpdatatable_config.server_side == 1 ? jQuery('div.wdt-group-column-block').hide() : jQuery('div.wdt-group-column-block').show();
999
+ jQuery('#wdt-group-column').prop('checked', this.groupColumn);
1000
+ jQuery('#wdt-column-color').val(this.color).keyup();
1001
  jQuery('#wdt-column-color').siblings('.wpcolorpicker-icon').find('i').css("background", this.color);
1002
+ jQuery('#wdt-column-visible').prop('checked', this.visible);
1003
  jQuery('#wdt-column-width').val(this.width);
1004
  jQuery('#wdt-link-target-attribute').prop('checked', this.linkTargetAttribute === '_self' ? 0 : 1);
1005
+ jQuery('#wdt-link-nofollow-attribute').prop('checked', this.linkNofollowAttribute).change();
1006
  jQuery('#wdt-link-button-attribute').prop('checked', this.linkButtonAttribute).change();
1007
  jQuery('#wdt-link-button-label').val(this.linkButtonLabel);
1008
  jQuery('#wdt-link-button-class').val(this.linkButtonClass);
1009
+ jQuery('#wdt-column-enable-global-search').prop('checked', this.globalSearchColumn);
1010
+
1011
+ jQuery('#wdt-column-decimal-places').val('');
1012
+ if (this.type == 'formula') {
1013
+ jQuery('#wdt-column-type option[value="formula"]').prop('disabled', '');
1014
+ jQuery('#wdt-column-type').prop('disabled', 'disabled');
1015
+ if (this.decimalPlaces != -1) {
1016
+ jQuery('#wdt-column-decimal-places').val(this.decimalPlaces);
1017
+ }
1018
+ } else {
1019
+ jQuery('#wdt-column-type option[value="formula"]').prop('disabled', 'disabled');
1020
+ jQuery('#wdt-column-type').prop('disabled', '');
1021
  }
1022
+ jQuery('#wdt-column-type').selectpicker('val', this.type).change();
1023
  if (jQuery.inArray(this.type, ['date', 'datetime']) !== -1) {
1024
  jQuery('#wdt-date-input-format').selectpicker('val', this.dateInputFormat);
1025
  }
1026
 
1027
 
1028
  jQuery('#wdt-column-values').selectpicker('val', this.possibleValuesType).trigger('change-without-notification');
1029
+ jQuery('#wdt-column-values-list').tagsinput('removeAll');
1030
  if (this.possibleValuesType == 'list') {
1031
+ jQuery('#wdt-column-values-list').tagsinput('add', this.valuesList);
1032
  } else if (this.possibleValuesType == 'foreignkey') {
1033
+ jQuery('#wdt-connected-table-name').html(this.foreignKeyRule.tableName);
1034
+ jQuery('#wdt-connected-table-show-column').html(this.foreignKeyRule.displayColumnName);
1035
+ jQuery('#wdt-connected-table-value-column').html(this.foreignKeyRule.storeColumnName);
1036
+ jQuery('div.wdt-foreign-rule-display').show();
1037
  }
1038
+ jQuery('#wdt-column-values-add-empty').prop('checked', this.possibleValuesAddEmpty);
1039
 
1040
+ jQuery('#wdt-column-calc-total').prop('checked', this.calculateTotal);
1041
  jQuery('div.wdt-column-calc-total-block #wdt-column-calc-total-shortcode span')
1042
  .html('[wpdatatable_sum table_id=' + wpdatatable_config.id + ' col_id=' + wpdatatable_config.currentOpenColumn.id + ']');
1043
+ jQuery('#wdt-column-calc-avg').prop('checked', this.calculateAvg);
1044
  jQuery('div.wdt-column-calc-avg-block #wdt-column-calc-avg-shortcode span')
1045
  .html('[wpdatatable_avg table_id=' + wpdatatable_config.id + ' col_id=' + wpdatatable_config.currentOpenColumn.id + ']');
1046
+ jQuery('#wdt-column-calc-min').prop('checked', this.calculateMin);
1047
  jQuery('div.wdt-column-calc-min-block #wdt-column-calc-min-shortcode span')
1048
  .html('[wpdatatable_min table_id=' + wpdatatable_config.id + ' col_id=' + wpdatatable_config.currentOpenColumn.id + ']');
1049
+ jQuery('#wdt-column-calc-max').prop('checked', this.calculateMax);
1050
  jQuery('div.wdt-column-calc-max-block #wdt-column-calc-max-shortcode span')
1051
  .html('[wpdatatable_max table_id=' + wpdatatable_config.id + ' col_id=' + wpdatatable_config.currentOpenColumn.id + ']');
1052
 
1053
  if (jQuery.inArray(this.type, ['int', 'float', 'formula']) !== -1) {
1054
  this.type == 'int' ?
1055
+ jQuery('#wdt-column-skip-thousands').prop('checked', this.skip_thousands_separator)
1056
  : this.decimalPlaces != -1 ?
1057
+ jQuery('#wdt-column-decimal-places').val(this.decimalPlaces) :
1058
+ jQuery('#wdt-column-decimal-places').val('');
1059
  }
1060
 
1061
+ jQuery('#wdt-column-allow-sorting').prop('checked', this.sorting).change();
1062
+ jQuery('#wdt-column-default-sort').prop('checked', this.defaultSortingColumn).change();
1063
+ if (this.defaultSortingColumn) {
1064
  jQuery('#wdt-column-default-sorting-direction')
1065
+ .selectpicker('val', this.defaultSortingColumn);
1066
  }
1067
+ let filteringOptionEnabled = this.parent_table.filtering;
1068
+ let globalOptionEnabled = this.parent_table.global_search;
1069
+ if (!(filteringOptionEnabled || globalOptionEnabled) || this.type == 'formula') {
1070
  jQuery('li.column-filtering-settings-tab').hide();
1071
+ } else {
1072
+ if(!globalOptionEnabled){
1073
+ jQuery('.wdt-global-search-block').addClass('hidden');
1074
+ } else {
1075
+ jQuery('.wdt-global-search-block ').removeClass('hidden');
1076
+ }
1077
+ jQuery('#wdt-column-enable-global-search').prop('checked', this.globalSearchColumn).change();
1078
  jQuery('li.column-filtering-settings-tab').removeClass('active').show();
1079
+ jQuery('#wdt-column-filter-label').val(this.filterLabel);
1080
 
 
1081
 
1082
+ if (this.filter_type != 'none') {
 
1083
 
1084
+
1085
+ if (this.filterDefaultValue) {
1086
  if (jQuery.inArray(this.filter_type, ['text', 'number']) != -1) {
1087
  jQuery('#wdt-filter-default-value').val(this.filterDefaultValue);
1088
  } else if (jQuery.inArray(this.filter_type, ['number-range', 'date-range', 'datetime-range', 'time-range']) != -1) {
1100
  jQuery('#wdt-filter-default-value-selectpicker').selectpicker('val', '');
1101
  }
1102
  } else {
1103
+
1104
  }
1105
  }
1106
 
1107
  if ((this.parent_table.editable || this.parent_table.table_type == 'manual') && this.type != 'formula') {
1108
  jQuery('li.column-editing-settings-tab').show();
1109
+ jQuery('#wdt-column-editor-input-type').selectpicker('val', this.editor_type).change();
1110
+ jQuery('#wdt-column-not-null').prop('checked', this.editingNonEmpty);
1111
  if (this.editingDefaultValue) {
1112
  if (jQuery.inArray(this.editor_type, ['selectbox', 'multi-selectbox']) != -1) {
1113
  this.editingDefaultValue = this.editor_type == 'multi-selectbox' ? this.editingDefaultValue.split('|') : this.editingDefaultValue;
1114
  jQuery('#wdt-editing-default-value-selectpicker').selectpicker('val', this.editingDefaultValue);
1115
  } else {
1116
+ jQuery('#wdt-editing-default-value').val(this.editingDefaultValue);
1117
  }
1118
  } else {
1119
+ jQuery('#wdt-editing-default-value').val('');
1120
  }
1121
+ this.id_column == 1 ? jQuery('.wdt-skip-thousands-separator-block').hide() : '';
1122
  } else {
1123
  jQuery('li.column-editing-settings-tab').hide();
1124
  }
1125
+ jQuery('div.wdt-conditional-formatting-rules-container').html('');
1126
+ if (this.conditional_formatting) {
1127
+ for (var i in this.conditional_formatting) {
1128
+ this.renderConditionalFormattingBlock(this.conditional_formatting[i]);
1129
  }
1130
  }
1131
 
1135
  * Open the column settings block on the right, setting all
1136
  * the UI controls to match the object config
1137
  */
1138
+ WDTColumn.prototype.show = function () {
1139
  jQuery('div.column-settings-panel').fadeInRight();
1140
  jQuery('div.column-settings-overlay').animateFadeIn();
1141
  wpdatatable_config.currentOpenColumn = this;
1151
  jQuery('.column-sorting-settings-tab').hide() :
1152
  jQuery('.column-sorting-settings-tab').show();
1153
 
1154
+ wpdatatable_config.global_search == 0 ?
1155
+ jQuery('.column-filtering-settings-tab').hide() :
1156
+ jQuery('.column-filtering-settings-tab').show();
1157
+
1158
+ jQuery(document).on('keyup.hideCSEsc', function (e) {
1159
+ if (e.which == 27) {
1160
  e.preventDefault();
1161
  e.stopImmediatePropagation();
1162
+ if (jQuery('.wdt-datatables-admin-wrap div.modal').is(':visible')) {
1163
  jQuery('.wdt-datatables-admin-wrap div.modal').modal('hide');
1164
+ } else {
1165
  wpdatatable_config.currentOpenColumn.hide();
1166
  }
1167
  }
1173
  /**
1174
  * Hide the column settings block
1175
  */
1176
+ WDTColumn.prototype.hide = function () {
1177
  jQuery('div.column-settings-panel').fadeOutRight();
1178
  jQuery('div.column-settings-overlay').animateFadeOut();
1179
  jQuery(document).off('keyup.hideCSEsc');
1184
  /**
1185
  * Apply changes from UI to the object
1186
  */
1187
+ WDTColumn.prototype.applyChanges = function () {
1188
+ if (!this.is_config_open) {
1189
+ return;
1190
+ }
1191
+ this.type = jQuery('#wdt-column-type').val();
1192
+ this.display_header = jQuery('#wdt-column-display-header').val();
1193
 
1194
  // Reorder columns if columns position is changed
1195
+ var oldPos = this.pos;
1196
  this.pos = jQuery('#wdt-column-position').val() > wpdatatable_config.columns.length - 1 ?
1197
  wpdatatable_config.columns.length - 1 : parseInt(jQuery('#wdt-column-position').val());
1198
+ if (this.pos < 0) {
1199
+ this.pos = 0
1200
+ }
1201
+ if (oldPos != this.pos) {
1202
+ if (oldPos < this.pos) {
1203
  for (var i = 0; i < wpdatatable_config.columns.length; i++) {
1204
  if (i > oldPos && i <= this.pos) {
1205
+ --wpdatatable_config.columns[i].pos;
1206
  }
1207
  }
1208
  } else {
1209
  for (i in wpdatatable_config.columns) {
1210
  if (i >= this.pos && i < oldPos) {
1211
+ ++wpdatatable_config.columns[i].pos;
1212
  }
1213
  }
1214
  }
1215
  }
1216
 
1217
+ this.text_before = jQuery('#wdt-column-display-text-before').val();
1218
+ this.text_after = jQuery('#wdt-column-display-text-after').val();
1219
+ this.hide_on_mobiles = jQuery('#wdt-hide-column-on-mobiles').is(':checked') ? 1 : 0;
1220
+ this.hide_on_tablets = jQuery('#wdt-hide-column-on-tablets').is(':checked') ? 1 : 0;
1221
+ this.css_class = jQuery('#wdt-column-css-class').val();
1222
  this.linkTargetAttribute = jQuery('#wdt-link-target-attribute').is(':checked') ? '_blank' : '_self';
1223
+ this.linkNofollowAttribute = jQuery('#wdt-link-nofollow-attribute').is(':checked') ? 1 : 0;
1224
  this.linkButtonAttribute = jQuery('#wdt-link-button-attribute').is(':checked') ? 1 : 0;
1225
  this.linkButtonLabel = jQuery('#wdt-link-button-label').val();
1226
  this.linkButtonClass = jQuery('#wdt-link-button-class').val();
1227
 
1228
  // If group is checked ungroup all other columns
1229
+ if (jQuery('#wdt-group-column').is(':checked')) {
1230
  for (i in wpdatatable_config.columns) {
1231
  wpdatatable_config.columns[i].groupColumn =
1232
  wpdatatable_config.columns[i].orig_header != this.orig_header ? 0 : 1;
1235
  this.groupColumn = 0;
1236
  }
1237
 
1238
+ this.color = jQuery('#wdt-column-color').val();
1239
+ this.visible = jQuery('#wdt-column-visible').is(':checked') ? 1 : 0;
1240
+ this.width = jQuery('#wdt-column-width').val();
1241
+ this.decimalPlaces = ((this.type == 'float' || this.type == 'formula') && jQuery('#wdt-column-decimal-places').val() != '') ?
1242
  jQuery('#wdt-column-decimal-places').val() : -1;
1243
  if (jQuery.inArray(this.type, ['date', 'datetime']) !== -1) {
1244
  this.dateInputFormat = jQuery('#wdt-date-input-format').selectpicker('val');
1245
  }
1246
+ this.possibleValuesType = jQuery('#wdt-column-values').val();
1247
+ if (this.possibleValuesType == 'list') {
1248
  this.valuesList = jQuery('#wdt-column-values-list').val().replace(/,/g, '|');
1249
  }
1250
+ this.possibleValuesAddEmpty = jQuery('#wdt-column-values-add-empty').is(':checked') ? 1 : 0;
1251
+ this.calculateTotal = (jQuery('#wdt-column-calc-total').is(':checked') && (this.type == 'int' || this.type == 'float' || this.type == 'formula')) ? 1 : 0;
1252
+ this.calculateAvg = (jQuery('#wdt-column-calc-avg').is(':checked') && (this.type == 'int' || this.type == 'float' || this.type == 'formula')) ? 1 : 0;
1253
+ this.calculateMax = (jQuery('#wdt-column-calc-max').is(':checked') && (this.type == 'int' || this.type == 'float' || this.type == 'formula')) ? 1 : 0;
1254
+ this.calculateMin = (jQuery('#wdt-column-calc-min').is(':checked') && (this.type == 'int' || this.type == 'float' || this.type == 'formula')) ? 1 : 0;
1255
+ this.skip_thousands_separator = jQuery('#wdt-column-skip-thousands').is(':checked') ? 1 : 0;
1256
+ this.sorting = jQuery('#wdt-column-allow-sorting').is(':checked') ? 1 : 0;
1257
+ this.defaultSortingColumn = jQuery('#wdt-column-default-sort').is(':checked') ? 1 : 0;
1258
 
1259
  // If default sort column is checked remove default sort column for all other columns
1260
+ if (jQuery('#wdt-column-default-sort').is(':checked')) {
1261
  for (i in wpdatatable_config.columns) {
1262
  wpdatatable_config.columns[i].defaultSortingColumn =
1263
  wpdatatable_config.columns[i].orig_header != this.orig_header ? 0 : 1;
1267
  this.defaultSortingColumn = 0;
1268
  }
1269
 
1270
+ this.filter_type = jQuery('#wdt-column-enable-filter').is(':checked') ?
1271
  jQuery('#wdt-column-filter-type').val() :
1272
  'none';
1273
+ this.exactFiltering = jQuery('#wdt-column-exact-filtering').is(':checked') ? 1 : 0;
1274
+ this.filterLabel = jQuery('#wdt-column-filter-label').val();
1275
+ this.globalSearchColumn = jQuery('#wdt-column-enable-global-search').is(':checked') ? 1 : 0;
1276
+
1277
+ if (jQuery.inArray(this.filter_type, ['text', 'number']) != -1) {
1278
+ this.filterDefaultValue = jQuery('#wdt-filter-default-value').val();
1279
+ } else if (jQuery.inArray(this.filter_type, ['number-range', 'date-range', 'datetime-range', 'time-range']) != -1) {
1280
+ this.filterDefaultValue = jQuery('#wdt-filter-default-value-from').val() + '|' + jQuery('#wdt-filter-default-value-to').val();
1281
  } else {
1282
+ this.filterDefaultValue = jQuery.isArray(jQuery('#wdt-filter-default-value-selectpicker').selectpicker('val')) ?
1283
  jQuery('#wdt-filter-default-value-selectpicker').selectpicker('val').join('|') :
1284
  jQuery('#wdt-filter-default-value-selectpicker').selectpicker('val');
1285
  }
1286
 
1287
+ this.editor_type = jQuery('#wdt-column-editor-input-type').val();
1288
+ this.editingNonEmpty = jQuery('#wdt-column-not-null').is(':checked') ? 1 : 0;
1289
 
1290
+ if (jQuery.inArray(this.editor_type, ['selectbox', 'multi-selectbox']) != -1) {
1291
+ this.editingDefaultValue = jQuery.isArray(jQuery('#wdt-editing-default-value-selectpicker').selectpicker('val')) ?
1292
  jQuery('#wdt-editing-default-value-selectpicker').selectpicker('val').join('|') :
1293
  jQuery('#wdt-editing-default-value-selectpicker').selectpicker('val');
1294
  } else {
1295
+ this.editingDefaultValue = jQuery('#wdt-editing-default-value').val();
1296
  }
1297
  this.compileConditionalFormattingRules();
1298
 
1303
  * Return all settings in an object format
1304
  * @return {} column config
1305
  */
1306
+ WDTColumn.prototype.getJSON = function () {
1307
  return {
1308
+ calculateAvg: this.calculateAvg,
1309
+ calculateMax: this.calculateMax,
1310
+ calculateMin: this.calculateMin,
1311
+ calculateTotal: this.calculateTotal,
1312
+ color: this.color,
1313
+ conditional_formatting: this.conditional_formatting,
1314
+ css_class: this.css_class,
1315
+ dateInputFormat: this.dateInputFormat,
1316
+ decimalPlaces: this.decimalPlaces,
1317
+ defaultSortingColumn: this.defaultSortingColumn,
1318
+ defaultValueValues: this.defaultValueValues,
1319
+ display_header: this.display_header,
1320
+ editingDefaultValue: this.editingDefaultValue,
1321
+ editingNonEmpty: this.editingNonEmpty,
1322
+ editor_type: this.editor_type,
1323
+ exactFiltering: this.exactFiltering,
1324
+ filter_type: this.filter_type,
1325
+ filterDefaultValue: this.filterDefaultValue,
1326
+ filtering: this.filtering,
1327
+ globalSearchColumn: this.globalSearchColumn,
1328
+ filterLabel: this.filterLabel,
1329
+ foreignKeyRule: this.foreignKeyRule,
1330
+ formula: this.formula,
1331
+ groupColumn: this.groupColumn,
1332
+ hide_on_mobiles: this.hide_on_mobiles,
1333
+ hide_on_tablets: this.hide_on_tablets,
1334
+ id: this.id,
1335
+ id_column: this.id_column,
1336
+ linkTargetAttribute: this.linkTargetAttribute,
1337
+ linkNofollowAttribute: this.linkNofollowAttribute,
1338
+ linkButtonAttribute: this.linkButtonAttribute,
1339
+ linkButtonLabel: this.linkButtonLabel,
1340
+ linkButtonClass: this.linkButtonClass,
1341
+ orig_header: this.orig_header,
1342
+ pos: this.pos,
1343
+ possibleValuesAddEmpty: this.possibleValuesAddEmpty,
1344
+ possibleValuesType: this.possibleValuesType,
1345
+ skip_thousands_separator: this.skip_thousands_separator,
1346
+ sorting: this.sorting,
1347
+ text_after: this.text_after,
1348
+ text_before: this.text_before,
1349
+ type: this.type,
1350
+ valuesList: this.valuesList,
1351
+ visible: this.visible,
1352
+ width: this.width
1353
  }
1354
  };
1355
 
1356
  /**
1357
  * Renders a small block for this column in the list (in the columns quickaccess modal, and in the formula editor)
1358
  */
1359
+ WDTColumn.prototype.renderSmallColumnBlock = function (columnIndex) {
1360
  var columnHtml = jQuery('#wdt-column-small-block').html();
1361
 
1362
  // Adding to the columns quickaccess modal
1363
+ var $columnBlock = jQuery(columnHtml).appendTo('#wdt-columns-list-modal div.wdt-columns-container');
1364
  this.display_header != null ?
1365
+ $columnBlock.find('div.fg-line input').val(this.display_header) :
1366
+ $columnBlock.find('div.fg-line input').val(this.orig_header);
1367
+ $columnBlock.attr('data-orig_header', this.orig_header);
1368
  var column = this;
1369
  $columnBlock.find('i.toggle-visibility').click(function (e) {
1370
  e.preventDefault();
1436
  .addClass('inactive')
1437
  }
1438
 
1439
+ /**
1440
+ * Enable/disable global search for a column
1441
+ */
1442
+ $columnBlock.find('i.wdt-toggle-global-search').click(function (e) {
1443
+ e.preventDefault();
1444
+ if(column.globalSearchColumn) {
1445
+ column.globalSearchColumn = 0;
1446
+ jQuery(this)
1447
+ .addClass('inactive');
1448
+ } else {
1449
+ column.globalSearchColumn = 1;
1450
+ jQuery(this)
1451
+ .removeClass('inactive');
1452
+ }
1453
+ });
1454
+
1455
+ if(!column.globalSearchColumn) {
1456
+ $columnBlock.find('i.wdt-toggle-global-search')
1457
+ .addClass('inactive');
1458
+ }
1459
+
1460
  /**
1461
  * Open column settings on wrench click
1462
  */
1467
  });
1468
 
1469
  // Adding to the formula editor
1470
+ if (this.type == 'int' || this.type == 'float') {
1471
+ $columnBlock = jQuery(columnHtml).appendTo('#wdt-formula-editor-modal div.formula-columns-container');
1472
+ $columnBlock.find('div.fg-line input').replaceWith('<span>' + this.display_header + '</span>');
1473
+ $columnBlock.attr('data-orig_header', this.orig_header);
1474
+ $columnBlock.find('i.column-control').remove();
1475
  }
1476
 
1477
  };
1479
  /**
1480
  * Populate Column For Editing And User Selectpicker
1481
  */
1482
+ WDTColumn.prototype.populateColumnForEditing = function () {
1483
+ var $selecter = jQuery('#editing-settings #wdt-id-editing-column');
1484
 
1485
+ jQuery('<option value="' + this.id + '">' + this.orig_header + '</option>')
1486
+ .appendTo($selecter);
1487
 
1488
  if (this.id_column) {
1489
+ $selecter.selectpicker('val', this.id);
1490
  wpdatatable_config.id_editing_column = true;
1491
  }
1492
  };
1494
  /**
1495
  * Populate User ID Column Selectpicker
1496
  */
1497
+ WDTColumn.prototype.populateUserIdColumn = function () {
1498
+ var $selecter = jQuery('#editing-settings #wdt-user-id-column');
1499
 
1500
+ jQuery('<option value="' + this.id + '">' + this.orig_header + '</option>').appendTo($selecter);
1501
  };
1502
 
1503
+ WDTColumn.prototype.getPremiumPopover = function (e) {
1504
  e.preventDefault();
1505
+ jQuery('[data-toggle="html-input-premium-popover"]').popover('destroy').popover({
1506
+ html: true,
1507
+ template: '<div class="popover wdt-premium-popover" role="tooltip">' +
1508
+ '<div class="arrow"></div>' +
1509
+ '<h3 class="popover-header">' +
1510
+ '<i class="wpdt-icon-star-full m-r-5" style="color: #FFC078;"></i>' +
1511
+ wdtWpDataTablesPopoverStrings.title +
1512
+ '<button type="button" class="closePopover">' +
1513
+ '<span aria-hidden="true"><i class="wpdt-icon-times-full"></i></span></button></h3>' +
1514
+ '<div class="popover-body"><span>' + wdtWpDataTablesPopoverStrings.description + '</span> ' +
1515
+ '<div class="popover-footer"><a id="wdt-premium-compare-link">' + wdtWpDataTablesPopoverStrings.compare_link + '</a></div></div' +
1516
+ '</div>',
1517
+ content: function () {
1518
+ var content = jQuery(this).attr("data-popover-content");
1519
+ return jQuery(content).children(".popover-body").html();
1520
+ },
1521
+ title: function () {
1522
+ var title = jQuery(this).attr("data-popover-content");
1523
+ return jQuery(title).children(".popover-heading").html();
1524
+ }
1525
+ }).on('shown.bs.popover', function () {
1526
+ var $popup = jQuery(this);
1527
+ jQuery(this).next('.popover').find('button.closePopover').click(function (e) {
1528
+ $popup.popover('hide');
1529
+ });
1530
+ jQuery('#wdt-premium-compare-link').click(function () {
1531
+ jQuery(location).attr('href', wdtWpDataTablesPage.liteVSPremiumUrl);
1532
+ });
1533
+ })
1534
  };
assets/js/wpdatatables/admin/table-settings/main.js CHANGED
@@ -502,6 +502,7 @@
502
  $('div.wdt-float-column-block').show();
503
  $('div.wdt-date-input-format-block').hide();
504
  $('div.wdt-link-target-attribute-block').hide();
 
505
  $('div.wdt-link-button-attribute-block').hide();
506
  $('div.wdt-link-button-label-block').hide();
507
  $('div.wdt-link-button-class-block').hide();
@@ -518,6 +519,7 @@
518
  $('div.wdt-float-column-block').hide();
519
  $('div.wdt-skip-thousands-separator-block').show();
520
  }
 
521
  $('div.wdt-link-target-attribute-block').hide();
522
  $('div.wdt-link-button-attribute-block').hide();
523
  $('div.wdt-link-button-label-block').hide();
@@ -529,6 +531,7 @@
529
  $('div.wdt-formula-column-block').hide();
530
  $('div.wdt-date-input-format-block').hide();
531
  $('div.wdt-link-target-attribute-block').hide();
 
532
  $('div.wdt-link-button-attribute-block').hide();
533
  $('div.wdt-link-button-label-block').hide();
534
  $('div.wdt-link-button-class-block').hide();
@@ -540,6 +543,7 @@
540
  $('div.wdt-numeric-column-block').hide();
541
  $('div.wdt-formula-column-block').hide();
542
  $('div.wdt-link-target-attribute-block').hide();
 
543
  $('div.wdt-link-button-attribute-block').hide();
544
  $('div.wdt-link-button-label-block').hide();
545
  $('div.wdt-link-button-class-block').hide();
@@ -550,6 +554,7 @@
550
  $('div.wdt-formula-column-block').hide();
551
  $('div.wdt-date-input-format-block').hide();
552
  $('div.wdt-link-target-attribute-block').show();
 
553
  if ($('#wdt-link-button-attribute').is(':checked')) {
554
  $('div.wdt-link-button-label-block').show();
555
  $('div.wdt-link-button-class-block').show();
@@ -562,6 +567,7 @@
562
  $('div.wdt-formula-column-block').hide();
563
  $('div.wdt-date-input-format-block').hide();
564
  $('div.wdt-link-target-attribute-block').hide();
 
565
  $('div.wdt-link-button-attribute-block').hide();
566
  $('div.wdt-link-button-label-block').hide();
567
  $('div.wdt-link-button-class-block').hide();
@@ -762,18 +768,7 @@
762
  });
763
  });
764
 
765
- /**
766
- * Show/hide the filter selection block on 'enable filtering' switch toggle
767
- */
768
- $('#wdt-column-enable-filter').change(function(e){
769
- if( $(this).is(':checked') ){
770
- $('div.wdt-filtering-enabled-block').show();
771
 
772
-
773
- }else{
774
- $('div.wdt-filtering-enabled-block').hide();
775
- }
776
- });
777
 
778
  /**
779
  * Show/hide button label in Url link column
@@ -878,12 +873,18 @@
878
  });
879
  });
880
 
 
 
 
 
 
 
 
881
  /**
882
  * Fill possible values list on "Read From Table" button
883
  */
884
  $('button#wdt-column-values-read-from-table').click( function(e) {
885
  e.preventDefault();
886
-
887
  if ( wpdatatable_config.table_type == 'mysql' || wpdatatable_config.table_type == 'manual' ) {
888
  var data = {};
889
  data.action = 'wpdatatable_get_column_distinct_values';
502
  $('div.wdt-float-column-block').show();
503
  $('div.wdt-date-input-format-block').hide();
504
  $('div.wdt-link-target-attribute-block').hide();
505
+ $('div.wdt-link-nofollow-attribute-block').hide();
506
  $('div.wdt-link-button-attribute-block').hide();
507
  $('div.wdt-link-button-label-block').hide();
508
  $('div.wdt-link-button-class-block').hide();
519
  $('div.wdt-float-column-block').hide();
520
  $('div.wdt-skip-thousands-separator-block').show();
521
  }
522
+ $('div.wdt-link-nofollow-attribute-block').hide();
523
  $('div.wdt-link-target-attribute-block').hide();
524
  $('div.wdt-link-button-attribute-block').hide();
525
  $('div.wdt-link-button-label-block').hide();
531
  $('div.wdt-formula-column-block').hide();
532
  $('div.wdt-date-input-format-block').hide();
533
  $('div.wdt-link-target-attribute-block').hide();
534
+ $('div.wdt-link-nofollow-attribute-block').hide();
535
  $('div.wdt-link-button-attribute-block').hide();
536
  $('div.wdt-link-button-label-block').hide();
537
  $('div.wdt-link-button-class-block').hide();
543
  $('div.wdt-numeric-column-block').hide();
544
  $('div.wdt-formula-column-block').hide();
545
  $('div.wdt-link-target-attribute-block').hide();
546
+ $('div.wdt-link-nofollow-attribute-block').hide();
547
  $('div.wdt-link-button-attribute-block').hide();
548
  $('div.wdt-link-button-label-block').hide();
549
  $('div.wdt-link-button-class-block').hide();
554
  $('div.wdt-formula-column-block').hide();
555
  $('div.wdt-date-input-format-block').hide();
556
  $('div.wdt-link-target-attribute-block').show();
557
+ $('div.wdt-link-nofollow-attribute-block').show();
558
  if ($('#wdt-link-button-attribute').is(':checked')) {
559
  $('div.wdt-link-button-label-block').show();
560
  $('div.wdt-link-button-class-block').show();
567
  $('div.wdt-formula-column-block').hide();
568
  $('div.wdt-date-input-format-block').hide();
569
  $('div.wdt-link-target-attribute-block').hide();
570
+ $('div.wdt-link-nofollow-attribute-block').hide();
571
  $('div.wdt-link-button-attribute-block').hide();
572
  $('div.wdt-link-button-label-block').hide();
573
  $('div.wdt-link-button-class-block').hide();
768
  });
769
  });
770
 
 
 
 
 
 
 
771
 
 
 
 
 
 
772
 
773
  /**
774
  * Show/hide button label in Url link column
873
  });
874
  });
875
 
876
+ /**
877
+ * Switch tabs in table settings
878
+ */
879
+ $('.wdt-datatables-admin-wrap .wdt-table-settings .tab-nav a, .wdt-datatables-admin-wrap .column-settings-panel .tab-nav li:not(.column-conditional-formatting-settings-tab) a').click(function (e) {
880
+ $(this).tab('show');
881
+ });
882
+
883
  /**
884
  * Fill possible values list on "Read From Table" button
885
  */
886
  $('button#wdt-column-values-read-from-table').click( function(e) {
887
  e.preventDefault();
 
888
  if ( wpdatatable_config.table_type == 'mysql' || wpdatatable_config.table_type == 'manual' ) {
889
  var data = {};
890
  data.action = 'wpdatatable_get_column_distinct_values';
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.6');
13
 
14
  /**
15
  * Regular Expressions
9
 
10
  // Current version
11
 
12
+ define('WDT_CURRENT_VERSION', '2.1.7');
13
 
14
  /**
15
  * Regular Expressions
controllers/wdt_functions.php CHANGED
@@ -220,6 +220,9 @@ function wdtActivationCreateTables() {
220
  if (get_option('wdtRatingDiv') === false) {
221
  update_option('wdtRatingDiv', 'no' );
222
  }
 
 
 
223
  if (get_option('wdtTempFutureDate') === false) {
224
  update_option('wdtTempFutureDate', date( 'Y-m-d'));
225
  }
@@ -261,6 +264,17 @@ function wdtHideRating() {
261
 
262
  add_action( 'wp_ajax_wdtHideRating', 'wdtHideRating' );
263
 
 
 
 
 
 
 
 
 
 
 
 
264
  /**
265
  * Temperary hide rating message for 7 days
266
  */
@@ -323,6 +337,7 @@ function wdtUninstallDelete() {
323
  delete_option('wdtAvgFunctionsLabel');
324
  delete_option('wdtInstallDate');
325
  delete_option('wdtRatingDiv');
 
326
  delete_option('wdtTempFutureDate');
327
  delete_option('wdtVersion');
328
  delete_option('wdtBorderRemoval');
220
  if (get_option('wdtRatingDiv') === false) {
221
  update_option('wdtRatingDiv', 'no' );
222
  }
223
+ if (get_option('wdtSimpleTableAlert') === false) {
224
+ update_option('wdtSimpleTableAlert', true );
225
+ }
226
  if (get_option('wdtTempFutureDate') === false) {
227
  update_option('wdtTempFutureDate', date( 'Y-m-d'));
228
  }
264
 
265
  add_action( 'wp_ajax_wdtHideRating', 'wdtHideRating' );
266
 
267
+ /**
268
+ * Remove Simple Table alert message
269
+ */
270
+ function wdtHideSimpleTableAlert() {
271
+ update_option( 'wdtSimpleTableAlert', false );
272
+ echo json_encode( array("success") );
273
+ exit;
274
+ }
275
+
276
+ add_action( 'wp_ajax_wdtHideSimpleTableAlert', 'wdtHideSimpleTableAlert' );
277
+
278
  /**
279
  * Temperary hide rating message for 7 days
280
  */
337
  delete_option('wdtAvgFunctionsLabel');
338
  delete_option('wdtInstallDate');
339
  delete_option('wdtRatingDiv');
340
+ delete_option('wdtSimpleTableAlert');
341
  delete_option('wdtTempFutureDate');
342
  delete_option('wdtVersion');
343
  delete_option('wdtBorderRemoval');
languages/en_US/wpdatatables.mo CHANGED
Binary file
languages/en_US/wpdatatables.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2020-12-25 17:31+0100\n"
5
- "PO-Revision-Date: 2020-12-25 17:31+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
@@ -120,88 +120,88 @@ msgstr ""
120
  msgid "You do not have sufficient permissions to access this page."
121
  msgstr ""
122
 
123
- #: controllers/wdt_functions.php:471
124
  msgid "wpDataChart with provided ID not found!"
125
  msgstr ""
126
 
127
- #: controllers/wdt_functions.php:507 controllers/wdt_functions.php:588
128
  msgid "wpDataTable with provided ID not found!"
129
  msgstr ""
130
 
131
- #: controllers/wdt_functions.php:598
132
  msgid "Provided column is not Integer or Float column type"
133
  msgstr ""
134
 
135
- #: controllers/wdt_functions.php:815
136
  msgid "Choose a table"
137
  msgstr ""
138
 
139
- #: controllers/wdt_functions.php:847
140
  msgid "Interactive Responsive Table"
141
  msgstr ""
142
 
143
- #: controllers/wdt_functions.php:848 controllers/wdt_functions.php:909
144
  msgid "Content"
145
  msgstr ""
146
 
147
- #: controllers/wdt_functions.php:854
148
  msgid "wpDataTable"
149
  msgstr ""
150
 
151
- #: controllers/wdt_functions.php:858
152
  msgid "Choose the wpDataTable from a dropdown"
153
  msgstr ""
154
 
155
- #: controllers/wdt_functions.php:863
156
  msgid "Table view"
157
  msgstr ""
158
 
159
- #: controllers/wdt_functions.php:867
160
  msgid "Regular wpDataTable"
161
  msgstr ""
162
 
163
- #: controllers/wdt_functions.php:869
164
  msgid "Excel-like table"
165
  msgstr ""
166
 
167
- #: controllers/wdt_functions.php:875
168
  msgid "Variable placeholder #1"
169
  msgstr ""
170
 
171
- #: controllers/wdt_functions.php:878 controllers/wdt_functions.php:886
172
- #: controllers/wdt_functions.php:894
173
  msgid "Variables"
174
  msgstr ""
175
 
176
- #: controllers/wdt_functions.php:879
177
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
178
  msgstr ""
179
 
180
- #: controllers/wdt_functions.php:883
181
  msgid "Variable placeholder #2"
182
  msgstr ""
183
 
184
- #: controllers/wdt_functions.php:887
185
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
186
  msgstr ""
187
 
188
- #: controllers/wdt_functions.php:891
189
  msgid "Variable placeholder #3"
190
  msgstr ""
191
 
192
- #: controllers/wdt_functions.php:895
193
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
194
  msgstr ""
195
 
196
- #: controllers/wdt_functions.php:908
197
  msgid "Google or Highcharts chart based on a wpDataTable"
198
  msgstr ""
199
 
200
- #: controllers/wdt_functions.php:915
201
  msgid "wpDataChart"
202
  msgstr ""
203
 
204
- #: controllers/wdt_functions.php:919
205
  msgid "Choose one of wpDataCharts from the list"
206
  msgstr ""
207
 
@@ -330,14 +330,14 @@ msgstr ""
330
  msgid "Manual"
331
  msgstr ""
332
 
333
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2204
334
- #: source/class.wpdatatable.php:2274
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:2213
340
- #: source/class.wpdatatable.php:2284
341
  #: templates/admin/table-settings/table_settings_block.inc.php:1032
342
  msgid "CSV"
343
  msgstr ""
@@ -376,7 +376,7 @@ msgstr ""
376
  msgid "There was an error trying to fetch the table data: "
377
  msgstr ""
378
 
379
- #: source/class.wdtconfigcontroller.php:477
380
  msgid "Table in data source has no rows."
381
  msgstr ""
382
 
@@ -408,18 +408,18 @@ msgstr ""
408
 
409
  #: source/class.wdttools.php:23
410
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
411
- #: templates/admin/table-settings/column_settings_panel.inc.php:968
412
  msgid "Date"
413
  msgstr ""
414
 
415
  #: source/class.wdttools.php:24
416
- #: templates/admin/table-settings/column_settings_panel.inc.php:969
417
  msgid "Datetime"
418
  msgstr ""
419
 
420
  #: source/class.wdttools.php:25
421
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
422
- #: templates/admin/table-settings/column_settings_panel.inc.php:970
423
  msgid "Time"
424
  msgstr ""
425
 
@@ -437,7 +437,7 @@ msgid "Image"
437
  msgstr ""
438
 
439
  #: source/class.wdttools.php:29
440
- #: templates/admin/table-settings/column_settings_panel.inc.php:973
441
  msgid "Attachment"
442
  msgstr ""
443
 
@@ -461,14 +461,14 @@ msgstr ""
461
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
462
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
463
  #: templates/admin/common/HTMLModal.inc.php:43
464
- #: templates/admin/common/linkModal.inc.php:106
465
  #: templates/admin/common/shortcodeModal.inc.php:48
466
  #: templates/admin/common/starModal.inc.php:73
467
  #: templates/admin/constructor/constructor.inc.php:29
468
  #: templates/admin/settings/settings.inc.php:28
469
  #: templates/admin/table-settings/add_column_modal.inc.php:126
470
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
471
- #: templates/admin/table-settings/column_settings_panel.inc.php:1079
472
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
473
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
474
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
@@ -519,8 +519,8 @@ msgstr ""
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:2222
523
- #: source/class.wpdatatable.php:2294
524
  #: templates/admin/table-settings/table_settings_block.inc.php:1033
525
  msgid "Copy"
526
  msgstr ""
@@ -1225,13 +1225,13 @@ msgstr ""
1225
  msgid "You are mixing data types (several date axes and several number)"
1226
  msgstr ""
1227
 
1228
- #: source/class.wpdatatable.php:1883
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:2122 source/class.wpdatatable.php:2125
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
@@ -1239,30 +1239,30 @@ msgstr ""
1239
  msgid "All"
1240
  msgstr ""
1241
 
1242
- #: source/class.wpdatatable.php:2183 source/class.wpdatatable.php:2252
1243
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1244
  msgid "Columns"
1245
  msgstr ""
1246
 
1247
- #: source/class.wpdatatable.php:2193 source/class.wpdatatable.php:2262
1248
  #: templates/admin/table-settings/table_settings_block.inc.php:1030
1249
  msgid "Print"
1250
  msgstr ""
1251
 
1252
- #: source/class.wpdatatable.php:2232 source/class.wpdatatable.php:2305
1253
  #: templates/admin/table-settings/table_settings_block.inc.php:1034
1254
  msgid "PDF"
1255
  msgstr ""
1256
 
1257
- #: source/class.wpdatatable.php:2240
1258
  msgid "Export"
1259
  msgstr ""
1260
 
1261
- #: source/class.wpdatatable.php:2318
1262
  msgid "Search table"
1263
  msgstr ""
1264
 
1265
- #: source/class.wpdatatable.php:2319
1266
  msgid "Showing _MENU_ Entries"
1267
  msgstr ""
1268
 
@@ -1281,7 +1281,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:496
1285
  msgid "wpDataTables Addons"
1286
  msgstr ""
1287
 
@@ -1295,12 +1295,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:567
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:571
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 +1326,7 @@ msgid "NEW"
1326
  msgstr ""
1327
 
1328
  #: templates/admin/addons/addons.inc.php:40
1329
- #: templates/admin/dashboard/dashboard.inc.php:514
1330
  msgid "Master Detail Tables for wpDataTables"
1331
  msgstr ""
1332
 
@@ -1347,7 +1347,7 @@ msgid "Learn more"
1347
  msgstr ""
1348
 
1349
  #: templates/admin/addons/addons.inc.php:67
1350
- #: templates/admin/dashboard/dashboard.inc.php:541
1351
  msgid "Powerful Filters for wpDataTables"
1352
  msgstr ""
1353
 
@@ -1359,24 +1359,24 @@ msgid ""
1359
  msgstr ""
1360
 
1361
  #: templates/admin/addons/addons.inc.php:120
1362
- #: templates/admin/dashboard/dashboard.inc.php:594
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:598
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:620
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:624
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."
@@ -2217,15 +2217,20 @@ msgid "Open link in the new tab"
2217
  msgstr ""
2218
 
2219
  #: templates/admin/common/linkModal.inc.php:76
 
 
 
 
 
2220
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2221
  msgid "Set the link to appear as a button"
2222
  msgstr ""
2223
 
2224
- #: templates/admin/common/linkModal.inc.php:85
2225
  msgid "Button class:"
2226
  msgstr ""
2227
 
2228
- #: templates/admin/common/linkModal.inc.php:110
2229
  msgid "Insert link"
2230
  msgstr ""
2231
 
@@ -2342,8 +2347,8 @@ msgstr ""
2342
  #: templates/admin/settings/settings.inc.php:96
2343
  #: templates/admin/support/support.inc.php:31
2344
  #: templates/admin/support/support.inc.php:47
2345
- #: templates/admin/system-info/system_info.inc.php:30
2346
- #: templates/admin/table-settings/column_settings_panel.inc.php:1074
2347
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2348
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2349
  #: templates/admin/table-settings/table_settings_block.inc.php:1197
@@ -2368,6 +2373,7 @@ msgid ""
2368
  msgstr ""
2369
 
2370
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
 
2371
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2372
  msgid "Create a data table linked to an existing data source"
2373
  msgstr ""
@@ -2574,162 +2580,180 @@ msgid "Version "
2574
  msgstr ""
2575
 
2576
  #: templates/admin/dashboard/dashboard.inc.php:340
2577
- msgid "A minor update with a couple of bug fixes and stability improvements:"
 
 
2578
  msgstr ""
2579
 
2580
  #: templates/admin/dashboard/dashboard.inc.php:345
2581
  msgid ""
2582
- "<strong>BugFix:</strong> Fixed issue with Fatal errors on Dashboard page if "
2583
- "PHP extensions are not installed."
2584
  msgstr ""
2585
 
2586
  #: templates/admin/dashboard/dashboard.inc.php:346
2587
- msgid "Compatibility with WordPress 5.6 approved."
 
 
2588
  msgstr ""
2589
 
2590
  #: templates/admin/dashboard/dashboard.inc.php:347
2591
- msgid "Compatibility with PHP 8 approved."
 
 
2592
  msgstr ""
2593
 
2594
  #: templates/admin/dashboard/dashboard.inc.php:348
 
 
 
 
 
 
 
 
 
 
 
 
2595
  msgid "Other small bug fixes and stability improvements."
2596
  msgstr ""
2597
 
2598
- #: templates/admin/dashboard/dashboard.inc.php:360
2599
  msgid "Go Premium!"
2600
  msgstr ""
2601
 
2602
- #: templates/admin/dashboard/dashboard.inc.php:366
2603
  msgid "View Comparison"
2604
  msgstr ""
2605
 
2606
- #: templates/admin/dashboard/dashboard.inc.php:374
2607
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2608
  msgid ""
2609
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2610
  "of the powerful features."
2611
  msgstr ""
2612
 
2613
- #: templates/admin/dashboard/dashboard.inc.php:378
2614
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2615
  msgid "Create a table manually"
2616
  msgstr ""
2617
 
2618
- #: templates/admin/dashboard/dashboard.inc.php:381
2619
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2620
  msgid "Creating tables from Google Spreadsheet"
2621
  msgstr ""
2622
 
2623
- #: templates/admin/dashboard/dashboard.inc.php:384
2624
  msgid ""
2625
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2626
  "tables via Google Sheet API"
2627
  msgstr ""
2628
 
2629
- #: templates/admin/dashboard/dashboard.inc.php:387
2630
  msgid ""
2631
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2632
  "tables from Private Google Spreadsheet"
2633
  msgstr ""
2634
 
2635
- #: templates/admin/dashboard/dashboard.inc.php:390
2636
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2637
  msgid "Creating MySQL-based tables from database"
2638
  msgstr ""
2639
 
2640
- #: templates/admin/dashboard/dashboard.inc.php:393
2641
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2642
  msgid "Creating MySQL-based tables from Wordpress post types"
2643
  msgstr ""
2644
 
2645
- #: templates/admin/dashboard/dashboard.inc.php:396
2646
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2647
  #: templates/edit_table.inc.php:329
2648
  msgid "Advanced filtering"
2649
  msgstr ""
2650
 
2651
- #: templates/admin/dashboard/dashboard.inc.php:399
2652
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2653
  #: templates/admin/table-settings/table_settings_block.inc.php:144
2654
  #: templates/edit_table.inc.php:282
2655
  msgid "Server-side processing"
2656
  msgstr ""
2657
 
2658
- #: templates/admin/dashboard/dashboard.inc.php:402
2659
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2660
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2661
  msgstr ""
2662
 
2663
- #: templates/admin/dashboard/dashboard.inc.php:405
2664
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2665
  msgid "Front-end table editing"
2666
  msgstr ""
2667
 
2668
- #: templates/admin/dashboard/dashboard.inc.php:408
2669
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2670
  msgid "Excel-like editing"
2671
  msgstr ""
2672
 
2673
- #: templates/admin/dashboard/dashboard.inc.php:411
2674
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2675
  msgid "Creating charts with Highcharts"
2676
  msgstr ""
2677
 
2678
- #: templates/admin/dashboard/dashboard.inc.php:414
2679
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2680
  msgid "Creating charts with Chart.js"
2681
  msgstr ""
2682
 
2683
- #: templates/admin/dashboard/dashboard.inc.php:417
2684
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2685
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2686
  #: templates/edit_table.inc.php:301
2687
  msgid "Responsive"
2688
  msgstr ""
2689
 
2690
- #: templates/admin/dashboard/dashboard.inc.php:420
2691
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2692
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2693
  #: templates/edit_table.inc.php:750
2694
  msgid "Conditional formatting"
2695
  msgstr ""
2696
 
2697
- #: templates/admin/dashboard/dashboard.inc.php:423
2698
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2699
  msgid "Calculating Tools"
2700
  msgstr ""
2701
 
2702
- #: templates/admin/dashboard/dashboard.inc.php:426
2703
  msgid "Formula columns"
2704
  msgstr ""
2705
 
2706
- #: templates/admin/dashboard/dashboard.inc.php:429
2707
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2708
  #: templates/admin/table-settings/table_settings_block.inc.php:79
2709
  msgid "Placeholders"
2710
  msgstr ""
2711
 
2712
- #: templates/admin/dashboard/dashboard.inc.php:432
2713
  msgid "Premium support"
2714
  msgstr ""
2715
 
2716
- #: templates/admin/dashboard/dashboard.inc.php:436
2717
  msgid "Get Premium Today"
2718
  msgstr ""
2719
 
2720
- #: templates/admin/dashboard/dashboard.inc.php:443
2721
  msgid "News Blog"
2722
  msgstr ""
2723
 
2724
- #: templates/admin/dashboard/dashboard.inc.php:448
2725
  msgid "Checkout useful articles from wpdatatables.com"
2726
  msgstr ""
2727
 
2728
- #: templates/admin/dashboard/dashboard.inc.php:471
2729
  msgid "Please install and enable PHP extensions xml and dom on your server."
2730
  msgstr ""
2731
 
2732
- #: templates/admin/dashboard/dashboard.inc.php:479
2733
  msgid ""
2734
  "Never miss notifications about new cool features, promotions,\n"
2735
  " giveaways or freebies – subscribe to our "
@@ -2737,92 +2761,92 @@ msgid ""
2737
  " about 1 message per month and never spam!"
2738
  msgstr ""
2739
 
2740
- #: templates/admin/dashboard/dashboard.inc.php:497
2741
  msgid "Premium "
2742
  msgstr ""
2743
 
2744
- #: templates/admin/dashboard/dashboard.inc.php:500
2745
  msgid ""
2746
  "While wpDataTables itself provides quite a large amount of features and "
2747
  "unlimited customisation, flexibility, you can achieve even more with our "
2748
  "premium addons.(requires wpDataTables Premium version)"
2749
  msgstr ""
2750
 
2751
- #: templates/admin/dashboard/dashboard.inc.php:518
2752
  msgid ""
2753
  "A wpDataTables addon which allows showing additional details for a specific "
2754
  "row in a popup or a separate page or post."
2755
  msgstr ""
2756
 
2757
- #: templates/admin/dashboard/dashboard.inc.php:524
2758
- #: templates/admin/dashboard/dashboard.inc.php:551
2759
- #: templates/admin/dashboard/dashboard.inc.php:577
2760
- #: templates/admin/dashboard/dashboard.inc.php:604
2761
- #: templates/admin/dashboard/dashboard.inc.php:630
2762
- #: templates/admin/dashboard/dashboard.inc.php:663
2763
  msgid "Learn More"
2764
  msgstr ""
2765
 
2766
- #: templates/admin/dashboard/dashboard.inc.php:545
2767
  msgid ""
2768
  "An add-on for wpDataTables that provides powerful filtering features: "
2769
  "cascade filtering, applying filters on button click, hide table before "
2770
  "filtering."
2771
  msgstr ""
2772
 
2773
- #: templates/admin/dashboard/dashboard.inc.php:641
2774
  msgid "Need free booking plugin?"
2775
  msgstr ""
2776
 
2777
- #: templates/admin/dashboard/dashboard.inc.php:650
2778
  msgid "Appointments and Events WordPress Booking Plugin"
2779
  msgstr ""
2780
 
2781
- #: templates/admin/dashboard/dashboard.inc.php:653
2782
  msgid ""
2783
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2784
  "set up a fully-featured automated booking system on your WordPress website "
2785
  "and is a handy tool for small businesses and individuals that depend on "
2786
- "stable appointment booking processes. 10,000+ businesses from healthcare, "
2787
  "beauty, sports, automotive, educational, creative, HR and other industries "
2788
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
2789
  "each month."
2790
  msgstr ""
2791
 
2792
- #: templates/admin/dashboard/dashboard.inc.php:656
2793
- msgid "Rating: 4.3 - ‎68 reviews"
2794
  msgstr ""
2795
 
2796
- #: templates/admin/dashboard/dashboard.inc.php:659
2797
  msgid "Free Download"
2798
  msgstr ""
2799
 
2800
- #: templates/admin/dashboard/dashboard.inc.php:674
2801
  #: templates/admin/getting-started/getting_started.inc.php:184
2802
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2803
  #: templates/admin/support/support.inc.php:78
2804
- #: templates/admin/system-info/system_info.inc.php:510
2805
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2806
  msgid "Made by"
2807
  msgstr ""
2808
 
2809
- #: templates/admin/dashboard/dashboard.inc.php:682
2810
  #: templates/admin/getting-started/getting_started.inc.php:192
2811
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2812
  #: templates/admin/support/support.inc.php:45
2813
  #: templates/admin/support/support.inc.php:86
2814
- #: templates/admin/system-info/system_info.inc.php:518
2815
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2816
  #: templates/admin/welcome_page/welcome_page.inc.php:369
2817
  msgid "Documentation"
2818
  msgstr ""
2819
 
2820
- #: templates/admin/dashboard/dashboard.inc.php:686
2821
  #: templates/admin/getting-started/getting_started.inc.php:196
2822
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2823
  #: templates/admin/support/support.inc.php:24
2824
  #: templates/admin/support/support.inc.php:90
2825
- #: templates/admin/system-info/system_info.inc.php:522
2826
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2827
  msgid "Support Center"
2828
  msgstr ""
@@ -3074,7 +3098,7 @@ msgstr ""
3074
  #: templates/admin/settings/settings.inc.php:33
3075
  #: templates/admin/settings/settings.inc.php:91
3076
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3077
- #: templates/admin/table-settings/column_settings_panel.inc.php:1082
3078
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3079
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3080
  #: templates/admin/table-settings/table_preview_block.inc.php:89
@@ -3560,13 +3584,13 @@ msgid ""
3560
  msgstr ""
3561
 
3562
  #: templates/admin/settings/tabs/main_plugin_settings.php:216
3563
- #: templates/admin/table-settings/column_settings_panel.inc.php:767
3564
  #: templates/edit_table.inc.php:663
3565
  msgid "Ascending"
3566
  msgstr ""
3567
 
3568
  #: templates/admin/settings/tabs/main_plugin_settings.php:217
3569
- #: templates/admin/table-settings/column_settings_panel.inc.php:768
3570
  #: templates/edit_table.inc.php:665
3571
  msgid "Descending"
3572
  msgstr ""
@@ -3832,35 +3856,35 @@ msgstr ""
3832
  msgid "Open a topic"
3833
  msgstr ""
3834
 
3835
- #: templates/admin/system-info/system_info.inc.php:23
3836
  msgid "System Info"
3837
  msgstr ""
3838
 
3839
- #: templates/admin/system-info/system_info.inc.php:62
3840
  msgid "The URL of your site's homepage."
3841
  msgstr ""
3842
 
3843
- #: templates/admin/system-info/system_info.inc.php:69
3844
  msgid "The root URL of your site."
3845
  msgstr ""
3846
 
3847
- #: templates/admin/system-info/system_info.inc.php:76
3848
  msgid "System path of your wp-content directory."
3849
  msgstr ""
3850
 
3851
- #: templates/admin/system-info/system_info.inc.php:83
3852
  msgid "System path of your WP root directory."
3853
  msgstr ""
3854
 
3855
- #: templates/admin/system-info/system_info.inc.php:90
3856
  msgid "The version of WordPress installed on your site."
3857
  msgstr ""
3858
 
3859
- #: templates/admin/system-info/system_info.inc.php:97
3860
  msgid "Whether or not you have WordPress Multisite enabled."
3861
  msgstr ""
3862
 
3863
- #: templates/admin/system-info/system_info.inc.php:121
3864
  #, php-format
3865
  msgid ""
3866
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
@@ -3869,35 +3893,35 @@ msgid ""
3869
  "noreferrer\">Increasing memory allocated to PHP.</a>"
3870
  msgstr ""
3871
 
3872
- #: templates/admin/system-info/system_info.inc.php:131
3873
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
3874
  msgstr ""
3875
 
3876
- #: templates/admin/system-info/system_info.inc.php:144
3877
  msgid "Displays whether or not WordPress is in Debug Mode."
3878
  msgstr ""
3879
 
3880
- #: templates/admin/system-info/system_info.inc.php:151
3881
  msgid "The current language used by WordPress. Default = English"
3882
  msgstr ""
3883
 
3884
- #: templates/admin/system-info/system_info.inc.php:171
3885
  msgid "Information about your operating system."
3886
  msgstr ""
3887
 
3888
- #: templates/admin/system-info/system_info.inc.php:179
3889
  msgid "Information about the web server that is currently hosting your site."
3890
  msgstr ""
3891
 
3892
- #: templates/admin/system-info/system_info.inc.php:221
3893
  msgid "The version of PHP installed on your hosting server."
3894
  msgstr ""
3895
 
3896
- #: templates/admin/system-info/system_info.inc.php:232
3897
  msgid "The largest file size that can be contained in one post."
3898
  msgstr ""
3899
 
3900
- #: templates/admin/system-info/system_info.inc.php:241
3901
  #, php-format
3902
  msgid ""
3903
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
@@ -3905,69 +3929,69 @@ msgid ""
3905
  "\">Increasing max execution to PHP</a>"
3906
  msgstr ""
3907
 
3908
- #: templates/admin/system-info/system_info.inc.php:249
3909
  msgid ""
3910
  "The amount of time (in seconds) that your site will spend on a single "
3911
  "operation before timing out (to avoid server lockups)"
3912
  msgstr ""
3913
 
3914
- #: templates/admin/system-info/system_info.inc.php:264
3915
  msgid "The version of MySQL installed on your hosting server."
3916
  msgstr ""
3917
 
3918
- #: templates/admin/system-info/system_info.inc.php:272
3919
  msgid ""
3920
  "The largest file size that can be uploaded to your WordPress installation."
3921
  msgstr ""
3922
 
3923
- #: templates/admin/system-info/system_info.inc.php:294
3924
  msgid "Multibyte String (mbstring) is used to convert character encoding."
3925
  msgstr ""
3926
 
3927
- #: templates/admin/system-info/system_info.inc.php:312
3928
  msgid ""
3929
  "XML support is something that needs to be installed on the server for proper "
3930
  "wpDataTables functionality."
3931
  msgstr ""
3932
 
3933
- #: templates/admin/system-info/system_info.inc.php:330
3934
  msgid ""
3935
  "DOM support is something that needs to be installed on the server for proper "
3936
  "wpDataTables functionality."
3937
  msgstr ""
3938
 
3939
- #: templates/admin/system-info/system_info.inc.php:356
3940
  msgid "Multibyte String (mbstring) require libxml to be installed. "
3941
  msgstr ""
3942
 
3943
- #: templates/admin/system-info/system_info.inc.php:375
3944
  msgid ""
3945
  "ZIP support is something that needs to be installed on the server, as a "
3946
  "package for the Linux operating system, or rather to the PHP software on the "
3947
  "server."
3948
  msgstr ""
3949
 
3950
- #: templates/admin/system-info/system_info.inc.php:395
3951
  msgid "wpDataTables use cURL for getting data from other servers."
3952
  msgstr ""
3953
 
3954
- #: templates/admin/system-info/system_info.inc.php:418
3955
  msgid "The name of the current active theme."
3956
  msgstr ""
3957
 
3958
- #: templates/admin/system-info/system_info.inc.php:429
3959
  msgid "The installed version of the current active theme."
3960
  msgstr ""
3961
 
3962
- #: templates/admin/system-info/system_info.inc.php:436
3963
  msgid "The theme developers."
3964
  msgstr ""
3965
 
3966
- #: templates/admin/system-info/system_info.inc.php:442
3967
  msgid "The theme developers URL."
3968
  msgstr ""
3969
 
3970
- #: templates/admin/system-info/system_info.inc.php:479
3971
  msgid "Visit plugin homepage"
3972
  msgstr ""
3973
 
@@ -4028,7 +4052,7 @@ msgid "Data"
4028
  msgstr ""
4029
 
4030
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4031
- msgid "Filtering"
4032
  msgstr ""
4033
 
4034
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
@@ -4160,12 +4184,12 @@ msgid "DateTime"
4160
  msgstr ""
4161
 
4162
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4163
- #: templates/admin/table-settings/column_settings_panel.inc.php:971
4164
  msgid "URL link"
4165
  msgstr ""
4166
 
4167
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4168
- #: templates/admin/table-settings/column_settings_panel.inc.php:972
4169
  msgid "E-mail link"
4170
  msgstr ""
4171
 
@@ -4413,199 +4437,226 @@ msgstr ""
4413
  msgid "Button class"
4414
  msgstr ""
4415
 
4416
- #: templates/admin/table-settings/column_settings_panel.inc.php:724
 
 
 
 
 
 
 
 
4417
  msgid "Allow sorting"
4418
  msgstr ""
4419
 
4420
- #: templates/admin/table-settings/column_settings_panel.inc.php:726
4421
  msgid "Disable this to disallow sorting for this column."
4422
  msgstr ""
4423
 
4424
- #: templates/admin/table-settings/column_settings_panel.inc.php:732
4425
  msgid "Allow sorting for this column"
4426
  msgstr ""
4427
 
4428
- #: templates/admin/table-settings/column_settings_panel.inc.php:739
4429
  msgid "Use as default sorting column"
4430
  msgstr ""
4431
 
4432
- #: templates/admin/table-settings/column_settings_panel.inc.php:741
4433
- #: templates/admin/table-settings/column_settings_panel.inc.php:747
4434
  msgid "Sort table by this column on load"
4435
  msgstr ""
4436
 
4437
- #: templates/admin/table-settings/column_settings_panel.inc.php:758
4438
  msgid "Default sorting direction"
4439
  msgstr ""
4440
 
4441
- #: templates/admin/table-settings/column_settings_panel.inc.php:760
4442
  msgid "Choose whether to sort ascending or descending by default."
4443
  msgstr ""
4444
 
4445
- #: templates/admin/table-settings/column_settings_panel.inc.php:793
4446
  msgid "Add a filter for this column"
4447
  msgstr ""
4448
 
4449
- #: templates/admin/table-settings/column_settings_panel.inc.php:801
4450
  msgid "Enable filtering for column"
4451
  msgstr ""
4452
 
4453
- #: templates/admin/table-settings/column_settings_panel.inc.php:808
4454
  msgid ""
4455
  "Enabling this switch will add a filter for this column. Disable to remove "
4456
  "the filter for this column."
4457
  msgstr ""
4458
 
4459
- #: templates/admin/table-settings/column_settings_panel.inc.php:817
4460
  msgid "Allow filtering"
4461
  msgstr ""
4462
 
4463
- #: templates/admin/table-settings/column_settings_panel.inc.php:824
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4464
  #: templates/edit_table.inc.php:570
4465
  msgid "Filter type"
4466
  msgstr ""
4467
 
4468
- #: templates/admin/table-settings/column_settings_panel.inc.php:826
4469
  msgid ""
4470
  "You can redefine the filter type here, it will affect the filtering logic."
4471
  msgstr ""
4472
 
4473
- #: templates/admin/table-settings/column_settings_panel.inc.php:833
4474
  msgid "Text"
4475
  msgstr ""
4476
 
4477
- #: templates/admin/table-settings/column_settings_panel.inc.php:834
4478
  msgid "Number"
4479
  msgstr ""
4480
 
4481
- #: templates/admin/table-settings/column_settings_panel.inc.php:835
4482
  msgid "Number range"
4483
  msgstr ""
4484
 
4485
- #: templates/admin/table-settings/column_settings_panel.inc.php:836
4486
  msgid "Date range"
4487
  msgstr ""
4488
 
4489
- #: templates/admin/table-settings/column_settings_panel.inc.php:837
4490
  msgid "DateTime range"
4491
  msgstr ""
4492
 
4493
- #: templates/admin/table-settings/column_settings_panel.inc.php:838
4494
  msgid "Time range"
4495
  msgstr ""
4496
 
4497
- #: templates/admin/table-settings/column_settings_panel.inc.php:839
4498
  msgid "Selectbox"
4499
  msgstr ""
4500
 
4501
- #: templates/admin/table-settings/column_settings_panel.inc.php:840
4502
  msgid "Checkbox"
4503
  msgstr ""
4504
 
4505
- #: templates/admin/table-settings/column_settings_panel.inc.php:856
4506
  msgid "Filter label"
4507
  msgstr ""
4508
 
4509
- #: templates/admin/table-settings/column_settings_panel.inc.php:864
4510
  msgid "Custom filter label"
4511
  msgstr ""
4512
 
4513
- #: templates/admin/table-settings/column_settings_panel.inc.php:871
4514
  msgid ""
4515
  "You can change the filter label (placeholder) for this column here, if you "
4516
  "would like to show some custom text instead of default."
4517
  msgstr ""
4518
 
4519
- #: templates/admin/table-settings/column_settings_panel.inc.php:886
4520
  msgid "Exact filtering"
4521
  msgstr ""
4522
 
4523
- #: templates/admin/table-settings/column_settings_panel.inc.php:888
4524
  msgid ""
4525
  "Enable exact search to use exact match logic for filtering, disable to allow "
4526
  "partial match."
4527
  msgstr ""
4528
 
4529
- #: templates/admin/table-settings/column_settings_panel.inc.php:894
4530
  msgid "Enable exact filtering"
4531
  msgstr ""
4532
 
4533
- #: templates/admin/table-settings/column_settings_panel.inc.php:906
4534
- #: templates/admin/table-settings/column_settings_panel.inc.php:1003
4535
  msgid "Predefined value(s)"
4536
  msgstr ""
4537
 
4538
- #: templates/admin/table-settings/column_settings_panel.inc.php:908
4539
  msgid ""
4540
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4541
  "page load."
4542
  msgstr ""
4543
 
4544
- #: templates/admin/table-settings/column_settings_panel.inc.php:954
4545
  msgid "Editor input type"
4546
  msgstr ""
4547
 
4548
- #: templates/admin/table-settings/column_settings_panel.inc.php:956
4549
  msgid "Choose which kind of editor input to use for this column."
4550
  msgstr ""
4551
 
4552
- #: templates/admin/table-settings/column_settings_panel.inc.php:962
4553
  msgid "None"
4554
  msgstr ""
4555
 
4556
- #: templates/admin/table-settings/column_settings_panel.inc.php:963
4557
  msgid "One-line edit"
4558
  msgstr ""
4559
 
4560
- #: templates/admin/table-settings/column_settings_panel.inc.php:964
4561
  msgid "Multi-line edit"
4562
  msgstr ""
4563
 
4564
- #: templates/admin/table-settings/column_settings_panel.inc.php:965
4565
  msgid "HTML editor"
4566
  msgstr ""
4567
 
4568
- #: templates/admin/table-settings/column_settings_panel.inc.php:966
4569
  msgid "Single-value selectbox"
4570
  msgstr ""
4571
 
4572
- #: templates/admin/table-settings/column_settings_panel.inc.php:967
4573
  msgid "Multi-value selectbox"
4574
  msgstr ""
4575
 
4576
- #: templates/admin/table-settings/column_settings_panel.inc.php:983
4577
  msgid "Column cannot be empty"
4578
  msgstr ""
4579
 
4580
- #: templates/admin/table-settings/column_settings_panel.inc.php:985
4581
  msgid ""
4582
  "Enable to make this column mandatory. Users will see a warning when trying "
4583
  "to save with empty input."
4584
  msgstr ""
4585
 
4586
- #: templates/admin/table-settings/column_settings_panel.inc.php:991
4587
  msgid "Cannot be empty"
4588
  msgstr ""
4589
 
4590
- #: templates/admin/table-settings/column_settings_panel.inc.php:1005
4591
  msgid ""
4592
  "If you would like to have some values pre-defined in editors (i.e. default "
4593
  "editor values) please enter these here."
4594
  msgstr ""
4595
 
4596
- #: templates/admin/table-settings/column_settings_panel.inc.php:1051
4597
  msgid "Add New Rule"
4598
  msgstr ""
4599
 
4600
  #: templates/admin/table-settings/column_small_block.inc.php:16
4601
- msgid "Show/hide sorting"
4602
  msgstr ""
4603
 
4604
  #: templates/admin/table-settings/column_small_block.inc.php:18
 
 
 
 
4605
  msgid "Show/hide the column"
4606
  msgstr ""
4607
 
4608
- #: templates/admin/table-settings/column_small_block.inc.php:24
4609
  msgid "Open column settings"
4610
  msgstr ""
4611
 
@@ -4789,19 +4840,42 @@ msgstr ""
4789
  msgid "Are you sure? There is no undo!"
4790
  msgstr ""
4791
 
 
 
 
 
 
 
 
 
4792
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4793
  msgid "Table preview"
4794
  msgstr ""
4795
 
4796
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:22
4797
  msgid "Desktop"
4798
  msgstr ""
4799
 
4800
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:25
4801
  msgid "Tablet"
4802
  msgstr ""
4803
 
4804
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
4805
  msgid "Mobile"
4806
  msgstr ""
4807
 
@@ -5439,10 +5513,6 @@ msgstr ""
5439
  msgid "Main search block"
5440
  msgstr ""
5441
 
5442
- #: templates/admin/table-settings/table_settings_block.inc.php:665
5443
- msgid "Global search"
5444
- msgstr ""
5445
-
5446
  #: templates/admin/table-settings/table_settings_block.inc.php:672
5447
  msgid ""
5448
  "If this is enabled, a search block will be displayed on the top right of the "
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"
120
  msgid "You do not have sufficient permissions to access this page."
121
  msgstr ""
122
 
123
+ #: controllers/wdt_functions.php:486
124
  msgid "wpDataChart with provided ID not found!"
125
  msgstr ""
126
 
127
+ #: controllers/wdt_functions.php:522 controllers/wdt_functions.php:603
128
  msgid "wpDataTable with provided ID not found!"
129
  msgstr ""
130
 
131
+ #: controllers/wdt_functions.php:613
132
  msgid "Provided column is not Integer or Float column type"
133
  msgstr ""
134
 
135
+ #: controllers/wdt_functions.php:830
136
  msgid "Choose a table"
137
  msgstr ""
138
 
139
+ #: controllers/wdt_functions.php:862
140
  msgid "Interactive Responsive Table"
141
  msgstr ""
142
 
143
+ #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
144
  msgid "Content"
145
  msgstr ""
146
 
147
+ #: controllers/wdt_functions.php:869
148
  msgid "wpDataTable"
149
  msgstr ""
150
 
151
+ #: controllers/wdt_functions.php:873
152
  msgid "Choose the wpDataTable from a dropdown"
153
  msgstr ""
154
 
155
+ #: controllers/wdt_functions.php:878
156
  msgid "Table view"
157
  msgstr ""
158
 
159
+ #: controllers/wdt_functions.php:882
160
  msgid "Regular wpDataTable"
161
  msgstr ""
162
 
163
+ #: controllers/wdt_functions.php:884
164
  msgid "Excel-like table"
165
  msgstr ""
166
 
167
+ #: controllers/wdt_functions.php:890
168
  msgid "Variable placeholder #1"
169
  msgstr ""
170
 
171
+ #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
172
+ #: controllers/wdt_functions.php:909
173
  msgid "Variables"
174
  msgstr ""
175
 
176
+ #: controllers/wdt_functions.php:894
177
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
178
  msgstr ""
179
 
180
+ #: controllers/wdt_functions.php:898
181
  msgid "Variable placeholder #2"
182
  msgstr ""
183
 
184
+ #: controllers/wdt_functions.php:902
185
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
186
  msgstr ""
187
 
188
+ #: controllers/wdt_functions.php:906
189
  msgid "Variable placeholder #3"
190
  msgstr ""
191
 
192
+ #: controllers/wdt_functions.php:910
193
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
194
  msgstr ""
195
 
196
+ #: controllers/wdt_functions.php:923
197
  msgid "Google or Highcharts chart based on a wpDataTable"
198
  msgstr ""
199
 
200
+ #: controllers/wdt_functions.php:930
201
  msgid "wpDataChart"
202
  msgstr ""
203
 
204
+ #: controllers/wdt_functions.php:934
205
  msgid "Choose one of wpDataCharts from the list"
206
  msgstr ""
207
 
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 ""
376
  msgid "There was an error trying to fetch the table data: "
377
  msgstr ""
378
 
379
+ #: source/class.wdtconfigcontroller.php:479
380
  msgid "Table in data source has no rows."
381
  msgstr ""
382
 
408
 
409
  #: source/class.wdttools.php:23
410
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
411
+ #: templates/admin/table-settings/column_settings_panel.inc.php:984
412
  msgid "Date"
413
  msgstr ""
414
 
415
  #: source/class.wdttools.php:24
416
+ #: templates/admin/table-settings/column_settings_panel.inc.php:985
417
  msgid "Datetime"
418
  msgstr ""
419
 
420
  #: source/class.wdttools.php:25
421
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
422
+ #: templates/admin/table-settings/column_settings_panel.inc.php:986
423
  msgid "Time"
424
  msgstr ""
425
 
437
  msgstr ""
438
 
439
  #: source/class.wdttools.php:29
440
+ #: templates/admin/table-settings/column_settings_panel.inc.php:989
441
  msgid "Attachment"
442
  msgstr ""
443
 
461
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
462
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
463
  #: templates/admin/common/HTMLModal.inc.php:43
464
+ #: templates/admin/common/linkModal.inc.php:117
465
  #: templates/admin/common/shortcodeModal.inc.php:48
466
  #: templates/admin/common/starModal.inc.php:73
467
  #: templates/admin/constructor/constructor.inc.php:29
468
  #: templates/admin/settings/settings.inc.php:28
469
  #: templates/admin/table-settings/add_column_modal.inc.php:126
470
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
471
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1095
472
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
473
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
474
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
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 ""
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
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
  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
  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
  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
  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
  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."
2217
  msgstr ""
2218
 
2219
  #: templates/admin/common/linkModal.inc.php:76
2220
+ #: templates/admin/table-settings/column_settings_panel.inc.php:720
2221
+ msgid "Make NOFOLLOW link"
2222
+ msgstr ""
2223
+
2224
+ #: templates/admin/common/linkModal.inc.php:87
2225
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2226
  msgid "Set the link to appear as a button"
2227
  msgstr ""
2228
 
2229
+ #: templates/admin/common/linkModal.inc.php:96
2230
  msgid "Button class:"
2231
  msgstr ""
2232
 
2233
+ #: templates/admin/common/linkModal.inc.php:121
2234
  msgid "Insert link"
2235
  msgstr ""
2236
 
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
2373
  msgstr ""
2374
 
2375
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
2376
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:14
2377
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2378
  msgid "Create a data table linked to an existing data source"
2379
  msgstr ""
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
  " 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 "
2809
  "and is a handy tool for small businesses and individuals that depend on "
2810
+ "stable appointment booking processes. 20,000+ businesses from healthcare, "
2811
  "beauty, sports, automotive, educational, creative, HR and other industries "
2812
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
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
2839
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2840
  #: templates/admin/welcome_page/welcome_page.inc.php:369
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
2850
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2851
  msgid "Support Center"
2852
  msgstr ""
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
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 ""
3856
  msgid "Open a topic"
3857
  msgstr ""
3858
 
3859
+ #: templates/admin/system-info/system_info.inc.php:22
3860
  msgid "System Info"
3861
  msgstr ""
3862
 
3863
+ #: templates/admin/system-info/system_info.inc.php:61
3864
  msgid "The URL of your site's homepage."
3865
  msgstr ""
3866
 
3867
+ #: templates/admin/system-info/system_info.inc.php:68
3868
  msgid "The root URL of your site."
3869
  msgstr ""
3870
 
3871
+ #: templates/admin/system-info/system_info.inc.php:75
3872
  msgid "System path of your wp-content directory."
3873
  msgstr ""
3874
 
3875
+ #: templates/admin/system-info/system_info.inc.php:82
3876
  msgid "System path of your WP root directory."
3877
  msgstr ""
3878
 
3879
+ #: templates/admin/system-info/system_info.inc.php:89
3880
  msgid "The version of WordPress installed on your site."
3881
  msgstr ""
3882
 
3883
+ #: templates/admin/system-info/system_info.inc.php:96
3884
  msgid "Whether or not you have WordPress Multisite enabled."
3885
  msgstr ""
3886
 
3887
+ #: templates/admin/system-info/system_info.inc.php:120
3888
  #, php-format
3889
  msgid ""
3890
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
3893
  "noreferrer\">Increasing memory allocated to PHP.</a>"
3894
  msgstr ""
3895
 
3896
+ #: templates/admin/system-info/system_info.inc.php:130
3897
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
3898
  msgstr ""
3899
 
3900
+ #: templates/admin/system-info/system_info.inc.php:143
3901
  msgid "Displays whether or not WordPress is in Debug Mode."
3902
  msgstr ""
3903
 
3904
+ #: templates/admin/system-info/system_info.inc.php:150
3905
  msgid "The current language used by WordPress. Default = English"
3906
  msgstr ""
3907
 
3908
+ #: templates/admin/system-info/system_info.inc.php:170
3909
  msgid "Information about your operating system."
3910
  msgstr ""
3911
 
3912
+ #: templates/admin/system-info/system_info.inc.php:178
3913
  msgid "Information about the web server that is currently hosting your site."
3914
  msgstr ""
3915
 
3916
+ #: templates/admin/system-info/system_info.inc.php:220
3917
  msgid "The version of PHP installed on your hosting server."
3918
  msgstr ""
3919
 
3920
+ #: templates/admin/system-info/system_info.inc.php:231
3921
  msgid "The largest file size that can be contained in one post."
3922
  msgstr ""
3923
 
3924
+ #: templates/admin/system-info/system_info.inc.php:240
3925
  #, php-format
3926
  msgid ""
3927
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
3929
  "\">Increasing max execution to PHP</a>"
3930
  msgstr ""
3931
 
3932
+ #: templates/admin/system-info/system_info.inc.php:248
3933
  msgid ""
3934
  "The amount of time (in seconds) that your site will spend on a single "
3935
  "operation before timing out (to avoid server lockups)"
3936
  msgstr ""
3937
 
3938
+ #: templates/admin/system-info/system_info.inc.php:263
3939
  msgid "The version of MySQL installed on your hosting server."
3940
  msgstr ""
3941
 
3942
+ #: templates/admin/system-info/system_info.inc.php:271
3943
  msgid ""
3944
  "The largest file size that can be uploaded to your WordPress installation."
3945
  msgstr ""
3946
 
3947
+ #: templates/admin/system-info/system_info.inc.php:293
3948
  msgid "Multibyte String (mbstring) is used to convert character encoding."
3949
  msgstr ""
3950
 
3951
+ #: templates/admin/system-info/system_info.inc.php:311
3952
  msgid ""
3953
  "XML support is something that needs to be installed on the server for proper "
3954
  "wpDataTables functionality."
3955
  msgstr ""
3956
 
3957
+ #: templates/admin/system-info/system_info.inc.php:329
3958
  msgid ""
3959
  "DOM support is something that needs to be installed on the server for proper "
3960
  "wpDataTables functionality."
3961
  msgstr ""
3962
 
3963
+ #: templates/admin/system-info/system_info.inc.php:355
3964
  msgid "Multibyte String (mbstring) require libxml to be installed. "
3965
  msgstr ""
3966
 
3967
+ #: templates/admin/system-info/system_info.inc.php:374
3968
  msgid ""
3969
  "ZIP support is something that needs to be installed on the server, as a "
3970
  "package for the Linux operating system, or rather to the PHP software on the "
3971
  "server."
3972
  msgstr ""
3973
 
3974
+ #: templates/admin/system-info/system_info.inc.php:394
3975
  msgid "wpDataTables use cURL for getting data from other servers."
3976
  msgstr ""
3977
 
3978
+ #: templates/admin/system-info/system_info.inc.php:417
3979
  msgid "The name of the current active theme."
3980
  msgstr ""
3981
 
3982
+ #: templates/admin/system-info/system_info.inc.php:428
3983
  msgid "The installed version of the current active theme."
3984
  msgstr ""
3985
 
3986
+ #: templates/admin/system-info/system_info.inc.php:435
3987
  msgid "The theme developers."
3988
  msgstr ""
3989
 
3990
+ #: templates/admin/system-info/system_info.inc.php:441
3991
  msgid "The theme developers URL."
3992
  msgstr ""
3993
 
3994
+ #: templates/admin/system-info/system_info.inc.php:478
3995
  msgid "Visit plugin homepage"
3996
  msgstr ""
3997
 
4052
  msgstr ""
4053
 
4054
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4055
+ msgid "Global Filtering"
4056
  msgstr ""
4057
 
4058
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4184
  msgstr ""
4185
 
4186
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4187
+ #: templates/admin/table-settings/column_settings_panel.inc.php:987
4188
  msgid "URL link"
4189
  msgstr ""
4190
 
4191
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4192
+ #: templates/admin/table-settings/column_settings_panel.inc.php:988
4193
  msgid "E-mail link"
4194
  msgstr ""
4195
 
4437
  msgid "Button class"
4438
  msgstr ""
4439
 
4440
+ #: templates/admin/table-settings/column_settings_panel.inc.php:712
4441
+ msgid "URL relation attribute"
4442
+ msgstr ""
4443
+
4444
+ #: templates/admin/table-settings/column_settings_panel.inc.php:714
4445
+ msgid "Set the link relation"
4446
+ msgstr ""
4447
+
4448
+ #: templates/admin/table-settings/column_settings_panel.inc.php:740
4449
  msgid "Allow sorting"
4450
  msgstr ""
4451
 
4452
+ #: templates/admin/table-settings/column_settings_panel.inc.php:742
4453
  msgid "Disable this to disallow sorting for this column."
4454
  msgstr ""
4455
 
4456
+ #: templates/admin/table-settings/column_settings_panel.inc.php:748
4457
  msgid "Allow sorting for this column"
4458
  msgstr ""
4459
 
4460
+ #: templates/admin/table-settings/column_settings_panel.inc.php:755
4461
  msgid "Use as default sorting column"
4462
  msgstr ""
4463
 
4464
+ #: templates/admin/table-settings/column_settings_panel.inc.php:757
4465
+ #: templates/admin/table-settings/column_settings_panel.inc.php:763
4466
  msgid "Sort table by this column on load"
4467
  msgstr ""
4468
 
4469
+ #: templates/admin/table-settings/column_settings_panel.inc.php:774
4470
  msgid "Default sorting direction"
4471
  msgstr ""
4472
 
4473
+ #: templates/admin/table-settings/column_settings_panel.inc.php:776
4474
  msgid "Choose whether to sort ascending or descending by default."
4475
  msgstr ""
4476
 
4477
+ #: templates/admin/table-settings/column_settings_panel.inc.php:803
4478
  msgid "Add a filter for this column"
4479
  msgstr ""
4480
 
4481
+ #: templates/admin/table-settings/column_settings_panel.inc.php:811
4482
  msgid "Enable filtering for column"
4483
  msgstr ""
4484
 
4485
+ #: templates/admin/table-settings/column_settings_panel.inc.php:818
4486
  msgid ""
4487
  "Enabling this switch will add a filter for this column. Disable to remove "
4488
  "the filter for this column."
4489
  msgstr ""
4490
 
4491
+ #: templates/admin/table-settings/column_settings_panel.inc.php:827
4492
  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
+
4500
+ #: templates/admin/table-settings/column_settings_panel.inc.php:836
4501
+ msgid ""
4502
+ "If this option is turned off, the column data will not appear in your global "
4503
+ "search results."
4504
+ msgstr ""
4505
+
4506
+ #: templates/admin/table-settings/column_settings_panel.inc.php:842
4507
+ msgid "Enable this column in Global search"
4508
+ msgstr ""
4509
+
4510
+ #: templates/admin/table-settings/column_settings_panel.inc.php:850
4511
  #: templates/edit_table.inc.php:570
4512
  msgid "Filter type"
4513
  msgstr ""
4514
 
4515
+ #: templates/admin/table-settings/column_settings_panel.inc.php:852
4516
  msgid ""
4517
  "You can redefine the filter type here, it will affect the filtering logic."
4518
  msgstr ""
4519
 
4520
+ #: templates/admin/table-settings/column_settings_panel.inc.php:859
4521
  msgid "Text"
4522
  msgstr ""
4523
 
4524
+ #: templates/admin/table-settings/column_settings_panel.inc.php:860
4525
  msgid "Number"
4526
  msgstr ""
4527
 
4528
+ #: templates/admin/table-settings/column_settings_panel.inc.php:861
4529
  msgid "Number range"
4530
  msgstr ""
4531
 
4532
+ #: templates/admin/table-settings/column_settings_panel.inc.php:862
4533
  msgid "Date range"
4534
  msgstr ""
4535
 
4536
+ #: templates/admin/table-settings/column_settings_panel.inc.php:863
4537
  msgid "DateTime range"
4538
  msgstr ""
4539
 
4540
+ #: templates/admin/table-settings/column_settings_panel.inc.php:864
4541
  msgid "Time range"
4542
  msgstr ""
4543
 
4544
+ #: templates/admin/table-settings/column_settings_panel.inc.php:865
4545
  msgid "Selectbox"
4546
  msgstr ""
4547
 
4548
+ #: templates/admin/table-settings/column_settings_panel.inc.php:866
4549
  msgid "Checkbox"
4550
  msgstr ""
4551
 
4552
+ #: templates/admin/table-settings/column_settings_panel.inc.php:877
4553
  msgid "Filter label"
4554
  msgstr ""
4555
 
4556
+ #: templates/admin/table-settings/column_settings_panel.inc.php:885
4557
  msgid "Custom filter label"
4558
  msgstr ""
4559
 
4560
+ #: templates/admin/table-settings/column_settings_panel.inc.php:892
4561
  msgid ""
4562
  "You can change the filter label (placeholder) for this column here, if you "
4563
  "would like to show some custom text instead of default."
4564
  msgstr ""
4565
 
4566
+ #: templates/admin/table-settings/column_settings_panel.inc.php:907
4567
  msgid "Exact filtering"
4568
  msgstr ""
4569
 
4570
+ #: templates/admin/table-settings/column_settings_panel.inc.php:909
4571
  msgid ""
4572
  "Enable exact search to use exact match logic for filtering, disable to allow "
4573
  "partial match."
4574
  msgstr ""
4575
 
4576
+ #: templates/admin/table-settings/column_settings_panel.inc.php:915
4577
  msgid "Enable exact filtering"
4578
  msgstr ""
4579
 
4580
+ #: templates/admin/table-settings/column_settings_panel.inc.php:922
4581
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1019
4582
  msgid "Predefined value(s)"
4583
  msgstr ""
4584
 
4585
+ #: templates/admin/table-settings/column_settings_panel.inc.php:924
4586
  msgid ""
4587
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4588
  "page load."
4589
  msgstr ""
4590
 
4591
+ #: templates/admin/table-settings/column_settings_panel.inc.php:970
4592
  msgid "Editor input type"
4593
  msgstr ""
4594
 
4595
+ #: templates/admin/table-settings/column_settings_panel.inc.php:972
4596
  msgid "Choose which kind of editor input to use for this column."
4597
  msgstr ""
4598
 
4599
+ #: templates/admin/table-settings/column_settings_panel.inc.php:978
4600
  msgid "None"
4601
  msgstr ""
4602
 
4603
+ #: templates/admin/table-settings/column_settings_panel.inc.php:979
4604
  msgid "One-line edit"
4605
  msgstr ""
4606
 
4607
+ #: templates/admin/table-settings/column_settings_panel.inc.php:980
4608
  msgid "Multi-line edit"
4609
  msgstr ""
4610
 
4611
+ #: templates/admin/table-settings/column_settings_panel.inc.php:981
4612
  msgid "HTML editor"
4613
  msgstr ""
4614
 
4615
+ #: templates/admin/table-settings/column_settings_panel.inc.php:982
4616
  msgid "Single-value selectbox"
4617
  msgstr ""
4618
 
4619
+ #: templates/admin/table-settings/column_settings_panel.inc.php:983
4620
  msgid "Multi-value selectbox"
4621
  msgstr ""
4622
 
4623
+ #: templates/admin/table-settings/column_settings_panel.inc.php:999
4624
  msgid "Column cannot be empty"
4625
  msgstr ""
4626
 
4627
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1001
4628
  msgid ""
4629
  "Enable to make this column mandatory. Users will see a warning when trying "
4630
  "to save with empty input."
4631
  msgstr ""
4632
 
4633
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1007
4634
  msgid "Cannot be empty"
4635
  msgstr ""
4636
 
4637
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1021
4638
  msgid ""
4639
  "If you would like to have some values pre-defined in editors (i.e. default "
4640
  "editor values) please enter these here."
4641
  msgstr ""
4642
 
4643
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1067
4644
  msgid "Add New Rule"
4645
  msgstr ""
4646
 
4647
  #: templates/admin/table-settings/column_small_block.inc.php:16
4648
+ msgid "Enable/disable in global search"
4649
  msgstr ""
4650
 
4651
  #: templates/admin/table-settings/column_small_block.inc.php:18
4652
+ msgid "Show/hide sorting"
4653
+ msgstr ""
4654
+
4655
+ #: templates/admin/table-settings/column_small_block.inc.php:20
4656
  msgid "Show/hide the column"
4657
  msgstr ""
4658
 
4659
+ #: templates/admin/table-settings/column_small_block.inc.php:26
4660
  msgid "Open column settings"
4661
  msgstr ""
4662
 
4840
  msgid "Are you sure? There is no undo!"
4841
  msgstr ""
4842
 
4843
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:9
4844
+ msgid "When working with this table type please note that at the moment:"
4845
+ msgstr ""
4846
+
4847
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:11
4848
+ msgid "There is no sorting, search, or pagination in this table type."
4849
+ msgstr ""
4850
+
4851
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
4852
+ msgid "Creating charts from this table type is not yet possible."
4853
+ msgstr ""
4854
+
4855
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:13
4856
+ msgid ""
4857
+ "If you need those features, please consider creating tables with option "
4858
+ msgstr ""
4859
+
4860
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:17
4861
+ msgid ""
4862
+ "Depends of users requests, we will add it in our road map and implement it "
4863
+ "based on priority. Thank you for understanding."
4864
+ msgstr ""
4865
+
4866
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
4867
  msgid "Table preview"
4868
  msgstr ""
4869
 
4870
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:38
4871
  msgid "Desktop"
4872
  msgstr ""
4873
 
4874
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:41
4875
  msgid "Tablet"
4876
  msgstr ""
4877
 
4878
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:44
4879
  msgid "Mobile"
4880
  msgstr ""
4881
 
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 "
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: 2020-12-25 17:32+0100\n"
5
- "PO-Revision-Date: 2020-12-25 17:32+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: fr_FR\n"
@@ -107,95 +107,95 @@ 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."
109
 
110
- #: controllers/wdt_functions.php:471
111
  msgid "wpDataChart with provided ID not found!"
112
  msgstr "wpDataChart avec identifiant fourni introuvable!"
113
 
114
- #: controllers/wdt_functions.php:507 controllers/wdt_functions.php:588
115
  msgid "wpDataTable with provided ID not found!"
116
  msgstr "wpDataChart avec identifiant fourni introuvable!"
117
 
118
- #: controllers/wdt_functions.php:598
119
  msgid "Provided column is not Integer or Float column type"
120
  msgstr ""
121
  "La colonne fournie n’est pas un type de colonne de nombre entier ou à vigule"
122
 
123
- #: controllers/wdt_functions.php:815
124
  msgid "Choose a table"
125
  msgstr "Choisissez un tableau"
126
 
127
- #: controllers/wdt_functions.php:847
128
  msgid "Interactive Responsive Table"
129
  msgstr "Tableau interactif adaptatif"
130
 
131
- #: controllers/wdt_functions.php:848 controllers/wdt_functions.php:909
132
  msgid "Content"
133
  msgstr "Contenu"
134
 
135
- #: controllers/wdt_functions.php:854
136
  msgid "wpDataTable"
137
  msgstr "wpDataTable"
138
 
139
- #: controllers/wdt_functions.php:858
140
  msgid "Choose the wpDataTable from a dropdown"
141
  msgstr "Choisissez le wpDataTable dans une liste déroulante"
142
 
143
- #: controllers/wdt_functions.php:863
144
  msgid "Table view"
145
  msgstr "Vue tableau"
146
 
147
- #: controllers/wdt_functions.php:867
148
  msgid "Regular wpDataTable"
149
  msgstr "WpDataTable ordinaire"
150
 
151
- #: controllers/wdt_functions.php:869
152
  msgid "Excel-like table"
153
  msgstr "Tableau de type Excel"
154
 
155
- #: controllers/wdt_functions.php:875
156
  msgid "Variable placeholder #1"
157
  msgstr "Texte indicatif variable #1"
158
 
159
- #: controllers/wdt_functions.php:878 controllers/wdt_functions.php:886
160
- #: controllers/wdt_functions.php:894
161
  msgid "Variables"
162
  msgstr "Variables"
163
 
164
- #: controllers/wdt_functions.php:879
165
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
166
  msgstr ""
167
  "Si vous avez utilisé le texte indicatif VAR1, vous pouvez lui attribuer une "
168
  "valeur ici"
169
 
170
- #: controllers/wdt_functions.php:883
171
  msgid "Variable placeholder #2"
172
  msgstr "Texte indicatif variable #2"
173
 
174
- #: controllers/wdt_functions.php:887
175
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
176
  msgstr ""
177
  "Si vous avez utilisé le texte indicatif VAR2, vous pouvez lui attribuer une "
178
  "valeur ici"
179
 
180
- #: controllers/wdt_functions.php:891
181
  msgid "Variable placeholder #3"
182
  msgstr "Texte indicatif variable #3"
183
 
184
- #: controllers/wdt_functions.php:895
185
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
186
  msgstr ""
187
  "Si vous avez utilisé le texte indicatif VAR3, vous pouvez lui attribuer une "
188
  "valeur ici"
189
 
190
- #: controllers/wdt_functions.php:908
191
  msgid "Google or Highcharts chart based on a wpDataTable"
192
  msgstr "Graphique Google ou HighCharts basé sur un wpDataTable"
193
 
194
- #: controllers/wdt_functions.php:915
195
  msgid "wpDataChart"
196
  msgstr "wpDataChart"
197
 
198
- #: controllers/wdt_functions.php:919
199
  msgid "Choose one of wpDataCharts from the list"
200
  msgstr "Choisissez l’un des wpDataCharts dans la liste"
201
 
@@ -330,14 +330,14 @@ msgstr "MySQL"
330
  msgid "Manual"
331
  msgstr "Manuel"
332
 
333
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2204
334
- #: source/class.wpdatatable.php:2274
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:2213
340
- #: source/class.wpdatatable.php:2284
341
  #: templates/admin/table-settings/table_settings_block.inc.php:1032
342
  msgid "CSV"
343
  msgstr "CSV"
@@ -378,7 +378,7 @@ msgstr ""
378
  "Une erreur s’est produite lors de la tentative d’extraction des données du "
379
  "tableau: "
380
 
381
- #: source/class.wdtconfigcontroller.php:477
382
  msgid "Table in data source has no rows."
383
  msgstr "Le tableau dans la source de données n’a pas de lignes."
384
 
@@ -410,18 +410,18 @@ msgstr "Nombre à virgule"
410
 
411
  #: source/class.wdttools.php:23
412
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
413
- #: templates/admin/table-settings/column_settings_panel.inc.php:968
414
  msgid "Date"
415
  msgstr "Date"
416
 
417
  #: source/class.wdttools.php:24
418
- #: templates/admin/table-settings/column_settings_panel.inc.php:969
419
  msgid "Datetime"
420
  msgstr "Datetime"
421
 
422
  #: source/class.wdttools.php:25
423
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
424
- #: templates/admin/table-settings/column_settings_panel.inc.php:970
425
  msgid "Time"
426
  msgstr "Temps"
427
 
@@ -439,7 +439,7 @@ msgid "Image"
439
  msgstr "Image"
440
 
441
  #: source/class.wdttools.php:29
442
- #: templates/admin/table-settings/column_settings_panel.inc.php:973
443
  msgid "Attachment"
444
  msgstr "Attachement"
445
 
@@ -466,14 +466,14 @@ msgstr "Naviguer"
466
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
467
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
468
  #: templates/admin/common/HTMLModal.inc.php:43
469
- #: templates/admin/common/linkModal.inc.php:106
470
  #: templates/admin/common/shortcodeModal.inc.php:48
471
  #: templates/admin/common/starModal.inc.php:73
472
  #: templates/admin/constructor/constructor.inc.php:29
473
  #: templates/admin/settings/settings.inc.php:28
474
  #: templates/admin/table-settings/add_column_modal.inc.php:126
475
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
476
- #: templates/admin/table-settings/column_settings_panel.inc.php:1079
477
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
478
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
479
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
@@ -526,8 +526,8 @@ 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:2222
530
- #: source/class.wpdatatable.php:2294
531
  #: templates/admin/table-settings/table_settings_block.inc.php:1033
532
  msgid "Copy"
533
  msgstr "Copier"
@@ -1315,7 +1315,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:1883
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,7 +1324,7 @@ msgstr ""
1324
  "probablement pas activé le supplément d’extension requis pour utiliser ce "
1325
  "type de tableau."
1326
 
1327
- #: source/class.wpdatatable.php:2122 source/class.wpdatatable.php:2125
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
@@ -1332,30 +1332,30 @@ msgstr ""
1332
  msgid "All"
1333
  msgstr "Tout"
1334
 
1335
- #: source/class.wpdatatable.php:2183 source/class.wpdatatable.php:2252
1336
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1337
  msgid "Columns"
1338
  msgstr "Colonnes"
1339
 
1340
- #: source/class.wpdatatable.php:2193 source/class.wpdatatable.php:2262
1341
  #: templates/admin/table-settings/table_settings_block.inc.php:1030
1342
  msgid "Print"
1343
  msgstr "Imprimer"
1344
 
1345
- #: source/class.wpdatatable.php:2232 source/class.wpdatatable.php:2305
1346
  #: templates/admin/table-settings/table_settings_block.inc.php:1034
1347
  msgid "PDF"
1348
  msgstr "PDF"
1349
 
1350
- #: source/class.wpdatatable.php:2240
1351
  msgid "Export"
1352
  msgstr "Exporter"
1353
 
1354
- #: source/class.wpdatatable.php:2318
1355
  msgid "Search table"
1356
  msgstr "Tableau de recherche"
1357
 
1358
- #: source/class.wpdatatable.php:2319
1359
  msgid "Showing _MENU_ Entries"
1360
  msgstr "Afficher _MENU_ Entrées"
1361
 
@@ -1374,7 +1374,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:496
1378
  msgid "wpDataTables Addons"
1379
  msgstr "Modules complémentaires pour wpDataTables"
1380
 
@@ -1394,12 +1394,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:567
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:571
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 +1427,7 @@ msgid "NEW"
1427
  msgstr "NOUVEAU"
1428
 
1429
  #: templates/admin/addons/addons.inc.php:40
1430
- #: templates/admin/dashboard/dashboard.inc.php:514
1431
  msgid "Master Detail Tables for wpDataTables"
1432
  msgstr "Principaux tableaux détaillés pour wpDataTables"
1433
 
@@ -1453,7 +1453,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:541
1457
  msgid "Powerful Filters for wpDataTables"
1458
  msgstr "Filtres puissants pour les wpDataTables"
1459
 
@@ -1469,12 +1469,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:594
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:598
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 +1484,12 @@ msgstr ""
1484
  "Formidable Forms."
1485
 
1486
  #: templates/admin/addons/addons.inc.php:143
1487
- #: templates/admin/dashboard/dashboard.inc.php:620
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:624
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."
@@ -2381,15 +2381,20 @@ msgid "Open link in the new tab"
2381
  msgstr "Ouvrir le lien dans le nouvel onglet"
2382
 
2383
  #: templates/admin/common/linkModal.inc.php:76
 
 
 
 
 
2384
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2385
  msgid "Set the link to appear as a button"
2386
  msgstr "Définir le lien pour qu’il apparaisse comme un bouton"
2387
 
2388
- #: templates/admin/common/linkModal.inc.php:85
2389
  msgid "Button class:"
2390
  msgstr ""
2391
 
2392
- #: templates/admin/common/linkModal.inc.php:110
2393
  msgid "Insert link"
2394
  msgstr ""
2395
 
@@ -2510,8 +2515,8 @@ msgstr "Ouvrir dans un éditeur de type Excel"
2510
  #: templates/admin/settings/settings.inc.php:96
2511
  #: templates/admin/support/support.inc.php:31
2512
  #: templates/admin/support/support.inc.php:47
2513
- #: templates/admin/system-info/system_info.inc.php:30
2514
- #: templates/admin/table-settings/column_settings_panel.inc.php:1074
2515
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2516
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2517
  #: templates/admin/table-settings/table_settings_block.inc.php:1197
@@ -2536,6 +2541,7 @@ msgid ""
2536
  msgstr ""
2537
 
2538
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
 
2539
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2540
  msgid "Create a data table linked to an existing data source"
2541
  msgstr ""
@@ -2755,163 +2761,181 @@ msgid "Version "
2755
  msgstr "Version "
2756
 
2757
  #: templates/admin/dashboard/dashboard.inc.php:340
2758
- msgid "A minor update with a couple of bug fixes and stability improvements:"
 
 
2759
  msgstr ""
2760
 
2761
  #: templates/admin/dashboard/dashboard.inc.php:345
2762
  msgid ""
2763
- "<strong>BugFix:</strong> Fixed issue with Fatal errors on Dashboard page if "
2764
- "PHP extensions are not installed."
2765
  msgstr ""
2766
 
2767
  #: templates/admin/dashboard/dashboard.inc.php:346
2768
- msgid "Compatibility with WordPress 5.6 approved."
 
 
2769
  msgstr ""
2770
 
2771
  #: templates/admin/dashboard/dashboard.inc.php:347
2772
- msgid "Compatibility with PHP 8 approved."
 
 
2773
  msgstr ""
2774
 
2775
  #: templates/admin/dashboard/dashboard.inc.php:348
 
 
 
 
 
 
 
 
 
 
 
 
2776
  msgid "Other small bug fixes and stability improvements."
2777
  msgstr ""
2778
 
2779
- #: templates/admin/dashboard/dashboard.inc.php:360
2780
  msgid "Go Premium!"
2781
  msgstr ""
2782
 
2783
- #: templates/admin/dashboard/dashboard.inc.php:366
2784
  msgid "View Comparison"
2785
  msgstr ""
2786
 
2787
- #: templates/admin/dashboard/dashboard.inc.php:374
2788
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2789
  msgid ""
2790
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2791
  "of the powerful features."
2792
  msgstr ""
2793
 
2794
- #: templates/admin/dashboard/dashboard.inc.php:378
2795
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2796
  msgid "Create a table manually"
2797
  msgstr "Créer un tableau manuellement"
2798
 
2799
- #: templates/admin/dashboard/dashboard.inc.php:381
2800
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2801
  msgid "Creating tables from Google Spreadsheet"
2802
  msgstr "Création de tableaux à partir de Google Spreadsheet"
2803
 
2804
- #: templates/admin/dashboard/dashboard.inc.php:384
2805
  msgid ""
2806
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2807
  "tables via Google Sheet API"
2808
  msgstr ""
2809
 
2810
- #: templates/admin/dashboard/dashboard.inc.php:387
2811
  msgid ""
2812
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2813
  "tables from Private Google Spreadsheet"
2814
  msgstr ""
2815
 
2816
- #: templates/admin/dashboard/dashboard.inc.php:390
2817
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2818
  msgid "Creating MySQL-based tables from database"
2819
  msgstr "Création de tableaux basés sur MySQL à partir d'une base de données"
2820
 
2821
- #: templates/admin/dashboard/dashboard.inc.php:393
2822
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2823
  msgid "Creating MySQL-based tables from Wordpress post types"
2824
  msgstr ""
2825
  "Création de tableaux basés sur MySQL à partir d'articles types Wordpress"
2826
 
2827
- #: templates/admin/dashboard/dashboard.inc.php:396
2828
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2829
  #: templates/edit_table.inc.php:329
2830
  msgid "Advanced filtering"
2831
  msgstr "Filtrage avancé"
2832
 
2833
- #: templates/admin/dashboard/dashboard.inc.php:399
2834
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2835
  #: templates/admin/table-settings/table_settings_block.inc.php:144
2836
  #: templates/edit_table.inc.php:282
2837
  msgid "Server-side processing"
2838
  msgstr "Traitement côté serveur"
2839
 
2840
- #: templates/admin/dashboard/dashboard.inc.php:402
2841
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2842
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2843
  msgstr ""
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:405
2846
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2847
  msgid "Front-end table editing"
2848
  msgstr "Montage de tableaux en interface visuelle"
2849
 
2850
- #: templates/admin/dashboard/dashboard.inc.php:408
2851
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2852
  msgid "Excel-like editing"
2853
  msgstr "Montage comme sur Excel"
2854
 
2855
- #: templates/admin/dashboard/dashboard.inc.php:411
2856
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2857
  msgid "Creating charts with Highcharts"
2858
  msgstr "Créer des graphiques avec Highcharts"
2859
 
2860
- #: templates/admin/dashboard/dashboard.inc.php:414
2861
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2862
  msgid "Creating charts with Chart.js"
2863
  msgstr "Créer des graphiques avec Chart.js"
2864
 
2865
- #: templates/admin/dashboard/dashboard.inc.php:417
2866
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2867
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2868
  #: templates/edit_table.inc.php:301
2869
  msgid "Responsive"
2870
  msgstr "Réactif"
2871
 
2872
- #: templates/admin/dashboard/dashboard.inc.php:420
2873
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2874
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2875
  #: templates/edit_table.inc.php:750
2876
  msgid "Conditional formatting"
2877
  msgstr "Mise en forme conditionnelle"
2878
 
2879
- #: templates/admin/dashboard/dashboard.inc.php:423
2880
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2881
  msgid "Calculating Tools"
2882
  msgstr "Outils de calcul"
2883
 
2884
- #: templates/admin/dashboard/dashboard.inc.php:426
2885
  msgid "Formula columns"
2886
  msgstr ""
2887
 
2888
- #: templates/admin/dashboard/dashboard.inc.php:429
2889
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2890
  #: templates/admin/table-settings/table_settings_block.inc.php:79
2891
  msgid "Placeholders"
2892
  msgstr "Textes indicatifs"
2893
 
2894
- #: templates/admin/dashboard/dashboard.inc.php:432
2895
  msgid "Premium support"
2896
  msgstr ""
2897
 
2898
- #: templates/admin/dashboard/dashboard.inc.php:436
2899
  msgid "Get Premium Today"
2900
  msgstr ""
2901
 
2902
- #: templates/admin/dashboard/dashboard.inc.php:443
2903
  msgid "News Blog"
2904
  msgstr "Nouvelles du blog"
2905
 
2906
- #: templates/admin/dashboard/dashboard.inc.php:448
2907
  msgid "Checkout useful articles from wpdatatables.com"
2908
  msgstr "Consultez les articles utiles de wpdatables.com"
2909
 
2910
- #: templates/admin/dashboard/dashboard.inc.php:471
2911
  msgid "Please install and enable PHP extensions xml and dom on your server."
2912
  msgstr ""
2913
 
2914
- #: templates/admin/dashboard/dashboard.inc.php:479
2915
  msgid ""
2916
  "Never miss notifications about new cool features, promotions,\n"
2917
  " giveaways or freebies – subscribe to our "
@@ -2925,18 +2949,18 @@ msgstr ""
2925
  " environ 1 message par mois et jamais de "
2926
  "spam !"
2927
 
2928
- #: templates/admin/dashboard/dashboard.inc.php:497
2929
  msgid "Premium "
2930
  msgstr ""
2931
 
2932
- #: templates/admin/dashboard/dashboard.inc.php:500
2933
  msgid ""
2934
  "While wpDataTables itself provides quite a large amount of features and "
2935
  "unlimited customisation, flexibility, you can achieve even more with our "
2936
  "premium addons.(requires wpDataTables Premium version)"
2937
  msgstr ""
2938
 
2939
- #: templates/admin/dashboard/dashboard.inc.php:518
2940
  msgid ""
2941
  "A wpDataTables addon which allows showing additional details for a specific "
2942
  "row in a popup or a separate page or post."
@@ -2944,16 +2968,16 @@ msgstr ""
2944
  "Un addon wpDataTables qui permet d'afficher des détails supplémentaires pour "
2945
  "une ligne spécifique dans un popup ou une page ou un message séparé."
2946
 
2947
- #: templates/admin/dashboard/dashboard.inc.php:524
2948
- #: templates/admin/dashboard/dashboard.inc.php:551
2949
- #: templates/admin/dashboard/dashboard.inc.php:577
2950
- #: templates/admin/dashboard/dashboard.inc.php:604
2951
- #: templates/admin/dashboard/dashboard.inc.php:630
2952
- #: templates/admin/dashboard/dashboard.inc.php:663
2953
  msgid "Learn More"
2954
  msgstr "En savoir plus"
2955
 
2956
- #: templates/admin/dashboard/dashboard.inc.php:545
2957
  msgid ""
2958
  "An add-on for wpDataTables that provides powerful filtering features: "
2959
  "cascade filtering, applying filters on button click, hide table before "
@@ -2963,59 +2987,59 @@ msgstr ""
2963
  "filtrage en cascade, application de filtres en un clic de bouton, masquage "
2964
  "du tableau avant le filtrage."
2965
 
2966
- #: templates/admin/dashboard/dashboard.inc.php:641
2967
  msgid "Need free booking plugin?"
2968
  msgstr ""
2969
 
2970
- #: templates/admin/dashboard/dashboard.inc.php:650
2971
  msgid "Appointments and Events WordPress Booking Plugin"
2972
  msgstr "Rendez-vous et événements Extension de réservation WordPress"
2973
 
2974
- #: templates/admin/dashboard/dashboard.inc.php:653
2975
  msgid ""
2976
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2977
  "set up a fully-featured automated booking system on your WordPress website "
2978
  "and is a handy tool for small businesses and individuals that depend on "
2979
- "stable appointment booking processes. 10,000+ businesses from healthcare, "
2980
  "beauty, sports, automotive, educational, creative, HR and other industries "
2981
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
2982
  "each month."
2983
  msgstr ""
2984
 
2985
- #: templates/admin/dashboard/dashboard.inc.php:656
2986
- msgid "Rating: 4.3 - ‎68 reviews"
2987
  msgstr ""
2988
 
2989
- #: templates/admin/dashboard/dashboard.inc.php:659
2990
  msgid "Free Download"
2991
  msgstr ""
2992
 
2993
- #: templates/admin/dashboard/dashboard.inc.php:674
2994
  #: templates/admin/getting-started/getting_started.inc.php:184
2995
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2996
  #: templates/admin/support/support.inc.php:78
2997
- #: templates/admin/system-info/system_info.inc.php:510
2998
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2999
  msgid "Made by"
3000
  msgstr "Réalisé par"
3001
 
3002
- #: templates/admin/dashboard/dashboard.inc.php:682
3003
  #: templates/admin/getting-started/getting_started.inc.php:192
3004
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
3005
  #: templates/admin/support/support.inc.php:45
3006
  #: templates/admin/support/support.inc.php:86
3007
- #: templates/admin/system-info/system_info.inc.php:518
3008
  #: templates/admin/welcome_page/welcome_page.inc.php:219
3009
  #: templates/admin/welcome_page/welcome_page.inc.php:369
3010
  msgid "Documentation"
3011
  msgstr "Documentation"
3012
 
3013
- #: templates/admin/dashboard/dashboard.inc.php:686
3014
  #: templates/admin/getting-started/getting_started.inc.php:196
3015
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
3016
  #: templates/admin/support/support.inc.php:24
3017
  #: templates/admin/support/support.inc.php:90
3018
- #: templates/admin/system-info/system_info.inc.php:522
3019
  #: templates/admin/welcome_page/welcome_page.inc.php:373
3020
  msgid "Support Center"
3021
  msgstr "Centre d'assistance"
@@ -3280,7 +3304,7 @@ msgstr ""
3280
  #: templates/admin/settings/settings.inc.php:33
3281
  #: templates/admin/settings/settings.inc.php:91
3282
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3283
- #: templates/admin/table-settings/column_settings_panel.inc.php:1082
3284
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3285
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3286
  #: templates/admin/table-settings/table_preview_block.inc.php:89
@@ -3814,13 +3838,13 @@ msgid ""
3814
  msgstr ""
3815
 
3816
  #: templates/admin/settings/tabs/main_plugin_settings.php:216
3817
- #: templates/admin/table-settings/column_settings_panel.inc.php:767
3818
  #: templates/edit_table.inc.php:663
3819
  msgid "Ascending"
3820
  msgstr "Ordre croissant"
3821
 
3822
  #: templates/admin/settings/tabs/main_plugin_settings.php:217
3823
- #: templates/admin/table-settings/column_settings_panel.inc.php:768
3824
  #: templates/edit_table.inc.php:665
3825
  msgid "Descending"
3826
  msgstr "Ordre décroissant"
@@ -4116,35 +4140,35 @@ msgstr ""
4116
  msgid "Open a topic"
4117
  msgstr ""
4118
 
4119
- #: templates/admin/system-info/system_info.inc.php:23
4120
  msgid "System Info"
4121
  msgstr "Informations système"
4122
 
4123
- #: templates/admin/system-info/system_info.inc.php:62
4124
  msgid "The URL of your site's homepage."
4125
  msgstr "L'URL de la page d'accueil de votre site."
4126
 
4127
- #: templates/admin/system-info/system_info.inc.php:69
4128
  msgid "The root URL of your site."
4129
  msgstr "L'URL racine de votre site."
4130
 
4131
- #: templates/admin/system-info/system_info.inc.php:76
4132
  msgid "System path of your wp-content directory."
4133
  msgstr "Chemin d'accès de votre répertoire wp-content."
4134
 
4135
- #: templates/admin/system-info/system_info.inc.php:83
4136
  msgid "System path of your WP root directory."
4137
  msgstr "Chemin d'accès de votre répertoire racine WP."
4138
 
4139
- #: templates/admin/system-info/system_info.inc.php:90
4140
  msgid "The version of WordPress installed on your site."
4141
  msgstr "La version WordPress installée sur votre site."
4142
 
4143
- #: templates/admin/system-info/system_info.inc.php:97
4144
  msgid "Whether or not you have WordPress Multisite enabled."
4145
  msgstr ""
4146
 
4147
- #: templates/admin/system-info/system_info.inc.php:121
4148
  #, php-format
4149
  msgid ""
4150
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
@@ -4158,38 +4182,38 @@ msgstr ""
4158
  "consultez : <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer"
4159
  "\">Augmentation de la mémoire allouée à PHP.</a>"
4160
 
4161
- #: templates/admin/system-info/system_info.inc.php:131
4162
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4163
  msgstr ""
4164
  "La quantité maximale de mémoire (RAM) que votre site peut utiliser en une "
4165
  "fois."
4166
 
4167
- #: templates/admin/system-info/system_info.inc.php:144
4168
  msgid "Displays whether or not WordPress is in Debug Mode."
4169
  msgstr "Affiche si WordPress est en mode débogage ou non."
4170
 
4171
- #: templates/admin/system-info/system_info.inc.php:151
4172
  msgid "The current language used by WordPress. Default = English"
4173
  msgstr "La langue actuelle utilisée par WordPress. Par défaut = anglais"
4174
 
4175
- #: templates/admin/system-info/system_info.inc.php:171
4176
  msgid "Information about your operating system."
4177
  msgstr "Informations sur votre système d'exploitation."
4178
 
4179
- #: templates/admin/system-info/system_info.inc.php:179
4180
  msgid "Information about the web server that is currently hosting your site."
4181
  msgstr "Informations sur le serveur web qui héberge actuellement votre site."
4182
 
4183
- #: templates/admin/system-info/system_info.inc.php:221
4184
  msgid "The version of PHP installed on your hosting server."
4185
  msgstr "La version de PHP installée sur votre serveur d'hébergement."
4186
 
4187
- #: templates/admin/system-info/system_info.inc.php:232
4188
  msgid "The largest file size that can be contained in one post."
4189
  msgstr ""
4190
  "La plus grande taille de fichier qui peut être contenue dans un article."
4191
 
4192
- #: templates/admin/system-info/system_info.inc.php:241
4193
  #, php-format
4194
  msgid ""
4195
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
@@ -4200,7 +4224,7 @@ msgstr ""
4200
  "moins 180.<br />Consultez : <a href=\"%2$s\" target=\"_blank\" rel="
4201
  "\"noopener noreferrer\">Augmenter le temps d'exécution maximum en PHP</a>"
4202
 
4203
- #: templates/admin/system-info/system_info.inc.php:249
4204
  msgid ""
4205
  "The amount of time (in seconds) that your site will spend on a single "
4206
  "operation before timing out (to avoid server lockups)"
@@ -4208,40 +4232,40 @@ msgstr ""
4208
  "Le temps (en secondes) que votre site passera sur une seule opération avant "
4209
  "de s'arrêter (pour éviter les blocages de serveur)"
4210
 
4211
- #: templates/admin/system-info/system_info.inc.php:264
4212
  msgid "The version of MySQL installed on your hosting server."
4213
  msgstr "La version de MySQL installée sur votre serveur d'hébergement."
4214
 
4215
- #: templates/admin/system-info/system_info.inc.php:272
4216
  msgid ""
4217
  "The largest file size that can be uploaded to your WordPress installation."
4218
  msgstr ""
4219
  "La plus grande taille de fichier qui peut être téléchargée sur votre "
4220
  "installation WordPress."
4221
 
4222
- #: templates/admin/system-info/system_info.inc.php:294
4223
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4224
  msgstr ""
4225
  "La chaîne multi-octets (mbstring) est utilisée pour convertir le codage des "
4226
  "caractères."
4227
 
4228
- #: templates/admin/system-info/system_info.inc.php:312
4229
  msgid ""
4230
  "XML support is something that needs to be installed on the server for proper "
4231
  "wpDataTables functionality."
4232
  msgstr ""
4233
 
4234
- #: templates/admin/system-info/system_info.inc.php:330
4235
  msgid ""
4236
  "DOM support is something that needs to be installed on the server for proper "
4237
  "wpDataTables functionality."
4238
  msgstr ""
4239
 
4240
- #: templates/admin/system-info/system_info.inc.php:356
4241
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4242
  msgstr "La chaîne multi-octets (mbstring) nécessite l'installation de libxml. "
4243
 
4244
- #: templates/admin/system-info/system_info.inc.php:375
4245
  msgid ""
4246
  "ZIP support is something that needs to be installed on the server, as a "
4247
  "package for the Linux operating system, or rather to the PHP software on the "
@@ -4251,27 +4275,27 @@ msgstr ""
4251
  "pour le système d'exploitation Linux, ou plutôt pour le logiciel PHP sur le "
4252
  "serveur."
4253
 
4254
- #: templates/admin/system-info/system_info.inc.php:395
4255
  msgid "wpDataTables use cURL for getting data from other servers."
4256
  msgstr "wpDataTables utilise cURL pour obtenir des données d'autres serveurs."
4257
 
4258
- #: templates/admin/system-info/system_info.inc.php:418
4259
  msgid "The name of the current active theme."
4260
  msgstr "Le nom du thème actif actuel."
4261
 
4262
- #: templates/admin/system-info/system_info.inc.php:429
4263
  msgid "The installed version of the current active theme."
4264
  msgstr "La version installée du thème actif actuel."
4265
 
4266
- #: templates/admin/system-info/system_info.inc.php:436
4267
  msgid "The theme developers."
4268
  msgstr "Les développeurs de thèmes."
4269
 
4270
- #: templates/admin/system-info/system_info.inc.php:442
4271
  msgid "The theme developers URL."
4272
  msgstr "L'URL des développeurs de thèmes."
4273
 
4274
- #: templates/admin/system-info/system_info.inc.php:479
4275
  msgid "Visit plugin homepage"
4276
  msgstr "Visitez la page d'accueil de l'extension"
4277
 
@@ -4332,8 +4356,8 @@ msgid "Data"
4332
  msgstr "Données"
4333
 
4334
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4335
- msgid "Filtering"
4336
- msgstr "Filtrage"
4337
 
4338
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4339
  #: templates/admin/table-settings/table_settings_block.inc.php:71
@@ -4483,12 +4507,12 @@ msgid "DateTime"
4483
  msgstr "DateTime"
4484
 
4485
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4486
- #: templates/admin/table-settings/column_settings_panel.inc.php:971
4487
  msgid "URL link"
4488
  msgstr "Lien URL"
4489
 
4490
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4491
- #: templates/admin/table-settings/column_settings_panel.inc.php:972
4492
  msgid "E-mail link"
4493
  msgstr "Lien E-mail"
4494
 
@@ -4792,46 +4816,54 @@ msgstr "Bouton texte"
4792
  msgid "Button class"
4793
  msgstr "Classe de bouton"
4794
 
4795
- #: templates/admin/table-settings/column_settings_panel.inc.php:724
 
 
 
 
 
 
 
 
4796
  msgid "Allow sorting"
4797
  msgstr "Autoriser le tri"
4798
 
4799
- #: templates/admin/table-settings/column_settings_panel.inc.php:726
4800
  msgid "Disable this to disallow sorting for this column."
4801
  msgstr "Désactivez cette option pour interdire le tri de cette colonne."
4802
 
4803
- #: templates/admin/table-settings/column_settings_panel.inc.php:732
4804
  msgid "Allow sorting for this column"
4805
  msgstr "Autoriser le tri pour cette colonne"
4806
 
4807
- #: templates/admin/table-settings/column_settings_panel.inc.php:739
4808
  msgid "Use as default sorting column"
4809
  msgstr "Utiliser comme colonne de tri par défaut"
4810
 
4811
- #: templates/admin/table-settings/column_settings_panel.inc.php:741
4812
- #: templates/admin/table-settings/column_settings_panel.inc.php:747
4813
  msgid "Sort table by this column on load"
4814
  msgstr "Trier le tableau à partir de cette colonne lors du chargement"
4815
 
4816
- #: templates/admin/table-settings/column_settings_panel.inc.php:758
4817
  msgid "Default sorting direction"
4818
  msgstr "Direction de tri par défaut"
4819
 
4820
- #: templates/admin/table-settings/column_settings_panel.inc.php:760
4821
  msgid "Choose whether to sort ascending or descending by default."
4822
  msgstr ""
4823
  "Choisissez si vous souhaitez trier par ordre croissant ou décroissant par "
4824
  "défaut."
4825
 
4826
- #: templates/admin/table-settings/column_settings_panel.inc.php:793
4827
  msgid "Add a filter for this column"
4828
  msgstr "Ajouter un filtre pour cette colonne"
4829
 
4830
- #: templates/admin/table-settings/column_settings_panel.inc.php:801
4831
  msgid "Enable filtering for column"
4832
  msgstr "Activer le filtrage pour la colonne"
4833
 
4834
- #: templates/admin/table-settings/column_settings_panel.inc.php:808
4835
  msgid ""
4836
  "Enabling this switch will add a filter for this column. Disable to remove "
4837
  "the filter for this column."
@@ -4839,63 +4871,78 @@ msgstr ""
4839
  "L’activation de ce commutateur ajoutera un filtre pour cette colonne. "
4840
  "Désactiver pour supprimer le filtre pour cette colonne."
4841
 
4842
- #: templates/admin/table-settings/column_settings_panel.inc.php:817
4843
  msgid "Allow filtering"
4844
  msgstr "Autoriser le filtrage"
4845
 
4846
- #: templates/admin/table-settings/column_settings_panel.inc.php:824
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4847
  #: templates/edit_table.inc.php:570
4848
  msgid "Filter type"
4849
  msgstr "Type de filtre"
4850
 
4851
- #: templates/admin/table-settings/column_settings_panel.inc.php:826
4852
  msgid ""
4853
  "You can redefine the filter type here, it will affect the filtering logic."
4854
  msgstr ""
4855
  "Vous pouvez redéfinir le type de filtre ici, cela affectera la logique de "
4856
  "filtrage."
4857
 
4858
- #: templates/admin/table-settings/column_settings_panel.inc.php:833
4859
  msgid "Text"
4860
  msgstr "Texte"
4861
 
4862
- #: templates/admin/table-settings/column_settings_panel.inc.php:834
4863
  msgid "Number"
4864
  msgstr "Nombre"
4865
 
4866
- #: templates/admin/table-settings/column_settings_panel.inc.php:835
4867
  msgid "Number range"
4868
  msgstr "Plage de numéros"
4869
 
4870
- #: templates/admin/table-settings/column_settings_panel.inc.php:836
4871
  msgid "Date range"
4872
  msgstr "Plage de dates"
4873
 
4874
- #: templates/admin/table-settings/column_settings_panel.inc.php:837
4875
  msgid "DateTime range"
4876
  msgstr "Plage de date et heure"
4877
 
4878
- #: templates/admin/table-settings/column_settings_panel.inc.php:838
4879
  msgid "Time range"
4880
  msgstr "Intervalle de temps"
4881
 
4882
- #: templates/admin/table-settings/column_settings_panel.inc.php:839
4883
  msgid "Selectbox"
4884
  msgstr "Boîte de sélection"
4885
 
4886
- #: templates/admin/table-settings/column_settings_panel.inc.php:840
4887
  msgid "Checkbox"
4888
  msgstr "Case à cocher"
4889
 
4890
- #: templates/admin/table-settings/column_settings_panel.inc.php:856
4891
  msgid "Filter label"
4892
  msgstr "Étiquette de filtre"
4893
 
4894
- #: templates/admin/table-settings/column_settings_panel.inc.php:864
4895
  msgid "Custom filter label"
4896
  msgstr "Etiquette de filtre personnalisée"
4897
 
4898
- #: templates/admin/table-settings/column_settings_panel.inc.php:871
4899
  msgid ""
4900
  "You can change the filter label (placeholder) for this column here, if you "
4901
  "would like to show some custom text instead of default."
@@ -4904,11 +4951,11 @@ msgstr ""
4904
  "colonne ici, si vous souhaitez afficher du texte personnalisé au lieu de "
4905
  "celui par défaut."
4906
 
4907
- #: templates/admin/table-settings/column_settings_panel.inc.php:886
4908
  msgid "Exact filtering"
4909
  msgstr "Filtrage exact"
4910
 
4911
- #: templates/admin/table-settings/column_settings_panel.inc.php:888
4912
  msgid ""
4913
  "Enable exact search to use exact match logic for filtering, disable to allow "
4914
  "partial match."
@@ -4917,16 +4964,16 @@ msgstr ""
4917
  "exacte pour le filtrage, désactivez-la pour autoriser une correspondance "
4918
  "partielle."
4919
 
4920
- #: templates/admin/table-settings/column_settings_panel.inc.php:894
4921
  msgid "Enable exact filtering"
4922
  msgstr "Activer le filtrage exact"
4923
 
4924
- #: templates/admin/table-settings/column_settings_panel.inc.php:906
4925
- #: templates/admin/table-settings/column_settings_panel.inc.php:1003
4926
  msgid "Predefined value(s)"
4927
  msgstr "Valeur(s) prédéfinie(s)"
4928
 
4929
- #: templates/admin/table-settings/column_settings_panel.inc.php:908
4930
  msgid ""
4931
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4932
  "page load."
@@ -4934,43 +4981,43 @@ msgstr ""
4934
  "Définissez les valeurs qui seront définies comme valeurs de filtre "
4935
  "prédéfinies par défaut lors du chargement de la page."
4936
 
4937
- #: templates/admin/table-settings/column_settings_panel.inc.php:954
4938
  msgid "Editor input type"
4939
  msgstr "Type d’entrée de l’éditeur"
4940
 
4941
- #: templates/admin/table-settings/column_settings_panel.inc.php:956
4942
  msgid "Choose which kind of editor input to use for this column."
4943
  msgstr "Choisissez quel type d’éditeur d’entrée à utiliser pour cette colonne."
4944
 
4945
- #: templates/admin/table-settings/column_settings_panel.inc.php:962
4946
  msgid "None"
4947
  msgstr "Aucun"
4948
 
4949
- #: templates/admin/table-settings/column_settings_panel.inc.php:963
4950
  msgid "One-line edit"
4951
  msgstr "Modification une ligne"
4952
 
4953
- #: templates/admin/table-settings/column_settings_panel.inc.php:964
4954
  msgid "Multi-line edit"
4955
  msgstr "Modification multi-lignes"
4956
 
4957
- #: templates/admin/table-settings/column_settings_panel.inc.php:965
4958
  msgid "HTML editor"
4959
  msgstr "Editeur HTML"
4960
 
4961
- #: templates/admin/table-settings/column_settings_panel.inc.php:966
4962
  msgid "Single-value selectbox"
4963
  msgstr "Boîte de sélection à valeur unique"
4964
 
4965
- #: templates/admin/table-settings/column_settings_panel.inc.php:967
4966
  msgid "Multi-value selectbox"
4967
  msgstr "Boîte de sélection multi-valeur"
4968
 
4969
- #: templates/admin/table-settings/column_settings_panel.inc.php:983
4970
  msgid "Column cannot be empty"
4971
  msgstr "La colonne ne peut pas être vide"
4972
 
4973
- #: templates/admin/table-settings/column_settings_panel.inc.php:985
4974
  msgid ""
4975
  "Enable to make this column mandatory. Users will see a warning when trying "
4976
  "to save with empty input."
@@ -4978,11 +5025,11 @@ msgstr ""
4978
  "Activer pour rendre cette colonne obligatoire. Les utilisateurs verront un "
4979
  "avertissement lorsqu’ils tenteront d’enregistrer avec une entrée vide."
4980
 
4981
- #: templates/admin/table-settings/column_settings_panel.inc.php:991
4982
  msgid "Cannot be empty"
4983
  msgstr "Ne peux pas être vide"
4984
 
4985
- #: templates/admin/table-settings/column_settings_panel.inc.php:1005
4986
  msgid ""
4987
  "If you would like to have some values pre-defined in editors (i.e. default "
4988
  "editor values) please enter these here."
@@ -4990,19 +5037,23 @@ msgstr ""
4990
  "Si vous souhaitez que certaines valeurs soient prédéfinies dans les éditeurs "
4991
  "(c-à-d valeurs d’éditeur par défaut), veuillez les saisir ici."
4992
 
4993
- #: templates/admin/table-settings/column_settings_panel.inc.php:1051
4994
  msgid "Add New Rule"
4995
  msgstr "Ajouter une nouvelle règle"
4996
 
4997
  #: templates/admin/table-settings/column_small_block.inc.php:16
 
 
 
 
4998
  msgid "Show/hide sorting"
4999
  msgstr "Afficher/masquer le tri"
5000
 
5001
- #: templates/admin/table-settings/column_small_block.inc.php:18
5002
  msgid "Show/hide the column"
5003
  msgstr "Afficher/masquer la colonne"
5004
 
5005
- #: templates/admin/table-settings/column_small_block.inc.php:24
5006
  msgid "Open column settings"
5007
  msgstr "Ouvrir les paramètres de colonne"
5008
 
@@ -5206,19 +5257,42 @@ msgstr "Confirmer"
5206
  msgid "Are you sure? There is no undo!"
5207
  msgstr "Êtes-vous sûr? Il n’y a pas d’annulation de changement!"
5208
 
 
 
 
 
 
 
 
 
5209
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5210
  msgid "Table preview"
5211
  msgstr ""
5212
 
5213
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:22
5214
  msgid "Desktop"
5215
  msgstr ""
5216
 
5217
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:25
5218
  msgid "Tablet"
5219
  msgstr ""
5220
 
5221
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5222
  msgid "Mobile"
5223
  msgstr ""
5224
 
@@ -5900,10 +5974,6 @@ msgstr "Autoriser le tri pour le tableau"
5900
  msgid "Main search block"
5901
  msgstr "Bloc de recherche principal"
5902
 
5903
- #: templates/admin/table-settings/table_settings_block.inc.php:665
5904
- msgid "Global search"
5905
- msgstr "Recherche globale"
5906
-
5907
  #: templates/admin/table-settings/table_settings_block.inc.php:672
5908
  msgid ""
5909
  "If this is enabled, a search block will be displayed on the top right of the "
@@ -7285,6 +7355,9 @@ msgstr ""
7285
  msgid "Insert name for export file"
7286
  msgstr ""
7287
 
 
 
 
7288
  #~ msgid "tr"
7289
  #~ msgstr "tr"
7290
 
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"
107
  msgstr ""
108
  "Vous ne disposez pas des autorisations suffisantes pour accéder à cette page."
109
 
110
+ #: controllers/wdt_functions.php:486
111
  msgid "wpDataChart with provided ID not found!"
112
  msgstr "wpDataChart avec identifiant fourni introuvable!"
113
 
114
+ #: controllers/wdt_functions.php:522 controllers/wdt_functions.php:603
115
  msgid "wpDataTable with provided ID not found!"
116
  msgstr "wpDataChart avec identifiant fourni introuvable!"
117
 
118
+ #: controllers/wdt_functions.php:613
119
  msgid "Provided column is not Integer or Float column type"
120
  msgstr ""
121
  "La colonne fournie n’est pas un type de colonne de nombre entier ou à vigule"
122
 
123
+ #: controllers/wdt_functions.php:830
124
  msgid "Choose a table"
125
  msgstr "Choisissez un tableau"
126
 
127
+ #: controllers/wdt_functions.php:862
128
  msgid "Interactive Responsive Table"
129
  msgstr "Tableau interactif adaptatif"
130
 
131
+ #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
132
  msgid "Content"
133
  msgstr "Contenu"
134
 
135
+ #: controllers/wdt_functions.php:869
136
  msgid "wpDataTable"
137
  msgstr "wpDataTable"
138
 
139
+ #: controllers/wdt_functions.php:873
140
  msgid "Choose the wpDataTable from a dropdown"
141
  msgstr "Choisissez le wpDataTable dans une liste déroulante"
142
 
143
+ #: controllers/wdt_functions.php:878
144
  msgid "Table view"
145
  msgstr "Vue tableau"
146
 
147
+ #: controllers/wdt_functions.php:882
148
  msgid "Regular wpDataTable"
149
  msgstr "WpDataTable ordinaire"
150
 
151
+ #: controllers/wdt_functions.php:884
152
  msgid "Excel-like table"
153
  msgstr "Tableau de type Excel"
154
 
155
+ #: controllers/wdt_functions.php:890
156
  msgid "Variable placeholder #1"
157
  msgstr "Texte indicatif variable #1"
158
 
159
+ #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
160
+ #: controllers/wdt_functions.php:909
161
  msgid "Variables"
162
  msgstr "Variables"
163
 
164
+ #: controllers/wdt_functions.php:894
165
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
166
  msgstr ""
167
  "Si vous avez utilisé le texte indicatif VAR1, vous pouvez lui attribuer une "
168
  "valeur ici"
169
 
170
+ #: controllers/wdt_functions.php:898
171
  msgid "Variable placeholder #2"
172
  msgstr "Texte indicatif variable #2"
173
 
174
+ #: controllers/wdt_functions.php:902
175
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
176
  msgstr ""
177
  "Si vous avez utilisé le texte indicatif VAR2, vous pouvez lui attribuer une "
178
  "valeur ici"
179
 
180
+ #: controllers/wdt_functions.php:906
181
  msgid "Variable placeholder #3"
182
  msgstr "Texte indicatif variable #3"
183
 
184
+ #: controllers/wdt_functions.php:910
185
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
186
  msgstr ""
187
  "Si vous avez utilisé le texte indicatif VAR3, vous pouvez lui attribuer une "
188
  "valeur ici"
189
 
190
+ #: controllers/wdt_functions.php:923
191
  msgid "Google or Highcharts chart based on a wpDataTable"
192
  msgstr "Graphique Google ou HighCharts basé sur un wpDataTable"
193
 
194
+ #: controllers/wdt_functions.php:930
195
  msgid "wpDataChart"
196
  msgstr "wpDataChart"
197
 
198
+ #: controllers/wdt_functions.php:934
199
  msgid "Choose one of wpDataCharts from the list"
200
  msgstr "Choisissez l’un des wpDataCharts dans la liste"
201
 
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"
378
  "Une erreur s’est produite lors de la tentative d’extraction des données du "
379
  "tableau: "
380
 
381
+ #: source/class.wdtconfigcontroller.php:479
382
  msgid "Table in data source has no rows."
383
  msgstr "Le tableau dans la source de données n’a pas de lignes."
384
 
410
 
411
  #: source/class.wdttools.php:23
412
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
413
+ #: templates/admin/table-settings/column_settings_panel.inc.php:984
414
  msgid "Date"
415
  msgstr "Date"
416
 
417
  #: source/class.wdttools.php:24
418
+ #: templates/admin/table-settings/column_settings_panel.inc.php:985
419
  msgid "Datetime"
420
  msgstr "Datetime"
421
 
422
  #: source/class.wdttools.php:25
423
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
424
+ #: templates/admin/table-settings/column_settings_panel.inc.php:986
425
  msgid "Time"
426
  msgstr "Temps"
427
 
439
  msgstr "Image"
440
 
441
  #: source/class.wdttools.php:29
442
+ #: templates/admin/table-settings/column_settings_panel.inc.php:989
443
  msgid "Attachment"
444
  msgstr "Attachement"
445
 
466
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
467
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
468
  #: templates/admin/common/HTMLModal.inc.php:43
469
+ #: templates/admin/common/linkModal.inc.php:117
470
  #: templates/admin/common/shortcodeModal.inc.php:48
471
  #: templates/admin/common/starModal.inc.php:73
472
  #: templates/admin/constructor/constructor.inc.php:29
473
  #: templates/admin/settings/settings.inc.php:28
474
  #: templates/admin/table-settings/add_column_modal.inc.php:126
475
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
476
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1095
477
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
478
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
479
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
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"
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
  "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
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
  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
  "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
  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
  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
  "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
  "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."
2381
  msgstr "Ouvrir le lien dans le nouvel onglet"
2382
 
2383
  #: templates/admin/common/linkModal.inc.php:76
2384
+ #: templates/admin/table-settings/column_settings_panel.inc.php:720
2385
+ msgid "Make NOFOLLOW link"
2386
+ msgstr ""
2387
+
2388
+ #: templates/admin/common/linkModal.inc.php:87
2389
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2390
  msgid "Set the link to appear as a button"
2391
  msgstr "Définir le lien pour qu’il apparaisse comme un bouton"
2392
 
2393
+ #: templates/admin/common/linkModal.inc.php:96
2394
  msgid "Button class:"
2395
  msgstr ""
2396
 
2397
+ #: templates/admin/common/linkModal.inc.php:121
2398
  msgid "Insert link"
2399
  msgstr ""
2400
 
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
2541
  msgstr ""
2542
 
2543
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
2544
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:14
2545
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2546
  msgid "Create a data table linked to an existing data source"
2547
  msgstr ""
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
  " 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
  "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
  "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 "
3002
  "and is a handy tool for small businesses and individuals that depend on "
3003
+ "stable appointment booking processes. 20,000+ businesses from healthcare, "
3004
  "beauty, sports, automotive, educational, creative, HR and other industries "
3005
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
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
3032
  #: templates/admin/welcome_page/welcome_page.inc.php:219
3033
  #: templates/admin/welcome_page/welcome_page.inc.php:369
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
3043
  #: templates/admin/welcome_page/welcome_page.inc.php:373
3044
  msgid "Support Center"
3045
  msgstr "Centre d'assistance"
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
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"
4140
  msgid "Open a topic"
4141
  msgstr ""
4142
 
4143
+ #: templates/admin/system-info/system_info.inc.php:22
4144
  msgid "System Info"
4145
  msgstr "Informations système"
4146
 
4147
+ #: templates/admin/system-info/system_info.inc.php:61
4148
  msgid "The URL of your site's homepage."
4149
  msgstr "L'URL de la page d'accueil de votre site."
4150
 
4151
+ #: templates/admin/system-info/system_info.inc.php:68
4152
  msgid "The root URL of your site."
4153
  msgstr "L'URL racine de votre site."
4154
 
4155
+ #: templates/admin/system-info/system_info.inc.php:75
4156
  msgid "System path of your wp-content directory."
4157
  msgstr "Chemin d'accès de votre répertoire wp-content."
4158
 
4159
+ #: templates/admin/system-info/system_info.inc.php:82
4160
  msgid "System path of your WP root directory."
4161
  msgstr "Chemin d'accès de votre répertoire racine WP."
4162
 
4163
+ #: templates/admin/system-info/system_info.inc.php:89
4164
  msgid "The version of WordPress installed on your site."
4165
  msgstr "La version WordPress installée sur votre site."
4166
 
4167
+ #: templates/admin/system-info/system_info.inc.php:96
4168
  msgid "Whether or not you have WordPress Multisite enabled."
4169
  msgstr ""
4170
 
4171
+ #: templates/admin/system-info/system_info.inc.php:120
4172
  #, php-format
4173
  msgid ""
4174
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
4182
  "consultez : <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer"
4183
  "\">Augmentation de la mémoire allouée à PHP.</a>"
4184
 
4185
+ #: templates/admin/system-info/system_info.inc.php:130
4186
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4187
  msgstr ""
4188
  "La quantité maximale de mémoire (RAM) que votre site peut utiliser en une "
4189
  "fois."
4190
 
4191
+ #: templates/admin/system-info/system_info.inc.php:143
4192
  msgid "Displays whether or not WordPress is in Debug Mode."
4193
  msgstr "Affiche si WordPress est en mode débogage ou non."
4194
 
4195
+ #: templates/admin/system-info/system_info.inc.php:150
4196
  msgid "The current language used by WordPress. Default = English"
4197
  msgstr "La langue actuelle utilisée par WordPress. Par défaut = anglais"
4198
 
4199
+ #: templates/admin/system-info/system_info.inc.php:170
4200
  msgid "Information about your operating system."
4201
  msgstr "Informations sur votre système d'exploitation."
4202
 
4203
+ #: templates/admin/system-info/system_info.inc.php:178
4204
  msgid "Information about the web server that is currently hosting your site."
4205
  msgstr "Informations sur le serveur web qui héberge actuellement votre site."
4206
 
4207
+ #: templates/admin/system-info/system_info.inc.php:220
4208
  msgid "The version of PHP installed on your hosting server."
4209
  msgstr "La version de PHP installée sur votre serveur d'hébergement."
4210
 
4211
+ #: templates/admin/system-info/system_info.inc.php:231
4212
  msgid "The largest file size that can be contained in one post."
4213
  msgstr ""
4214
  "La plus grande taille de fichier qui peut être contenue dans un article."
4215
 
4216
+ #: templates/admin/system-info/system_info.inc.php:240
4217
  #, php-format
4218
  msgid ""
4219
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
4224
  "moins 180.<br />Consultez : <a href=\"%2$s\" target=\"_blank\" rel="
4225
  "\"noopener noreferrer\">Augmenter le temps d'exécution maximum en PHP</a>"
4226
 
4227
+ #: templates/admin/system-info/system_info.inc.php:248
4228
  msgid ""
4229
  "The amount of time (in seconds) that your site will spend on a single "
4230
  "operation before timing out (to avoid server lockups)"
4232
  "Le temps (en secondes) que votre site passera sur une seule opération avant "
4233
  "de s'arrêter (pour éviter les blocages de serveur)"
4234
 
4235
+ #: templates/admin/system-info/system_info.inc.php:263
4236
  msgid "The version of MySQL installed on your hosting server."
4237
  msgstr "La version de MySQL installée sur votre serveur d'hébergement."
4238
 
4239
+ #: templates/admin/system-info/system_info.inc.php:271
4240
  msgid ""
4241
  "The largest file size that can be uploaded to your WordPress installation."
4242
  msgstr ""
4243
  "La plus grande taille de fichier qui peut être téléchargée sur votre "
4244
  "installation WordPress."
4245
 
4246
+ #: templates/admin/system-info/system_info.inc.php:293
4247
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4248
  msgstr ""
4249
  "La chaîne multi-octets (mbstring) est utilisée pour convertir le codage des "
4250
  "caractères."
4251
 
4252
+ #: templates/admin/system-info/system_info.inc.php:311
4253
  msgid ""
4254
  "XML support is something that needs to be installed on the server for proper "
4255
  "wpDataTables functionality."
4256
  msgstr ""
4257
 
4258
+ #: templates/admin/system-info/system_info.inc.php:329
4259
  msgid ""
4260
  "DOM support is something that needs to be installed on the server for proper "
4261
  "wpDataTables functionality."
4262
  msgstr ""
4263
 
4264
+ #: templates/admin/system-info/system_info.inc.php:355
4265
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4266
  msgstr "La chaîne multi-octets (mbstring) nécessite l'installation de libxml. "
4267
 
4268
+ #: templates/admin/system-info/system_info.inc.php:374
4269
  msgid ""
4270
  "ZIP support is something that needs to be installed on the server, as a "
4271
  "package for the Linux operating system, or rather to the PHP software on the "
4275
  "pour le système d'exploitation Linux, ou plutôt pour le logiciel PHP sur le "
4276
  "serveur."
4277
 
4278
+ #: templates/admin/system-info/system_info.inc.php:394
4279
  msgid "wpDataTables use cURL for getting data from other servers."
4280
  msgstr "wpDataTables utilise cURL pour obtenir des données d'autres serveurs."
4281
 
4282
+ #: templates/admin/system-info/system_info.inc.php:417
4283
  msgid "The name of the current active theme."
4284
  msgstr "Le nom du thème actif actuel."
4285
 
4286
+ #: templates/admin/system-info/system_info.inc.php:428
4287
  msgid "The installed version of the current active theme."
4288
  msgstr "La version installée du thème actif actuel."
4289
 
4290
+ #: templates/admin/system-info/system_info.inc.php:435
4291
  msgid "The theme developers."
4292
  msgstr "Les développeurs de thèmes."
4293
 
4294
+ #: templates/admin/system-info/system_info.inc.php:441
4295
  msgid "The theme developers URL."
4296
  msgstr "L'URL des développeurs de thèmes."
4297
 
4298
+ #: templates/admin/system-info/system_info.inc.php:478
4299
  msgid "Visit plugin homepage"
4300
  msgstr "Visitez la page d'accueil de l'extension"
4301
 
4356
  msgstr "Données"
4357
 
4358
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4359
+ 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
4507
  msgstr "DateTime"
4508
 
4509
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4510
+ #: templates/admin/table-settings/column_settings_panel.inc.php:987
4511
  msgid "URL link"
4512
  msgstr "Lien URL"
4513
 
4514
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4515
+ #: templates/admin/table-settings/column_settings_panel.inc.php:988
4516
  msgid "E-mail link"
4517
  msgstr "Lien E-mail"
4518
 
4816
  msgid "Button class"
4817
  msgstr "Classe de bouton"
4818
 
4819
+ #: templates/admin/table-settings/column_settings_panel.inc.php:712
4820
+ msgid "URL relation attribute"
4821
+ msgstr ""
4822
+
4823
+ #: templates/admin/table-settings/column_settings_panel.inc.php:714
4824
+ msgid "Set the link relation"
4825
+ msgstr ""
4826
+
4827
+ #: templates/admin/table-settings/column_settings_panel.inc.php:740
4828
  msgid "Allow sorting"
4829
  msgstr "Autoriser le tri"
4830
 
4831
+ #: templates/admin/table-settings/column_settings_panel.inc.php:742
4832
  msgid "Disable this to disallow sorting for this column."
4833
  msgstr "Désactivez cette option pour interdire le tri de cette colonne."
4834
 
4835
+ #: templates/admin/table-settings/column_settings_panel.inc.php:748
4836
  msgid "Allow sorting for this column"
4837
  msgstr "Autoriser le tri pour cette colonne"
4838
 
4839
+ #: templates/admin/table-settings/column_settings_panel.inc.php:755
4840
  msgid "Use as default sorting column"
4841
  msgstr "Utiliser comme colonne de tri par défaut"
4842
 
4843
+ #: templates/admin/table-settings/column_settings_panel.inc.php:757
4844
+ #: templates/admin/table-settings/column_settings_panel.inc.php:763
4845
  msgid "Sort table by this column on load"
4846
  msgstr "Trier le tableau à partir de cette colonne lors du chargement"
4847
 
4848
+ #: templates/admin/table-settings/column_settings_panel.inc.php:774
4849
  msgid "Default sorting direction"
4850
  msgstr "Direction de tri par défaut"
4851
 
4852
+ #: templates/admin/table-settings/column_settings_panel.inc.php:776
4853
  msgid "Choose whether to sort ascending or descending by default."
4854
  msgstr ""
4855
  "Choisissez si vous souhaitez trier par ordre croissant ou décroissant par "
4856
  "défaut."
4857
 
4858
+ #: templates/admin/table-settings/column_settings_panel.inc.php:803
4859
  msgid "Add a filter for this column"
4860
  msgstr "Ajouter un filtre pour cette colonne"
4861
 
4862
+ #: templates/admin/table-settings/column_settings_panel.inc.php:811
4863
  msgid "Enable filtering for column"
4864
  msgstr "Activer le filtrage pour la colonne"
4865
 
4866
+ #: templates/admin/table-settings/column_settings_panel.inc.php:818
4867
  msgid ""
4868
  "Enabling this switch will add a filter for this column. Disable to remove "
4869
  "the filter for this column."
4871
  "L’activation de ce commutateur ajoutera un filtre pour cette colonne. "
4872
  "Désactiver pour supprimer le filtre pour cette colonne."
4873
 
4874
+ #: templates/admin/table-settings/column_settings_panel.inc.php:827
4875
  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
+
4883
+ #: templates/admin/table-settings/column_settings_panel.inc.php:836
4884
+ msgid ""
4885
+ "If this option is turned off, the column data will not appear in your global "
4886
+ "search results."
4887
+ msgstr ""
4888
+
4889
+ #: templates/admin/table-settings/column_settings_panel.inc.php:842
4890
+ msgid "Enable this column in Global search"
4891
+ msgstr ""
4892
+
4893
+ #: templates/admin/table-settings/column_settings_panel.inc.php:850
4894
  #: templates/edit_table.inc.php:570
4895
  msgid "Filter type"
4896
  msgstr "Type de filtre"
4897
 
4898
+ #: templates/admin/table-settings/column_settings_panel.inc.php:852
4899
  msgid ""
4900
  "You can redefine the filter type here, it will affect the filtering logic."
4901
  msgstr ""
4902
  "Vous pouvez redéfinir le type de filtre ici, cela affectera la logique de "
4903
  "filtrage."
4904
 
4905
+ #: templates/admin/table-settings/column_settings_panel.inc.php:859
4906
  msgid "Text"
4907
  msgstr "Texte"
4908
 
4909
+ #: templates/admin/table-settings/column_settings_panel.inc.php:860
4910
  msgid "Number"
4911
  msgstr "Nombre"
4912
 
4913
+ #: templates/admin/table-settings/column_settings_panel.inc.php:861
4914
  msgid "Number range"
4915
  msgstr "Plage de numéros"
4916
 
4917
+ #: templates/admin/table-settings/column_settings_panel.inc.php:862
4918
  msgid "Date range"
4919
  msgstr "Plage de dates"
4920
 
4921
+ #: templates/admin/table-settings/column_settings_panel.inc.php:863
4922
  msgid "DateTime range"
4923
  msgstr "Plage de date et heure"
4924
 
4925
+ #: templates/admin/table-settings/column_settings_panel.inc.php:864
4926
  msgid "Time range"
4927
  msgstr "Intervalle de temps"
4928
 
4929
+ #: templates/admin/table-settings/column_settings_panel.inc.php:865
4930
  msgid "Selectbox"
4931
  msgstr "Boîte de sélection"
4932
 
4933
+ #: templates/admin/table-settings/column_settings_panel.inc.php:866
4934
  msgid "Checkbox"
4935
  msgstr "Case à cocher"
4936
 
4937
+ #: templates/admin/table-settings/column_settings_panel.inc.php:877
4938
  msgid "Filter label"
4939
  msgstr "Étiquette de filtre"
4940
 
4941
+ #: templates/admin/table-settings/column_settings_panel.inc.php:885
4942
  msgid "Custom filter label"
4943
  msgstr "Etiquette de filtre personnalisée"
4944
 
4945
+ #: templates/admin/table-settings/column_settings_panel.inc.php:892
4946
  msgid ""
4947
  "You can change the filter label (placeholder) for this column here, if you "
4948
  "would like to show some custom text instead of default."
4951
  "colonne ici, si vous souhaitez afficher du texte personnalisé au lieu de "
4952
  "celui par défaut."
4953
 
4954
+ #: templates/admin/table-settings/column_settings_panel.inc.php:907
4955
  msgid "Exact filtering"
4956
  msgstr "Filtrage exact"
4957
 
4958
+ #: templates/admin/table-settings/column_settings_panel.inc.php:909
4959
  msgid ""
4960
  "Enable exact search to use exact match logic for filtering, disable to allow "
4961
  "partial match."
4964
  "exacte pour le filtrage, désactivez-la pour autoriser une correspondance "
4965
  "partielle."
4966
 
4967
+ #: templates/admin/table-settings/column_settings_panel.inc.php:915
4968
  msgid "Enable exact filtering"
4969
  msgstr "Activer le filtrage exact"
4970
 
4971
+ #: templates/admin/table-settings/column_settings_panel.inc.php:922
4972
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1019
4973
  msgid "Predefined value(s)"
4974
  msgstr "Valeur(s) prédéfinie(s)"
4975
 
4976
+ #: templates/admin/table-settings/column_settings_panel.inc.php:924
4977
  msgid ""
4978
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4979
  "page load."
4981
  "Définissez les valeurs qui seront définies comme valeurs de filtre "
4982
  "prédéfinies par défaut lors du chargement de la page."
4983
 
4984
+ #: templates/admin/table-settings/column_settings_panel.inc.php:970
4985
  msgid "Editor input type"
4986
  msgstr "Type d’entrée de l’éditeur"
4987
 
4988
+ #: templates/admin/table-settings/column_settings_panel.inc.php:972
4989
  msgid "Choose which kind of editor input to use for this column."
4990
  msgstr "Choisissez quel type d’éditeur d’entrée à utiliser pour cette colonne."
4991
 
4992
+ #: templates/admin/table-settings/column_settings_panel.inc.php:978
4993
  msgid "None"
4994
  msgstr "Aucun"
4995
 
4996
+ #: templates/admin/table-settings/column_settings_panel.inc.php:979
4997
  msgid "One-line edit"
4998
  msgstr "Modification une ligne"
4999
 
5000
+ #: templates/admin/table-settings/column_settings_panel.inc.php:980
5001
  msgid "Multi-line edit"
5002
  msgstr "Modification multi-lignes"
5003
 
5004
+ #: templates/admin/table-settings/column_settings_panel.inc.php:981
5005
  msgid "HTML editor"
5006
  msgstr "Editeur HTML"
5007
 
5008
+ #: templates/admin/table-settings/column_settings_panel.inc.php:982
5009
  msgid "Single-value selectbox"
5010
  msgstr "Boîte de sélection à valeur unique"
5011
 
5012
+ #: templates/admin/table-settings/column_settings_panel.inc.php:983
5013
  msgid "Multi-value selectbox"
5014
  msgstr "Boîte de sélection multi-valeur"
5015
 
5016
+ #: templates/admin/table-settings/column_settings_panel.inc.php:999
5017
  msgid "Column cannot be empty"
5018
  msgstr "La colonne ne peut pas être vide"
5019
 
5020
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1001
5021
  msgid ""
5022
  "Enable to make this column mandatory. Users will see a warning when trying "
5023
  "to save with empty input."
5025
  "Activer pour rendre cette colonne obligatoire. Les utilisateurs verront un "
5026
  "avertissement lorsqu’ils tenteront d’enregistrer avec une entrée vide."
5027
 
5028
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1007
5029
  msgid "Cannot be empty"
5030
  msgstr "Ne peux pas être vide"
5031
 
5032
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1021
5033
  msgid ""
5034
  "If you would like to have some values pre-defined in editors (i.e. default "
5035
  "editor values) please enter these here."
5037
  "Si vous souhaitez que certaines valeurs soient prédéfinies dans les éditeurs "
5038
  "(c-à-d valeurs d’éditeur par défaut), veuillez les saisir ici."
5039
 
5040
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1067
5041
  msgid "Add New Rule"
5042
  msgstr "Ajouter une nouvelle règle"
5043
 
5044
  #: templates/admin/table-settings/column_small_block.inc.php:16
5045
+ msgid "Enable/disable in global search"
5046
+ msgstr ""
5047
+
5048
+ #: templates/admin/table-settings/column_small_block.inc.php:18
5049
  msgid "Show/hide sorting"
5050
  msgstr "Afficher/masquer le tri"
5051
 
5052
+ #: templates/admin/table-settings/column_small_block.inc.php:20
5053
  msgid "Show/hide the column"
5054
  msgstr "Afficher/masquer la colonne"
5055
 
5056
+ #: templates/admin/table-settings/column_small_block.inc.php:26
5057
  msgid "Open column settings"
5058
  msgstr "Ouvrir les paramètres de colonne"
5059
 
5257
  msgid "Are you sure? There is no undo!"
5258
  msgstr "Êtes-vous sûr? Il n’y a pas d’annulation de changement!"
5259
 
5260
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:9
5261
+ msgid "When working with this table type please note that at the moment:"
5262
+ msgstr ""
5263
+
5264
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:11
5265
+ msgid "There is no sorting, search, or pagination in this table type."
5266
+ msgstr ""
5267
+
5268
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
5269
+ msgid "Creating charts from this table type is not yet possible."
5270
+ msgstr ""
5271
+
5272
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:13
5273
+ msgid ""
5274
+ "If you need those features, please consider creating tables with option "
5275
+ msgstr ""
5276
+
5277
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:17
5278
+ msgid ""
5279
+ "Depends of users requests, we will add it in our road map and implement it "
5280
+ "based on priority. Thank you for understanding."
5281
+ msgstr ""
5282
+
5283
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5284
  msgid "Table preview"
5285
  msgstr ""
5286
 
5287
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:38
5288
  msgid "Desktop"
5289
  msgstr ""
5290
 
5291
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:41
5292
  msgid "Tablet"
5293
  msgstr ""
5294
 
5295
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:44
5296
  msgid "Mobile"
5297
  msgstr ""
5298
 
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 "
7355
  msgid "Insert name for export file"
7356
  msgstr ""
7357
 
7358
+ #~ msgid "Filtering"
7359
+ #~ msgstr "Filtrage"
7360
+
7361
  #~ msgid "tr"
7362
  #~ msgstr "tr"
7363
 
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: 2020-12-25 17:32+0100\n"
5
- "PO-Revision-Date: 2020-12-25 17:32+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: hu\n"
@@ -107,88 +107,88 @@ msgstr ""
107
  msgid "You do not have sufficient permissions to access this page."
108
  msgstr ""
109
 
110
- #: controllers/wdt_functions.php:471
111
  msgid "wpDataChart with provided ID not found!"
112
  msgstr ""
113
 
114
- #: controllers/wdt_functions.php:507 controllers/wdt_functions.php:588
115
  msgid "wpDataTable with provided ID not found!"
116
  msgstr ""
117
 
118
- #: controllers/wdt_functions.php:598
119
  msgid "Provided column is not Integer or Float column type"
120
  msgstr ""
121
 
122
- #: controllers/wdt_functions.php:815
123
  msgid "Choose a table"
124
  msgstr ""
125
 
126
- #: controllers/wdt_functions.php:847
127
  msgid "Interactive Responsive Table"
128
  msgstr ""
129
 
130
- #: controllers/wdt_functions.php:848 controllers/wdt_functions.php:909
131
  msgid "Content"
132
  msgstr ""
133
 
134
- #: controllers/wdt_functions.php:854
135
  msgid "wpDataTable"
136
  msgstr ""
137
 
138
- #: controllers/wdt_functions.php:858
139
  msgid "Choose the wpDataTable from a dropdown"
140
  msgstr ""
141
 
142
- #: controllers/wdt_functions.php:863
143
  msgid "Table view"
144
  msgstr ""
145
 
146
- #: controllers/wdt_functions.php:867
147
  msgid "Regular wpDataTable"
148
  msgstr ""
149
 
150
- #: controllers/wdt_functions.php:869
151
  msgid "Excel-like table"
152
  msgstr ""
153
 
154
- #: controllers/wdt_functions.php:875
155
  msgid "Variable placeholder #1"
156
  msgstr ""
157
 
158
- #: controllers/wdt_functions.php:878 controllers/wdt_functions.php:886
159
- #: controllers/wdt_functions.php:894
160
  msgid "Variables"
161
  msgstr ""
162
 
163
- #: controllers/wdt_functions.php:879
164
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
165
  msgstr ""
166
 
167
- #: controllers/wdt_functions.php:883
168
  msgid "Variable placeholder #2"
169
  msgstr ""
170
 
171
- #: controllers/wdt_functions.php:887
172
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
173
  msgstr ""
174
 
175
- #: controllers/wdt_functions.php:891
176
  msgid "Variable placeholder #3"
177
  msgstr ""
178
 
179
- #: controllers/wdt_functions.php:895
180
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
181
  msgstr ""
182
 
183
- #: controllers/wdt_functions.php:908
184
  msgid "Google or Highcharts chart based on a wpDataTable"
185
  msgstr ""
186
 
187
- #: controllers/wdt_functions.php:915
188
  msgid "wpDataChart"
189
  msgstr ""
190
 
191
- #: controllers/wdt_functions.php:919
192
  msgid "Choose one of wpDataCharts from the list"
193
  msgstr ""
194
 
@@ -317,14 +317,14 @@ msgstr ""
317
  msgid "Manual"
318
  msgstr ""
319
 
320
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2204
321
- #: source/class.wpdatatable.php:2274
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:2213
327
- #: source/class.wpdatatable.php:2284
328
  #: templates/admin/table-settings/table_settings_block.inc.php:1032
329
  msgid "CSV"
330
  msgstr ""
@@ -363,7 +363,7 @@ msgstr ""
363
  msgid "There was an error trying to fetch the table data: "
364
  msgstr ""
365
 
366
- #: source/class.wdtconfigcontroller.php:477
367
  msgid "Table in data source has no rows."
368
  msgstr ""
369
 
@@ -395,18 +395,18 @@ msgstr ""
395
 
396
  #: source/class.wdttools.php:23
397
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
398
- #: templates/admin/table-settings/column_settings_panel.inc.php:968
399
  msgid "Date"
400
  msgstr ""
401
 
402
  #: source/class.wdttools.php:24
403
- #: templates/admin/table-settings/column_settings_panel.inc.php:969
404
  msgid "Datetime"
405
  msgstr ""
406
 
407
  #: source/class.wdttools.php:25
408
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
409
- #: templates/admin/table-settings/column_settings_panel.inc.php:970
410
  msgid "Time"
411
  msgstr ""
412
 
@@ -424,7 +424,7 @@ msgid "Image"
424
  msgstr ""
425
 
426
  #: source/class.wdttools.php:29
427
- #: templates/admin/table-settings/column_settings_panel.inc.php:973
428
  msgid "Attachment"
429
  msgstr ""
430
 
@@ -448,14 +448,14 @@ msgstr ""
448
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
449
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
450
  #: templates/admin/common/HTMLModal.inc.php:43
451
- #: templates/admin/common/linkModal.inc.php:106
452
  #: templates/admin/common/shortcodeModal.inc.php:48
453
  #: templates/admin/common/starModal.inc.php:73
454
  #: templates/admin/constructor/constructor.inc.php:29
455
  #: templates/admin/settings/settings.inc.php:28
456
  #: templates/admin/table-settings/add_column_modal.inc.php:126
457
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
458
- #: templates/admin/table-settings/column_settings_panel.inc.php:1079
459
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
460
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
461
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
@@ -506,8 +506,8 @@ msgstr ""
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:2222
510
- #: source/class.wpdatatable.php:2294
511
  #: templates/admin/table-settings/table_settings_block.inc.php:1033
512
  msgid "Copy"
513
  msgstr ""
@@ -1212,13 +1212,13 @@ msgstr ""
1212
  msgid "You are mixing data types (several date axes and several number)"
1213
  msgstr ""
1214
 
1215
- #: source/class.wpdatatable.php:1883
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:2122 source/class.wpdatatable.php:2125
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
@@ -1226,30 +1226,30 @@ msgstr ""
1226
  msgid "All"
1227
  msgstr ""
1228
 
1229
- #: source/class.wpdatatable.php:2183 source/class.wpdatatable.php:2252
1230
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1231
  msgid "Columns"
1232
  msgstr ""
1233
 
1234
- #: source/class.wpdatatable.php:2193 source/class.wpdatatable.php:2262
1235
  #: templates/admin/table-settings/table_settings_block.inc.php:1030
1236
  msgid "Print"
1237
  msgstr ""
1238
 
1239
- #: source/class.wpdatatable.php:2232 source/class.wpdatatable.php:2305
1240
  #: templates/admin/table-settings/table_settings_block.inc.php:1034
1241
  msgid "PDF"
1242
  msgstr ""
1243
 
1244
- #: source/class.wpdatatable.php:2240
1245
  msgid "Export"
1246
  msgstr ""
1247
 
1248
- #: source/class.wpdatatable.php:2318
1249
  msgid "Search table"
1250
  msgstr ""
1251
 
1252
- #: source/class.wpdatatable.php:2319
1253
  msgid "Showing _MENU_ Entries"
1254
  msgstr "_MENU_ elem megtekintése"
1255
 
@@ -1268,7 +1268,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:496
1272
  msgid "wpDataTables Addons"
1273
  msgstr ""
1274
 
@@ -1282,12 +1282,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:567
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:571
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 +1313,7 @@ msgid "NEW"
1313
  msgstr ""
1314
 
1315
  #: templates/admin/addons/addons.inc.php:40
1316
- #: templates/admin/dashboard/dashboard.inc.php:514
1317
  msgid "Master Detail Tables for wpDataTables"
1318
  msgstr ""
1319
 
@@ -1334,7 +1334,7 @@ msgid "Learn more"
1334
  msgstr ""
1335
 
1336
  #: templates/admin/addons/addons.inc.php:67
1337
- #: templates/admin/dashboard/dashboard.inc.php:541
1338
  msgid "Powerful Filters for wpDataTables"
1339
  msgstr ""
1340
 
@@ -1346,24 +1346,24 @@ msgid ""
1346
  msgstr ""
1347
 
1348
  #: templates/admin/addons/addons.inc.php:120
1349
- #: templates/admin/dashboard/dashboard.inc.php:594
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:598
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:620
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:624
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."
@@ -2204,15 +2204,20 @@ msgid "Open link in the new tab"
2204
  msgstr ""
2205
 
2206
  #: templates/admin/common/linkModal.inc.php:76
 
 
 
 
 
2207
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2208
  msgid "Set the link to appear as a button"
2209
  msgstr ""
2210
 
2211
- #: templates/admin/common/linkModal.inc.php:85
2212
  msgid "Button class:"
2213
  msgstr ""
2214
 
2215
- #: templates/admin/common/linkModal.inc.php:110
2216
  msgid "Insert link"
2217
  msgstr ""
2218
 
@@ -2329,8 +2334,8 @@ msgstr ""
2329
  #: templates/admin/settings/settings.inc.php:96
2330
  #: templates/admin/support/support.inc.php:31
2331
  #: templates/admin/support/support.inc.php:47
2332
- #: templates/admin/system-info/system_info.inc.php:30
2333
- #: templates/admin/table-settings/column_settings_panel.inc.php:1074
2334
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2335
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2336
  #: templates/admin/table-settings/table_settings_block.inc.php:1197
@@ -2355,6 +2360,7 @@ msgid ""
2355
  msgstr ""
2356
 
2357
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
 
2358
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2359
  msgid "Create a data table linked to an existing data source"
2360
  msgstr ""
@@ -2561,162 +2567,180 @@ msgid "Version "
2561
  msgstr ""
2562
 
2563
  #: templates/admin/dashboard/dashboard.inc.php:340
2564
- msgid "A minor update with a couple of bug fixes and stability improvements:"
 
 
2565
  msgstr ""
2566
 
2567
  #: templates/admin/dashboard/dashboard.inc.php:345
2568
  msgid ""
2569
- "<strong>BugFix:</strong> Fixed issue with Fatal errors on Dashboard page if "
2570
- "PHP extensions are not installed."
2571
  msgstr ""
2572
 
2573
  #: templates/admin/dashboard/dashboard.inc.php:346
2574
- msgid "Compatibility with WordPress 5.6 approved."
 
 
2575
  msgstr ""
2576
 
2577
  #: templates/admin/dashboard/dashboard.inc.php:347
2578
- msgid "Compatibility with PHP 8 approved."
 
 
2579
  msgstr ""
2580
 
2581
  #: templates/admin/dashboard/dashboard.inc.php:348
 
 
 
 
 
 
 
 
 
 
 
 
2582
  msgid "Other small bug fixes and stability improvements."
2583
  msgstr ""
2584
 
2585
- #: templates/admin/dashboard/dashboard.inc.php:360
2586
  msgid "Go Premium!"
2587
  msgstr ""
2588
 
2589
- #: templates/admin/dashboard/dashboard.inc.php:366
2590
  msgid "View Comparison"
2591
  msgstr ""
2592
 
2593
- #: templates/admin/dashboard/dashboard.inc.php:374
2594
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2595
  msgid ""
2596
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2597
  "of the powerful features."
2598
  msgstr ""
2599
 
2600
- #: templates/admin/dashboard/dashboard.inc.php:378
2601
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2602
  msgid "Create a table manually"
2603
  msgstr ""
2604
 
2605
- #: templates/admin/dashboard/dashboard.inc.php:381
2606
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2607
  msgid "Creating tables from Google Spreadsheet"
2608
  msgstr ""
2609
 
2610
- #: templates/admin/dashboard/dashboard.inc.php:384
2611
  msgid ""
2612
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2613
  "tables via Google Sheet API"
2614
  msgstr ""
2615
 
2616
- #: templates/admin/dashboard/dashboard.inc.php:387
2617
  msgid ""
2618
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2619
  "tables from Private Google Spreadsheet"
2620
  msgstr ""
2621
 
2622
- #: templates/admin/dashboard/dashboard.inc.php:390
2623
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2624
  msgid "Creating MySQL-based tables from database"
2625
  msgstr ""
2626
 
2627
- #: templates/admin/dashboard/dashboard.inc.php:393
2628
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2629
  msgid "Creating MySQL-based tables from Wordpress post types"
2630
  msgstr ""
2631
 
2632
- #: templates/admin/dashboard/dashboard.inc.php:396
2633
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2634
  #: templates/edit_table.inc.php:329
2635
  msgid "Advanced filtering"
2636
  msgstr ""
2637
 
2638
- #: templates/admin/dashboard/dashboard.inc.php:399
2639
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2640
  #: templates/admin/table-settings/table_settings_block.inc.php:144
2641
  #: templates/edit_table.inc.php:282
2642
  msgid "Server-side processing"
2643
  msgstr ""
2644
 
2645
- #: templates/admin/dashboard/dashboard.inc.php:402
2646
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2647
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2648
  msgstr ""
2649
 
2650
- #: templates/admin/dashboard/dashboard.inc.php:405
2651
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2652
  msgid "Front-end table editing"
2653
  msgstr ""
2654
 
2655
- #: templates/admin/dashboard/dashboard.inc.php:408
2656
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2657
  msgid "Excel-like editing"
2658
  msgstr ""
2659
 
2660
- #: templates/admin/dashboard/dashboard.inc.php:411
2661
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2662
  msgid "Creating charts with Highcharts"
2663
  msgstr ""
2664
 
2665
- #: templates/admin/dashboard/dashboard.inc.php:414
2666
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2667
  msgid "Creating charts with Chart.js"
2668
  msgstr ""
2669
 
2670
- #: templates/admin/dashboard/dashboard.inc.php:417
2671
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2672
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2673
  #: templates/edit_table.inc.php:301
2674
  msgid "Responsive"
2675
  msgstr ""
2676
 
2677
- #: templates/admin/dashboard/dashboard.inc.php:420
2678
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2679
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2680
  #: templates/edit_table.inc.php:750
2681
  msgid "Conditional formatting"
2682
  msgstr ""
2683
 
2684
- #: templates/admin/dashboard/dashboard.inc.php:423
2685
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2686
  msgid "Calculating Tools"
2687
  msgstr ""
2688
 
2689
- #: templates/admin/dashboard/dashboard.inc.php:426
2690
  msgid "Formula columns"
2691
  msgstr ""
2692
 
2693
- #: templates/admin/dashboard/dashboard.inc.php:429
2694
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2695
  #: templates/admin/table-settings/table_settings_block.inc.php:79
2696
  msgid "Placeholders"
2697
  msgstr ""
2698
 
2699
- #: templates/admin/dashboard/dashboard.inc.php:432
2700
  msgid "Premium support"
2701
  msgstr ""
2702
 
2703
- #: templates/admin/dashboard/dashboard.inc.php:436
2704
  msgid "Get Premium Today"
2705
  msgstr ""
2706
 
2707
- #: templates/admin/dashboard/dashboard.inc.php:443
2708
  msgid "News Blog"
2709
  msgstr ""
2710
 
2711
- #: templates/admin/dashboard/dashboard.inc.php:448
2712
  msgid "Checkout useful articles from wpdatatables.com"
2713
  msgstr ""
2714
 
2715
- #: templates/admin/dashboard/dashboard.inc.php:471
2716
  msgid "Please install and enable PHP extensions xml and dom on your server."
2717
  msgstr ""
2718
 
2719
- #: templates/admin/dashboard/dashboard.inc.php:479
2720
  msgid ""
2721
  "Never miss notifications about new cool features, promotions,\n"
2722
  " giveaways or freebies – subscribe to our "
@@ -2724,92 +2748,92 @@ msgid ""
2724
  " about 1 message per month and never spam!"
2725
  msgstr ""
2726
 
2727
- #: templates/admin/dashboard/dashboard.inc.php:497
2728
  msgid "Premium "
2729
  msgstr ""
2730
 
2731
- #: templates/admin/dashboard/dashboard.inc.php:500
2732
  msgid ""
2733
  "While wpDataTables itself provides quite a large amount of features and "
2734
  "unlimited customisation, flexibility, you can achieve even more with our "
2735
  "premium addons.(requires wpDataTables Premium version)"
2736
  msgstr ""
2737
 
2738
- #: templates/admin/dashboard/dashboard.inc.php:518
2739
  msgid ""
2740
  "A wpDataTables addon which allows showing additional details for a specific "
2741
  "row in a popup or a separate page or post."
2742
  msgstr ""
2743
 
2744
- #: templates/admin/dashboard/dashboard.inc.php:524
2745
- #: templates/admin/dashboard/dashboard.inc.php:551
2746
- #: templates/admin/dashboard/dashboard.inc.php:577
2747
- #: templates/admin/dashboard/dashboard.inc.php:604
2748
- #: templates/admin/dashboard/dashboard.inc.php:630
2749
- #: templates/admin/dashboard/dashboard.inc.php:663
2750
  msgid "Learn More"
2751
  msgstr ""
2752
 
2753
- #: templates/admin/dashboard/dashboard.inc.php:545
2754
  msgid ""
2755
  "An add-on for wpDataTables that provides powerful filtering features: "
2756
  "cascade filtering, applying filters on button click, hide table before "
2757
  "filtering."
2758
  msgstr ""
2759
 
2760
- #: templates/admin/dashboard/dashboard.inc.php:641
2761
  msgid "Need free booking plugin?"
2762
  msgstr ""
2763
 
2764
- #: templates/admin/dashboard/dashboard.inc.php:650
2765
  msgid "Appointments and Events WordPress Booking Plugin"
2766
  msgstr ""
2767
 
2768
- #: templates/admin/dashboard/dashboard.inc.php:653
2769
  msgid ""
2770
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2771
  "set up a fully-featured automated booking system on your WordPress website "
2772
  "and is a handy tool for small businesses and individuals that depend on "
2773
- "stable appointment booking processes. 10,000+ businesses from healthcare, "
2774
  "beauty, sports, automotive, educational, creative, HR and other industries "
2775
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
2776
  "each month."
2777
  msgstr ""
2778
 
2779
- #: templates/admin/dashboard/dashboard.inc.php:656
2780
- msgid "Rating: 4.3 - ‎68 reviews"
2781
  msgstr ""
2782
 
2783
- #: templates/admin/dashboard/dashboard.inc.php:659
2784
  msgid "Free Download"
2785
  msgstr ""
2786
 
2787
- #: templates/admin/dashboard/dashboard.inc.php:674
2788
  #: templates/admin/getting-started/getting_started.inc.php:184
2789
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2790
  #: templates/admin/support/support.inc.php:78
2791
- #: templates/admin/system-info/system_info.inc.php:510
2792
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2793
  msgid "Made by"
2794
  msgstr ""
2795
 
2796
- #: templates/admin/dashboard/dashboard.inc.php:682
2797
  #: templates/admin/getting-started/getting_started.inc.php:192
2798
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2799
  #: templates/admin/support/support.inc.php:45
2800
  #: templates/admin/support/support.inc.php:86
2801
- #: templates/admin/system-info/system_info.inc.php:518
2802
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2803
  #: templates/admin/welcome_page/welcome_page.inc.php:369
2804
  msgid "Documentation"
2805
  msgstr ""
2806
 
2807
- #: templates/admin/dashboard/dashboard.inc.php:686
2808
  #: templates/admin/getting-started/getting_started.inc.php:196
2809
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2810
  #: templates/admin/support/support.inc.php:24
2811
  #: templates/admin/support/support.inc.php:90
2812
- #: templates/admin/system-info/system_info.inc.php:522
2813
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2814
  msgid "Support Center"
2815
  msgstr ""
@@ -3061,7 +3085,7 @@ msgstr ""
3061
  #: templates/admin/settings/settings.inc.php:33
3062
  #: templates/admin/settings/settings.inc.php:91
3063
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3064
- #: templates/admin/table-settings/column_settings_panel.inc.php:1082
3065
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3066
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3067
  #: templates/admin/table-settings/table_preview_block.inc.php:89
@@ -3547,13 +3571,13 @@ msgid ""
3547
  msgstr ""
3548
 
3549
  #: templates/admin/settings/tabs/main_plugin_settings.php:216
3550
- #: templates/admin/table-settings/column_settings_panel.inc.php:767
3551
  #: templates/edit_table.inc.php:663
3552
  msgid "Ascending"
3553
  msgstr ""
3554
 
3555
  #: templates/admin/settings/tabs/main_plugin_settings.php:217
3556
- #: templates/admin/table-settings/column_settings_panel.inc.php:768
3557
  #: templates/edit_table.inc.php:665
3558
  msgid "Descending"
3559
  msgstr ""
@@ -3819,35 +3843,35 @@ msgstr ""
3819
  msgid "Open a topic"
3820
  msgstr ""
3821
 
3822
- #: templates/admin/system-info/system_info.inc.php:23
3823
  msgid "System Info"
3824
  msgstr ""
3825
 
3826
- #: templates/admin/system-info/system_info.inc.php:62
3827
  msgid "The URL of your site's homepage."
3828
  msgstr ""
3829
 
3830
- #: templates/admin/system-info/system_info.inc.php:69
3831
  msgid "The root URL of your site."
3832
  msgstr ""
3833
 
3834
- #: templates/admin/system-info/system_info.inc.php:76
3835
  msgid "System path of your wp-content directory."
3836
  msgstr ""
3837
 
3838
- #: templates/admin/system-info/system_info.inc.php:83
3839
  msgid "System path of your WP root directory."
3840
  msgstr ""
3841
 
3842
- #: templates/admin/system-info/system_info.inc.php:90
3843
  msgid "The version of WordPress installed on your site."
3844
  msgstr ""
3845
 
3846
- #: templates/admin/system-info/system_info.inc.php:97
3847
  msgid "Whether or not you have WordPress Multisite enabled."
3848
  msgstr ""
3849
 
3850
- #: templates/admin/system-info/system_info.inc.php:121
3851
  #, php-format
3852
  msgid ""
3853
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
@@ -3856,35 +3880,35 @@ msgid ""
3856
  "noreferrer\">Increasing memory allocated to PHP.</a>"
3857
  msgstr ""
3858
 
3859
- #: templates/admin/system-info/system_info.inc.php:131
3860
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
3861
  msgstr ""
3862
 
3863
- #: templates/admin/system-info/system_info.inc.php:144
3864
  msgid "Displays whether or not WordPress is in Debug Mode."
3865
  msgstr ""
3866
 
3867
- #: templates/admin/system-info/system_info.inc.php:151
3868
  msgid "The current language used by WordPress. Default = English"
3869
  msgstr ""
3870
 
3871
- #: templates/admin/system-info/system_info.inc.php:171
3872
  msgid "Information about your operating system."
3873
  msgstr ""
3874
 
3875
- #: templates/admin/system-info/system_info.inc.php:179
3876
  msgid "Information about the web server that is currently hosting your site."
3877
  msgstr ""
3878
 
3879
- #: templates/admin/system-info/system_info.inc.php:221
3880
  msgid "The version of PHP installed on your hosting server."
3881
  msgstr ""
3882
 
3883
- #: templates/admin/system-info/system_info.inc.php:232
3884
  msgid "The largest file size that can be contained in one post."
3885
  msgstr ""
3886
 
3887
- #: templates/admin/system-info/system_info.inc.php:241
3888
  #, php-format
3889
  msgid ""
3890
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
@@ -3892,69 +3916,69 @@ msgid ""
3892
  "\">Increasing max execution to PHP</a>"
3893
  msgstr ""
3894
 
3895
- #: templates/admin/system-info/system_info.inc.php:249
3896
  msgid ""
3897
  "The amount of time (in seconds) that your site will spend on a single "
3898
  "operation before timing out (to avoid server lockups)"
3899
  msgstr ""
3900
 
3901
- #: templates/admin/system-info/system_info.inc.php:264
3902
  msgid "The version of MySQL installed on your hosting server."
3903
  msgstr ""
3904
 
3905
- #: templates/admin/system-info/system_info.inc.php:272
3906
  msgid ""
3907
  "The largest file size that can be uploaded to your WordPress installation."
3908
  msgstr ""
3909
 
3910
- #: templates/admin/system-info/system_info.inc.php:294
3911
  msgid "Multibyte String (mbstring) is used to convert character encoding."
3912
  msgstr ""
3913
 
3914
- #: templates/admin/system-info/system_info.inc.php:312
3915
  msgid ""
3916
  "XML support is something that needs to be installed on the server for proper "
3917
  "wpDataTables functionality."
3918
  msgstr ""
3919
 
3920
- #: templates/admin/system-info/system_info.inc.php:330
3921
  msgid ""
3922
  "DOM support is something that needs to be installed on the server for proper "
3923
  "wpDataTables functionality."
3924
  msgstr ""
3925
 
3926
- #: templates/admin/system-info/system_info.inc.php:356
3927
  msgid "Multibyte String (mbstring) require libxml to be installed. "
3928
  msgstr ""
3929
 
3930
- #: templates/admin/system-info/system_info.inc.php:375
3931
  msgid ""
3932
  "ZIP support is something that needs to be installed on the server, as a "
3933
  "package for the Linux operating system, or rather to the PHP software on the "
3934
  "server."
3935
  msgstr ""
3936
 
3937
- #: templates/admin/system-info/system_info.inc.php:395
3938
  msgid "wpDataTables use cURL for getting data from other servers."
3939
  msgstr ""
3940
 
3941
- #: templates/admin/system-info/system_info.inc.php:418
3942
  msgid "The name of the current active theme."
3943
  msgstr ""
3944
 
3945
- #: templates/admin/system-info/system_info.inc.php:429
3946
  msgid "The installed version of the current active theme."
3947
  msgstr ""
3948
 
3949
- #: templates/admin/system-info/system_info.inc.php:436
3950
  msgid "The theme developers."
3951
  msgstr ""
3952
 
3953
- #: templates/admin/system-info/system_info.inc.php:442
3954
  msgid "The theme developers URL."
3955
  msgstr ""
3956
 
3957
- #: templates/admin/system-info/system_info.inc.php:479
3958
  msgid "Visit plugin homepage"
3959
  msgstr ""
3960
 
@@ -4015,7 +4039,7 @@ msgid "Data"
4015
  msgstr ""
4016
 
4017
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4018
- msgid "Filtering"
4019
  msgstr ""
4020
 
4021
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
@@ -4147,12 +4171,12 @@ msgid "DateTime"
4147
  msgstr ""
4148
 
4149
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4150
- #: templates/admin/table-settings/column_settings_panel.inc.php:971
4151
  msgid "URL link"
4152
  msgstr ""
4153
 
4154
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4155
- #: templates/admin/table-settings/column_settings_panel.inc.php:972
4156
  msgid "E-mail link"
4157
  msgstr ""
4158
 
@@ -4400,199 +4424,226 @@ msgstr ""
4400
  msgid "Button class"
4401
  msgstr ""
4402
 
4403
- #: templates/admin/table-settings/column_settings_panel.inc.php:724
 
 
 
 
 
 
 
 
4404
  msgid "Allow sorting"
4405
  msgstr ""
4406
 
4407
- #: templates/admin/table-settings/column_settings_panel.inc.php:726
4408
  msgid "Disable this to disallow sorting for this column."
4409
  msgstr ""
4410
 
4411
- #: templates/admin/table-settings/column_settings_panel.inc.php:732
4412
  msgid "Allow sorting for this column"
4413
  msgstr ""
4414
 
4415
- #: templates/admin/table-settings/column_settings_panel.inc.php:739
4416
  msgid "Use as default sorting column"
4417
  msgstr ""
4418
 
4419
- #: templates/admin/table-settings/column_settings_panel.inc.php:741
4420
- #: templates/admin/table-settings/column_settings_panel.inc.php:747
4421
  msgid "Sort table by this column on load"
4422
  msgstr ""
4423
 
4424
- #: templates/admin/table-settings/column_settings_panel.inc.php:758
4425
  msgid "Default sorting direction"
4426
  msgstr ""
4427
 
4428
- #: templates/admin/table-settings/column_settings_panel.inc.php:760
4429
  msgid "Choose whether to sort ascending or descending by default."
4430
  msgstr ""
4431
 
4432
- #: templates/admin/table-settings/column_settings_panel.inc.php:793
4433
  msgid "Add a filter for this column"
4434
  msgstr ""
4435
 
4436
- #: templates/admin/table-settings/column_settings_panel.inc.php:801
4437
  msgid "Enable filtering for column"
4438
  msgstr ""
4439
 
4440
- #: templates/admin/table-settings/column_settings_panel.inc.php:808
4441
  msgid ""
4442
  "Enabling this switch will add a filter for this column. Disable to remove "
4443
  "the filter for this column."
4444
  msgstr ""
4445
 
4446
- #: templates/admin/table-settings/column_settings_panel.inc.php:817
4447
  msgid "Allow filtering"
4448
  msgstr ""
4449
 
4450
- #: templates/admin/table-settings/column_settings_panel.inc.php:824
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4451
  #: templates/edit_table.inc.php:570
4452
  msgid "Filter type"
4453
  msgstr ""
4454
 
4455
- #: templates/admin/table-settings/column_settings_panel.inc.php:826
4456
  msgid ""
4457
  "You can redefine the filter type here, it will affect the filtering logic."
4458
  msgstr ""
4459
 
4460
- #: templates/admin/table-settings/column_settings_panel.inc.php:833
4461
  msgid "Text"
4462
  msgstr ""
4463
 
4464
- #: templates/admin/table-settings/column_settings_panel.inc.php:834
4465
  msgid "Number"
4466
  msgstr ""
4467
 
4468
- #: templates/admin/table-settings/column_settings_panel.inc.php:835
4469
  msgid "Number range"
4470
  msgstr ""
4471
 
4472
- #: templates/admin/table-settings/column_settings_panel.inc.php:836
4473
  msgid "Date range"
4474
  msgstr ""
4475
 
4476
- #: templates/admin/table-settings/column_settings_panel.inc.php:837
4477
  msgid "DateTime range"
4478
  msgstr ""
4479
 
4480
- #: templates/admin/table-settings/column_settings_panel.inc.php:838
4481
  msgid "Time range"
4482
  msgstr ""
4483
 
4484
- #: templates/admin/table-settings/column_settings_panel.inc.php:839
4485
  msgid "Selectbox"
4486
  msgstr ""
4487
 
4488
- #: templates/admin/table-settings/column_settings_panel.inc.php:840
4489
  msgid "Checkbox"
4490
  msgstr ""
4491
 
4492
- #: templates/admin/table-settings/column_settings_panel.inc.php:856
4493
  msgid "Filter label"
4494
  msgstr ""
4495
 
4496
- #: templates/admin/table-settings/column_settings_panel.inc.php:864
4497
  msgid "Custom filter label"
4498
  msgstr ""
4499
 
4500
- #: templates/admin/table-settings/column_settings_panel.inc.php:871
4501
  msgid ""
4502
  "You can change the filter label (placeholder) for this column here, if you "
4503
  "would like to show some custom text instead of default."
4504
  msgstr ""
4505
 
4506
- #: templates/admin/table-settings/column_settings_panel.inc.php:886
4507
  msgid "Exact filtering"
4508
  msgstr ""
4509
 
4510
- #: templates/admin/table-settings/column_settings_panel.inc.php:888
4511
  msgid ""
4512
  "Enable exact search to use exact match logic for filtering, disable to allow "
4513
  "partial match."
4514
  msgstr ""
4515
 
4516
- #: templates/admin/table-settings/column_settings_panel.inc.php:894
4517
  msgid "Enable exact filtering"
4518
  msgstr ""
4519
 
4520
- #: templates/admin/table-settings/column_settings_panel.inc.php:906
4521
- #: templates/admin/table-settings/column_settings_panel.inc.php:1003
4522
  msgid "Predefined value(s)"
4523
  msgstr ""
4524
 
4525
- #: templates/admin/table-settings/column_settings_panel.inc.php:908
4526
  msgid ""
4527
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4528
  "page load."
4529
  msgstr ""
4530
 
4531
- #: templates/admin/table-settings/column_settings_panel.inc.php:954
4532
  msgid "Editor input type"
4533
  msgstr ""
4534
 
4535
- #: templates/admin/table-settings/column_settings_panel.inc.php:956
4536
  msgid "Choose which kind of editor input to use for this column."
4537
  msgstr ""
4538
 
4539
- #: templates/admin/table-settings/column_settings_panel.inc.php:962
4540
  msgid "None"
4541
  msgstr ""
4542
 
4543
- #: templates/admin/table-settings/column_settings_panel.inc.php:963
4544
  msgid "One-line edit"
4545
  msgstr ""
4546
 
4547
- #: templates/admin/table-settings/column_settings_panel.inc.php:964
4548
  msgid "Multi-line edit"
4549
  msgstr ""
4550
 
4551
- #: templates/admin/table-settings/column_settings_panel.inc.php:965
4552
  msgid "HTML editor"
4553
  msgstr ""
4554
 
4555
- #: templates/admin/table-settings/column_settings_panel.inc.php:966
4556
  msgid "Single-value selectbox"
4557
  msgstr ""
4558
 
4559
- #: templates/admin/table-settings/column_settings_panel.inc.php:967
4560
  msgid "Multi-value selectbox"
4561
  msgstr ""
4562
 
4563
- #: templates/admin/table-settings/column_settings_panel.inc.php:983
4564
  msgid "Column cannot be empty"
4565
  msgstr ""
4566
 
4567
- #: templates/admin/table-settings/column_settings_panel.inc.php:985
4568
  msgid ""
4569
  "Enable to make this column mandatory. Users will see a warning when trying "
4570
  "to save with empty input."
4571
  msgstr ""
4572
 
4573
- #: templates/admin/table-settings/column_settings_panel.inc.php:991
4574
  msgid "Cannot be empty"
4575
  msgstr ""
4576
 
4577
- #: templates/admin/table-settings/column_settings_panel.inc.php:1005
4578
  msgid ""
4579
  "If you would like to have some values pre-defined in editors (i.e. default "
4580
  "editor values) please enter these here."
4581
  msgstr ""
4582
 
4583
- #: templates/admin/table-settings/column_settings_panel.inc.php:1051
4584
  msgid "Add New Rule"
4585
  msgstr ""
4586
 
4587
  #: templates/admin/table-settings/column_small_block.inc.php:16
4588
- msgid "Show/hide sorting"
4589
  msgstr ""
4590
 
4591
  #: templates/admin/table-settings/column_small_block.inc.php:18
 
 
 
 
4592
  msgid "Show/hide the column"
4593
  msgstr ""
4594
 
4595
- #: templates/admin/table-settings/column_small_block.inc.php:24
4596
  msgid "Open column settings"
4597
  msgstr ""
4598
 
@@ -4776,19 +4827,42 @@ msgstr ""
4776
  msgid "Are you sure? There is no undo!"
4777
  msgstr ""
4778
 
 
 
 
 
 
 
 
 
4779
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4780
  msgid "Table preview"
4781
  msgstr ""
4782
 
4783
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:22
4784
  msgid "Desktop"
4785
  msgstr ""
4786
 
4787
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:25
4788
  msgid "Tablet"
4789
  msgstr ""
4790
 
4791
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
4792
  msgid "Mobile"
4793
  msgstr ""
4794
 
@@ -5426,10 +5500,6 @@ msgstr ""
5426
  msgid "Main search block"
5427
  msgstr ""
5428
 
5429
- #: templates/admin/table-settings/table_settings_block.inc.php:665
5430
- msgid "Global search"
5431
- msgstr ""
5432
-
5433
  #: templates/admin/table-settings/table_settings_block.inc.php:672
5434
  msgid ""
5435
  "If this is enabled, a search block will be displayed on the top right of the "
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"
107
  msgid "You do not have sufficient permissions to access this page."
108
  msgstr ""
109
 
110
+ #: controllers/wdt_functions.php:486
111
  msgid "wpDataChart with provided ID not found!"
112
  msgstr ""
113
 
114
+ #: controllers/wdt_functions.php:522 controllers/wdt_functions.php:603
115
  msgid "wpDataTable with provided ID not found!"
116
  msgstr ""
117
 
118
+ #: controllers/wdt_functions.php:613
119
  msgid "Provided column is not Integer or Float column type"
120
  msgstr ""
121
 
122
+ #: controllers/wdt_functions.php:830
123
  msgid "Choose a table"
124
  msgstr ""
125
 
126
+ #: controllers/wdt_functions.php:862
127
  msgid "Interactive Responsive Table"
128
  msgstr ""
129
 
130
+ #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
131
  msgid "Content"
132
  msgstr ""
133
 
134
+ #: controllers/wdt_functions.php:869
135
  msgid "wpDataTable"
136
  msgstr ""
137
 
138
+ #: controllers/wdt_functions.php:873
139
  msgid "Choose the wpDataTable from a dropdown"
140
  msgstr ""
141
 
142
+ #: controllers/wdt_functions.php:878
143
  msgid "Table view"
144
  msgstr ""
145
 
146
+ #: controllers/wdt_functions.php:882
147
  msgid "Regular wpDataTable"
148
  msgstr ""
149
 
150
+ #: controllers/wdt_functions.php:884
151
  msgid "Excel-like table"
152
  msgstr ""
153
 
154
+ #: controllers/wdt_functions.php:890
155
  msgid "Variable placeholder #1"
156
  msgstr ""
157
 
158
+ #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
159
+ #: controllers/wdt_functions.php:909
160
  msgid "Variables"
161
  msgstr ""
162
 
163
+ #: controllers/wdt_functions.php:894
164
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
165
  msgstr ""
166
 
167
+ #: controllers/wdt_functions.php:898
168
  msgid "Variable placeholder #2"
169
  msgstr ""
170
 
171
+ #: controllers/wdt_functions.php:902
172
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
173
  msgstr ""
174
 
175
+ #: controllers/wdt_functions.php:906
176
  msgid "Variable placeholder #3"
177
  msgstr ""
178
 
179
+ #: controllers/wdt_functions.php:910
180
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
181
  msgstr ""
182
 
183
+ #: controllers/wdt_functions.php:923
184
  msgid "Google or Highcharts chart based on a wpDataTable"
185
  msgstr ""
186
 
187
+ #: controllers/wdt_functions.php:930
188
  msgid "wpDataChart"
189
  msgstr ""
190
 
191
+ #: controllers/wdt_functions.php:934
192
  msgid "Choose one of wpDataCharts from the list"
193
  msgstr ""
194
 
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 ""
363
  msgid "There was an error trying to fetch the table data: "
364
  msgstr ""
365
 
366
+ #: source/class.wdtconfigcontroller.php:479
367
  msgid "Table in data source has no rows."
368
  msgstr ""
369
 
395
 
396
  #: source/class.wdttools.php:23
397
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
398
+ #: templates/admin/table-settings/column_settings_panel.inc.php:984
399
  msgid "Date"
400
  msgstr ""
401
 
402
  #: source/class.wdttools.php:24
403
+ #: templates/admin/table-settings/column_settings_panel.inc.php:985
404
  msgid "Datetime"
405
  msgstr ""
406
 
407
  #: source/class.wdttools.php:25
408
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
409
+ #: templates/admin/table-settings/column_settings_panel.inc.php:986
410
  msgid "Time"
411
  msgstr ""
412
 
424
  msgstr ""
425
 
426
  #: source/class.wdttools.php:29
427
+ #: templates/admin/table-settings/column_settings_panel.inc.php:989
428
  msgid "Attachment"
429
  msgstr ""
430
 
448
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
449
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
450
  #: templates/admin/common/HTMLModal.inc.php:43
451
+ #: templates/admin/common/linkModal.inc.php:117
452
  #: templates/admin/common/shortcodeModal.inc.php:48
453
  #: templates/admin/common/starModal.inc.php:73
454
  #: templates/admin/constructor/constructor.inc.php:29
455
  #: templates/admin/settings/settings.inc.php:28
456
  #: templates/admin/table-settings/add_column_modal.inc.php:126
457
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
458
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1095
459
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
460
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
461
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
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 ""
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
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
  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
  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
  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
  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
  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."
2204
  msgstr ""
2205
 
2206
  #: templates/admin/common/linkModal.inc.php:76
2207
+ #: templates/admin/table-settings/column_settings_panel.inc.php:720
2208
+ msgid "Make NOFOLLOW link"
2209
+ msgstr ""
2210
+
2211
+ #: templates/admin/common/linkModal.inc.php:87
2212
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2213
  msgid "Set the link to appear as a button"
2214
  msgstr ""
2215
 
2216
+ #: templates/admin/common/linkModal.inc.php:96
2217
  msgid "Button class:"
2218
  msgstr ""
2219
 
2220
+ #: templates/admin/common/linkModal.inc.php:121
2221
  msgid "Insert link"
2222
  msgstr ""
2223
 
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
2360
  msgstr ""
2361
 
2362
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
2363
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:14
2364
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2365
  msgid "Create a data table linked to an existing data source"
2366
  msgstr ""
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
  " 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 "
2796
  "and is a handy tool for small businesses and individuals that depend on "
2797
+ "stable appointment booking processes. 20,000+ businesses from healthcare, "
2798
  "beauty, sports, automotive, educational, creative, HR and other industries "
2799
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
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
2826
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2827
  #: templates/admin/welcome_page/welcome_page.inc.php:369
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
2837
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2838
  msgid "Support Center"
2839
  msgstr ""
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
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 ""
3843
  msgid "Open a topic"
3844
  msgstr ""
3845
 
3846
+ #: templates/admin/system-info/system_info.inc.php:22
3847
  msgid "System Info"
3848
  msgstr ""
3849
 
3850
+ #: templates/admin/system-info/system_info.inc.php:61
3851
  msgid "The URL of your site's homepage."
3852
  msgstr ""
3853
 
3854
+ #: templates/admin/system-info/system_info.inc.php:68
3855
  msgid "The root URL of your site."
3856
  msgstr ""
3857
 
3858
+ #: templates/admin/system-info/system_info.inc.php:75
3859
  msgid "System path of your wp-content directory."
3860
  msgstr ""
3861
 
3862
+ #: templates/admin/system-info/system_info.inc.php:82
3863
  msgid "System path of your WP root directory."
3864
  msgstr ""
3865
 
3866
+ #: templates/admin/system-info/system_info.inc.php:89
3867
  msgid "The version of WordPress installed on your site."
3868
  msgstr ""
3869
 
3870
+ #: templates/admin/system-info/system_info.inc.php:96
3871
  msgid "Whether or not you have WordPress Multisite enabled."
3872
  msgstr ""
3873
 
3874
+ #: templates/admin/system-info/system_info.inc.php:120
3875
  #, php-format
3876
  msgid ""
3877
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
3880
  "noreferrer\">Increasing memory allocated to PHP.</a>"
3881
  msgstr ""
3882
 
3883
+ #: templates/admin/system-info/system_info.inc.php:130
3884
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
3885
  msgstr ""
3886
 
3887
+ #: templates/admin/system-info/system_info.inc.php:143
3888
  msgid "Displays whether or not WordPress is in Debug Mode."
3889
  msgstr ""
3890
 
3891
+ #: templates/admin/system-info/system_info.inc.php:150
3892
  msgid "The current language used by WordPress. Default = English"
3893
  msgstr ""
3894
 
3895
+ #: templates/admin/system-info/system_info.inc.php:170
3896
  msgid "Information about your operating system."
3897
  msgstr ""
3898
 
3899
+ #: templates/admin/system-info/system_info.inc.php:178
3900
  msgid "Information about the web server that is currently hosting your site."
3901
  msgstr ""
3902
 
3903
+ #: templates/admin/system-info/system_info.inc.php:220
3904
  msgid "The version of PHP installed on your hosting server."
3905
  msgstr ""
3906
 
3907
+ #: templates/admin/system-info/system_info.inc.php:231
3908
  msgid "The largest file size that can be contained in one post."
3909
  msgstr ""
3910
 
3911
+ #: templates/admin/system-info/system_info.inc.php:240
3912
  #, php-format
3913
  msgid ""
3914
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
3916
  "\">Increasing max execution to PHP</a>"
3917
  msgstr ""
3918
 
3919
+ #: templates/admin/system-info/system_info.inc.php:248
3920
  msgid ""
3921
  "The amount of time (in seconds) that your site will spend on a single "
3922
  "operation before timing out (to avoid server lockups)"
3923
  msgstr ""
3924
 
3925
+ #: templates/admin/system-info/system_info.inc.php:263
3926
  msgid "The version of MySQL installed on your hosting server."
3927
  msgstr ""
3928
 
3929
+ #: templates/admin/system-info/system_info.inc.php:271
3930
  msgid ""
3931
  "The largest file size that can be uploaded to your WordPress installation."
3932
  msgstr ""
3933
 
3934
+ #: templates/admin/system-info/system_info.inc.php:293
3935
  msgid "Multibyte String (mbstring) is used to convert character encoding."
3936
  msgstr ""
3937
 
3938
+ #: templates/admin/system-info/system_info.inc.php:311
3939
  msgid ""
3940
  "XML support is something that needs to be installed on the server for proper "
3941
  "wpDataTables functionality."
3942
  msgstr ""
3943
 
3944
+ #: templates/admin/system-info/system_info.inc.php:329
3945
  msgid ""
3946
  "DOM support is something that needs to be installed on the server for proper "
3947
  "wpDataTables functionality."
3948
  msgstr ""
3949
 
3950
+ #: templates/admin/system-info/system_info.inc.php:355
3951
  msgid "Multibyte String (mbstring) require libxml to be installed. "
3952
  msgstr ""
3953
 
3954
+ #: templates/admin/system-info/system_info.inc.php:374
3955
  msgid ""
3956
  "ZIP support is something that needs to be installed on the server, as a "
3957
  "package for the Linux operating system, or rather to the PHP software on the "
3958
  "server."
3959
  msgstr ""
3960
 
3961
+ #: templates/admin/system-info/system_info.inc.php:394
3962
  msgid "wpDataTables use cURL for getting data from other servers."
3963
  msgstr ""
3964
 
3965
+ #: templates/admin/system-info/system_info.inc.php:417
3966
  msgid "The name of the current active theme."
3967
  msgstr ""
3968
 
3969
+ #: templates/admin/system-info/system_info.inc.php:428
3970
  msgid "The installed version of the current active theme."
3971
  msgstr ""
3972
 
3973
+ #: templates/admin/system-info/system_info.inc.php:435
3974
  msgid "The theme developers."
3975
  msgstr ""
3976
 
3977
+ #: templates/admin/system-info/system_info.inc.php:441
3978
  msgid "The theme developers URL."
3979
  msgstr ""
3980
 
3981
+ #: templates/admin/system-info/system_info.inc.php:478
3982
  msgid "Visit plugin homepage"
3983
  msgstr ""
3984
 
4039
  msgstr ""
4040
 
4041
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4042
+ msgid "Global Filtering"
4043
  msgstr ""
4044
 
4045
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4171
  msgstr ""
4172
 
4173
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4174
+ #: templates/admin/table-settings/column_settings_panel.inc.php:987
4175
  msgid "URL link"
4176
  msgstr ""
4177
 
4178
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4179
+ #: templates/admin/table-settings/column_settings_panel.inc.php:988
4180
  msgid "E-mail link"
4181
  msgstr ""
4182
 
4424
  msgid "Button class"
4425
  msgstr ""
4426
 
4427
+ #: templates/admin/table-settings/column_settings_panel.inc.php:712
4428
+ msgid "URL relation attribute"
4429
+ msgstr ""
4430
+
4431
+ #: templates/admin/table-settings/column_settings_panel.inc.php:714
4432
+ msgid "Set the link relation"
4433
+ msgstr ""
4434
+
4435
+ #: templates/admin/table-settings/column_settings_panel.inc.php:740
4436
  msgid "Allow sorting"
4437
  msgstr ""
4438
 
4439
+ #: templates/admin/table-settings/column_settings_panel.inc.php:742
4440
  msgid "Disable this to disallow sorting for this column."
4441
  msgstr ""
4442
 
4443
+ #: templates/admin/table-settings/column_settings_panel.inc.php:748
4444
  msgid "Allow sorting for this column"
4445
  msgstr ""
4446
 
4447
+ #: templates/admin/table-settings/column_settings_panel.inc.php:755
4448
  msgid "Use as default sorting column"
4449
  msgstr ""
4450
 
4451
+ #: templates/admin/table-settings/column_settings_panel.inc.php:757
4452
+ #: templates/admin/table-settings/column_settings_panel.inc.php:763
4453
  msgid "Sort table by this column on load"
4454
  msgstr ""
4455
 
4456
+ #: templates/admin/table-settings/column_settings_panel.inc.php:774
4457
  msgid "Default sorting direction"
4458
  msgstr ""
4459
 
4460
+ #: templates/admin/table-settings/column_settings_panel.inc.php:776
4461
  msgid "Choose whether to sort ascending or descending by default."
4462
  msgstr ""
4463
 
4464
+ #: templates/admin/table-settings/column_settings_panel.inc.php:803
4465
  msgid "Add a filter for this column"
4466
  msgstr ""
4467
 
4468
+ #: templates/admin/table-settings/column_settings_panel.inc.php:811
4469
  msgid "Enable filtering for column"
4470
  msgstr ""
4471
 
4472
+ #: templates/admin/table-settings/column_settings_panel.inc.php:818
4473
  msgid ""
4474
  "Enabling this switch will add a filter for this column. Disable to remove "
4475
  "the filter for this column."
4476
  msgstr ""
4477
 
4478
+ #: templates/admin/table-settings/column_settings_panel.inc.php:827
4479
  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
+
4487
+ #: templates/admin/table-settings/column_settings_panel.inc.php:836
4488
+ msgid ""
4489
+ "If this option is turned off, the column data will not appear in your global "
4490
+ "search results."
4491
+ msgstr ""
4492
+
4493
+ #: templates/admin/table-settings/column_settings_panel.inc.php:842
4494
+ msgid "Enable this column in Global search"
4495
+ msgstr ""
4496
+
4497
+ #: templates/admin/table-settings/column_settings_panel.inc.php:850
4498
  #: templates/edit_table.inc.php:570
4499
  msgid "Filter type"
4500
  msgstr ""
4501
 
4502
+ #: templates/admin/table-settings/column_settings_panel.inc.php:852
4503
  msgid ""
4504
  "You can redefine the filter type here, it will affect the filtering logic."
4505
  msgstr ""
4506
 
4507
+ #: templates/admin/table-settings/column_settings_panel.inc.php:859
4508
  msgid "Text"
4509
  msgstr ""
4510
 
4511
+ #: templates/admin/table-settings/column_settings_panel.inc.php:860
4512
  msgid "Number"
4513
  msgstr ""
4514
 
4515
+ #: templates/admin/table-settings/column_settings_panel.inc.php:861
4516
  msgid "Number range"
4517
  msgstr ""
4518
 
4519
+ #: templates/admin/table-settings/column_settings_panel.inc.php:862
4520
  msgid "Date range"
4521
  msgstr ""
4522
 
4523
+ #: templates/admin/table-settings/column_settings_panel.inc.php:863
4524
  msgid "DateTime range"
4525
  msgstr ""
4526
 
4527
+ #: templates/admin/table-settings/column_settings_panel.inc.php:864
4528
  msgid "Time range"
4529
  msgstr ""
4530
 
4531
+ #: templates/admin/table-settings/column_settings_panel.inc.php:865
4532
  msgid "Selectbox"
4533
  msgstr ""
4534
 
4535
+ #: templates/admin/table-settings/column_settings_panel.inc.php:866
4536
  msgid "Checkbox"
4537
  msgstr ""
4538
 
4539
+ #: templates/admin/table-settings/column_settings_panel.inc.php:877
4540
  msgid "Filter label"
4541
  msgstr ""
4542
 
4543
+ #: templates/admin/table-settings/column_settings_panel.inc.php:885
4544
  msgid "Custom filter label"
4545
  msgstr ""
4546
 
4547
+ #: templates/admin/table-settings/column_settings_panel.inc.php:892
4548
  msgid ""
4549
  "You can change the filter label (placeholder) for this column here, if you "
4550
  "would like to show some custom text instead of default."
4551
  msgstr ""
4552
 
4553
+ #: templates/admin/table-settings/column_settings_panel.inc.php:907
4554
  msgid "Exact filtering"
4555
  msgstr ""
4556
 
4557
+ #: templates/admin/table-settings/column_settings_panel.inc.php:909
4558
  msgid ""
4559
  "Enable exact search to use exact match logic for filtering, disable to allow "
4560
  "partial match."
4561
  msgstr ""
4562
 
4563
+ #: templates/admin/table-settings/column_settings_panel.inc.php:915
4564
  msgid "Enable exact filtering"
4565
  msgstr ""
4566
 
4567
+ #: templates/admin/table-settings/column_settings_panel.inc.php:922
4568
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1019
4569
  msgid "Predefined value(s)"
4570
  msgstr ""
4571
 
4572
+ #: templates/admin/table-settings/column_settings_panel.inc.php:924
4573
  msgid ""
4574
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4575
  "page load."
4576
  msgstr ""
4577
 
4578
+ #: templates/admin/table-settings/column_settings_panel.inc.php:970
4579
  msgid "Editor input type"
4580
  msgstr ""
4581
 
4582
+ #: templates/admin/table-settings/column_settings_panel.inc.php:972
4583
  msgid "Choose which kind of editor input to use for this column."
4584
  msgstr ""
4585
 
4586
+ #: templates/admin/table-settings/column_settings_panel.inc.php:978
4587
  msgid "None"
4588
  msgstr ""
4589
 
4590
+ #: templates/admin/table-settings/column_settings_panel.inc.php:979
4591
  msgid "One-line edit"
4592
  msgstr ""
4593
 
4594
+ #: templates/admin/table-settings/column_settings_panel.inc.php:980
4595
  msgid "Multi-line edit"
4596
  msgstr ""
4597
 
4598
+ #: templates/admin/table-settings/column_settings_panel.inc.php:981
4599
  msgid "HTML editor"
4600
  msgstr ""
4601
 
4602
+ #: templates/admin/table-settings/column_settings_panel.inc.php:982
4603
  msgid "Single-value selectbox"
4604
  msgstr ""
4605
 
4606
+ #: templates/admin/table-settings/column_settings_panel.inc.php:983
4607
  msgid "Multi-value selectbox"
4608
  msgstr ""
4609
 
4610
+ #: templates/admin/table-settings/column_settings_panel.inc.php:999
4611
  msgid "Column cannot be empty"
4612
  msgstr ""
4613
 
4614
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1001
4615
  msgid ""
4616
  "Enable to make this column mandatory. Users will see a warning when trying "
4617
  "to save with empty input."
4618
  msgstr ""
4619
 
4620
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1007
4621
  msgid "Cannot be empty"
4622
  msgstr ""
4623
 
4624
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1021
4625
  msgid ""
4626
  "If you would like to have some values pre-defined in editors (i.e. default "
4627
  "editor values) please enter these here."
4628
  msgstr ""
4629
 
4630
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1067
4631
  msgid "Add New Rule"
4632
  msgstr ""
4633
 
4634
  #: templates/admin/table-settings/column_small_block.inc.php:16
4635
+ msgid "Enable/disable in global search"
4636
  msgstr ""
4637
 
4638
  #: templates/admin/table-settings/column_small_block.inc.php:18
4639
+ msgid "Show/hide sorting"
4640
+ msgstr ""
4641
+
4642
+ #: templates/admin/table-settings/column_small_block.inc.php:20
4643
  msgid "Show/hide the column"
4644
  msgstr ""
4645
 
4646
+ #: templates/admin/table-settings/column_small_block.inc.php:26
4647
  msgid "Open column settings"
4648
  msgstr ""
4649
 
4827
  msgid "Are you sure? There is no undo!"
4828
  msgstr ""
4829
 
4830
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:9
4831
+ msgid "When working with this table type please note that at the moment:"
4832
+ msgstr ""
4833
+
4834
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:11
4835
+ msgid "There is no sorting, search, or pagination in this table type."
4836
+ msgstr ""
4837
+
4838
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
4839
+ msgid "Creating charts from this table type is not yet possible."
4840
+ msgstr ""
4841
+
4842
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:13
4843
+ msgid ""
4844
+ "If you need those features, please consider creating tables with option "
4845
+ msgstr ""
4846
+
4847
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:17
4848
+ msgid ""
4849
+ "Depends of users requests, we will add it in our road map and implement it "
4850
+ "based on priority. Thank you for understanding."
4851
+ msgstr ""
4852
+
4853
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
4854
  msgid "Table preview"
4855
  msgstr ""
4856
 
4857
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:38
4858
  msgid "Desktop"
4859
  msgstr ""
4860
 
4861
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:41
4862
  msgid "Tablet"
4863
  msgstr ""
4864
 
4865
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:44
4866
  msgid "Mobile"
4867
  msgstr ""
4868
 
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 "
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: 2020-12-25 17:33+0100\n"
5
- "PO-Revision-Date: 2020-12-25 17:33+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
@@ -167,94 +167,94 @@ msgstr ""
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
 
170
- #: controllers/wdt_functions.php:471
171
  #, fuzzy
172
  msgid "wpDataChart with provided ID not found!"
173
  msgstr "wpDataTable met geleverde ID niet gevonden!"
174
 
175
- #: controllers/wdt_functions.php:507 controllers/wdt_functions.php:588
176
  msgid "wpDataTable with provided ID not found!"
177
  msgstr "wpDataTable met geleverde ID niet gevonden!"
178
 
179
- #: controllers/wdt_functions.php:598
180
  msgid "Provided column is not Integer or Float column type"
181
  msgstr ""
182
 
183
- #: controllers/wdt_functions.php:815
184
  #, fuzzy
185
  msgid "Choose a table"
186
  msgstr "Kies rollen"
187
 
188
- #: controllers/wdt_functions.php:847
189
  msgid "Interactive Responsive Table"
190
  msgstr ""
191
 
192
- #: controllers/wdt_functions.php:848 controllers/wdt_functions.php:909
193
  msgid "Content"
194
  msgstr ""
195
 
196
- #: controllers/wdt_functions.php:854
197
  #, fuzzy
198
  msgid "wpDataTable"
199
  msgstr "wpDataTable aanpassen"
200
 
201
- #: controllers/wdt_functions.php:858
202
  msgid "Choose the wpDataTable from a dropdown"
203
  msgstr ""
204
 
205
- #: controllers/wdt_functions.php:863
206
  #, fuzzy
207
  msgid "Table view"
208
  msgstr "Tabel titel"
209
 
210
- #: controllers/wdt_functions.php:867
211
  #, fuzzy
212
  msgid "Regular wpDataTable"
213
  msgstr "Gebruik in wpDataTable"
214
 
215
- #: controllers/wdt_functions.php:869
216
  #, fuzzy
217
  msgid "Excel-like table"
218
  msgstr "Excel bestand"
219
 
220
- #: controllers/wdt_functions.php:875
221
  msgid "Variable placeholder #1"
222
  msgstr ""
223
 
224
- #: controllers/wdt_functions.php:878 controllers/wdt_functions.php:886
225
- #: controllers/wdt_functions.php:894
226
  msgid "Variables"
227
  msgstr ""
228
 
229
- #: controllers/wdt_functions.php:879
230
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
231
  msgstr ""
232
 
233
- #: controllers/wdt_functions.php:883
234
  msgid "Variable placeholder #2"
235
  msgstr ""
236
 
237
- #: controllers/wdt_functions.php:887
238
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
239
  msgstr ""
240
 
241
- #: controllers/wdt_functions.php:891
242
  msgid "Variable placeholder #3"
243
  msgstr ""
244
 
245
- #: controllers/wdt_functions.php:895
246
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
247
  msgstr ""
248
 
249
- #: controllers/wdt_functions.php:908
250
  msgid "Google or Highcharts chart based on a wpDataTable"
251
  msgstr ""
252
 
253
- #: controllers/wdt_functions.php:915
254
  msgid "wpDataChart"
255
  msgstr ""
256
 
257
- #: controllers/wdt_functions.php:919
258
  msgid "Choose one of wpDataCharts from the list"
259
  msgstr ""
260
 
@@ -396,15 +396,15 @@ msgstr "MySQL host"
396
  msgid "Manual"
397
  msgstr ""
398
 
399
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2204
400
- #: source/class.wpdatatable.php:2274
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:2213
407
- #: source/class.wpdatatable.php:2284
408
  #: templates/admin/table-settings/table_settings_block.inc.php:1032
409
  msgid "CSV"
410
  msgstr ""
@@ -444,7 +444,7 @@ msgstr "Nog geen wpDataTables in het systeem"
444
  msgid "There was an error trying to fetch the table data: "
445
  msgstr ""
446
 
447
- #: source/class.wdtconfigcontroller.php:477
448
  #, fuzzy
449
  msgid "Table in data source has no rows."
450
  msgstr "Tabel invoer data bron mag niet leeg zijn"
@@ -477,18 +477,18 @@ msgstr ""
477
 
478
  #: source/class.wdttools.php:23
479
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
480
- #: templates/admin/table-settings/column_settings_panel.inc.php:968
481
  msgid "Date"
482
  msgstr ""
483
 
484
  #: source/class.wdttools.php:24
485
- #: templates/admin/table-settings/column_settings_panel.inc.php:969
486
  msgid "Datetime"
487
  msgstr ""
488
 
489
  #: source/class.wdttools.php:25
490
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
491
- #: templates/admin/table-settings/column_settings_panel.inc.php:970
492
  msgid "Time"
493
  msgstr ""
494
 
@@ -506,7 +506,7 @@ msgid "Image"
506
  msgstr ""
507
 
508
  #: source/class.wdttools.php:29
509
- #: templates/admin/table-settings/column_settings_panel.inc.php:973
510
  #, fuzzy
511
  msgid "Attachment"
512
  msgstr "Upload bijlage"
@@ -531,14 +531,14 @@ msgstr ""
531
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
532
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
533
  #: templates/admin/common/HTMLModal.inc.php:43
534
- #: templates/admin/common/linkModal.inc.php:106
535
  #: templates/admin/common/shortcodeModal.inc.php:48
536
  #: templates/admin/common/starModal.inc.php:73
537
  #: templates/admin/constructor/constructor.inc.php:29
538
  #: templates/admin/settings/settings.inc.php:28
539
  #: templates/admin/table-settings/add_column_modal.inc.php:126
540
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
541
- #: templates/admin/table-settings/column_settings_panel.inc.php:1079
542
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
543
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
544
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
@@ -592,8 +592,8 @@ msgstr ""
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:2222
596
- #: source/class.wpdatatable.php:2294
597
  #: templates/admin/table-settings/table_settings_block.inc.php:1033
598
  msgid "Copy"
599
  msgstr ""
@@ -1305,13 +1305,13 @@ msgstr ""
1305
  msgid "You are mixing data types (several date axes and several number)"
1306
  msgstr ""
1307
 
1308
- #: source/class.wpdatatable.php:1883
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:2122 source/class.wpdatatable.php:2125
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
@@ -1319,31 +1319,31 @@ msgstr ""
1319
  msgid "All"
1320
  msgstr "Alles"
1321
 
1322
- #: source/class.wpdatatable.php:2183 source/class.wpdatatable.php:2252
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:2193 source/class.wpdatatable.php:2262
1329
  #: templates/admin/table-settings/table_settings_block.inc.php:1030
1330
  msgid "Print"
1331
  msgstr ""
1332
 
1333
- #: source/class.wpdatatable.php:2232 source/class.wpdatatable.php:2305
1334
  #: templates/admin/table-settings/table_settings_block.inc.php:1034
1335
  msgid "PDF"
1336
  msgstr ""
1337
 
1338
- #: source/class.wpdatatable.php:2240
1339
  msgid "Export"
1340
  msgstr ""
1341
 
1342
- #: source/class.wpdatatable.php:2318
1343
  msgid "Search table"
1344
  msgstr ""
1345
 
1346
- #: source/class.wpdatatable.php:2319
1347
  msgid "Showing _MENU_ Entries"
1348
  msgstr ""
1349
 
@@ -1362,7 +1362,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:496
1366
  msgid "wpDataTables Addons"
1367
  msgstr ""
1368
 
@@ -1376,12 +1376,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:567
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:571
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 +1407,7 @@ msgid "NEW"
1407
  msgstr ""
1408
 
1409
  #: templates/admin/addons/addons.inc.php:40
1410
- #: templates/admin/dashboard/dashboard.inc.php:514
1411
  msgid "Master Detail Tables for wpDataTables"
1412
  msgstr ""
1413
 
@@ -1428,7 +1428,7 @@ msgid "Learn more"
1428
  msgstr ""
1429
 
1430
  #: templates/admin/addons/addons.inc.php:67
1431
- #: templates/admin/dashboard/dashboard.inc.php:541
1432
  msgid "Powerful Filters for wpDataTables"
1433
  msgstr ""
1434
 
@@ -1440,24 +1440,24 @@ msgid ""
1440
  msgstr ""
1441
 
1442
  #: templates/admin/addons/addons.inc.php:120
1443
- #: templates/admin/dashboard/dashboard.inc.php:594
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:598
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:620
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:624
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."
@@ -2361,15 +2361,20 @@ msgid "Open link in the new tab"
2361
  msgstr ""
2362
 
2363
  #: templates/admin/common/linkModal.inc.php:76
 
 
 
 
 
2364
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2365
  msgid "Set the link to appear as a button"
2366
  msgstr ""
2367
 
2368
- #: templates/admin/common/linkModal.inc.php:85
2369
  msgid "Button class:"
2370
  msgstr ""
2371
 
2372
- #: templates/admin/common/linkModal.inc.php:110
2373
  msgid "Insert link"
2374
  msgstr ""
2375
 
@@ -2486,8 +2491,8 @@ msgstr ""
2486
  #: templates/admin/settings/settings.inc.php:96
2487
  #: templates/admin/support/support.inc.php:31
2488
  #: templates/admin/support/support.inc.php:47
2489
- #: templates/admin/system-info/system_info.inc.php:30
2490
- #: templates/admin/table-settings/column_settings_panel.inc.php:1074
2491
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2492
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2493
  #: templates/admin/table-settings/table_settings_block.inc.php:1197
@@ -2512,6 +2517,7 @@ msgid ""
2512
  msgstr ""
2513
 
2514
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
 
2515
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2516
  msgid "Create a data table linked to an existing data source"
2517
  msgstr ""
@@ -2720,120 +2726,138 @@ msgid "Version "
2720
  msgstr ""
2721
 
2722
  #: templates/admin/dashboard/dashboard.inc.php:340
2723
- msgid "A minor update with a couple of bug fixes and stability improvements:"
 
 
2724
  msgstr ""
2725
 
2726
  #: templates/admin/dashboard/dashboard.inc.php:345
2727
  msgid ""
2728
- "<strong>BugFix:</strong> Fixed issue with Fatal errors on Dashboard page if "
2729
- "PHP extensions are not installed."
2730
  msgstr ""
2731
 
2732
  #: templates/admin/dashboard/dashboard.inc.php:346
2733
- msgid "Compatibility with WordPress 5.6 approved."
 
 
2734
  msgstr ""
2735
 
2736
  #: templates/admin/dashboard/dashboard.inc.php:347
2737
- msgid "Compatibility with PHP 8 approved."
 
 
2738
  msgstr ""
2739
 
2740
  #: templates/admin/dashboard/dashboard.inc.php:348
 
 
 
 
 
 
 
 
 
 
 
 
2741
  msgid "Other small bug fixes and stability improvements."
2742
  msgstr ""
2743
 
2744
- #: templates/admin/dashboard/dashboard.inc.php:360
2745
  msgid "Go Premium!"
2746
  msgstr ""
2747
 
2748
- #: templates/admin/dashboard/dashboard.inc.php:366
2749
  msgid "View Comparison"
2750
  msgstr ""
2751
 
2752
- #: templates/admin/dashboard/dashboard.inc.php:374
2753
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2754
  msgid ""
2755
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2756
  "of the powerful features."
2757
  msgstr ""
2758
 
2759
- #: templates/admin/dashboard/dashboard.inc.php:378
2760
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2761
  msgid "Create a table manually"
2762
  msgstr ""
2763
 
2764
- #: templates/admin/dashboard/dashboard.inc.php:381
2765
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2766
  msgid "Creating tables from Google Spreadsheet"
2767
  msgstr ""
2768
 
2769
- #: templates/admin/dashboard/dashboard.inc.php:384
2770
  msgid ""
2771
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2772
  "tables via Google Sheet API"
2773
  msgstr ""
2774
 
2775
- #: templates/admin/dashboard/dashboard.inc.php:387
2776
  msgid ""
2777
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2778
  "tables from Private Google Spreadsheet"
2779
  msgstr ""
2780
 
2781
- #: templates/admin/dashboard/dashboard.inc.php:390
2782
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2783
  msgid "Creating MySQL-based tables from database"
2784
  msgstr ""
2785
 
2786
- #: templates/admin/dashboard/dashboard.inc.php:393
2787
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2788
  msgid "Creating MySQL-based tables from Wordpress post types"
2789
  msgstr ""
2790
 
2791
- #: templates/admin/dashboard/dashboard.inc.php:396
2792
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2793
  #: templates/edit_table.inc.php:329
2794
  msgid "Advanced filtering"
2795
  msgstr ""
2796
 
2797
- #: templates/admin/dashboard/dashboard.inc.php:399
2798
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2799
  #: templates/admin/table-settings/table_settings_block.inc.php:144
2800
  #: templates/edit_table.inc.php:282
2801
  msgid "Server-side processing"
2802
  msgstr "Server-side verwerking"
2803
 
2804
- #: templates/admin/dashboard/dashboard.inc.php:402
2805
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2806
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2807
  msgstr ""
2808
 
2809
- #: templates/admin/dashboard/dashboard.inc.php:405
2810
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2811
  msgid "Front-end table editing"
2812
  msgstr ""
2813
 
2814
- #: templates/admin/dashboard/dashboard.inc.php:408
2815
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2816
  msgid "Excel-like editing"
2817
  msgstr ""
2818
 
2819
- #: templates/admin/dashboard/dashboard.inc.php:411
2820
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2821
  msgid "Creating charts with Highcharts"
2822
  msgstr ""
2823
 
2824
- #: templates/admin/dashboard/dashboard.inc.php:414
2825
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2826
  msgid "Creating charts with Chart.js"
2827
  msgstr ""
2828
 
2829
- #: templates/admin/dashboard/dashboard.inc.php:417
2830
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2831
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2832
  #: templates/edit_table.inc.php:301
2833
  msgid "Responsive"
2834
  msgstr ""
2835
 
2836
- #: templates/admin/dashboard/dashboard.inc.php:420
2837
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2838
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2839
  #: templates/edit_table.inc.php:750
@@ -2841,42 +2865,42 @@ msgstr ""
2841
  msgid "Conditional formatting"
2842
  msgstr "Extra instellingen"
2843
 
2844
- #: templates/admin/dashboard/dashboard.inc.php:423
2845
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2846
  msgid "Calculating Tools"
2847
  msgstr ""
2848
 
2849
- #: templates/admin/dashboard/dashboard.inc.php:426
2850
  msgid "Formula columns"
2851
  msgstr ""
2852
 
2853
- #: templates/admin/dashboard/dashboard.inc.php:429
2854
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2855
  #: templates/admin/table-settings/table_settings_block.inc.php:79
2856
  msgid "Placeholders"
2857
  msgstr ""
2858
 
2859
- #: templates/admin/dashboard/dashboard.inc.php:432
2860
  msgid "Premium support"
2861
  msgstr ""
2862
 
2863
- #: templates/admin/dashboard/dashboard.inc.php:436
2864
  msgid "Get Premium Today"
2865
  msgstr ""
2866
 
2867
- #: templates/admin/dashboard/dashboard.inc.php:443
2868
  msgid "News Blog"
2869
  msgstr ""
2870
 
2871
- #: templates/admin/dashboard/dashboard.inc.php:448
2872
  msgid "Checkout useful articles from wpdatatables.com"
2873
  msgstr ""
2874
 
2875
- #: templates/admin/dashboard/dashboard.inc.php:471
2876
  msgid "Please install and enable PHP extensions xml and dom on your server."
2877
  msgstr ""
2878
 
2879
- #: templates/admin/dashboard/dashboard.inc.php:479
2880
  msgid ""
2881
  "Never miss notifications about new cool features, promotions,\n"
2882
  " giveaways or freebies – subscribe to our "
@@ -2884,93 +2908,93 @@ msgid ""
2884
  " about 1 message per month and never spam!"
2885
  msgstr ""
2886
 
2887
- #: templates/admin/dashboard/dashboard.inc.php:497
2888
  msgid "Premium "
2889
  msgstr ""
2890
 
2891
- #: templates/admin/dashboard/dashboard.inc.php:500
2892
  msgid ""
2893
  "While wpDataTables itself provides quite a large amount of features and "
2894
  "unlimited customisation, flexibility, you can achieve even more with our "
2895
  "premium addons.(requires wpDataTables Premium version)"
2896
  msgstr ""
2897
 
2898
- #: templates/admin/dashboard/dashboard.inc.php:518
2899
  msgid ""
2900
  "A wpDataTables addon which allows showing additional details for a specific "
2901
  "row in a popup or a separate page or post."
2902
  msgstr ""
2903
 
2904
- #: templates/admin/dashboard/dashboard.inc.php:524
2905
- #: templates/admin/dashboard/dashboard.inc.php:551
2906
- #: templates/admin/dashboard/dashboard.inc.php:577
2907
- #: templates/admin/dashboard/dashboard.inc.php:604
2908
- #: templates/admin/dashboard/dashboard.inc.php:630
2909
- #: templates/admin/dashboard/dashboard.inc.php:663
2910
  msgid "Learn More"
2911
  msgstr ""
2912
 
2913
- #: templates/admin/dashboard/dashboard.inc.php:545
2914
  msgid ""
2915
  "An add-on for wpDataTables that provides powerful filtering features: "
2916
  "cascade filtering, applying filters on button click, hide table before "
2917
  "filtering."
2918
  msgstr ""
2919
 
2920
- #: templates/admin/dashboard/dashboard.inc.php:641
2921
  msgid "Need free booking plugin?"
2922
  msgstr ""
2923
 
2924
- #: templates/admin/dashboard/dashboard.inc.php:650
2925
  msgid "Appointments and Events WordPress Booking Plugin"
2926
  msgstr ""
2927
 
2928
- #: templates/admin/dashboard/dashboard.inc.php:653
2929
  msgid ""
2930
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2931
  "set up a fully-featured automated booking system on your WordPress website "
2932
  "and is a handy tool for small businesses and individuals that depend on "
2933
- "stable appointment booking processes. 10,000+ businesses from healthcare, "
2934
  "beauty, sports, automotive, educational, creative, HR and other industries "
2935
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
2936
  "each month."
2937
  msgstr ""
2938
 
2939
- #: templates/admin/dashboard/dashboard.inc.php:656
2940
- msgid "Rating: 4.3 - ‎68 reviews"
2941
  msgstr ""
2942
 
2943
- #: templates/admin/dashboard/dashboard.inc.php:659
2944
  msgid "Free Download"
2945
  msgstr ""
2946
 
2947
- #: templates/admin/dashboard/dashboard.inc.php:674
2948
  #: templates/admin/getting-started/getting_started.inc.php:184
2949
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2950
  #: templates/admin/support/support.inc.php:78
2951
- #: templates/admin/system-info/system_info.inc.php:510
2952
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2953
  msgid "Made by"
2954
  msgstr ""
2955
 
2956
- #: templates/admin/dashboard/dashboard.inc.php:682
2957
  #: templates/admin/getting-started/getting_started.inc.php:192
2958
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2959
  #: templates/admin/support/support.inc.php:45
2960
  #: templates/admin/support/support.inc.php:86
2961
- #: templates/admin/system-info/system_info.inc.php:518
2962
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2963
  #: templates/admin/welcome_page/welcome_page.inc.php:369
2964
  #, fuzzy
2965
  msgid "Documentation"
2966
  msgstr "wpDataTables documentatie"
2967
 
2968
- #: templates/admin/dashboard/dashboard.inc.php:686
2969
  #: templates/admin/getting-started/getting_started.inc.php:196
2970
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2971
  #: templates/admin/support/support.inc.php:24
2972
  #: templates/admin/support/support.inc.php:90
2973
- #: templates/admin/system-info/system_info.inc.php:522
2974
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2975
  msgid "Support Center"
2976
  msgstr ""
@@ -3222,7 +3246,7 @@ msgstr ""
3222
  #: templates/admin/settings/settings.inc.php:33
3223
  #: templates/admin/settings/settings.inc.php:91
3224
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3225
- #: templates/admin/table-settings/column_settings_panel.inc.php:1082
3226
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3227
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3228
  #: templates/admin/table-settings/table_preview_block.inc.php:89
@@ -3798,13 +3822,13 @@ msgid ""
3798
  msgstr ""
3799
 
3800
  #: templates/admin/settings/tabs/main_plugin_settings.php:216
3801
- #: templates/admin/table-settings/column_settings_panel.inc.php:767
3802
  #: templates/edit_table.inc.php:663
3803
  msgid "Ascending"
3804
  msgstr "Oplopend"
3805
 
3806
  #: templates/admin/settings/tabs/main_plugin_settings.php:217
3807
- #: templates/admin/table-settings/column_settings_panel.inc.php:768
3808
  #: templates/edit_table.inc.php:665
3809
  msgid "Descending"
3810
  msgstr "Aflopend"
@@ -4080,35 +4104,35 @@ msgstr ""
4080
  msgid "Open a topic"
4081
  msgstr ""
4082
 
4083
- #: templates/admin/system-info/system_info.inc.php:23
4084
  msgid "System Info"
4085
  msgstr ""
4086
 
4087
- #: templates/admin/system-info/system_info.inc.php:62
4088
  msgid "The URL of your site's homepage."
4089
  msgstr ""
4090
 
4091
- #: templates/admin/system-info/system_info.inc.php:69
4092
  msgid "The root URL of your site."
4093
  msgstr ""
4094
 
4095
- #: templates/admin/system-info/system_info.inc.php:76
4096
  msgid "System path of your wp-content directory."
4097
  msgstr ""
4098
 
4099
- #: templates/admin/system-info/system_info.inc.php:83
4100
  msgid "System path of your WP root directory."
4101
  msgstr ""
4102
 
4103
- #: templates/admin/system-info/system_info.inc.php:90
4104
  msgid "The version of WordPress installed on your site."
4105
  msgstr ""
4106
 
4107
- #: templates/admin/system-info/system_info.inc.php:97
4108
  msgid "Whether or not you have WordPress Multisite enabled."
4109
  msgstr ""
4110
 
4111
- #: templates/admin/system-info/system_info.inc.php:121
4112
  #, php-format
4113
  msgid ""
4114
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
@@ -4117,35 +4141,35 @@ msgid ""
4117
  "noreferrer\">Increasing memory allocated to PHP.</a>"
4118
  msgstr ""
4119
 
4120
- #: templates/admin/system-info/system_info.inc.php:131
4121
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4122
  msgstr ""
4123
 
4124
- #: templates/admin/system-info/system_info.inc.php:144
4125
  msgid "Displays whether or not WordPress is in Debug Mode."
4126
  msgstr ""
4127
 
4128
- #: templates/admin/system-info/system_info.inc.php:151
4129
  msgid "The current language used by WordPress. Default = English"
4130
  msgstr ""
4131
 
4132
- #: templates/admin/system-info/system_info.inc.php:171
4133
  msgid "Information about your operating system."
4134
  msgstr ""
4135
 
4136
- #: templates/admin/system-info/system_info.inc.php:179
4137
  msgid "Information about the web server that is currently hosting your site."
4138
  msgstr ""
4139
 
4140
- #: templates/admin/system-info/system_info.inc.php:221
4141
  msgid "The version of PHP installed on your hosting server."
4142
  msgstr ""
4143
 
4144
- #: templates/admin/system-info/system_info.inc.php:232
4145
  msgid "The largest file size that can be contained in one post."
4146
  msgstr ""
4147
 
4148
- #: templates/admin/system-info/system_info.inc.php:241
4149
  #, php-format
4150
  msgid ""
4151
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
@@ -4153,69 +4177,69 @@ msgid ""
4153
  "\">Increasing max execution to PHP</a>"
4154
  msgstr ""
4155
 
4156
- #: templates/admin/system-info/system_info.inc.php:249
4157
  msgid ""
4158
  "The amount of time (in seconds) that your site will spend on a single "
4159
  "operation before timing out (to avoid server lockups)"
4160
  msgstr ""
4161
 
4162
- #: templates/admin/system-info/system_info.inc.php:264
4163
  msgid "The version of MySQL installed on your hosting server."
4164
  msgstr ""
4165
 
4166
- #: templates/admin/system-info/system_info.inc.php:272
4167
  msgid ""
4168
  "The largest file size that can be uploaded to your WordPress installation."
4169
  msgstr ""
4170
 
4171
- #: templates/admin/system-info/system_info.inc.php:294
4172
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4173
  msgstr ""
4174
 
4175
- #: templates/admin/system-info/system_info.inc.php:312
4176
  msgid ""
4177
  "XML support is something that needs to be installed on the server for proper "
4178
  "wpDataTables functionality."
4179
  msgstr ""
4180
 
4181
- #: templates/admin/system-info/system_info.inc.php:330
4182
  msgid ""
4183
  "DOM support is something that needs to be installed on the server for proper "
4184
  "wpDataTables functionality."
4185
  msgstr ""
4186
 
4187
- #: templates/admin/system-info/system_info.inc.php:356
4188
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4189
  msgstr ""
4190
 
4191
- #: templates/admin/system-info/system_info.inc.php:375
4192
  msgid ""
4193
  "ZIP support is something that needs to be installed on the server, as a "
4194
  "package for the Linux operating system, or rather to the PHP software on the "
4195
  "server."
4196
  msgstr ""
4197
 
4198
- #: templates/admin/system-info/system_info.inc.php:395
4199
  msgid "wpDataTables use cURL for getting data from other servers."
4200
  msgstr ""
4201
 
4202
- #: templates/admin/system-info/system_info.inc.php:418
4203
  msgid "The name of the current active theme."
4204
  msgstr ""
4205
 
4206
- #: templates/admin/system-info/system_info.inc.php:429
4207
  msgid "The installed version of the current active theme."
4208
  msgstr ""
4209
 
4210
- #: templates/admin/system-info/system_info.inc.php:436
4211
  msgid "The theme developers."
4212
  msgstr ""
4213
 
4214
- #: templates/admin/system-info/system_info.inc.php:442
4215
  msgid "The theme developers URL."
4216
  msgstr ""
4217
 
4218
- #: templates/admin/system-info/system_info.inc.php:479
4219
  msgid "Visit plugin homepage"
4220
  msgstr ""
4221
 
@@ -4282,9 +4306,8 @@ msgid "Data"
4282
  msgstr ""
4283
 
4284
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4285
- #, fuzzy
4286
- msgid "Filtering"
4287
- msgstr "Filter in formulier"
4288
 
4289
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4290
  #: templates/admin/table-settings/table_settings_block.inc.php:71
@@ -4418,12 +4441,12 @@ msgid "DateTime"
4418
  msgstr ""
4419
 
4420
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4421
- #: templates/admin/table-settings/column_settings_panel.inc.php:971
4422
  msgid "URL link"
4423
  msgstr ""
4424
 
4425
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4426
- #: templates/admin/table-settings/column_settings_panel.inc.php:972
4427
  msgid "E-mail link"
4428
  msgstr ""
4429
 
@@ -4677,213 +4700,240 @@ msgstr ""
4677
  msgid "Button class"
4678
  msgstr "Bottons font kleur"
4679
 
4680
- #: templates/admin/table-settings/column_settings_panel.inc.php:724
 
 
 
 
 
 
 
 
4681
  #, fuzzy
4682
  msgid "Allow sorting"
4683
  msgstr "Sorteren inschakelen"
4684
 
4685
- #: templates/admin/table-settings/column_settings_panel.inc.php:726
4686
  msgid "Disable this to disallow sorting for this column."
4687
  msgstr ""
4688
 
4689
- #: templates/admin/table-settings/column_settings_panel.inc.php:732
4690
  msgid "Allow sorting for this column"
4691
  msgstr ""
4692
 
4693
- #: templates/admin/table-settings/column_settings_panel.inc.php:739
4694
  #, fuzzy
4695
  msgid "Use as default sorting column"
4696
  msgstr "Standaard sortering kolom"
4697
 
4698
- #: templates/admin/table-settings/column_settings_panel.inc.php:741
4699
- #: templates/admin/table-settings/column_settings_panel.inc.php:747
4700
  msgid "Sort table by this column on load"
4701
  msgstr ""
4702
 
4703
- #: templates/admin/table-settings/column_settings_panel.inc.php:758
4704
  #, fuzzy
4705
  msgid "Default sorting direction"
4706
  msgstr "Standaard sortering kolom"
4707
 
4708
- #: templates/admin/table-settings/column_settings_panel.inc.php:760
4709
  msgid "Choose whether to sort ascending or descending by default."
4710
  msgstr ""
4711
 
4712
- #: templates/admin/table-settings/column_settings_panel.inc.php:793
4713
  msgid "Add a filter for this column"
4714
  msgstr ""
4715
 
4716
- #: templates/admin/table-settings/column_settings_panel.inc.php:801
4717
  #, fuzzy
4718
  msgid "Enable filtering for column"
4719
  msgstr "Standaard sortering kolom"
4720
 
4721
- #: templates/admin/table-settings/column_settings_panel.inc.php:808
4722
  msgid ""
4723
  "Enabling this switch will add a filter for this column. Disable to remove "
4724
  "the filter for this column."
4725
  msgstr ""
4726
 
4727
- #: templates/admin/table-settings/column_settings_panel.inc.php:817
4728
  #, fuzzy
4729
  msgid "Allow filtering"
4730
  msgstr "Geavanceerde filtering"
4731
 
4732
- #: templates/admin/table-settings/column_settings_panel.inc.php:824
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4733
  #: templates/edit_table.inc.php:570
4734
  msgid "Filter type"
4735
  msgstr "Filter type"
4736
 
4737
- #: templates/admin/table-settings/column_settings_panel.inc.php:826
4738
  msgid ""
4739
  "You can redefine the filter type here, it will affect the filtering logic."
4740
  msgstr ""
4741
 
4742
- #: templates/admin/table-settings/column_settings_panel.inc.php:833
4743
  msgid "Text"
4744
  msgstr ""
4745
 
4746
- #: templates/admin/table-settings/column_settings_panel.inc.php:834
4747
  #, fuzzy
4748
  msgid "Number"
4749
  msgstr "Nummer format"
4750
 
4751
- #: templates/admin/table-settings/column_settings_panel.inc.php:835
4752
  #, fuzzy
4753
  msgid "Number range"
4754
  msgstr "Nummer format"
4755
 
4756
- #: templates/admin/table-settings/column_settings_panel.inc.php:836
4757
  #, fuzzy
4758
  msgid "Date range"
4759
  msgstr "Datum format"
4760
 
4761
- #: templates/admin/table-settings/column_settings_panel.inc.php:837
4762
  msgid "DateTime range"
4763
  msgstr ""
4764
 
4765
- #: templates/admin/table-settings/column_settings_panel.inc.php:838
4766
  msgid "Time range"
4767
  msgstr ""
4768
 
4769
- #: templates/admin/table-settings/column_settings_panel.inc.php:839
4770
  msgid "Selectbox"
4771
  msgstr ""
4772
 
4773
- #: templates/admin/table-settings/column_settings_panel.inc.php:840
4774
  msgid "Checkbox"
4775
  msgstr ""
4776
 
4777
- #: templates/admin/table-settings/column_settings_panel.inc.php:856
4778
  #, fuzzy
4779
  msgid "Filter label"
4780
  msgstr "Filter type"
4781
 
4782
- #: templates/admin/table-settings/column_settings_panel.inc.php:864
4783
  msgid "Custom filter label"
4784
  msgstr ""
4785
 
4786
- #: templates/admin/table-settings/column_settings_panel.inc.php:871
4787
  msgid ""
4788
  "You can change the filter label (placeholder) for this column here, if you "
4789
  "would like to show some custom text instead of default."
4790
  msgstr ""
4791
 
4792
- #: templates/admin/table-settings/column_settings_panel.inc.php:886
4793
  #, fuzzy
4794
  msgid "Exact filtering"
4795
  msgstr "Geavanceerde filtering"
4796
 
4797
- #: templates/admin/table-settings/column_settings_panel.inc.php:888
4798
  msgid ""
4799
  "Enable exact search to use exact match logic for filtering, disable to allow "
4800
  "partial match."
4801
  msgstr ""
4802
 
4803
- #: templates/admin/table-settings/column_settings_panel.inc.php:894
4804
  #, fuzzy
4805
  msgid "Enable exact filtering"
4806
  msgstr "Sorteren inschakelen"
4807
 
4808
- #: templates/admin/table-settings/column_settings_panel.inc.php:906
4809
- #: templates/admin/table-settings/column_settings_panel.inc.php:1003
4810
  #, fuzzy
4811
  msgid "Predefined value(s)"
4812
  msgstr "Standaardwaarde(n)"
4813
 
4814
- #: templates/admin/table-settings/column_settings_panel.inc.php:908
4815
  msgid ""
4816
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4817
  "page load."
4818
  msgstr ""
4819
 
4820
- #: templates/admin/table-settings/column_settings_panel.inc.php:954
4821
  msgid "Editor input type"
4822
  msgstr "Editor input type"
4823
 
4824
- #: templates/admin/table-settings/column_settings_panel.inc.php:956
4825
  msgid "Choose which kind of editor input to use for this column."
4826
  msgstr ""
4827
 
4828
- #: templates/admin/table-settings/column_settings_panel.inc.php:962
4829
  msgid "None"
4830
  msgstr ""
4831
 
4832
- #: templates/admin/table-settings/column_settings_panel.inc.php:963
4833
  msgid "One-line edit"
4834
  msgstr ""
4835
 
4836
- #: templates/admin/table-settings/column_settings_panel.inc.php:964
4837
  msgid "Multi-line edit"
4838
  msgstr ""
4839
 
4840
- #: templates/admin/table-settings/column_settings_panel.inc.php:965
4841
  msgid "HTML editor"
4842
  msgstr ""
4843
 
4844
- #: templates/admin/table-settings/column_settings_panel.inc.php:966
4845
  msgid "Single-value selectbox"
4846
  msgstr ""
4847
 
4848
- #: templates/admin/table-settings/column_settings_panel.inc.php:967
4849
  msgid "Multi-value selectbox"
4850
  msgstr ""
4851
 
4852
- #: templates/admin/table-settings/column_settings_panel.inc.php:983
4853
  #, fuzzy
4854
  msgid "Column cannot be empty"
4855
  msgstr "Tabel type mag niet leeg zijn"
4856
 
4857
- #: templates/admin/table-settings/column_settings_panel.inc.php:985
4858
  msgid ""
4859
  "Enable to make this column mandatory. Users will see a warning when trying "
4860
  "to save with empty input."
4861
  msgstr ""
4862
 
4863
- #: templates/admin/table-settings/column_settings_panel.inc.php:991
4864
  #, fuzzy
4865
  msgid "Cannot be empty"
4866
  msgstr "Tabel type mag niet leeg zijn"
4867
 
4868
- #: templates/admin/table-settings/column_settings_panel.inc.php:1005
4869
  msgid ""
4870
  "If you would like to have some values pre-defined in editors (i.e. default "
4871
  "editor values) please enter these here."
4872
  msgstr ""
4873
 
4874
- #: templates/admin/table-settings/column_settings_panel.inc.php:1051
4875
  msgid "Add New Rule"
4876
  msgstr ""
4877
 
4878
  #: templates/admin/table-settings/column_small_block.inc.php:16
4879
- msgid "Show/hide sorting"
4880
  msgstr ""
4881
 
4882
  #: templates/admin/table-settings/column_small_block.inc.php:18
 
 
 
 
4883
  msgid "Show/hide the column"
4884
  msgstr ""
4885
 
4886
- #: templates/admin/table-settings/column_small_block.inc.php:24
4887
  #, fuzzy
4888
  msgid "Open column settings"
4889
  msgstr "Optionele kolom setup"
@@ -5080,19 +5130,42 @@ msgid "Are you sure? There is no undo!"
5080
  msgstr ""
5081
  "Weet je het zeker? Je verliest de aanpassingen die niet opgeslagen zijn!"
5082
 
 
 
 
 
 
 
 
 
5083
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5084
  msgid "Table preview"
5085
  msgstr ""
5086
 
5087
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:22
5088
  msgid "Desktop"
5089
  msgstr ""
5090
 
5091
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:25
5092
  msgid "Tablet"
5093
  msgstr ""
5094
 
5095
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5096
  msgid "Mobile"
5097
  msgstr ""
5098
 
@@ -5750,10 +5823,6 @@ msgstr "Onder de grafiek/diagram"
5750
  msgid "Main search block"
5751
  msgstr ""
5752
 
5753
- #: templates/admin/table-settings/table_settings_block.inc.php:665
5754
- msgid "Global search"
5755
- msgstr ""
5756
-
5757
  #: templates/admin/table-settings/table_settings_block.inc.php:672
5758
  msgid ""
5759
  "If this is enabled, a search block will be displayed on the top right of the "
@@ -7116,6 +7185,10 @@ msgstr ""
7116
  msgid "Insert name for export file"
7117
  msgstr ""
7118
 
 
 
 
 
7119
  #, fuzzy
7120
  #~ msgid "Bad request format."
7121
  #~ msgstr "Datum format"
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"
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
 
170
+ #: controllers/wdt_functions.php:486
171
  #, fuzzy
172
  msgid "wpDataChart with provided ID not found!"
173
  msgstr "wpDataTable met geleverde ID niet gevonden!"
174
 
175
+ #: controllers/wdt_functions.php:522 controllers/wdt_functions.php:603
176
  msgid "wpDataTable with provided ID not found!"
177
  msgstr "wpDataTable met geleverde ID niet gevonden!"
178
 
179
+ #: controllers/wdt_functions.php:613
180
  msgid "Provided column is not Integer or Float column type"
181
  msgstr ""
182
 
183
+ #: controllers/wdt_functions.php:830
184
  #, fuzzy
185
  msgid "Choose a table"
186
  msgstr "Kies rollen"
187
 
188
+ #: controllers/wdt_functions.php:862
189
  msgid "Interactive Responsive Table"
190
  msgstr ""
191
 
192
+ #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
193
  msgid "Content"
194
  msgstr ""
195
 
196
+ #: controllers/wdt_functions.php:869
197
  #, fuzzy
198
  msgid "wpDataTable"
199
  msgstr "wpDataTable aanpassen"
200
 
201
+ #: controllers/wdt_functions.php:873
202
  msgid "Choose the wpDataTable from a dropdown"
203
  msgstr ""
204
 
205
+ #: controllers/wdt_functions.php:878
206
  #, fuzzy
207
  msgid "Table view"
208
  msgstr "Tabel titel"
209
 
210
+ #: controllers/wdt_functions.php:882
211
  #, fuzzy
212
  msgid "Regular wpDataTable"
213
  msgstr "Gebruik in wpDataTable"
214
 
215
+ #: controllers/wdt_functions.php:884
216
  #, fuzzy
217
  msgid "Excel-like table"
218
  msgstr "Excel bestand"
219
 
220
+ #: controllers/wdt_functions.php:890
221
  msgid "Variable placeholder #1"
222
  msgstr ""
223
 
224
+ #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
225
+ #: controllers/wdt_functions.php:909
226
  msgid "Variables"
227
  msgstr ""
228
 
229
+ #: controllers/wdt_functions.php:894
230
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
231
  msgstr ""
232
 
233
+ #: controllers/wdt_functions.php:898
234
  msgid "Variable placeholder #2"
235
  msgstr ""
236
 
237
+ #: controllers/wdt_functions.php:902
238
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
239
  msgstr ""
240
 
241
+ #: controllers/wdt_functions.php:906
242
  msgid "Variable placeholder #3"
243
  msgstr ""
244
 
245
+ #: controllers/wdt_functions.php:910
246
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
247
  msgstr ""
248
 
249
+ #: controllers/wdt_functions.php:923
250
  msgid "Google or Highcharts chart based on a wpDataTable"
251
  msgstr ""
252
 
253
+ #: controllers/wdt_functions.php:930
254
  msgid "wpDataChart"
255
  msgstr ""
256
 
257
+ #: controllers/wdt_functions.php:934
258
  msgid "Choose one of wpDataCharts from the list"
259
  msgstr ""
260
 
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 ""
444
  msgid "There was an error trying to fetch the table data: "
445
  msgstr ""
446
 
447
+ #: source/class.wdtconfigcontroller.php:479
448
  #, fuzzy
449
  msgid "Table in data source has no rows."
450
  msgstr "Tabel invoer data bron mag niet leeg zijn"
477
 
478
  #: source/class.wdttools.php:23
479
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
480
+ #: templates/admin/table-settings/column_settings_panel.inc.php:984
481
  msgid "Date"
482
  msgstr ""
483
 
484
  #: source/class.wdttools.php:24
485
+ #: templates/admin/table-settings/column_settings_panel.inc.php:985
486
  msgid "Datetime"
487
  msgstr ""
488
 
489
  #: source/class.wdttools.php:25
490
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
491
+ #: templates/admin/table-settings/column_settings_panel.inc.php:986
492
  msgid "Time"
493
  msgstr ""
494
 
506
  msgstr ""
507
 
508
  #: source/class.wdttools.php:29
509
+ #: templates/admin/table-settings/column_settings_panel.inc.php:989
510
  #, fuzzy
511
  msgid "Attachment"
512
  msgstr "Upload bijlage"
531
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
532
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
533
  #: templates/admin/common/HTMLModal.inc.php:43
534
+ #: templates/admin/common/linkModal.inc.php:117
535
  #: templates/admin/common/shortcodeModal.inc.php:48
536
  #: templates/admin/common/starModal.inc.php:73
537
  #: templates/admin/constructor/constructor.inc.php:29
538
  #: templates/admin/settings/settings.inc.php:28
539
  #: templates/admin/table-settings/add_column_modal.inc.php:126
540
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
541
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1095
542
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
543
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
544
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
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 ""
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
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
  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
  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
  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
  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
  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."
2361
  msgstr ""
2362
 
2363
  #: templates/admin/common/linkModal.inc.php:76
2364
+ #: templates/admin/table-settings/column_settings_panel.inc.php:720
2365
+ msgid "Make NOFOLLOW link"
2366
+ msgstr ""
2367
+
2368
+ #: templates/admin/common/linkModal.inc.php:87
2369
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2370
  msgid "Set the link to appear as a button"
2371
  msgstr ""
2372
 
2373
+ #: templates/admin/common/linkModal.inc.php:96
2374
  msgid "Button class:"
2375
  msgstr ""
2376
 
2377
+ #: templates/admin/common/linkModal.inc.php:121
2378
  msgid "Insert link"
2379
  msgstr ""
2380
 
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
2517
  msgstr ""
2518
 
2519
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
2520
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:14
2521
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2522
  msgid "Create a data table linked to an existing data source"
2523
  msgstr ""
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
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
  " 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 "
2956
  "and is a handy tool for small businesses and individuals that depend on "
2957
+ "stable appointment booking processes. 20,000+ businesses from healthcare, "
2958
  "beauty, sports, automotive, educational, creative, HR and other industries "
2959
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
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
2986
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2987
  #: templates/admin/welcome_page/welcome_page.inc.php:369
2988
  #, fuzzy
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
2998
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2999
  msgid "Support Center"
3000
  msgstr ""
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
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"
4104
  msgid "Open a topic"
4105
  msgstr ""
4106
 
4107
+ #: templates/admin/system-info/system_info.inc.php:22
4108
  msgid "System Info"
4109
  msgstr ""
4110
 
4111
+ #: templates/admin/system-info/system_info.inc.php:61
4112
  msgid "The URL of your site's homepage."
4113
  msgstr ""
4114
 
4115
+ #: templates/admin/system-info/system_info.inc.php:68
4116
  msgid "The root URL of your site."
4117
  msgstr ""
4118
 
4119
+ #: templates/admin/system-info/system_info.inc.php:75
4120
  msgid "System path of your wp-content directory."
4121
  msgstr ""
4122
 
4123
+ #: templates/admin/system-info/system_info.inc.php:82
4124
  msgid "System path of your WP root directory."
4125
  msgstr ""
4126
 
4127
+ #: templates/admin/system-info/system_info.inc.php:89
4128
  msgid "The version of WordPress installed on your site."
4129
  msgstr ""
4130
 
4131
+ #: templates/admin/system-info/system_info.inc.php:96
4132
  msgid "Whether or not you have WordPress Multisite enabled."
4133
  msgstr ""
4134
 
4135
+ #: templates/admin/system-info/system_info.inc.php:120
4136
  #, php-format
4137
  msgid ""
4138
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
4141
  "noreferrer\">Increasing memory allocated to PHP.</a>"
4142
  msgstr ""
4143
 
4144
+ #: templates/admin/system-info/system_info.inc.php:130
4145
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4146
  msgstr ""
4147
 
4148
+ #: templates/admin/system-info/system_info.inc.php:143
4149
  msgid "Displays whether or not WordPress is in Debug Mode."
4150
  msgstr ""
4151
 
4152
+ #: templates/admin/system-info/system_info.inc.php:150
4153
  msgid "The current language used by WordPress. Default = English"
4154
  msgstr ""
4155
 
4156
+ #: templates/admin/system-info/system_info.inc.php:170
4157
  msgid "Information about your operating system."
4158
  msgstr ""
4159
 
4160
+ #: templates/admin/system-info/system_info.inc.php:178
4161
  msgid "Information about the web server that is currently hosting your site."
4162
  msgstr ""
4163
 
4164
+ #: templates/admin/system-info/system_info.inc.php:220
4165
  msgid "The version of PHP installed on your hosting server."
4166
  msgstr ""
4167
 
4168
+ #: templates/admin/system-info/system_info.inc.php:231
4169
  msgid "The largest file size that can be contained in one post."
4170
  msgstr ""
4171
 
4172
+ #: templates/admin/system-info/system_info.inc.php:240
4173
  #, php-format
4174
  msgid ""
4175
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
4177
  "\">Increasing max execution to PHP</a>"
4178
  msgstr ""
4179
 
4180
+ #: templates/admin/system-info/system_info.inc.php:248
4181
  msgid ""
4182
  "The amount of time (in seconds) that your site will spend on a single "
4183
  "operation before timing out (to avoid server lockups)"
4184
  msgstr ""
4185
 
4186
+ #: templates/admin/system-info/system_info.inc.php:263
4187
  msgid "The version of MySQL installed on your hosting server."
4188
  msgstr ""
4189
 
4190
+ #: templates/admin/system-info/system_info.inc.php:271
4191
  msgid ""
4192
  "The largest file size that can be uploaded to your WordPress installation."
4193
  msgstr ""
4194
 
4195
+ #: templates/admin/system-info/system_info.inc.php:293
4196
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4197
  msgstr ""
4198
 
4199
+ #: templates/admin/system-info/system_info.inc.php:311
4200
  msgid ""
4201
  "XML support is something that needs to be installed on the server for proper "
4202
  "wpDataTables functionality."
4203
  msgstr ""
4204
 
4205
+ #: templates/admin/system-info/system_info.inc.php:329
4206
  msgid ""
4207
  "DOM support is something that needs to be installed on the server for proper "
4208
  "wpDataTables functionality."
4209
  msgstr ""
4210
 
4211
+ #: templates/admin/system-info/system_info.inc.php:355
4212
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4213
  msgstr ""
4214
 
4215
+ #: templates/admin/system-info/system_info.inc.php:374
4216
  msgid ""
4217
  "ZIP support is something that needs to be installed on the server, as a "
4218
  "package for the Linux operating system, or rather to the PHP software on the "
4219
  "server."
4220
  msgstr ""
4221
 
4222
+ #: templates/admin/system-info/system_info.inc.php:394
4223
  msgid "wpDataTables use cURL for getting data from other servers."
4224
  msgstr ""
4225
 
4226
+ #: templates/admin/system-info/system_info.inc.php:417
4227
  msgid "The name of the current active theme."
4228
  msgstr ""
4229
 
4230
+ #: templates/admin/system-info/system_info.inc.php:428
4231
  msgid "The installed version of the current active theme."
4232
  msgstr ""
4233
 
4234
+ #: templates/admin/system-info/system_info.inc.php:435
4235
  msgid "The theme developers."
4236
  msgstr ""
4237
 
4238
+ #: templates/admin/system-info/system_info.inc.php:441
4239
  msgid "The theme developers URL."
4240
  msgstr ""
4241
 
4242
+ #: templates/admin/system-info/system_info.inc.php:478
4243
  msgid "Visit plugin homepage"
4244
  msgstr ""
4245
 
4306
  msgstr ""
4307
 
4308
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4309
+ 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
4441
  msgstr ""
4442
 
4443
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4444
+ #: templates/admin/table-settings/column_settings_panel.inc.php:987
4445
  msgid "URL link"
4446
  msgstr ""
4447
 
4448
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4449
+ #: templates/admin/table-settings/column_settings_panel.inc.php:988
4450
  msgid "E-mail link"
4451
  msgstr ""
4452
 
4700
  msgid "Button class"
4701
  msgstr "Bottons font kleur"
4702
 
4703
+ #: templates/admin/table-settings/column_settings_panel.inc.php:712
4704
+ msgid "URL relation attribute"
4705
+ msgstr ""
4706
+
4707
+ #: templates/admin/table-settings/column_settings_panel.inc.php:714
4708
+ msgid "Set the link relation"
4709
+ msgstr ""
4710
+
4711
+ #: templates/admin/table-settings/column_settings_panel.inc.php:740
4712
  #, fuzzy
4713
  msgid "Allow sorting"
4714
  msgstr "Sorteren inschakelen"
4715
 
4716
+ #: templates/admin/table-settings/column_settings_panel.inc.php:742
4717
  msgid "Disable this to disallow sorting for this column."
4718
  msgstr ""
4719
 
4720
+ #: templates/admin/table-settings/column_settings_panel.inc.php:748
4721
  msgid "Allow sorting for this column"
4722
  msgstr ""
4723
 
4724
+ #: templates/admin/table-settings/column_settings_panel.inc.php:755
4725
  #, fuzzy
4726
  msgid "Use as default sorting column"
4727
  msgstr "Standaard sortering kolom"
4728
 
4729
+ #: templates/admin/table-settings/column_settings_panel.inc.php:757
4730
+ #: templates/admin/table-settings/column_settings_panel.inc.php:763
4731
  msgid "Sort table by this column on load"
4732
  msgstr ""
4733
 
4734
+ #: templates/admin/table-settings/column_settings_panel.inc.php:774
4735
  #, fuzzy
4736
  msgid "Default sorting direction"
4737
  msgstr "Standaard sortering kolom"
4738
 
4739
+ #: templates/admin/table-settings/column_settings_panel.inc.php:776
4740
  msgid "Choose whether to sort ascending or descending by default."
4741
  msgstr ""
4742
 
4743
+ #: templates/admin/table-settings/column_settings_panel.inc.php:803
4744
  msgid "Add a filter for this column"
4745
  msgstr ""
4746
 
4747
+ #: templates/admin/table-settings/column_settings_panel.inc.php:811
4748
  #, fuzzy
4749
  msgid "Enable filtering for column"
4750
  msgstr "Standaard sortering kolom"
4751
 
4752
+ #: templates/admin/table-settings/column_settings_panel.inc.php:818
4753
  msgid ""
4754
  "Enabling this switch will add a filter for this column. Disable to remove "
4755
  "the filter for this column."
4756
  msgstr ""
4757
 
4758
+ #: templates/admin/table-settings/column_settings_panel.inc.php:827
4759
  #, fuzzy
4760
  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
+
4768
+ #: templates/admin/table-settings/column_settings_panel.inc.php:836
4769
+ msgid ""
4770
+ "If this option is turned off, the column data will not appear in your global "
4771
+ "search results."
4772
+ msgstr ""
4773
+
4774
+ #: templates/admin/table-settings/column_settings_panel.inc.php:842
4775
+ msgid "Enable this column in Global search"
4776
+ msgstr ""
4777
+
4778
+ #: templates/admin/table-settings/column_settings_panel.inc.php:850
4779
  #: templates/edit_table.inc.php:570
4780
  msgid "Filter type"
4781
  msgstr "Filter type"
4782
 
4783
+ #: templates/admin/table-settings/column_settings_panel.inc.php:852
4784
  msgid ""
4785
  "You can redefine the filter type here, it will affect the filtering logic."
4786
  msgstr ""
4787
 
4788
+ #: templates/admin/table-settings/column_settings_panel.inc.php:859
4789
  msgid "Text"
4790
  msgstr ""
4791
 
4792
+ #: templates/admin/table-settings/column_settings_panel.inc.php:860
4793
  #, fuzzy
4794
  msgid "Number"
4795
  msgstr "Nummer format"
4796
 
4797
+ #: templates/admin/table-settings/column_settings_panel.inc.php:861
4798
  #, fuzzy
4799
  msgid "Number range"
4800
  msgstr "Nummer format"
4801
 
4802
+ #: templates/admin/table-settings/column_settings_panel.inc.php:862
4803
  #, fuzzy
4804
  msgid "Date range"
4805
  msgstr "Datum format"
4806
 
4807
+ #: templates/admin/table-settings/column_settings_panel.inc.php:863
4808
  msgid "DateTime range"
4809
  msgstr ""
4810
 
4811
+ #: templates/admin/table-settings/column_settings_panel.inc.php:864
4812
  msgid "Time range"
4813
  msgstr ""
4814
 
4815
+ #: templates/admin/table-settings/column_settings_panel.inc.php:865
4816
  msgid "Selectbox"
4817
  msgstr ""
4818
 
4819
+ #: templates/admin/table-settings/column_settings_panel.inc.php:866
4820
  msgid "Checkbox"
4821
  msgstr ""
4822
 
4823
+ #: templates/admin/table-settings/column_settings_panel.inc.php:877
4824
  #, fuzzy
4825
  msgid "Filter label"
4826
  msgstr "Filter type"
4827
 
4828
+ #: templates/admin/table-settings/column_settings_panel.inc.php:885
4829
  msgid "Custom filter label"
4830
  msgstr ""
4831
 
4832
+ #: templates/admin/table-settings/column_settings_panel.inc.php:892
4833
  msgid ""
4834
  "You can change the filter label (placeholder) for this column here, if you "
4835
  "would like to show some custom text instead of default."
4836
  msgstr ""
4837
 
4838
+ #: templates/admin/table-settings/column_settings_panel.inc.php:907
4839
  #, fuzzy
4840
  msgid "Exact filtering"
4841
  msgstr "Geavanceerde filtering"
4842
 
4843
+ #: templates/admin/table-settings/column_settings_panel.inc.php:909
4844
  msgid ""
4845
  "Enable exact search to use exact match logic for filtering, disable to allow "
4846
  "partial match."
4847
  msgstr ""
4848
 
4849
+ #: templates/admin/table-settings/column_settings_panel.inc.php:915
4850
  #, fuzzy
4851
  msgid "Enable exact filtering"
4852
  msgstr "Sorteren inschakelen"
4853
 
4854
+ #: templates/admin/table-settings/column_settings_panel.inc.php:922
4855
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1019
4856
  #, fuzzy
4857
  msgid "Predefined value(s)"
4858
  msgstr "Standaardwaarde(n)"
4859
 
4860
+ #: templates/admin/table-settings/column_settings_panel.inc.php:924
4861
  msgid ""
4862
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4863
  "page load."
4864
  msgstr ""
4865
 
4866
+ #: templates/admin/table-settings/column_settings_panel.inc.php:970
4867
  msgid "Editor input type"
4868
  msgstr "Editor input type"
4869
 
4870
+ #: templates/admin/table-settings/column_settings_panel.inc.php:972
4871
  msgid "Choose which kind of editor input to use for this column."
4872
  msgstr ""
4873
 
4874
+ #: templates/admin/table-settings/column_settings_panel.inc.php:978
4875
  msgid "None"
4876
  msgstr ""
4877
 
4878
+ #: templates/admin/table-settings/column_settings_panel.inc.php:979
4879
  msgid "One-line edit"
4880
  msgstr ""
4881
 
4882
+ #: templates/admin/table-settings/column_settings_panel.inc.php:980
4883
  msgid "Multi-line edit"
4884
  msgstr ""
4885
 
4886
+ #: templates/admin/table-settings/column_settings_panel.inc.php:981
4887
  msgid "HTML editor"
4888
  msgstr ""
4889
 
4890
+ #: templates/admin/table-settings/column_settings_panel.inc.php:982
4891
  msgid "Single-value selectbox"
4892
  msgstr ""
4893
 
4894
+ #: templates/admin/table-settings/column_settings_panel.inc.php:983
4895
  msgid "Multi-value selectbox"
4896
  msgstr ""
4897
 
4898
+ #: templates/admin/table-settings/column_settings_panel.inc.php:999
4899
  #, fuzzy
4900
  msgid "Column cannot be empty"
4901
  msgstr "Tabel type mag niet leeg zijn"
4902
 
4903
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1001
4904
  msgid ""
4905
  "Enable to make this column mandatory. Users will see a warning when trying "
4906
  "to save with empty input."
4907
  msgstr ""
4908
 
4909
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1007
4910
  #, fuzzy
4911
  msgid "Cannot be empty"
4912
  msgstr "Tabel type mag niet leeg zijn"
4913
 
4914
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1021
4915
  msgid ""
4916
  "If you would like to have some values pre-defined in editors (i.e. default "
4917
  "editor values) please enter these here."
4918
  msgstr ""
4919
 
4920
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1067
4921
  msgid "Add New Rule"
4922
  msgstr ""
4923
 
4924
  #: templates/admin/table-settings/column_small_block.inc.php:16
4925
+ msgid "Enable/disable in global search"
4926
  msgstr ""
4927
 
4928
  #: templates/admin/table-settings/column_small_block.inc.php:18
4929
+ msgid "Show/hide sorting"
4930
+ msgstr ""
4931
+
4932
+ #: templates/admin/table-settings/column_small_block.inc.php:20
4933
  msgid "Show/hide the column"
4934
  msgstr ""
4935
 
4936
+ #: templates/admin/table-settings/column_small_block.inc.php:26
4937
  #, fuzzy
4938
  msgid "Open column settings"
4939
  msgstr "Optionele kolom setup"
5130
  msgstr ""
5131
  "Weet je het zeker? Je verliest de aanpassingen die niet opgeslagen zijn!"
5132
 
5133
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:9
5134
+ msgid "When working with this table type please note that at the moment:"
5135
+ msgstr ""
5136
+
5137
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:11
5138
+ msgid "There is no sorting, search, or pagination in this table type."
5139
+ msgstr ""
5140
+
5141
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
5142
+ msgid "Creating charts from this table type is not yet possible."
5143
+ msgstr ""
5144
+
5145
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:13
5146
+ msgid ""
5147
+ "If you need those features, please consider creating tables with option "
5148
+ msgstr ""
5149
+
5150
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:17
5151
+ msgid ""
5152
+ "Depends of users requests, we will add it in our road map and implement it "
5153
+ "based on priority. Thank you for understanding."
5154
+ msgstr ""
5155
+
5156
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5157
  msgid "Table preview"
5158
  msgstr ""
5159
 
5160
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:38
5161
  msgid "Desktop"
5162
  msgstr ""
5163
 
5164
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:41
5165
  msgid "Tablet"
5166
  msgstr ""
5167
 
5168
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:44
5169
  msgid "Mobile"
5170
  msgstr ""
5171
 
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 "
7185
  msgid "Insert name for export file"
7186
  msgstr ""
7187
 
7188
+ #, fuzzy
7189
+ #~ msgid "Filtering"
7190
+ #~ msgstr "Filter in formulier"
7191
+
7192
  #, fuzzy
7193
  #~ msgid "Bad request format."
7194
  #~ msgstr "Datum format"
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: 2020-12-25 17:33+0100\n"
5
- "PO-Revision-Date: 2020-12-25 17:33+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
@@ -166,94 +166,94 @@ msgstr ""
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
 
169
- #: controllers/wdt_functions.php:471
170
  #, fuzzy
171
  msgid "wpDataChart with provided ID not found!"
172
  msgstr "wpDataTable met geleverde ID niet gevonden!"
173
 
174
- #: controllers/wdt_functions.php:507 controllers/wdt_functions.php:588
175
  msgid "wpDataTable with provided ID not found!"
176
  msgstr "wpDataTable met geleverde ID niet gevonden!"
177
 
178
- #: controllers/wdt_functions.php:598
179
  msgid "Provided column is not Integer or Float column type"
180
  msgstr ""
181
 
182
- #: controllers/wdt_functions.php:815
183
  #, fuzzy
184
  msgid "Choose a table"
185
  msgstr "Kies rollen"
186
 
187
- #: controllers/wdt_functions.php:847
188
  msgid "Interactive Responsive Table"
189
  msgstr ""
190
 
191
- #: controllers/wdt_functions.php:848 controllers/wdt_functions.php:909
192
  msgid "Content"
193
  msgstr ""
194
 
195
- #: controllers/wdt_functions.php:854
196
  #, fuzzy
197
  msgid "wpDataTable"
198
  msgstr "wpDataTable aanpassen"
199
 
200
- #: controllers/wdt_functions.php:858
201
  msgid "Choose the wpDataTable from a dropdown"
202
  msgstr ""
203
 
204
- #: controllers/wdt_functions.php:863
205
  #, fuzzy
206
  msgid "Table view"
207
  msgstr "Tabel titel"
208
 
209
- #: controllers/wdt_functions.php:867
210
  #, fuzzy
211
  msgid "Regular wpDataTable"
212
  msgstr "Gebruik in wpDataTable"
213
 
214
- #: controllers/wdt_functions.php:869
215
  #, fuzzy
216
  msgid "Excel-like table"
217
  msgstr "Excel bestand"
218
 
219
- #: controllers/wdt_functions.php:875
220
  msgid "Variable placeholder #1"
221
  msgstr ""
222
 
223
- #: controllers/wdt_functions.php:878 controllers/wdt_functions.php:886
224
- #: controllers/wdt_functions.php:894
225
  msgid "Variables"
226
  msgstr ""
227
 
228
- #: controllers/wdt_functions.php:879
229
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
230
  msgstr ""
231
 
232
- #: controllers/wdt_functions.php:883
233
  msgid "Variable placeholder #2"
234
  msgstr ""
235
 
236
- #: controllers/wdt_functions.php:887
237
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
238
  msgstr ""
239
 
240
- #: controllers/wdt_functions.php:891
241
  msgid "Variable placeholder #3"
242
  msgstr ""
243
 
244
- #: controllers/wdt_functions.php:895
245
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
246
  msgstr ""
247
 
248
- #: controllers/wdt_functions.php:908
249
  msgid "Google or Highcharts chart based on a wpDataTable"
250
  msgstr ""
251
 
252
- #: controllers/wdt_functions.php:915
253
  msgid "wpDataChart"
254
  msgstr ""
255
 
256
- #: controllers/wdt_functions.php:919
257
  msgid "Choose one of wpDataCharts from the list"
258
  msgstr ""
259
 
@@ -395,15 +395,15 @@ msgstr "MySQL host"
395
  msgid "Manual"
396
  msgstr ""
397
 
398
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2204
399
- #: source/class.wpdatatable.php:2274
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:2213
406
- #: source/class.wpdatatable.php:2284
407
  #: templates/admin/table-settings/table_settings_block.inc.php:1032
408
  msgid "CSV"
409
  msgstr ""
@@ -443,7 +443,7 @@ msgstr "Nog geen wpDataTables in het systeem"
443
  msgid "There was an error trying to fetch the table data: "
444
  msgstr ""
445
 
446
- #: source/class.wdtconfigcontroller.php:477
447
  #, fuzzy
448
  msgid "Table in data source has no rows."
449
  msgstr "Tabel invoer data bron mag niet leeg zijn"
@@ -476,18 +476,18 @@ msgstr ""
476
 
477
  #: source/class.wdttools.php:23
478
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
479
- #: templates/admin/table-settings/column_settings_panel.inc.php:968
480
  msgid "Date"
481
  msgstr ""
482
 
483
  #: source/class.wdttools.php:24
484
- #: templates/admin/table-settings/column_settings_panel.inc.php:969
485
  msgid "Datetime"
486
  msgstr ""
487
 
488
  #: source/class.wdttools.php:25
489
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
490
- #: templates/admin/table-settings/column_settings_panel.inc.php:970
491
  msgid "Time"
492
  msgstr ""
493
 
@@ -505,7 +505,7 @@ msgid "Image"
505
  msgstr ""
506
 
507
  #: source/class.wdttools.php:29
508
- #: templates/admin/table-settings/column_settings_panel.inc.php:973
509
  #, fuzzy
510
  msgid "Attachment"
511
  msgstr "Upload bijlage"
@@ -530,14 +530,14 @@ msgstr ""
530
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
531
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
532
  #: templates/admin/common/HTMLModal.inc.php:43
533
- #: templates/admin/common/linkModal.inc.php:106
534
  #: templates/admin/common/shortcodeModal.inc.php:48
535
  #: templates/admin/common/starModal.inc.php:73
536
  #: templates/admin/constructor/constructor.inc.php:29
537
  #: templates/admin/settings/settings.inc.php:28
538
  #: templates/admin/table-settings/add_column_modal.inc.php:126
539
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
540
- #: templates/admin/table-settings/column_settings_panel.inc.php:1079
541
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
542
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
543
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
@@ -591,8 +591,8 @@ msgstr ""
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:2222
595
- #: source/class.wpdatatable.php:2294
596
  #: templates/admin/table-settings/table_settings_block.inc.php:1033
597
  msgid "Copy"
598
  msgstr ""
@@ -1304,13 +1304,13 @@ msgstr ""
1304
  msgid "You are mixing data types (several date axes and several number)"
1305
  msgstr ""
1306
 
1307
- #: source/class.wpdatatable.php:1883
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:2122 source/class.wpdatatable.php:2125
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
@@ -1318,31 +1318,31 @@ msgstr ""
1318
  msgid "All"
1319
  msgstr "Alles"
1320
 
1321
- #: source/class.wpdatatable.php:2183 source/class.wpdatatable.php:2252
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:2193 source/class.wpdatatable.php:2262
1328
  #: templates/admin/table-settings/table_settings_block.inc.php:1030
1329
  msgid "Print"
1330
  msgstr ""
1331
 
1332
- #: source/class.wpdatatable.php:2232 source/class.wpdatatable.php:2305
1333
  #: templates/admin/table-settings/table_settings_block.inc.php:1034
1334
  msgid "PDF"
1335
  msgstr ""
1336
 
1337
- #: source/class.wpdatatable.php:2240
1338
  msgid "Export"
1339
  msgstr ""
1340
 
1341
- #: source/class.wpdatatable.php:2318
1342
  msgid "Search table"
1343
  msgstr ""
1344
 
1345
- #: source/class.wpdatatable.php:2319
1346
  msgid "Showing _MENU_ Entries"
1347
  msgstr ""
1348
 
@@ -1361,7 +1361,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:496
1365
  msgid "wpDataTables Addons"
1366
  msgstr ""
1367
 
@@ -1375,12 +1375,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:567
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:571
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 +1406,7 @@ msgid "NEW"
1406
  msgstr ""
1407
 
1408
  #: templates/admin/addons/addons.inc.php:40
1409
- #: templates/admin/dashboard/dashboard.inc.php:514
1410
  msgid "Master Detail Tables for wpDataTables"
1411
  msgstr ""
1412
 
@@ -1427,7 +1427,7 @@ msgid "Learn more"
1427
  msgstr ""
1428
 
1429
  #: templates/admin/addons/addons.inc.php:67
1430
- #: templates/admin/dashboard/dashboard.inc.php:541
1431
  msgid "Powerful Filters for wpDataTables"
1432
  msgstr ""
1433
 
@@ -1439,24 +1439,24 @@ msgid ""
1439
  msgstr ""
1440
 
1441
  #: templates/admin/addons/addons.inc.php:120
1442
- #: templates/admin/dashboard/dashboard.inc.php:594
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:598
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:620
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:624
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."
@@ -2360,15 +2360,20 @@ msgid "Open link in the new tab"
2360
  msgstr ""
2361
 
2362
  #: templates/admin/common/linkModal.inc.php:76
 
 
 
 
 
2363
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2364
  msgid "Set the link to appear as a button"
2365
  msgstr ""
2366
 
2367
- #: templates/admin/common/linkModal.inc.php:85
2368
  msgid "Button class:"
2369
  msgstr ""
2370
 
2371
- #: templates/admin/common/linkModal.inc.php:110
2372
  msgid "Insert link"
2373
  msgstr ""
2374
 
@@ -2485,8 +2490,8 @@ msgstr ""
2485
  #: templates/admin/settings/settings.inc.php:96
2486
  #: templates/admin/support/support.inc.php:31
2487
  #: templates/admin/support/support.inc.php:47
2488
- #: templates/admin/system-info/system_info.inc.php:30
2489
- #: templates/admin/table-settings/column_settings_panel.inc.php:1074
2490
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2491
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2492
  #: templates/admin/table-settings/table_settings_block.inc.php:1197
@@ -2511,6 +2516,7 @@ msgid ""
2511
  msgstr ""
2512
 
2513
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
 
2514
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2515
  msgid "Create a data table linked to an existing data source"
2516
  msgstr ""
@@ -2719,120 +2725,138 @@ msgid "Version "
2719
  msgstr ""
2720
 
2721
  #: templates/admin/dashboard/dashboard.inc.php:340
2722
- msgid "A minor update with a couple of bug fixes and stability improvements:"
 
 
2723
  msgstr ""
2724
 
2725
  #: templates/admin/dashboard/dashboard.inc.php:345
2726
  msgid ""
2727
- "<strong>BugFix:</strong> Fixed issue with Fatal errors on Dashboard page if "
2728
- "PHP extensions are not installed."
2729
  msgstr ""
2730
 
2731
  #: templates/admin/dashboard/dashboard.inc.php:346
2732
- msgid "Compatibility with WordPress 5.6 approved."
 
 
2733
  msgstr ""
2734
 
2735
  #: templates/admin/dashboard/dashboard.inc.php:347
2736
- msgid "Compatibility with PHP 8 approved."
 
 
2737
  msgstr ""
2738
 
2739
  #: templates/admin/dashboard/dashboard.inc.php:348
 
 
 
 
 
 
 
 
 
 
 
 
2740
  msgid "Other small bug fixes and stability improvements."
2741
  msgstr ""
2742
 
2743
- #: templates/admin/dashboard/dashboard.inc.php:360
2744
  msgid "Go Premium!"
2745
  msgstr ""
2746
 
2747
- #: templates/admin/dashboard/dashboard.inc.php:366
2748
  msgid "View Comparison"
2749
  msgstr ""
2750
 
2751
- #: templates/admin/dashboard/dashboard.inc.php:374
2752
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2753
  msgid ""
2754
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2755
  "of the powerful features."
2756
  msgstr ""
2757
 
2758
- #: templates/admin/dashboard/dashboard.inc.php:378
2759
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2760
  msgid "Create a table manually"
2761
  msgstr ""
2762
 
2763
- #: templates/admin/dashboard/dashboard.inc.php:381
2764
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2765
  msgid "Creating tables from Google Spreadsheet"
2766
  msgstr ""
2767
 
2768
- #: templates/admin/dashboard/dashboard.inc.php:384
2769
  msgid ""
2770
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2771
  "tables via Google Sheet API"
2772
  msgstr ""
2773
 
2774
- #: templates/admin/dashboard/dashboard.inc.php:387
2775
  msgid ""
2776
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2777
  "tables from Private Google Spreadsheet"
2778
  msgstr ""
2779
 
2780
- #: templates/admin/dashboard/dashboard.inc.php:390
2781
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2782
  msgid "Creating MySQL-based tables from database"
2783
  msgstr ""
2784
 
2785
- #: templates/admin/dashboard/dashboard.inc.php:393
2786
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2787
  msgid "Creating MySQL-based tables from Wordpress post types"
2788
  msgstr ""
2789
 
2790
- #: templates/admin/dashboard/dashboard.inc.php:396
2791
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2792
  #: templates/edit_table.inc.php:329
2793
  msgid "Advanced filtering"
2794
  msgstr ""
2795
 
2796
- #: templates/admin/dashboard/dashboard.inc.php:399
2797
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2798
  #: templates/admin/table-settings/table_settings_block.inc.php:144
2799
  #: templates/edit_table.inc.php:282
2800
  msgid "Server-side processing"
2801
  msgstr "Server-side verwerking"
2802
 
2803
- #: templates/admin/dashboard/dashboard.inc.php:402
2804
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2805
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2806
  msgstr ""
2807
 
2808
- #: templates/admin/dashboard/dashboard.inc.php:405
2809
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2810
  msgid "Front-end table editing"
2811
  msgstr ""
2812
 
2813
- #: templates/admin/dashboard/dashboard.inc.php:408
2814
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2815
  msgid "Excel-like editing"
2816
  msgstr ""
2817
 
2818
- #: templates/admin/dashboard/dashboard.inc.php:411
2819
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2820
  msgid "Creating charts with Highcharts"
2821
  msgstr ""
2822
 
2823
- #: templates/admin/dashboard/dashboard.inc.php:414
2824
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2825
  msgid "Creating charts with Chart.js"
2826
  msgstr ""
2827
 
2828
- #: templates/admin/dashboard/dashboard.inc.php:417
2829
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2830
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2831
  #: templates/edit_table.inc.php:301
2832
  msgid "Responsive"
2833
  msgstr ""
2834
 
2835
- #: templates/admin/dashboard/dashboard.inc.php:420
2836
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2837
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2838
  #: templates/edit_table.inc.php:750
@@ -2840,42 +2864,42 @@ msgstr ""
2840
  msgid "Conditional formatting"
2841
  msgstr "Extra instellingen"
2842
 
2843
- #: templates/admin/dashboard/dashboard.inc.php:423
2844
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2845
  msgid "Calculating Tools"
2846
  msgstr ""
2847
 
2848
- #: templates/admin/dashboard/dashboard.inc.php:426
2849
  msgid "Formula columns"
2850
  msgstr ""
2851
 
2852
- #: templates/admin/dashboard/dashboard.inc.php:429
2853
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2854
  #: templates/admin/table-settings/table_settings_block.inc.php:79
2855
  msgid "Placeholders"
2856
  msgstr ""
2857
 
2858
- #: templates/admin/dashboard/dashboard.inc.php:432
2859
  msgid "Premium support"
2860
  msgstr ""
2861
 
2862
- #: templates/admin/dashboard/dashboard.inc.php:436
2863
  msgid "Get Premium Today"
2864
  msgstr ""
2865
 
2866
- #: templates/admin/dashboard/dashboard.inc.php:443
2867
  msgid "News Blog"
2868
  msgstr ""
2869
 
2870
- #: templates/admin/dashboard/dashboard.inc.php:448
2871
  msgid "Checkout useful articles from wpdatatables.com"
2872
  msgstr ""
2873
 
2874
- #: templates/admin/dashboard/dashboard.inc.php:471
2875
  msgid "Please install and enable PHP extensions xml and dom on your server."
2876
  msgstr ""
2877
 
2878
- #: templates/admin/dashboard/dashboard.inc.php:479
2879
  msgid ""
2880
  "Never miss notifications about new cool features, promotions,\n"
2881
  " giveaways or freebies – subscribe to our "
@@ -2883,93 +2907,93 @@ msgid ""
2883
  " about 1 message per month and never spam!"
2884
  msgstr ""
2885
 
2886
- #: templates/admin/dashboard/dashboard.inc.php:497
2887
  msgid "Premium "
2888
  msgstr ""
2889
 
2890
- #: templates/admin/dashboard/dashboard.inc.php:500
2891
  msgid ""
2892
  "While wpDataTables itself provides quite a large amount of features and "
2893
  "unlimited customisation, flexibility, you can achieve even more with our "
2894
  "premium addons.(requires wpDataTables Premium version)"
2895
  msgstr ""
2896
 
2897
- #: templates/admin/dashboard/dashboard.inc.php:518
2898
  msgid ""
2899
  "A wpDataTables addon which allows showing additional details for a specific "
2900
  "row in a popup or a separate page or post."
2901
  msgstr ""
2902
 
2903
- #: templates/admin/dashboard/dashboard.inc.php:524
2904
- #: templates/admin/dashboard/dashboard.inc.php:551
2905
- #: templates/admin/dashboard/dashboard.inc.php:577
2906
- #: templates/admin/dashboard/dashboard.inc.php:604
2907
- #: templates/admin/dashboard/dashboard.inc.php:630
2908
- #: templates/admin/dashboard/dashboard.inc.php:663
2909
  msgid "Learn More"
2910
  msgstr ""
2911
 
2912
- #: templates/admin/dashboard/dashboard.inc.php:545
2913
  msgid ""
2914
  "An add-on for wpDataTables that provides powerful filtering features: "
2915
  "cascade filtering, applying filters on button click, hide table before "
2916
  "filtering."
2917
  msgstr ""
2918
 
2919
- #: templates/admin/dashboard/dashboard.inc.php:641
2920
  msgid "Need free booking plugin?"
2921
  msgstr ""
2922
 
2923
- #: templates/admin/dashboard/dashboard.inc.php:650
2924
  msgid "Appointments and Events WordPress Booking Plugin"
2925
  msgstr ""
2926
 
2927
- #: templates/admin/dashboard/dashboard.inc.php:653
2928
  msgid ""
2929
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2930
  "set up a fully-featured automated booking system on your WordPress website "
2931
  "and is a handy tool for small businesses and individuals that depend on "
2932
- "stable appointment booking processes. 10,000+ businesses from healthcare, "
2933
  "beauty, sports, automotive, educational, creative, HR and other industries "
2934
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
2935
  "each month."
2936
  msgstr ""
2937
 
2938
- #: templates/admin/dashboard/dashboard.inc.php:656
2939
- msgid "Rating: 4.3 - ‎68 reviews"
2940
  msgstr ""
2941
 
2942
- #: templates/admin/dashboard/dashboard.inc.php:659
2943
  msgid "Free Download"
2944
  msgstr ""
2945
 
2946
- #: templates/admin/dashboard/dashboard.inc.php:674
2947
  #: templates/admin/getting-started/getting_started.inc.php:184
2948
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2949
  #: templates/admin/support/support.inc.php:78
2950
- #: templates/admin/system-info/system_info.inc.php:510
2951
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2952
  msgid "Made by"
2953
  msgstr ""
2954
 
2955
- #: templates/admin/dashboard/dashboard.inc.php:682
2956
  #: templates/admin/getting-started/getting_started.inc.php:192
2957
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2958
  #: templates/admin/support/support.inc.php:45
2959
  #: templates/admin/support/support.inc.php:86
2960
- #: templates/admin/system-info/system_info.inc.php:518
2961
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2962
  #: templates/admin/welcome_page/welcome_page.inc.php:369
2963
  #, fuzzy
2964
  msgid "Documentation"
2965
  msgstr "wpDataTables documentatie"
2966
 
2967
- #: templates/admin/dashboard/dashboard.inc.php:686
2968
  #: templates/admin/getting-started/getting_started.inc.php:196
2969
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2970
  #: templates/admin/support/support.inc.php:24
2971
  #: templates/admin/support/support.inc.php:90
2972
- #: templates/admin/system-info/system_info.inc.php:522
2973
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2974
  msgid "Support Center"
2975
  msgstr ""
@@ -3221,7 +3245,7 @@ msgstr ""
3221
  #: templates/admin/settings/settings.inc.php:33
3222
  #: templates/admin/settings/settings.inc.php:91
3223
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3224
- #: templates/admin/table-settings/column_settings_panel.inc.php:1082
3225
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3226
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3227
  #: templates/admin/table-settings/table_preview_block.inc.php:89
@@ -3797,13 +3821,13 @@ msgid ""
3797
  msgstr ""
3798
 
3799
  #: templates/admin/settings/tabs/main_plugin_settings.php:216
3800
- #: templates/admin/table-settings/column_settings_panel.inc.php:767
3801
  #: templates/edit_table.inc.php:663
3802
  msgid "Ascending"
3803
  msgstr "Oplopend"
3804
 
3805
  #: templates/admin/settings/tabs/main_plugin_settings.php:217
3806
- #: templates/admin/table-settings/column_settings_panel.inc.php:768
3807
  #: templates/edit_table.inc.php:665
3808
  msgid "Descending"
3809
  msgstr "Aflopend"
@@ -4079,35 +4103,35 @@ msgstr ""
4079
  msgid "Open a topic"
4080
  msgstr ""
4081
 
4082
- #: templates/admin/system-info/system_info.inc.php:23
4083
  msgid "System Info"
4084
  msgstr ""
4085
 
4086
- #: templates/admin/system-info/system_info.inc.php:62
4087
  msgid "The URL of your site's homepage."
4088
  msgstr ""
4089
 
4090
- #: templates/admin/system-info/system_info.inc.php:69
4091
  msgid "The root URL of your site."
4092
  msgstr ""
4093
 
4094
- #: templates/admin/system-info/system_info.inc.php:76
4095
  msgid "System path of your wp-content directory."
4096
  msgstr ""
4097
 
4098
- #: templates/admin/system-info/system_info.inc.php:83
4099
  msgid "System path of your WP root directory."
4100
  msgstr ""
4101
 
4102
- #: templates/admin/system-info/system_info.inc.php:90
4103
  msgid "The version of WordPress installed on your site."
4104
  msgstr ""
4105
 
4106
- #: templates/admin/system-info/system_info.inc.php:97
4107
  msgid "Whether or not you have WordPress Multisite enabled."
4108
  msgstr ""
4109
 
4110
- #: templates/admin/system-info/system_info.inc.php:121
4111
  #, php-format
4112
  msgid ""
4113
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
@@ -4116,35 +4140,35 @@ msgid ""
4116
  "noreferrer\">Increasing memory allocated to PHP.</a>"
4117
  msgstr ""
4118
 
4119
- #: templates/admin/system-info/system_info.inc.php:131
4120
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4121
  msgstr ""
4122
 
4123
- #: templates/admin/system-info/system_info.inc.php:144
4124
  msgid "Displays whether or not WordPress is in Debug Mode."
4125
  msgstr ""
4126
 
4127
- #: templates/admin/system-info/system_info.inc.php:151
4128
  msgid "The current language used by WordPress. Default = English"
4129
  msgstr ""
4130
 
4131
- #: templates/admin/system-info/system_info.inc.php:171
4132
  msgid "Information about your operating system."
4133
  msgstr ""
4134
 
4135
- #: templates/admin/system-info/system_info.inc.php:179
4136
  msgid "Information about the web server that is currently hosting your site."
4137
  msgstr ""
4138
 
4139
- #: templates/admin/system-info/system_info.inc.php:221
4140
  msgid "The version of PHP installed on your hosting server."
4141
  msgstr ""
4142
 
4143
- #: templates/admin/system-info/system_info.inc.php:232
4144
  msgid "The largest file size that can be contained in one post."
4145
  msgstr ""
4146
 
4147
- #: templates/admin/system-info/system_info.inc.php:241
4148
  #, php-format
4149
  msgid ""
4150
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
@@ -4152,69 +4176,69 @@ msgid ""
4152
  "\">Increasing max execution to PHP</a>"
4153
  msgstr ""
4154
 
4155
- #: templates/admin/system-info/system_info.inc.php:249
4156
  msgid ""
4157
  "The amount of time (in seconds) that your site will spend on a single "
4158
  "operation before timing out (to avoid server lockups)"
4159
  msgstr ""
4160
 
4161
- #: templates/admin/system-info/system_info.inc.php:264
4162
  msgid "The version of MySQL installed on your hosting server."
4163
  msgstr ""
4164
 
4165
- #: templates/admin/system-info/system_info.inc.php:272
4166
  msgid ""
4167
  "The largest file size that can be uploaded to your WordPress installation."
4168
  msgstr ""
4169
 
4170
- #: templates/admin/system-info/system_info.inc.php:294
4171
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4172
  msgstr ""
4173
 
4174
- #: templates/admin/system-info/system_info.inc.php:312
4175
  msgid ""
4176
  "XML support is something that needs to be installed on the server for proper "
4177
  "wpDataTables functionality."
4178
  msgstr ""
4179
 
4180
- #: templates/admin/system-info/system_info.inc.php:330
4181
  msgid ""
4182
  "DOM support is something that needs to be installed on the server for proper "
4183
  "wpDataTables functionality."
4184
  msgstr ""
4185
 
4186
- #: templates/admin/system-info/system_info.inc.php:356
4187
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4188
  msgstr ""
4189
 
4190
- #: templates/admin/system-info/system_info.inc.php:375
4191
  msgid ""
4192
  "ZIP support is something that needs to be installed on the server, as a "
4193
  "package for the Linux operating system, or rather to the PHP software on the "
4194
  "server."
4195
  msgstr ""
4196
 
4197
- #: templates/admin/system-info/system_info.inc.php:395
4198
  msgid "wpDataTables use cURL for getting data from other servers."
4199
  msgstr ""
4200
 
4201
- #: templates/admin/system-info/system_info.inc.php:418
4202
  msgid "The name of the current active theme."
4203
  msgstr ""
4204
 
4205
- #: templates/admin/system-info/system_info.inc.php:429
4206
  msgid "The installed version of the current active theme."
4207
  msgstr ""
4208
 
4209
- #: templates/admin/system-info/system_info.inc.php:436
4210
  msgid "The theme developers."
4211
  msgstr ""
4212
 
4213
- #: templates/admin/system-info/system_info.inc.php:442
4214
  msgid "The theme developers URL."
4215
  msgstr ""
4216
 
4217
- #: templates/admin/system-info/system_info.inc.php:479
4218
  msgid "Visit plugin homepage"
4219
  msgstr ""
4220
 
@@ -4281,9 +4305,8 @@ msgid "Data"
4281
  msgstr ""
4282
 
4283
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4284
- #, fuzzy
4285
- msgid "Filtering"
4286
- msgstr "Filter in formulier"
4287
 
4288
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4289
  #: templates/admin/table-settings/table_settings_block.inc.php:71
@@ -4417,12 +4440,12 @@ msgid "DateTime"
4417
  msgstr ""
4418
 
4419
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4420
- #: templates/admin/table-settings/column_settings_panel.inc.php:971
4421
  msgid "URL link"
4422
  msgstr ""
4423
 
4424
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4425
- #: templates/admin/table-settings/column_settings_panel.inc.php:972
4426
  msgid "E-mail link"
4427
  msgstr ""
4428
 
@@ -4676,213 +4699,240 @@ msgstr ""
4676
  msgid "Button class"
4677
  msgstr "Bottons font kleur"
4678
 
4679
- #: templates/admin/table-settings/column_settings_panel.inc.php:724
 
 
 
 
 
 
 
 
4680
  #, fuzzy
4681
  msgid "Allow sorting"
4682
  msgstr "Sorteren inschakelen"
4683
 
4684
- #: templates/admin/table-settings/column_settings_panel.inc.php:726
4685
  msgid "Disable this to disallow sorting for this column."
4686
  msgstr ""
4687
 
4688
- #: templates/admin/table-settings/column_settings_panel.inc.php:732
4689
  msgid "Allow sorting for this column"
4690
  msgstr ""
4691
 
4692
- #: templates/admin/table-settings/column_settings_panel.inc.php:739
4693
  #, fuzzy
4694
  msgid "Use as default sorting column"
4695
  msgstr "Standaard sortering kolom"
4696
 
4697
- #: templates/admin/table-settings/column_settings_panel.inc.php:741
4698
- #: templates/admin/table-settings/column_settings_panel.inc.php:747
4699
  msgid "Sort table by this column on load"
4700
  msgstr ""
4701
 
4702
- #: templates/admin/table-settings/column_settings_panel.inc.php:758
4703
  #, fuzzy
4704
  msgid "Default sorting direction"
4705
  msgstr "Standaard sortering kolom"
4706
 
4707
- #: templates/admin/table-settings/column_settings_panel.inc.php:760
4708
  msgid "Choose whether to sort ascending or descending by default."
4709
  msgstr ""
4710
 
4711
- #: templates/admin/table-settings/column_settings_panel.inc.php:793
4712
  msgid "Add a filter for this column"
4713
  msgstr ""
4714
 
4715
- #: templates/admin/table-settings/column_settings_panel.inc.php:801
4716
  #, fuzzy
4717
  msgid "Enable filtering for column"
4718
  msgstr "Standaard sortering kolom"
4719
 
4720
- #: templates/admin/table-settings/column_settings_panel.inc.php:808
4721
  msgid ""
4722
  "Enabling this switch will add a filter for this column. Disable to remove "
4723
  "the filter for this column."
4724
  msgstr ""
4725
 
4726
- #: templates/admin/table-settings/column_settings_panel.inc.php:817
4727
  #, fuzzy
4728
  msgid "Allow filtering"
4729
  msgstr "Geavanceerde filtering"
4730
 
4731
- #: templates/admin/table-settings/column_settings_panel.inc.php:824
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4732
  #: templates/edit_table.inc.php:570
4733
  msgid "Filter type"
4734
  msgstr "Filter type"
4735
 
4736
- #: templates/admin/table-settings/column_settings_panel.inc.php:826
4737
  msgid ""
4738
  "You can redefine the filter type here, it will affect the filtering logic."
4739
  msgstr ""
4740
 
4741
- #: templates/admin/table-settings/column_settings_panel.inc.php:833
4742
  msgid "Text"
4743
  msgstr ""
4744
 
4745
- #: templates/admin/table-settings/column_settings_panel.inc.php:834
4746
  #, fuzzy
4747
  msgid "Number"
4748
  msgstr "Nummer format"
4749
 
4750
- #: templates/admin/table-settings/column_settings_panel.inc.php:835
4751
  #, fuzzy
4752
  msgid "Number range"
4753
  msgstr "Nummer format"
4754
 
4755
- #: templates/admin/table-settings/column_settings_panel.inc.php:836
4756
  #, fuzzy
4757
  msgid "Date range"
4758
  msgstr "Datum format"
4759
 
4760
- #: templates/admin/table-settings/column_settings_panel.inc.php:837
4761
  msgid "DateTime range"
4762
  msgstr ""
4763
 
4764
- #: templates/admin/table-settings/column_settings_panel.inc.php:838
4765
  msgid "Time range"
4766
  msgstr ""
4767
 
4768
- #: templates/admin/table-settings/column_settings_panel.inc.php:839
4769
  msgid "Selectbox"
4770
  msgstr ""
4771
 
4772
- #: templates/admin/table-settings/column_settings_panel.inc.php:840
4773
  msgid "Checkbox"
4774
  msgstr ""
4775
 
4776
- #: templates/admin/table-settings/column_settings_panel.inc.php:856
4777
  #, fuzzy
4778
  msgid "Filter label"
4779
  msgstr "Filter type"
4780
 
4781
- #: templates/admin/table-settings/column_settings_panel.inc.php:864
4782
  msgid "Custom filter label"
4783
  msgstr ""
4784
 
4785
- #: templates/admin/table-settings/column_settings_panel.inc.php:871
4786
  msgid ""
4787
  "You can change the filter label (placeholder) for this column here, if you "
4788
  "would like to show some custom text instead of default."
4789
  msgstr ""
4790
 
4791
- #: templates/admin/table-settings/column_settings_panel.inc.php:886
4792
  #, fuzzy
4793
  msgid "Exact filtering"
4794
  msgstr "Geavanceerde filtering"
4795
 
4796
- #: templates/admin/table-settings/column_settings_panel.inc.php:888
4797
  msgid ""
4798
  "Enable exact search to use exact match logic for filtering, disable to allow "
4799
  "partial match."
4800
  msgstr ""
4801
 
4802
- #: templates/admin/table-settings/column_settings_panel.inc.php:894
4803
  #, fuzzy
4804
  msgid "Enable exact filtering"
4805
  msgstr "Sorteren inschakelen"
4806
 
4807
- #: templates/admin/table-settings/column_settings_panel.inc.php:906
4808
- #: templates/admin/table-settings/column_settings_panel.inc.php:1003
4809
  #, fuzzy
4810
  msgid "Predefined value(s)"
4811
  msgstr "Standaardwaarde(n)"
4812
 
4813
- #: templates/admin/table-settings/column_settings_panel.inc.php:908
4814
  msgid ""
4815
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4816
  "page load."
4817
  msgstr ""
4818
 
4819
- #: templates/admin/table-settings/column_settings_panel.inc.php:954
4820
  msgid "Editor input type"
4821
  msgstr "Editor input type"
4822
 
4823
- #: templates/admin/table-settings/column_settings_panel.inc.php:956
4824
  msgid "Choose which kind of editor input to use for this column."
4825
  msgstr ""
4826
 
4827
- #: templates/admin/table-settings/column_settings_panel.inc.php:962
4828
  msgid "None"
4829
  msgstr ""
4830
 
4831
- #: templates/admin/table-settings/column_settings_panel.inc.php:963
4832
  msgid "One-line edit"
4833
  msgstr ""
4834
 
4835
- #: templates/admin/table-settings/column_settings_panel.inc.php:964
4836
  msgid "Multi-line edit"
4837
  msgstr ""
4838
 
4839
- #: templates/admin/table-settings/column_settings_panel.inc.php:965
4840
  msgid "HTML editor"
4841
  msgstr ""
4842
 
4843
- #: templates/admin/table-settings/column_settings_panel.inc.php:966
4844
  msgid "Single-value selectbox"
4845
  msgstr ""
4846
 
4847
- #: templates/admin/table-settings/column_settings_panel.inc.php:967
4848
  msgid "Multi-value selectbox"
4849
  msgstr ""
4850
 
4851
- #: templates/admin/table-settings/column_settings_panel.inc.php:983
4852
  #, fuzzy
4853
  msgid "Column cannot be empty"
4854
  msgstr "Tabel type mag niet leeg zijn"
4855
 
4856
- #: templates/admin/table-settings/column_settings_panel.inc.php:985
4857
  msgid ""
4858
  "Enable to make this column mandatory. Users will see a warning when trying "
4859
  "to save with empty input."
4860
  msgstr ""
4861
 
4862
- #: templates/admin/table-settings/column_settings_panel.inc.php:991
4863
  #, fuzzy
4864
  msgid "Cannot be empty"
4865
  msgstr "Tabel type mag niet leeg zijn"
4866
 
4867
- #: templates/admin/table-settings/column_settings_panel.inc.php:1005
4868
  msgid ""
4869
  "If you would like to have some values pre-defined in editors (i.e. default "
4870
  "editor values) please enter these here."
4871
  msgstr ""
4872
 
4873
- #: templates/admin/table-settings/column_settings_panel.inc.php:1051
4874
  msgid "Add New Rule"
4875
  msgstr ""
4876
 
4877
  #: templates/admin/table-settings/column_small_block.inc.php:16
4878
- msgid "Show/hide sorting"
4879
  msgstr ""
4880
 
4881
  #: templates/admin/table-settings/column_small_block.inc.php:18
 
 
 
 
4882
  msgid "Show/hide the column"
4883
  msgstr ""
4884
 
4885
- #: templates/admin/table-settings/column_small_block.inc.php:24
4886
  #, fuzzy
4887
  msgid "Open column settings"
4888
  msgstr "Optionele kolom setup"
@@ -5079,19 +5129,42 @@ msgid "Are you sure? There is no undo!"
5079
  msgstr ""
5080
  "Weet je het zeker? Je verliest de aanpassingen die niet opgeslagen zijn!"
5081
 
 
 
 
 
 
 
 
 
5082
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5083
  msgid "Table preview"
5084
  msgstr ""
5085
 
5086
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:22
5087
  msgid "Desktop"
5088
  msgstr ""
5089
 
5090
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:25
5091
  msgid "Tablet"
5092
  msgstr ""
5093
 
5094
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5095
  msgid "Mobile"
5096
  msgstr ""
5097
 
@@ -5749,10 +5822,6 @@ msgstr "Onder de grafiek/diagram"
5749
  msgid "Main search block"
5750
  msgstr ""
5751
 
5752
- #: templates/admin/table-settings/table_settings_block.inc.php:665
5753
- msgid "Global search"
5754
- msgstr ""
5755
-
5756
  #: templates/admin/table-settings/table_settings_block.inc.php:672
5757
  msgid ""
5758
  "If this is enabled, a search block will be displayed on the top right of the "
@@ -7115,6 +7184,10 @@ msgstr ""
7115
  msgid "Insert name for export file"
7116
  msgstr ""
7117
 
 
 
 
 
7118
  #, fuzzy
7119
  #~ msgid "Bad request format."
7120
  #~ msgstr "Datum format"
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"
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
 
169
+ #: controllers/wdt_functions.php:486
170
  #, fuzzy
171
  msgid "wpDataChart with provided ID not found!"
172
  msgstr "wpDataTable met geleverde ID niet gevonden!"
173
 
174
+ #: controllers/wdt_functions.php:522 controllers/wdt_functions.php:603
175
  msgid "wpDataTable with provided ID not found!"
176
  msgstr "wpDataTable met geleverde ID niet gevonden!"
177
 
178
+ #: controllers/wdt_functions.php:613
179
  msgid "Provided column is not Integer or Float column type"
180
  msgstr ""
181
 
182
+ #: controllers/wdt_functions.php:830
183
  #, fuzzy
184
  msgid "Choose a table"
185
  msgstr "Kies rollen"
186
 
187
+ #: controllers/wdt_functions.php:862
188
  msgid "Interactive Responsive Table"
189
  msgstr ""
190
 
191
+ #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
192
  msgid "Content"
193
  msgstr ""
194
 
195
+ #: controllers/wdt_functions.php:869
196
  #, fuzzy
197
  msgid "wpDataTable"
198
  msgstr "wpDataTable aanpassen"
199
 
200
+ #: controllers/wdt_functions.php:873
201
  msgid "Choose the wpDataTable from a dropdown"
202
  msgstr ""
203
 
204
+ #: controllers/wdt_functions.php:878
205
  #, fuzzy
206
  msgid "Table view"
207
  msgstr "Tabel titel"
208
 
209
+ #: controllers/wdt_functions.php:882
210
  #, fuzzy
211
  msgid "Regular wpDataTable"
212
  msgstr "Gebruik in wpDataTable"
213
 
214
+ #: controllers/wdt_functions.php:884
215
  #, fuzzy
216
  msgid "Excel-like table"
217
  msgstr "Excel bestand"
218
 
219
+ #: controllers/wdt_functions.php:890
220
  msgid "Variable placeholder #1"
221
  msgstr ""
222
 
223
+ #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
224
+ #: controllers/wdt_functions.php:909
225
  msgid "Variables"
226
  msgstr ""
227
 
228
+ #: controllers/wdt_functions.php:894
229
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
230
  msgstr ""
231
 
232
+ #: controllers/wdt_functions.php:898
233
  msgid "Variable placeholder #2"
234
  msgstr ""
235
 
236
+ #: controllers/wdt_functions.php:902
237
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
238
  msgstr ""
239
 
240
+ #: controllers/wdt_functions.php:906
241
  msgid "Variable placeholder #3"
242
  msgstr ""
243
 
244
+ #: controllers/wdt_functions.php:910
245
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
246
  msgstr ""
247
 
248
+ #: controllers/wdt_functions.php:923
249
  msgid "Google or Highcharts chart based on a wpDataTable"
250
  msgstr ""
251
 
252
+ #: controllers/wdt_functions.php:930
253
  msgid "wpDataChart"
254
  msgstr ""
255
 
256
+ #: controllers/wdt_functions.php:934
257
  msgid "Choose one of wpDataCharts from the list"
258
  msgstr ""
259
 
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 ""
443
  msgid "There was an error trying to fetch the table data: "
444
  msgstr ""
445
 
446
+ #: source/class.wdtconfigcontroller.php:479
447
  #, fuzzy
448
  msgid "Table in data source has no rows."
449
  msgstr "Tabel invoer data bron mag niet leeg zijn"
476
 
477
  #: source/class.wdttools.php:23
478
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
479
+ #: templates/admin/table-settings/column_settings_panel.inc.php:984
480
  msgid "Date"
481
  msgstr ""
482
 
483
  #: source/class.wdttools.php:24
484
+ #: templates/admin/table-settings/column_settings_panel.inc.php:985
485
  msgid "Datetime"
486
  msgstr ""
487
 
488
  #: source/class.wdttools.php:25
489
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
490
+ #: templates/admin/table-settings/column_settings_panel.inc.php:986
491
  msgid "Time"
492
  msgstr ""
493
 
505
  msgstr ""
506
 
507
  #: source/class.wdttools.php:29
508
+ #: templates/admin/table-settings/column_settings_panel.inc.php:989
509
  #, fuzzy
510
  msgid "Attachment"
511
  msgstr "Upload bijlage"
530
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
531
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
532
  #: templates/admin/common/HTMLModal.inc.php:43
533
+ #: templates/admin/common/linkModal.inc.php:117
534
  #: templates/admin/common/shortcodeModal.inc.php:48
535
  #: templates/admin/common/starModal.inc.php:73
536
  #: templates/admin/constructor/constructor.inc.php:29
537
  #: templates/admin/settings/settings.inc.php:28
538
  #: templates/admin/table-settings/add_column_modal.inc.php:126
539
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
540
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1095
541
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
542
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
543
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
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 ""
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
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
  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
  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
  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
  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
  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."
2360
  msgstr ""
2361
 
2362
  #: templates/admin/common/linkModal.inc.php:76
2363
+ #: templates/admin/table-settings/column_settings_panel.inc.php:720
2364
+ msgid "Make NOFOLLOW link"
2365
+ msgstr ""
2366
+
2367
+ #: templates/admin/common/linkModal.inc.php:87
2368
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2369
  msgid "Set the link to appear as a button"
2370
  msgstr ""
2371
 
2372
+ #: templates/admin/common/linkModal.inc.php:96
2373
  msgid "Button class:"
2374
  msgstr ""
2375
 
2376
+ #: templates/admin/common/linkModal.inc.php:121
2377
  msgid "Insert link"
2378
  msgstr ""
2379
 
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
2516
  msgstr ""
2517
 
2518
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
2519
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:14
2520
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2521
  msgid "Create a data table linked to an existing data source"
2522
  msgstr ""
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
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
  " 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 "
2955
  "and is a handy tool for small businesses and individuals that depend on "
2956
+ "stable appointment booking processes. 20,000+ businesses from healthcare, "
2957
  "beauty, sports, automotive, educational, creative, HR and other industries "
2958
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
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
2985
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2986
  #: templates/admin/welcome_page/welcome_page.inc.php:369
2987
  #, fuzzy
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
2997
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2998
  msgid "Support Center"
2999
  msgstr ""
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
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"
4103
  msgid "Open a topic"
4104
  msgstr ""
4105
 
4106
+ #: templates/admin/system-info/system_info.inc.php:22
4107
  msgid "System Info"
4108
  msgstr ""
4109
 
4110
+ #: templates/admin/system-info/system_info.inc.php:61
4111
  msgid "The URL of your site's homepage."
4112
  msgstr ""
4113
 
4114
+ #: templates/admin/system-info/system_info.inc.php:68
4115
  msgid "The root URL of your site."
4116
  msgstr ""
4117
 
4118
+ #: templates/admin/system-info/system_info.inc.php:75
4119
  msgid "System path of your wp-content directory."
4120
  msgstr ""
4121
 
4122
+ #: templates/admin/system-info/system_info.inc.php:82
4123
  msgid "System path of your WP root directory."
4124
  msgstr ""
4125
 
4126
+ #: templates/admin/system-info/system_info.inc.php:89
4127
  msgid "The version of WordPress installed on your site."
4128
  msgstr ""
4129
 
4130
+ #: templates/admin/system-info/system_info.inc.php:96
4131
  msgid "Whether or not you have WordPress Multisite enabled."
4132
  msgstr ""
4133
 
4134
+ #: templates/admin/system-info/system_info.inc.php:120
4135
  #, php-format
4136
  msgid ""
4137
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
4140
  "noreferrer\">Increasing memory allocated to PHP.</a>"
4141
  msgstr ""
4142
 
4143
+ #: templates/admin/system-info/system_info.inc.php:130
4144
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4145
  msgstr ""
4146
 
4147
+ #: templates/admin/system-info/system_info.inc.php:143
4148
  msgid "Displays whether or not WordPress is in Debug Mode."
4149
  msgstr ""
4150
 
4151
+ #: templates/admin/system-info/system_info.inc.php:150
4152
  msgid "The current language used by WordPress. Default = English"
4153
  msgstr ""
4154
 
4155
+ #: templates/admin/system-info/system_info.inc.php:170
4156
  msgid "Information about your operating system."
4157
  msgstr ""
4158
 
4159
+ #: templates/admin/system-info/system_info.inc.php:178
4160
  msgid "Information about the web server that is currently hosting your site."
4161
  msgstr ""
4162
 
4163
+ #: templates/admin/system-info/system_info.inc.php:220
4164
  msgid "The version of PHP installed on your hosting server."
4165
  msgstr ""
4166
 
4167
+ #: templates/admin/system-info/system_info.inc.php:231
4168
  msgid "The largest file size that can be contained in one post."
4169
  msgstr ""
4170
 
4171
+ #: templates/admin/system-info/system_info.inc.php:240
4172
  #, php-format
4173
  msgid ""
4174
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
4176
  "\">Increasing max execution to PHP</a>"
4177
  msgstr ""
4178
 
4179
+ #: templates/admin/system-info/system_info.inc.php:248
4180
  msgid ""
4181
  "The amount of time (in seconds) that your site will spend on a single "
4182
  "operation before timing out (to avoid server lockups)"
4183
  msgstr ""
4184
 
4185
+ #: templates/admin/system-info/system_info.inc.php:263
4186
  msgid "The version of MySQL installed on your hosting server."
4187
  msgstr ""
4188
 
4189
+ #: templates/admin/system-info/system_info.inc.php:271
4190
  msgid ""
4191
  "The largest file size that can be uploaded to your WordPress installation."
4192
  msgstr ""
4193
 
4194
+ #: templates/admin/system-info/system_info.inc.php:293
4195
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4196
  msgstr ""
4197
 
4198
+ #: templates/admin/system-info/system_info.inc.php:311
4199
  msgid ""
4200
  "XML support is something that needs to be installed on the server for proper "
4201
  "wpDataTables functionality."
4202
  msgstr ""
4203
 
4204
+ #: templates/admin/system-info/system_info.inc.php:329
4205
  msgid ""
4206
  "DOM support is something that needs to be installed on the server for proper "
4207
  "wpDataTables functionality."
4208
  msgstr ""
4209
 
4210
+ #: templates/admin/system-info/system_info.inc.php:355
4211
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4212
  msgstr ""
4213
 
4214
+ #: templates/admin/system-info/system_info.inc.php:374
4215
  msgid ""
4216
  "ZIP support is something that needs to be installed on the server, as a "
4217
  "package for the Linux operating system, or rather to the PHP software on the "
4218
  "server."
4219
  msgstr ""
4220
 
4221
+ #: templates/admin/system-info/system_info.inc.php:394
4222
  msgid "wpDataTables use cURL for getting data from other servers."
4223
  msgstr ""
4224
 
4225
+ #: templates/admin/system-info/system_info.inc.php:417
4226
  msgid "The name of the current active theme."
4227
  msgstr ""
4228
 
4229
+ #: templates/admin/system-info/system_info.inc.php:428
4230
  msgid "The installed version of the current active theme."
4231
  msgstr ""
4232
 
4233
+ #: templates/admin/system-info/system_info.inc.php:435
4234
  msgid "The theme developers."
4235
  msgstr ""
4236
 
4237
+ #: templates/admin/system-info/system_info.inc.php:441
4238
  msgid "The theme developers URL."
4239
  msgstr ""
4240
 
4241
+ #: templates/admin/system-info/system_info.inc.php:478
4242
  msgid "Visit plugin homepage"
4243
  msgstr ""
4244
 
4305
  msgstr ""
4306
 
4307
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4308
+ 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
4440
  msgstr ""
4441
 
4442
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4443
+ #: templates/admin/table-settings/column_settings_panel.inc.php:987
4444
  msgid "URL link"
4445
  msgstr ""
4446
 
4447
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4448
+ #: templates/admin/table-settings/column_settings_panel.inc.php:988
4449
  msgid "E-mail link"
4450
  msgstr ""
4451
 
4699
  msgid "Button class"
4700
  msgstr "Bottons font kleur"
4701
 
4702
+ #: templates/admin/table-settings/column_settings_panel.inc.php:712
4703
+ msgid "URL relation attribute"
4704
+ msgstr ""
4705
+
4706
+ #: templates/admin/table-settings/column_settings_panel.inc.php:714
4707
+ msgid "Set the link relation"
4708
+ msgstr ""
4709
+
4710
+ #: templates/admin/table-settings/column_settings_panel.inc.php:740
4711
  #, fuzzy
4712
  msgid "Allow sorting"
4713
  msgstr "Sorteren inschakelen"
4714
 
4715
+ #: templates/admin/table-settings/column_settings_panel.inc.php:742
4716
  msgid "Disable this to disallow sorting for this column."
4717
  msgstr ""
4718
 
4719
+ #: templates/admin/table-settings/column_settings_panel.inc.php:748
4720
  msgid "Allow sorting for this column"
4721
  msgstr ""
4722
 
4723
+ #: templates/admin/table-settings/column_settings_panel.inc.php:755
4724
  #, fuzzy
4725
  msgid "Use as default sorting column"
4726
  msgstr "Standaard sortering kolom"
4727
 
4728
+ #: templates/admin/table-settings/column_settings_panel.inc.php:757
4729
+ #: templates/admin/table-settings/column_settings_panel.inc.php:763
4730
  msgid "Sort table by this column on load"
4731
  msgstr ""
4732
 
4733
+ #: templates/admin/table-settings/column_settings_panel.inc.php:774
4734
  #, fuzzy
4735
  msgid "Default sorting direction"
4736
  msgstr "Standaard sortering kolom"
4737
 
4738
+ #: templates/admin/table-settings/column_settings_panel.inc.php:776
4739
  msgid "Choose whether to sort ascending or descending by default."
4740
  msgstr ""
4741
 
4742
+ #: templates/admin/table-settings/column_settings_panel.inc.php:803
4743
  msgid "Add a filter for this column"
4744
  msgstr ""
4745
 
4746
+ #: templates/admin/table-settings/column_settings_panel.inc.php:811
4747
  #, fuzzy
4748
  msgid "Enable filtering for column"
4749
  msgstr "Standaard sortering kolom"
4750
 
4751
+ #: templates/admin/table-settings/column_settings_panel.inc.php:818
4752
  msgid ""
4753
  "Enabling this switch will add a filter for this column. Disable to remove "
4754
  "the filter for this column."
4755
  msgstr ""
4756
 
4757
+ #: templates/admin/table-settings/column_settings_panel.inc.php:827
4758
  #, fuzzy
4759
  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
+
4767
+ #: templates/admin/table-settings/column_settings_panel.inc.php:836
4768
+ msgid ""
4769
+ "If this option is turned off, the column data will not appear in your global "
4770
+ "search results."
4771
+ msgstr ""
4772
+
4773
+ #: templates/admin/table-settings/column_settings_panel.inc.php:842
4774
+ msgid "Enable this column in Global search"
4775
+ msgstr ""
4776
+
4777
+ #: templates/admin/table-settings/column_settings_panel.inc.php:850
4778
  #: templates/edit_table.inc.php:570
4779
  msgid "Filter type"
4780
  msgstr "Filter type"
4781
 
4782
+ #: templates/admin/table-settings/column_settings_panel.inc.php:852
4783
  msgid ""
4784
  "You can redefine the filter type here, it will affect the filtering logic."
4785
  msgstr ""
4786
 
4787
+ #: templates/admin/table-settings/column_settings_panel.inc.php:859
4788
  msgid "Text"
4789
  msgstr ""
4790
 
4791
+ #: templates/admin/table-settings/column_settings_panel.inc.php:860
4792
  #, fuzzy
4793
  msgid "Number"
4794
  msgstr "Nummer format"
4795
 
4796
+ #: templates/admin/table-settings/column_settings_panel.inc.php:861
4797
  #, fuzzy
4798
  msgid "Number range"
4799
  msgstr "Nummer format"
4800
 
4801
+ #: templates/admin/table-settings/column_settings_panel.inc.php:862
4802
  #, fuzzy
4803
  msgid "Date range"
4804
  msgstr "Datum format"
4805
 
4806
+ #: templates/admin/table-settings/column_settings_panel.inc.php:863
4807
  msgid "DateTime range"
4808
  msgstr ""
4809
 
4810
+ #: templates/admin/table-settings/column_settings_panel.inc.php:864
4811
  msgid "Time range"
4812
  msgstr ""
4813
 
4814
+ #: templates/admin/table-settings/column_settings_panel.inc.php:865
4815
  msgid "Selectbox"
4816
  msgstr ""
4817
 
4818
+ #: templates/admin/table-settings/column_settings_panel.inc.php:866
4819
  msgid "Checkbox"
4820
  msgstr ""
4821
 
4822
+ #: templates/admin/table-settings/column_settings_panel.inc.php:877
4823
  #, fuzzy
4824
  msgid "Filter label"
4825
  msgstr "Filter type"
4826
 
4827
+ #: templates/admin/table-settings/column_settings_panel.inc.php:885
4828
  msgid "Custom filter label"
4829
  msgstr ""
4830
 
4831
+ #: templates/admin/table-settings/column_settings_panel.inc.php:892
4832
  msgid ""
4833
  "You can change the filter label (placeholder) for this column here, if you "
4834
  "would like to show some custom text instead of default."
4835
  msgstr ""
4836
 
4837
+ #: templates/admin/table-settings/column_settings_panel.inc.php:907
4838
  #, fuzzy
4839
  msgid "Exact filtering"
4840
  msgstr "Geavanceerde filtering"
4841
 
4842
+ #: templates/admin/table-settings/column_settings_panel.inc.php:909
4843
  msgid ""
4844
  "Enable exact search to use exact match logic for filtering, disable to allow "
4845
  "partial match."
4846
  msgstr ""
4847
 
4848
+ #: templates/admin/table-settings/column_settings_panel.inc.php:915
4849
  #, fuzzy
4850
  msgid "Enable exact filtering"
4851
  msgstr "Sorteren inschakelen"
4852
 
4853
+ #: templates/admin/table-settings/column_settings_panel.inc.php:922
4854
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1019
4855
  #, fuzzy
4856
  msgid "Predefined value(s)"
4857
  msgstr "Standaardwaarde(n)"
4858
 
4859
+ #: templates/admin/table-settings/column_settings_panel.inc.php:924
4860
  msgid ""
4861
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4862
  "page load."
4863
  msgstr ""
4864
 
4865
+ #: templates/admin/table-settings/column_settings_panel.inc.php:970
4866
  msgid "Editor input type"
4867
  msgstr "Editor input type"
4868
 
4869
+ #: templates/admin/table-settings/column_settings_panel.inc.php:972
4870
  msgid "Choose which kind of editor input to use for this column."
4871
  msgstr ""
4872
 
4873
+ #: templates/admin/table-settings/column_settings_panel.inc.php:978
4874
  msgid "None"
4875
  msgstr ""
4876
 
4877
+ #: templates/admin/table-settings/column_settings_panel.inc.php:979
4878
  msgid "One-line edit"
4879
  msgstr ""
4880
 
4881
+ #: templates/admin/table-settings/column_settings_panel.inc.php:980
4882
  msgid "Multi-line edit"
4883
  msgstr ""
4884
 
4885
+ #: templates/admin/table-settings/column_settings_panel.inc.php:981
4886
  msgid "HTML editor"
4887
  msgstr ""
4888
 
4889
+ #: templates/admin/table-settings/column_settings_panel.inc.php:982
4890
  msgid "Single-value selectbox"
4891
  msgstr ""
4892
 
4893
+ #: templates/admin/table-settings/column_settings_panel.inc.php:983
4894
  msgid "Multi-value selectbox"
4895
  msgstr ""
4896
 
4897
+ #: templates/admin/table-settings/column_settings_panel.inc.php:999
4898
  #, fuzzy
4899
  msgid "Column cannot be empty"
4900
  msgstr "Tabel type mag niet leeg zijn"
4901
 
4902
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1001
4903
  msgid ""
4904
  "Enable to make this column mandatory. Users will see a warning when trying "
4905
  "to save with empty input."
4906
  msgstr ""
4907
 
4908
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1007
4909
  #, fuzzy
4910
  msgid "Cannot be empty"
4911
  msgstr "Tabel type mag niet leeg zijn"
4912
 
4913
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1021
4914
  msgid ""
4915
  "If you would like to have some values pre-defined in editors (i.e. default "
4916
  "editor values) please enter these here."
4917
  msgstr ""
4918
 
4919
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1067
4920
  msgid "Add New Rule"
4921
  msgstr ""
4922
 
4923
  #: templates/admin/table-settings/column_small_block.inc.php:16
4924
+ msgid "Enable/disable in global search"
4925
  msgstr ""
4926
 
4927
  #: templates/admin/table-settings/column_small_block.inc.php:18
4928
+ msgid "Show/hide sorting"
4929
+ msgstr ""
4930
+
4931
+ #: templates/admin/table-settings/column_small_block.inc.php:20
4932
  msgid "Show/hide the column"
4933
  msgstr ""
4934
 
4935
+ #: templates/admin/table-settings/column_small_block.inc.php:26
4936
  #, fuzzy
4937
  msgid "Open column settings"
4938
  msgstr "Optionele kolom setup"
5129
  msgstr ""
5130
  "Weet je het zeker? Je verliest de aanpassingen die niet opgeslagen zijn!"
5131
 
5132
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:9
5133
+ msgid "When working with this table type please note that at the moment:"
5134
+ msgstr ""
5135
+
5136
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:11
5137
+ msgid "There is no sorting, search, or pagination in this table type."
5138
+ msgstr ""
5139
+
5140
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
5141
+ msgid "Creating charts from this table type is not yet possible."
5142
+ msgstr ""
5143
+
5144
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:13
5145
+ msgid ""
5146
+ "If you need those features, please consider creating tables with option "
5147
+ msgstr ""
5148
+
5149
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:17
5150
+ msgid ""
5151
+ "Depends of users requests, we will add it in our road map and implement it "
5152
+ "based on priority. Thank you for understanding."
5153
+ msgstr ""
5154
+
5155
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5156
  msgid "Table preview"
5157
  msgstr ""
5158
 
5159
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:38
5160
  msgid "Desktop"
5161
  msgstr ""
5162
 
5163
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:41
5164
  msgid "Tablet"
5165
  msgstr ""
5166
 
5167
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:44
5168
  msgid "Mobile"
5169
  msgstr ""
5170
 
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 "
7184
  msgid "Insert name for export file"
7185
  msgstr ""
7186
 
7187
+ #, fuzzy
7188
+ #~ msgid "Filtering"
7189
+ #~ msgstr "Filter in formulier"
7190
+
7191
  #, fuzzy
7192
  #~ msgid "Bad request format."
7193
  #~ msgstr "Datum format"
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: 2020-12-25 17:32+0100\n"
5
- "PO-Revision-Date: 2020-12-25 17:32+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: pl\n"
@@ -108,91 +108,91 @@ msgstr ""
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
 
111
- #: controllers/wdt_functions.php:471
112
  msgid "wpDataChart with provided ID not found!"
113
  msgstr "wpDataChart z podanego identyfikatora nie znaleziono!"
114
 
115
- #: controllers/wdt_functions.php:507 controllers/wdt_functions.php:588
116
  msgid "wpDataTable with provided ID not found!"
117
  msgstr "wpDataTable z podanego identyfikatora nie znaleziono!"
118
 
119
- #: controllers/wdt_functions.php:598
120
  msgid "Provided column is not Integer or Float column type"
121
  msgstr "Podana kolumna nie jest Integer lub float Typ kolumny"
122
 
123
- #: controllers/wdt_functions.php:815
124
  msgid "Choose a table"
125
  msgstr "Wybierz tabelę"
126
 
127
- #: controllers/wdt_functions.php:847
128
  msgid "Interactive Responsive Table"
129
  msgstr "Interaktywny responsywny stół"
130
 
131
- #: controllers/wdt_functions.php:848 controllers/wdt_functions.php:909
132
  msgid "Content"
133
  msgstr "Zawartość"
134
 
135
- #: controllers/wdt_functions.php:854
136
  msgid "wpDataTable"
137
  msgstr "wpDataTable"
138
 
139
- #: controllers/wdt_functions.php:858
140
  msgid "Choose the wpDataTable from a dropdown"
141
  msgstr "Wybierz wpDataTable z listy rozwijanej"
142
 
143
- #: controllers/wdt_functions.php:863
144
  msgid "Table view"
145
  msgstr "Widok tabeli"
146
 
147
- #: controllers/wdt_functions.php:867
148
  msgid "Regular wpDataTable"
149
  msgstr "Regularne wpDataTable"
150
 
151
- #: controllers/wdt_functions.php:869
152
  msgid "Excel-like table"
153
  msgstr "Tabela podobnych do Excela"
154
 
155
- #: controllers/wdt_functions.php:875
156
  msgid "Variable placeholder #1"
157
  msgstr "Zmienna #1 zastępcza"
158
 
159
- #: controllers/wdt_functions.php:878 controllers/wdt_functions.php:886
160
- #: controllers/wdt_functions.php:894
161
  msgid "Variables"
162
  msgstr "Zmienne"
163
 
164
- #: controllers/wdt_functions.php:879
165
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
166
  msgstr ""
167
  "Jeśli użyto symbolu zastępczego VAR1 można przypisać do niej wartość tutaj"
168
 
169
- #: controllers/wdt_functions.php:883
170
  msgid "Variable placeholder #2"
171
  msgstr "Zmienna #2 zastępcza"
172
 
173
- #: controllers/wdt_functions.php:887
174
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
175
  msgstr ""
176
  "Jeśli użyto symbolu zastępczego VAR2 można przypisać do niej wartość tutaj"
177
 
178
- #: controllers/wdt_functions.php:891
179
  msgid "Variable placeholder #3"
180
  msgstr "Zmienna #3 zastępcza"
181
 
182
- #: controllers/wdt_functions.php:895
183
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
184
  msgstr ""
185
  "Jeśli użyto symbolu zastępczego VAR3 można przypisać do niej wartość tutaj"
186
 
187
- #: controllers/wdt_functions.php:908
188
  msgid "Google or Highcharts chart based on a wpDataTable"
189
  msgstr "Google lub Highcharts wykres oparty na wpDataTable"
190
 
191
- #: controllers/wdt_functions.php:915
192
  msgid "wpDataChart"
193
  msgstr "Właściwość wpDataChart"
194
 
195
- #: controllers/wdt_functions.php:919
196
  msgid "Choose one of wpDataCharts from the list"
197
  msgstr "Wybierz jedną z wpDataCharts z listy"
198
 
@@ -326,14 +326,14 @@ msgstr "MySQL"
326
  msgid "Manual"
327
  msgstr "Ręcznie"
328
 
329
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2204
330
- #: source/class.wpdatatable.php:2274
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:2213
336
- #: source/class.wpdatatable.php:2284
337
  #: templates/admin/table-settings/table_settings_block.inc.php:1032
338
  msgid "CSV"
339
  msgstr "CSV"
@@ -372,7 +372,7 @@ msgstr "Brak wpDataTables w systemie jeszcze."
372
  msgid "There was an error trying to fetch the table data: "
373
  msgstr "Wystąpił błąd podczas próby pobrania danych z tabeli:"
374
 
375
- #: source/class.wdtconfigcontroller.php:477
376
  msgid "Table in data source has no rows."
377
  msgstr "Tabela w źródle danych nie ma wierszy."
378
 
@@ -404,18 +404,18 @@ msgstr "Wyrównanie"
404
 
405
  #: source/class.wdttools.php:23
406
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
407
- #: templates/admin/table-settings/column_settings_panel.inc.php:968
408
  msgid "Date"
409
  msgstr "Data"
410
 
411
  #: source/class.wdttools.php:24
412
- #: templates/admin/table-settings/column_settings_panel.inc.php:969
413
  msgid "Datetime"
414
  msgstr "Data i godzina"
415
 
416
  #: source/class.wdttools.php:25
417
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
418
- #: templates/admin/table-settings/column_settings_panel.inc.php:970
419
  msgid "Time"
420
  msgstr "Czas"
421
 
@@ -433,7 +433,7 @@ msgid "Image"
433
  msgstr "Obraz"
434
 
435
  #: source/class.wdttools.php:29
436
- #: templates/admin/table-settings/column_settings_panel.inc.php:973
437
  msgid "Attachment"
438
  msgstr "Załącznik"
439
 
@@ -460,14 +460,14 @@ msgstr "Przeglądaj"
460
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
461
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
462
  #: templates/admin/common/HTMLModal.inc.php:43
463
- #: templates/admin/common/linkModal.inc.php:106
464
  #: templates/admin/common/shortcodeModal.inc.php:48
465
  #: templates/admin/common/starModal.inc.php:73
466
  #: templates/admin/constructor/constructor.inc.php:29
467
  #: templates/admin/settings/settings.inc.php:28
468
  #: templates/admin/table-settings/add_column_modal.inc.php:126
469
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
470
- #: templates/admin/table-settings/column_settings_panel.inc.php:1079
471
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
472
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
473
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
@@ -518,8 +518,8 @@ msgstr "Kolumna została usunięta!"
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:2222
522
- #: source/class.wpdatatable.php:2294
523
  #: templates/admin/table-settings/table_settings_block.inc.php:1033
524
  msgid "Copy"
525
  msgstr "Kopiuj"
@@ -1224,7 +1224,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:1883
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,7 +1232,7 @@ 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:2122 source/class.wpdatatable.php:2125
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
@@ -1240,30 +1240,30 @@ msgstr ""
1240
  msgid "All"
1241
  msgstr "Wszystkie"
1242
 
1243
- #: source/class.wpdatatable.php:2183 source/class.wpdatatable.php:2252
1244
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1245
  msgid "Columns"
1246
  msgstr "Kolumny"
1247
 
1248
- #: source/class.wpdatatable.php:2193 source/class.wpdatatable.php:2262
1249
  #: templates/admin/table-settings/table_settings_block.inc.php:1030
1250
  msgid "Print"
1251
  msgstr "Drukuj"
1252
 
1253
- #: source/class.wpdatatable.php:2232 source/class.wpdatatable.php:2305
1254
  #: templates/admin/table-settings/table_settings_block.inc.php:1034
1255
  msgid "PDF"
1256
  msgstr "PDF"
1257
 
1258
- #: source/class.wpdatatable.php:2240
1259
  msgid "Export"
1260
  msgstr "Eksport"
1261
 
1262
- #: source/class.wpdatatable.php:2318
1263
  msgid "Search table"
1264
  msgstr "Szukaj"
1265
 
1266
- #: source/class.wpdatatable.php:2319
1267
  msgid "Showing _MENU_ Entries"
1268
  msgstr "Wyświetlanie wpisów _MENU_"
1269
 
@@ -1282,7 +1282,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:496
1286
  msgid "wpDataTables Addons"
1287
  msgstr ""
1288
 
@@ -1301,12 +1301,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:567
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:571
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 +1334,7 @@ msgid "NEW"
1334
  msgstr ""
1335
 
1336
  #: templates/admin/addons/addons.inc.php:40
1337
- #: templates/admin/dashboard/dashboard.inc.php:514
1338
  msgid "Master Detail Tables for wpDataTables"
1339
  msgstr ""
1340
 
@@ -1355,7 +1355,7 @@ msgid "Learn more"
1355
  msgstr ""
1356
 
1357
  #: templates/admin/addons/addons.inc.php:67
1358
- #: templates/admin/dashboard/dashboard.inc.php:541
1359
  msgid "Powerful Filters for wpDataTables"
1360
  msgstr "Potężne filtry dla wpDataTables"
1361
 
@@ -1370,12 +1370,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:594
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:598
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 +1384,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:620
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:624
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."
@@ -2269,15 +2269,20 @@ msgid "Open link in the new tab"
2269
  msgstr "Otwórz odnośnik w nowej karcie"
2270
 
2271
  #: templates/admin/common/linkModal.inc.php:76
 
 
 
 
 
2272
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2273
  msgid "Set the link to appear as a button"
2274
  msgstr "Ustaw łącze, które ma być wyświetlane jako przycisk"
2275
 
2276
- #: templates/admin/common/linkModal.inc.php:85
2277
  msgid "Button class:"
2278
  msgstr ""
2279
 
2280
- #: templates/admin/common/linkModal.inc.php:110
2281
  msgid "Insert link"
2282
  msgstr ""
2283
 
@@ -2394,8 +2399,8 @@ msgstr "Otwórz w edytorze jak w Excelu"
2394
  #: templates/admin/settings/settings.inc.php:96
2395
  #: templates/admin/support/support.inc.php:31
2396
  #: templates/admin/support/support.inc.php:47
2397
- #: templates/admin/system-info/system_info.inc.php:30
2398
- #: templates/admin/table-settings/column_settings_panel.inc.php:1074
2399
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2400
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2401
  #: templates/admin/table-settings/table_settings_block.inc.php:1197
@@ -2420,6 +2425,7 @@ msgid ""
2420
  msgstr ""
2421
 
2422
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
 
2423
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2424
  msgid "Create a data table linked to an existing data source"
2425
  msgstr ""
@@ -2629,162 +2635,180 @@ msgid "Version "
2629
  msgstr ""
2630
 
2631
  #: templates/admin/dashboard/dashboard.inc.php:340
2632
- msgid "A minor update with a couple of bug fixes and stability improvements:"
 
 
2633
  msgstr ""
2634
 
2635
  #: templates/admin/dashboard/dashboard.inc.php:345
2636
  msgid ""
2637
- "<strong>BugFix:</strong> Fixed issue with Fatal errors on Dashboard page if "
2638
- "PHP extensions are not installed."
2639
  msgstr ""
2640
 
2641
  #: templates/admin/dashboard/dashboard.inc.php:346
2642
- msgid "Compatibility with WordPress 5.6 approved."
 
 
2643
  msgstr ""
2644
 
2645
  #: templates/admin/dashboard/dashboard.inc.php:347
2646
- msgid "Compatibility with PHP 8 approved."
 
 
2647
  msgstr ""
2648
 
2649
  #: templates/admin/dashboard/dashboard.inc.php:348
 
 
 
 
 
 
 
 
 
 
 
 
2650
  msgid "Other small bug fixes and stability improvements."
2651
  msgstr ""
2652
 
2653
- #: templates/admin/dashboard/dashboard.inc.php:360
2654
  msgid "Go Premium!"
2655
  msgstr ""
2656
 
2657
- #: templates/admin/dashboard/dashboard.inc.php:366
2658
  msgid "View Comparison"
2659
  msgstr ""
2660
 
2661
- #: templates/admin/dashboard/dashboard.inc.php:374
2662
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2663
  msgid ""
2664
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2665
  "of the powerful features."
2666
  msgstr ""
2667
 
2668
- #: templates/admin/dashboard/dashboard.inc.php:378
2669
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2670
  msgid "Create a table manually"
2671
  msgstr "Ręczne tworzenie tabeli"
2672
 
2673
- #: templates/admin/dashboard/dashboard.inc.php:381
2674
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2675
  msgid "Creating tables from Google Spreadsheet"
2676
  msgstr ""
2677
 
2678
- #: templates/admin/dashboard/dashboard.inc.php:384
2679
  msgid ""
2680
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2681
  "tables via Google Sheet API"
2682
  msgstr ""
2683
 
2684
- #: templates/admin/dashboard/dashboard.inc.php:387
2685
  msgid ""
2686
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2687
  "tables from Private Google Spreadsheet"
2688
  msgstr ""
2689
 
2690
- #: templates/admin/dashboard/dashboard.inc.php:390
2691
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2692
  msgid "Creating MySQL-based tables from database"
2693
  msgstr ""
2694
 
2695
- #: templates/admin/dashboard/dashboard.inc.php:393
2696
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2697
  msgid "Creating MySQL-based tables from Wordpress post types"
2698
  msgstr ""
2699
 
2700
- #: templates/admin/dashboard/dashboard.inc.php:396
2701
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2702
  #: templates/edit_table.inc.php:329
2703
  msgid "Advanced filtering"
2704
  msgstr ""
2705
 
2706
- #: templates/admin/dashboard/dashboard.inc.php:399
2707
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2708
  #: templates/admin/table-settings/table_settings_block.inc.php:144
2709
  #: templates/edit_table.inc.php:282
2710
  msgid "Server-side processing"
2711
  msgstr "Przetwarzanie po stronie serwera"
2712
 
2713
- #: templates/admin/dashboard/dashboard.inc.php:402
2714
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2715
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2716
  msgstr ""
2717
 
2718
- #: templates/admin/dashboard/dashboard.inc.php:405
2719
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2720
  msgid "Front-end table editing"
2721
  msgstr ""
2722
 
2723
- #: templates/admin/dashboard/dashboard.inc.php:408
2724
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2725
  msgid "Excel-like editing"
2726
  msgstr ""
2727
 
2728
- #: templates/admin/dashboard/dashboard.inc.php:411
2729
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2730
  msgid "Creating charts with Highcharts"
2731
  msgstr ""
2732
 
2733
- #: templates/admin/dashboard/dashboard.inc.php:414
2734
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2735
  msgid "Creating charts with Chart.js"
2736
  msgstr ""
2737
 
2738
- #: templates/admin/dashboard/dashboard.inc.php:417
2739
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2740
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2741
  #: templates/edit_table.inc.php:301
2742
  msgid "Responsive"
2743
  msgstr ""
2744
 
2745
- #: templates/admin/dashboard/dashboard.inc.php:420
2746
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2747
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2748
  #: templates/edit_table.inc.php:750
2749
  msgid "Conditional formatting"
2750
  msgstr "Formatowanie warunkowe"
2751
 
2752
- #: templates/admin/dashboard/dashboard.inc.php:423
2753
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2754
  msgid "Calculating Tools"
2755
  msgstr ""
2756
 
2757
- #: templates/admin/dashboard/dashboard.inc.php:426
2758
  msgid "Formula columns"
2759
  msgstr ""
2760
 
2761
- #: templates/admin/dashboard/dashboard.inc.php:429
2762
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2763
  #: templates/admin/table-settings/table_settings_block.inc.php:79
2764
  msgid "Placeholders"
2765
  msgstr "Placeholdery"
2766
 
2767
- #: templates/admin/dashboard/dashboard.inc.php:432
2768
  msgid "Premium support"
2769
  msgstr ""
2770
 
2771
- #: templates/admin/dashboard/dashboard.inc.php:436
2772
  msgid "Get Premium Today"
2773
  msgstr ""
2774
 
2775
- #: templates/admin/dashboard/dashboard.inc.php:443
2776
  msgid "News Blog"
2777
  msgstr ""
2778
 
2779
- #: templates/admin/dashboard/dashboard.inc.php:448
2780
  msgid "Checkout useful articles from wpdatatables.com"
2781
  msgstr ""
2782
 
2783
- #: templates/admin/dashboard/dashboard.inc.php:471
2784
  msgid "Please install and enable PHP extensions xml and dom on your server."
2785
  msgstr ""
2786
 
2787
- #: templates/admin/dashboard/dashboard.inc.php:479
2788
  msgid ""
2789
  "Never miss notifications about new cool features, promotions,\n"
2790
  " giveaways or freebies – subscribe to our "
@@ -2792,92 +2816,92 @@ msgid ""
2792
  " about 1 message per month and never spam!"
2793
  msgstr ""
2794
 
2795
- #: templates/admin/dashboard/dashboard.inc.php:497
2796
  msgid "Premium "
2797
  msgstr ""
2798
 
2799
- #: templates/admin/dashboard/dashboard.inc.php:500
2800
  msgid ""
2801
  "While wpDataTables itself provides quite a large amount of features and "
2802
  "unlimited customisation, flexibility, you can achieve even more with our "
2803
  "premium addons.(requires wpDataTables Premium version)"
2804
  msgstr ""
2805
 
2806
- #: templates/admin/dashboard/dashboard.inc.php:518
2807
  msgid ""
2808
  "A wpDataTables addon which allows showing additional details for a specific "
2809
  "row in a popup or a separate page or post."
2810
  msgstr ""
2811
 
2812
- #: templates/admin/dashboard/dashboard.inc.php:524
2813
- #: templates/admin/dashboard/dashboard.inc.php:551
2814
- #: templates/admin/dashboard/dashboard.inc.php:577
2815
- #: templates/admin/dashboard/dashboard.inc.php:604
2816
- #: templates/admin/dashboard/dashboard.inc.php:630
2817
- #: templates/admin/dashboard/dashboard.inc.php:663
2818
  msgid "Learn More"
2819
  msgstr ""
2820
 
2821
- #: templates/admin/dashboard/dashboard.inc.php:545
2822
  msgid ""
2823
  "An add-on for wpDataTables that provides powerful filtering features: "
2824
  "cascade filtering, applying filters on button click, hide table before "
2825
  "filtering."
2826
  msgstr ""
2827
 
2828
- #: templates/admin/dashboard/dashboard.inc.php:641
2829
  msgid "Need free booking plugin?"
2830
  msgstr ""
2831
 
2832
- #: templates/admin/dashboard/dashboard.inc.php:650
2833
  msgid "Appointments and Events WordPress Booking Plugin"
2834
  msgstr ""
2835
 
2836
- #: templates/admin/dashboard/dashboard.inc.php:653
2837
  msgid ""
2838
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2839
  "set up a fully-featured automated booking system on your WordPress website "
2840
  "and is a handy tool for small businesses and individuals that depend on "
2841
- "stable appointment booking processes. 10,000+ businesses from healthcare, "
2842
  "beauty, sports, automotive, educational, creative, HR and other industries "
2843
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
2844
  "each month."
2845
  msgstr ""
2846
 
2847
- #: templates/admin/dashboard/dashboard.inc.php:656
2848
- msgid "Rating: 4.3 - ‎68 reviews"
2849
  msgstr ""
2850
 
2851
- #: templates/admin/dashboard/dashboard.inc.php:659
2852
  msgid "Free Download"
2853
  msgstr ""
2854
 
2855
- #: templates/admin/dashboard/dashboard.inc.php:674
2856
  #: templates/admin/getting-started/getting_started.inc.php:184
2857
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2858
  #: templates/admin/support/support.inc.php:78
2859
- #: templates/admin/system-info/system_info.inc.php:510
2860
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2861
  msgid "Made by"
2862
  msgstr ""
2863
 
2864
- #: templates/admin/dashboard/dashboard.inc.php:682
2865
  #: templates/admin/getting-started/getting_started.inc.php:192
2866
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2867
  #: templates/admin/support/support.inc.php:45
2868
  #: templates/admin/support/support.inc.php:86
2869
- #: templates/admin/system-info/system_info.inc.php:518
2870
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2871
  #: templates/admin/welcome_page/welcome_page.inc.php:369
2872
  msgid "Documentation"
2873
  msgstr "Dokumentacja"
2874
 
2875
- #: templates/admin/dashboard/dashboard.inc.php:686
2876
  #: templates/admin/getting-started/getting_started.inc.php:196
2877
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2878
  #: templates/admin/support/support.inc.php:24
2879
  #: templates/admin/support/support.inc.php:90
2880
- #: templates/admin/system-info/system_info.inc.php:522
2881
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2882
  msgid "Support Center"
2883
  msgstr ""
@@ -3129,7 +3153,7 @@ msgstr ""
3129
  #: templates/admin/settings/settings.inc.php:33
3130
  #: templates/admin/settings/settings.inc.php:91
3131
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3132
- #: templates/admin/table-settings/column_settings_panel.inc.php:1082
3133
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3134
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3135
  #: templates/admin/table-settings/table_preview_block.inc.php:89
@@ -3643,13 +3667,13 @@ msgid ""
3643
  msgstr ""
3644
 
3645
  #: templates/admin/settings/tabs/main_plugin_settings.php:216
3646
- #: templates/admin/table-settings/column_settings_panel.inc.php:767
3647
  #: templates/edit_table.inc.php:663
3648
  msgid "Ascending"
3649
  msgstr "Rosnąco"
3650
 
3651
  #: templates/admin/settings/tabs/main_plugin_settings.php:217
3652
- #: templates/admin/table-settings/column_settings_panel.inc.php:768
3653
  #: templates/edit_table.inc.php:665
3654
  msgid "Descending"
3655
  msgstr "Malejąco"
@@ -3932,35 +3956,35 @@ msgstr ""
3932
  msgid "Open a topic"
3933
  msgstr ""
3934
 
3935
- #: templates/admin/system-info/system_info.inc.php:23
3936
  msgid "System Info"
3937
  msgstr ""
3938
 
3939
- #: templates/admin/system-info/system_info.inc.php:62
3940
  msgid "The URL of your site's homepage."
3941
  msgstr ""
3942
 
3943
- #: templates/admin/system-info/system_info.inc.php:69
3944
  msgid "The root URL of your site."
3945
  msgstr ""
3946
 
3947
- #: templates/admin/system-info/system_info.inc.php:76
3948
  msgid "System path of your wp-content directory."
3949
  msgstr ""
3950
 
3951
- #: templates/admin/system-info/system_info.inc.php:83
3952
  msgid "System path of your WP root directory."
3953
  msgstr ""
3954
 
3955
- #: templates/admin/system-info/system_info.inc.php:90
3956
  msgid "The version of WordPress installed on your site."
3957
  msgstr ""
3958
 
3959
- #: templates/admin/system-info/system_info.inc.php:97
3960
  msgid "Whether or not you have WordPress Multisite enabled."
3961
  msgstr ""
3962
 
3963
- #: templates/admin/system-info/system_info.inc.php:121
3964
  #, php-format
3965
  msgid ""
3966
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
@@ -3969,35 +3993,35 @@ msgid ""
3969
  "noreferrer\">Increasing memory allocated to PHP.</a>"
3970
  msgstr ""
3971
 
3972
- #: templates/admin/system-info/system_info.inc.php:131
3973
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
3974
  msgstr ""
3975
 
3976
- #: templates/admin/system-info/system_info.inc.php:144
3977
  msgid "Displays whether or not WordPress is in Debug Mode."
3978
  msgstr ""
3979
 
3980
- #: templates/admin/system-info/system_info.inc.php:151
3981
  msgid "The current language used by WordPress. Default = English"
3982
  msgstr ""
3983
 
3984
- #: templates/admin/system-info/system_info.inc.php:171
3985
  msgid "Information about your operating system."
3986
  msgstr ""
3987
 
3988
- #: templates/admin/system-info/system_info.inc.php:179
3989
  msgid "Information about the web server that is currently hosting your site."
3990
  msgstr ""
3991
 
3992
- #: templates/admin/system-info/system_info.inc.php:221
3993
  msgid "The version of PHP installed on your hosting server."
3994
  msgstr ""
3995
 
3996
- #: templates/admin/system-info/system_info.inc.php:232
3997
  msgid "The largest file size that can be contained in one post."
3998
  msgstr ""
3999
 
4000
- #: templates/admin/system-info/system_info.inc.php:241
4001
  #, php-format
4002
  msgid ""
4003
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
@@ -4005,69 +4029,69 @@ msgid ""
4005
  "\">Increasing max execution to PHP</a>"
4006
  msgstr ""
4007
 
4008
- #: templates/admin/system-info/system_info.inc.php:249
4009
  msgid ""
4010
  "The amount of time (in seconds) that your site will spend on a single "
4011
  "operation before timing out (to avoid server lockups)"
4012
  msgstr ""
4013
 
4014
- #: templates/admin/system-info/system_info.inc.php:264
4015
  msgid "The version of MySQL installed on your hosting server."
4016
  msgstr ""
4017
 
4018
- #: templates/admin/system-info/system_info.inc.php:272
4019
  msgid ""
4020
  "The largest file size that can be uploaded to your WordPress installation."
4021
  msgstr ""
4022
 
4023
- #: templates/admin/system-info/system_info.inc.php:294
4024
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4025
  msgstr ""
4026
 
4027
- #: templates/admin/system-info/system_info.inc.php:312
4028
  msgid ""
4029
  "XML support is something that needs to be installed on the server for proper "
4030
  "wpDataTables functionality."
4031
  msgstr ""
4032
 
4033
- #: templates/admin/system-info/system_info.inc.php:330
4034
  msgid ""
4035
  "DOM support is something that needs to be installed on the server for proper "
4036
  "wpDataTables functionality."
4037
  msgstr ""
4038
 
4039
- #: templates/admin/system-info/system_info.inc.php:356
4040
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4041
  msgstr ""
4042
 
4043
- #: templates/admin/system-info/system_info.inc.php:375
4044
  msgid ""
4045
  "ZIP support is something that needs to be installed on the server, as a "
4046
  "package for the Linux operating system, or rather to the PHP software on the "
4047
  "server."
4048
  msgstr ""
4049
 
4050
- #: templates/admin/system-info/system_info.inc.php:395
4051
  msgid "wpDataTables use cURL for getting data from other servers."
4052
  msgstr ""
4053
 
4054
- #: templates/admin/system-info/system_info.inc.php:418
4055
  msgid "The name of the current active theme."
4056
  msgstr ""
4057
 
4058
- #: templates/admin/system-info/system_info.inc.php:429
4059
  msgid "The installed version of the current active theme."
4060
  msgstr ""
4061
 
4062
- #: templates/admin/system-info/system_info.inc.php:436
4063
  msgid "The theme developers."
4064
  msgstr ""
4065
 
4066
- #: templates/admin/system-info/system_info.inc.php:442
4067
  msgid "The theme developers URL."
4068
  msgstr ""
4069
 
4070
- #: templates/admin/system-info/system_info.inc.php:479
4071
  msgid "Visit plugin homepage"
4072
  msgstr ""
4073
 
@@ -4128,8 +4152,8 @@ msgid "Data"
4128
  msgstr "Dane"
4129
 
4130
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4131
- msgid "Filtering"
4132
- msgstr "Filtrowanie"
4133
 
4134
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4135
  #: templates/admin/table-settings/table_settings_block.inc.php:71
@@ -4277,12 +4301,12 @@ msgid "DateTime"
4277
  msgstr "Data i godzina"
4278
 
4279
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4280
- #: templates/admin/table-settings/column_settings_panel.inc.php:971
4281
  msgid "URL link"
4282
  msgstr "Link do strony internetowej"
4283
 
4284
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4285
- #: templates/admin/table-settings/column_settings_panel.inc.php:972
4286
  msgid "E-mail link"
4287
  msgstr "Łącze E-mail"
4288
 
@@ -4583,44 +4607,52 @@ msgstr "Tekst przycisku"
4583
  msgid "Button class"
4584
  msgstr "Klasa przycisku"
4585
 
4586
- #: templates/admin/table-settings/column_settings_panel.inc.php:724
 
 
 
 
 
 
 
 
4587
  msgid "Allow sorting"
4588
  msgstr "Zezwól na sortowanie"
4589
 
4590
- #: templates/admin/table-settings/column_settings_panel.inc.php:726
4591
  msgid "Disable this to disallow sorting for this column."
4592
  msgstr "Wyłącz tę opcję, aby nie zezwalać na sortowanie dla tej kolumny."
4593
 
4594
- #: templates/admin/table-settings/column_settings_panel.inc.php:732
4595
  msgid "Allow sorting for this column"
4596
  msgstr "Zezwalaj na sortowanie dla tej kolumny"
4597
 
4598
- #: templates/admin/table-settings/column_settings_panel.inc.php:739
4599
  msgid "Use as default sorting column"
4600
  msgstr "Użyj jako domyślnej kolumny sortowania"
4601
 
4602
- #: templates/admin/table-settings/column_settings_panel.inc.php:741
4603
- #: templates/admin/table-settings/column_settings_panel.inc.php:747
4604
  msgid "Sort table by this column on load"
4605
  msgstr "Sortuj tabelę według tej kolumny przy obciążeniu"
4606
 
4607
- #: templates/admin/table-settings/column_settings_panel.inc.php:758
4608
  msgid "Default sorting direction"
4609
  msgstr "Domyślny kierunek sortowania"
4610
 
4611
- #: templates/admin/table-settings/column_settings_panel.inc.php:760
4612
  msgid "Choose whether to sort ascending or descending by default."
4613
  msgstr "Zdecyduj, czy domyślnie ma być sortowana rosnąco, czy malejąco."
4614
 
4615
- #: templates/admin/table-settings/column_settings_panel.inc.php:793
4616
  msgid "Add a filter for this column"
4617
  msgstr "Dodaj filtr dla tej kolumny"
4618
 
4619
- #: templates/admin/table-settings/column_settings_panel.inc.php:801
4620
  msgid "Enable filtering for column"
4621
  msgstr "Włącz filtrowanie dla kolumny"
4622
 
4623
- #: templates/admin/table-settings/column_settings_panel.inc.php:808
4624
  msgid ""
4625
  "Enabling this switch will add a filter for this column. Disable to remove "
4626
  "the filter for this column."
@@ -4628,63 +4660,78 @@ msgstr ""
4628
  "Włączenie tego przełącznika spowoduje dodanie filtru dla tej kolumny. "
4629
  "Wyłącz, aby usunąć filtr dla tej kolumny."
4630
 
4631
- #: templates/admin/table-settings/column_settings_panel.inc.php:817
4632
  msgid "Allow filtering"
4633
  msgstr "Pozwól na filtrowanie"
4634
 
4635
- #: templates/admin/table-settings/column_settings_panel.inc.php:824
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4636
  #: templates/edit_table.inc.php:570
4637
  msgid "Filter type"
4638
  msgstr "Typ filtra"
4639
 
4640
- #: templates/admin/table-settings/column_settings_panel.inc.php:826
4641
  msgid ""
4642
  "You can redefine the filter type here, it will affect the filtering logic."
4643
  msgstr ""
4644
  "W tym miejscu można ponownie zdefiniować typ filtru, wpłynie to na logikę "
4645
  "filtrowania."
4646
 
4647
- #: templates/admin/table-settings/column_settings_panel.inc.php:833
4648
  msgid "Text"
4649
  msgstr "Tekst"
4650
 
4651
- #: templates/admin/table-settings/column_settings_panel.inc.php:834
4652
  msgid "Number"
4653
  msgstr "Numer"
4654
 
4655
- #: templates/admin/table-settings/column_settings_panel.inc.php:835
4656
  msgid "Number range"
4657
  msgstr "Sekwencja"
4658
 
4659
- #: templates/admin/table-settings/column_settings_panel.inc.php:836
4660
  msgid "Date range"
4661
  msgstr "Zakres dat"
4662
 
4663
- #: templates/admin/table-settings/column_settings_panel.inc.php:837
4664
  msgid "DateTime range"
4665
  msgstr "Zakres DateTime"
4666
 
4667
- #: templates/admin/table-settings/column_settings_panel.inc.php:838
4668
  msgid "Time range"
4669
  msgstr "Zakres czasu"
4670
 
4671
- #: templates/admin/table-settings/column_settings_panel.inc.php:839
4672
  msgid "Selectbox"
4673
  msgstr "Selectbox"
4674
 
4675
- #: templates/admin/table-settings/column_settings_panel.inc.php:840
4676
  msgid "Checkbox"
4677
  msgstr "Pole zaznaczenia"
4678
 
4679
- #: templates/admin/table-settings/column_settings_panel.inc.php:856
4680
  msgid "Filter label"
4681
  msgstr "Etykieta filtra"
4682
 
4683
- #: templates/admin/table-settings/column_settings_panel.inc.php:864
4684
  msgid "Custom filter label"
4685
  msgstr "Etykieta filtru niestandardowego"
4686
 
4687
- #: templates/admin/table-settings/column_settings_panel.inc.php:871
4688
  msgid ""
4689
  "You can change the filter label (placeholder) for this column here, if you "
4690
  "would like to show some custom text instead of default."
@@ -4692,11 +4739,11 @@ msgstr ""
4692
  "Można zmienić etykietę filtru (symbol zastępczy) dla tej kolumny w tym "
4693
  "miejscu, jeśli chcesz pokazać jakiś niestandardowy tekst zamiast domyślnego."
4694
 
4695
- #: templates/admin/table-settings/column_settings_panel.inc.php:886
4696
  msgid "Exact filtering"
4697
  msgstr "Dokładne filtrowanie"
4698
 
4699
- #: templates/admin/table-settings/column_settings_panel.inc.php:888
4700
  msgid ""
4701
  "Enable exact search to use exact match logic for filtering, disable to allow "
4702
  "partial match."
@@ -4704,16 +4751,16 @@ msgstr ""
4704
  "Włącz dokładne wyszukiwanie, aby użyć logiki dopasowania dokładnego do "
4705
  "filtrowania, Wyłącz, aby zezwolić na częściowe dopasowanie."
4706
 
4707
- #: templates/admin/table-settings/column_settings_panel.inc.php:894
4708
  msgid "Enable exact filtering"
4709
  msgstr "Włącz dokładne filtrowanie"
4710
 
4711
- #: templates/admin/table-settings/column_settings_panel.inc.php:906
4712
- #: templates/admin/table-settings/column_settings_panel.inc.php:1003
4713
  msgid "Predefined value(s)"
4714
  msgstr "Wstępnie zdefiniowane wartości"
4715
 
4716
- #: templates/admin/table-settings/column_settings_panel.inc.php:908
4717
  msgid ""
4718
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4719
  "page load."
@@ -4721,43 +4768,43 @@ msgstr ""
4721
  "Zdefiniuj wartości, które zostaną ustawione jako domyślne wstępnie "
4722
  "zdefiniowane wartości filtrów na załadowanie strony."
4723
 
4724
- #: templates/admin/table-settings/column_settings_panel.inc.php:954
4725
  msgid "Editor input type"
4726
  msgstr "Typ danych wejściowych edytora"
4727
 
4728
- #: templates/admin/table-settings/column_settings_panel.inc.php:956
4729
  msgid "Choose which kind of editor input to use for this column."
4730
  msgstr "Wybierz typ danych wejściowych edytora do użycia dla tej kolumny."
4731
 
4732
- #: templates/admin/table-settings/column_settings_panel.inc.php:962
4733
  msgid "None"
4734
  msgstr "Brak"
4735
 
4736
- #: templates/admin/table-settings/column_settings_panel.inc.php:963
4737
  msgid "One-line edit"
4738
  msgstr "Edycja jednowierszowa"
4739
 
4740
- #: templates/admin/table-settings/column_settings_panel.inc.php:964
4741
  msgid "Multi-line edit"
4742
  msgstr "Edycja wielowierszowa"
4743
 
4744
- #: templates/admin/table-settings/column_settings_panel.inc.php:965
4745
  msgid "HTML editor"
4746
  msgstr "Edytor HTML"
4747
 
4748
- #: templates/admin/table-settings/column_settings_panel.inc.php:966
4749
  msgid "Single-value selectbox"
4750
  msgstr "Pojedyncza wartość Selectbox"
4751
 
4752
- #: templates/admin/table-settings/column_settings_panel.inc.php:967
4753
  msgid "Multi-value selectbox"
4754
  msgstr "Wiele wartości Selectbox"
4755
 
4756
- #: templates/admin/table-settings/column_settings_panel.inc.php:983
4757
  msgid "Column cannot be empty"
4758
  msgstr "Kolumna nie może być pusta"
4759
 
4760
- #: templates/admin/table-settings/column_settings_panel.inc.php:985
4761
  msgid ""
4762
  "Enable to make this column mandatory. Users will see a warning when trying "
4763
  "to save with empty input."
@@ -4765,11 +4812,11 @@ msgstr ""
4765
  "Włącz, aby ta kolumna była obowiązkowa. Użytkownicy zobaczą ostrzeżenie "
4766
  "podczas próby zapisania z pustym wejściem."
4767
 
4768
- #: templates/admin/table-settings/column_settings_panel.inc.php:991
4769
  msgid "Cannot be empty"
4770
  msgstr "To pole nie może być puste"
4771
 
4772
- #: templates/admin/table-settings/column_settings_panel.inc.php:1005
4773
  msgid ""
4774
  "If you would like to have some values pre-defined in editors (i.e. default "
4775
  "editor values) please enter these here."
@@ -4777,19 +4824,23 @@ msgstr ""
4777
  "Jeśli chcesz mieć pewne wartości wstępnie zdefiniowane w edytorach (tj. "
4778
  "domyślne wartości edytora), wpisz je tutaj."
4779
 
4780
- #: templates/admin/table-settings/column_settings_panel.inc.php:1051
4781
  msgid "Add New Rule"
4782
  msgstr ""
4783
 
4784
  #: templates/admin/table-settings/column_small_block.inc.php:16
 
 
 
 
4785
  msgid "Show/hide sorting"
4786
  msgstr "Pokaż/Ukryj sortowanie"
4787
 
4788
- #: templates/admin/table-settings/column_small_block.inc.php:18
4789
  msgid "Show/hide the column"
4790
  msgstr "Pokaż/Ukryj kolumnę"
4791
 
4792
- #: templates/admin/table-settings/column_small_block.inc.php:24
4793
  msgid "Open column settings"
4794
  msgstr "Otwórz Ustawienia kolumny"
4795
 
@@ -4989,19 +5040,42 @@ msgstr "Potwierdź"
4989
  msgid "Are you sure? There is no undo!"
4990
  msgstr "Potwierdź usunięcie. Nie ma cofania!"
4991
 
 
 
 
 
 
 
 
 
4992
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4993
  msgid "Table preview"
4994
  msgstr ""
4995
 
4996
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:22
4997
  msgid "Desktop"
4998
  msgstr ""
4999
 
5000
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:25
5001
  msgid "Tablet"
5002
  msgstr ""
5003
 
5004
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5005
  msgid "Mobile"
5006
  msgstr ""
5007
 
@@ -5676,10 +5750,6 @@ msgstr "Zezwalaj na sortowanie dla tabeli"
5676
  msgid "Main search block"
5677
  msgstr "Główny blok wyszukiwania"
5678
 
5679
- #: templates/admin/table-settings/table_settings_block.inc.php:665
5680
- msgid "Global search"
5681
- msgstr "Wyszukiwanie globalne"
5682
-
5683
  #: templates/admin/table-settings/table_settings_block.inc.php:672
5684
  msgid ""
5685
  "If this is enabled, a search block will be displayed on the top right of the "
@@ -7046,6 +7116,9 @@ msgstr ""
7046
  msgid "Insert name for export file"
7047
  msgstr ""
7048
 
 
 
 
7049
  #~ msgid "tr"
7050
  #~ msgstr "tr"
7051
 
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"
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
 
111
+ #: controllers/wdt_functions.php:486
112
  msgid "wpDataChart with provided ID not found!"
113
  msgstr "wpDataChart z podanego identyfikatora nie znaleziono!"
114
 
115
+ #: controllers/wdt_functions.php:522 controllers/wdt_functions.php:603
116
  msgid "wpDataTable with provided ID not found!"
117
  msgstr "wpDataTable z podanego identyfikatora nie znaleziono!"
118
 
119
+ #: controllers/wdt_functions.php:613
120
  msgid "Provided column is not Integer or Float column type"
121
  msgstr "Podana kolumna nie jest Integer lub float Typ kolumny"
122
 
123
+ #: controllers/wdt_functions.php:830
124
  msgid "Choose a table"
125
  msgstr "Wybierz tabelę"
126
 
127
+ #: controllers/wdt_functions.php:862
128
  msgid "Interactive Responsive Table"
129
  msgstr "Interaktywny responsywny stół"
130
 
131
+ #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
132
  msgid "Content"
133
  msgstr "Zawartość"
134
 
135
+ #: controllers/wdt_functions.php:869
136
  msgid "wpDataTable"
137
  msgstr "wpDataTable"
138
 
139
+ #: controllers/wdt_functions.php:873
140
  msgid "Choose the wpDataTable from a dropdown"
141
  msgstr "Wybierz wpDataTable z listy rozwijanej"
142
 
143
+ #: controllers/wdt_functions.php:878
144
  msgid "Table view"
145
  msgstr "Widok tabeli"
146
 
147
+ #: controllers/wdt_functions.php:882
148
  msgid "Regular wpDataTable"
149
  msgstr "Regularne wpDataTable"
150
 
151
+ #: controllers/wdt_functions.php:884
152
  msgid "Excel-like table"
153
  msgstr "Tabela podobnych do Excela"
154
 
155
+ #: controllers/wdt_functions.php:890
156
  msgid "Variable placeholder #1"
157
  msgstr "Zmienna #1 zastępcza"
158
 
159
+ #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
160
+ #: controllers/wdt_functions.php:909
161
  msgid "Variables"
162
  msgstr "Zmienne"
163
 
164
+ #: controllers/wdt_functions.php:894
165
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
166
  msgstr ""
167
  "Jeśli użyto symbolu zastępczego VAR1 można przypisać do niej wartość tutaj"
168
 
169
+ #: controllers/wdt_functions.php:898
170
  msgid "Variable placeholder #2"
171
  msgstr "Zmienna #2 zastępcza"
172
 
173
+ #: controllers/wdt_functions.php:902
174
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
175
  msgstr ""
176
  "Jeśli użyto symbolu zastępczego VAR2 można przypisać do niej wartość tutaj"
177
 
178
+ #: controllers/wdt_functions.php:906
179
  msgid "Variable placeholder #3"
180
  msgstr "Zmienna #3 zastępcza"
181
 
182
+ #: controllers/wdt_functions.php:910
183
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
184
  msgstr ""
185
  "Jeśli użyto symbolu zastępczego VAR3 można przypisać do niej wartość tutaj"
186
 
187
+ #: controllers/wdt_functions.php:923
188
  msgid "Google or Highcharts chart based on a wpDataTable"
189
  msgstr "Google lub Highcharts wykres oparty na wpDataTable"
190
 
191
+ #: controllers/wdt_functions.php:930
192
  msgid "wpDataChart"
193
  msgstr "Właściwość wpDataChart"
194
 
195
+ #: controllers/wdt_functions.php:934
196
  msgid "Choose one of wpDataCharts from the list"
197
  msgstr "Wybierz jedną z wpDataCharts z listy"
198
 
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"
372
  msgid "There was an error trying to fetch the table data: "
373
  msgstr "Wystąpił błąd podczas próby pobrania danych z tabeli:"
374
 
375
+ #: source/class.wdtconfigcontroller.php:479
376
  msgid "Table in data source has no rows."
377
  msgstr "Tabela w źródle danych nie ma wierszy."
378
 
404
 
405
  #: source/class.wdttools.php:23
406
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
407
+ #: templates/admin/table-settings/column_settings_panel.inc.php:984
408
  msgid "Date"
409
  msgstr "Data"
410
 
411
  #: source/class.wdttools.php:24
412
+ #: templates/admin/table-settings/column_settings_panel.inc.php:985
413
  msgid "Datetime"
414
  msgstr "Data i godzina"
415
 
416
  #: source/class.wdttools.php:25
417
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
418
+ #: templates/admin/table-settings/column_settings_panel.inc.php:986
419
  msgid "Time"
420
  msgstr "Czas"
421
 
433
  msgstr "Obraz"
434
 
435
  #: source/class.wdttools.php:29
436
+ #: templates/admin/table-settings/column_settings_panel.inc.php:989
437
  msgid "Attachment"
438
  msgstr "Załącznik"
439
 
460
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
461
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
462
  #: templates/admin/common/HTMLModal.inc.php:43
463
+ #: templates/admin/common/linkModal.inc.php:117
464
  #: templates/admin/common/shortcodeModal.inc.php:48
465
  #: templates/admin/common/starModal.inc.php:73
466
  #: templates/admin/constructor/constructor.inc.php:29
467
  #: templates/admin/settings/settings.inc.php:28
468
  #: templates/admin/table-settings/add_column_modal.inc.php:126
469
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
470
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1095
471
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
472
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
473
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
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"
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
  "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
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
  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
  "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
  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
  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
  "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
  "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."
2269
  msgstr "Otwórz odnośnik w nowej karcie"
2270
 
2271
  #: templates/admin/common/linkModal.inc.php:76
2272
+ #: templates/admin/table-settings/column_settings_panel.inc.php:720
2273
+ msgid "Make NOFOLLOW link"
2274
+ msgstr ""
2275
+
2276
+ #: templates/admin/common/linkModal.inc.php:87
2277
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2278
  msgid "Set the link to appear as a button"
2279
  msgstr "Ustaw łącze, które ma być wyświetlane jako przycisk"
2280
 
2281
+ #: templates/admin/common/linkModal.inc.php:96
2282
  msgid "Button class:"
2283
  msgstr ""
2284
 
2285
+ #: templates/admin/common/linkModal.inc.php:121
2286
  msgid "Insert link"
2287
  msgstr ""
2288
 
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
2425
  msgstr ""
2426
 
2427
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
2428
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:14
2429
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2430
  msgid "Create a data table linked to an existing data source"
2431
  msgstr ""
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
  " 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 "
2864
  "and is a handy tool for small businesses and individuals that depend on "
2865
+ "stable appointment booking processes. 20,000+ businesses from healthcare, "
2866
  "beauty, sports, automotive, educational, creative, HR and other industries "
2867
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
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
2894
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2895
  #: templates/admin/welcome_page/welcome_page.inc.php:369
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
2905
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2906
  msgid "Support Center"
2907
  msgstr ""
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
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"
3956
  msgid "Open a topic"
3957
  msgstr ""
3958
 
3959
+ #: templates/admin/system-info/system_info.inc.php:22
3960
  msgid "System Info"
3961
  msgstr ""
3962
 
3963
+ #: templates/admin/system-info/system_info.inc.php:61
3964
  msgid "The URL of your site's homepage."
3965
  msgstr ""
3966
 
3967
+ #: templates/admin/system-info/system_info.inc.php:68
3968
  msgid "The root URL of your site."
3969
  msgstr ""
3970
 
3971
+ #: templates/admin/system-info/system_info.inc.php:75
3972
  msgid "System path of your wp-content directory."
3973
  msgstr ""
3974
 
3975
+ #: templates/admin/system-info/system_info.inc.php:82
3976
  msgid "System path of your WP root directory."
3977
  msgstr ""
3978
 
3979
+ #: templates/admin/system-info/system_info.inc.php:89
3980
  msgid "The version of WordPress installed on your site."
3981
  msgstr ""
3982
 
3983
+ #: templates/admin/system-info/system_info.inc.php:96
3984
  msgid "Whether or not you have WordPress Multisite enabled."
3985
  msgstr ""
3986
 
3987
+ #: templates/admin/system-info/system_info.inc.php:120
3988
  #, php-format
3989
  msgid ""
3990
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
3993
  "noreferrer\">Increasing memory allocated to PHP.</a>"
3994
  msgstr ""
3995
 
3996
+ #: templates/admin/system-info/system_info.inc.php:130
3997
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
3998
  msgstr ""
3999
 
4000
+ #: templates/admin/system-info/system_info.inc.php:143
4001
  msgid "Displays whether or not WordPress is in Debug Mode."
4002
  msgstr ""
4003
 
4004
+ #: templates/admin/system-info/system_info.inc.php:150
4005
  msgid "The current language used by WordPress. Default = English"
4006
  msgstr ""
4007
 
4008
+ #: templates/admin/system-info/system_info.inc.php:170
4009
  msgid "Information about your operating system."
4010
  msgstr ""
4011
 
4012
+ #: templates/admin/system-info/system_info.inc.php:178
4013
  msgid "Information about the web server that is currently hosting your site."
4014
  msgstr ""
4015
 
4016
+ #: templates/admin/system-info/system_info.inc.php:220
4017
  msgid "The version of PHP installed on your hosting server."
4018
  msgstr ""
4019
 
4020
+ #: templates/admin/system-info/system_info.inc.php:231
4021
  msgid "The largest file size that can be contained in one post."
4022
  msgstr ""
4023
 
4024
+ #: templates/admin/system-info/system_info.inc.php:240
4025
  #, php-format
4026
  msgid ""
4027
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
4029
  "\">Increasing max execution to PHP</a>"
4030
  msgstr ""
4031
 
4032
+ #: templates/admin/system-info/system_info.inc.php:248
4033
  msgid ""
4034
  "The amount of time (in seconds) that your site will spend on a single "
4035
  "operation before timing out (to avoid server lockups)"
4036
  msgstr ""
4037
 
4038
+ #: templates/admin/system-info/system_info.inc.php:263
4039
  msgid "The version of MySQL installed on your hosting server."
4040
  msgstr ""
4041
 
4042
+ #: templates/admin/system-info/system_info.inc.php:271
4043
  msgid ""
4044
  "The largest file size that can be uploaded to your WordPress installation."
4045
  msgstr ""
4046
 
4047
+ #: templates/admin/system-info/system_info.inc.php:293
4048
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4049
  msgstr ""
4050
 
4051
+ #: templates/admin/system-info/system_info.inc.php:311
4052
  msgid ""
4053
  "XML support is something that needs to be installed on the server for proper "
4054
  "wpDataTables functionality."
4055
  msgstr ""
4056
 
4057
+ #: templates/admin/system-info/system_info.inc.php:329
4058
  msgid ""
4059
  "DOM support is something that needs to be installed on the server for proper "
4060
  "wpDataTables functionality."
4061
  msgstr ""
4062
 
4063
+ #: templates/admin/system-info/system_info.inc.php:355
4064
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4065
  msgstr ""
4066
 
4067
+ #: templates/admin/system-info/system_info.inc.php:374
4068
  msgid ""
4069
  "ZIP support is something that needs to be installed on the server, as a "
4070
  "package for the Linux operating system, or rather to the PHP software on the "
4071
  "server."
4072
  msgstr ""
4073
 
4074
+ #: templates/admin/system-info/system_info.inc.php:394
4075
  msgid "wpDataTables use cURL for getting data from other servers."
4076
  msgstr ""
4077
 
4078
+ #: templates/admin/system-info/system_info.inc.php:417
4079
  msgid "The name of the current active theme."
4080
  msgstr ""
4081
 
4082
+ #: templates/admin/system-info/system_info.inc.php:428
4083
  msgid "The installed version of the current active theme."
4084
  msgstr ""
4085
 
4086
+ #: templates/admin/system-info/system_info.inc.php:435
4087
  msgid "The theme developers."
4088
  msgstr ""
4089
 
4090
+ #: templates/admin/system-info/system_info.inc.php:441
4091
  msgid "The theme developers URL."
4092
  msgstr ""
4093
 
4094
+ #: templates/admin/system-info/system_info.inc.php:478
4095
  msgid "Visit plugin homepage"
4096
  msgstr ""
4097
 
4152
  msgstr "Dane"
4153
 
4154
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4155
+ 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
4301
  msgstr "Data i godzina"
4302
 
4303
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4304
+ #: templates/admin/table-settings/column_settings_panel.inc.php:987
4305
  msgid "URL link"
4306
  msgstr "Link do strony internetowej"
4307
 
4308
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4309
+ #: templates/admin/table-settings/column_settings_panel.inc.php:988
4310
  msgid "E-mail link"
4311
  msgstr "Łącze E-mail"
4312
 
4607
  msgid "Button class"
4608
  msgstr "Klasa przycisku"
4609
 
4610
+ #: templates/admin/table-settings/column_settings_panel.inc.php:712
4611
+ msgid "URL relation attribute"
4612
+ msgstr ""
4613
+
4614
+ #: templates/admin/table-settings/column_settings_panel.inc.php:714
4615
+ msgid "Set the link relation"
4616
+ msgstr ""
4617
+
4618
+ #: templates/admin/table-settings/column_settings_panel.inc.php:740
4619
  msgid "Allow sorting"
4620
  msgstr "Zezwól na sortowanie"
4621
 
4622
+ #: templates/admin/table-settings/column_settings_panel.inc.php:742
4623
  msgid "Disable this to disallow sorting for this column."
4624
  msgstr "Wyłącz tę opcję, aby nie zezwalać na sortowanie dla tej kolumny."
4625
 
4626
+ #: templates/admin/table-settings/column_settings_panel.inc.php:748
4627
  msgid "Allow sorting for this column"
4628
  msgstr "Zezwalaj na sortowanie dla tej kolumny"
4629
 
4630
+ #: templates/admin/table-settings/column_settings_panel.inc.php:755
4631
  msgid "Use as default sorting column"
4632
  msgstr "Użyj jako domyślnej kolumny sortowania"
4633
 
4634
+ #: templates/admin/table-settings/column_settings_panel.inc.php:757
4635
+ #: templates/admin/table-settings/column_settings_panel.inc.php:763
4636
  msgid "Sort table by this column on load"
4637
  msgstr "Sortuj tabelę według tej kolumny przy obciążeniu"
4638
 
4639
+ #: templates/admin/table-settings/column_settings_panel.inc.php:774
4640
  msgid "Default sorting direction"
4641
  msgstr "Domyślny kierunek sortowania"
4642
 
4643
+ #: templates/admin/table-settings/column_settings_panel.inc.php:776
4644
  msgid "Choose whether to sort ascending or descending by default."
4645
  msgstr "Zdecyduj, czy domyślnie ma być sortowana rosnąco, czy malejąco."
4646
 
4647
+ #: templates/admin/table-settings/column_settings_panel.inc.php:803
4648
  msgid "Add a filter for this column"
4649
  msgstr "Dodaj filtr dla tej kolumny"
4650
 
4651
+ #: templates/admin/table-settings/column_settings_panel.inc.php:811
4652
  msgid "Enable filtering for column"
4653
  msgstr "Włącz filtrowanie dla kolumny"
4654
 
4655
+ #: templates/admin/table-settings/column_settings_panel.inc.php:818
4656
  msgid ""
4657
  "Enabling this switch will add a filter for this column. Disable to remove "
4658
  "the filter for this column."
4660
  "Włączenie tego przełącznika spowoduje dodanie filtru dla tej kolumny. "
4661
  "Wyłącz, aby usunąć filtr dla tej kolumny."
4662
 
4663
+ #: templates/admin/table-settings/column_settings_panel.inc.php:827
4664
  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
+
4672
+ #: templates/admin/table-settings/column_settings_panel.inc.php:836
4673
+ msgid ""
4674
+ "If this option is turned off, the column data will not appear in your global "
4675
+ "search results."
4676
+ msgstr ""
4677
+
4678
+ #: templates/admin/table-settings/column_settings_panel.inc.php:842
4679
+ msgid "Enable this column in Global search"
4680
+ msgstr ""
4681
+
4682
+ #: templates/admin/table-settings/column_settings_panel.inc.php:850
4683
  #: templates/edit_table.inc.php:570
4684
  msgid "Filter type"
4685
  msgstr "Typ filtra"
4686
 
4687
+ #: templates/admin/table-settings/column_settings_panel.inc.php:852
4688
  msgid ""
4689
  "You can redefine the filter type here, it will affect the filtering logic."
4690
  msgstr ""
4691
  "W tym miejscu można ponownie zdefiniować typ filtru, wpłynie to na logikę "
4692
  "filtrowania."
4693
 
4694
+ #: templates/admin/table-settings/column_settings_panel.inc.php:859
4695
  msgid "Text"
4696
  msgstr "Tekst"
4697
 
4698
+ #: templates/admin/table-settings/column_settings_panel.inc.php:860
4699
  msgid "Number"
4700
  msgstr "Numer"
4701
 
4702
+ #: templates/admin/table-settings/column_settings_panel.inc.php:861
4703
  msgid "Number range"
4704
  msgstr "Sekwencja"
4705
 
4706
+ #: templates/admin/table-settings/column_settings_panel.inc.php:862
4707
  msgid "Date range"
4708
  msgstr "Zakres dat"
4709
 
4710
+ #: templates/admin/table-settings/column_settings_panel.inc.php:863
4711
  msgid "DateTime range"
4712
  msgstr "Zakres DateTime"
4713
 
4714
+ #: templates/admin/table-settings/column_settings_panel.inc.php:864
4715
  msgid "Time range"
4716
  msgstr "Zakres czasu"
4717
 
4718
+ #: templates/admin/table-settings/column_settings_panel.inc.php:865
4719
  msgid "Selectbox"
4720
  msgstr "Selectbox"
4721
 
4722
+ #: templates/admin/table-settings/column_settings_panel.inc.php:866
4723
  msgid "Checkbox"
4724
  msgstr "Pole zaznaczenia"
4725
 
4726
+ #: templates/admin/table-settings/column_settings_panel.inc.php:877
4727
  msgid "Filter label"
4728
  msgstr "Etykieta filtra"
4729
 
4730
+ #: templates/admin/table-settings/column_settings_panel.inc.php:885
4731
  msgid "Custom filter label"
4732
  msgstr "Etykieta filtru niestandardowego"
4733
 
4734
+ #: templates/admin/table-settings/column_settings_panel.inc.php:892
4735
  msgid ""
4736
  "You can change the filter label (placeholder) for this column here, if you "
4737
  "would like to show some custom text instead of default."
4739
  "Można zmienić etykietę filtru (symbol zastępczy) dla tej kolumny w tym "
4740
  "miejscu, jeśli chcesz pokazać jakiś niestandardowy tekst zamiast domyślnego."
4741
 
4742
+ #: templates/admin/table-settings/column_settings_panel.inc.php:907
4743
  msgid "Exact filtering"
4744
  msgstr "Dokładne filtrowanie"
4745
 
4746
+ #: templates/admin/table-settings/column_settings_panel.inc.php:909
4747
  msgid ""
4748
  "Enable exact search to use exact match logic for filtering, disable to allow "
4749
  "partial match."
4751
  "Włącz dokładne wyszukiwanie, aby użyć logiki dopasowania dokładnego do "
4752
  "filtrowania, Wyłącz, aby zezwolić na częściowe dopasowanie."
4753
 
4754
+ #: templates/admin/table-settings/column_settings_panel.inc.php:915
4755
  msgid "Enable exact filtering"
4756
  msgstr "Włącz dokładne filtrowanie"
4757
 
4758
+ #: templates/admin/table-settings/column_settings_panel.inc.php:922
4759
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1019
4760
  msgid "Predefined value(s)"
4761
  msgstr "Wstępnie zdefiniowane wartości"
4762
 
4763
+ #: templates/admin/table-settings/column_settings_panel.inc.php:924
4764
  msgid ""
4765
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4766
  "page load."
4768
  "Zdefiniuj wartości, które zostaną ustawione jako domyślne wstępnie "
4769
  "zdefiniowane wartości filtrów na załadowanie strony."
4770
 
4771
+ #: templates/admin/table-settings/column_settings_panel.inc.php:970
4772
  msgid "Editor input type"
4773
  msgstr "Typ danych wejściowych edytora"
4774
 
4775
+ #: templates/admin/table-settings/column_settings_panel.inc.php:972
4776
  msgid "Choose which kind of editor input to use for this column."
4777
  msgstr "Wybierz typ danych wejściowych edytora do użycia dla tej kolumny."
4778
 
4779
+ #: templates/admin/table-settings/column_settings_panel.inc.php:978
4780
  msgid "None"
4781
  msgstr "Brak"
4782
 
4783
+ #: templates/admin/table-settings/column_settings_panel.inc.php:979
4784
  msgid "One-line edit"
4785
  msgstr "Edycja jednowierszowa"
4786
 
4787
+ #: templates/admin/table-settings/column_settings_panel.inc.php:980
4788
  msgid "Multi-line edit"
4789
  msgstr "Edycja wielowierszowa"
4790
 
4791
+ #: templates/admin/table-settings/column_settings_panel.inc.php:981
4792
  msgid "HTML editor"
4793
  msgstr "Edytor HTML"
4794
 
4795
+ #: templates/admin/table-settings/column_settings_panel.inc.php:982
4796
  msgid "Single-value selectbox"
4797
  msgstr "Pojedyncza wartość Selectbox"
4798
 
4799
+ #: templates/admin/table-settings/column_settings_panel.inc.php:983
4800
  msgid "Multi-value selectbox"
4801
  msgstr "Wiele wartości Selectbox"
4802
 
4803
+ #: templates/admin/table-settings/column_settings_panel.inc.php:999
4804
  msgid "Column cannot be empty"
4805
  msgstr "Kolumna nie może być pusta"
4806
 
4807
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1001
4808
  msgid ""
4809
  "Enable to make this column mandatory. Users will see a warning when trying "
4810
  "to save with empty input."
4812
  "Włącz, aby ta kolumna była obowiązkowa. Użytkownicy zobaczą ostrzeżenie "
4813
  "podczas próby zapisania z pustym wejściem."
4814
 
4815
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1007
4816
  msgid "Cannot be empty"
4817
  msgstr "To pole nie może być puste"
4818
 
4819
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1021
4820
  msgid ""
4821
  "If you would like to have some values pre-defined in editors (i.e. default "
4822
  "editor values) please enter these here."
4824
  "Jeśli chcesz mieć pewne wartości wstępnie zdefiniowane w edytorach (tj. "
4825
  "domyślne wartości edytora), wpisz je tutaj."
4826
 
4827
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1067
4828
  msgid "Add New Rule"
4829
  msgstr ""
4830
 
4831
  #: templates/admin/table-settings/column_small_block.inc.php:16
4832
+ msgid "Enable/disable in global search"
4833
+ msgstr ""
4834
+
4835
+ #: templates/admin/table-settings/column_small_block.inc.php:18
4836
  msgid "Show/hide sorting"
4837
  msgstr "Pokaż/Ukryj sortowanie"
4838
 
4839
+ #: templates/admin/table-settings/column_small_block.inc.php:20
4840
  msgid "Show/hide the column"
4841
  msgstr "Pokaż/Ukryj kolumnę"
4842
 
4843
+ #: templates/admin/table-settings/column_small_block.inc.php:26
4844
  msgid "Open column settings"
4845
  msgstr "Otwórz Ustawienia kolumny"
4846
 
5040
  msgid "Are you sure? There is no undo!"
5041
  msgstr "Potwierdź usunięcie. Nie ma cofania!"
5042
 
5043
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:9
5044
+ msgid "When working with this table type please note that at the moment:"
5045
+ msgstr ""
5046
+
5047
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:11
5048
+ msgid "There is no sorting, search, or pagination in this table type."
5049
+ msgstr ""
5050
+
5051
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
5052
+ msgid "Creating charts from this table type is not yet possible."
5053
+ msgstr ""
5054
+
5055
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:13
5056
+ msgid ""
5057
+ "If you need those features, please consider creating tables with option "
5058
+ msgstr ""
5059
+
5060
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:17
5061
+ msgid ""
5062
+ "Depends of users requests, we will add it in our road map and implement it "
5063
+ "based on priority. Thank you for understanding."
5064
+ msgstr ""
5065
+
5066
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5067
  msgid "Table preview"
5068
  msgstr ""
5069
 
5070
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:38
5071
  msgid "Desktop"
5072
  msgstr ""
5073
 
5074
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:41
5075
  msgid "Tablet"
5076
  msgstr ""
5077
 
5078
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:44
5079
  msgid "Mobile"
5080
  msgstr ""
5081
 
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 "
7116
  msgid "Insert name for export file"
7117
  msgstr ""
7118
 
7119
+ #~ msgid "Filtering"
7120
+ #~ msgstr "Filtrowanie"
7121
+
7122
  #~ msgid "tr"
7123
  #~ msgstr "tr"
7124
 
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: 2020-12-25 17:33+0100\n"
6
- "PO-Revision-Date: 2020-12-25 17:33+0100\n"
7
  "Last-Translator: narozhfy <narozhnyy.alexandr@yandex.ru>\n"
8
  "Language-Team: Русский\n"
9
  "Language: ru_RU\n"
@@ -169,90 +169,90 @@ msgstr ""
169
  msgid "You do not have sufficient permissions to access this page."
170
  msgstr ""
171
 
172
- #: controllers/wdt_functions.php:471
173
  #, fuzzy
174
  msgid "wpDataChart with provided ID not found!"
175
  msgstr "Таблица wpDataTable с заданным ID не найдена!"
176
 
177
- #: controllers/wdt_functions.php:507 controllers/wdt_functions.php:588
178
  msgid "wpDataTable with provided ID not found!"
179
  msgstr "Таблица wpDataTable с заданным ID не найдена!"
180
 
181
- #: controllers/wdt_functions.php:598
182
  msgid "Provided column is not Integer or Float column type"
183
  msgstr ""
184
  "Предоставленный столбец не является типом столбца типа Integer или Float"
185
 
186
- #: controllers/wdt_functions.php:815
187
  msgid "Choose a table"
188
  msgstr "Выберите таблицу"
189
 
190
- #: controllers/wdt_functions.php:847
191
  msgid "Interactive Responsive Table"
192
  msgstr ""
193
 
194
- #: controllers/wdt_functions.php:848 controllers/wdt_functions.php:909
195
  msgid "Content"
196
  msgstr ""
197
 
198
- #: controllers/wdt_functions.php:854
199
  msgid "wpDataTable"
200
  msgstr "wpDataTable таблица"
201
 
202
- #: controllers/wdt_functions.php:858
203
  msgid "Choose the wpDataTable from a dropdown"
204
  msgstr "Выберите таблицу wpDataTable из выпадающего списка"
205
 
206
- #: controllers/wdt_functions.php:863
207
  msgid "Table view"
208
  msgstr "Отображение таблицы"
209
 
210
- #: controllers/wdt_functions.php:867
211
  msgid "Regular wpDataTable"
212
  msgstr "Стандартная wpDataTable таблица"
213
 
214
- #: controllers/wdt_functions.php:869
215
  msgid "Excel-like table"
216
  msgstr "Таблица типа Excel"
217
 
218
- #: controllers/wdt_functions.php:875
219
  msgid "Variable placeholder #1"
220
  msgstr "Переменная №1"
221
 
222
- #: controllers/wdt_functions.php:878 controllers/wdt_functions.php:886
223
- #: controllers/wdt_functions.php:894
224
  msgid "Variables"
225
  msgstr "Переменные"
226
 
227
- #: controllers/wdt_functions.php:879
228
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
229
  msgstr "Если вы использовали переменную VAR1, вы можете здесь задать значение"
230
 
231
- #: controllers/wdt_functions.php:883
232
  msgid "Variable placeholder #2"
233
  msgstr "Переменная №2"
234
 
235
- #: controllers/wdt_functions.php:887
236
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
237
  msgstr "Если вы использовали переменную VAR2, вы можете здесь задать значение"
238
 
239
- #: controllers/wdt_functions.php:891
240
  msgid "Variable placeholder #3"
241
  msgstr "Переменная №3"
242
 
243
- #: controllers/wdt_functions.php:895
244
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
245
  msgstr "Если вы использовали переменную VAR3, вы можете здесь задать значение"
246
 
247
- #: controllers/wdt_functions.php:908
248
  msgid "Google or Highcharts chart based on a wpDataTable"
249
  msgstr ""
250
 
251
- #: controllers/wdt_functions.php:915
252
  msgid "wpDataChart"
253
  msgstr "Диаграмма wpDataChart"
254
 
255
- #: controllers/wdt_functions.php:919
256
  msgid "Choose one of wpDataCharts from the list"
257
  msgstr "Выберите одну из диаграмм wpDataCharts из списка"
258
 
@@ -390,14 +390,14 @@ msgstr "MySQL сервер"
390
  msgid "Manual"
391
  msgstr "Ручной ввод"
392
 
393
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2204
394
- #: source/class.wpdatatable.php:2274
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:2213
400
- #: source/class.wpdatatable.php:2284
401
  #: templates/admin/table-settings/table_settings_block.inc.php:1032
402
  msgid "CSV"
403
  msgstr "CSV"
@@ -436,7 +436,7 @@ msgstr "Таблиц wpDataTables пока не создано"
436
  msgid "There was an error trying to fetch the table data: "
437
  msgstr "Произошла ошибка при попытке получить данные таблицы:"
438
 
439
- #: source/class.wdtconfigcontroller.php:477
440
  msgid "Table in data source has no rows."
441
  msgstr "Таблица в источнике не содержит строк"
442
 
@@ -468,18 +468,18 @@ msgstr "Дробное число"
468
 
469
  #: source/class.wdttools.php:23
470
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
471
- #: templates/admin/table-settings/column_settings_panel.inc.php:968
472
  msgid "Date"
473
  msgstr "Дата"
474
 
475
  #: source/class.wdttools.php:24
476
- #: templates/admin/table-settings/column_settings_panel.inc.php:969
477
  msgid "Datetime"
478
  msgstr "Дата + Время"
479
 
480
  #: source/class.wdttools.php:25
481
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
482
- #: templates/admin/table-settings/column_settings_panel.inc.php:970
483
  msgid "Time"
484
  msgstr "Время"
485
 
@@ -497,7 +497,7 @@ msgid "Image"
497
  msgstr "Картинка"
498
 
499
  #: source/class.wdttools.php:29
500
- #: templates/admin/table-settings/column_settings_panel.inc.php:973
501
  msgid "Attachment"
502
  msgstr "Вложение"
503
 
@@ -524,14 +524,14 @@ msgstr "Поиск"
524
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
525
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
526
  #: templates/admin/common/HTMLModal.inc.php:43
527
- #: templates/admin/common/linkModal.inc.php:106
528
  #: templates/admin/common/shortcodeModal.inc.php:48
529
  #: templates/admin/common/starModal.inc.php:73
530
  #: templates/admin/constructor/constructor.inc.php:29
531
  #: templates/admin/settings/settings.inc.php:28
532
  #: templates/admin/table-settings/add_column_modal.inc.php:126
533
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
534
- #: templates/admin/table-settings/column_settings_panel.inc.php:1079
535
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
536
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
537
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
@@ -582,8 +582,8 @@ msgstr "Столбец был удален!"
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:2222
586
- #: source/class.wpdatatable.php:2294
587
  #: templates/admin/table-settings/table_settings_block.inc.php:1033
588
  msgid "Copy"
589
  msgstr "Копировать"
@@ -1290,7 +1290,7 @@ msgstr "Только один столбец может иметь тип String
1290
  msgid "You are mixing data types (several date axes and several number)"
1291
  msgstr "Вы смешиваете типы данных (несколько осей даты и несколько чисел)"
1292
 
1293
- #: source/class.wpdatatable.php:1883
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,7 +1298,7 @@ msgstr ""
1298
  "Вы пытаетесь загрузить таблицу неизвестного типа. Возможно, вы не "
1299
  "активировали аддон, который требуется для использования этого типа таблицы."
1300
 
1301
- #: source/class.wpdatatable.php:2122 source/class.wpdatatable.php:2125
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
@@ -1306,30 +1306,30 @@ msgstr ""
1306
  msgid "All"
1307
  msgstr "Все"
1308
 
1309
- #: source/class.wpdatatable.php:2183 source/class.wpdatatable.php:2252
1310
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1311
  msgid "Columns"
1312
  msgstr "Колонки"
1313
 
1314
- #: source/class.wpdatatable.php:2193 source/class.wpdatatable.php:2262
1315
  #: templates/admin/table-settings/table_settings_block.inc.php:1030
1316
  msgid "Print"
1317
  msgstr "Печать"
1318
 
1319
- #: source/class.wpdatatable.php:2232 source/class.wpdatatable.php:2305
1320
  #: templates/admin/table-settings/table_settings_block.inc.php:1034
1321
  msgid "PDF"
1322
  msgstr "PDF"
1323
 
1324
- #: source/class.wpdatatable.php:2240
1325
  msgid "Export"
1326
  msgstr "Экспорт"
1327
 
1328
- #: source/class.wpdatatable.php:2318
1329
  msgid "Search table"
1330
  msgstr "Найти таблицу"
1331
 
1332
- #: source/class.wpdatatable.php:2319
1333
  msgid "Showing _MENU_ Entries"
1334
  msgstr "Показ_Меню_Вхождений"
1335
 
@@ -1348,7 +1348,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:496
1352
  msgid "wpDataTables Addons"
1353
  msgstr ""
1354
 
@@ -1367,12 +1367,12 @@ msgstr ""
1367
  "разработчиками, так что не забывайте периодически проверять эту страницу!"
1368
 
1369
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1370
- #: templates/admin/dashboard/dashboard.inc.php:567
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:571
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 +1400,7 @@ msgid "NEW"
1400
  msgstr ""
1401
 
1402
  #: templates/admin/addons/addons.inc.php:40
1403
- #: templates/admin/dashboard/dashboard.inc.php:514
1404
  msgid "Master Detail Tables for wpDataTables"
1405
  msgstr "Основные таблицы сведений для wpDataTables"
1406
 
@@ -1426,7 +1426,7 @@ msgid "Learn more"
1426
  msgstr ""
1427
 
1428
  #: templates/admin/addons/addons.inc.php:67
1429
- #: templates/admin/dashboard/dashboard.inc.php:541
1430
  msgid "Powerful Filters for wpDataTables"
1431
  msgstr "Мощные фильтры для wpDataTables"
1432
 
@@ -1442,12 +1442,12 @@ msgstr ""
1442
  "поиска."
1443
 
1444
  #: templates/admin/addons/addons.inc.php:120
1445
- #: templates/admin/dashboard/dashboard.inc.php:594
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:598
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 +1457,12 @@ msgstr ""
1457
  "Forms."
1458
 
1459
  #: templates/admin/addons/addons.inc.php:143
1460
- #: templates/admin/dashboard/dashboard.inc.php:620
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:624
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."
@@ -2358,15 +2358,20 @@ msgid "Open link in the new tab"
2358
  msgstr "Открывать ссылку на новой вкладке"
2359
 
2360
  #: templates/admin/common/linkModal.inc.php:76
 
 
 
 
 
2361
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2362
  msgid "Set the link to appear as a button"
2363
  msgstr "Определить ссылку для отображения в виде кнопки"
2364
 
2365
- #: templates/admin/common/linkModal.inc.php:85
2366
  msgid "Button class:"
2367
  msgstr ""
2368
 
2369
- #: templates/admin/common/linkModal.inc.php:110
2370
  msgid "Insert link"
2371
  msgstr ""
2372
 
@@ -2483,8 +2488,8 @@ msgstr "Открыть Excel-редактор"
2483
  #: templates/admin/settings/settings.inc.php:96
2484
  #: templates/admin/support/support.inc.php:31
2485
  #: templates/admin/support/support.inc.php:47
2486
- #: templates/admin/system-info/system_info.inc.php:30
2487
- #: templates/admin/table-settings/column_settings_panel.inc.php:1074
2488
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2489
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2490
  #: templates/admin/table-settings/table_settings_block.inc.php:1197
@@ -2509,6 +2514,7 @@ msgid ""
2509
  msgstr ""
2510
 
2511
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
 
2512
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2513
  msgid "Create a data table linked to an existing data source"
2514
  msgstr ""
@@ -2717,162 +2723,180 @@ msgid "Version "
2717
  msgstr ""
2718
 
2719
  #: templates/admin/dashboard/dashboard.inc.php:340
2720
- msgid "A minor update with a couple of bug fixes and stability improvements:"
 
 
2721
  msgstr ""
2722
 
2723
  #: templates/admin/dashboard/dashboard.inc.php:345
2724
  msgid ""
2725
- "<strong>BugFix:</strong> Fixed issue with Fatal errors on Dashboard page if "
2726
- "PHP extensions are not installed."
2727
  msgstr ""
2728
 
2729
  #: templates/admin/dashboard/dashboard.inc.php:346
2730
- msgid "Compatibility with WordPress 5.6 approved."
 
 
2731
  msgstr ""
2732
 
2733
  #: templates/admin/dashboard/dashboard.inc.php:347
2734
- msgid "Compatibility with PHP 8 approved."
 
 
2735
  msgstr ""
2736
 
2737
  #: templates/admin/dashboard/dashboard.inc.php:348
 
 
 
 
 
 
 
 
 
 
 
 
2738
  msgid "Other small bug fixes and stability improvements."
2739
  msgstr ""
2740
 
2741
- #: templates/admin/dashboard/dashboard.inc.php:360
2742
  msgid "Go Premium!"
2743
  msgstr ""
2744
 
2745
- #: templates/admin/dashboard/dashboard.inc.php:366
2746
  msgid "View Comparison"
2747
  msgstr ""
2748
 
2749
- #: templates/admin/dashboard/dashboard.inc.php:374
2750
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2751
  msgid ""
2752
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2753
  "of the powerful features."
2754
  msgstr ""
2755
 
2756
- #: templates/admin/dashboard/dashboard.inc.php:378
2757
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2758
  msgid "Create a table manually"
2759
  msgstr "Создать таблицу wpDataTable в ручном режиме"
2760
 
2761
- #: templates/admin/dashboard/dashboard.inc.php:381
2762
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2763
  msgid "Creating tables from Google Spreadsheet"
2764
  msgstr ""
2765
 
2766
- #: templates/admin/dashboard/dashboard.inc.php:384
2767
  msgid ""
2768
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2769
  "tables via Google Sheet API"
2770
  msgstr ""
2771
 
2772
- #: templates/admin/dashboard/dashboard.inc.php:387
2773
  msgid ""
2774
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2775
  "tables from Private Google Spreadsheet"
2776
  msgstr ""
2777
 
2778
- #: templates/admin/dashboard/dashboard.inc.php:390
2779
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2780
  msgid "Creating MySQL-based tables from database"
2781
  msgstr ""
2782
 
2783
- #: templates/admin/dashboard/dashboard.inc.php:393
2784
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2785
  msgid "Creating MySQL-based tables from Wordpress post types"
2786
  msgstr ""
2787
 
2788
- #: templates/admin/dashboard/dashboard.inc.php:396
2789
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2790
  #: templates/edit_table.inc.php:329
2791
  msgid "Advanced filtering"
2792
  msgstr ""
2793
 
2794
- #: templates/admin/dashboard/dashboard.inc.php:399
2795
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2796
  #: templates/admin/table-settings/table_settings_block.inc.php:144
2797
  #: templates/edit_table.inc.php:282
2798
  msgid "Server-side processing"
2799
  msgstr "Обработка данных на стороне сервера"
2800
 
2801
- #: templates/admin/dashboard/dashboard.inc.php:402
2802
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2803
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2804
  msgstr ""
2805
 
2806
- #: templates/admin/dashboard/dashboard.inc.php:405
2807
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2808
  msgid "Front-end table editing"
2809
  msgstr ""
2810
 
2811
- #: templates/admin/dashboard/dashboard.inc.php:408
2812
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2813
  msgid "Excel-like editing"
2814
  msgstr ""
2815
 
2816
- #: templates/admin/dashboard/dashboard.inc.php:411
2817
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2818
  msgid "Creating charts with Highcharts"
2819
  msgstr ""
2820
 
2821
- #: templates/admin/dashboard/dashboard.inc.php:414
2822
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2823
  msgid "Creating charts with Chart.js"
2824
  msgstr ""
2825
 
2826
- #: templates/admin/dashboard/dashboard.inc.php:417
2827
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2828
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2829
  #: templates/edit_table.inc.php:301
2830
  msgid "Responsive"
2831
  msgstr ""
2832
 
2833
- #: templates/admin/dashboard/dashboard.inc.php:420
2834
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2835
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2836
  #: templates/edit_table.inc.php:750
2837
  msgid "Conditional formatting"
2838
  msgstr "Условное форматирование"
2839
 
2840
- #: templates/admin/dashboard/dashboard.inc.php:423
2841
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2842
  msgid "Calculating Tools"
2843
  msgstr ""
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:426
2846
  msgid "Formula columns"
2847
  msgstr ""
2848
 
2849
- #: templates/admin/dashboard/dashboard.inc.php:429
2850
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2851
  #: templates/admin/table-settings/table_settings_block.inc.php:79
2852
  msgid "Placeholders"
2853
  msgstr "Переменная"
2854
 
2855
- #: templates/admin/dashboard/dashboard.inc.php:432
2856
  msgid "Premium support"
2857
  msgstr ""
2858
 
2859
- #: templates/admin/dashboard/dashboard.inc.php:436
2860
  msgid "Get Premium Today"
2861
  msgstr ""
2862
 
2863
- #: templates/admin/dashboard/dashboard.inc.php:443
2864
  msgid "News Blog"
2865
  msgstr ""
2866
 
2867
- #: templates/admin/dashboard/dashboard.inc.php:448
2868
  msgid "Checkout useful articles from wpdatatables.com"
2869
  msgstr ""
2870
 
2871
- #: templates/admin/dashboard/dashboard.inc.php:471
2872
  msgid "Please install and enable PHP extensions xml and dom on your server."
2873
  msgstr ""
2874
 
2875
- #: templates/admin/dashboard/dashboard.inc.php:479
2876
  msgid ""
2877
  "Never miss notifications about new cool features, promotions,\n"
2878
  " giveaways or freebies – subscribe to our "
@@ -2880,92 +2904,92 @@ msgid ""
2880
  " about 1 message per month and never spam!"
2881
  msgstr ""
2882
 
2883
- #: templates/admin/dashboard/dashboard.inc.php:497
2884
  msgid "Premium "
2885
  msgstr ""
2886
 
2887
- #: templates/admin/dashboard/dashboard.inc.php:500
2888
  msgid ""
2889
  "While wpDataTables itself provides quite a large amount of features and "
2890
  "unlimited customisation, flexibility, you can achieve even more with our "
2891
  "premium addons.(requires wpDataTables Premium version)"
2892
  msgstr ""
2893
 
2894
- #: templates/admin/dashboard/dashboard.inc.php:518
2895
  msgid ""
2896
  "A wpDataTables addon which allows showing additional details for a specific "
2897
  "row in a popup or a separate page or post."
2898
  msgstr ""
2899
 
2900
- #: templates/admin/dashboard/dashboard.inc.php:524
2901
- #: templates/admin/dashboard/dashboard.inc.php:551
2902
- #: templates/admin/dashboard/dashboard.inc.php:577
2903
- #: templates/admin/dashboard/dashboard.inc.php:604
2904
- #: templates/admin/dashboard/dashboard.inc.php:630
2905
- #: templates/admin/dashboard/dashboard.inc.php:663
2906
  msgid "Learn More"
2907
  msgstr ""
2908
 
2909
- #: templates/admin/dashboard/dashboard.inc.php:545
2910
  msgid ""
2911
  "An add-on for wpDataTables that provides powerful filtering features: "
2912
  "cascade filtering, applying filters on button click, hide table before "
2913
  "filtering."
2914
  msgstr ""
2915
 
2916
- #: templates/admin/dashboard/dashboard.inc.php:641
2917
  msgid "Need free booking plugin?"
2918
  msgstr ""
2919
 
2920
- #: templates/admin/dashboard/dashboard.inc.php:650
2921
  msgid "Appointments and Events WordPress Booking Plugin"
2922
  msgstr ""
2923
 
2924
- #: templates/admin/dashboard/dashboard.inc.php:653
2925
  msgid ""
2926
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2927
  "set up a fully-featured automated booking system on your WordPress website "
2928
  "and is a handy tool for small businesses and individuals that depend on "
2929
- "stable appointment booking processes. 10,000+ businesses from healthcare, "
2930
  "beauty, sports, automotive, educational, creative, HR and other industries "
2931
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
2932
  "each month."
2933
  msgstr ""
2934
 
2935
- #: templates/admin/dashboard/dashboard.inc.php:656
2936
- msgid "Rating: 4.3 - ‎68 reviews"
2937
  msgstr ""
2938
 
2939
- #: templates/admin/dashboard/dashboard.inc.php:659
2940
  msgid "Free Download"
2941
  msgstr ""
2942
 
2943
- #: templates/admin/dashboard/dashboard.inc.php:674
2944
  #: templates/admin/getting-started/getting_started.inc.php:184
2945
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2946
  #: templates/admin/support/support.inc.php:78
2947
- #: templates/admin/system-info/system_info.inc.php:510
2948
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2949
  msgid "Made by"
2950
  msgstr ""
2951
 
2952
- #: templates/admin/dashboard/dashboard.inc.php:682
2953
  #: templates/admin/getting-started/getting_started.inc.php:192
2954
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2955
  #: templates/admin/support/support.inc.php:45
2956
  #: templates/admin/support/support.inc.php:86
2957
- #: templates/admin/system-info/system_info.inc.php:518
2958
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2959
  #: templates/admin/welcome_page/welcome_page.inc.php:369
2960
  msgid "Documentation"
2961
  msgstr "Документация по wpDataTables"
2962
 
2963
- #: templates/admin/dashboard/dashboard.inc.php:686
2964
  #: templates/admin/getting-started/getting_started.inc.php:196
2965
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2966
  #: templates/admin/support/support.inc.php:24
2967
  #: templates/admin/support/support.inc.php:90
2968
- #: templates/admin/system-info/system_info.inc.php:522
2969
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2970
  msgid "Support Center"
2971
  msgstr ""
@@ -3217,7 +3241,7 @@ msgstr ""
3217
  #: templates/admin/settings/settings.inc.php:33
3218
  #: templates/admin/settings/settings.inc.php:91
3219
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3220
- #: templates/admin/table-settings/column_settings_panel.inc.php:1082
3221
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3222
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3223
  #: templates/admin/table-settings/table_preview_block.inc.php:89
@@ -3775,13 +3799,13 @@ msgid ""
3775
  msgstr ""
3776
 
3777
  #: templates/admin/settings/tabs/main_plugin_settings.php:216
3778
- #: templates/admin/table-settings/column_settings_panel.inc.php:767
3779
  #: templates/edit_table.inc.php:663
3780
  msgid "Ascending"
3781
  msgstr "По возрастанию"
3782
 
3783
  #: templates/admin/settings/tabs/main_plugin_settings.php:217
3784
- #: templates/admin/table-settings/column_settings_panel.inc.php:768
3785
  #: templates/edit_table.inc.php:665
3786
  msgid "Descending"
3787
  msgstr "По убыванию"
@@ -4068,35 +4092,35 @@ msgstr ""
4068
  msgid "Open a topic"
4069
  msgstr ""
4070
 
4071
- #: templates/admin/system-info/system_info.inc.php:23
4072
  msgid "System Info"
4073
  msgstr ""
4074
 
4075
- #: templates/admin/system-info/system_info.inc.php:62
4076
  msgid "The URL of your site's homepage."
4077
  msgstr ""
4078
 
4079
- #: templates/admin/system-info/system_info.inc.php:69
4080
  msgid "The root URL of your site."
4081
  msgstr ""
4082
 
4083
- #: templates/admin/system-info/system_info.inc.php:76
4084
  msgid "System path of your wp-content directory."
4085
  msgstr ""
4086
 
4087
- #: templates/admin/system-info/system_info.inc.php:83
4088
  msgid "System path of your WP root directory."
4089
  msgstr ""
4090
 
4091
- #: templates/admin/system-info/system_info.inc.php:90
4092
  msgid "The version of WordPress installed on your site."
4093
  msgstr ""
4094
 
4095
- #: templates/admin/system-info/system_info.inc.php:97
4096
  msgid "Whether or not you have WordPress Multisite enabled."
4097
  msgstr ""
4098
 
4099
- #: templates/admin/system-info/system_info.inc.php:121
4100
  #, php-format
4101
  msgid ""
4102
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
@@ -4105,35 +4129,35 @@ msgid ""
4105
  "noreferrer\">Increasing memory allocated to PHP.</a>"
4106
  msgstr ""
4107
 
4108
- #: templates/admin/system-info/system_info.inc.php:131
4109
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4110
  msgstr ""
4111
 
4112
- #: templates/admin/system-info/system_info.inc.php:144
4113
  msgid "Displays whether or not WordPress is in Debug Mode."
4114
  msgstr ""
4115
 
4116
- #: templates/admin/system-info/system_info.inc.php:151
4117
  msgid "The current language used by WordPress. Default = English"
4118
  msgstr ""
4119
 
4120
- #: templates/admin/system-info/system_info.inc.php:171
4121
  msgid "Information about your operating system."
4122
  msgstr ""
4123
 
4124
- #: templates/admin/system-info/system_info.inc.php:179
4125
  msgid "Information about the web server that is currently hosting your site."
4126
  msgstr ""
4127
 
4128
- #: templates/admin/system-info/system_info.inc.php:221
4129
  msgid "The version of PHP installed on your hosting server."
4130
  msgstr ""
4131
 
4132
- #: templates/admin/system-info/system_info.inc.php:232
4133
  msgid "The largest file size that can be contained in one post."
4134
  msgstr ""
4135
 
4136
- #: templates/admin/system-info/system_info.inc.php:241
4137
  #, php-format
4138
  msgid ""
4139
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
@@ -4141,69 +4165,69 @@ msgid ""
4141
  "\">Increasing max execution to PHP</a>"
4142
  msgstr ""
4143
 
4144
- #: templates/admin/system-info/system_info.inc.php:249
4145
  msgid ""
4146
  "The amount of time (in seconds) that your site will spend on a single "
4147
  "operation before timing out (to avoid server lockups)"
4148
  msgstr ""
4149
 
4150
- #: templates/admin/system-info/system_info.inc.php:264
4151
  msgid "The version of MySQL installed on your hosting server."
4152
  msgstr ""
4153
 
4154
- #: templates/admin/system-info/system_info.inc.php:272
4155
  msgid ""
4156
  "The largest file size that can be uploaded to your WordPress installation."
4157
  msgstr ""
4158
 
4159
- #: templates/admin/system-info/system_info.inc.php:294
4160
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4161
  msgstr ""
4162
 
4163
- #: templates/admin/system-info/system_info.inc.php:312
4164
  msgid ""
4165
  "XML support is something that needs to be installed on the server for proper "
4166
  "wpDataTables functionality."
4167
  msgstr ""
4168
 
4169
- #: templates/admin/system-info/system_info.inc.php:330
4170
  msgid ""
4171
  "DOM support is something that needs to be installed on the server for proper "
4172
  "wpDataTables functionality."
4173
  msgstr ""
4174
 
4175
- #: templates/admin/system-info/system_info.inc.php:356
4176
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4177
  msgstr ""
4178
 
4179
- #: templates/admin/system-info/system_info.inc.php:375
4180
  msgid ""
4181
  "ZIP support is something that needs to be installed on the server, as a "
4182
  "package for the Linux operating system, or rather to the PHP software on the "
4183
  "server."
4184
  msgstr ""
4185
 
4186
- #: templates/admin/system-info/system_info.inc.php:395
4187
  msgid "wpDataTables use cURL for getting data from other servers."
4188
  msgstr ""
4189
 
4190
- #: templates/admin/system-info/system_info.inc.php:418
4191
  msgid "The name of the current active theme."
4192
  msgstr ""
4193
 
4194
- #: templates/admin/system-info/system_info.inc.php:429
4195
  msgid "The installed version of the current active theme."
4196
  msgstr ""
4197
 
4198
- #: templates/admin/system-info/system_info.inc.php:436
4199
  msgid "The theme developers."
4200
  msgstr ""
4201
 
4202
- #: templates/admin/system-info/system_info.inc.php:442
4203
  msgid "The theme developers URL."
4204
  msgstr ""
4205
 
4206
- #: templates/admin/system-info/system_info.inc.php:479
4207
  msgid "Visit plugin homepage"
4208
  msgstr ""
4209
 
@@ -4264,8 +4288,8 @@ msgid "Data"
4264
  msgstr "Дата"
4265
 
4266
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4267
- msgid "Filtering"
4268
- msgstr "Фильтрация"
4269
 
4270
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4271
  #: templates/admin/table-settings/table_settings_block.inc.php:71
@@ -4412,12 +4436,12 @@ msgid "DateTime"
4412
  msgstr "Дата + Время"
4413
 
4414
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4415
- #: templates/admin/table-settings/column_settings_panel.inc.php:971
4416
  msgid "URL link"
4417
  msgstr "URL ссылка"
4418
 
4419
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4420
- #: templates/admin/table-settings/column_settings_panel.inc.php:972
4421
  msgid "E-mail link"
4422
  msgstr "E-mail ссылка"
4423
 
@@ -4717,44 +4741,52 @@ msgstr "Текст кнопки"
4717
  msgid "Button class"
4718
  msgstr "Класс кнопки"
4719
 
4720
- #: templates/admin/table-settings/column_settings_panel.inc.php:724
 
 
 
 
 
 
 
 
4721
  msgid "Allow sorting"
4722
  msgstr "Разрешить сортировку"
4723
 
4724
- #: templates/admin/table-settings/column_settings_panel.inc.php:726
4725
  msgid "Disable this to disallow sorting for this column."
4726
  msgstr "Запретить сортировку для этого столбца."
4727
 
4728
- #: templates/admin/table-settings/column_settings_panel.inc.php:732
4729
  msgid "Allow sorting for this column"
4730
  msgstr "Разрешить сортировку для столбца"
4731
 
4732
- #: templates/admin/table-settings/column_settings_panel.inc.php:739
4733
  msgid "Use as default sorting column"
4734
  msgstr "Использовать как столбец для сортировки по умолчанию"
4735
 
4736
- #: templates/admin/table-settings/column_settings_panel.inc.php:741
4737
- #: templates/admin/table-settings/column_settings_panel.inc.php:747
4738
  msgid "Sort table by this column on load"
4739
  msgstr "Сортировать таблицу по этому столбцу при загрузке"
4740
 
4741
- #: templates/admin/table-settings/column_settings_panel.inc.php:758
4742
  msgid "Default sorting direction"
4743
  msgstr "Направление сортировки по умолчанию"
4744
 
4745
- #: templates/admin/table-settings/column_settings_panel.inc.php:760
4746
  msgid "Choose whether to sort ascending or descending by default."
4747
  msgstr "Выберите, сортировать по возрастанию или по убыванию по умолчанию."
4748
 
4749
- #: templates/admin/table-settings/column_settings_panel.inc.php:793
4750
  msgid "Add a filter for this column"
4751
  msgstr "Добавить фильтр в этот столбец"
4752
 
4753
- #: templates/admin/table-settings/column_settings_panel.inc.php:801
4754
  msgid "Enable filtering for column"
4755
  msgstr "Разрешить фильтрацию для столбца"
4756
 
4757
- #: templates/admin/table-settings/column_settings_panel.inc.php:808
4758
  msgid ""
4759
  "Enabling this switch will add a filter for this column. Disable to remove "
4760
  "the filter for this column."
@@ -4762,63 +4794,78 @@ msgstr ""
4762
  "Включение этого параметра добавит фильтр для этого столбца. Отключите чтобы "
4763
  "удалить фильтр из этого столбца."
4764
 
4765
- #: templates/admin/table-settings/column_settings_panel.inc.php:817
4766
  msgid "Allow filtering"
4767
  msgstr "Разрешить фильтрацию"
4768
 
4769
- #: templates/admin/table-settings/column_settings_panel.inc.php:824
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4770
  #: templates/edit_table.inc.php:570
4771
  msgid "Filter type"
4772
  msgstr "Тип фильтра"
4773
 
4774
- #: templates/admin/table-settings/column_settings_panel.inc.php:826
4775
  msgid ""
4776
  "You can redefine the filter type here, it will affect the filtering logic."
4777
  msgstr ""
4778
  "Вы можете переопределить тип фильтра здесь, это повлияет на логику "
4779
  "фильтрации."
4780
 
4781
- #: templates/admin/table-settings/column_settings_panel.inc.php:833
4782
  msgid "Text"
4783
  msgstr "Текст"
4784
 
4785
- #: templates/admin/table-settings/column_settings_panel.inc.php:834
4786
  msgid "Number"
4787
  msgstr "Число"
4788
 
4789
- #: templates/admin/table-settings/column_settings_panel.inc.php:835
4790
  msgid "Number range"
4791
  msgstr "Числовой диапазон"
4792
 
4793
- #: templates/admin/table-settings/column_settings_panel.inc.php:836
4794
  msgid "Date range"
4795
  msgstr "Диапазон дат"
4796
 
4797
- #: templates/admin/table-settings/column_settings_panel.inc.php:837
4798
  msgid "DateTime range"
4799
  msgstr "Диапазон даты-времени"
4800
 
4801
- #: templates/admin/table-settings/column_settings_panel.inc.php:838
4802
  msgid "Time range"
4803
  msgstr "Диапазон времени"
4804
 
4805
- #: templates/admin/table-settings/column_settings_panel.inc.php:839
4806
  msgid "Selectbox"
4807
  msgstr "Выбрать"
4808
 
4809
- #: templates/admin/table-settings/column_settings_panel.inc.php:840
4810
  msgid "Checkbox"
4811
  msgstr "Checkbox"
4812
 
4813
- #: templates/admin/table-settings/column_settings_panel.inc.php:856
4814
  msgid "Filter label"
4815
  msgstr "Метка для фильтра"
4816
 
4817
- #: templates/admin/table-settings/column_settings_panel.inc.php:864
4818
  msgid "Custom filter label"
4819
  msgstr "Пользовательское название фильтра"
4820
 
4821
- #: templates/admin/table-settings/column_settings_panel.inc.php:871
4822
  msgid ""
4823
  "You can change the filter label (placeholder) for this column here, if you "
4824
  "would like to show some custom text instead of default."
@@ -4827,11 +4874,11 @@ msgstr ""
4827
  "вы хотите показать какой-либо пользовательский текст вместо значения по "
4828
  "умолчанию."
4829
 
4830
- #: templates/admin/table-settings/column_settings_panel.inc.php:886
4831
  msgid "Exact filtering"
4832
  msgstr "Точный фильтр"
4833
 
4834
- #: templates/admin/table-settings/column_settings_panel.inc.php:888
4835
  msgid ""
4836
  "Enable exact search to use exact match logic for filtering, disable to allow "
4837
  "partial match."
@@ -4839,16 +4886,16 @@ msgstr ""
4839
  "Включить точный поиск, чтобы использовать логику точного соответствия для "
4840
  "фильтрации, отключить, чтобы разрешить частичное совпадение."
4841
 
4842
- #: templates/admin/table-settings/column_settings_panel.inc.php:894
4843
  msgid "Enable exact filtering"
4844
  msgstr "Включить точную фильтрацию"
4845
 
4846
- #: templates/admin/table-settings/column_settings_panel.inc.php:906
4847
- #: templates/admin/table-settings/column_settings_panel.inc.php:1003
4848
  msgid "Predefined value(s)"
4849
  msgstr "Предопределенные значения"
4850
 
4851
- #: templates/admin/table-settings/column_settings_panel.inc.php:908
4852
  msgid ""
4853
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4854
  "page load."
@@ -4856,43 +4903,43 @@ msgstr ""
4856
  "Определите значение (я), которое будет установлено в качестве "
4857
  "предопределенных значений фильтра при загрузке страницы."
4858
 
4859
- #: templates/admin/table-settings/column_settings_panel.inc.php:954
4860
  msgid "Editor input type"
4861
  msgstr "Тип поля ввода"
4862
 
4863
- #: templates/admin/table-settings/column_settings_panel.inc.php:956
4864
  msgid "Choose which kind of editor input to use for this column."
4865
  msgstr "Выберите, какой тип ввода редактора использовать для этого столбца."
4866
 
4867
- #: templates/admin/table-settings/column_settings_panel.inc.php:962
4868
  msgid "None"
4869
  msgstr "Ничего"
4870
 
4871
- #: templates/admin/table-settings/column_settings_panel.inc.php:963
4872
  msgid "One-line edit"
4873
  msgstr "Редактирование в таблице"
4874
 
4875
- #: templates/admin/table-settings/column_settings_panel.inc.php:964
4876
  msgid "Multi-line edit"
4877
  msgstr "Многолинейная строка"
4878
 
4879
- #: templates/admin/table-settings/column_settings_panel.inc.php:965
4880
  msgid "HTML editor"
4881
  msgstr "HTML редактор"
4882
 
4883
- #: templates/admin/table-settings/column_settings_panel.inc.php:966
4884
  msgid "Single-value selectbox"
4885
  msgstr "Список с 1 вариантом выбора"
4886
 
4887
- #: templates/admin/table-settings/column_settings_panel.inc.php:967
4888
  msgid "Multi-value selectbox"
4889
  msgstr "Список с несколькими вариантами"
4890
 
4891
- #: templates/admin/table-settings/column_settings_panel.inc.php:983
4892
  msgid "Column cannot be empty"
4893
  msgstr "Столбец не может быть пустым"
4894
 
4895
- #: templates/admin/table-settings/column_settings_panel.inc.php:985
4896
  msgid ""
4897
  "Enable to make this column mandatory. Users will see a warning when trying "
4898
  "to save with empty input."
@@ -4900,11 +4947,11 @@ msgstr ""
4900
  "Включите, чтобы сделать этот столбец обязательным. Пользователи увидят "
4901
  "предупреждение при попытке сохранить с пустым значением."
4902
 
4903
- #: templates/admin/table-settings/column_settings_panel.inc.php:991
4904
  msgid "Cannot be empty"
4905
  msgstr "Не может быть пустым"
4906
 
4907
- #: templates/admin/table-settings/column_settings_panel.inc.php:1005
4908
  msgid ""
4909
  "If you would like to have some values pre-defined in editors (i.e. default "
4910
  "editor values) please enter these here."
@@ -4912,19 +4959,23 @@ msgstr ""
4912
  "Если вы хотите, чтобы некоторые значения были предварительно определены в "
4913
  "редакторах (то есть значения редактора по умолчанию), введите их здесь."
4914
 
4915
- #: templates/admin/table-settings/column_settings_panel.inc.php:1051
4916
  msgid "Add New Rule"
4917
  msgstr ""
4918
 
4919
  #: templates/admin/table-settings/column_small_block.inc.php:16
4920
- msgid "Show/hide sorting"
4921
  msgstr ""
4922
 
4923
  #: templates/admin/table-settings/column_small_block.inc.php:18
 
 
 
 
4924
  msgid "Show/hide the column"
4925
  msgstr ""
4926
 
4927
- #: templates/admin/table-settings/column_small_block.inc.php:24
4928
  msgid "Open column settings"
4929
  msgstr ""
4930
 
@@ -5129,19 +5180,42 @@ msgstr ""
5129
  msgid "Are you sure? There is no undo!"
5130
  msgstr "Вы уверены? Данную операцию нельзя отменить!"
5131
 
 
 
 
 
 
 
 
 
5132
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5133
  msgid "Table preview"
5134
  msgstr ""
5135
 
5136
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:22
5137
  msgid "Desktop"
5138
  msgstr ""
5139
 
5140
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:25
5141
  msgid "Tablet"
5142
  msgstr ""
5143
 
5144
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5145
  msgid "Mobile"
5146
  msgstr ""
5147
 
@@ -5813,10 +5887,6 @@ msgstr "Разрешить сортировку таблицы"
5813
  msgid "Main search block"
5814
  msgstr "Главное поле поиска"
5815
 
5816
- #: templates/admin/table-settings/table_settings_block.inc.php:665
5817
- msgid "Global search"
5818
- msgstr "Глобальный поиск"
5819
-
5820
  #: templates/admin/table-settings/table_settings_block.inc.php:672
5821
  msgid ""
5822
  "If this is enabled, a search block will be displayed on the top right of the "
@@ -7187,6 +7257,9 @@ msgstr ""
7187
  msgid "Insert name for export file"
7188
  msgstr ""
7189
 
 
 
 
7190
  #~ msgid "There was an error while trying to import table"
7191
  #~ msgstr "При попытке импорта таблицы произошла ошибка"
7192
 
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"
169
  msgid "You do not have sufficient permissions to access this page."
170
  msgstr ""
171
 
172
+ #: controllers/wdt_functions.php:486
173
  #, fuzzy
174
  msgid "wpDataChart with provided ID not found!"
175
  msgstr "Таблица wpDataTable с заданным ID не найдена!"
176
 
177
+ #: controllers/wdt_functions.php:522 controllers/wdt_functions.php:603
178
  msgid "wpDataTable with provided ID not found!"
179
  msgstr "Таблица wpDataTable с заданным ID не найдена!"
180
 
181
+ #: controllers/wdt_functions.php:613
182
  msgid "Provided column is not Integer or Float column type"
183
  msgstr ""
184
  "Предоставленный столбец не является типом столбца типа Integer или Float"
185
 
186
+ #: controllers/wdt_functions.php:830
187
  msgid "Choose a table"
188
  msgstr "Выберите таблицу"
189
 
190
+ #: controllers/wdt_functions.php:862
191
  msgid "Interactive Responsive Table"
192
  msgstr ""
193
 
194
+ #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
195
  msgid "Content"
196
  msgstr ""
197
 
198
+ #: controllers/wdt_functions.php:869
199
  msgid "wpDataTable"
200
  msgstr "wpDataTable таблица"
201
 
202
+ #: controllers/wdt_functions.php:873
203
  msgid "Choose the wpDataTable from a dropdown"
204
  msgstr "Выберите таблицу wpDataTable из выпадающего списка"
205
 
206
+ #: controllers/wdt_functions.php:878
207
  msgid "Table view"
208
  msgstr "Отображение таблицы"
209
 
210
+ #: controllers/wdt_functions.php:882
211
  msgid "Regular wpDataTable"
212
  msgstr "Стандартная wpDataTable таблица"
213
 
214
+ #: controllers/wdt_functions.php:884
215
  msgid "Excel-like table"
216
  msgstr "Таблица типа Excel"
217
 
218
+ #: controllers/wdt_functions.php:890
219
  msgid "Variable placeholder #1"
220
  msgstr "Переменная №1"
221
 
222
+ #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
223
+ #: controllers/wdt_functions.php:909
224
  msgid "Variables"
225
  msgstr "Переменные"
226
 
227
+ #: controllers/wdt_functions.php:894
228
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
229
  msgstr "Если вы использовали переменную VAR1, вы можете здесь задать значение"
230
 
231
+ #: controllers/wdt_functions.php:898
232
  msgid "Variable placeholder #2"
233
  msgstr "Переменная №2"
234
 
235
+ #: controllers/wdt_functions.php:902
236
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
237
  msgstr "Если вы использовали переменную VAR2, вы можете здесь задать значение"
238
 
239
+ #: controllers/wdt_functions.php:906
240
  msgid "Variable placeholder #3"
241
  msgstr "Переменная №3"
242
 
243
+ #: controllers/wdt_functions.php:910
244
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
245
  msgstr "Если вы использовали переменную VAR3, вы можете здесь задать значение"
246
 
247
+ #: controllers/wdt_functions.php:923
248
  msgid "Google or Highcharts chart based on a wpDataTable"
249
  msgstr ""
250
 
251
+ #: controllers/wdt_functions.php:930
252
  msgid "wpDataChart"
253
  msgstr "Диаграмма wpDataChart"
254
 
255
+ #: controllers/wdt_functions.php:934
256
  msgid "Choose one of wpDataCharts from the list"
257
  msgstr "Выберите одну из диаграмм wpDataCharts из списка"
258
 
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"
436
  msgid "There was an error trying to fetch the table data: "
437
  msgstr "Произошла ошибка при попытке получить данные таблицы:"
438
 
439
+ #: source/class.wdtconfigcontroller.php:479
440
  msgid "Table in data source has no rows."
441
  msgstr "Таблица в источнике не содержит строк"
442
 
468
 
469
  #: source/class.wdttools.php:23
470
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
471
+ #: templates/admin/table-settings/column_settings_panel.inc.php:984
472
  msgid "Date"
473
  msgstr "Дата"
474
 
475
  #: source/class.wdttools.php:24
476
+ #: templates/admin/table-settings/column_settings_panel.inc.php:985
477
  msgid "Datetime"
478
  msgstr "Дата + Время"
479
 
480
  #: source/class.wdttools.php:25
481
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
482
+ #: templates/admin/table-settings/column_settings_panel.inc.php:986
483
  msgid "Time"
484
  msgstr "Время"
485
 
497
  msgstr "Картинка"
498
 
499
  #: source/class.wdttools.php:29
500
+ #: templates/admin/table-settings/column_settings_panel.inc.php:989
501
  msgid "Attachment"
502
  msgstr "Вложение"
503
 
524
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
525
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
526
  #: templates/admin/common/HTMLModal.inc.php:43
527
+ #: templates/admin/common/linkModal.inc.php:117
528
  #: templates/admin/common/shortcodeModal.inc.php:48
529
  #: templates/admin/common/starModal.inc.php:73
530
  #: templates/admin/constructor/constructor.inc.php:29
531
  #: templates/admin/settings/settings.inc.php:28
532
  #: templates/admin/table-settings/add_column_modal.inc.php:126
533
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
534
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1095
535
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
536
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
537
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
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 "Копировать"
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
  "Вы пытаетесь загрузить таблицу неизвестного типа. Возможно, вы не "
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
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
  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
  "разработчиками, так что не забывайте периодически проверять эту страницу!"
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
  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
  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
  "поиска."
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
  "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."
2358
  msgstr "Открывать ссылку на новой вкладке"
2359
 
2360
  #: templates/admin/common/linkModal.inc.php:76
2361
+ #: templates/admin/table-settings/column_settings_panel.inc.php:720
2362
+ msgid "Make NOFOLLOW link"
2363
+ msgstr ""
2364
+
2365
+ #: templates/admin/common/linkModal.inc.php:87
2366
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2367
  msgid "Set the link to appear as a button"
2368
  msgstr "Определить ссылку для отображения в виде кнопки"
2369
 
2370
+ #: templates/admin/common/linkModal.inc.php:96
2371
  msgid "Button class:"
2372
  msgstr ""
2373
 
2374
+ #: templates/admin/common/linkModal.inc.php:121
2375
  msgid "Insert link"
2376
  msgstr ""
2377
 
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
2514
  msgstr ""
2515
 
2516
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
2517
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:14
2518
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2519
  msgid "Create a data table linked to an existing data source"
2520
  msgstr ""
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
  " 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 "
2952
  "and is a handy tool for small businesses and individuals that depend on "
2953
+ "stable appointment booking processes. 20,000+ businesses from healthcare, "
2954
  "beauty, sports, automotive, educational, creative, HR and other industries "
2955
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
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
2982
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2983
  #: templates/admin/welcome_page/welcome_page.inc.php:369
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
2993
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2994
  msgid "Support Center"
2995
  msgstr ""
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
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 "По убыванию"
4092
  msgid "Open a topic"
4093
  msgstr ""
4094
 
4095
+ #: templates/admin/system-info/system_info.inc.php:22
4096
  msgid "System Info"
4097
  msgstr ""
4098
 
4099
+ #: templates/admin/system-info/system_info.inc.php:61
4100
  msgid "The URL of your site's homepage."
4101
  msgstr ""
4102
 
4103
+ #: templates/admin/system-info/system_info.inc.php:68
4104
  msgid "The root URL of your site."
4105
  msgstr ""
4106
 
4107
+ #: templates/admin/system-info/system_info.inc.php:75
4108
  msgid "System path of your wp-content directory."
4109
  msgstr ""
4110
 
4111
+ #: templates/admin/system-info/system_info.inc.php:82
4112
  msgid "System path of your WP root directory."
4113
  msgstr ""
4114
 
4115
+ #: templates/admin/system-info/system_info.inc.php:89
4116
  msgid "The version of WordPress installed on your site."
4117
  msgstr ""
4118
 
4119
+ #: templates/admin/system-info/system_info.inc.php:96
4120
  msgid "Whether or not you have WordPress Multisite enabled."
4121
  msgstr ""
4122
 
4123
+ #: templates/admin/system-info/system_info.inc.php:120
4124
  #, php-format
4125
  msgid ""
4126
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
4129
  "noreferrer\">Increasing memory allocated to PHP.</a>"
4130
  msgstr ""
4131
 
4132
+ #: templates/admin/system-info/system_info.inc.php:130
4133
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4134
  msgstr ""
4135
 
4136
+ #: templates/admin/system-info/system_info.inc.php:143
4137
  msgid "Displays whether or not WordPress is in Debug Mode."
4138
  msgstr ""
4139
 
4140
+ #: templates/admin/system-info/system_info.inc.php:150
4141
  msgid "The current language used by WordPress. Default = English"
4142
  msgstr ""
4143
 
4144
+ #: templates/admin/system-info/system_info.inc.php:170
4145
  msgid "Information about your operating system."
4146
  msgstr ""
4147
 
4148
+ #: templates/admin/system-info/system_info.inc.php:178
4149
  msgid "Information about the web server that is currently hosting your site."
4150
  msgstr ""
4151
 
4152
+ #: templates/admin/system-info/system_info.inc.php:220
4153
  msgid "The version of PHP installed on your hosting server."
4154
  msgstr ""
4155
 
4156
+ #: templates/admin/system-info/system_info.inc.php:231
4157
  msgid "The largest file size that can be contained in one post."
4158
  msgstr ""
4159
 
4160
+ #: templates/admin/system-info/system_info.inc.php:240
4161
  #, php-format
4162
  msgid ""
4163
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
4165
  "\">Increasing max execution to PHP</a>"
4166
  msgstr ""
4167
 
4168
+ #: templates/admin/system-info/system_info.inc.php:248
4169
  msgid ""
4170
  "The amount of time (in seconds) that your site will spend on a single "
4171
  "operation before timing out (to avoid server lockups)"
4172
  msgstr ""
4173
 
4174
+ #: templates/admin/system-info/system_info.inc.php:263
4175
  msgid "The version of MySQL installed on your hosting server."
4176
  msgstr ""
4177
 
4178
+ #: templates/admin/system-info/system_info.inc.php:271
4179
  msgid ""
4180
  "The largest file size that can be uploaded to your WordPress installation."
4181
  msgstr ""
4182
 
4183
+ #: templates/admin/system-info/system_info.inc.php:293
4184
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4185
  msgstr ""
4186
 
4187
+ #: templates/admin/system-info/system_info.inc.php:311
4188
  msgid ""
4189
  "XML support is something that needs to be installed on the server for proper "
4190
  "wpDataTables functionality."
4191
  msgstr ""
4192
 
4193
+ #: templates/admin/system-info/system_info.inc.php:329
4194
  msgid ""
4195
  "DOM support is something that needs to be installed on the server for proper "
4196
  "wpDataTables functionality."
4197
  msgstr ""
4198
 
4199
+ #: templates/admin/system-info/system_info.inc.php:355
4200
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4201
  msgstr ""
4202
 
4203
+ #: templates/admin/system-info/system_info.inc.php:374
4204
  msgid ""
4205
  "ZIP support is something that needs to be installed on the server, as a "
4206
  "package for the Linux operating system, or rather to the PHP software on the "
4207
  "server."
4208
  msgstr ""
4209
 
4210
+ #: templates/admin/system-info/system_info.inc.php:394
4211
  msgid "wpDataTables use cURL for getting data from other servers."
4212
  msgstr ""
4213
 
4214
+ #: templates/admin/system-info/system_info.inc.php:417
4215
  msgid "The name of the current active theme."
4216
  msgstr ""
4217
 
4218
+ #: templates/admin/system-info/system_info.inc.php:428
4219
  msgid "The installed version of the current active theme."
4220
  msgstr ""
4221
 
4222
+ #: templates/admin/system-info/system_info.inc.php:435
4223
  msgid "The theme developers."
4224
  msgstr ""
4225
 
4226
+ #: templates/admin/system-info/system_info.inc.php:441
4227
  msgid "The theme developers URL."
4228
  msgstr ""
4229
 
4230
+ #: templates/admin/system-info/system_info.inc.php:478
4231
  msgid "Visit plugin homepage"
4232
  msgstr ""
4233
 
4288
  msgstr "Дата"
4289
 
4290
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4291
+ 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
4436
  msgstr "Дата + Время"
4437
 
4438
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4439
+ #: templates/admin/table-settings/column_settings_panel.inc.php:987
4440
  msgid "URL link"
4441
  msgstr "URL ссылка"
4442
 
4443
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4444
+ #: templates/admin/table-settings/column_settings_panel.inc.php:988
4445
  msgid "E-mail link"
4446
  msgstr "E-mail ссылка"
4447
 
4741
  msgid "Button class"
4742
  msgstr "Класс кнопки"
4743
 
4744
+ #: templates/admin/table-settings/column_settings_panel.inc.php:712
4745
+ msgid "URL relation attribute"
4746
+ msgstr ""
4747
+
4748
+ #: templates/admin/table-settings/column_settings_panel.inc.php:714
4749
+ msgid "Set the link relation"
4750
+ msgstr ""
4751
+
4752
+ #: templates/admin/table-settings/column_settings_panel.inc.php:740
4753
  msgid "Allow sorting"
4754
  msgstr "Разрешить сортировку"
4755
 
4756
+ #: templates/admin/table-settings/column_settings_panel.inc.php:742
4757
  msgid "Disable this to disallow sorting for this column."
4758
  msgstr "Запретить сортировку для этого столбца."
4759
 
4760
+ #: templates/admin/table-settings/column_settings_panel.inc.php:748
4761
  msgid "Allow sorting for this column"
4762
  msgstr "Разрешить сортировку для столбца"
4763
 
4764
+ #: templates/admin/table-settings/column_settings_panel.inc.php:755
4765
  msgid "Use as default sorting column"
4766
  msgstr "Использовать как столбец для сортировки по умолчанию"
4767
 
4768
+ #: templates/admin/table-settings/column_settings_panel.inc.php:757
4769
+ #: templates/admin/table-settings/column_settings_panel.inc.php:763
4770
  msgid "Sort table by this column on load"
4771
  msgstr "Сортировать таблицу по этому столбцу при загрузке"
4772
 
4773
+ #: templates/admin/table-settings/column_settings_panel.inc.php:774
4774
  msgid "Default sorting direction"
4775
  msgstr "Направление сортировки по умолчанию"
4776
 
4777
+ #: templates/admin/table-settings/column_settings_panel.inc.php:776
4778
  msgid "Choose whether to sort ascending or descending by default."
4779
  msgstr "Выберите, сортировать по возрастанию или по убыванию по умолчанию."
4780
 
4781
+ #: templates/admin/table-settings/column_settings_panel.inc.php:803
4782
  msgid "Add a filter for this column"
4783
  msgstr "Добавить фильтр в этот столбец"
4784
 
4785
+ #: templates/admin/table-settings/column_settings_panel.inc.php:811
4786
  msgid "Enable filtering for column"
4787
  msgstr "Разрешить фильтрацию для столбца"
4788
 
4789
+ #: templates/admin/table-settings/column_settings_panel.inc.php:818
4790
  msgid ""
4791
  "Enabling this switch will add a filter for this column. Disable to remove "
4792
  "the filter for this column."
4794
  "Включение этого параметра добавит фильтр для этого столбца. Отключите чтобы "
4795
  "удалить фильтр из этого столбца."
4796
 
4797
+ #: templates/admin/table-settings/column_settings_panel.inc.php:827
4798
  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
+
4806
+ #: templates/admin/table-settings/column_settings_panel.inc.php:836
4807
+ msgid ""
4808
+ "If this option is turned off, the column data will not appear in your global "
4809
+ "search results."
4810
+ msgstr ""
4811
+
4812
+ #: templates/admin/table-settings/column_settings_panel.inc.php:842
4813
+ msgid "Enable this column in Global search"
4814
+ msgstr ""
4815
+
4816
+ #: templates/admin/table-settings/column_settings_panel.inc.php:850
4817
  #: templates/edit_table.inc.php:570
4818
  msgid "Filter type"
4819
  msgstr "Тип фильтра"
4820
 
4821
+ #: templates/admin/table-settings/column_settings_panel.inc.php:852
4822
  msgid ""
4823
  "You can redefine the filter type here, it will affect the filtering logic."
4824
  msgstr ""
4825
  "Вы можете переопределить тип фильтра здесь, это повлияет на логику "
4826
  "фильтрации."
4827
 
4828
+ #: templates/admin/table-settings/column_settings_panel.inc.php:859
4829
  msgid "Text"
4830
  msgstr "Текст"
4831
 
4832
+ #: templates/admin/table-settings/column_settings_panel.inc.php:860
4833
  msgid "Number"
4834
  msgstr "Число"
4835
 
4836
+ #: templates/admin/table-settings/column_settings_panel.inc.php:861
4837
  msgid "Number range"
4838
  msgstr "Числовой диапазон"
4839
 
4840
+ #: templates/admin/table-settings/column_settings_panel.inc.php:862
4841
  msgid "Date range"
4842
  msgstr "Диапазон дат"
4843
 
4844
+ #: templates/admin/table-settings/column_settings_panel.inc.php:863
4845
  msgid "DateTime range"
4846
  msgstr "Диапазон даты-времени"
4847
 
4848
+ #: templates/admin/table-settings/column_settings_panel.inc.php:864
4849
  msgid "Time range"
4850
  msgstr "Диапазон времени"
4851
 
4852
+ #: templates/admin/table-settings/column_settings_panel.inc.php:865
4853
  msgid "Selectbox"
4854
  msgstr "Выбрать"
4855
 
4856
+ #: templates/admin/table-settings/column_settings_panel.inc.php:866
4857
  msgid "Checkbox"
4858
  msgstr "Checkbox"
4859
 
4860
+ #: templates/admin/table-settings/column_settings_panel.inc.php:877
4861
  msgid "Filter label"
4862
  msgstr "Метка для фильтра"
4863
 
4864
+ #: templates/admin/table-settings/column_settings_panel.inc.php:885
4865
  msgid "Custom filter label"
4866
  msgstr "Пользовательское название фильтра"
4867
 
4868
+ #: templates/admin/table-settings/column_settings_panel.inc.php:892
4869
  msgid ""
4870
  "You can change the filter label (placeholder) for this column here, if you "
4871
  "would like to show some custom text instead of default."
4874
  "вы хотите показать какой-либо пользовательский текст вместо значения по "
4875
  "умолчанию."
4876
 
4877
+ #: templates/admin/table-settings/column_settings_panel.inc.php:907
4878
  msgid "Exact filtering"
4879
  msgstr "Точный фильтр"
4880
 
4881
+ #: templates/admin/table-settings/column_settings_panel.inc.php:909
4882
  msgid ""
4883
  "Enable exact search to use exact match logic for filtering, disable to allow "
4884
  "partial match."
4886
  "Включить точный поиск, чтобы использовать логику точного соответствия для "
4887
  "фильтрации, отключить, чтобы разрешить частичное совпадение."
4888
 
4889
+ #: templates/admin/table-settings/column_settings_panel.inc.php:915
4890
  msgid "Enable exact filtering"
4891
  msgstr "Включить точную фильтрацию"
4892
 
4893
+ #: templates/admin/table-settings/column_settings_panel.inc.php:922
4894
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1019
4895
  msgid "Predefined value(s)"
4896
  msgstr "Предопределенные значения"
4897
 
4898
+ #: templates/admin/table-settings/column_settings_panel.inc.php:924
4899
  msgid ""
4900
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4901
  "page load."
4903
  "Определите значение (я), которое будет установлено в качестве "
4904
  "предопределенных значений фильтра при загрузке страницы."
4905
 
4906
+ #: templates/admin/table-settings/column_settings_panel.inc.php:970
4907
  msgid "Editor input type"
4908
  msgstr "Тип поля ввода"
4909
 
4910
+ #: templates/admin/table-settings/column_settings_panel.inc.php:972
4911
  msgid "Choose which kind of editor input to use for this column."
4912
  msgstr "Выберите, какой тип ввода редактора использовать для этого столбца."
4913
 
4914
+ #: templates/admin/table-settings/column_settings_panel.inc.php:978
4915
  msgid "None"
4916
  msgstr "Ничего"
4917
 
4918
+ #: templates/admin/table-settings/column_settings_panel.inc.php:979
4919
  msgid "One-line edit"
4920
  msgstr "Редактирование в таблице"
4921
 
4922
+ #: templates/admin/table-settings/column_settings_panel.inc.php:980
4923
  msgid "Multi-line edit"
4924
  msgstr "Многолинейная строка"
4925
 
4926
+ #: templates/admin/table-settings/column_settings_panel.inc.php:981
4927
  msgid "HTML editor"
4928
  msgstr "HTML редактор"
4929
 
4930
+ #: templates/admin/table-settings/column_settings_panel.inc.php:982
4931
  msgid "Single-value selectbox"
4932
  msgstr "Список с 1 вариантом выбора"
4933
 
4934
+ #: templates/admin/table-settings/column_settings_panel.inc.php:983
4935
  msgid "Multi-value selectbox"
4936
  msgstr "Список с несколькими вариантами"
4937
 
4938
+ #: templates/admin/table-settings/column_settings_panel.inc.php:999
4939
  msgid "Column cannot be empty"
4940
  msgstr "Столбец не может быть пустым"
4941
 
4942
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1001
4943
  msgid ""
4944
  "Enable to make this column mandatory. Users will see a warning when trying "
4945
  "to save with empty input."
4947
  "Включите, чтобы сделать этот столбец обязательным. Пользователи увидят "
4948
  "предупреждение при попытке сохранить с пустым значением."
4949
 
4950
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1007
4951
  msgid "Cannot be empty"
4952
  msgstr "Не может быть пустым"
4953
 
4954
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1021
4955
  msgid ""
4956
  "If you would like to have some values pre-defined in editors (i.e. default "
4957
  "editor values) please enter these here."
4959
  "Если вы хотите, чтобы некоторые значения были предварительно определены в "
4960
  "редакторах (то есть значения редактора по умолчанию), введите их здесь."
4961
 
4962
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1067
4963
  msgid "Add New Rule"
4964
  msgstr ""
4965
 
4966
  #: templates/admin/table-settings/column_small_block.inc.php:16
4967
+ msgid "Enable/disable in global search"
4968
  msgstr ""
4969
 
4970
  #: templates/admin/table-settings/column_small_block.inc.php:18
4971
+ msgid "Show/hide sorting"
4972
+ msgstr ""
4973
+
4974
+ #: templates/admin/table-settings/column_small_block.inc.php:20
4975
  msgid "Show/hide the column"
4976
  msgstr ""
4977
 
4978
+ #: templates/admin/table-settings/column_small_block.inc.php:26
4979
  msgid "Open column settings"
4980
  msgstr ""
4981
 
5180
  msgid "Are you sure? There is no undo!"
5181
  msgstr "Вы уверены? Данную операцию нельзя отменить!"
5182
 
5183
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:9
5184
+ msgid "When working with this table type please note that at the moment:"
5185
+ msgstr ""
5186
+
5187
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:11
5188
+ msgid "There is no sorting, search, or pagination in this table type."
5189
+ msgstr ""
5190
+
5191
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
5192
+ msgid "Creating charts from this table type is not yet possible."
5193
+ msgstr ""
5194
+
5195
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:13
5196
+ msgid ""
5197
+ "If you need those features, please consider creating tables with option "
5198
+ msgstr ""
5199
+
5200
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:17
5201
+ msgid ""
5202
+ "Depends of users requests, we will add it in our road map and implement it "
5203
+ "based on priority. Thank you for understanding."
5204
+ msgstr ""
5205
+
5206
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5207
  msgid "Table preview"
5208
  msgstr ""
5209
 
5210
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:38
5211
  msgid "Desktop"
5212
  msgstr ""
5213
 
5214
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:41
5215
  msgid "Tablet"
5216
  msgstr ""
5217
 
5218
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:44
5219
  msgid "Mobile"
5220
  msgstr ""
5221
 
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 "
7257
  msgid "Insert name for export file"
7258
  msgstr ""
7259
 
7260
+ #~ msgid "Filtering"
7261
+ #~ msgstr "Фильтрация"
7262
+
7263
  #~ msgid "There was an error while trying to import table"
7264
  #~ msgstr "При попытке импорта таблицы произошла ошибка"
7265
 
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: 2020-12-25 17:32+0100\n"
5
- "PO-Revision-Date: 2020-12-25 17:32+0100\n"
6
  "Last-Translator: Bostjan Laba <bostjan@neolink.si>\n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: sl_SI\n"
@@ -120,88 +120,88 @@ msgstr ""
120
  msgid "You do not have sufficient permissions to access this page."
121
  msgstr "Nimate dovolj pravic za dostop do te strani."
122
 
123
- #: controllers/wdt_functions.php:471
124
  msgid "wpDataChart with provided ID not found!"
125
  msgstr "wpDataChart z vnesenim ID-jem ni mogoče najti!"
126
 
127
- #: controllers/wdt_functions.php:507 controllers/wdt_functions.php:588
128
  msgid "wpDataTable with provided ID not found!"
129
  msgstr "wpDataTable z navedenim ID-jem ni mogoče najti!"
130
 
131
- #: controllers/wdt_functions.php:598
132
  msgid "Provided column is not Integer or Float column type"
133
  msgstr "Vneseni stolpec ni tipa Integer ali Float"
134
 
135
- #: controllers/wdt_functions.php:815
136
  msgid "Choose a table"
137
  msgstr "Izberite tabelo"
138
 
139
- #: controllers/wdt_functions.php:847
140
  msgid "Interactive Responsive Table"
141
  msgstr "Interaktivna odzivna tabela"
142
 
143
- #: controllers/wdt_functions.php:848 controllers/wdt_functions.php:909
144
  msgid "Content"
145
  msgstr "Vsebina"
146
 
147
- #: controllers/wdt_functions.php:854
148
  msgid "wpDataTable"
149
  msgstr "wpDataTable"
150
 
151
- #: controllers/wdt_functions.php:858
152
  msgid "Choose the wpDataTable from a dropdown"
153
  msgstr "V spustnem meniju izberite wpDataTable"
154
 
155
- #: controllers/wdt_functions.php:863
156
  msgid "Table view"
157
  msgstr "Pogled tabele"
158
 
159
- #: controllers/wdt_functions.php:867
160
  msgid "Regular wpDataTable"
161
  msgstr "Redni wpDataTable"
162
 
163
- #: controllers/wdt_functions.php:869
164
  msgid "Excel-like table"
165
  msgstr "Excelu podobna miza"
166
 
167
- #: controllers/wdt_functions.php:875
168
  msgid "Variable placeholder #1"
169
  msgstr "Spremenljivo rezervirano mesto №1"
170
 
171
- #: controllers/wdt_functions.php:878 controllers/wdt_functions.php:886
172
- #: controllers/wdt_functions.php:894
173
  msgid "Variables"
174
  msgstr "Spremenljivke"
175
 
176
- #: controllers/wdt_functions.php:879
177
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
178
  msgstr "Če ste uporabili držalo mesta VAR1, mu lahko tukaj dodelite vrednost"
179
 
180
- #: controllers/wdt_functions.php:883
181
  msgid "Variable placeholder #2"
182
  msgstr "Spremenljivo rezervirano mesto №2"
183
 
184
- #: controllers/wdt_functions.php:887
185
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
186
  msgstr "Če ste uporabili držalo mesta VAR2, mu lahko tukaj dodelite vrednost"
187
 
188
- #: controllers/wdt_functions.php:891
189
  msgid "Variable placeholder #3"
190
  msgstr "Spremenljivo rezervirano mesto # 3"
191
 
192
- #: controllers/wdt_functions.php:895
193
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
194
  msgstr "Če ste uporabili držalo mesta VAR3, mu lahko tukaj dodelite vrednost"
195
 
196
- #: controllers/wdt_functions.php:908
197
  msgid "Google or Highcharts chart based on a wpDataTable"
198
  msgstr "Google ali Highcharts grafikon temelji na wpDataTable"
199
 
200
- #: controllers/wdt_functions.php:915
201
  msgid "wpDataChart"
202
  msgstr "wpDataChart"
203
 
204
- #: controllers/wdt_functions.php:919
205
  msgid "Choose one of wpDataCharts from the list"
206
  msgstr "Izberite enega od wpDataCharts s seznama"
207
 
@@ -335,14 +335,14 @@ msgstr "MySQL"
335
  msgid "Manual"
336
  msgstr "Ročno"
337
 
338
- #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2204
339
- #: source/class.wpdatatable.php:2274
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:2213
345
- #: source/class.wpdatatable.php:2284
346
  #: templates/admin/table-settings/table_settings_block.inc.php:1032
347
  msgid "CSV"
348
  msgstr "CSV"
@@ -381,7 +381,7 @@ msgstr "V sistemu še ni wpDataTables."
381
  msgid "There was an error trying to fetch the table data: "
382
  msgstr "Pri poskusu pridobivanja podatkov tabele je prišlo do napake:"
383
 
384
- #: source/class.wdtconfigcontroller.php:477
385
  msgid "Table in data source has no rows."
386
  msgstr "Tabela v viru podatkov nima vrstic."
387
 
@@ -413,18 +413,18 @@ msgstr "Plavajoča vejica"
413
 
414
  #: source/class.wdttools.php:23
415
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
416
- #: templates/admin/table-settings/column_settings_panel.inc.php:968
417
  msgid "Date"
418
  msgstr "Datum"
419
 
420
  #: source/class.wdttools.php:24
421
- #: templates/admin/table-settings/column_settings_panel.inc.php:969
422
  msgid "Datetime"
423
  msgstr "Datum čas"
424
 
425
  #: source/class.wdttools.php:25
426
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
427
- #: templates/admin/table-settings/column_settings_panel.inc.php:970
428
  msgid "Time"
429
  msgstr "Datum in čas"
430
 
@@ -442,7 +442,7 @@ msgid "Image"
442
  msgstr "Slika"
443
 
444
  #: source/class.wdttools.php:29
445
- #: templates/admin/table-settings/column_settings_panel.inc.php:973
446
  msgid "Attachment"
447
  msgstr "Priponka"
448
 
@@ -469,14 +469,14 @@ msgstr "Prebrskaj"
469
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
470
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
471
  #: templates/admin/common/HTMLModal.inc.php:43
472
- #: templates/admin/common/linkModal.inc.php:106
473
  #: templates/admin/common/shortcodeModal.inc.php:48
474
  #: templates/admin/common/starModal.inc.php:73
475
  #: templates/admin/constructor/constructor.inc.php:29
476
  #: templates/admin/settings/settings.inc.php:28
477
  #: templates/admin/table-settings/add_column_modal.inc.php:126
478
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
479
- #: templates/admin/table-settings/column_settings_panel.inc.php:1079
480
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
481
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
482
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
@@ -527,8 +527,8 @@ msgstr "Stolpec je bil odstranjen!"
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:2222
531
- #: source/class.wpdatatable.php:2294
532
  #: templates/admin/table-settings/table_settings_block.inc.php:1033
533
  msgid "Copy"
534
  msgstr "Kopiraj"
@@ -1283,7 +1283,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:1883
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,7 +1291,7 @@ 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:2122 source/class.wpdatatable.php:2125
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
@@ -1299,30 +1299,30 @@ msgstr ""
1299
  msgid "All"
1300
  msgstr "Vse"
1301
 
1302
- #: source/class.wpdatatable.php:2183 source/class.wpdatatable.php:2252
1303
  #: templates/admin/table-settings/columns_list_modal.inc.php:12
1304
  msgid "Columns"
1305
  msgstr "Stolpci"
1306
 
1307
- #: source/class.wpdatatable.php:2193 source/class.wpdatatable.php:2262
1308
  #: templates/admin/table-settings/table_settings_block.inc.php:1030
1309
  msgid "Print"
1310
  msgstr "Tiskaj"
1311
 
1312
- #: source/class.wpdatatable.php:2232 source/class.wpdatatable.php:2305
1313
  #: templates/admin/table-settings/table_settings_block.inc.php:1034
1314
  msgid "PDF"
1315
  msgstr "PDF"
1316
 
1317
- #: source/class.wpdatatable.php:2240
1318
  msgid "Export"
1319
  msgstr "Izvozi"
1320
 
1321
- #: source/class.wpdatatable.php:2318
1322
  msgid "Search table"
1323
  msgstr "Tabela iskanja"
1324
 
1325
- #: source/class.wpdatatable.php:2319
1326
  msgid "Showing _MENU_ Entries"
1327
  msgstr "Prikazovanje vnosov _MENU_"
1328
 
@@ -1341,7 +1341,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:496
1345
  msgid "wpDataTables Addons"
1346
  msgstr "wpDataTables Addons"
1347
 
@@ -1360,12 +1360,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:567
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:571
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 +1393,7 @@ msgid "NEW"
1393
  msgstr "NOVO"
1394
 
1395
  #: templates/admin/addons/addons.inc.php:40
1396
- #: templates/admin/dashboard/dashboard.inc.php:514
1397
  msgid "Master Detail Tables for wpDataTables"
1398
  msgstr "Glavne podrobne tabele za wpDataTables"
1399
 
@@ -1418,7 +1418,7 @@ msgid "Learn more"
1418
  msgstr "Preberi več"
1419
 
1420
  #: templates/admin/addons/addons.inc.php:67
1421
- #: templates/admin/dashboard/dashboard.inc.php:541
1422
  msgid "Powerful Filters for wpDataTables"
1423
  msgstr "Zmogljivi filtri za wpDataTables"
1424
 
@@ -1433,12 +1433,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:594
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:598
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 +1447,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:620
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:624
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."
@@ -2329,15 +2329,20 @@ msgid "Open link in the new tab"
2329
  msgstr "Odprite povezavo v novem zavihku"
2330
 
2331
  #: templates/admin/common/linkModal.inc.php:76
 
 
 
 
 
2332
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2333
  msgid "Set the link to appear as a button"
2334
  msgstr "Nastavite povezavo, da se prikaže kot gumb"
2335
 
2336
- #: templates/admin/common/linkModal.inc.php:85
2337
  msgid "Button class:"
2338
  msgstr ""
2339
 
2340
- #: templates/admin/common/linkModal.inc.php:110
2341
  msgid "Insert link"
2342
  msgstr ""
2343
 
@@ -2457,8 +2462,8 @@ msgstr "Odprite v Excelu podobnem urejevalniku"
2457
  #: templates/admin/settings/settings.inc.php:96
2458
  #: templates/admin/support/support.inc.php:31
2459
  #: templates/admin/support/support.inc.php:47
2460
- #: templates/admin/system-info/system_info.inc.php:30
2461
- #: templates/admin/table-settings/column_settings_panel.inc.php:1074
2462
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2463
  #: templates/admin/table-settings/table_preview_block.inc.php:81
2464
  #: templates/admin/table-settings/table_settings_block.inc.php:1197
@@ -2483,6 +2488,7 @@ msgid ""
2483
  msgstr ""
2484
 
2485
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
 
2486
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2487
  msgid "Create a data table linked to an existing data source"
2488
  msgstr ""
@@ -2698,162 +2704,180 @@ msgid "Version "
2698
  msgstr "Različica"
2699
 
2700
  #: templates/admin/dashboard/dashboard.inc.php:340
2701
- msgid "A minor update with a couple of bug fixes and stability improvements:"
 
 
2702
  msgstr ""
2703
 
2704
  #: templates/admin/dashboard/dashboard.inc.php:345
2705
  msgid ""
2706
- "<strong>BugFix:</strong> Fixed issue with Fatal errors on Dashboard page if "
2707
- "PHP extensions are not installed."
2708
  msgstr ""
2709
 
2710
  #: templates/admin/dashboard/dashboard.inc.php:346
2711
- msgid "Compatibility with WordPress 5.6 approved."
 
 
2712
  msgstr ""
2713
 
2714
  #: templates/admin/dashboard/dashboard.inc.php:347
2715
- msgid "Compatibility with PHP 8 approved."
 
 
2716
  msgstr ""
2717
 
2718
  #: templates/admin/dashboard/dashboard.inc.php:348
 
 
 
 
 
 
 
 
 
 
 
 
2719
  msgid "Other small bug fixes and stability improvements."
2720
  msgstr ""
2721
 
2722
- #: templates/admin/dashboard/dashboard.inc.php:360
2723
  msgid "Go Premium!"
2724
  msgstr ""
2725
 
2726
- #: templates/admin/dashboard/dashboard.inc.php:366
2727
  msgid "View Comparison"
2728
  msgstr ""
2729
 
2730
- #: templates/admin/dashboard/dashboard.inc.php:374
2731
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2732
  msgid ""
2733
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2734
  "of the powerful features."
2735
  msgstr ""
2736
 
2737
- #: templates/admin/dashboard/dashboard.inc.php:378
2738
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
2739
  msgid "Create a table manually"
2740
  msgstr "Ročno ustvarite tabelo"
2741
 
2742
- #: templates/admin/dashboard/dashboard.inc.php:381
2743
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:267
2744
  msgid "Creating tables from Google Spreadsheet"
2745
  msgstr "Ustvarjanje tabel iz Google Spreadsheet-a"
2746
 
2747
- #: templates/admin/dashboard/dashboard.inc.php:384
2748
  msgid ""
2749
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2750
  "tables via Google Sheet API"
2751
  msgstr ""
2752
 
2753
- #: templates/admin/dashboard/dashboard.inc.php:387
2754
  msgid ""
2755
  "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2756
  "tables from Private Google Spreadsheet"
2757
  msgstr ""
2758
 
2759
- #: templates/admin/dashboard/dashboard.inc.php:390
2760
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
2761
  msgid "Creating MySQL-based tables from database"
2762
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz baze podatkov"
2763
 
2764
- #: templates/admin/dashboard/dashboard.inc.php:393
2765
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
2766
  msgid "Creating MySQL-based tables from Wordpress post types"
2767
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz vrst objav Wordpress"
2768
 
2769
- #: templates/admin/dashboard/dashboard.inc.php:396
2770
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:353
2771
  #: templates/edit_table.inc.php:329
2772
  msgid "Advanced filtering"
2773
  msgstr "Napredno filtriranje"
2774
 
2775
- #: templates/admin/dashboard/dashboard.inc.php:399
2776
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2777
  #: templates/admin/table-settings/table_settings_block.inc.php:144
2778
  #: templates/edit_table.inc.php:282
2779
  msgid "Server-side processing"
2780
  msgstr "Obdelava na strani strežnika"
2781
 
2782
- #: templates/admin/dashboard/dashboard.inc.php:402
2783
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:341
2784
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2785
  msgstr ""
2786
 
2787
- #: templates/admin/dashboard/dashboard.inc.php:405
2788
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:365
2789
  msgid "Front-end table editing"
2790
  msgstr "Urejanje mize v sprednjem delu"
2791
 
2792
- #: templates/admin/dashboard/dashboard.inc.php:408
2793
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:377
2794
  msgid "Excel-like editing"
2795
  msgstr "Urejanje v Excelu"
2796
 
2797
- #: templates/admin/dashboard/dashboard.inc.php:411
2798
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:389
2799
  msgid "Creating charts with Highcharts"
2800
  msgstr "Ustvarjanje grafikonov z Highchartsi"
2801
 
2802
- #: templates/admin/dashboard/dashboard.inc.php:414
2803
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:401
2804
  msgid "Creating charts with Chart.js"
2805
  msgstr "Ustvarjanje grafikonov s Chart.js"
2806
 
2807
- #: templates/admin/dashboard/dashboard.inc.php:417
2808
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:413
2809
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2810
  #: templates/edit_table.inc.php:301
2811
  msgid "Responsive"
2812
  msgstr "Odziven"
2813
 
2814
- #: templates/admin/dashboard/dashboard.inc.php:420
2815
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:425
2816
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2817
  #: templates/edit_table.inc.php:750
2818
  msgid "Conditional formatting"
2819
  msgstr "Pogojno oblikovanje"
2820
 
2821
- #: templates/admin/dashboard/dashboard.inc.php:423
2822
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:437
2823
  msgid "Calculating Tools"
2824
  msgstr "Orodja za izračun"
2825
 
2826
- #: templates/admin/dashboard/dashboard.inc.php:426
2827
  msgid "Formula columns"
2828
  msgstr ""
2829
 
2830
- #: templates/admin/dashboard/dashboard.inc.php:429
2831
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:449
2832
  #: templates/admin/table-settings/table_settings_block.inc.php:79
2833
  msgid "Placeholders"
2834
  msgstr "Imetniki mest"
2835
 
2836
- #: templates/admin/dashboard/dashboard.inc.php:432
2837
  msgid "Premium support"
2838
  msgstr ""
2839
 
2840
- #: templates/admin/dashboard/dashboard.inc.php:436
2841
  msgid "Get Premium Today"
2842
  msgstr ""
2843
 
2844
- #: templates/admin/dashboard/dashboard.inc.php:443
2845
  msgid "News Blog"
2846
  msgstr "Blog novic"
2847
 
2848
- #: templates/admin/dashboard/dashboard.inc.php:448
2849
  msgid "Checkout useful articles from wpdatatables.com"
2850
  msgstr "Oglejte si uporabne članke s spletnega mesta wpdatatables.com"
2851
 
2852
- #: templates/admin/dashboard/dashboard.inc.php:471
2853
  msgid "Please install and enable PHP extensions xml and dom on your server."
2854
  msgstr ""
2855
 
2856
- #: templates/admin/dashboard/dashboard.inc.php:479
2857
  msgid ""
2858
  "Never miss notifications about new cool features, promotions,\n"
2859
  " giveaways or freebies – subscribe to our "
@@ -2866,18 +2890,18 @@ msgstr ""
2866
  " približno 1 sporočilo na mesec in nikoli "
2867
  "neželeno!"
2868
 
2869
- #: templates/admin/dashboard/dashboard.inc.php:497
2870
  msgid "Premium "
2871
  msgstr ""
2872
 
2873
- #: templates/admin/dashboard/dashboard.inc.php:500
2874
  msgid ""
2875
  "While wpDataTables itself provides quite a large amount of features and "
2876
  "unlimited customisation, flexibility, you can achieve even more with our "
2877
  "premium addons.(requires wpDataTables Premium version)"
2878
  msgstr ""
2879
 
2880
- #: templates/admin/dashboard/dashboard.inc.php:518
2881
  msgid ""
2882
  "A wpDataTables addon which allows showing additional details for a specific "
2883
  "row in a popup or a separate page or post."
@@ -2885,16 +2909,16 @@ msgstr ""
2885
  "Dodatek wpDataTables, ki omogoča prikazovanje dodatnih podrobnosti za "
2886
  "določeno vrstico v pojavnem oknu ali na ločeni strani ali objavi."
2887
 
2888
- #: templates/admin/dashboard/dashboard.inc.php:524
2889
- #: templates/admin/dashboard/dashboard.inc.php:551
2890
- #: templates/admin/dashboard/dashboard.inc.php:577
2891
- #: templates/admin/dashboard/dashboard.inc.php:604
2892
- #: templates/admin/dashboard/dashboard.inc.php:630
2893
- #: templates/admin/dashboard/dashboard.inc.php:663
2894
  msgid "Learn More"
2895
  msgstr "Preberi več"
2896
 
2897
- #: templates/admin/dashboard/dashboard.inc.php:545
2898
  msgid ""
2899
  "An add-on for wpDataTables that provides powerful filtering features: "
2900
  "cascade filtering, applying filters on button click, hide table before "
@@ -2904,59 +2928,59 @@ msgstr ""
2904
  "filtriranje, nanašanje filtrov na klik gumba, skrivanje tabele pred "
2905
  "filtriranjem."
2906
 
2907
- #: templates/admin/dashboard/dashboard.inc.php:641
2908
  msgid "Need free booking plugin?"
2909
  msgstr ""
2910
 
2911
- #: templates/admin/dashboard/dashboard.inc.php:650
2912
  msgid "Appointments and Events WordPress Booking Plugin"
2913
  msgstr "Sestanki in dogodki WordPress Vtičnik za rezervacijo"
2914
 
2915
- #: templates/admin/dashboard/dashboard.inc.php:653
2916
  msgid ""
2917
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2918
  "set up a fully-featured automated booking system on your WordPress website "
2919
  "and is a handy tool for small businesses and individuals that depend on "
2920
- "stable appointment booking processes. 10,000+ businesses from healthcare, "
2921
  "beauty, sports, automotive, educational, creative, HR and other industries "
2922
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
2923
  "each month."
2924
  msgstr ""
2925
 
2926
- #: templates/admin/dashboard/dashboard.inc.php:656
2927
- msgid "Rating: 4.3 - ‎68 reviews"
2928
  msgstr ""
2929
 
2930
- #: templates/admin/dashboard/dashboard.inc.php:659
2931
  msgid "Free Download"
2932
  msgstr ""
2933
 
2934
- #: templates/admin/dashboard/dashboard.inc.php:674
2935
  #: templates/admin/getting-started/getting_started.inc.php:184
2936
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:492
2937
  #: templates/admin/support/support.inc.php:78
2938
- #: templates/admin/system-info/system_info.inc.php:510
2939
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2940
  msgid "Made by"
2941
  msgstr "Narejeno v"
2942
 
2943
- #: templates/admin/dashboard/dashboard.inc.php:682
2944
  #: templates/admin/getting-started/getting_started.inc.php:192
2945
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:500
2946
  #: templates/admin/support/support.inc.php:45
2947
  #: templates/admin/support/support.inc.php:86
2948
- #: templates/admin/system-info/system_info.inc.php:518
2949
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2950
  #: templates/admin/welcome_page/welcome_page.inc.php:369
2951
  msgid "Documentation"
2952
  msgstr "Dokumentacija"
2953
 
2954
- #: templates/admin/dashboard/dashboard.inc.php:686
2955
  #: templates/admin/getting-started/getting_started.inc.php:196
2956
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:504
2957
  #: templates/admin/support/support.inc.php:24
2958
  #: templates/admin/support/support.inc.php:90
2959
- #: templates/admin/system-info/system_info.inc.php:522
2960
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2961
  msgid "Support Center"
2962
  msgstr "Center za podporo"
@@ -3219,7 +3243,7 @@ msgstr ""
3219
  #: templates/admin/settings/settings.inc.php:33
3220
  #: templates/admin/settings/settings.inc.php:91
3221
  #: templates/admin/table-settings/column_settings_panel.inc.php:25
3222
- #: templates/admin/table-settings/column_settings_panel.inc.php:1082
3223
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3224
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3225
  #: templates/admin/table-settings/table_preview_block.inc.php:89
@@ -3725,13 +3749,13 @@ msgid ""
3725
  msgstr ""
3726
 
3727
  #: templates/admin/settings/tabs/main_plugin_settings.php:216
3728
- #: templates/admin/table-settings/column_settings_panel.inc.php:767
3729
  #: templates/edit_table.inc.php:663
3730
  msgid "Ascending"
3731
  msgstr "Naraščajoče"
3732
 
3733
  #: templates/admin/settings/tabs/main_plugin_settings.php:217
3734
- #: templates/admin/table-settings/column_settings_panel.inc.php:768
3735
  #: templates/edit_table.inc.php:665
3736
  msgid "Descending"
3737
  msgstr "Padajoče"
@@ -4020,35 +4044,35 @@ msgstr ""
4020
  msgid "Open a topic"
4021
  msgstr ""
4022
 
4023
- #: templates/admin/system-info/system_info.inc.php:23
4024
  msgid "System Info"
4025
  msgstr "Sistemske informacije"
4026
 
4027
- #: templates/admin/system-info/system_info.inc.php:62
4028
  msgid "The URL of your site's homepage."
4029
  msgstr "URL vaše domače strani."
4030
 
4031
- #: templates/admin/system-info/system_info.inc.php:69
4032
  msgid "The root URL of your site."
4033
  msgstr "Korenski URL vašega spletnega mesta."
4034
 
4035
- #: templates/admin/system-info/system_info.inc.php:76
4036
  msgid "System path of your wp-content directory."
4037
  msgstr "Sistemska pot vašega imenika wp-content."
4038
 
4039
- #: templates/admin/system-info/system_info.inc.php:83
4040
  msgid "System path of your WP root directory."
4041
  msgstr "Sistemska pot vašega korenskega imenika WP."
4042
 
4043
- #: templates/admin/system-info/system_info.inc.php:90
4044
  msgid "The version of WordPress installed on your site."
4045
  msgstr "Nameščena različica WordPress-a na vaši strani."
4046
 
4047
- #: templates/admin/system-info/system_info.inc.php:97
4048
  msgid "Whether or not you have WordPress Multisite enabled."
4049
  msgstr ""
4050
 
4051
- #: templates/admin/system-info/system_info.inc.php:121
4052
  #, php-format
4053
  msgid ""
4054
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
@@ -4061,37 +4085,37 @@ msgstr ""
4061
  "želite izvedeti, glejte: <a href=\"%2$s\" target=\"_blank\" rel=\"noopener "
4062
  "noreferrer\">Povečanje pomnilnika, dodeljenega PHP.</a>"
4063
 
4064
- #: templates/admin/system-info/system_info.inc.php:131
4065
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4066
  msgstr ""
4067
  "Največja količina pomnilnika (RAM), katero lahko vaša spletna stran uporabi."
4068
 
4069
- #: templates/admin/system-info/system_info.inc.php:144
4070
  msgid "Displays whether or not WordPress is in Debug Mode."
4071
  msgstr "Prikaže, ali je WordPress v načinu odpravljanja napak."
4072
 
4073
- #: templates/admin/system-info/system_info.inc.php:151
4074
  msgid "The current language used by WordPress. Default = English"
4075
  msgstr "Trenutni jezik, ki ga uporablja WordPress. Privzeto = angleško"
4076
 
4077
- #: templates/admin/system-info/system_info.inc.php:171
4078
  msgid "Information about your operating system."
4079
  msgstr "Informacije o vašem operacijskem sistemu."
4080
 
4081
- #: templates/admin/system-info/system_info.inc.php:179
4082
  msgid "Information about the web server that is currently hosting your site."
4083
  msgstr ""
4084
  "Informacije o spletnem strežniku, ki trenutno gosti vaše spletno mesto."
4085
 
4086
- #: templates/admin/system-info/system_info.inc.php:221
4087
  msgid "The version of PHP installed on your hosting server."
4088
  msgstr "Različica PHP, nameščena na vašem strežniku gostovanja."
4089
 
4090
- #: templates/admin/system-info/system_info.inc.php:232
4091
  msgid "The largest file size that can be contained in one post."
4092
  msgstr "Največja velikost datoteke, ki jo lahko vsebuje ena objava."
4093
 
4094
- #: templates/admin/system-info/system_info.inc.php:241
4095
  #, php-format
4096
  msgid ""
4097
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
@@ -4102,7 +4126,7 @@ msgstr ""
4102
  "> Glejte: <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer"
4103
  "\">Povečanje maks. Izvedbe na PHP</a>"
4104
 
4105
- #: templates/admin/system-info/system_info.inc.php:249
4106
  msgid ""
4107
  "The amount of time (in seconds) that your site will spend on a single "
4108
  "operation before timing out (to avoid server lockups)"
@@ -4110,38 +4134,38 @@ msgstr ""
4110
  "Količina časa (v sekundah), ki ga bo vaše spletno mesto porabilo za eno "
4111
  "operacijo pred časovnim izklopom (da se izognete blokadam strežnika)"
4112
 
4113
- #: templates/admin/system-info/system_info.inc.php:264
4114
  msgid "The version of MySQL installed on your hosting server."
4115
  msgstr "Različica MySQL, nameščena na vašem strežniku gostovanja."
4116
 
4117
- #: templates/admin/system-info/system_info.inc.php:272
4118
  msgid ""
4119
  "The largest file size that can be uploaded to your WordPress installation."
4120
  msgstr ""
4121
  "Največja velikost datoteke, ki jo je mogoče naložiti v vašo namestitev "
4122
  "WordPress."
4123
 
4124
- #: templates/admin/system-info/system_info.inc.php:294
4125
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4126
  msgstr "Za pretvorbo kodiranja znakov se uporablja večbajtni niz (mbstring)."
4127
 
4128
- #: templates/admin/system-info/system_info.inc.php:312
4129
  msgid ""
4130
  "XML support is something that needs to be installed on the server for proper "
4131
  "wpDataTables functionality."
4132
  msgstr ""
4133
 
4134
- #: templates/admin/system-info/system_info.inc.php:330
4135
  msgid ""
4136
  "DOM support is something that needs to be installed on the server for proper "
4137
  "wpDataTables functionality."
4138
  msgstr ""
4139
 
4140
- #: templates/admin/system-info/system_info.inc.php:356
4141
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4142
  msgstr "Večbajtni niz (mbstring) zahteva namestitev libxml."
4143
 
4144
- #: templates/admin/system-info/system_info.inc.php:375
4145
  msgid ""
4146
  "ZIP support is something that needs to be installed on the server, as a "
4147
  "package for the Linux operating system, or rather to the PHP software on the "
@@ -4151,28 +4175,28 @@ msgstr ""
4151
  "operacijski sistem Linux ali bolje rečeno v programsko opremo PHP na "
4152
  "strežniku."
4153
 
4154
- #: templates/admin/system-info/system_info.inc.php:395
4155
  msgid "wpDataTables use cURL for getting data from other servers."
4156
  msgstr ""
4157
  "wpDataTables uporabljajo cURL za pridobivanje podatkov z drugih strežnikov."
4158
 
4159
- #: templates/admin/system-info/system_info.inc.php:418
4160
  msgid "The name of the current active theme."
4161
  msgstr "Ime trenutne aktivne teme."
4162
 
4163
- #: templates/admin/system-info/system_info.inc.php:429
4164
  msgid "The installed version of the current active theme."
4165
  msgstr "Nameščena različica trenutno aktivne teme."
4166
 
4167
- #: templates/admin/system-info/system_info.inc.php:436
4168
  msgid "The theme developers."
4169
  msgstr "Razvijalci tem."
4170
 
4171
- #: templates/admin/system-info/system_info.inc.php:442
4172
  msgid "The theme developers URL."
4173
  msgstr "URL razvijalcev teme."
4174
 
4175
- #: templates/admin/system-info/system_info.inc.php:479
4176
  msgid "Visit plugin homepage"
4177
  msgstr "Obiščite domačo stran vtičnika"
4178
 
@@ -4233,8 +4257,8 @@ msgid "Data"
4233
  msgstr "Podatki"
4234
 
4235
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4236
- msgid "Filtering"
4237
- msgstr "Filtriranje"
4238
 
4239
  #: templates/admin/table-settings/column_settings_panel.inc.php:55
4240
  #: templates/admin/table-settings/table_settings_block.inc.php:71
@@ -4381,12 +4405,12 @@ msgid "DateTime"
4381
  msgstr "Datum čas"
4382
 
4383
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4384
- #: templates/admin/table-settings/column_settings_panel.inc.php:971
4385
  msgid "URL link"
4386
  msgstr "URL povezava"
4387
 
4388
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4389
- #: templates/admin/table-settings/column_settings_panel.inc.php:972
4390
  msgid "E-mail link"
4391
  msgstr "E-poštna povezava"
4392
 
@@ -4681,44 +4705,52 @@ msgstr "Besedilo gumba"
4681
  msgid "Button class"
4682
  msgstr "Razred gumba"
4683
 
4684
- #: templates/admin/table-settings/column_settings_panel.inc.php:724
 
 
 
 
 
 
 
 
4685
  msgid "Allow sorting"
4686
  msgstr "Dovoli razvrščanje"
4687
 
4688
- #: templates/admin/table-settings/column_settings_panel.inc.php:726
4689
  msgid "Disable this to disallow sorting for this column."
4690
  msgstr "To onemogočite, če želite onemogočiti razvrščanje tega stolpca."
4691
 
4692
- #: templates/admin/table-settings/column_settings_panel.inc.php:732
4693
  msgid "Allow sorting for this column"
4694
  msgstr "Dovoli razvrščanje za ta stolpec"
4695
 
4696
- #: templates/admin/table-settings/column_settings_panel.inc.php:739
4697
  msgid "Use as default sorting column"
4698
  msgstr "Uporabi kot privzeti stolpec za razvrščanje"
4699
 
4700
- #: templates/admin/table-settings/column_settings_panel.inc.php:741
4701
- #: templates/admin/table-settings/column_settings_panel.inc.php:747
4702
  msgid "Sort table by this column on load"
4703
  msgstr "Razvrstite tabelo po tem stolpcu po obremenitvi"
4704
 
4705
- #: templates/admin/table-settings/column_settings_panel.inc.php:758
4706
  msgid "Default sorting direction"
4707
  msgstr "Privzeta smer razvrščanja"
4708
 
4709
- #: templates/admin/table-settings/column_settings_panel.inc.php:760
4710
  msgid "Choose whether to sort ascending or descending by default."
4711
  msgstr "Izberite, ali želite privzeto razvrstiti naraščajoče ali padajoče."
4712
 
4713
- #: templates/admin/table-settings/column_settings_panel.inc.php:793
4714
  msgid "Add a filter for this column"
4715
  msgstr "Dodajte filter za ta stolpec"
4716
 
4717
- #: templates/admin/table-settings/column_settings_panel.inc.php:801
4718
  msgid "Enable filtering for column"
4719
  msgstr "Omogoči filtriranje za stolpec"
4720
 
4721
- #: templates/admin/table-settings/column_settings_panel.inc.php:808
4722
  msgid ""
4723
  "Enabling this switch will add a filter for this column. Disable to remove "
4724
  "the filter for this column."
@@ -4726,62 +4758,77 @@ msgstr ""
4726
  "Če omogočite to stikalo, boste dodali filter za ta stolpec. Onemogoči "
4727
  "odstranitev filtra za ta stolpec."
4728
 
4729
- #: templates/admin/table-settings/column_settings_panel.inc.php:817
4730
  msgid "Allow filtering"
4731
  msgstr "Dovoli filtriranje"
4732
 
4733
- #: templates/admin/table-settings/column_settings_panel.inc.php:824
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4734
  #: templates/edit_table.inc.php:570
4735
  msgid "Filter type"
4736
  msgstr "Vrsta filtra"
4737
 
4738
- #: templates/admin/table-settings/column_settings_panel.inc.php:826
4739
  msgid ""
4740
  "You can redefine the filter type here, it will affect the filtering logic."
4741
  msgstr ""
4742
  "Tu lahko na novo določite vrsto filtra, to bo vplivalo na logiko filtriranja."
4743
 
4744
- #: templates/admin/table-settings/column_settings_panel.inc.php:833
4745
  msgid "Text"
4746
  msgstr "Besedilo"
4747
 
4748
- #: templates/admin/table-settings/column_settings_panel.inc.php:834
4749
  msgid "Number"
4750
  msgstr "Številka"
4751
 
4752
- #: templates/admin/table-settings/column_settings_panel.inc.php:835
4753
  msgid "Number range"
4754
  msgstr "Številčno območje"
4755
 
4756
- #: templates/admin/table-settings/column_settings_panel.inc.php:836
4757
  msgid "Date range"
4758
  msgstr "Časovno obdobje"
4759
 
4760
- #: templates/admin/table-settings/column_settings_panel.inc.php:837
4761
  msgid "DateTime range"
4762
  msgstr "Časovno obdobje"
4763
 
4764
- #: templates/admin/table-settings/column_settings_panel.inc.php:838
4765
  msgid "Time range"
4766
  msgstr "Časovno obdobje"
4767
 
4768
- #: templates/admin/table-settings/column_settings_panel.inc.php:839
4769
  msgid "Selectbox"
4770
  msgstr "Izbirni okvir"
4771
 
4772
- #: templates/admin/table-settings/column_settings_panel.inc.php:840
4773
  msgid "Checkbox"
4774
  msgstr "Potrditveno polje"
4775
 
4776
- #: templates/admin/table-settings/column_settings_panel.inc.php:856
4777
  msgid "Filter label"
4778
  msgstr "Nalepka filtra"
4779
 
4780
- #: templates/admin/table-settings/column_settings_panel.inc.php:864
4781
  msgid "Custom filter label"
4782
  msgstr "Oznaka filtra po meri"
4783
 
4784
- #: templates/admin/table-settings/column_settings_panel.inc.php:871
4785
  msgid ""
4786
  "You can change the filter label (placeholder) for this column here, if you "
4787
  "would like to show some custom text instead of default."
@@ -4789,11 +4836,11 @@ msgstr ""
4789
  "Tu lahko spremenite nalepko filtra (rezerviralec mesta) za ta stolpec, če "
4790
  "želite namesto privzetega prikazati nekaj besedila po meri."
4791
 
4792
- #: templates/admin/table-settings/column_settings_panel.inc.php:886
4793
  msgid "Exact filtering"
4794
  msgstr "Natančno filtriranje"
4795
 
4796
- #: templates/admin/table-settings/column_settings_panel.inc.php:888
4797
  msgid ""
4798
  "Enable exact search to use exact match logic for filtering, disable to allow "
4799
  "partial match."
@@ -4801,16 +4848,16 @@ msgstr ""
4801
  "Omogočite natančno iskanje, če želite uporabljati logiko natančnega ujemanja "
4802
  "za filtriranje, onemogočite, da omogočite delno ujemanje."
4803
 
4804
- #: templates/admin/table-settings/column_settings_panel.inc.php:894
4805
  msgid "Enable exact filtering"
4806
  msgstr "Omogoči natančno filtriranje"
4807
 
4808
- #: templates/admin/table-settings/column_settings_panel.inc.php:906
4809
- #: templates/admin/table-settings/column_settings_panel.inc.php:1003
4810
  msgid "Predefined value(s)"
4811
  msgstr "Vnaprej določena vrednost"
4812
 
4813
- #: templates/admin/table-settings/column_settings_panel.inc.php:908
4814
  msgid ""
4815
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4816
  "page load."
@@ -4818,43 +4865,43 @@ msgstr ""
4818
  "Določite vrednosti, ki bodo nastavljene kot privzete vnaprej določene "
4819
  "vrednosti filtrov pri nalaganju strani."
4820
 
4821
- #: templates/admin/table-settings/column_settings_panel.inc.php:954
4822
  msgid "Editor input type"
4823
  msgstr "Vrsta vnosa urejevalnika"
4824
 
4825
- #: templates/admin/table-settings/column_settings_panel.inc.php:956
4826
  msgid "Choose which kind of editor input to use for this column."
4827
  msgstr "Izberite vrsto vnosa urejevalnika za ta stolpec."
4828
 
4829
- #: templates/admin/table-settings/column_settings_panel.inc.php:962
4830
  msgid "None"
4831
  msgstr "Brez"
4832
 
4833
- #: templates/admin/table-settings/column_settings_panel.inc.php:963
4834
  msgid "One-line edit"
4835
  msgstr "Urejanje v eni vrstici"
4836
 
4837
- #: templates/admin/table-settings/column_settings_panel.inc.php:964
4838
  msgid "Multi-line edit"
4839
  msgstr "Urejanje v več vrsticah"
4840
 
4841
- #: templates/admin/table-settings/column_settings_panel.inc.php:965
4842
  msgid "HTML editor"
4843
  msgstr "HTML urejevalnik"
4844
 
4845
- #: templates/admin/table-settings/column_settings_panel.inc.php:966
4846
  msgid "Single-value selectbox"
4847
  msgstr "Izbirno polje z eno vrednostjo"
4848
 
4849
- #: templates/admin/table-settings/column_settings_panel.inc.php:967
4850
  msgid "Multi-value selectbox"
4851
  msgstr "Izbirno polje z več vrednostmi"
4852
 
4853
- #: templates/admin/table-settings/column_settings_panel.inc.php:983
4854
  msgid "Column cannot be empty"
4855
  msgstr "Stolpec ne more biti prazen"
4856
 
4857
- #: templates/admin/table-settings/column_settings_panel.inc.php:985
4858
  msgid ""
4859
  "Enable to make this column mandatory. Users will see a warning when trying "
4860
  "to save with empty input."
@@ -4862,11 +4909,11 @@ msgstr ""
4862
  "Omogoči, da postane ta stolpec obvezen. Uporabniki bodo videli opozorilo, ko "
4863
  "poskušajo shraniti s praznim vnosom."
4864
 
4865
- #: templates/admin/table-settings/column_settings_panel.inc.php:991
4866
  msgid "Cannot be empty"
4867
  msgstr "Ne more biti prazen"
4868
 
4869
- #: templates/admin/table-settings/column_settings_panel.inc.php:1005
4870
  msgid ""
4871
  "If you would like to have some values pre-defined in editors (i.e. default "
4872
  "editor values) please enter these here."
@@ -4874,19 +4921,23 @@ msgstr ""
4874
  "Če želite imeti v urejevalnikih že določene vrednosti (tj. Privzete "
4875
  "vrednosti urejevalnika), jih vnesite tukaj."
4876
 
4877
- #: templates/admin/table-settings/column_settings_panel.inc.php:1051
4878
  msgid "Add New Rule"
4879
  msgstr "Dodaj novo pravilo"
4880
 
4881
  #: templates/admin/table-settings/column_small_block.inc.php:16
 
 
 
 
4882
  msgid "Show/hide sorting"
4883
  msgstr "Prikaži / skrij razvrščanje"
4884
 
4885
- #: templates/admin/table-settings/column_small_block.inc.php:18
4886
  msgid "Show/hide the column"
4887
  msgstr "Prikaži / skriti stolpec"
4888
 
4889
- #: templates/admin/table-settings/column_small_block.inc.php:24
4890
  msgid "Open column settings"
4891
  msgstr "Odprite nastavitve stolpcev"
4892
 
@@ -5083,19 +5134,42 @@ msgstr "Potrdi"
5083
  msgid "Are you sure? There is no undo!"
5084
  msgstr "Ali si prepričan? Razveljavitve ni!"
5085
 
 
 
 
 
 
 
 
 
5086
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5087
  msgid "Table preview"
5088
  msgstr ""
5089
 
5090
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:22
5091
  msgid "Desktop"
5092
  msgstr ""
5093
 
5094
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:25
5095
  msgid "Tablet"
5096
  msgstr ""
5097
 
5098
- #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5099
  msgid "Mobile"
5100
  msgstr ""
5101
 
@@ -5763,10 +5837,6 @@ msgstr "Dovoli razvrščanje za mizo"
5763
  msgid "Main search block"
5764
  msgstr "Glavni iskalni blok"
5765
 
5766
- #: templates/admin/table-settings/table_settings_block.inc.php:665
5767
- msgid "Global search"
5768
- msgstr "Globalno iskanje"
5769
-
5770
  #: templates/admin/table-settings/table_settings_block.inc.php:672
5771
  msgid ""
5772
  "If this is enabled, a search block will be displayed on the top right of the "
@@ -7135,6 +7205,9 @@ msgstr ""
7135
  msgid "Insert name for export file"
7136
  msgstr ""
7137
 
 
 
 
7138
  #, fuzzy
7139
  #~ msgid "tr"
7140
  #~ msgstr "tr"
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"
120
  msgid "You do not have sufficient permissions to access this page."
121
  msgstr "Nimate dovolj pravic za dostop do te strani."
122
 
123
+ #: controllers/wdt_functions.php:486
124
  msgid "wpDataChart with provided ID not found!"
125
  msgstr "wpDataChart z vnesenim ID-jem ni mogoče najti!"
126
 
127
+ #: controllers/wdt_functions.php:522 controllers/wdt_functions.php:603
128
  msgid "wpDataTable with provided ID not found!"
129
  msgstr "wpDataTable z navedenim ID-jem ni mogoče najti!"
130
 
131
+ #: controllers/wdt_functions.php:613
132
  msgid "Provided column is not Integer or Float column type"
133
  msgstr "Vneseni stolpec ni tipa Integer ali Float"
134
 
135
+ #: controllers/wdt_functions.php:830
136
  msgid "Choose a table"
137
  msgstr "Izberite tabelo"
138
 
139
+ #: controllers/wdt_functions.php:862
140
  msgid "Interactive Responsive Table"
141
  msgstr "Interaktivna odzivna tabela"
142
 
143
+ #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
144
  msgid "Content"
145
  msgstr "Vsebina"
146
 
147
+ #: controllers/wdt_functions.php:869
148
  msgid "wpDataTable"
149
  msgstr "wpDataTable"
150
 
151
+ #: controllers/wdt_functions.php:873
152
  msgid "Choose the wpDataTable from a dropdown"
153
  msgstr "V spustnem meniju izberite wpDataTable"
154
 
155
+ #: controllers/wdt_functions.php:878
156
  msgid "Table view"
157
  msgstr "Pogled tabele"
158
 
159
+ #: controllers/wdt_functions.php:882
160
  msgid "Regular wpDataTable"
161
  msgstr "Redni wpDataTable"
162
 
163
+ #: controllers/wdt_functions.php:884
164
  msgid "Excel-like table"
165
  msgstr "Excelu podobna miza"
166
 
167
+ #: controllers/wdt_functions.php:890
168
  msgid "Variable placeholder #1"
169
  msgstr "Spremenljivo rezervirano mesto №1"
170
 
171
+ #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
172
+ #: controllers/wdt_functions.php:909
173
  msgid "Variables"
174
  msgstr "Spremenljivke"
175
 
176
+ #: controllers/wdt_functions.php:894
177
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
178
  msgstr "Če ste uporabili držalo mesta VAR1, mu lahko tukaj dodelite vrednost"
179
 
180
+ #: controllers/wdt_functions.php:898
181
  msgid "Variable placeholder #2"
182
  msgstr "Spremenljivo rezervirano mesto №2"
183
 
184
+ #: controllers/wdt_functions.php:902
185
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
186
  msgstr "Če ste uporabili držalo mesta VAR2, mu lahko tukaj dodelite vrednost"
187
 
188
+ #: controllers/wdt_functions.php:906
189
  msgid "Variable placeholder #3"
190
  msgstr "Spremenljivo rezervirano mesto # 3"
191
 
192
+ #: controllers/wdt_functions.php:910
193
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
194
  msgstr "Če ste uporabili držalo mesta VAR3, mu lahko tukaj dodelite vrednost"
195
 
196
+ #: controllers/wdt_functions.php:923
197
  msgid "Google or Highcharts chart based on a wpDataTable"
198
  msgstr "Google ali Highcharts grafikon temelji na wpDataTable"
199
 
200
+ #: controllers/wdt_functions.php:930
201
  msgid "wpDataChart"
202
  msgstr "wpDataChart"
203
 
204
+ #: controllers/wdt_functions.php:934
205
  msgid "Choose one of wpDataCharts from the list"
206
  msgstr "Izberite enega od wpDataCharts s seznama"
207
 
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"
381
  msgid "There was an error trying to fetch the table data: "
382
  msgstr "Pri poskusu pridobivanja podatkov tabele je prišlo do napake:"
383
 
384
+ #: source/class.wdtconfigcontroller.php:479
385
  msgid "Table in data source has no rows."
386
  msgstr "Tabela v viru podatkov nima vrstic."
387
 
413
 
414
  #: source/class.wdttools.php:23
415
  #: templates/admin/table-settings/column_settings_panel.inc.php:355
416
+ #: templates/admin/table-settings/column_settings_panel.inc.php:984
417
  msgid "Date"
418
  msgstr "Datum"
419
 
420
  #: source/class.wdttools.php:24
421
+ #: templates/admin/table-settings/column_settings_panel.inc.php:985
422
  msgid "Datetime"
423
  msgstr "Datum čas"
424
 
425
  #: source/class.wdttools.php:25
426
  #: templates/admin/table-settings/column_settings_panel.inc.php:357
427
+ #: templates/admin/table-settings/column_settings_panel.inc.php:986
428
  msgid "Time"
429
  msgstr "Datum in čas"
430
 
442
  msgstr "Slika"
443
 
444
  #: source/class.wdttools.php:29
445
+ #: templates/admin/table-settings/column_settings_panel.inc.php:989
446
  msgid "Attachment"
447
  msgstr "Priponka"
448
 
469
  #: templates/admin/browse/table/duplicate_modal.inc.php:61
470
  #: templates/admin/chart_wizard/chart_wizard.inc.php:39
471
  #: templates/admin/common/HTMLModal.inc.php:43
472
+ #: templates/admin/common/linkModal.inc.php:117
473
  #: templates/admin/common/shortcodeModal.inc.php:48
474
  #: templates/admin/common/starModal.inc.php:73
475
  #: templates/admin/constructor/constructor.inc.php:29
476
  #: templates/admin/settings/settings.inc.php:28
477
  #: templates/admin/table-settings/add_column_modal.inc.php:126
478
  #: templates/admin/table-settings/column_settings_panel.inc.php:20
479
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1095
480
  #: templates/admin/table-settings/formula_editor_modal.inc.php:89
481
  #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
482
  #: templates/admin/table-settings/remove_column_modal.inc.php:81
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"
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
  "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
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
  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
  "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
  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
  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
  "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
  "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."
2329
  msgstr "Odprite povezavo v novem zavihku"
2330
 
2331
  #: templates/admin/common/linkModal.inc.php:76
2332
+ #: templates/admin/table-settings/column_settings_panel.inc.php:720
2333
+ msgid "Make NOFOLLOW link"
2334
+ msgstr ""
2335
+
2336
+ #: templates/admin/common/linkModal.inc.php:87
2337
  #: templates/admin/table-settings/column_settings_panel.inc.php:677
2338
  msgid "Set the link to appear as a button"
2339
  msgstr "Nastavite povezavo, da se prikaže kot gumb"
2340
 
2341
+ #: templates/admin/common/linkModal.inc.php:96
2342
  msgid "Button class:"
2343
  msgstr ""
2344
 
2345
+ #: templates/admin/common/linkModal.inc.php:121
2346
  msgid "Insert link"
2347
  msgstr ""
2348
 
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
2488
  msgstr ""
2489
 
2490
  #: templates/admin/constructor/steps/constructor_1.inc.php:31
2491
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:14
2492
  #: templates/admin/welcome_page/welcome_page.inc.php:96
2493
  msgid "Create a data table linked to an existing data source"
2494
  msgstr ""
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
  " 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
  "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
  "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 "
2943
  "and is a handy tool for small businesses and individuals that depend on "
2944
+ "stable appointment booking processes. 20,000+ businesses from healthcare, "
2945
  "beauty, sports, automotive, educational, creative, HR and other industries "
2946
  "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
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
2973
  #: templates/admin/welcome_page/welcome_page.inc.php:219
2974
  #: templates/admin/welcome_page/welcome_page.inc.php:369
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
2984
  #: templates/admin/welcome_page/welcome_page.inc.php:373
2985
  msgid "Support Center"
2986
  msgstr "Center za podporo"
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
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"
4044
  msgid "Open a topic"
4045
  msgstr ""
4046
 
4047
+ #: templates/admin/system-info/system_info.inc.php:22
4048
  msgid "System Info"
4049
  msgstr "Sistemske informacije"
4050
 
4051
+ #: templates/admin/system-info/system_info.inc.php:61
4052
  msgid "The URL of your site's homepage."
4053
  msgstr "URL vaše domače strani."
4054
 
4055
+ #: templates/admin/system-info/system_info.inc.php:68
4056
  msgid "The root URL of your site."
4057
  msgstr "Korenski URL vašega spletnega mesta."
4058
 
4059
+ #: templates/admin/system-info/system_info.inc.php:75
4060
  msgid "System path of your wp-content directory."
4061
  msgstr "Sistemska pot vašega imenika wp-content."
4062
 
4063
+ #: templates/admin/system-info/system_info.inc.php:82
4064
  msgid "System path of your WP root directory."
4065
  msgstr "Sistemska pot vašega korenskega imenika WP."
4066
 
4067
+ #: templates/admin/system-info/system_info.inc.php:89
4068
  msgid "The version of WordPress installed on your site."
4069
  msgstr "Nameščena različica WordPress-a na vaši strani."
4070
 
4071
+ #: templates/admin/system-info/system_info.inc.php:96
4072
  msgid "Whether or not you have WordPress Multisite enabled."
4073
  msgstr ""
4074
 
4075
+ #: templates/admin/system-info/system_info.inc.php:120
4076
  #, php-format
4077
  msgid ""
4078
  "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
4085
  "želite izvedeti, glejte: <a href=\"%2$s\" target=\"_blank\" rel=\"noopener "
4086
  "noreferrer\">Povečanje pomnilnika, dodeljenega PHP.</a>"
4087
 
4088
+ #: templates/admin/system-info/system_info.inc.php:130
4089
  msgid "The maximum amount of memory (RAM) that your site can use at one time."
4090
  msgstr ""
4091
  "Največja količina pomnilnika (RAM), katero lahko vaša spletna stran uporabi."
4092
 
4093
+ #: templates/admin/system-info/system_info.inc.php:143
4094
  msgid "Displays whether or not WordPress is in Debug Mode."
4095
  msgstr "Prikaže, ali je WordPress v načinu odpravljanja napak."
4096
 
4097
+ #: templates/admin/system-info/system_info.inc.php:150
4098
  msgid "The current language used by WordPress. Default = English"
4099
  msgstr "Trenutni jezik, ki ga uporablja WordPress. Privzeto = angleško"
4100
 
4101
+ #: templates/admin/system-info/system_info.inc.php:170
4102
  msgid "Information about your operating system."
4103
  msgstr "Informacije o vašem operacijskem sistemu."
4104
 
4105
+ #: templates/admin/system-info/system_info.inc.php:178
4106
  msgid "Information about the web server that is currently hosting your site."
4107
  msgstr ""
4108
  "Informacije o spletnem strežniku, ki trenutno gosti vaše spletno mesto."
4109
 
4110
+ #: templates/admin/system-info/system_info.inc.php:220
4111
  msgid "The version of PHP installed on your hosting server."
4112
  msgstr "Različica PHP, nameščena na vašem strežniku gostovanja."
4113
 
4114
+ #: templates/admin/system-info/system_info.inc.php:231
4115
  msgid "The largest file size that can be contained in one post."
4116
  msgstr "Največja velikost datoteke, ki jo lahko vsebuje ena objava."
4117
 
4118
+ #: templates/admin/system-info/system_info.inc.php:240
4119
  #, php-format
4120
  msgid ""
4121
  "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
4126
  "> Glejte: <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer"
4127
  "\">Povečanje maks. Izvedbe na PHP</a>"
4128
 
4129
+ #: templates/admin/system-info/system_info.inc.php:248
4130
  msgid ""
4131
  "The amount of time (in seconds) that your site will spend on a single "
4132
  "operation before timing out (to avoid server lockups)"
4134
  "Količina časa (v sekundah), ki ga bo vaše spletno mesto porabilo za eno "
4135
  "operacijo pred časovnim izklopom (da se izognete blokadam strežnika)"
4136
 
4137
+ #: templates/admin/system-info/system_info.inc.php:263
4138
  msgid "The version of MySQL installed on your hosting server."
4139
  msgstr "Različica MySQL, nameščena na vašem strežniku gostovanja."
4140
 
4141
+ #: templates/admin/system-info/system_info.inc.php:271
4142
  msgid ""
4143
  "The largest file size that can be uploaded to your WordPress installation."
4144
  msgstr ""
4145
  "Največja velikost datoteke, ki jo je mogoče naložiti v vašo namestitev "
4146
  "WordPress."
4147
 
4148
+ #: templates/admin/system-info/system_info.inc.php:293
4149
  msgid "Multibyte String (mbstring) is used to convert character encoding."
4150
  msgstr "Za pretvorbo kodiranja znakov se uporablja večbajtni niz (mbstring)."
4151
 
4152
+ #: templates/admin/system-info/system_info.inc.php:311
4153
  msgid ""
4154
  "XML support is something that needs to be installed on the server for proper "
4155
  "wpDataTables functionality."
4156
  msgstr ""
4157
 
4158
+ #: templates/admin/system-info/system_info.inc.php:329
4159
  msgid ""
4160
  "DOM support is something that needs to be installed on the server for proper "
4161
  "wpDataTables functionality."
4162
  msgstr ""
4163
 
4164
+ #: templates/admin/system-info/system_info.inc.php:355
4165
  msgid "Multibyte String (mbstring) require libxml to be installed. "
4166
  msgstr "Večbajtni niz (mbstring) zahteva namestitev libxml."
4167
 
4168
+ #: templates/admin/system-info/system_info.inc.php:374
4169
  msgid ""
4170
  "ZIP support is something that needs to be installed on the server, as a "
4171
  "package for the Linux operating system, or rather to the PHP software on the "
4175
  "operacijski sistem Linux ali bolje rečeno v programsko opremo PHP na "
4176
  "strežniku."
4177
 
4178
+ #: templates/admin/system-info/system_info.inc.php:394
4179
  msgid "wpDataTables use cURL for getting data from other servers."
4180
  msgstr ""
4181
  "wpDataTables uporabljajo cURL za pridobivanje podatkov z drugih strežnikov."
4182
 
4183
+ #: templates/admin/system-info/system_info.inc.php:417
4184
  msgid "The name of the current active theme."
4185
  msgstr "Ime trenutne aktivne teme."
4186
 
4187
+ #: templates/admin/system-info/system_info.inc.php:428
4188
  msgid "The installed version of the current active theme."
4189
  msgstr "Nameščena različica trenutno aktivne teme."
4190
 
4191
+ #: templates/admin/system-info/system_info.inc.php:435
4192
  msgid "The theme developers."
4193
  msgstr "Razvijalci tem."
4194
 
4195
+ #: templates/admin/system-info/system_info.inc.php:441
4196
  msgid "The theme developers URL."
4197
  msgstr "URL razvijalcev teme."
4198
 
4199
+ #: templates/admin/system-info/system_info.inc.php:478
4200
  msgid "Visit plugin homepage"
4201
  msgstr "Obiščite domačo stran vtičnika"
4202
 
4257
  msgstr "Podatki"
4258
 
4259
  #: templates/admin/table-settings/column_settings_panel.inc.php:51
4260
+ 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
4405
  msgstr "Datum čas"
4406
 
4407
  #: templates/admin/table-settings/column_settings_panel.inc.php:358
4408
+ #: templates/admin/table-settings/column_settings_panel.inc.php:987
4409
  msgid "URL link"
4410
  msgstr "URL povezava"
4411
 
4412
  #: templates/admin/table-settings/column_settings_panel.inc.php:359
4413
+ #: templates/admin/table-settings/column_settings_panel.inc.php:988
4414
  msgid "E-mail link"
4415
  msgstr "E-poštna povezava"
4416
 
4705
  msgid "Button class"
4706
  msgstr "Razred gumba"
4707
 
4708
+ #: templates/admin/table-settings/column_settings_panel.inc.php:712
4709
+ msgid "URL relation attribute"
4710
+ msgstr ""
4711
+
4712
+ #: templates/admin/table-settings/column_settings_panel.inc.php:714
4713
+ msgid "Set the link relation"
4714
+ msgstr ""
4715
+
4716
+ #: templates/admin/table-settings/column_settings_panel.inc.php:740
4717
  msgid "Allow sorting"
4718
  msgstr "Dovoli razvrščanje"
4719
 
4720
+ #: templates/admin/table-settings/column_settings_panel.inc.php:742
4721
  msgid "Disable this to disallow sorting for this column."
4722
  msgstr "To onemogočite, če želite onemogočiti razvrščanje tega stolpca."
4723
 
4724
+ #: templates/admin/table-settings/column_settings_panel.inc.php:748
4725
  msgid "Allow sorting for this column"
4726
  msgstr "Dovoli razvrščanje za ta stolpec"
4727
 
4728
+ #: templates/admin/table-settings/column_settings_panel.inc.php:755
4729
  msgid "Use as default sorting column"
4730
  msgstr "Uporabi kot privzeti stolpec za razvrščanje"
4731
 
4732
+ #: templates/admin/table-settings/column_settings_panel.inc.php:757
4733
+ #: templates/admin/table-settings/column_settings_panel.inc.php:763
4734
  msgid "Sort table by this column on load"
4735
  msgstr "Razvrstite tabelo po tem stolpcu po obremenitvi"
4736
 
4737
+ #: templates/admin/table-settings/column_settings_panel.inc.php:774
4738
  msgid "Default sorting direction"
4739
  msgstr "Privzeta smer razvrščanja"
4740
 
4741
+ #: templates/admin/table-settings/column_settings_panel.inc.php:776
4742
  msgid "Choose whether to sort ascending or descending by default."
4743
  msgstr "Izberite, ali želite privzeto razvrstiti naraščajoče ali padajoče."
4744
 
4745
+ #: templates/admin/table-settings/column_settings_panel.inc.php:803
4746
  msgid "Add a filter for this column"
4747
  msgstr "Dodajte filter za ta stolpec"
4748
 
4749
+ #: templates/admin/table-settings/column_settings_panel.inc.php:811
4750
  msgid "Enable filtering for column"
4751
  msgstr "Omogoči filtriranje za stolpec"
4752
 
4753
+ #: templates/admin/table-settings/column_settings_panel.inc.php:818
4754
  msgid ""
4755
  "Enabling this switch will add a filter for this column. Disable to remove "
4756
  "the filter for this column."
4758
  "Če omogočite to stikalo, boste dodali filter za ta stolpec. Onemogoči "
4759
  "odstranitev filtra za ta stolpec."
4760
 
4761
+ #: templates/admin/table-settings/column_settings_panel.inc.php:827
4762
  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
+
4770
+ #: templates/admin/table-settings/column_settings_panel.inc.php:836
4771
+ msgid ""
4772
+ "If this option is turned off, the column data will not appear in your global "
4773
+ "search results."
4774
+ msgstr ""
4775
+
4776
+ #: templates/admin/table-settings/column_settings_panel.inc.php:842
4777
+ msgid "Enable this column in Global search"
4778
+ msgstr ""
4779
+
4780
+ #: templates/admin/table-settings/column_settings_panel.inc.php:850
4781
  #: templates/edit_table.inc.php:570
4782
  msgid "Filter type"
4783
  msgstr "Vrsta filtra"
4784
 
4785
+ #: templates/admin/table-settings/column_settings_panel.inc.php:852
4786
  msgid ""
4787
  "You can redefine the filter type here, it will affect the filtering logic."
4788
  msgstr ""
4789
  "Tu lahko na novo določite vrsto filtra, to bo vplivalo na logiko filtriranja."
4790
 
4791
+ #: templates/admin/table-settings/column_settings_panel.inc.php:859
4792
  msgid "Text"
4793
  msgstr "Besedilo"
4794
 
4795
+ #: templates/admin/table-settings/column_settings_panel.inc.php:860
4796
  msgid "Number"
4797
  msgstr "Številka"
4798
 
4799
+ #: templates/admin/table-settings/column_settings_panel.inc.php:861
4800
  msgid "Number range"
4801
  msgstr "Številčno območje"
4802
 
4803
+ #: templates/admin/table-settings/column_settings_panel.inc.php:862
4804
  msgid "Date range"
4805
  msgstr "Časovno obdobje"
4806
 
4807
+ #: templates/admin/table-settings/column_settings_panel.inc.php:863
4808
  msgid "DateTime range"
4809
  msgstr "Časovno obdobje"
4810
 
4811
+ #: templates/admin/table-settings/column_settings_panel.inc.php:864
4812
  msgid "Time range"
4813
  msgstr "Časovno obdobje"
4814
 
4815
+ #: templates/admin/table-settings/column_settings_panel.inc.php:865
4816
  msgid "Selectbox"
4817
  msgstr "Izbirni okvir"
4818
 
4819
+ #: templates/admin/table-settings/column_settings_panel.inc.php:866
4820
  msgid "Checkbox"
4821
  msgstr "Potrditveno polje"
4822
 
4823
+ #: templates/admin/table-settings/column_settings_panel.inc.php:877
4824
  msgid "Filter label"
4825
  msgstr "Nalepka filtra"
4826
 
4827
+ #: templates/admin/table-settings/column_settings_panel.inc.php:885
4828
  msgid "Custom filter label"
4829
  msgstr "Oznaka filtra po meri"
4830
 
4831
+ #: templates/admin/table-settings/column_settings_panel.inc.php:892
4832
  msgid ""
4833
  "You can change the filter label (placeholder) for this column here, if you "
4834
  "would like to show some custom text instead of default."
4836
  "Tu lahko spremenite nalepko filtra (rezerviralec mesta) za ta stolpec, če "
4837
  "želite namesto privzetega prikazati nekaj besedila po meri."
4838
 
4839
+ #: templates/admin/table-settings/column_settings_panel.inc.php:907
4840
  msgid "Exact filtering"
4841
  msgstr "Natančno filtriranje"
4842
 
4843
+ #: templates/admin/table-settings/column_settings_panel.inc.php:909
4844
  msgid ""
4845
  "Enable exact search to use exact match logic for filtering, disable to allow "
4846
  "partial match."
4848
  "Omogočite natančno iskanje, če želite uporabljati logiko natančnega ujemanja "
4849
  "za filtriranje, onemogočite, da omogočite delno ujemanje."
4850
 
4851
+ #: templates/admin/table-settings/column_settings_panel.inc.php:915
4852
  msgid "Enable exact filtering"
4853
  msgstr "Omogoči natančno filtriranje"
4854
 
4855
+ #: templates/admin/table-settings/column_settings_panel.inc.php:922
4856
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1019
4857
  msgid "Predefined value(s)"
4858
  msgstr "Vnaprej določena vrednost"
4859
 
4860
+ #: templates/admin/table-settings/column_settings_panel.inc.php:924
4861
  msgid ""
4862
  "Define value(s) that will be set as default pre-defined filter value(s) on "
4863
  "page load."
4865
  "Določite vrednosti, ki bodo nastavljene kot privzete vnaprej določene "
4866
  "vrednosti filtrov pri nalaganju strani."
4867
 
4868
+ #: templates/admin/table-settings/column_settings_panel.inc.php:970
4869
  msgid "Editor input type"
4870
  msgstr "Vrsta vnosa urejevalnika"
4871
 
4872
+ #: templates/admin/table-settings/column_settings_panel.inc.php:972
4873
  msgid "Choose which kind of editor input to use for this column."
4874
  msgstr "Izberite vrsto vnosa urejevalnika za ta stolpec."
4875
 
4876
+ #: templates/admin/table-settings/column_settings_panel.inc.php:978
4877
  msgid "None"
4878
  msgstr "Brez"
4879
 
4880
+ #: templates/admin/table-settings/column_settings_panel.inc.php:979
4881
  msgid "One-line edit"
4882
  msgstr "Urejanje v eni vrstici"
4883
 
4884
+ #: templates/admin/table-settings/column_settings_panel.inc.php:980
4885
  msgid "Multi-line edit"
4886
  msgstr "Urejanje v več vrsticah"
4887
 
4888
+ #: templates/admin/table-settings/column_settings_panel.inc.php:981
4889
  msgid "HTML editor"
4890
  msgstr "HTML urejevalnik"
4891
 
4892
+ #: templates/admin/table-settings/column_settings_panel.inc.php:982
4893
  msgid "Single-value selectbox"
4894
  msgstr "Izbirno polje z eno vrednostjo"
4895
 
4896
+ #: templates/admin/table-settings/column_settings_panel.inc.php:983
4897
  msgid "Multi-value selectbox"
4898
  msgstr "Izbirno polje z več vrednostmi"
4899
 
4900
+ #: templates/admin/table-settings/column_settings_panel.inc.php:999
4901
  msgid "Column cannot be empty"
4902
  msgstr "Stolpec ne more biti prazen"
4903
 
4904
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1001
4905
  msgid ""
4906
  "Enable to make this column mandatory. Users will see a warning when trying "
4907
  "to save with empty input."
4909
  "Omogoči, da postane ta stolpec obvezen. Uporabniki bodo videli opozorilo, ko "
4910
  "poskušajo shraniti s praznim vnosom."
4911
 
4912
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1007
4913
  msgid "Cannot be empty"
4914
  msgstr "Ne more biti prazen"
4915
 
4916
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1021
4917
  msgid ""
4918
  "If you would like to have some values pre-defined in editors (i.e. default "
4919
  "editor values) please enter these here."
4921
  "Če želite imeti v urejevalnikih že določene vrednosti (tj. Privzete "
4922
  "vrednosti urejevalnika), jih vnesite tukaj."
4923
 
4924
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1067
4925
  msgid "Add New Rule"
4926
  msgstr "Dodaj novo pravilo"
4927
 
4928
  #: templates/admin/table-settings/column_small_block.inc.php:16
4929
+ msgid "Enable/disable in global search"
4930
+ msgstr ""
4931
+
4932
+ #: templates/admin/table-settings/column_small_block.inc.php:18
4933
  msgid "Show/hide sorting"
4934
  msgstr "Prikaži / skrij razvrščanje"
4935
 
4936
+ #: templates/admin/table-settings/column_small_block.inc.php:20
4937
  msgid "Show/hide the column"
4938
  msgstr "Prikaži / skriti stolpec"
4939
 
4940
+ #: templates/admin/table-settings/column_small_block.inc.php:26
4941
  msgid "Open column settings"
4942
  msgstr "Odprite nastavitve stolpcev"
4943
 
5134
  msgid "Are you sure? There is no undo!"
5135
  msgstr "Ali si prepričan? Razveljavitve ni!"
5136
 
5137
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:9
5138
+ msgid "When working with this table type please note that at the moment:"
5139
+ msgstr ""
5140
+
5141
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:11
5142
+ msgid "There is no sorting, search, or pagination in this table type."
5143
+ msgstr ""
5144
+
5145
  #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
5146
+ msgid "Creating charts from this table type is not yet possible."
5147
+ msgstr ""
5148
+
5149
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:13
5150
+ msgid ""
5151
+ "If you need those features, please consider creating tables with option "
5152
+ msgstr ""
5153
+
5154
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:17
5155
+ msgid ""
5156
+ "Depends of users requests, we will add it in our road map and implement it "
5157
+ "based on priority. Thank you for understanding."
5158
+ msgstr ""
5159
+
5160
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5161
  msgid "Table preview"
5162
  msgstr ""
5163
 
5164
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:38
5165
  msgid "Desktop"
5166
  msgstr ""
5167
 
5168
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:41
5169
  msgid "Tablet"
5170
  msgstr ""
5171
 
5172
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:44
5173
  msgid "Mobile"
5174
  msgstr ""
5175
 
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 "
7205
  msgid "Insert name for export file"
7206
  msgstr ""
7207
 
7208
+ #~ msgid "Filtering"
7209
+ #~ msgstr "Filtriranje"
7210
+
7211
  #, fuzzy
7212
  #~ msgid "tr"
7213
  #~ msgstr "tr"
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: table, table builder, data tables, tables, charts, simple table, tables fr
6
  Requires at least: 4.0
7
  Tested up to: 5.6
8
  Requires PHP: 5.6
9
- Stable tag: 2.1.6
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -75,7 +75,7 @@ Once you are happy with the design of your WordPress table, you can easily inser
75
 
76
  Additionally, each table (except simple table) can have a search bar and can have the following functions: “Copy to Clipboard”, “Export to CSV”, “Export to PDF”, “Export to XLS”. All these functionalities are configurable and it is your decision whether to toggle these on or off.
77
 
78
- Following column data types are supported in data tables(tables created from Excel, CSV , JSON, XML or Serialized PHP array). Most column types, except the images, have their own sorting rules:
79
 
80
  * String - [Text and video documentation](https://wpdatatables.com/documentation/column-features/string-columns/)
81
  * Integer - [Text and video documentation](https://wpdatatables.com/documentation/column-features/integer-columns/)
@@ -203,6 +203,15 @@ This can be changed from the “Number format” drop-down menu in the wpDataTab
203
 
204
  == Changelog ==
205
 
 
 
 
 
 
 
 
 
 
206
  = 2.1.6 =
207
  * BugFix: Fixed issue with Fatal errors on Dashboard page if PHP extensions are not installed.
208
  * Compatibility with WordPress 5.6 approved.
6
  Requires at least: 4.0
7
  Tested up to: 5.6
8
  Requires PHP: 5.6
9
+ Stable tag: 2.1.7
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
75
 
76
  Additionally, each table (except simple table) can have a search bar and can have the following functions: “Copy to Clipboard”, “Export to CSV”, “Export to PDF”, “Export to XLS”. All these functionalities are configurable and it is your decision whether to toggle these on or off.
77
 
78
+ Following column data types are supported in data tables (Data tables created from Excel, CSV , JSON, XML or Serialized PHP array). Most column types, except the images, have their own sorting rules:
79
 
80
  * String - [Text and video documentation](https://wpdatatables.com/documentation/column-features/string-columns/)
81
  * Integer - [Text and video documentation](https://wpdatatables.com/documentation/column-features/integer-columns/)
203
 
204
  == Changelog ==
205
 
206
+ = 2.1.7 =
207
+ * Feature: New option to set column data to be available/disabled in global Search results
208
+ * Feature: New option to set NOFOLLOW relation for links in simple and data tables
209
+ * BugFix: Fixed issue with saving page in Divi builder with simple table shortcode.
210
+ * BugFix: Fixed issue with not showing tabs in backend after switch.
211
+ * BugFix: Fixed issue with tooltip when is loaded jQuery UI.
212
+ * BugFix: Fixed issue with disappearing Display length selectbox.
213
+ * Other small bug fixes and stability improvements.
214
+
215
  = 2.1.6 =
216
  * BugFix: Fixed issue with Fatal errors on Dashboard page if PHP extensions are not installed.
217
  * Compatibility with WordPress 5.6 approved.
source/class.link.wpdatacolumn.php CHANGED
@@ -8,6 +8,7 @@ class LinkWDTColumn extends WDTColumn
8
  protected $_jsDataType = 'string';
9
  protected $_dataType = 'string';
10
  protected $_linkTargetAttribute = '_self';
 
11
  protected $_linkButtonAttribute = 0;
12
  protected $_linkButtonLabel = '';
13
  protected $_linkButtonClass = '';
@@ -21,6 +22,7 @@ class LinkWDTColumn extends WDTColumn
21
  parent::__construct($properties);
22
  $this->_dataType = 'link';
23
  $this->setLinkTargetAttribute(WDTTools::defineDefaultValue($properties, 'linkTargetAttribute', '_self'));
 
24
  $this->setLinkButtonAttribute(WDTTools::defineDefaultValue($properties, 'linkButtonAttribute', 0));
25
  $this->setLinkButtonLabel(WDTTools::defineDefaultValue($properties, 'linkButtonLabel', ''));
26
  $this->setLinkButtonClass(WDTTools::defineDefaultValue($properties, 'linkButtonClass', ''));
@@ -34,6 +36,7 @@ class LinkWDTColumn extends WDTColumn
34
  public function prepareCellOutput($content)
35
  {
36
  $targetAttribute = $this->getLinkTargetAttribute();
 
37
  $buttonClass = $this->getLinkButtonClass();
38
 
39
  if (strpos($content, '||') !== false) {
@@ -41,9 +44,9 @@ class LinkWDTColumn extends WDTColumn
41
  $buttonLabel = $this->getLinkButtonLabel() !== '' ? $this->getLinkButtonLabel() : $content;
42
 
43
  if ($this->getLinkButtonAttribute() == 1 && $content !== '') {
44
- $formattedValue = "<a data-content='{$content}' href='{$link}' target='{$targetAttribute}'><button class='{$buttonClass}'>{$buttonLabel}</button></a>";
45
  } else {
46
- $formattedValue = "<a data-content='{$content}' href='{$link}' target='{$targetAttribute}'>{$content}</a>";
47
  }
48
  } else {
49
  if ($this->_inputType == 'attachment') {
@@ -52,12 +55,12 @@ class LinkWDTColumn extends WDTColumn
52
  if (!empty($content)) {
53
  if($this->getLinkButtonAttribute() == 1 ){
54
  if( $this->getLinkButtonLabel() !==''){
55
- $formattedValue = "<a href='{$content}' target='{$targetAttribute}'><button class='{$buttonClass}'>{$buttonLabel}</button></a>";
56
  }else{
57
- $formattedValue = "<a href='{$content}' target='{$targetAttribute}'><button class='{$buttonClass}'>{$this->_title}</button></a>";
58
  }
59
  }else{
60
- $formattedValue = "<a href='{$content}' target='{$targetAttribute}'>{$this->_title}</a>";
61
  }
62
  } else {
63
  $formattedValue = '';
@@ -65,12 +68,12 @@ class LinkWDTColumn extends WDTColumn
65
  } else {
66
  if ($this->getLinkButtonAttribute() == 1 && $content !== '') {
67
  $buttonLabel = $this->getLinkButtonLabel() !== '' ? $this->getLinkButtonLabel() : $content;
68
- $formattedValue = "<a href='{$content}' target='{$targetAttribute}'><button class='{$buttonClass}'>{$buttonLabel}</button></a>";
69
  } else {
70
  if($content == ''){
71
  return null;
72
  }else {
73
- $formattedValue = "<a href='{$content}' target='{$targetAttribute}'>{$content}</a>";
74
  }
75
  }
76
  }
@@ -95,6 +98,22 @@ class LinkWDTColumn extends WDTColumn
95
  $this->_linkTargetAttribute = $linkTargetAttribute;
96
  }
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  /**
99
  * @return int
100
  */
8
  protected $_jsDataType = 'string';
9
  protected $_dataType = 'string';
10
  protected $_linkTargetAttribute = '_self';
11
+ protected $_linkNofollowAttribute = 0;
12
  protected $_linkButtonAttribute = 0;
13
  protected $_linkButtonLabel = '';
14
  protected $_linkButtonClass = '';
22
  parent::__construct($properties);
23
  $this->_dataType = 'link';
24
  $this->setLinkTargetAttribute(WDTTools::defineDefaultValue($properties, 'linkTargetAttribute', '_self'));
25
+ $this->setLinkNofollowAttribute(WDTTools::defineDefaultValue($properties, 'linkNofollowAttribute', 0));
26
  $this->setLinkButtonAttribute(WDTTools::defineDefaultValue($properties, 'linkButtonAttribute', 0));
27
  $this->setLinkButtonLabel(WDTTools::defineDefaultValue($properties, 'linkButtonLabel', ''));
28
  $this->setLinkButtonClass(WDTTools::defineDefaultValue($properties, 'linkButtonClass', ''));
36
  public function prepareCellOutput($content)
37
  {
38
  $targetAttribute = $this->getLinkTargetAttribute();
39
+ $nofollowAttribute = $this->getLinkNofollowAttribute() == 1 ? 'rel="nofollow"' : '';
40
  $buttonClass = $this->getLinkButtonClass();
41
 
42
  if (strpos($content, '||') !== false) {
44
  $buttonLabel = $this->getLinkButtonLabel() !== '' ? $this->getLinkButtonLabel() : $content;
45
 
46
  if ($this->getLinkButtonAttribute() == 1 && $content !== '') {
47
+ $formattedValue = "<a data-content='{$content}' href='{$link}' {$nofollowAttribute} target='{$targetAttribute}'><button class='{$buttonClass}'>{$buttonLabel}</button></a>";
48
  } else {
49
+ $formattedValue = "<a data-content='{$content}' href='{$link}' {$nofollowAttribute} target='{$targetAttribute}'>{$content}</a>";
50
  }
51
  } else {
52
  if ($this->_inputType == 'attachment') {
55
  if (!empty($content)) {
56
  if($this->getLinkButtonAttribute() == 1 ){
57
  if( $this->getLinkButtonLabel() !==''){
58
+ $formattedValue = "<a href='{$content}' {$nofollowAttribute} target='{$targetAttribute}'><button class='{$buttonClass}'>{$buttonLabel}</button></a>";
59
  }else{
60
+ $formattedValue = "<a href='{$content}' {$nofollowAttribute} target='{$targetAttribute}'><button class='{$buttonClass}'>{$this->_title}</button></a>";
61
  }
62
  }else{
63
+ $formattedValue = "<a href='{$content}' {$nofollowAttribute} target='{$targetAttribute}'>{$this->_title}</a>";
64
  }
65
  } else {
66
  $formattedValue = '';
68
  } else {
69
  if ($this->getLinkButtonAttribute() == 1 && $content !== '') {
70
  $buttonLabel = $this->getLinkButtonLabel() !== '' ? $this->getLinkButtonLabel() : $content;
71
+ $formattedValue = "<a href='{$content}' {$nofollowAttribute} target='{$targetAttribute}'><button class='{$buttonClass}'>{$buttonLabel}</button></a>";
72
  } else {
73
  if($content == ''){
74
  return null;
75
  }else {
76
+ $formattedValue = "<a href='{$content}' {$nofollowAttribute} target='{$targetAttribute}'>{$content}</a>";
77
  }
78
  }
79
  }
98
  $this->_linkTargetAttribute = $linkTargetAttribute;
99
  }
100
 
101
+ /**
102
+ * @return int
103
+ */
104
+ public function getLinkNofollowAttribute()
105
+ {
106
+ return $this->_linkNofollowAttribute;
107
+ }
108
+
109
+ /**
110
+ * @param int $linkNofollowAttribute
111
+ */
112
+ public function setLinkNofollowAttribute($linkNofollowAttribute)
113
+ {
114
+ $this->_linkNofollowAttribute = $linkNofollowAttribute;
115
+ }
116
+
117
  /**
118
  * @return int
119
  */
source/class.wdtconfigcontroller.php CHANGED
@@ -119,12 +119,12 @@ class WDTConfigController {
119
  * @return array|null|bool|object|stdClass
120
  * @throws Exception
121
  */
122
- public static function loadTableFromDB($tableId) {
123
  global $wpdb;
124
 
125
  do_action('wpdatatables_before_get_table_metadata', $tableId);
126
 
127
- if (!isset(self::$_tableConfigCache[$tableId])) {
128
 
129
  $tableQuery = $wpdb->prepare(
130
  'SELECT * FROM ' . $wpdb->prefix . 'wpdatatables WHERE id = %d',
@@ -405,6 +405,7 @@ class WDTConfigController {
405
  $column->display_header = sanitize_text_field($column->display_header);
406
  $column->editingDefaultValue = sanitize_text_field($column->editingDefaultValue);
407
  $column->exactFiltering = (int)$column->exactFiltering;
 
408
  $column->filterDefaultValue = sanitize_text_field($column->filterDefaultValue);
409
  $column->filterLabel = sanitize_text_field($column->filterLabel);
410
  $column->formula = sanitize_text_field($column->formula);
@@ -414,6 +415,7 @@ class WDTConfigController {
414
  $column->id_column = (int)$column->id_column;
415
  $column->orig_header = sanitize_text_field($column->orig_header);
416
  $column->linkTargetAttribute = sanitize_text_field($column->linkTargetAttribute);
 
417
  $column->linkButtonAttribute = (int)$column->linkButtonAttribute;
418
  $column->linkButtonLabel = sanitize_text_field($column->linkButtonLabel);
419
  $column->linkButtonClass = sanitize_text_field($column->linkButtonClass);
@@ -700,12 +702,16 @@ class WDTConfigController {
700
  $feColumn ? $feColumn->dateInputFormat : '';
701
  $columnConfig['advanced_settings']['linkTargetAttribute'] =
702
  $feColumn ? $feColumn->linkTargetAttribute : '';
 
 
703
  $columnConfig['advanced_settings']['linkButtonAttribute'] =
704
  $feColumn ? $feColumn->linkButtonAttribute : 0;
705
  $columnConfig['advanced_settings']['linkButtonLabel'] =
706
  $feColumn ? $feColumn->linkButtonLabel : null;
707
  $columnConfig['advanced_settings']['linkButtonClass'] =
708
  $feColumn ? $feColumn->linkButtonClass : null;
 
 
709
 
710
 
711
 
@@ -846,12 +852,16 @@ class WDTConfigController {
846
  $advancedSettings->dateInputFormat : '';
847
  $feColumn->linkTargetAttribute = isset($advancedSettings->linkTargetAttribute) ?
848
  $advancedSettings->linkTargetAttribute : '';
 
 
849
  $feColumn->linkButtonAttribute = isset($advancedSettings->linkButtonAttribute) ?
850
  $advancedSettings->linkButtonAttribute : 0;
851
  $feColumn->linkButtonLabel = isset($advancedSettings->linkButtonLabel) ?
852
  $advancedSettings->linkButtonLabel : null;
853
  $feColumn->linkButtonClass = isset($advancedSettings->linkButtonClass) ?
854
  $advancedSettings->linkButtonClass : null;
 
 
855
 
856
  if ($feColumn->possibleValuesType == 'foreignkey') {
857
  if (!isset($feColumn->foreignKeyRule)) {
119
  * @return array|null|bool|object|stdClass
120
  * @throws Exception
121
  */
122
+ public static function loadTableFromDB($tableId, $loadFromCache = true) {
123
  global $wpdb;
124
 
125
  do_action('wpdatatables_before_get_table_metadata', $tableId);
126
 
127
+ if (!isset(self::$_tableConfigCache[$tableId]) || $loadFromCache === false) {
128
 
129
  $tableQuery = $wpdb->prepare(
130
  'SELECT * FROM ' . $wpdb->prefix . 'wpdatatables WHERE id = %d',
405
  $column->display_header = sanitize_text_field($column->display_header);
406
  $column->editingDefaultValue = sanitize_text_field($column->editingDefaultValue);
407
  $column->exactFiltering = (int)$column->exactFiltering;
408
+ $column->globalSearchColumn = (int)($column->globalSearchColumn);
409
  $column->filterDefaultValue = sanitize_text_field($column->filterDefaultValue);
410
  $column->filterLabel = sanitize_text_field($column->filterLabel);
411
  $column->formula = sanitize_text_field($column->formula);
415
  $column->id_column = (int)$column->id_column;
416
  $column->orig_header = sanitize_text_field($column->orig_header);
417
  $column->linkTargetAttribute = sanitize_text_field($column->linkTargetAttribute);
418
+ $column->linkNofollowAttribute = (int)($column->linkNofollowAttribute);
419
  $column->linkButtonAttribute = (int)$column->linkButtonAttribute;
420
  $column->linkButtonLabel = sanitize_text_field($column->linkButtonLabel);
421
  $column->linkButtonClass = sanitize_text_field($column->linkButtonClass);
702
  $feColumn ? $feColumn->dateInputFormat : '';
703
  $columnConfig['advanced_settings']['linkTargetAttribute'] =
704
  $feColumn ? $feColumn->linkTargetAttribute : '';
705
+ $columnConfig['advanced_settings']['linkNofollowAttribute'] =
706
+ $feColumn ? $feColumn->linkNofollowAttribute : 0;
707
  $columnConfig['advanced_settings']['linkButtonAttribute'] =
708
  $feColumn ? $feColumn->linkButtonAttribute : 0;
709
  $columnConfig['advanced_settings']['linkButtonLabel'] =
710
  $feColumn ? $feColumn->linkButtonLabel : null;
711
  $columnConfig['advanced_settings']['linkButtonClass'] =
712
  $feColumn ? $feColumn->linkButtonClass : null;
713
+ $columnConfig['advanced_settings']['globalSearchColumn'] =
714
+ $feColumn ? $feColumn->globalSearchColumn : 1;
715
 
716
 
717
 
852
  $advancedSettings->dateInputFormat : '';
853
  $feColumn->linkTargetAttribute = isset($advancedSettings->linkTargetAttribute) ?
854
  $advancedSettings->linkTargetAttribute : '';
855
+ $feColumn->linkNofollowAttribute = isset($advancedSettings->linkNofollowAttribute) ?
856
+ $advancedSettings->linkNofollowAttribute : 0;
857
  $feColumn->linkButtonAttribute = isset($advancedSettings->linkButtonAttribute) ?
858
  $advancedSettings->linkButtonAttribute : 0;
859
  $feColumn->linkButtonLabel = isset($advancedSettings->linkButtonLabel) ?
860
  $advancedSettings->linkButtonLabel : null;
861
  $feColumn->linkButtonClass = isset($advancedSettings->linkButtonClass) ?
862
  $advancedSettings->linkButtonClass : null;
863
+ $feColumn->globalSearchColumn = isset($advancedSettings->globalSearchColumn) ?
864
+ $advancedSettings->globalSearchColumn : 1;
865
 
866
  if ($feColumn->possibleValuesType == 'foreignkey') {
867
  if (!isset($feColumn->foreignKeyRule)) {
source/class.wpdatacolumn.php CHANGED
@@ -2,7 +2,8 @@
2
 
3
  defined('ABSPATH') or die("Cannot access pages directly.");
4
 
5
- class WDTColumn {
 
6
 
7
  protected $_inputType = '';
8
  protected $_hiddenOnPhones = false;
@@ -34,12 +35,14 @@ class WDTColumn {
34
  protected $_editingDefaultValue = null;
35
  protected $_parentTable = null;
36
  protected $_linkButtonLabel;
 
37
 
38
  /**
39
  * WDTColumn constructor.
40
  * @param array $properties
41
  */
42
- public function __construct($properties = array()) {
 
43
  $this->_cssClassArray = WDTTools::defineDefaultValue($properties, 'classes', array());
44
  $this->_textBefore = WDTTools::defineDefaultValue($properties, 'text_before', '');
45
  $this->_textAfter = WDTTools::defineDefaultValue($properties, 'text_after', '');
@@ -49,6 +52,8 @@ class WDTColumn {
49
  $this->_width = WDTTools::defineDefaultValue($properties, 'width', '');
50
  $this->_orig_header = WDTTools::defineDefaultValue($properties, 'orig_header', '');
51
  $this->_exactFiltering = WDTTools::defineDefaultValue($properties, 'exactFiltering', '');
 
 
52
  $this->setFilterDefaultValue(WDTTools::defineDefaultValue($properties, 'filterDefaultValue', null));
53
  $this->setFilterLabel(WDTTools::defineDefaultValue($properties, 'filterLabel', null));
54
  $this->_possibleValuesType = WDTTools::defineDefaultValue($properties, 'possibleValuesType', '');
@@ -62,140 +67,160 @@ class WDTColumn {
62
  /**
63
  * @return string
64
  */
65
- public function getInputType() {
 
66
  return $this->_inputType;
67
  }
68
 
69
  /**
70
  * @param string $inputType
71
  */
72
- public function setInputType($inputType) {
 
73
  $this->_inputType = $inputType;
74
  }
75
 
76
  /**
77
  * @return bool
78
  */
79
- public function isHiddenOnPhones() {
 
80
  return $this->_hiddenOnPhones;
81
  }
82
 
83
  /**
84
  * @param bool $hiddenOnPhones
85
  */
86
- public function setHiddenOnPhones($hiddenOnPhones) {
 
87
  $this->_hiddenOnPhones = $hiddenOnPhones;
88
  }
89
 
90
  /**
91
  * @return bool
92
  */
93
- public function isHiddenOnTablets() {
 
94
  return $this->_hiddenOnTablets;
95
  }
96
 
97
  /**
98
  * @param bool $hiddenOnTablets
99
  */
100
- public function setHiddenOnTablets($hiddenOnTablets) {
 
101
  $this->_hiddenOnTablets = $hiddenOnTablets;
102
  }
103
 
104
  /**
105
  * @return string
106
  */
107
- public function getTitle() {
 
108
  return $this->_title;
109
  }
110
 
111
  /**
112
  * @param string $title
113
  */
114
- public function setTitle($title) {
 
115
  $this->_title = $title;
116
  }
117
 
118
  /**
119
  * @return string
120
  */
121
- public function getOriginalHeader() {
 
122
  return $this->_orig_header;
123
  }
124
 
125
  /**
126
  * @param string $orig_header
127
  */
128
- public function setOriginalHeader($orig_header) {
 
129
  $this->_orig_header = $orig_header;
130
  }
131
 
132
  /**
133
  * @return bool|string
134
  */
135
- public function isVisible() {
 
136
  return $this->_isVisible;
137
  }
138
 
139
  /**
140
  * @return bool
141
  */
142
- public function isVisibleOnMobiles() {
 
143
  return ($this->_isVisible && !$this->_hiddenOnPhones && !$this->_hiddenOnTablets);
144
  }
145
 
146
  /**
147
  * @param bool|string $isVisible
148
  */
149
- public function setIsVisible($isVisible) {
 
150
  $this->_isVisible = $isVisible;
151
  }
152
 
153
  /**
154
  * @return mixed
155
  */
156
- public function getCssStyle() {
 
157
  return $this->_cssStyle;
158
  }
159
 
160
  /**
161
  * @param mixed $cssStyle
162
  */
163
- public function setCssStyle($cssStyle) {
 
164
  $this->_cssStyle = $cssStyle;
165
  }
166
 
167
  /**
168
  * @return string
169
  */
170
- public function getWidth() {
 
171
  return $this->_width ? $this->_width : 'auto';
172
  }
173
 
174
  /**
175
  * @param string $width
176
  */
177
- public function setWidth($width) {
 
178
  $this->_width = $width;
179
  }
180
 
181
  /**
182
  * @return bool
183
  */
184
- public function getSorting() {
 
185
  return $this->_sorting;
186
  }
187
 
188
  /**
189
  * @param int $sorting
190
  */
191
- public function setSorting($sorting) {
 
192
  $this->_sorting = (bool)$sorting;
193
  }
194
 
195
  /**
196
  * @return mixed
197
  */
198
- public function getCSSClasses() {
 
199
  $classesStr = implode(' ', $this->_cssClassArray);
200
  $classesStr = apply_filters('wpdatatables_filter_column_cssClassArray', $classesStr, $this->_title);
201
  return $classesStr;
@@ -204,28 +229,32 @@ class WDTColumn {
204
  /**
205
  * @param $class
206
  */
207
- public function addCSSClass($class) {
 
208
  $this->_cssClassArray[] = $class;
209
  }
210
 
211
  /**
212
  * @return mixed
213
  */
214
- public function getDataType() {
 
215
  return $this->_dataType;
216
  }
217
 
218
  /**
219
  * @param mixed $dataType
220
  */
221
- public function setDataType($dataType) {
 
222
  $this->_dataType = $dataType;
223
  }
224
 
225
  /**
226
  * @return string
227
  */
228
- public function getFilterType() {
 
229
  return $this->_filterType;
230
  }
231
 
@@ -233,7 +262,8 @@ class WDTColumn {
233
  * @param $filterType
234
  * @throws WDTException
235
  */
236
- public function setFilterType($filterType) {
 
237
  if (!in_array($filterType,
238
  array(
239
  'none',
@@ -261,14 +291,16 @@ class WDTColumn {
261
  /**
262
  * @return array
263
  */
264
- public function getPossibleValues() {
 
265
  return $this->_possibleValues;
266
  }
267
 
268
  /**
269
  * @param array $possibleValues
270
  */
271
- public function setPossibleValues($possibleValues) {
 
272
  if (!empty($possibleValues)) {
273
  if (!is_array($possibleValues)) {
274
  $possibleValues = explode('|', $possibleValues);
@@ -282,7 +314,8 @@ class WDTColumn {
282
  /**
283
  * @return string
284
  */
285
- public function getFilterDefaultValue() {
 
286
  $value = $this->_filterDefaultValue;
287
  if (is_array($value)) {
288
  foreach ($value as &$singleValue) {
@@ -297,7 +330,8 @@ class WDTColumn {
297
  /**
298
  * @param string $defaultValue
299
  */
300
- public function setFilterDefaultValue($defaultValue) {
 
301
  if (strpos($defaultValue, '|') !== false) {
302
  $defaultValue = explode('|', $defaultValue);
303
  }
@@ -307,63 +341,72 @@ class WDTColumn {
307
  /**
308
  * @return string
309
  */
310
- public function getTextBefore() {
 
311
  return $this->_textBefore;
312
  }
313
 
314
  /**
315
  * @param string $textBefore
316
  */
317
- public function setTextBefore($textBefore) {
 
318
  $this->_textBefore = $textBefore;
319
  }
320
 
321
  /**
322
  * @return string
323
  */
324
- public function getTextAfter() {
 
325
  return $this->_textAfter;
326
  }
327
 
328
  /**
329
  * @param string $textAfter
330
  */
331
- public function setTextAfter($textAfter) {
 
332
  $this->_textAfter = $textAfter;
333
  }
334
 
335
  /**
336
  * @return bool
337
  */
338
- public function isNotNull() {
 
339
  return $this->_notNull;
340
  }
341
 
342
  /**
343
  * @param bool $notNull
344
  */
345
- public function setNotNull($notNull) {
 
346
  $this->_notNull = (bool)$notNull;
347
  }
348
 
349
  /**
350
  * @return bool
351
  */
352
- public function isShowThousandsSeparator() {
 
353
  return $this->_showThousandsSeparator;
354
  }
355
 
356
  /**
357
  * @param bool $showThousandsSeparator
358
  */
359
- public function setShowThousandsSeparator($showThousandsSeparator) {
 
360
  $this->_showThousandsSeparator = $showThousandsSeparator;
361
  }
362
 
363
  /**
364
  * @return array
365
  */
366
- public function getConditionalFormattingData() {
 
367
  return $this->_conditionalFormattingData;
368
  }
369
 
@@ -373,146 +416,184 @@ class WDTColumn {
373
  * placeholder is used
374
  * @param array $conditionalFormattingData
375
  */
376
- public function setConditionalFormattingData($conditionalFormattingData) {
 
377
  $this->_conditionalFormattingData = $conditionalFormattingData;
378
  }
379
 
380
  /**
381
  * @return bool
382
  */
383
- public function isSearchable() {
 
384
  return $this->_searchable;
385
  }
386
 
387
  /**
388
  * @param bool $searchable
389
  */
390
- public function setSearchable($searchable) {
 
391
  $this->_searchable = $searchable;
392
  }
393
 
394
  /**
395
  * @return int
396
  */
397
- public function getDecimalPlaces() {
 
398
  return $this->_decimalPlaces;
399
  }
400
 
401
  /**
402
  * @param int $decimalPlaces
403
  */
404
- public function setDecimalPlaces($decimalPlaces) {
 
405
  $this->_decimalPlaces = $decimalPlaces;
406
  }
407
 
408
  /**
409
  * @return string
410
  */
411
- public function getExactFiltering() {
 
412
  return $this->_exactFiltering;
413
  }
414
 
415
  /**
416
  * @param string $exactFiltering
417
  */
418
- public function setExactFiltering($exactFiltering) {
 
419
  $this->_exactFiltering = $exactFiltering;
420
  }
421
 
422
  /**
423
  * @return string
424
  */
425
- public function getFilterLabel() {
 
426
  return $this->_filterLabel;
427
  }
428
 
429
  /**
430
  * @param string $filterLabel
431
  */
432
- public function setFilterLabel($filterLabel) {
 
433
  $this->_filterLabel = $filterLabel;
434
  }
 
435
  /**
436
  * @return string
437
  */
438
- public function getLinkButtonLabel(){
 
439
  return $this->_linkButtonLabel;
440
  }
441
 
442
  /**
443
  * @param string $linkButtonLabel
444
  */
445
- public function setLinkButtonLabel($linkButtonLabel){
 
446
  $this->_linkButtonLabel = $linkButtonLabel;
447
  }
448
 
449
  /**
450
  * @return string
451
  */
452
- public function getPossibleValuesType() {
 
453
  return $this->_possibleValuesType;
454
  }
455
 
456
  /**
457
  * @param string $possibleValuesType
458
  */
459
- public function setPossibleValuesType($possibleValuesType) {
 
460
  $this->_possibleValuesType = $possibleValuesType;
461
  }
462
 
463
  /**
464
  * @return mixed
465
  */
466
- public function getPossibleValuesAddEmpty() {
 
467
  return $this->_possibleValuesAddEmpty;
468
  }
469
 
470
  /**
471
  * @param mixed $possibleValuesAddEmpty
472
  */
473
- public function setPossibleValuesAddEmpty($possibleValuesAddEmpty) {
 
474
  $this->_possibleValuesAddEmpty = (bool)$possibleValuesAddEmpty;
475
  }
476
 
477
  /**
478
  * @return mixed
479
  */
480
- public function getForeignKeyRule() {
 
481
  return $this->_foreignKeyRule;
482
  }
483
 
484
  /**
485
  * @param mixed $foreignKeyRule
486
  */
487
- public function setForeignKeyRule($foreignKeyRule) {
 
488
  $this->_foreignKeyRule = $foreignKeyRule;
489
  }
490
 
491
  /**
492
  * @return string
493
  */
494
- public function getEditingDefaultValue() {
 
495
  return $this->_editingDefaultValue;
496
  }
497
 
498
  /**
499
  * @param string $editingDefaultValue
500
  */
501
- public function setEditingDefaultValue($editingDefaultValue) {
 
502
  $this->_editingDefaultValue = $editingDefaultValue;
503
  }
504
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  /**
506
  * @return null
507
  */
508
- public function getParentTable() {
 
509
  return $this->_parentTable;
510
  }
511
 
512
  /**
513
  * @param null $parentTable
514
  */
515
- public function setParentTable($parentTable) {
 
516
  $this->_parentTable = $parentTable;
517
  }
518
 
@@ -520,7 +601,8 @@ class WDTColumn {
520
  * @param $cellContent
521
  * @return mixed
522
  */
523
- public function returnCellValue($cellContent) {
 
524
  $cellValue = $this->prepareCellOutput($cellContent);
525
  $cellValue = apply_filters('wpdatatables_filter_cell_val', $cellValue, $this->getParentTable()->getWpId());
526
  return $cellValue;
@@ -530,34 +612,39 @@ class WDTColumn {
530
  * Get column type for Google Charts
531
  * @return string
532
  */
533
- public function getGoogleChartColumnType() {
 
534
  return 'string';
535
  }
536
 
537
- public function hideOnTablets(){
538
- $this->_hiddenOnTablets = true;
539
- }
 
540
 
541
- public function showOnTablets(){
542
- $this->_hiddenOnTablets = false;
543
- }
 
544
 
545
- public function getHiddenAttr(){
546
- $hidden = array();
547
- if($this->_hiddenOnPhones){
548
- $hidden[] = 'phone';
549
- }
550
- if($this->_hiddenOnTablets){
551
- $hidden[] = 'tablet';
552
- }
553
- return implode(',',$hidden);
554
- }
 
555
 
556
  /**
557
  * @param $content
558
  * @return mixed
559
  */
560
- public function prepareCellOutput($content) {
 
561
  if (is_array($content)) {
562
  return $content['value'];
563
  } else {
@@ -571,7 +658,8 @@ class WDTColumn {
571
  * @param $value
572
  * @return mixed
573
  */
574
- private function applyPlaceholders($value) {
 
575
  global $wdtVar1, $wdtVar2, $wdtVar3;
576
 
577
  // Current user ID
@@ -613,7 +701,8 @@ class WDTColumn {
613
  * @param array $properties
614
  * @return mixed
615
  */
616
- public static function generateColumn($wdtColumnType = 'string', $properties = array()) {
 
617
  if (!$wdtColumnType) {
618
  $wdtColumnType = 'string';
619
  }
@@ -627,21 +716,22 @@ class WDTColumn {
627
  * Get JSON for a column
628
  * @return StdClass
629
  */
630
- public function getColumnJSON($columnID) {
 
631
  $colJsDefinition = new StdClass();
632
  $colJsDefinition->sType = $this->_jsDataType;
633
  $colJsDefinition->wdtType = $this->_dataType;
634
  $colJsDefinition->className = $this->getCSSClasses() . ' column-' . sanitize_html_class(strtolower(str_replace(' ', '-', $this->_orig_header)));
635
  $colJsDefinition->bVisible = $this->isVisible();
636
  $colJsDefinition->orderable = $this->getSorting();
637
- $colJsDefinition->searchable = $this->_searchable;
638
  $colJsDefinition->InputType = $this->_inputType;
639
  $colJsDefinition->name = $this->_orig_header;
640
  $colJsDefinition->origHeader = $this->_orig_header;
641
  $colJsDefinition->notNull = $this->_notNull;
642
  $colJsDefinition->conditionalFormattingRules = $this->getConditionalFormattingData();
643
  if (sanitize_html_class(strtolower(str_replace(' ', '-', $this->_orig_header)))) {
644
- $colJsDefinition->className = $this->getCSSClasses() . ' column-' . sanitize_html_class( strtolower( str_replace( ' ', '-', $this->_orig_header ) ) );
645
  } else {
646
  $colJsDefinition->className = $this->getCSSClasses() . ' column-' . $columnID;
647
  }
@@ -656,13 +746,15 @@ class WDTColumn {
656
  * Get Filter definition for a column
657
  * @return stdClass
658
  */
659
- public function getJSFilterDefinition() {
 
660
  /** @var WPDataTable $parentTable */
661
  $parentTable = $this->getParentTable();
662
  $jsFilterDef = new stdClass();
663
 
664
  $jsFilterDef->type = $this->getFilterType();
665
  $jsFilterDef->possibleValuesType = $this->getPossibleValuesType();
 
666
 
667
  $jsFilterDef->values = null;
668
  if (in_array($this->getFilterType(), array('select', 'checkbox')) || in_array($this->getInputType(), array('selectbox', 'multi-selectbox'))) {
@@ -697,7 +789,8 @@ class WDTColumn {
697
  * Get Editing definition for a column
698
  * @return stdClass
699
  */
700
- public function getJSEditingDefinition() {
 
701
  $jsEditingDef = new stdClass();
702
 
703
  $jsEditingDef->editorInputType = $this->getInputType();
@@ -711,25 +804,25 @@ class WDTColumn {
711
  * Get values that will be used in the in the Default Value Inputs
712
  * @return array
713
  */
714
- public function getDefaultValues() {
 
715
  /** @var WPDataTable $parentTable */
716
  $parentTable = $this->getParentTable();
717
  $values = array();
718
 
719
  if (!in_array($this->getDataType(), array('date', 'datetime', 'time', 'formula'), true) && $this->getDataType() != '' && empty($this->_formula)) {
720
 
721
-
722
 
723
- foreach ($parentTable->getDataRows() as $row) {
724
- $values[] = $row[$this->getOriginalHeader()];
725
- }
726
- $values = array_unique($values);
 
727
 
728
-
729
  }
730
 
731
  return $values;
732
  }
733
 
734
-
735
  }
2
 
3
  defined('ABSPATH') or die("Cannot access pages directly.");
4
 
5
+ class WDTColumn
6
+ {
7
 
8
  protected $_inputType = '';
9
  protected $_hiddenOnPhones = false;
35
  protected $_editingDefaultValue = null;
36
  protected $_parentTable = null;
37
  protected $_linkButtonLabel;
38
+ protected $_globalSearchColumn = 1;
39
 
40
  /**
41
  * WDTColumn constructor.
42
  * @param array $properties
43
  */
44
+ public function __construct($properties = array())
45
+ {
46
  $this->_cssClassArray = WDTTools::defineDefaultValue($properties, 'classes', array());
47
  $this->_textBefore = WDTTools::defineDefaultValue($properties, 'text_before', '');
48
  $this->_textAfter = WDTTools::defineDefaultValue($properties, 'text_after', '');
52
  $this->_width = WDTTools::defineDefaultValue($properties, 'width', '');
53
  $this->_orig_header = WDTTools::defineDefaultValue($properties, 'orig_header', '');
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', '');
67
  /**
68
  * @return string
69
  */
70
+ public function getInputType()
71
+ {
72
  return $this->_inputType;
73
  }
74
 
75
  /**
76
  * @param string $inputType
77
  */
78
+ public function setInputType($inputType)
79
+ {
80
  $this->_inputType = $inputType;
81
  }
82
 
83
  /**
84
  * @return bool
85
  */
86
+ public function isHiddenOnPhones()
87
+ {
88
  return $this->_hiddenOnPhones;
89
  }
90
 
91
  /**
92
  * @param bool $hiddenOnPhones
93
  */
94
+ public function setHiddenOnPhones($hiddenOnPhones)
95
+ {
96
  $this->_hiddenOnPhones = $hiddenOnPhones;
97
  }
98
 
99
  /**
100
  * @return bool
101
  */
102
+ public function isHiddenOnTablets()
103
+ {
104
  return $this->_hiddenOnTablets;
105
  }
106
 
107
  /**
108
  * @param bool $hiddenOnTablets
109
  */
110
+ public function setHiddenOnTablets($hiddenOnTablets)
111
+ {
112
  $this->_hiddenOnTablets = $hiddenOnTablets;
113
  }
114
 
115
  /**
116
  * @return string
117
  */
118
+ public function getTitle()
119
+ {
120
  return $this->_title;
121
  }
122
 
123
  /**
124
  * @param string $title
125
  */
126
+ public function setTitle($title)
127
+ {
128
  $this->_title = $title;
129
  }
130
 
131
  /**
132
  * @return string
133
  */
134
+ public function getOriginalHeader()
135
+ {
136
  return $this->_orig_header;
137
  }
138
 
139
  /**
140
  * @param string $orig_header
141
  */
142
+ public function setOriginalHeader($orig_header)
143
+ {
144
  $this->_orig_header = $orig_header;
145
  }
146
 
147
  /**
148
  * @return bool|string
149
  */
150
+ public function isVisible()
151
+ {
152
  return $this->_isVisible;
153
  }
154
 
155
  /**
156
  * @return bool
157
  */
158
+ public function isVisibleOnMobiles()
159
+ {
160
  return ($this->_isVisible && !$this->_hiddenOnPhones && !$this->_hiddenOnTablets);
161
  }
162
 
163
  /**
164
  * @param bool|string $isVisible
165
  */
166
+ public function setIsVisible($isVisible)
167
+ {
168
  $this->_isVisible = $isVisible;
169
  }
170
 
171
  /**
172
  * @return mixed
173
  */
174
+ public function getCssStyle()
175
+ {
176
  return $this->_cssStyle;
177
  }
178
 
179
  /**
180
  * @param mixed $cssStyle
181
  */
182
+ public function setCssStyle($cssStyle)
183
+ {
184
  $this->_cssStyle = $cssStyle;
185
  }
186
 
187
  /**
188
  * @return string
189
  */
190
+ public function getWidth()
191
+ {
192
  return $this->_width ? $this->_width : 'auto';
193
  }
194
 
195
  /**
196
  * @param string $width
197
  */
198
+ public function setWidth($width)
199
+ {
200
  $this->_width = $width;
201
  }
202
 
203
  /**
204
  * @return bool
205
  */
206
+ public function getSorting()
207
+ {
208
  return $this->_sorting;
209
  }
210
 
211
  /**
212
  * @param int $sorting
213
  */
214
+ public function setSorting($sorting)
215
+ {
216
  $this->_sorting = (bool)$sorting;
217
  }
218
 
219
  /**
220
  * @return mixed
221
  */
222
+ public function getCSSClasses()
223
+ {
224
  $classesStr = implode(' ', $this->_cssClassArray);
225
  $classesStr = apply_filters('wpdatatables_filter_column_cssClassArray', $classesStr, $this->_title);
226
  return $classesStr;
229
  /**
230
  * @param $class
231
  */
232
+ public function addCSSClass($class)
233
+ {
234
  $this->_cssClassArray[] = $class;
235
  }
236
 
237
  /**
238
  * @return mixed
239
  */
240
+ public function getDataType()
241
+ {
242
  return $this->_dataType;
243
  }
244
 
245
  /**
246
  * @param mixed $dataType
247
  */
248
+ public function setDataType($dataType)
249
+ {
250
  $this->_dataType = $dataType;
251
  }
252
 
253
  /**
254
  * @return string
255
  */
256
+ public function getFilterType()
257
+ {
258
  return $this->_filterType;
259
  }
260
 
262
  * @param $filterType
263
  * @throws WDTException
264
  */
265
+ public function setFilterType($filterType)
266
+ {
267
  if (!in_array($filterType,
268
  array(
269
  'none',
291
  /**
292
  * @return array
293
  */
294
+ public function getPossibleValues()
295
+ {
296
  return $this->_possibleValues;
297
  }
298
 
299
  /**
300
  * @param array $possibleValues
301
  */
302
+ public function setPossibleValues($possibleValues)
303
+ {
304
  if (!empty($possibleValues)) {
305
  if (!is_array($possibleValues)) {
306
  $possibleValues = explode('|', $possibleValues);
314
  /**
315
  * @return string
316
  */
317
+ public function getFilterDefaultValue()
318
+ {
319
  $value = $this->_filterDefaultValue;
320
  if (is_array($value)) {
321
  foreach ($value as &$singleValue) {
330
  /**
331
  * @param string $defaultValue
332
  */
333
+ public function setFilterDefaultValue($defaultValue)
334
+ {
335
  if (strpos($defaultValue, '|') !== false) {
336
  $defaultValue = explode('|', $defaultValue);
337
  }
341
  /**
342
  * @return string
343
  */
344
+ public function getTextBefore()
345
+ {
346
  return $this->_textBefore;
347
  }
348
 
349
  /**
350
  * @param string $textBefore
351
  */
352
+ public function setTextBefore($textBefore)
353
+ {
354
  $this->_textBefore = $textBefore;
355
  }
356
 
357
  /**
358
  * @return string
359
  */
360
+ public function getTextAfter()
361
+ {
362
  return $this->_textAfter;
363
  }
364
 
365
  /**
366
  * @param string $textAfter
367
  */
368
+ public function setTextAfter($textAfter)
369
+ {
370
  $this->_textAfter = $textAfter;
371
  }
372
 
373
  /**
374
  * @return bool
375
  */
376
+ public function isNotNull()
377
+ {
378
  return $this->_notNull;
379
  }
380
 
381
  /**
382
  * @param bool $notNull
383
  */
384
+ public function setNotNull($notNull)
385
+ {
386
  $this->_notNull = (bool)$notNull;
387
  }
388
 
389
  /**
390
  * @return bool
391
  */
392
+ public function isShowThousandsSeparator()
393
+ {
394
  return $this->_showThousandsSeparator;
395
  }
396
 
397
  /**
398
  * @param bool $showThousandsSeparator
399
  */
400
+ public function setShowThousandsSeparator($showThousandsSeparator)
401
+ {
402
  $this->_showThousandsSeparator = $showThousandsSeparator;
403
  }
404
 
405
  /**
406
  * @return array
407
  */
408
+ public function getConditionalFormattingData()
409
+ {
410
  return $this->_conditionalFormattingData;
411
  }
412
 
416
  * placeholder is used
417
  * @param array $conditionalFormattingData
418
  */
419
+ public function setConditionalFormattingData($conditionalFormattingData)
420
+ {
421
  $this->_conditionalFormattingData = $conditionalFormattingData;
422
  }
423
 
424
  /**
425
  * @return bool
426
  */
427
+ public function isSearchable()
428
+ {
429
  return $this->_searchable;
430
  }
431
 
432
  /**
433
  * @param bool $searchable
434
  */
435
+ public function setSearchable($searchable)
436
+ {
437
  $this->_searchable = $searchable;
438
  }
439
 
440
  /**
441
  * @return int
442
  */
443
+ public function getDecimalPlaces()
444
+ {
445
  return $this->_decimalPlaces;
446
  }
447
 
448
  /**
449
  * @param int $decimalPlaces
450
  */
451
+ public function setDecimalPlaces($decimalPlaces)
452
+ {
453
  $this->_decimalPlaces = $decimalPlaces;
454
  }
455
 
456
  /**
457
  * @return string
458
  */
459
+ public function getExactFiltering()
460
+ {
461
  return $this->_exactFiltering;
462
  }
463
 
464
  /**
465
  * @param string $exactFiltering
466
  */
467
+ public function setExactFiltering($exactFiltering)
468
+ {
469
  $this->_exactFiltering = $exactFiltering;
470
  }
471
 
472
  /**
473
  * @return string
474
  */
475
+ public function getFilterLabel()
476
+ {
477
  return $this->_filterLabel;
478
  }
479
 
480
  /**
481
  * @param string $filterLabel
482
  */
483
+ public function setFilterLabel($filterLabel)
484
+ {
485
  $this->_filterLabel = $filterLabel;
486
  }
487
+
488
  /**
489
  * @return string
490
  */
491
+ public function getLinkButtonLabel()
492
+ {
493
  return $this->_linkButtonLabel;
494
  }
495
 
496
  /**
497
  * @param string $linkButtonLabel
498
  */
499
+ public function setLinkButtonLabel($linkButtonLabel)
500
+ {
501
  $this->_linkButtonLabel = $linkButtonLabel;
502
  }
503
 
504
  /**
505
  * @return string
506
  */
507
+ public function getPossibleValuesType()
508
+ {
509
  return $this->_possibleValuesType;
510
  }
511
 
512
  /**
513
  * @param string $possibleValuesType
514
  */
515
+ public function setPossibleValuesType($possibleValuesType)
516
+ {
517
  $this->_possibleValuesType = $possibleValuesType;
518
  }
519
 
520
  /**
521
  * @return mixed
522
  */
523
+ public function getPossibleValuesAddEmpty()
524
+ {
525
  return $this->_possibleValuesAddEmpty;
526
  }
527
 
528
  /**
529
  * @param mixed $possibleValuesAddEmpty
530
  */
531
+ public function setPossibleValuesAddEmpty($possibleValuesAddEmpty)
532
+ {
533
  $this->_possibleValuesAddEmpty = (bool)$possibleValuesAddEmpty;
534
  }
535
 
536
  /**
537
  * @return mixed
538
  */
539
+ public function getForeignKeyRule()
540
+ {
541
  return $this->_foreignKeyRule;
542
  }
543
 
544
  /**
545
  * @param mixed $foreignKeyRule
546
  */
547
+ public function setForeignKeyRule($foreignKeyRule)
548
+ {
549
  $this->_foreignKeyRule = $foreignKeyRule;
550
  }
551
 
552
  /**
553
  * @return string
554
  */
555
+ public function getEditingDefaultValue()
556
+ {
557
  return $this->_editingDefaultValue;
558
  }
559
 
560
  /**
561
  * @param string $editingDefaultValue
562
  */
563
+ public function setEditingDefaultValue($editingDefaultValue)
564
+ {
565
  $this->_editingDefaultValue = $editingDefaultValue;
566
  }
567
 
568
+ /**
569
+ * @return int
570
+ */
571
+ public function getGlobalSearchColumn()
572
+ {
573
+ return $this->_globalSearchColumn;
574
+ }
575
+
576
+ /**
577
+ * @param int $globalSearchColumn
578
+ */
579
+ public function setGlobalSearchColumn($globalSearchColumn)
580
+ {
581
+ $this->_globalSearchColumn = $globalSearchColumn;
582
+ }
583
+
584
  /**
585
  * @return null
586
  */
587
+ public function getParentTable()
588
+ {
589
  return $this->_parentTable;
590
  }
591
 
592
  /**
593
  * @param null $parentTable
594
  */
595
+ public function setParentTable($parentTable)
596
+ {
597
  $this->_parentTable = $parentTable;
598
  }
599
 
601
  * @param $cellContent
602
  * @return mixed
603
  */
604
+ public function returnCellValue($cellContent)
605
+ {
606
  $cellValue = $this->prepareCellOutput($cellContent);
607
  $cellValue = apply_filters('wpdatatables_filter_cell_val', $cellValue, $this->getParentTable()->getWpId());
608
  return $cellValue;
612
  * Get column type for Google Charts
613
  * @return string
614
  */
615
+ public function getGoogleChartColumnType()
616
+ {
617
  return 'string';
618
  }
619
 
620
+ public function hideOnTablets()
621
+ {
622
+ $this->_hiddenOnTablets = true;
623
+ }
624
 
625
+ public function showOnTablets()
626
+ {
627
+ $this->_hiddenOnTablets = false;
628
+ }
629
 
630
+ public function getHiddenAttr()
631
+ {
632
+ $hidden = array();
633
+ if ($this->_hiddenOnPhones) {
634
+ $hidden[] = 'phone';
635
+ }
636
+ if ($this->_hiddenOnTablets) {
637
+ $hidden[] = 'tablet';
638
+ }
639
+ return implode(',', $hidden);
640
+ }
641
 
642
  /**
643
  * @param $content
644
  * @return mixed
645
  */
646
+ public function prepareCellOutput($content)
647
+ {
648
  if (is_array($content)) {
649
  return $content['value'];
650
  } else {
658
  * @param $value
659
  * @return mixed
660
  */
661
+ private function applyPlaceholders($value)
662
+ {
663
  global $wdtVar1, $wdtVar2, $wdtVar3;
664
 
665
  // Current user ID
701
  * @param array $properties
702
  * @return mixed
703
  */
704
+ public static function generateColumn($wdtColumnType = 'string', $properties = array())
705
+ {
706
  if (!$wdtColumnType) {
707
  $wdtColumnType = 'string';
708
  }
716
  * Get JSON for a column
717
  * @return StdClass
718
  */
719
+ public function getColumnJSON($columnID)
720
+ {
721
  $colJsDefinition = new StdClass();
722
  $colJsDefinition->sType = $this->_jsDataType;
723
  $colJsDefinition->wdtType = $this->_dataType;
724
  $colJsDefinition->className = $this->getCSSClasses() . ' column-' . sanitize_html_class(strtolower(str_replace(' ', '-', $this->_orig_header)));
725
  $colJsDefinition->bVisible = $this->isVisible();
726
  $colJsDefinition->orderable = $this->getSorting();
727
+ $colJsDefinition->searchable = $this->_searchable && $this->_globalSearchColumn;
728
  $colJsDefinition->InputType = $this->_inputType;
729
  $colJsDefinition->name = $this->_orig_header;
730
  $colJsDefinition->origHeader = $this->_orig_header;
731
  $colJsDefinition->notNull = $this->_notNull;
732
  $colJsDefinition->conditionalFormattingRules = $this->getConditionalFormattingData();
733
  if (sanitize_html_class(strtolower(str_replace(' ', '-', $this->_orig_header)))) {
734
+ $colJsDefinition->className = $this->getCSSClasses() . ' column-' . sanitize_html_class(strtolower(str_replace(' ', '-', $this->_orig_header)));
735
  } else {
736
  $colJsDefinition->className = $this->getCSSClasses() . ' column-' . $columnID;
737
  }
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'))) {
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();
804
  * Get values that will be used in the in the Default Value Inputs
805
  * @return array
806
  */
807
+ public function getDefaultValues()
808
+ {
809
  /** @var WPDataTable $parentTable */
810
  $parentTable = $this->getParentTable();
811
  $values = array();
812
 
813
  if (!in_array($this->getDataType(), array('date', 'datetime', 'time', 'formula'), true) && $this->getDataType() != '' && empty($this->_formula)) {
814
 
 
815
 
816
+ foreach ($parentTable->getDataRows() as $row) {
817
+ $values[] = $row[$this->getOriginalHeader()];
818
+ }
819
+ $values = array_unique($values);
820
+
821
 
 
822
  }
823
 
824
  return $values;
825
  }
826
 
827
+
828
  }
source/class.wpdatatable.php CHANGED
@@ -952,9 +952,11 @@ class WPDataTable
952
  $dataColumnProperties['foreignKeyRule'] = isset($wdtParameters['foreignKeyRule'][$key]) ? $wdtParameters['foreignKeyRule'][$key] : '';
953
  $dataColumnProperties['editingDefaultValue'] = isset($wdtParameters['editingDefaultValue'][$key]) ? $wdtParameters['editingDefaultValue'][$key] : '';
954
  $dataColumnProperties['linkTargetAttribute'] = isset($wdtParameters['linkTargetAttribute'][$key]) ? $wdtParameters['linkTargetAttribute'][$key] : '';
 
955
  $dataColumnProperties['linkButtonAttribute'] = isset($wdtParameters['linkButtonAttribute'][$key]) ? $wdtParameters['linkButtonAttribute'][$key] : false;
956
  $dataColumnProperties['linkButtonLabel'] = isset($wdtParameters['linkButtonLabel'][$key]) ? $wdtParameters['linkButtonLabel'][$key] : '';
957
  $dataColumnProperties['linkButtonClass'] = isset($wdtParameters['linkButtonClass'][$key]) ? $wdtParameters['linkButtonClass'][$key] : '';
 
958
  $dataColumnProperties['parentTable'] = $this;
959
 
960
  /** @var WDTColumn $tableColumnClass */
@@ -1713,9 +1715,11 @@ class WPDataTable
1713
  'sorting' => array(),
1714
  'userIdColumnHeader' => NULL,
1715
  'linkTargetAttribute' => array(),
 
1716
  'linkButtonAttribute' => array(),
1717
  'linkButtonLabel' => array(),
1718
- 'linkButtonClass' => array()
 
1719
  );
1720
 
1721
  if ($tableData) {
@@ -1751,9 +1755,11 @@ class WPDataTable
1751
  $returnArray['possibleValuesType'][$column->orig_header] = isset($column->possibleValuesType) ? $column->possibleValuesType : null;
1752
  $returnArray['sorting'][$column->orig_header] = isset($column->sorting) ? $column->sorting : null;
1753
  $returnArray['linkTargetAttribute'][$column->orig_header] = isset($column->linkTargetAttribute) ? $column->linkTargetAttribute : null;
 
1754
  $returnArray['linkButtonAttribute'][$column->orig_header] = isset($column->linkButtonAttribute) ? $column->linkButtonAttribute : null;
1755
  $returnArray['linkButtonLabel'][$column->orig_header] = isset($column->linkButtonLabel) ? $column->linkButtonLabel : null;
1756
  $returnArray['linkButtonClass'][$column->orig_header] = isset($column->linkButtonClass) ? $column->linkButtonClass : null;
 
1757
 
1758
  }
1759
  }
@@ -1805,6 +1811,9 @@ class WPDataTable
1805
  if (isset($columnData['exactFiltering'])) {
1806
  $params['exactFiltering'] = $columnData['exactFiltering'];
1807
  }
 
 
 
1808
  if (isset($columnData['filterDefaultValue'])) {
1809
  $params['filterDefaultValue'] = $columnData['filterDefaultValue'];
1810
  }
@@ -1829,6 +1838,9 @@ class WPDataTable
1829
  if (isset($columnData['linkTargetAttribute'])) {
1830
  $params['linkTargetAttribute'] = $columnData['linkTargetAttribute'];
1831
  }
 
 
 
1832
  if (isset($columnData['linkButtonAttribute'])) {
1833
  $params['linkButtonAttribute'] = $columnData['linkButtonAttribute'];
1834
  }
952
  $dataColumnProperties['foreignKeyRule'] = isset($wdtParameters['foreignKeyRule'][$key]) ? $wdtParameters['foreignKeyRule'][$key] : '';
953
  $dataColumnProperties['editingDefaultValue'] = isset($wdtParameters['editingDefaultValue'][$key]) ? $wdtParameters['editingDefaultValue'][$key] : '';
954
  $dataColumnProperties['linkTargetAttribute'] = isset($wdtParameters['linkTargetAttribute'][$key]) ? $wdtParameters['linkTargetAttribute'][$key] : '';
955
+ $dataColumnProperties['linkNofollowAttribute'] = isset($wdtParameters['linkNofollowAttribute'][$key]) ? $wdtParameters['linkNofollowAttribute'][$key] : false;
956
  $dataColumnProperties['linkButtonAttribute'] = isset($wdtParameters['linkButtonAttribute'][$key]) ? $wdtParameters['linkButtonAttribute'][$key] : false;
957
  $dataColumnProperties['linkButtonLabel'] = isset($wdtParameters['linkButtonLabel'][$key]) ? $wdtParameters['linkButtonLabel'][$key] : '';
958
  $dataColumnProperties['linkButtonClass'] = isset($wdtParameters['linkButtonClass'][$key]) ? $wdtParameters['linkButtonClass'][$key] : '';
959
+ $dataColumnProperties['globalSearchColumn'] = isset($wdtParameters['globalSearchColumn'][$key]) ? $wdtParameters['globalSearchColumn'][$key] : false;
960
  $dataColumnProperties['parentTable'] = $this;
961
 
962
  /** @var WDTColumn $tableColumnClass */
1715
  'sorting' => array(),
1716
  'userIdColumnHeader' => NULL,
1717
  'linkTargetAttribute' => array(),
1718
+ 'linkNofollowAttribute' => array(),
1719
  'linkButtonAttribute' => array(),
1720
  'linkButtonLabel' => array(),
1721
+ 'linkButtonClass' => array(),
1722
+ 'globalSearchColumn' => array(),
1723
  );
1724
 
1725
  if ($tableData) {
1755
  $returnArray['possibleValuesType'][$column->orig_header] = isset($column->possibleValuesType) ? $column->possibleValuesType : null;
1756
  $returnArray['sorting'][$column->orig_header] = isset($column->sorting) ? $column->sorting : null;
1757
  $returnArray['linkTargetAttribute'][$column->orig_header] = isset($column->linkTargetAttribute) ? $column->linkTargetAttribute : null;
1758
+ $returnArray['linkNofollowAttribute'][$column->orig_header] = isset($column->linkNofollowAttribute) ? $column->linkNofollowAttribute : null;
1759
  $returnArray['linkButtonAttribute'][$column->orig_header] = isset($column->linkButtonAttribute) ? $column->linkButtonAttribute : null;
1760
  $returnArray['linkButtonLabel'][$column->orig_header] = isset($column->linkButtonLabel) ? $column->linkButtonLabel : null;
1761
  $returnArray['linkButtonClass'][$column->orig_header] = isset($column->linkButtonClass) ? $column->linkButtonClass : null;
1762
+ $returnArray['globalSearchColumn'][$column->orig_header] = isset($column->globalSearchColumn) ? $column->globalSearchColumn : null;
1763
 
1764
  }
1765
  }
1811
  if (isset($columnData['exactFiltering'])) {
1812
  $params['exactFiltering'] = $columnData['exactFiltering'];
1813
  }
1814
+ if (isset($columnData['globalSearchColumn'])) {
1815
+ $params['globalSearchColumn'] = $columnData['globalSearchColumn'];
1816
+ }
1817
  if (isset($columnData['filterDefaultValue'])) {
1818
  $params['filterDefaultValue'] = $columnData['filterDefaultValue'];
1819
  }
1838
  if (isset($columnData['linkTargetAttribute'])) {
1839
  $params['linkTargetAttribute'] = $columnData['linkTargetAttribute'];
1840
  }
1841
+ if (isset($columnData['linkNofollowAttribute'])) {
1842
+ $params['linkNofollowAttribute'] = $columnData['linkNofollowAttribute'];
1843
+ }
1844
  if (isset($columnData['linkButtonAttribute'])) {
1845
  $params['linkButtonAttribute'] = $columnData['linkButtonAttribute'];
1846
  }
templates/admin/common/linkModal.inc.php CHANGED
@@ -13,7 +13,7 @@
13
  <!-- .modal-header -->
14
  <div class="modal-header">
15
  <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true"><i
16
- class="wpdt-icon-times-full"></i></span>
17
  </button>
18
  <h4 class="modal-title"><?php _e('Link editor', 'wpdatatables') ?></h4>
19
  </div>
@@ -67,6 +67,17 @@
67
  </div>
68
  </div>
69
  </div>
 
 
 
 
 
 
 
 
 
 
 
70
  <div class="row">
71
  <div class="col-sm-12">
72
  <div class="form-group">
13
  <!-- .modal-header -->
14
  <div class="modal-header">
15
  <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true"><i
16
+ class="wpdt-icon-times-full"></i></span>
17
  </button>
18
  <h4 class="modal-title"><?php _e('Link editor', 'wpdatatables') ?></h4>
19
  </div>
67
  </div>
68
  </div>
69
  </div>
70
+ <div class="row">
71
+ <div class="col-sm-12">
72
+ <div class="form-group">
73
+ <div class="toggle-switch" data-ts-color="blue">
74
+ <input id="wpdt-link-nofollow-attribute" type="checkbox">
75
+ <label for="wpdt-link-nofollow-attribute"
76
+ class="ts-label"><?php _e('Make NOFOLLOW link', 'wpdatatables'); ?></label>
77
+ </div>
78
+ </div>
79
+ </div>
80
+ </div>
81
  <div class="row">
82
  <div class="col-sm-12">
83
  <div class="form-group">
templates/admin/dashboard/dashboard.inc.php CHANGED
@@ -337,14 +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 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>BugFix:</strong> Fixed issue with Fatal errors on Dashboard page if PHP extensions are not installed.', 'wpdatatables'); ?></li>
346
- <li> <?php _e('Compatibility with WordPress 5.6 approved.', 'wpdatatables'); ?></li>
347
- <li> <?php _e('Compatibility with PHP 8 approved.', 'wpdatatables'); ?></li>
 
 
 
348
  <li> <?php _e('Other small bug fixes and stability improvements.', 'wpdatatables'); ?></li>
349
  </ul>
350
  </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 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> New option to set column data to be available/disabled in global search results.', 'wpdatatables'); ?></li>
346
+ <li> <?php _e('<strong>Feature:</strong> New option to set NOFOLLOW relation for links in simple and data tables.', 'wpdatatables'); ?></li>
347
+ <li> <?php _e('<strong>BugFix:</strong> Fixed issue with saving page in Divi builder with simple table shortcode.', 'wpdatatables'); ?></li>
348
+ <li> <?php _e('<strong>BugFix:</strong> Fixed issue with not showing tabs in backend after switch.', 'wpdatatables'); ?></li>
349
+ <li> <?php _e('<strong>BugFix:</strong> Fixed issue with tooltip in backend when is loaded jQuery UI.', 'wpdatatables'); ?></li>
350
+ <li> <?php _e('<strong>BugFix:</strong> Fixed issue with disappearing Display length selectbox.', 'wpdatatables'); ?></li>
351
  <li> <?php _e('Other small bug fixes and stability improvements.', 'wpdatatables'); ?></li>
352
  </ul>
353
  </div>
templates/admin/table-settings/column_settings_panel.inc.php CHANGED
@@ -48,7 +48,7 @@
48
  </li>
49
  <li class="column-filtering-settings-tab">
50
  <a href="#column-filtering-settings" aria-controls="column-filtering-settings" role="tab"
51
- 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('Filtering', 'wpdatatables'); ?></span></a>
52
  </li>
53
  <li class="column-editing-settings-tab">
54
  <a href="#column-editing-settings" aria-controls="column-editing-settings" role="tab"
@@ -707,6 +707,22 @@
707
  </div>
708
  </div>
709
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
710
  </div>
711
 
712
  <!-- /.row -->
@@ -780,12 +796,6 @@
780
  <!-- Column filtering settings -->
781
  <div role="tabpanel" class="tab-pane" id="column-filtering-settings">
782
 
783
- <?php echo '<div class="alert alert-warning alert-dismissible" role="alert">
784
- <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true"><i class="wpdt-icon-times-full"></i></span>
785
- </button>
786
- This feature is available in the <a class="tms-store-checkout-wpdatatables">Premium version of wpDataTables.</a>
787
- </div>' ?>
788
-
789
  <div class="row">
790
 
791
  <div class="col-sm-6 wdt-column-enable-filter-block">
@@ -812,14 +822,30 @@
812
 
813
  <div class="form-group">
814
  <div class="toggle-switch" data-ts-color="blue">
815
- <input id="wdt-column-enable-filter" type="checkbox">
816
- <label for="wdt-column-enable-filter"
817
- class="ts-label"><?php _e('Allow filtering', 'wpdatatables'); ?></label>
818
  </div>
819
  </div>
820
  </div>
821
 
822
- <div class="col-sm-6 wdt-filtering-enabled-block">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
823
  <h4 class="c-title-color m-b-2">
824
  <?php _e('Filter type', 'wpdatatables'); ?>
825
  <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
@@ -845,13 +871,8 @@
845
 
846
  </div>
847
 
848
- </div>
849
- <!-- /.row -->
850
 
851
- <!-- .row -->
852
- <div class="row">
853
-
854
- <div class="col-sm-6 wdt-filtering-enabled-block">
855
  <h4 class="c-title-color m-b-2">
856
  <?php _e('Filter label', 'wpdatatables'); ?>
857
  <i class="wpdt-icon-info-circle-thin" data-popover-content="#filter-label-hint"
@@ -881,7 +902,7 @@
881
  </div>
882
  </div>
883
 
884
- <div class="col-sm-6 wdt-filtering-enabled-block wdt-exact-filtering-block">
885
  <h4 class="c-title-color m-b-2">
886
  <?php _e('Exact filtering', 'wpdatatables'); ?>
887
  <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
@@ -895,13 +916,8 @@
895
  </div>
896
  </div>
897
  </div>
898
- </div>
899
- <!--/ .row -->
900
-
901
- <!-- .row -->
902
- <div class="row">
903
 
904
- <div class="col-sm-6 wdt-filtering-enabled-block">
905
  <h4 class="c-title-color m-b-2">
906
  <?php _e('Predefined value(s)', 'wpdatatables'); ?>
907
  <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
48
  </li>
49
  <li class="column-filtering-settings-tab">
50
  <a href="#column-filtering-settings" aria-controls="column-filtering-settings" role="tab"
51
+ data-toggle="tab"><?php _e('Global Filtering', 'wpdatatables'); ?></span></a>
52
  </li>
53
  <li class="column-editing-settings-tab">
54
  <a href="#column-editing-settings" aria-controls="column-editing-settings" role="tab"
707
  </div>
708
  </div>
709
 
710
+ <div class="col-sm-6 wdt-link-nofollow-attribute-block">
711
+ <h4 class="c-title-color m-b-2">
712
+ <?php _e('URL relation attribute', 'wpdatatables'); ?>
713
+ <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
714
+ title="<?php _e('Set the link relation', 'wpdatatables'); ?>"></i>
715
+ </h4>
716
+ <div class="form-group">
717
+ <div class="toggle-switch" data-ts-color="blue">
718
+ <input id="wdt-link-nofollow-attribute" type="checkbox">
719
+ <label for="wdt-link-nofollow-attribute"
720
+ class="ts-label"><?php _e('Make NOFOLLOW link', 'wpdatatables'); ?></label>
721
+ </div>
722
+ </div>
723
+
724
+ </div>
725
+
726
  </div>
727
 
728
  <!-- /.row -->
796
  <!-- Column filtering settings -->
797
  <div role="tabpanel" class="tab-pane" id="column-filtering-settings">
798
 
 
 
 
 
 
 
799
  <div class="row">
800
 
801
  <div class="col-sm-6 wdt-column-enable-filter-block">
822
 
823
  <div class="form-group">
824
  <div class="toggle-switch" data-ts-color="blue">
825
+ <input id="wdt-column-enable-filter" type="checkbox" class="d-none wdt-premium-feature">
826
+ <label for="wdt-column-enable-filter" data-toggle="html-checkbox-premium-popover" data-placement="top" title="title" data-content="content"
827
+ class="ts-label"><i class="wpdt-icon-star-full m-r-5" style="color: #FFC078;"></i><span class="opacity-6"><?php _e('Allow filtering', 'wpdatatables'); ?></span></label>
828
  </div>
829
  </div>
830
  </div>
831
 
832
+ <div class="col-sm-6 wdt-global-search-block">
833
+ <h4 class="c-title-color m-b-2">
834
+ <?php _e('Global search', 'wpdatatables'); ?>
835
+ <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
836
+ title="<?php _e('If this option is turned off, the column data will not appear in your global search results.', 'wpdatatables'); ?>"></i>
837
+ </h4>
838
+ <div class="form-group">
839
+ <div class="toggle-switch" data-ts-color="blue">
840
+ <input id="wdt-column-enable-global-search" type="checkbox">
841
+ <label for="wdt-column-enable-global-search"
842
+ class="ts-label"><?php _e('Enable this column in Global search', 'wpdatatables'); ?></label>
843
+ </div>
844
+ </div>
845
+ </div>
846
+
847
+
848
+ <div class="col-sm-6 wdt-filtering-enabled-block hidden">
849
  <h4 class="c-title-color m-b-2">
850
  <?php _e('Filter type', 'wpdatatables'); ?>
851
  <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
871
 
872
  </div>
873
 
 
 
874
 
875
+ <div class="col-sm-6 wdt-filtering-enabled-block hidden">
 
 
 
876
  <h4 class="c-title-color m-b-2">
877
  <?php _e('Filter label', 'wpdatatables'); ?>
878
  <i class="wpdt-icon-info-circle-thin" data-popover-content="#filter-label-hint"
902
  </div>
903
  </div>
904
 
905
+ <div class="col-sm-6 wdt-filtering-enabled-block wdt-exact-filtering-block hidden">
906
  <h4 class="c-title-color m-b-2">
907
  <?php _e('Exact filtering', 'wpdatatables'); ?>
908
  <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
916
  </div>
917
  </div>
918
  </div>
 
 
 
 
 
919
 
920
+ <div class="col-sm-6 wdt-filtering-enabled-block hidden">
921
  <h4 class="c-title-color m-b-2">
922
  <?php _e('Predefined value(s)', 'wpdatatables'); ?>
923
  <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
templates/admin/table-settings/column_small_block.inc.php CHANGED
@@ -13,6 +13,8 @@
13
 
14
  <span class="pull-right" data-toggle="html-input-premium-popover" data-placement="top" title="" data-content="content"><i
15
  class="wpdt-icon-filter column-control wdt-toggle-show-filters" style="color: #FFC078;"></i></span>
 
 
16
  <span class="pull-right" data-toggle="tooltip" title="<?php _e('Show/hide sorting'); ?>"><i
17
  class="wpdt-icon-sort-alpha-up column-control wdt-toggle-show-sorting"></i></span>
18
  <span class="pull-right" data-toggle="tooltip" title="<?php _e('Show/hide the column'); ?>"><i
13
 
14
  <span class="pull-right" data-toggle="html-input-premium-popover" data-placement="top" title="" data-content="content"><i
15
  class="wpdt-icon-filter column-control wdt-toggle-show-filters" style="color: #FFC078;"></i></span>
16
+ <span class="pull-right wdt-column-block-icon formula-remove-option" data-toggle="tooltip" title="<?php _e('Enable/disable in global search'); ?>"><i
17
+ class="wpdt-icon-search2 column-control wdt-toggle-global-search"></i></span>
18
  <span class="pull-right" data-toggle="tooltip" title="<?php _e('Show/hide sorting'); ?>"><i
19
  class="wpdt-icon-sort-alpha-up column-control wdt-toggle-show-sorting"></i></span>
20
  <span class="pull-right" data-toggle="tooltip" title="<?php _e('Show/hide the column'); ?>"><i
templates/admin/table-settings/simple_table_preview_block.inc.php CHANGED
@@ -1,6 +1,22 @@
1
  <?php defined('ABSPATH') or die('Access denied.');
 
 
2
  ?>
3
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  <div class="card column-settings ">
5
 
6
  <!-- Preloader -->
1
  <?php defined('ABSPATH') or die('Access denied.');
2
+ $showAlertMessage = get_option('wdtSimpleTableAlert');
3
+ if ($showAlertMessage){
4
  ?>
5
+ <div class="alert alert-warning alert-dismissible wdt-simple-table-alert" role="alert">
6
+ <button type="button" class="close" data-dismiss="alert" aria-label="Close">
7
+ <span aria-hidden="true">×</span>
8
+ </button>
9
+ <p><?php _e('When working with this table type please note that at the moment:', 'wpdatatables'); ?></p>
10
+ <ul style="list-style-type: disc;padding-inline-start: 40px;margin-top: 5px;">
11
+ <li> <?php _e('There is no sorting, search, or pagination in this table type.', 'wpdatatables'); ?></li>
12
+ <li> <?php _e('Creating charts from this table type is not yet possible.', 'wpdatatables'); ?></li>
13
+ <li> <?php _e('If you need those features, please consider creating tables with option ', 'wpdatatables'); ?>
14
+ <a href="<?php echo admin_url('admin.php?page=wpdatatables-constructor&source'); ?>"><?php _e('Create a data table linked to an existing data source', 'wpdatatables'); ?> </a>
15
+ </li>
16
+ </ul>
17
+ <?php _e('Depends of users requests, we will add it in our road map and implement it based on priority. Thank you for understanding.', 'wpdatatables'); ?>
18
+ </div>
19
+ <?php } ?>
20
  <div class="card column-settings ">
21
 
22
  <!-- Preloader -->
wpdatatables.php CHANGED
@@ -5,7 +5,7 @@
5
  Plugin Name: wpDataTables - Tables & Table Charts
6
  Plugin URI: https://wpdatatables.com
7
  Description: Create responsive, sortable tables & charts from Excel, CSV or PHP. Add tables & charts to any post in minutes with DataTables.
8
- Version: 2.1.6
9
  Author: TMS-Plugins
10
  Author URI: https://tms-outsource.com
11
  Text Domain: wpdatatables
5
  Plugin Name: wpDataTables - Tables & Table Charts
6
  Plugin URI: https://wpdatatables.com
7
  Description: Create responsive, sortable tables & charts from Excel, CSV or PHP. Add tables & charts to any post in minutes with DataTables.
8
+ Version: 2.1.7
9
  Author: TMS-Plugins
10
  Author URI: https://tms-outsource.com
11
  Text Domain: wpdatatables