WP Fastest Cache - Version 0.9.0.1

Version Description

  • to remove the clear cache button from column and to add clear cache action on row actions [Details]
  • to hide clear cache icon on toolbar for IE
  • to fix replacing cdn-url on data-product_variations attribute
  • to add WPFC_TOOLBAR_FOR_EDITOR [Details]
  • [FEATURE] to add Persian language
  • [FEATURE] to add Chinese (Taiwan) language
  • [FEATURE] to add Spanish (Venezuela) language
  • refactoring of checking admin users for exclution
  • to fix E_WARNING on wpFastestCache.php line 1064
Download this release

Release Info

Developer emrevona
Plugin Icon 128x128 WP Fastest Cache
Version 0.9.0.1
Comparing to
See all releases

Code changes from version 0.9.0.0 to 0.9.0.1

css/style.css CHANGED
@@ -246,6 +246,10 @@ form.delete-line .left .submit input{
246
  width: 165px;
247
  white-space: pre-line !important;
248
  }
 
 
 
 
249
  .revert{
250
  width:16px;
251
  height:16px;
@@ -260,28 +264,12 @@ form.delete-line .left .submit input{
260
  border:1px solid #aaa;
261
  background:#ddd;
262
  padding:3px;
263
-
264
- background: rgb(255,255,255) url("../images/cancel.png") no-repeat center; /* Old browsers */
265
- background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%) url("../images/cancel.png") no-repeat center; /* FF3.6+ */
266
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1))) url("../images/cancel.png") no-repeat center; /* Chrome,Safari4+ */
267
- background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%) url("../images/cancel.png") no-repeat center; /* Chrome10+,Safari5.1+ */
268
- background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%) url("../images/cancel.png") no-repeat center; /* Opera 11.10+ */
269
- background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%) url("../images/cancel.png") no-repeat center; /* IE10+ */
270
- background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%) no-repeat center; /* W3C */
271
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ) url("../images/cancel.png") no-repeat center; /* IE6-9 */
272
  }
273
 
274
  .revert:hover{
275
  border-color:#000;
276
-
277
- background: rgb(255,255,255) url("../images/cancel.png") no-repeat center; /* Old browsers */
278
- background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%) url("../images/cancel.png") no-repeat center; /* FF3.6+ */
279
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1))) url("../images/cancel.png") no-repeat center; /* Chrome,Safari4+ */
280
- background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%) url("../images/cancel.png") no-repeat center; /* Chrome10+,Safari5.1+ */
281
- background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%) url("../images/cancel.png") no-repeat center; /* Opera 11.10+ */
282
- background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%) url("../images/cancel.png") no-repeat center; /* IE10+ */
283
- background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%) url("../images/cancel.png") no-repeat center; /* W3C */
284
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ) url("../images/cancel.png") no-repeat center; /* IE6-9 */
285
  }
286
 
287
  .revert:active{
246
  width: 165px;
247
  white-space: pre-line !important;
248
  }
249
+ .revert:before{
250
+ font-family: "dashicons";
251
+ content: "\f531";
252
+ }
253
  .revert{
254
  width:16px;
255
  height:16px;
264
  border:1px solid #aaa;
265
  background:#ddd;
266
  padding:3px;
267
+ background-color: white;
 
 
 
 
 
 
 
 
268
  }
269
 
270
  .revert:hover{
271
  border-color:#000;
272
+ background-color: white;
 
 
 
 
 
 
 
 
273
  }
274
 
275
  .revert:active{
css/toolbar.css CHANGED
@@ -12,8 +12,10 @@
12
  cursor: pointer;
13
  }
14
 
15
- #wp-admin-bar-wpfc-toolbar-parent > .ab-empty-item::before{
16
- content: url("../images/icon.svg");
 
 
17
  }
18
 
19
  #wp-admin-bar-wpfc-toolbar-parent .ab-empty-item:hover{
12
  cursor: pointer;
13
  }
14
 
15
+ @supports not (-ms-high-contrast: none) {
16
+ #wp-admin-bar-wpfc-toolbar-parent > .ab-empty-item::before{
17
+ content: url("../images/icon.svg");
18
+ }
19
  }
20
 
21
  #wp-admin-bar-wpfc-toolbar-parent .ab-empty-item:hover{
inc/admin.php CHANGED
@@ -909,7 +909,69 @@
909
  </script>
910
  <?php
911
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
912
 
 
913
  }
914
 
915
  public function optionsPage(){
@@ -1350,7 +1412,7 @@
1350
  <div class="questionCon">
1351
  <div class="question">Language</div>
1352
  <div class="inputCon">
1353
- <select id="wpFastestCacheLanguage" name="wpFastestCacheLanguage">
1354
  <?php
1355
  $lang_array = array(
1356
  "cn" => "中文",
909
  </script>
910
  <?php
911
  }
912
+ }
913
+
914
+ public function get_translation_json(){
915
+ if(file_exists(WPFC_MAIN_PATH. "languages/wp-fastest-cache-".get_locale().".po")){
916
+ $files = glob(WPFC_MAIN_PATH. "languages/wp-fastest-cache-".get_locale().".po");
917
+ if(isset($files) && isset($files[0])){
918
+ $current_translation = $this->po_to_js($files[0]);
919
+ }
920
+ }
921
+
922
+ if(isset($this->options->wpFastestCacheLanguage) && $this->options->wpFastestCacheLanguage == "eng"){
923
+ foreach ($current_translation as $c_key => $c_value){
924
+ if((strlen($c_value) > 2) && (strlen($c_key) > 2)){
925
+ echo $c_value.":".$c_key.",\n";
926
+ }
927
+ }
928
+ }else{
929
+ $translation_file_name = $this->options->wpFastestCacheLanguage;
930
+
931
+ if($translation_file_name == "es"){
932
+ $translation_file_name = "es_ES";
933
+ }
934
+
935
+ if(file_exists(WPFC_MAIN_PATH. "languages/wp-fastest-cache-".$translation_file_name.".po")){
936
+ $files = glob(WPFC_MAIN_PATH. "languages/wp-fastest-cache-".$translation_file_name.".po");
937
+
938
+ if(isset($files) && isset($files[0])){
939
+ $to = $this->po_to_js($files[0]);
940
+
941
+ foreach ($to as $to_key => $to_value){
942
+ if((strlen($current_translation[$to_key]) > 2) && (strlen($to_value) > 2)){
943
+ echo $current_translation[$to_key].":".$to_value.",\n";
944
+ }
945
+ }
946
+
947
+ }
948
+ }
949
+ }
950
+ }
951
+
952
+ public function po_to_js($file_path){
953
+ $translation = array();
954
+
955
+ $tmp_data = $this->read_file($file_path);
956
+
957
+ preg_match_all("/^msgid(\s+\"[^\"]*\")+\s+msgstr(\s+\"[^\"]*\")+/m", $tmp_data, $out, PREG_SET_ORDER);
958
+
959
+ foreach ($out as $key => $value) {
960
+ $value[0] = preg_replace("/\"\s+\"/", "", $value[0]);
961
+
962
+ $tmp = explode("\n", $value[0]);
963
+
964
+ if($key > 0){
965
+ $tmp[0] = preg_replace("/msgid\s(.+)/", "$1", $tmp[0]);
966
+ $tmp[1] = preg_replace("/msgstr\s(.+)/", "$1", $tmp[1]);
967
+ $tmp[0] = trim($tmp[0]);
968
+ $tmp[1] = trim($tmp[1]);
969
+
970
+ $translation[$tmp[0]] = $tmp[1];
971
+ }
972
+ }
973
 
974
+ return $translation;
975
  }
976
 
977
  public function optionsPage(){
1412
  <div class="questionCon">
1413
  <div class="question">Language</div>
1414
  <div class="inputCon">
1415
+ <select id="wpFastestCacheLanguage" name="wpFastestCacheLanguage" style="width: 100px !important;">
1416
  <?php
1417
  $lang_array = array(
1418
  "cn" => "中文",
inc/cache.php CHANGED
@@ -222,9 +222,10 @@
222
  }
223
 
224
  // to exclude admin users
225
- $users_groups = get_users(array("role" => "administrator", "fields" => array("user_login")));
226
  foreach ((array)$_COOKIE as $cookie_key => $cookie_value){
227
  if(preg_match("/wordpress_logged_in/i", $cookie_key)){
 
 
228
  foreach ($users_groups as $user_key => $user_value) {
229
  if(preg_match("/^".preg_quote($user_value->user_login, "/")."/", $cookie_value)){
230
  ob_start(array($this, "cdn_rewrite"));
@@ -827,7 +828,7 @@
827
 
828
  public function cdn_rewrite($content){
829
  if($this->cdn){
830
- $content = preg_replace_callback("/(srcset|src|href|data-vc-parallax-image|data-bg|data-fullurl|data-mobileurl|data-img-url|data-cvpsrc|data-cvpset|data-thumb|data-bg-url|data-large_image|data-lazyload|data-lazy|data-source-url|data-srcsmall|data-srclarge|data-srcfull|data-slide-img|data-lazy-original)\s{0,2}\=[\'\"]([^\'\"]+)[\'\"]/i", array($this, 'cdn_replace_urls'), $content);
831
 
832
  //url()
833
  $content = preg_replace_callback("/(url)\(([^\)\>]+)\)/i", array($this, 'cdn_replace_urls'), $content);
@@ -949,7 +950,7 @@
949
  }
950
  }
951
 
952
- if(($extension == "css" || $extension == "js") && $buffer && strlen($buffer) > 5){
953
  $create = true;
954
  $file_name = base_convert(substr(time(), -6), 20, 36).".";
955
  $buffer = trim($buffer);
222
  }
223
 
224
  // to exclude admin users
 
225
  foreach ((array)$_COOKIE as $cookie_key => $cookie_value){
226
  if(preg_match("/wordpress_logged_in/i", $cookie_key)){
227
+ $users_groups = get_users(array("role" => "administrator", "fields" => array("user_login")));
228
+
229
  foreach ($users_groups as $user_key => $user_value) {
230
  if(preg_match("/^".preg_quote($user_value->user_login, "/")."/", $cookie_value)){
231
  ob_start(array($this, "cdn_rewrite"));
828
 
829
  public function cdn_rewrite($content){
830
  if($this->cdn){
831
+ $content = preg_replace_callback("/(srcset|src|href|data-vc-parallax-image|data-bg|data-fullurl|data-mobileurl|data-img-url|data-cvpsrc|data-cvpset|data-thumb|data-bg-url|data-large_image|data-lazyload|data-lazy|data-source-url|data-srcsmall|data-srclarge|data-srcfull|data-slide-img|data-lazy-original)\s{0,2}\=\s{0,2}[\'\"]([^\'\"]+)[\'\"]/i", array($this, 'cdn_replace_urls'), $content);
832
 
833
  //url()
834
  $content = preg_replace_callback("/(url)\(([^\)\>]+)\)/i", array($this, 'cdn_replace_urls'), $content);
950
  }
951
  }
952
 
953
+ if(($extension == "svg" || $extension == "woff" || $extension == "css" || $extension == "js") && $buffer && strlen($buffer) > 5){
954
  $create = true;
955
  $file_name = base_convert(substr(time(), -6), 20, 36).".";
956
  $buffer = trim($buffer);
inc/column.php CHANGED
@@ -3,35 +3,31 @@
3
  public function __construct(){}
4
 
5
  public function add(){
6
- add_filter('manage_posts_columns', array($this, 'wpfc_clear_column_head'));
7
- add_action('manage_posts_custom_column', array($this, 'wpfc_clear_column_content'), 10, 2);
8
- add_filter('manage_pages_columns', array($this, 'wpfc_clear_column_head'));
9
- add_action('manage_pages_custom_column', array($this, 'wpfc_clear_column_content'), 10, 2);
10
  add_action('admin_enqueue_scripts', array($this, 'load_js'));
11
  add_action('wp_ajax_wpfc_clear_cache_column', array($this, "clear_cache_column"));
12
  }
13
 
 
 
 
 
 
14
  public function clear_cache_column(){
15
- $GLOBALS["wp_fastest_cache"]->singleDeleteCache(false, esc_sql($_GET["id"]));
 
16
 
17
- die(json_encode(array("success" => true)));
 
 
 
18
  }
19
 
20
  public function load_js(){
21
  wp_enqueue_script("wpfc-column", plugins_url("wp-fastest-cache/js/column.js"), array(), time(), true);
22
  }
23
-
24
- public function wpfc_clear_column_head($defaults) {
25
- $defaults['wpfc_column_clear_cache'] = 'Cache';
26
- return $defaults;
27
- }
28
-
29
- public function wpfc_clear_column_content($column_name, $post_ID) {
30
- if($column_name == "wpfc_column_clear_cache"){
31
- echo '<button wpfc-clear-column="'.$post_ID.'" class="button wpfc-clear-column-action">
32
- <span>Clear</span>
33
- </button>';
34
- }
35
- }
36
  }
37
  ?>
3
  public function __construct(){}
4
 
5
  public function add(){
6
+ add_filter('post_row_actions', array($this, 'add_clear_cache_link'), 10, 2);
7
+ add_filter('page_row_actions', array($this, 'add_clear_cache_link'), 10, 2);
8
+
9
+
10
  add_action('admin_enqueue_scripts', array($this, 'load_js'));
11
  add_action('wp_ajax_wpfc_clear_cache_column', array($this, "clear_cache_column"));
12
  }
13
 
14
+ public function add_clear_cache_link($actions, $post){
15
+ $actions['clear_cache_link'] = '<a data-id="'.$post->ID.'" data-nonce="'.wp_create_nonce('clear-cache_'.$post->ID).'" id="wpfc-clear-cache-link-'.$post->ID.'" style="cursor:pointer;">' . __('Clear Cache') . '</a>';
16
+ return $actions;
17
+ }
18
+
19
  public function clear_cache_column(){
20
+ if(wp_verify_nonce($_GET["nonce"], 'clear-cache_'.$_GET["id"])){
21
+ $GLOBALS["wp_fastest_cache"]->singleDeleteCache(false, esc_sql($_GET["id"]));
22
 
23
+ die(json_encode(array("success" => true)));
24
+ }else{
25
+ die(json_encode(array("success" => false)));
26
+ }
27
  }
28
 
29
  public function load_js(){
30
  wp_enqueue_script("wpfc-column", plugins_url("wp-fastest-cache/js/column.js"), array(), time(), true);
31
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  }
33
  ?>
inc/css-utilities.php CHANGED
@@ -403,14 +403,85 @@
403
  return $css;
404
  }
405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
 
407
  public function newImgPath($matches){
408
  $matches[1] = trim($matches[1]);
409
 
410
  if(preg_match("/data\:font\/opentype/i", $matches[1])){
411
  $matches[1] = $matches[1];
 
 
412
  }else if(preg_match("/data\:image\/svg\+xml/i", $matches[1])){
413
- $matches[1] = $matches[1];
414
  }else{
415
  $matches[1] = str_replace(array("\"","'"), "", $matches[1]);
416
  $matches[1] = trim($matches[1]);
403
  return $css;
404
  }
405
 
406
+ public function svg_to_file($source){
407
+ return $source;
408
+
409
+ if(preg_match("/base64\,/", $source)){
410
+ $is_base64 = true;
411
+ }else{
412
+ $is_base64 = false;
413
+ }
414
+
415
+ if(preg_match("/\,(%3Csvg|<svg)/", $source) || $is_base64){
416
+ $source = preg_replace("/\"|\'/", "", $source);
417
+ $source = preg_replace("/data[^\,]+\,/", "", $source);
418
+
419
+ if($is_base64){
420
+ $source = base64_decode($source);
421
+ }else{
422
+ $source = rawurldecode($source);
423
+ }
424
+
425
+
426
+ $md5 = $this->wpfc->create_name($source);
427
+ $cachFilePath = $this->wpfc->getWpContentDir("/cache/wpfc-minified")."/svg-".$md5;
428
+
429
+ $this->wpfc->createFolder($cachFilePath, $source, "svg");
430
+
431
+ if(is_dir($cachFilePath)){
432
+ if($cssFiles = @scandir($cachFilePath, 1)){
433
+ $source = $this->convert_path_to_link($cachFilePath."/".$cssFiles[0]);
434
+ }
435
+ }
436
+ }
437
+
438
+ return $source;
439
+ }
440
+
441
+ public function woff_to_file($source){
442
+ return $source;
443
+
444
+ // url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAA")
445
+ if(preg_match("/base64\,/", $source)){
446
+ $is_base64 = true;
447
+ }else{
448
+ $is_base64 = false;
449
+ }
450
+
451
+ if($is_base64){
452
+ // not to use preg_match() for the speed
453
+ $source = strstr($source, 'base64,');
454
+ $source = str_replace("base64,", "", $source);
455
+ $source = trim($source);
456
+ $source = str_replace(array("'", '"'), "", $source);
457
+
458
+ $md5 = $this->wpfc->create_name($source);
459
+ $cachFilePath = $this->wpfc->getWpContentDir("/cache/wpfc-minified")."/woff-".$md5;
460
+
461
+ $this->wpfc->createFolder($cachFilePath, $source, "woff");
462
+
463
+ if(is_dir($cachFilePath)){
464
+ if($cssFiles = @scandir($cachFilePath, 1)){
465
+ $link = $this->convert_path_to_link($cachFilePath."/".$cssFiles[0]);
466
+
467
+ return $link;
468
+ }
469
+ }
470
+ }
471
+
472
+ return $source;
473
+ }
474
+
475
 
476
  public function newImgPath($matches){
477
  $matches[1] = trim($matches[1]);
478
 
479
  if(preg_match("/data\:font\/opentype/i", $matches[1])){
480
  $matches[1] = $matches[1];
481
+ }else if(preg_match("/data\:application\/x-font-woff/i", $matches[1])){
482
+ $matches[1] = $this->woff_to_file($matches[1]);
483
  }else if(preg_match("/data\:image\/svg\+xml/i", $matches[1])){
484
+ $matches[1] = $this->svg_to_file($matches[1]);
485
  }else{
486
  $matches[1] = str_replace(array("\"","'"), "", $matches[1]);
487
  $matches[1] = trim($matches[1]);
js/column.js CHANGED
@@ -13,23 +13,24 @@ if(window.attachEvent) {
13
  }
14
  }
15
  function wpfc_column_button_action(){
16
- jQuery("#wpfc_column_clear_cache").css('width', '50px');
17
- jQuery("#wpfc_column_clear_cache").css('text-align', 'center');
18
-
19
  jQuery(document).ready(function(){
20
- jQuery("button.button.wpfc-clear-column-action:visible").click(function(e){
 
 
21
 
22
- jQuery(e.currentTarget).attr("disabled", true);
23
 
24
  jQuery.ajax({
25
  type: 'GET',
26
  url: ajaxurl,
27
- data : {"action": "wpfc_clear_cache_column", "id" : jQuery(e.currentTarget).attr("wpfc-clear-column")},
28
  dataType : "json",
29
  cache: false,
30
  success: function(data){
 
 
31
  if(typeof data.success != "undefined" && data.success == true){
32
- jQuery(e.currentTarget).attr("disabled", false);
33
  }else{
34
  alert("Clear Cache Error");
35
  }
13
  }
14
  }
15
  function wpfc_column_button_action(){
 
 
 
16
  jQuery(document).ready(function(){
17
+ jQuery("a[id^='wpfc-clear-cache-link']").click(function(e){
18
+ var post_id = jQuery(e.target).attr("data-id");
19
+ var nonce = jQuery(e.target).attr("data-nonce");
20
 
21
+ jQuery("#wpfc-clear-cache-link-" + post_id).css('cursor', 'wait');
22
 
23
  jQuery.ajax({
24
  type: 'GET',
25
  url: ajaxurl,
26
+ data : {"action": "wpfc_clear_cache_column", "id" : post_id, "nonce" : nonce},
27
  dataType : "json",
28
  cache: false,
29
  success: function(data){
30
+ jQuery("#wpfc-clear-cache-link-" + post_id).css('cursor', 'pointer');
31
+
32
  if(typeof data.success != "undefined" && data.success == true){
33
+ //
34
  }else{
35
  alert("Clear Cache Error");
36
  }
languages/wp-fastest-cache-es_VE.mo ADDED
Binary file
languages/wp-fastest-cache-es_VE.po ADDED
@@ -0,0 +1,604 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in Spanish (Venezuela)
2
+ # This file is distributed under the same license as the Plugins - WP Fastest Cache - Development (trunk) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2019-11-09 02:48:18+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: es_VE\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr ""
17
+
18
+ #: inc/admin.php:1287 inc/admin.php:1293 inc/admin.php:1300
19
+ msgid "Eliminate render-blocking JavaScript resources"
20
+ msgstr "Eliminar los recursos JavaScript que bloquean los procesos"
21
+
22
+ #: inc/admin.php:429 inc/admin.php:432
23
+ msgid "Options have been saved"
24
+ msgstr "Las opciones han sido guardadas"
25
+
26
+ #: inc/admin.php:1755
27
+ msgid "Download"
28
+ msgstr "Descargar"
29
+
30
+ #: inc/admin.php:1750
31
+ msgid "Update"
32
+ msgstr "Actualizar"
33
+
34
+ #: inc/admin.php:1744
35
+ msgid "Please don't delete the free version. Premium version works with the free version."
36
+ msgstr "Por favor, no borres la versión gratuita. La versión premium funciona con la versión gratuita."
37
+
38
+ #: inc/admin.php:1743
39
+ msgid "Get It Now!"
40
+ msgstr "¡Consíguela ahora!"
41
+
42
+ #: inc/admin.php:1737
43
+ msgid "You can download and update the premium when you want if you paid."
44
+ msgstr "Puedes descargar y actualizar a la versión premium cuando quieras si has pagado."
45
+
46
+ #: inc/admin.php:1734
47
+ msgid "Download & Update"
48
+ msgstr "Descargar y actualizar"
49
+
50
+ #: inc/admin.php:1721
51
+ msgid "Buy"
52
+ msgstr "Comprar"
53
+
54
+ #: inc/admin.php:1706
55
+ msgid "Purchased"
56
+ msgstr "Comprada"
57
+
58
+ #: inc/admin.php:1701
59
+ msgid "The download button will be available after paid. You can buy the premium version now."
60
+ msgstr "El botón de descarga estará disponible después del pago. Puedes comprar la versión premium ahora."
61
+
62
+ #: inc/admin.php:1700
63
+ msgid "Just"
64
+ msgstr "Solo"
65
+
66
+ #: inc/admin.php:1686
67
+ msgid "You need to pay before downloading the premium version."
68
+ msgstr "Tienes que pagar antes de descargar la versión premium."
69
+
70
+ #: inc/admin.php:1683
71
+ msgid "Checkout"
72
+ msgstr "Pagar"
73
+
74
+ #: inc/admin.php:1669
75
+ msgid "New Features"
76
+ msgstr "Nuevas características"
77
+
78
+ #: inc/admin.php:1663
79
+ msgid "In the premium version there are some new features which speed up the sites more."
80
+ msgstr "En la versión premium hay algunas nuevas características que dan más velocidad a los sitios."
81
+
82
+ #: inc/admin.php:1660
83
+ msgid "Discover Features"
84
+ msgstr "Descubre las características"
85
+
86
+ #: templates/exclude.php:106 inc/admin.php:1806
87
+ msgid "has Woocommerce Items in Cart"
88
+ msgstr "tiene artículos de WooCommerce en el carrito"
89
+
90
+ #: templates/exclude.php:105 inc/admin.php:1805
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "tiene parámetros de Google Analytics"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1798
95
+ msgid "Archives"
96
+ msgstr "Archivos"
97
+
98
+ #: templates/timeout.php:189
99
+ msgid "Server Time"
100
+ msgstr "Hora del servidor"
101
+
102
+ #: templates/timeout.php:169
103
+ msgid "delete the files"
104
+ msgstr "borrar los archivos"
105
+
106
+ #: templates/timeout.php:99 templates/exclude.php:103 inc/admin.php:1529
107
+ #: inc/admin.php:1803
108
+ msgid "Contains"
109
+ msgstr "Contiene"
110
+
111
+ #: templates/timeout.php:98 templates/exclude.php:104 inc/admin.php:1530
112
+ #: inc/admin.php:1804
113
+ msgid "Is Equal To"
114
+ msgstr "Es igual a"
115
+
116
+ #: templates/timeout.php:97 templates/exclude.php:102 inc/admin.php:1528
117
+ #: inc/admin.php:1802
118
+ msgid "Starts With"
119
+ msgstr "Comienza con"
120
+
121
+ #: templates/timeout.php:96 templates/exclude.php:93 inc/admin.php:1527
122
+ #: inc/admin.php:1795
123
+ msgid "Home Page"
124
+ msgstr "Página de inicio"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1526
127
+ msgid "All"
128
+ msgstr "Todo"
129
+
130
+ #: templates/exclude.php:66
131
+ msgid "Exclude Page Wizard"
132
+ msgstr "Asistente para excluir páginas"
133
+
134
+ #: templates/timeout.php:124
135
+ msgid "Then"
136
+ msgstr "Entonces"
137
+
138
+ #: templates/timeout.php:91 templates/exclude.php:89
139
+ msgid "If REQUEST_URI"
140
+ msgstr "Si REQUEST_URI"
141
+
142
+ #: templates/timeout.php:68
143
+ msgid "Cache Timeout Wizard"
144
+ msgstr "Asistente del tiempo límite de la caché"
145
+
146
+ #: templates/lazy_load.php:9
147
+ msgid "Lazy Load Settings"
148
+ msgstr "Asistente de carga diferida"
149
+
150
+ #: templates/nginx_gzip.php:9
151
+ msgid "Enable Gzip"
152
+ msgstr "Activar Gzip"
153
+
154
+ #: templates/update_now.php:9
155
+ msgid "Please Update"
156
+ msgstr "Por favor, actualiza"
157
+
158
+ #: templates/update_success.php:9
159
+ msgid "Success"
160
+ msgstr "Correcto"
161
+
162
+ #: templates/disable_wp_cron.php:20
163
+ msgid "Warning"
164
+ msgstr "Advertencia"
165
+
166
+ #: inc/admin.php:1562 inc/admin.php:1827 inc/admin.php:1844 inc/admin.php:1863
167
+ #: inc/admin.php:1881 inc/admin.php:1901
168
+ msgid "Add New Rule"
169
+ msgstr "Añadir una nueva regla"
170
+
171
+ #: inc/admin.php:1498 inc/admin-toolbar.php:81
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "Borrar la caché y minimizar CSS/JS"
174
+
175
+ #: inc/admin.php:1433 inc/admin.php:2061 inc/admin.php:2282
176
+ msgid "Only available in Premium version"
177
+ msgstr "Solo disponible en la versión premium"
178
+
179
+ #: templates/timeout.php:141
180
+ msgid "Choose One"
181
+ msgstr "Elige uno"
182
+
183
+ #: inc/admin.php:1503
184
+ msgid "All cache files will be removed as well"
185
+ msgstr "También se eliminarán todos los archivos de la caché"
186
+
187
+ #: inc/admin.php:1502
188
+ msgid "If you modify any css file, you have to delete minified css files"
189
+ msgstr "Si modificas cualquier archivo CSS, tienes que borrar los archivos CSS minimizados"
190
+
191
+ #: inc/admin.php:1490 inc/admin.php:1504 inc/admin.php:1505
192
+ msgid "Target folder"
193
+ msgstr "Carpeta de destino"
194
+
195
+ #: inc/admin.php:1489
196
+ msgid "You can delete all cache files"
197
+ msgstr "Puedes borrar todos los archivos de la caché"
198
+
199
+ #: inc/admin.php:1014
200
+ msgid "Exclude"
201
+ msgstr "Excluir"
202
+
203
+ #: inc/admin.php:1012
204
+ msgid "Image Optimization"
205
+ msgstr "Optimización de imágenes"
206
+
207
+ #: inc/admin.php:1009
208
+ msgid "Settings"
209
+ msgstr "Ajustes"
210
+
211
+ #: inc/admin.php:2046
212
+ msgid "Database Cleanup"
213
+ msgstr "Limpieza de la base de datos"
214
+
215
+ #: inc/admin.php:1934
216
+ msgid "CDN Settings"
217
+ msgstr "Ajustes de la CDN"
218
+
219
+ #: inc/admin.php:1897
220
+ msgid "Exclude JS"
221
+ msgstr "Excluir JS"
222
+
223
+ #: inc/admin.php:1877
224
+ msgid "Exclude CSS"
225
+ msgstr "Excluir CSS"
226
+
227
+ #: inc/admin.php:1859
228
+ msgid "Exclude Cookies"
229
+ msgstr "Excluir cookies"
230
+
231
+ #: inc/admin.php:1840
232
+ msgid "Exclude User-Agents"
233
+ msgstr "Excluir agentes de usuario"
234
+
235
+ #: inc/admin.php:1823
236
+ msgid "Exclude Pages"
237
+ msgstr "Excluir páginas"
238
+
239
+ #: inc/admin.php:1636
240
+ msgid "Optimize Image Tool"
241
+ msgstr "Herramienta de optimización de imágenes"
242
+
243
+ #: inc/admin.php:1519
244
+ msgid "Timeout Rules"
245
+ msgstr "Reglas de límite"
246
+
247
+ #: inc/admin.php:1010 inc/admin.php:1480 inc/admin.php:1485
248
+ #: inc/admin-toolbar.php:69
249
+ msgid "Delete Cache"
250
+ msgstr "Borrar la caché"
251
+
252
+ #: inc/admin.php:1440
253
+ msgid "Cache Statistics"
254
+ msgstr "Estadísticas de la caché"
255
+
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "Vaciar la caché de entradas / páginas"
259
+
260
+ #: templates/updatepost.php:29
261
+ msgid "What do you want to happen after update a post or a page?"
262
+ msgstr "¿Qué quieres que ocurra después de actualizar una entrada o una página?"
263
+
264
+ #: templates/newpost.php:58
265
+ msgid "Clear Cache of Pagination"
266
+ msgstr "Vaciar la caché de paginación"
267
+
268
+ #: templates/updatepost.php:55 templates/newpost.php:57
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "Vaciar la caché de etiquetas de entradas"
271
+
272
+ #: templates/updatepost.php:54 templates/newpost.php:56
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "Vaciar la caché de categorías de entradas"
275
+
276
+ #: templates/updatepost.php:56 templates/newpost.php:55
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "Vaciar la caché de la página de inicio"
279
+
280
+ #: templates/updatepost.php:49 templates/newpost.php:51
281
+ #: inc/admin-toolbar.php:74
282
+ msgid "Clear All Cache"
283
+ msgstr "Vaciar toda la caché"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "¿Qué quieres que ocurra después de publicar la nueva entrada?"
288
+
289
+ #: templates/updatepost.php:64 templates/preload.php:102
290
+ #: templates/newpost.php:68
291
+ msgid "OK"
292
+ msgstr "Aceptar"
293
+
294
+ #: templates/preload.php:92
295
+ msgid "Restart After Completed"
296
+ msgstr "Reiniciar después de completado"
297
+
298
+ #: templates/preload.php:87
299
+ msgid "pages per minute"
300
+ msgstr "páginas por minuto"
301
+
302
+ #: templates/preload.php:63
303
+ msgid "Custom Taxonomies"
304
+ msgstr "Taxonomías personalizadas"
305
+
306
+ #: templates/preload.php:58
307
+ msgid "Custom Post Types"
308
+ msgstr "Tipos de contenido personalizado"
309
+
310
+ #: templates/preload.php:53 templates/exclude.php:101 inc/admin.php:1801
311
+ msgid "Attachments"
312
+ msgstr "Adjuntos"
313
+
314
+ #: templates/preload.php:49 templates/exclude.php:95 inc/admin.php:1797
315
+ msgid "Tags"
316
+ msgstr "Etiquetas"
317
+
318
+ #: templates/preload.php:45 templates/exclude.php:97 inc/admin.php:1800
319
+ msgid "Pages"
320
+ msgstr "Páginas"
321
+
322
+ #: templates/preload.php:41 templates/exclude.php:94 inc/admin.php:1796
323
+ msgid "Categories"
324
+ msgstr "Categorías"
325
+
326
+ #: templates/preload.php:37 templates/exclude.php:96 inc/admin.php:1799
327
+ msgid "Posts"
328
+ msgstr "Entradas"
329
+
330
+ #: templates/preload.php:33
331
+ msgid "Homepage"
332
+ msgstr "Página de inicio"
333
+
334
+ #: inc/admin.php:1234 inc/admin.php:1242 inc/admin.php:1248 inc/admin.php:1254
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
337
+
338
+ #: inc/admin.php:1342 inc/admin.php:1356 inc/admin.php:1363
339
+ msgid "Load images and iframes when they enter the browsers viewport"
340
+ msgstr "Cargar las imágenes e iframes cuando entren en la visualización de los navegadores"
341
+
342
+ #: inc/admin.php:1336 inc/admin.php:1355 inc/admin.php:1362
343
+ msgid "Lazy Load"
344
+ msgstr "Carga diferida"
345
+
346
+ #: inc/admin.php:1313 inc/admin.php:1319 inc/admin.php:1326
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "Cargar las fuentes de Google de forma asíncrona"
349
+
350
+ #: inc/admin.php:1312 inc/admin.php:1318 inc/admin.php:1325
351
+ msgid "Google Fonts"
352
+ msgstr "Fuentes de Google"
353
+
354
+ #: inc/admin.php:1286 inc/admin.php:1292 inc/admin.php:1299
355
+ msgid "Render Blocking Js"
356
+ msgstr "Bloqueo de procesado de JS"
357
+
358
+ #: inc/admin.php:1278
359
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "Puedes eliminar los emojis CSS integrados y el archivo «wp-emoji-release.min.js»"
361
+
362
+ #: inc/admin.php:1277
363
+ msgid "Disable Emojis"
364
+ msgstr "Desactivar los emojis"
365
+
366
+ #: inc/admin.php:1272
367
+ msgid "Reduce page load times for repeat visitors"
368
+ msgstr "Reducir el tiempo de carga de la página para los visitantes repetitivos"
369
+
370
+ #: inc/admin.php:1271
371
+ msgid "Browser Caching"
372
+ msgstr "Caché del navegador"
373
+
374
+ #: inc/admin.php:1260
375
+ msgid "Reduce the size of files sent from your server"
376
+ msgstr "Reducir el tamaño de los archivos enviados por tu servidor"
377
+
378
+ #: inc/admin.php:1259
379
+ msgid "Gzip"
380
+ msgstr "Gzip"
381
+
382
+ #: inc/admin.php:1240 inc/admin.php:1247 inc/admin.php:1253
383
+ msgid "Combine Js Plus"
384
+ msgstr "Combine Js Plus"
385
+
386
+ #: inc/admin.php:1233
387
+ msgid "Combine Js"
388
+ msgstr "Combinar JS"
389
+
390
+ #: inc/admin.php:1217 inc/admin.php:1222 inc/admin.php:1228
391
+ msgid "You can decrease the size of js files"
392
+ msgstr "Puedes reducir el tamaño de los archivos JS"
393
+
394
+ #: inc/admin.php:1216 inc/admin.php:1221 inc/admin.php:1227
395
+ msgid "Minify Js"
396
+ msgstr "Minimizar JS"
397
+
398
+ #: inc/admin.php:1209
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
401
+
402
+ #: inc/admin.php:1208
403
+ msgid "Combine Css"
404
+ msgstr "Combinar CSS"
405
+
406
+ #: inc/admin.php:1197 inc/admin.php:1202
407
+ msgid "More powerful minify css"
408
+ msgstr "Más potente minimización CSS"
409
+
410
+ #: inc/admin.php:1196 inc/admin.php:1201
411
+ msgid "Minify Css Plus"
412
+ msgstr "Minify Css Plus"
413
+
414
+ #: inc/admin.php:1188
415
+ msgid "You can decrease the size of css files"
416
+ msgstr "Puedes reducir el tamaño de los archivos CSS"
417
+
418
+ #: inc/admin.php:1187
419
+ msgid "Minify Css"
420
+ msgstr "Minimizar CSS"
421
+
422
+ #: inc/admin.php:1175 inc/admin.php:1180
423
+ msgid "More powerful minify html"
424
+ msgstr "Más potente minimización HTML"
425
+
426
+ #: inc/admin.php:1174 inc/admin.php:1179
427
+ msgid "Minify HTML Plus"
428
+ msgstr "Minify HTML Plus"
429
+
430
+ #: inc/admin.php:1168
431
+ msgid "You can decrease the size of page"
432
+ msgstr "Puedes reducir el tamaño de la página"
433
+
434
+ #: inc/admin.php:1167
435
+ msgid "Minify HTML"
436
+ msgstr "Minimizar HTML"
437
+
438
+ #: inc/admin.php:1159
439
+ msgid "Clear cache files when a post or page is updated"
440
+ msgstr "Vaciar los archivos de la caché cuando se actualiza una entrada o página"
441
+
442
+ #: templates/updatepost.php:18 inc/admin.php:1158
443
+ msgid "Update Post"
444
+ msgstr "Actualizar la entrada"
445
+
446
+ #: inc/admin.php:1152
447
+ msgid "Clear cache files when a post or page is published"
448
+ msgstr "Vaciar los archivos de la caché cuando se publica una entrada o página"
449
+
450
+ #: templates/newpost.php:18 inc/admin.php:1151
451
+ msgid "New Post"
452
+ msgstr "Nueva entrada"
453
+
454
+ #: inc/admin.php:1119 inc/admin.php:1145
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "Crear la caché para el tema para móviles"
457
+
458
+ #: inc/admin.php:1118 inc/admin.php:1144
459
+ msgid "Mobile Theme"
460
+ msgstr "Tema para móviles"
461
+
462
+ #: inc/admin.php:1113
463
+ msgid "Don't show the cached version for desktop to mobile devices"
464
+ msgstr "No mostrar la versión de escritorio de la caché en los dispositivos móviles"
465
+
466
+ #: inc/admin.php:1112
467
+ msgid "Mobile"
468
+ msgstr "Móvil"
469
+
470
+ #: inc/admin.php:1108
471
+ msgid "Don't show the cached version for logged-in users"
472
+ msgstr "No mostrar la versión de la caché para usuarios conectados"
473
+
474
+ #: inc/admin.php:1107
475
+ msgid "Logged-in Users"
476
+ msgstr "Usuarios conectados"
477
+
478
+ #: inc/admin.php:1098
479
+ msgid "Create the cache of all the site automatically"
480
+ msgstr "Crear automáticamente la caché de todo el sitio"
481
+
482
+ #: templates/preload.php:20 inc/admin.php:1097
483
+ msgid "Preload"
484
+ msgstr "Precargar"
485
+
486
+ #: inc/admin.php:1069 inc/admin.php:1075 inc/admin.php:1082 inc/admin.php:1089
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "Reducir el número de consultas SQL"
489
+
490
+ #: inc/admin.php:1068 inc/admin.php:1074 inc/admin.php:1081 inc/admin.php:1088
491
+ msgid "Widget Cache"
492
+ msgstr "Widget de caché"
493
+
494
+ #: inc/admin.php:1043
495
+ msgid "Enable"
496
+ msgstr "Activar"
497
+
498
+ #: inc/admin.php:1042
499
+ msgid "Cache System"
500
+ msgstr "Sistema de caché"
501
+
502
+ #: wpFastestCache.php:1598
503
+ msgid "Once Every 15 Days"
504
+ msgstr "Una vez cada 15 días"
505
+
506
+ #: wpFastestCache.php:1586
507
+ msgid "Once Every 7 Days"
508
+ msgstr "Una vez cada 7 días"
509
+
510
+ #: wpFastestCache.php:1580
511
+ msgid "Once Every 3 Days"
512
+ msgstr "Una vez cada 3 días"
513
+
514
+ #: wpFastestCache.php:1568
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "Una vez cada 10 horas"
517
+
518
+ #: wpFastestCache.php:1562
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "Una vez cada 9 horas"
521
+
522
+ #: wpFastestCache.php:1556
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "Una vez cada 8 horas"
525
+
526
+ #: wpFastestCache.php:1550
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "Una vez cada 7 horas"
529
+
530
+ #: wpFastestCache.php:1538
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "Una vez cada 5 horas"
533
+
534
+ #: wpFastestCache.php:1532
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "Una vez cada 4 horas"
537
+
538
+ #: wpFastestCache.php:1526
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "Una vez cada 3 horas"
541
+
542
+ #: wpFastestCache.php:1520
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "Una vez cada 2 horas"
545
+
546
+ #: wpFastestCache.php:1592
547
+ msgid "Once Every 10 Days"
548
+ msgstr "Una vez cada 10 días"
549
+
550
+ #. Author URI of the plugin
551
+ msgid "http://tr.linkedin.com/in/emrevona"
552
+ msgstr "http://tr.linkedin.com/in/emrevona"
553
+
554
+ #. Author of the plugin
555
+ msgid "Emre Vona"
556
+ msgstr "Emre Vona"
557
+
558
+ #. Description of the plugin
559
+ msgid "The simplest and fastest WP Cache system"
560
+ msgstr "El sistema WP Cache más simple y rápido"
561
+
562
+ #. Plugin URI of the plugin
563
+ msgid "http://wordpress.org/plugins/wp-fastest-cache/"
564
+ msgstr "http://es.wordpress.org/plugins/wp-fastest-cache/"
565
+
566
+ #. Plugin Name of the plugin
567
+ msgid "WP Fastest Cache"
568
+ msgstr "WP Fastest Cache"
569
+
570
+ #: wpFastestCache.php:1610
571
+ msgid "Once a Year"
572
+ msgstr "Una vez al año"
573
+
574
+ #: wpFastestCache.php:1604
575
+ msgid "Once a Month"
576
+ msgstr "Una vez al mes"
577
+
578
+ #: wpFastestCache.php:1574
579
+ msgid "Once a Day"
580
+ msgstr "Una vez al día"
581
+
582
+ #: wpFastestCache.php:1544
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "Una vez cada 6 horas"
585
+
586
+ #: wpFastestCache.php:1514
587
+ msgid "Once an Hour"
588
+ msgstr "Una vez a la hora"
589
+
590
+ #: wpFastestCache.php:1508
591
+ msgid "Twice an Hour"
592
+ msgstr "Dos veces a la hora"
593
+
594
+ #: wpFastestCache.php:1502
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "Una vez cada 15 minutos"
597
+
598
+ #: wpFastestCache.php:1496
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "Una vez cada 5 minutos"
601
+
602
+ #: wpFastestCache.php:1490
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "Una vez cada minuto"
languages/wp-fastest-cache-fa_IR.mo ADDED
Binary file
languages/wp-fastest-cache-fa_IR.po ADDED
@@ -0,0 +1,604 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in Persian
2
+ # This file is distributed under the same license as the Plugins - WP Fastest Cache - Development (trunk) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2019-11-19 10:59:06+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: fa\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "پاک‌سازی کش"
17
+
18
+ #: inc/admin.php:1265 inc/admin.php:1271 inc/admin.php:1278
19
+ msgid "Eliminate render-blocking JavaScript resources"
20
+ msgstr "برطرف کردن مشکل Eliminate render-blocking JavaScript resources"
21
+
22
+ #: inc/admin.php:429 inc/admin.php:432
23
+ msgid "Options have been saved"
24
+ msgstr "تنظیمات ذخیره شدند"
25
+
26
+ #: inc/admin.php:1733
27
+ msgid "Download"
28
+ msgstr "دانلود"
29
+
30
+ #: inc/admin.php:1728
31
+ msgid "Update"
32
+ msgstr "به‌روزرسانی"
33
+
34
+ #: inc/admin.php:1722
35
+ msgid "Please don't delete the free version. Premium version works with the free version."
36
+ msgstr "لطفا ورژن رایگان افزونه را حذف نکنید.ورژن پرمیوم افزونه در کنار ورژن رایگان فعالسازی می شود."
37
+
38
+ #: inc/admin.php:1721
39
+ msgid "Get It Now!"
40
+ msgstr "همین حالا دریافت کنید!"
41
+
42
+ #: inc/admin.php:1715
43
+ msgid "You can download and update the premium when you want if you paid."
44
+ msgstr "دانلود و دریافت بروزرسانی افزونه."
45
+
46
+ #: inc/admin.php:1712
47
+ msgid "Download & Update"
48
+ msgstr "دانلود و بروزرسانی"
49
+
50
+ #: inc/admin.php:1699
51
+ msgid "Buy"
52
+ msgstr "خرید"
53
+
54
+ #: inc/admin.php:1684
55
+ msgid "Purchased"
56
+ msgstr "خریداری شده"
57
+
58
+ #: inc/admin.php:1679
59
+ msgid "The download button will be available after paid. You can buy the premium version now."
60
+ msgstr "دکمه دانلود بعد از خرید فعال می شود."
61
+
62
+ #: inc/admin.php:1678
63
+ msgid "Just"
64
+ msgstr "فقط"
65
+
66
+ #: inc/admin.php:1664
67
+ msgid "You need to pay before downloading the premium version."
68
+ msgstr "قبل از دانلود ورژن پرمیوم افزونه باید آنرا خریداری کنید."
69
+
70
+ #: inc/admin.php:1661
71
+ msgid "Checkout"
72
+ msgstr "پرداخت"
73
+
74
+ #: inc/admin.php:1647
75
+ msgid "New Features"
76
+ msgstr "ویژگی های جدید"
77
+
78
+ #: inc/admin.php:1641
79
+ msgid "In the premium version there are some new features which speed up the sites more."
80
+ msgstr "در حالت پرمیوم ویژگی های فوق العاده و جدیدی برای بهینه سازی بهتر سایت شما قرار گرفته است."
81
+
82
+ #: inc/admin.php:1638
83
+ msgid "Discover Features"
84
+ msgstr "ویژگی های جدید"
85
+
86
+ #: inc/admin.php:1784 templates/exclude.php:106
87
+ msgid "has Woocommerce Items in Cart"
88
+ msgstr "دارای محصول در سبد خرید"
89
+
90
+ #: inc/admin.php:1783 templates/exclude.php:105
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "دارای پارامتر های گوگل آنالیتیک"
93
+
94
+ #: inc/admin.php:1776 templates/exclude.php:99
95
+ msgid "Archives"
96
+ msgstr "بایگانی ها"
97
+
98
+ #: templates/timeout.php:189
99
+ msgid "Server Time"
100
+ msgstr "زمان سرور"
101
+
102
+ #: templates/timeout.php:169
103
+ msgid "delete the files"
104
+ msgstr "حذف فایلها"
105
+
106
+ #: inc/admin.php:1507 inc/admin.php:1781 templates/timeout.php:99
107
+ #: templates/exclude.php:103
108
+ msgid "Contains"
109
+ msgstr "شامل"
110
+
111
+ #: inc/admin.php:1508 inc/admin.php:1782 templates/timeout.php:98
112
+ #: templates/exclude.php:104
113
+ msgid "Is Equal To"
114
+ msgstr "برابر با"
115
+
116
+ #: inc/admin.php:1506 inc/admin.php:1780 templates/timeout.php:97
117
+ #: templates/exclude.php:102
118
+ msgid "Starts With"
119
+ msgstr "شروع می شود با"
120
+
121
+ #: inc/admin.php:1505 inc/admin.php:1773 templates/timeout.php:96
122
+ #: templates/exclude.php:93
123
+ msgid "Home Page"
124
+ msgstr "صفحه اصلی"
125
+
126
+ #: inc/admin.php:1504 templates/timeout.php:95
127
+ msgid "All"
128
+ msgstr "همه"
129
+
130
+ #: templates/exclude.php:66
131
+ msgid "Exclude Page Wizard"
132
+ msgstr "عدم فعال سازی در برگه های"
133
+
134
+ #: templates/timeout.php:124
135
+ msgid "Then"
136
+ msgstr "سپس"
137
+
138
+ #: templates/timeout.php:91 templates/exclude.php:89
139
+ msgid "If REQUEST_URI"
140
+ msgstr "اگر لینک درخواستی برابر"
141
+
142
+ #: templates/timeout.php:68
143
+ msgid "Cache Timeout Wizard"
144
+ msgstr "تایم بندی کش"
145
+
146
+ #: templates/lazy_load.php:9
147
+ msgid "Lazy Load Settings"
148
+ msgstr "تنظیمات Lazy Load"
149
+
150
+ #: templates/nginx_gzip.php:9
151
+ msgid "Enable Gzip"
152
+ msgstr "فعال کردن Gzip"
153
+
154
+ #: templates/update_now.php:9
155
+ msgid "Please Update"
156
+ msgstr "لطفا بروزرسانی کنید"
157
+
158
+ #: templates/update_success.php:9
159
+ msgid "Success"
160
+ msgstr "موفقیت آمیز"
161
+
162
+ #: templates/disable_wp_cron.php:20
163
+ msgid "Warning"
164
+ msgstr "هشدار"
165
+
166
+ #: inc/admin.php:1540 inc/admin.php:1805 inc/admin.php:1822 inc/admin.php:1841
167
+ #: inc/admin.php:1859 inc/admin.php:1879
168
+ msgid "Add New Rule"
169
+ msgstr "افزودن قانون جدید"
170
+
171
+ #: inc/admin.php:1476 inc/admin-toolbar.php:81
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "حذف کش و فایل های سی اس اس و جاوا اسکریپت فشرده شده"
174
+
175
+ #: inc/admin.php:1411 inc/admin.php:2039 inc/admin.php:2260
176
+ msgid "Only available in Premium version"
177
+ msgstr "قابل دسترسی تنها در نسخه پریمیوم است."
178
+
179
+ #: templates/timeout.php:141
180
+ msgid "Choose One"
181
+ msgstr "یکی را انتخاب کن"
182
+
183
+ #: inc/admin.php:1481
184
+ msgid "All cache files will be removed as well"
185
+ msgstr "تمامی فایل های کش حذف خواهد شد"
186
+
187
+ #: inc/admin.php:1480
188
+ msgid "If you modify any css file, you have to delete minified css files"
189
+ msgstr "در صورت تغییر در فایل های سی اس اس باید کش و فایلهای فشرده را حذف کنید"
190
+
191
+ #: inc/admin.php:1468 inc/admin.php:1482 inc/admin.php:1483
192
+ msgid "Target folder"
193
+ msgstr "فولدر هدف"
194
+
195
+ #: inc/admin.php:1467
196
+ msgid "You can delete all cache files"
197
+ msgstr "حذف تمامی فایلهای کش"
198
+
199
+ #: inc/admin.php:992
200
+ msgid "Exclude"
201
+ msgstr "عدم تاثیر بر"
202
+
203
+ #: inc/admin.php:990
204
+ msgid "Image Optimization"
205
+ msgstr "بهینه‌سازی تصاویر"
206
+
207
+ #: inc/admin.php:987
208
+ msgid "Settings"
209
+ msgstr "تنظیمات"
210
+
211
+ #: inc/admin.php:2024
212
+ msgid "Database Cleanup"
213
+ msgstr "پاکسازی دیتابیس"
214
+
215
+ #: inc/admin.php:1912
216
+ msgid "CDN Settings"
217
+ msgstr "تنظیمات CDN"
218
+
219
+ #: inc/admin.php:1875
220
+ msgid "Exclude JS"
221
+ msgstr "عدم اعمال بر فایل های جاوااسکریپت"
222
+
223
+ #: inc/admin.php:1855
224
+ msgid "Exclude CSS"
225
+ msgstr "عدم اعمال بر فایل های سی اس اس"
226
+
227
+ #: inc/admin.php:1837
228
+ msgid "Exclude Cookies"
229
+ msgstr "عدم اعمال بر کوکی های"
230
+
231
+ #: inc/admin.php:1818
232
+ msgid "Exclude User-Agents"
233
+ msgstr "عدم اعمال بر User-Agents"
234
+
235
+ #: inc/admin.php:1801
236
+ msgid "Exclude Pages"
237
+ msgstr "عدم اعمال در برگه های"
238
+
239
+ #: inc/admin.php:1614
240
+ msgid "Optimize Image Tool"
241
+ msgstr "بهینه سازی تصاویر"
242
+
243
+ #: inc/admin.php:1497
244
+ msgid "Timeout Rules"
245
+ msgstr "تایم بندی فایل های کش"
246
+
247
+ #: inc/admin.php:988 inc/admin.php:1458 inc/admin.php:1463
248
+ #: inc/admin-toolbar.php:69
249
+ msgid "Delete Cache"
250
+ msgstr "حذف کش"
251
+
252
+ #: inc/admin.php:1418
253
+ msgid "Cache Statistics"
254
+ msgstr "آمار کش"
255
+
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "حذف کش پست ها و برگه ها"
259
+
260
+ #: templates/updatepost.php:29
261
+ msgid "What do you want to happen after update a post or a page?"
262
+ msgstr "بعد از بروزرسانی برگه ها و پست ها چه عملی مایل هستید انجام شود؟"
263
+
264
+ #: templates/newpost.php:58
265
+ msgid "Clear Cache of Pagination"
266
+ msgstr "حذف کش Pagination"
267
+
268
+ #: templates/updatepost.php:55 templates/newpost.php:57
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "حذف کش تگ های پست ها"
271
+
272
+ #: templates/updatepost.php:54 templates/newpost.php:56
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "حذف کش دسته بندی پست ها"
275
+
276
+ #: templates/updatepost.php:56 templates/newpost.php:55
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "حذف کش صفحه اصلی"
279
+
280
+ #: inc/admin-toolbar.php:74 templates/updatepost.php:49
281
+ #: templates/newpost.php:51
282
+ msgid "Clear All Cache"
283
+ msgstr "حذف تمام کش"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "بعد از انتشار پست جدید چه عملی میخواهید انجام شود؟"
288
+
289
+ #: templates/updatepost.php:64 templates/preload.php:102
290
+ #: templates/newpost.php:68
291
+ msgid "OK"
292
+ msgstr "تایید"
293
+
294
+ #: templates/preload.php:92
295
+ msgid "Restart After Completed"
296
+ msgstr "ریستارت بعد از تکمیل"
297
+
298
+ #: templates/preload.php:87
299
+ msgid "pages per minute"
300
+ msgstr "برگه در دقیقه"
301
+
302
+ #: templates/preload.php:63
303
+ msgid "Custom Taxonomies"
304
+ msgstr "تکسونومی های سفارشی"
305
+
306
+ #: templates/preload.php:58
307
+ msgid "Custom Post Types"
308
+ msgstr "پست تایپ های سفارشی"
309
+
310
+ #: inc/admin.php:1779 templates/preload.php:53 templates/exclude.php:101
311
+ msgid "Attachments"
312
+ msgstr "پیوست‌ها"
313
+
314
+ #: inc/admin.php:1775 templates/preload.php:49 templates/exclude.php:95
315
+ msgid "Tags"
316
+ msgstr "برچسب‌ها"
317
+
318
+ #: inc/admin.php:1778 templates/preload.php:45 templates/exclude.php:97
319
+ msgid "Pages"
320
+ msgstr "برگه‌ها"
321
+
322
+ #: inc/admin.php:1774 templates/preload.php:41 templates/exclude.php:94
323
+ msgid "Categories"
324
+ msgstr "دسته‌بندی‌ها"
325
+
326
+ #: inc/admin.php:1777 templates/preload.php:37 templates/exclude.php:96
327
+ msgid "Posts"
328
+ msgstr "نوشته‌ها"
329
+
330
+ #: templates/preload.php:33
331
+ msgid "Homepage"
332
+ msgstr "صفحه نخست"
333
+
334
+ #: inc/admin.php:1212 inc/admin.php:1220 inc/admin.php:1226 inc/admin.php:1232
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "با فعال کردن این قسمت تعداد درخواست های HTTP کاهش می یابد"
337
+
338
+ #: inc/admin.php:1320 inc/admin.php:1334 inc/admin.php:1341
339
+ msgid "Load images and iframes when they enter the browsers viewport"
340
+ msgstr "لود تصاویر و آی فریم ها با قرار گرفتن در حالت دید کاربر"
341
+
342
+ #: inc/admin.php:1314 inc/admin.php:1333 inc/admin.php:1340
343
+ msgid "Lazy Load"
344
+ msgstr "حالت Lazy Load"
345
+
346
+ #: inc/admin.php:1291 inc/admin.php:1297 inc/admin.php:1304
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "لود فونت های گوگل بصورت asynchronously"
349
+
350
+ #: inc/admin.php:1290 inc/admin.php:1296 inc/admin.php:1303
351
+ msgid "Google Fonts"
352
+ msgstr "فونت‌های گوگل"
353
+
354
+ #: inc/admin.php:1264 inc/admin.php:1270 inc/admin.php:1277
355
+ msgid "Render Blocking Js"
356
+ msgstr "فعال کردن Render Blocking Js"
357
+
358
+ #: inc/admin.php:1256
359
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "حذف سی اس اس های مرتبط و wp-emoji-release.min.js"
361
+
362
+ #: inc/admin.php:1255
363
+ msgid "Disable Emojis"
364
+ msgstr "غیرفعال کردن اموجی ها"
365
+
366
+ #: inc/admin.php:1250
367
+ msgid "Reduce page load times for repeat visitors"
368
+ msgstr "کاهش زمان لود برای کاربران تکراری"
369
+
370
+ #: inc/admin.php:1249
371
+ msgid "Browser Caching"
372
+ msgstr "کش مرورگر"
373
+
374
+ #: inc/admin.php:1238
375
+ msgid "Reduce the size of files sent from your server"
376
+ msgstr "کاهش حجم فایل های ارسالی از سمت سرور"
377
+
378
+ #: inc/admin.php:1237
379
+ msgid "Gzip"
380
+ msgstr "GZip"
381
+
382
+ #: inc/admin.php:1218 inc/admin.php:1225 inc/admin.php:1231
383
+ msgid "Combine Js Plus"
384
+ msgstr "ترکیب کردن قوی تر فایل های JS"
385
+
386
+ #: inc/admin.php:1211
387
+ msgid "Combine Js"
388
+ msgstr "ترکیب کردن فایل های JS"
389
+
390
+ #: inc/admin.php:1195 inc/admin.php:1200 inc/admin.php:1206
391
+ msgid "You can decrease the size of js files"
392
+ msgstr "فشرده سازی و کاهش حجم فایل های جاوا اسکریپت"
393
+
394
+ #: inc/admin.php:1194 inc/admin.php:1199 inc/admin.php:1205
395
+ msgid "Minify Js"
396
+ msgstr "فشرده سازی JS"
397
+
398
+ #: inc/admin.php:1187
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "با فعال کردن این قسمت تعداد درخواست های HTTP کاهش می یابد"
401
+
402
+ #: inc/admin.php:1186
403
+ msgid "Combine Css"
404
+ msgstr "ترکیب فایل های CSS"
405
+
406
+ #: inc/admin.php:1175 inc/admin.php:1180
407
+ msgid "More powerful minify css"
408
+ msgstr "فشرده سازی بیشتر و قوی تر فایل های CSS"
409
+
410
+ #: inc/admin.php:1174 inc/admin.php:1179
411
+ msgid "Minify Css Plus"
412
+ msgstr "فشرده سازی قویتر CSS"
413
+
414
+ #: inc/admin.php:1166
415
+ msgid "You can decrease the size of css files"
416
+ msgstr "فشرده سازی و کاهش حجم فایل های CSS"
417
+
418
+ #: inc/admin.php:1165
419
+ msgid "Minify Css"
420
+ msgstr "فشرده سازی CSS"
421
+
422
+ #: inc/admin.php:1153 inc/admin.php:1158
423
+ msgid "More powerful minify html"
424
+ msgstr "باعث کاهش بیشتر حجم و فشرده سازی بیشتر می شود"
425
+
426
+ #: inc/admin.php:1152 inc/admin.php:1157
427
+ msgid "Minify HTML Plus"
428
+ msgstr "فشرده سازی قویتر HTML"
429
+
430
+ #: inc/admin.php:1146
431
+ msgid "You can decrease the size of page"
432
+ msgstr "باعث کاهش حجم برگه ها میشود"
433
+
434
+ #: inc/admin.php:1145
435
+ msgid "Minify HTML"
436
+ msgstr "فشرده سازی HTML"
437
+
438
+ #: inc/admin.php:1137
439
+ msgid "Clear cache files when a post or page is updated"
440
+ msgstr "حذف کش در صورت بروز رسانی برگه و پست"
441
+
442
+ #: inc/admin.php:1136 templates/updatepost.php:18
443
+ msgid "Update Post"
444
+ msgstr "بروزرسانی پست"
445
+
446
+ #: inc/admin.php:1130
447
+ msgid "Clear cache files when a post or page is published"
448
+ msgstr "حذف کش در صورت انتشار پست و برگه"
449
+
450
+ #: inc/admin.php:1129 templates/newpost.php:18
451
+ msgid "New Post"
452
+ msgstr "پست جدید"
453
+
454
+ #: inc/admin.php:1097 inc/admin.php:1123
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "ایجاد کش برای موبایل"
457
+
458
+ #: inc/admin.php:1096 inc/admin.php:1122
459
+ msgid "Mobile Theme"
460
+ msgstr "تم موبایل"
461
+
462
+ #: inc/admin.php:1091
463
+ msgid "Don't show the cached version for desktop to mobile devices"
464
+ msgstr "عدم نمایش کش دسکتاپ برای موبایل"
465
+
466
+ #: inc/admin.php:1090
467
+ msgid "Mobile"
468
+ msgstr "موبایل"
469
+
470
+ #: inc/admin.php:1086
471
+ msgid "Don't show the cached version for logged-in users"
472
+ msgstr "عدم نمایش حالت کش شده برای کاربران وارد شده"
473
+
474
+ #: inc/admin.php:1085
475
+ msgid "Logged-in Users"
476
+ msgstr "کاربران وارد شده"
477
+
478
+ #: inc/admin.php:1076
479
+ msgid "Create the cache of all the site automatically"
480
+ msgstr "ایجاد اتوماتیک کش تمامی قسمت های سایت"
481
+
482
+ #: inc/admin.php:1075 templates/preload.php:20
483
+ msgid "Preload"
484
+ msgstr "پیش‌بارگذاری"
485
+
486
+ #: inc/admin.php:1047 inc/admin.php:1053 inc/admin.php:1060 inc/admin.php:1067
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "کاهش تعداد کوئری های دیتابیس"
489
+
490
+ #: inc/admin.php:1046 inc/admin.php:1052 inc/admin.php:1059 inc/admin.php:1066
491
+ msgid "Widget Cache"
492
+ msgstr "کش ابزارک ها"
493
+
494
+ #: inc/admin.php:1021
495
+ msgid "Enable"
496
+ msgstr "فعال کردن"
497
+
498
+ #: inc/admin.php:1020
499
+ msgid "Cache System"
500
+ msgstr "فعال کردن کش"
501
+
502
+ #: wpFastestCache.php:1598
503
+ msgid "Once Every 15 Days"
504
+ msgstr "یکبار هر 15 روز"
505
+
506
+ #: wpFastestCache.php:1586
507
+ msgid "Once Every 7 Days"
508
+ msgstr "یکبار هر 7 روز"
509
+
510
+ #: wpFastestCache.php:1580
511
+ msgid "Once Every 3 Days"
512
+ msgstr "یکبار هر 3 روز"
513
+
514
+ #: wpFastestCache.php:1568
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "یکبار هر 10 ساعت"
517
+
518
+ #: wpFastestCache.php:1562
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "یکبار هر 9 ساعت"
521
+
522
+ #: wpFastestCache.php:1556
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "یکبار هر 8 ساعت"
525
+
526
+ #: wpFastestCache.php:1550
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "یکبار هر 7 ساعت"
529
+
530
+ #: wpFastestCache.php:1538
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "یکبار هر 5 ساعت"
533
+
534
+ #: wpFastestCache.php:1532
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "یکبار هر 4 ساعت"
537
+
538
+ #: wpFastestCache.php:1526
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "یکبار هر 3 ساعت"
541
+
542
+ #: wpFastestCache.php:1520
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "یکبار هر 2 ساعت"
545
+
546
+ #: wpFastestCache.php:1592
547
+ msgid "Once Every 10 Days"
548
+ msgstr "یکبار هر 10 روز"
549
+
550
+ #. Author URI of the plugin
551
+ msgid "http://tr.linkedin.com/in/emrevona"
552
+ msgstr "http://tr.linkedin.com/in/emrevona"
553
+
554
+ #. Author of the plugin
555
+ msgid "Emre Vona"
556
+ msgstr "Emre Vona"
557
+
558
+ #. Description of the plugin
559
+ msgid "The simplest and fastest WP Cache system"
560
+ msgstr "ساده ترین و سریعترین پلاگین کش وردپرس"
561
+
562
+ #. Plugin URI of the plugin
563
+ msgid "http://wordpress.org/plugins/wp-fastest-cache/"
564
+ msgstr "http://wordpress.org/plugins/wp-fastest-cache/"
565
+
566
+ #. Plugin Name of the plugin
567
+ msgid "WP Fastest Cache"
568
+ msgstr "سریعترین کش وردپرس"
569
+
570
+ #: wpFastestCache.php:1610
571
+ msgid "Once a Year"
572
+ msgstr "یکبار در سال"
573
+
574
+ #: wpFastestCache.php:1604
575
+ msgid "Once a Month"
576
+ msgstr "یکبار در ماه"
577
+
578
+ #: wpFastestCache.php:1574
579
+ msgid "Once a Day"
580
+ msgstr "یکبار در روز"
581
+
582
+ #: wpFastestCache.php:1544
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "هر 6 ساعت یکبار"
585
+
586
+ #: wpFastestCache.php:1514
587
+ msgid "Once an Hour"
588
+ msgstr "هرساعت یکبار"
589
+
590
+ #: wpFastestCache.php:1508
591
+ msgid "Twice an Hour"
592
+ msgstr "هرساعت دوبار"
593
+
594
+ #: wpFastestCache.php:1502
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "یکبار در 15 دقیقه"
597
+
598
+ #: wpFastestCache.php:1496
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "یکبار در هر 5 دقیقه"
601
+
602
+ #: wpFastestCache.php:1490
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "یکبار در هر دقیقه"
languages/wp-fastest-cache-it_IT.mo ADDED
Binary file
languages/wp-fastest-cache-it_IT.po ADDED
@@ -0,0 +1,600 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - WP Fastest Cache - Stable (latest release) in Italian
2
+ # This file is distributed under the same license as the Plugins - WP Fastest Cache - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2019-11-22 10:40:44+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: it\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Stable (latest release)\n"
13
+
14
+ #: inc/admin.php:1265 inc/admin.php:1271 inc/admin.php:1278
15
+ msgid "Eliminate render-blocking JavaScript resources"
16
+ msgstr ""
17
+
18
+ #: inc/admin.php:2024
19
+ msgid "Database Cleanup"
20
+ msgstr "Pulizia del database"
21
+
22
+ #: inc/admin.php:1912
23
+ msgid "CDN Settings"
24
+ msgstr "Impostazioni CDN"
25
+
26
+ #: inc/admin.php:1875
27
+ msgid "Exclude JS"
28
+ msgstr "Escludi JS"
29
+
30
+ #: inc/admin.php:1855
31
+ msgid "Exclude CSS"
32
+ msgstr "Escludi CSS"
33
+
34
+ #: inc/admin.php:1837
35
+ msgid "Exclude Cookies"
36
+ msgstr "Escludi i cookie"
37
+
38
+ #: inc/admin.php:1818
39
+ msgid "Exclude User-Agents"
40
+ msgstr ""
41
+
42
+ #: inc/admin.php:1801
43
+ msgid "Exclude Pages"
44
+ msgstr "Escludi pagine"
45
+
46
+ #: inc/admin.php:1733
47
+ msgid "Download"
48
+ msgstr "Scarica"
49
+
50
+ #: inc/admin.php:1728
51
+ msgid "Update"
52
+ msgstr "Aggiorna"
53
+
54
+ #: inc/admin.php:1722
55
+ msgid "Please don't delete the free version. Premium version works with the free version."
56
+ msgstr "Non eliminare la versione gratuita. La versione Premium funziona con la versione gratuita."
57
+
58
+ #: inc/admin.php:1721
59
+ msgid "Get It Now!"
60
+ msgstr "Ottienilo ora!"
61
+
62
+ #: inc/admin.php:1715
63
+ msgid "You can download and update the premium when you want if you paid."
64
+ msgstr "Puoi scaricare e aggiornare la versione premium quando vuoi se la acquisti."
65
+
66
+ #: inc/admin.php:1712
67
+ msgid "Download & Update"
68
+ msgstr "Scarica e aggiorna"
69
+
70
+ #: inc/admin.php:1699
71
+ msgid "Buy"
72
+ msgstr "Acquista"
73
+
74
+ #: inc/admin.php:1684
75
+ msgid "Purchased"
76
+ msgstr "Acquistato"
77
+
78
+ #: inc/admin.php:1679
79
+ msgid "The download button will be available after paid. You can buy the premium version now."
80
+ msgstr "Il pulsante di download sarà disponibile dopo aver effettuato il pagamento. Puoi acquistare la versione Premium immediatamente."
81
+
82
+ #: inc/admin.php:1678
83
+ msgid "Just"
84
+ msgstr "Solo"
85
+
86
+ #: inc/admin.php:1664
87
+ msgid "You need to pay before downloading the premium version."
88
+ msgstr "Devi procedere al pagamento prima di poter scaricare la versione premium."
89
+
90
+ #: inc/admin.php:1661
91
+ msgid "Checkout"
92
+ msgstr "Pagamento"
93
+
94
+ #: inc/admin.php:1647
95
+ msgid "New Features"
96
+ msgstr "Nuove funzionalità"
97
+
98
+ #: inc/admin.php:1641
99
+ msgid "In the premium version there are some new features which speed up the sites more."
100
+ msgstr "Nella versione Premium ci sono alcune nuove funzionalità che accelerano maggiormente i siti."
101
+
102
+ #: inc/admin.php:1638
103
+ msgid "Discover Features"
104
+ msgstr "Scopri le funzionalità"
105
+
106
+ #: inc/admin.php:1614
107
+ msgid "Optimize Image Tool"
108
+ msgstr "Strumento di ottimizzazione immagini"
109
+
110
+ #: inc/admin.php:1540 inc/admin.php:1805 inc/admin.php:1822 inc/admin.php:1841
111
+ #: inc/admin.php:1859 inc/admin.php:1879
112
+ msgid "Add New Rule"
113
+ msgstr "Aggiungi nuova regola"
114
+
115
+ #: inc/admin.php:1497
116
+ msgid "Timeout Rules"
117
+ msgstr "Regole di timeout"
118
+
119
+ #: inc/admin.php:1481
120
+ msgid "All cache files will be removed as well"
121
+ msgstr "Verranno rimossi anche tutti i file di cache"
122
+
123
+ #: inc/admin.php:1480
124
+ msgid "If you modify any css file, you have to delete minified css files"
125
+ msgstr "Se modifichi un file CSS, devi eliminare i file dei CSS minificati"
126
+
127
+ #: inc/admin.php:1468 inc/admin.php:1482 inc/admin.php:1483
128
+ msgid "Target folder"
129
+ msgstr "Cartella di destinazione"
130
+
131
+ #: inc/admin.php:1467
132
+ msgid "You can delete all cache files"
133
+ msgstr "Puoi eliminare tutti i file della cache"
134
+
135
+ #: inc/admin.php:1418
136
+ msgid "Cache Statistics"
137
+ msgstr "Statistiche della cache"
138
+
139
+ #: inc/admin.php:1411 inc/admin.php:2039 inc/admin.php:2260
140
+ msgid "Only available in Premium version"
141
+ msgstr "Disponibile solo nella versione Premium"
142
+
143
+ #: inc/admin.php:1320 inc/admin.php:1334 inc/admin.php:1341
144
+ msgid "Load images and iframes when they enter the browsers viewport"
145
+ msgstr "Carica immagini e iframe quando vengono visualizzati nel browser"
146
+
147
+ #: inc/admin.php:1314 inc/admin.php:1333 inc/admin.php:1340
148
+ msgid "Lazy Load"
149
+ msgstr "Lazy load"
150
+
151
+ #: inc/admin.php:1291 inc/admin.php:1297 inc/admin.php:1304
152
+ msgid "Load Google Fonts asynchronously"
153
+ msgstr "Carica Google Fonts in modo asincrono"
154
+
155
+ #: inc/admin.php:1290 inc/admin.php:1296 inc/admin.php:1303
156
+ msgid "Google Fonts"
157
+ msgstr "Google Fonts"
158
+
159
+ #: inc/admin.php:1264 inc/admin.php:1270 inc/admin.php:1277
160
+ msgid "Render Blocking Js"
161
+ msgstr "Js che bloccano il rendering"
162
+
163
+ #: inc/admin.php:1256
164
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
165
+ msgstr ""
166
+
167
+ #: inc/admin.php:1255
168
+ msgid "Disable Emojis"
169
+ msgstr "Disabilita emoji"
170
+
171
+ #: inc/admin.php:1250
172
+ msgid "Reduce page load times for repeat visitors"
173
+ msgstr "Riduce i tempi di caricamento della pagina per visitatori abituali"
174
+
175
+ #: inc/admin.php:1249
176
+ msgid "Browser Caching"
177
+ msgstr "Memorizzazione nella cache del browser"
178
+
179
+ #: inc/admin.php:1238
180
+ msgid "Reduce the size of files sent from your server"
181
+ msgstr "Riduce la dimensione dei file inviati dal tuo server"
182
+
183
+ #: inc/admin.php:1237
184
+ msgid "Gzip"
185
+ msgstr "Gzip"
186
+
187
+ #: inc/admin.php:1218 inc/admin.php:1225 inc/admin.php:1231
188
+ msgid "Combine Js Plus"
189
+ msgstr "Combina Js Plus"
190
+
191
+ #: inc/admin.php:1212 inc/admin.php:1220 inc/admin.php:1226 inc/admin.php:1232
192
+ msgid "Reduce HTTP requests through combined js files"
193
+ msgstr "Riduci le richieste HTTP attraverso file Js combinati"
194
+
195
+ #: inc/admin.php:1211
196
+ msgid "Combine Js"
197
+ msgstr "Combina Js"
198
+
199
+ #: inc/admin.php:1195 inc/admin.php:1200 inc/admin.php:1206
200
+ msgid "You can decrease the size of js files"
201
+ msgstr "Puoi ridurre la dimensione dei file Js"
202
+
203
+ #: inc/admin.php:1194 inc/admin.php:1199 inc/admin.php:1205
204
+ msgid "Minify Js"
205
+ msgstr "Minifica JS"
206
+
207
+ #: inc/admin.php:1187
208
+ msgid "Reduce HTTP requests through combined css files"
209
+ msgstr "Riduce le richieste HTTP attraverso file CSS combinati"
210
+
211
+ #: inc/admin.php:1186
212
+ msgid "Combine Css"
213
+ msgstr "Combina CSS"
214
+
215
+ #: inc/admin.php:1175 inc/admin.php:1180
216
+ msgid "More powerful minify css"
217
+ msgstr "Minificazione CSS più potente"
218
+
219
+ #: inc/admin.php:1174 inc/admin.php:1179
220
+ msgid "Minify Css Plus"
221
+ msgstr "Minifica CSS Plus"
222
+
223
+ #: inc/admin.php:1166
224
+ msgid "You can decrease the size of css files"
225
+ msgstr "Puoi ridurre la dimensione dei file CSS"
226
+
227
+ #: inc/admin.php:1165
228
+ msgid "Minify Css"
229
+ msgstr "Minifica CSS"
230
+
231
+ #: inc/admin.php:1153 inc/admin.php:1158
232
+ msgid "More powerful minify html"
233
+ msgstr "Minificazione HTML più potente"
234
+
235
+ #: inc/admin.php:1152 inc/admin.php:1157
236
+ msgid "Minify HTML Plus"
237
+ msgstr "Minifica HTML Plus"
238
+
239
+ #: inc/admin.php:1146
240
+ msgid "You can decrease the size of page"
241
+ msgstr "Puoi ridurre la dimensione della pagina"
242
+
243
+ #: inc/admin.php:1145
244
+ msgid "Minify HTML"
245
+ msgstr "Minifica HTML"
246
+
247
+ #: inc/admin.php:1137
248
+ msgid "Clear cache files when a post or page is updated"
249
+ msgstr "Svuota la cache quando un articolo o una pagina vengono aggiornati"
250
+
251
+ #: inc/admin.php:1130
252
+ msgid "Clear cache files when a post or page is published"
253
+ msgstr "Svuota la cache quando un articolo o una pagina vengono pubblicati"
254
+
255
+ #: inc/admin.php:1097 inc/admin.php:1123
256
+ msgid "Create cache for mobile theme"
257
+ msgstr "Crea la cache per il tema mobile"
258
+
259
+ #: inc/admin.php:1096 inc/admin.php:1122
260
+ msgid "Mobile Theme"
261
+ msgstr "Tema mobile"
262
+
263
+ #: inc/admin.php:1091
264
+ msgid "Don't show the cached version for desktop to mobile devices"
265
+ msgstr "Non mostrare la versione cache per desktop su dispositivi mobili"
266
+
267
+ #: inc/admin.php:1090
268
+ msgid "Mobile"
269
+ msgstr "Dispositivi mobili"
270
+
271
+ #: inc/admin.php:1086
272
+ msgid "Don't show the cached version for logged-in users"
273
+ msgstr "Non mostrare la versione in cache agli utenti connessi"
274
+
275
+ #: inc/admin.php:1085
276
+ msgid "Logged-in Users"
277
+ msgstr "Utenti connessi"
278
+
279
+ #: inc/admin.php:1076
280
+ msgid "Create the cache of all the site automatically"
281
+ msgstr "Crea la cache di tutto il sito automaticamente"
282
+
283
+ #: inc/admin.php:1047 inc/admin.php:1053 inc/admin.php:1060 inc/admin.php:1067
284
+ msgid "Reduce the number of SQL queries"
285
+ msgstr "Riduci il numero di query SQL"
286
+
287
+ #: inc/admin.php:1046 inc/admin.php:1052 inc/admin.php:1059 inc/admin.php:1066
288
+ msgid "Widget Cache"
289
+ msgstr "Cache dei widget"
290
+
291
+ #: inc/admin.php:1021
292
+ msgid "Enable"
293
+ msgstr "Attiva"
294
+
295
+ #: inc/admin.php:1020
296
+ msgid "Cache System"
297
+ msgstr "Sistema di cache"
298
+
299
+ #: inc/admin.php:992
300
+ msgid "Exclude"
301
+ msgstr "Escludi"
302
+
303
+ #: inc/admin.php:990
304
+ msgid "Image Optimization"
305
+ msgstr "Ottimizzazione immagini"
306
+
307
+ #: inc/admin.php:987
308
+ msgid "Settings"
309
+ msgstr "Impostazioni"
310
+
311
+ #: inc/admin.php:429 inc/admin.php:432
312
+ msgid "Options have been saved"
313
+ msgstr "Le opzioni sono state salvate"
314
+
315
+ #: inc/admin-toolbar.php:81 inc/admin.php:1476
316
+ msgid "Delete Cache and Minified CSS/JS"
317
+ msgstr "Elimina la cache e i CSS/JS minificati"
318
+
319
+ #: inc/admin-toolbar.php:69 inc/admin.php:988 inc/admin.php:1458
320
+ #: inc/admin.php:1463
321
+ msgid "Delete Cache"
322
+ msgstr "Elimina cache"
323
+
324
+ #: templates/preload.php:92
325
+ msgid "Restart After Completed"
326
+ msgstr "Riavvia al completamento"
327
+
328
+ #: templates/preload.php:87
329
+ msgid "pages per minute"
330
+ msgstr "pagine al minuto"
331
+
332
+ #: templates/preload.php:63
333
+ msgid "Custom Taxonomies"
334
+ msgstr "Tassonomie personalizzate"
335
+
336
+ #: templates/preload.php:58
337
+ msgid "Custom Post Types"
338
+ msgstr "Tipi di contenuto personalizzati"
339
+
340
+ #: templates/preload.php:33
341
+ msgid "Homepage"
342
+ msgstr "Homepage"
343
+
344
+ #: templates/preload.php:20 inc/admin.php:1075
345
+ msgid "Preload"
346
+ msgstr "Precaricamento"
347
+
348
+ #: templates/update_success.php:9
349
+ msgid "Success"
350
+ msgstr "Completato"
351
+
352
+ #: templates/disable_wp_cron.php:20
353
+ msgid "Warning"
354
+ msgstr "Attenzione"
355
+
356
+ #: templates/nginx_gzip.php:9
357
+ msgid "Enable Gzip"
358
+ msgstr "Abilita Gzip"
359
+
360
+ #: templates/timeout.php:189
361
+ msgid "Server Time"
362
+ msgstr "Ora del server"
363
+
364
+ #: templates/timeout.php:169
365
+ msgid "delete the files"
366
+ msgstr "elimina i file"
367
+
368
+ #: templates/timeout.php:141
369
+ msgid "Choose One"
370
+ msgstr ""
371
+
372
+ #: templates/timeout.php:124
373
+ msgid "Then"
374
+ msgstr ""
375
+
376
+ #: templates/timeout.php:95 inc/admin.php:1504
377
+ msgid "All"
378
+ msgstr "Tutti"
379
+
380
+ #: templates/timeout.php:68
381
+ msgid "Cache Timeout Wizard"
382
+ msgstr ""
383
+
384
+ #: templates/exclude.php:106 inc/admin.php:1784
385
+ msgid "has Woocommerce Items in Cart"
386
+ msgstr "ha articoli Woocommerce nel carrello"
387
+
388
+ #: templates/exclude.php:105 inc/admin.php:1783
389
+ msgid "has Google Analytics Parameters"
390
+ msgstr "ha parametri di Google Analytics"
391
+
392
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1508
393
+ #: inc/admin.php:1782
394
+ msgid "Is Equal To"
395
+ msgstr "è uguale a"
396
+
397
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1507
398
+ #: inc/admin.php:1781
399
+ msgid "Contains"
400
+ msgstr "Contiene"
401
+
402
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1506
403
+ #: inc/admin.php:1780
404
+ msgid "Starts With"
405
+ msgstr "Inizia con"
406
+
407
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1779
408
+ msgid "Attachments"
409
+ msgstr "Allegati"
410
+
411
+ #: templates/exclude.php:99 inc/admin.php:1776
412
+ msgid "Archives"
413
+ msgstr "Archivi"
414
+
415
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1778
416
+ msgid "Pages"
417
+ msgstr "Pagine"
418
+
419
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1777
420
+ msgid "Posts"
421
+ msgstr "Articoli"
422
+
423
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1775
424
+ msgid "Tags"
425
+ msgstr "Tag"
426
+
427
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1774
428
+ msgid "Categories"
429
+ msgstr "Categorie"
430
+
431
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1505
432
+ #: inc/admin.php:1773
433
+ msgid "Home Page"
434
+ msgstr "Homepage"
435
+
436
+ #: templates/exclude.php:89 templates/timeout.php:91
437
+ msgid "If REQUEST_URI"
438
+ msgstr "Se REQUEST_URI"
439
+
440
+ #: templates/exclude.php:66
441
+ msgid "Exclude Page Wizard"
442
+ msgstr "Procedura guidata di esclusione pagina"
443
+
444
+ #: templates/updatepost.php:53
445
+ msgid "Clear Cache of Post / Page"
446
+ msgstr "Cancella la cache di articoli/pagine"
447
+
448
+ #: templates/updatepost.php:29
449
+ msgid "What do you want to happen after update a post or a page?"
450
+ msgstr "Cosa vuoi che accada dopo l'aggiornamento di un articolo o di una pagina?"
451
+
452
+ #: templates/updatepost.php:18 inc/admin.php:1136
453
+ msgid "Update Post"
454
+ msgstr "Aggiorna articolo"
455
+
456
+ #: templates/newpost.php:68 templates/updatepost.php:64
457
+ #: templates/preload.php:102
458
+ msgid "OK"
459
+ msgstr "OK"
460
+
461
+ #: templates/newpost.php:58
462
+ msgid "Clear Cache of Pagination"
463
+ msgstr "Cancella cache della paginazione"
464
+
465
+ #: templates/newpost.php:57 templates/updatepost.php:55
466
+ msgid "Clear Cache of Post Tags"
467
+ msgstr "Cancella cache dei tag"
468
+
469
+ #: templates/newpost.php:56 templates/updatepost.php:54
470
+ msgid "Clear Cache of Post Categories"
471
+ msgstr "Cancella cache delle categorie"
472
+
473
+ #: templates/newpost.php:55 templates/updatepost.php:56
474
+ msgid "Clear Cache of Homepage"
475
+ msgstr "Cancella cache della home"
476
+
477
+ #: templates/newpost.php:51 templates/updatepost.php:49
478
+ #: inc/admin-toolbar.php:74
479
+ msgid "Clear All Cache"
480
+ msgstr "Cancella tutta la cache"
481
+
482
+ #: templates/newpost.php:29
483
+ msgid "What do you want to happen after publishing the new post?"
484
+ msgstr "Cosa vuoi che accada dopo aver pubblicato il nuovo articolo?"
485
+
486
+ #: templates/newpost.php:18 inc/admin.php:1129
487
+ msgid "New Post"
488
+ msgstr "Nuovo articolo"
489
+
490
+ #: templates/update_now.php:9
491
+ msgid "Please Update"
492
+ msgstr "Aggiorna"
493
+
494
+ #: templates/lazy_load.php:9
495
+ msgid "Lazy Load Settings"
496
+ msgstr "Impostazioni lazy load"
497
+
498
+ #: wpFastestCache.php:1595
499
+ msgid "Once Every 15 Days"
500
+ msgstr "Ogni 15 giorni"
501
+
502
+ #: wpFastestCache.php:1583
503
+ msgid "Once Every 7 Days"
504
+ msgstr "Ogni 7 giorni"
505
+
506
+ #: wpFastestCache.php:1577
507
+ msgid "Once Every 3 Days"
508
+ msgstr "Una volta ogni 3 giorni"
509
+
510
+ #. Author URI of the plugin
511
+ msgid "http://tr.linkedin.com/in/emrevona"
512
+ msgstr "http://tr.linkedin.com/in/emrevona"
513
+
514
+ #. Author of the plugin
515
+ msgid "Emre Vona"
516
+ msgstr "Emre Vona"
517
+
518
+ #. Description of the plugin
519
+ msgid "The simplest and fastest WP Cache system"
520
+ msgstr "Il più semplice e veloce sistema Cache WP"
521
+
522
+ #. Plugin URI of the plugin
523
+ msgid "http://wordpress.org/plugins/wp-fastest-cache/"
524
+ msgstr "http://wordpress.org/plugins/wp-fastest-cache/"
525
+
526
+ #. Plugin Name of the plugin
527
+ msgid "WP Fastest Cache"
528
+ msgstr "WP Fastest Cache"
529
+
530
+ #: wpFastestCache.php:1607
531
+ msgid "Once a Year"
532
+ msgstr "Una volta all'anno"
533
+
534
+ #: wpFastestCache.php:1601
535
+ msgid "Once a Month"
536
+ msgstr "Una volta al mese"
537
+
538
+ #: wpFastestCache.php:1589
539
+ msgid "Once Every 10 Days"
540
+ msgstr "Una volta ogni 10 giorni"
541
+
542
+ #: wpFastestCache.php:1571
543
+ msgid "Once a Day"
544
+ msgstr "Una volta al giorno"
545
+
546
+ #: wpFastestCache.php:1565
547
+ msgid "Once Every 10 Hours"
548
+ msgstr "Una volta ogni 10 ore"
549
+
550
+ #: wpFastestCache.php:1559
551
+ msgid "Once Every 9 Hours"
552
+ msgstr "Una volta ogni 9 ore"
553
+
554
+ #: wpFastestCache.php:1553
555
+ msgid "Once Every 8 Hours"
556
+ msgstr "Una volta ogni 8 ore"
557
+
558
+ #: wpFastestCache.php:1547
559
+ msgid "Once Every 7 Hours"
560
+ msgstr "Una volta ogni 7 ore"
561
+
562
+ #: wpFastestCache.php:1541
563
+ msgid "Once Every 6 Hours"
564
+ msgstr "Una volta ogni 6 ore"
565
+
566
+ #: wpFastestCache.php:1535
567
+ msgid "Once Every 5 Hours"
568
+ msgstr "Una volta ogni 5 ore"
569
+
570
+ #: wpFastestCache.php:1529
571
+ msgid "Once Every 4 Hours"
572
+ msgstr "Una volta ogni 4 ore"
573
+
574
+ #: wpFastestCache.php:1523
575
+ msgid "Once Every 3 Hours"
576
+ msgstr "Una volta ogni 3 ore"
577
+
578
+ #: wpFastestCache.php:1517
579
+ msgid "Once Every 2 Hours"
580
+ msgstr "Una volta ogni 2 ore"
581
+
582
+ #: wpFastestCache.php:1511
583
+ msgid "Once an Hour"
584
+ msgstr "Una volta all'ora"
585
+
586
+ #: wpFastestCache.php:1505
587
+ msgid "Twice an Hour"
588
+ msgstr "Due volte all'ora"
589
+
590
+ #: wpFastestCache.php:1499
591
+ msgid "Once Every 15 Minutes"
592
+ msgstr "Una volta ogni 15 minuti"
593
+
594
+ #: wpFastestCache.php:1493
595
+ msgid "Once Every 5 Minutes"
596
+ msgstr "Una volta ogni 5 minuti"
597
+
598
+ #: wpFastestCache.php:1487
599
+ msgid "Once Every 1 Minute"
600
+ msgstr "Una volta al minuto"
languages/wp-fastest-cache-zh_TW.mo ADDED
Binary file
languages/wp-fastest-cache-zh_TW.po ADDED
@@ -0,0 +1,604 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in Chinese (Taiwan)
2
+ # This file is distributed under the same license as the Plugins - WP Fastest Cache - Development (trunk) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2019-11-25 15:12:58+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: zh_TW\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "清除快取"
17
+
18
+ #: inc/admin.php:1287 inc/admin.php:1293 inc/admin.php:1300
19
+ msgid "Eliminate render-blocking JavaScript resources"
20
+ msgstr "清除禁止轉譯的 JavaScrpt 資源"
21
+
22
+ #: inc/admin.php:429 inc/admin.php:432
23
+ msgid "Options have been saved"
24
+ msgstr "設定已儲存。"
25
+
26
+ #: inc/admin.php:1755
27
+ msgid "Download"
28
+ msgstr "下載"
29
+
30
+ #: inc/admin.php:1750
31
+ msgid "Update"
32
+ msgstr "更新"
33
+
34
+ #: inc/admin.php:1744
35
+ msgid "Please don't delete the free version. Premium version works with the free version."
36
+ msgstr "請勿刪除免費版外掛,Premium 版需要與免費版搭配使用。"
37
+
38
+ #: inc/admin.php:1743
39
+ msgid "Get It Now!"
40
+ msgstr "立即購買授權"
41
+
42
+ #: inc/admin.php:1737
43
+ msgid "You can download and update the premium when you want if you paid."
44
+ msgstr "購買授權後,便可隨時下載或更新 Premium 版外掛。"
45
+
46
+ #: inc/admin.php:1734
47
+ msgid "Download & Update"
48
+ msgstr "下載及更新"
49
+
50
+ #: inc/admin.php:1721
51
+ msgid "Buy"
52
+ msgstr "購買授權"
53
+
54
+ #: inc/admin.php:1706
55
+ msgid "Purchased"
56
+ msgstr "已購買"
57
+
58
+ #: inc/admin.php:1701
59
+ msgid "The download button will be available after paid. You can buy the premium version now."
60
+ msgstr "付款完成後便會出現 [下載] 按鈕。請立即購買 Premium 版。"
61
+
62
+ #: inc/admin.php:1700
63
+ msgid "Just"
64
+ msgstr "僅需"
65
+
66
+ #: inc/admin.php:1686
67
+ msgid "You need to pay before downloading the premium version."
68
+ msgstr "必須先購買授權才能下載 Premium 版。"
69
+
70
+ #: inc/admin.php:1683
71
+ msgid "Checkout"
72
+ msgstr "購買授權"
73
+
74
+ #: inc/admin.php:1669
75
+ msgid "New Features"
76
+ msgstr "全新功能"
77
+
78
+ #: inc/admin.php:1663
79
+ msgid "In the premium version there are some new features which speed up the sites more."
80
+ msgstr "Premium 版提供更多可以加速網站的新功能。"
81
+
82
+ #: inc/admin.php:1660
83
+ msgid "Discover Features"
84
+ msgstr "進一步瞭解更多功能"
85
+
86
+ #: templates/exclude.php:106 inc/admin.php:1806
87
+ msgid "has Woocommerce Items in Cart"
88
+ msgstr "包含購物車中的 Woocommerce 商品資料"
89
+
90
+ #: templates/exclude.php:105 inc/admin.php:1805
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "包含 Google Analytics 參數"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1798
95
+ msgid "Archives"
96
+ msgstr "彙整"
97
+
98
+ #: templates/timeout.php:189
99
+ msgid "Server Time"
100
+ msgstr "伺服器時間"
101
+
102
+ #: templates/timeout.php:169
103
+ msgid "delete the files"
104
+ msgstr "刪除檔案"
105
+
106
+ #: templates/timeout.php:99 templates/exclude.php:103 inc/admin.php:1529
107
+ #: inc/admin.php:1803
108
+ msgid "Contains"
109
+ msgstr "包含"
110
+
111
+ #: templates/timeout.php:98 templates/exclude.php:104 inc/admin.php:1530
112
+ #: inc/admin.php:1804
113
+ msgid "Is Equal To"
114
+ msgstr "等於"
115
+
116
+ #: templates/timeout.php:97 templates/exclude.php:102 inc/admin.php:1528
117
+ #: inc/admin.php:1802
118
+ msgid "Starts With"
119
+ msgstr "開頭含有"
120
+
121
+ #: templates/timeout.php:96 templates/exclude.php:93 inc/admin.php:1527
122
+ #: inc/admin.php:1795
123
+ msgid "Home Page"
124
+ msgstr "首頁"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1526
127
+ msgid "All"
128
+ msgstr "全部"
129
+
130
+ #: templates/exclude.php:66
131
+ msgid "Exclude Page Wizard"
132
+ msgstr "排除頁面小幫手"
133
+
134
+ #: templates/timeout.php:124
135
+ msgid "Then"
136
+ msgstr "然後"
137
+
138
+ #: templates/timeout.php:91 templates/exclude.php:89
139
+ msgid "If REQUEST_URI"
140
+ msgstr "如果 REQUEST_URI"
141
+
142
+ #: templates/timeout.php:68
143
+ msgid "Cache Timeout Wizard"
144
+ msgstr "快取逾時小幫手"
145
+
146
+ #: templates/lazy_load.php:9
147
+ msgid "Lazy Load Settings"
148
+ msgstr "延遲載入設定"
149
+
150
+ #: templates/nginx_gzip.php:9
151
+ msgid "Enable Gzip"
152
+ msgstr "啟用 Gzip"
153
+
154
+ #: templates/update_now.php:9
155
+ msgid "Please Update"
156
+ msgstr "請更新"
157
+
158
+ #: templates/update_success.php:9
159
+ msgid "Success"
160
+ msgstr "成功"
161
+
162
+ #: templates/disable_wp_cron.php:20
163
+ msgid "Warning"
164
+ msgstr "警告"
165
+
166
+ #: inc/admin.php:1562 inc/admin.php:1827 inc/admin.php:1844 inc/admin.php:1863
167
+ #: inc/admin.php:1881 inc/admin.php:1901
168
+ msgid "Add New Rule"
169
+ msgstr "新增規則"
170
+
171
+ #: inc/admin.php:1498 inc/admin-toolbar.php:81
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "刪除快取及已壓縮的 CSS/JS"
174
+
175
+ #: inc/admin.php:1433 inc/admin.php:2061 inc/admin.php:2282
176
+ msgid "Only available in Premium version"
177
+ msgstr "這項功能僅於 Premium 版中提供"
178
+
179
+ #: templates/timeout.php:141
180
+ msgid "Choose One"
181
+ msgstr "選取一項"
182
+
183
+ #: inc/admin.php:1503
184
+ msgid "All cache files will be removed as well"
185
+ msgstr "這項操作會同時刪除全部快取檔案。"
186
+
187
+ #: inc/admin.php:1502
188
+ msgid "If you modify any css file, you have to delete minified css files"
189
+ msgstr "如果對任何 CSS 檔案進行修改,修改完畢後必須刪除之前已壓縮的 CSS 檔案。"
190
+
191
+ #: inc/admin.php:1490 inc/admin.php:1504 inc/admin.php:1505
192
+ msgid "Target folder"
193
+ msgstr "目標資料夾"
194
+
195
+ #: inc/admin.php:1489
196
+ msgid "You can delete all cache files"
197
+ msgstr "這項操作會刪除全部快取。"
198
+
199
+ #: inc/admin.php:1014
200
+ msgid "Exclude"
201
+ msgstr "排除"
202
+
203
+ #: inc/admin.php:1012
204
+ msgid "Image Optimization"
205
+ msgstr "圖片最佳化"
206
+
207
+ #: inc/admin.php:1009
208
+ msgid "Settings"
209
+ msgstr "設定"
210
+
211
+ #: inc/admin.php:2046
212
+ msgid "Database Cleanup"
213
+ msgstr "清理資料庫"
214
+
215
+ #: inc/admin.php:1934
216
+ msgid "CDN Settings"
217
+ msgstr "CDN 設定"
218
+
219
+ #: inc/admin.php:1897
220
+ msgid "Exclude JS"
221
+ msgstr "排除 JS"
222
+
223
+ #: inc/admin.php:1877
224
+ msgid "Exclude CSS"
225
+ msgstr "排除 CSS"
226
+
227
+ #: inc/admin.php:1859
228
+ msgid "Exclude Cookies"
229
+ msgstr "排除 Cookie"
230
+
231
+ #: inc/admin.php:1840
232
+ msgid "Exclude User-Agents"
233
+ msgstr "排除使用者代理程式"
234
+
235
+ #: inc/admin.php:1823
236
+ msgid "Exclude Pages"
237
+ msgstr "排除頁面"
238
+
239
+ #: inc/admin.php:1636
240
+ msgid "Optimize Image Tool"
241
+ msgstr "圖片最佳化工具"
242
+
243
+ #: inc/admin.php:1519
244
+ msgid "Timeout Rules"
245
+ msgstr "逾時規則"
246
+
247
+ #: inc/admin.php:1010 inc/admin.php:1480 inc/admin.php:1485
248
+ #: inc/admin-toolbar.php:69
249
+ msgid "Delete Cache"
250
+ msgstr "刪除快取"
251
+
252
+ #: inc/admin.php:1440
253
+ msgid "Cache Statistics"
254
+ msgstr "快取統計資料"
255
+
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "清除文章/頁面快取"
259
+
260
+ #: templates/updatepost.php:29
261
+ msgid "What do you want to happen after update a post or a page?"
262
+ msgstr "更新內容後的快取處理方式:"
263
+
264
+ #: templates/newpost.php:58
265
+ msgid "Clear Cache of Pagination"
266
+ msgstr "清除內容頁次快取"
267
+
268
+ #: templates/updatepost.php:55 templates/newpost.php:57
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "清除文章標籤快取"
271
+
272
+ #: templates/updatepost.php:54 templates/newpost.php:56
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "清除文章分類快取"
275
+
276
+ #: templates/updatepost.php:56 templates/newpost.php:55
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "清除首頁快取"
279
+
280
+ #: templates/updatepost.php:49 templates/newpost.php:51
281
+ #: inc/admin-toolbar.php:74
282
+ msgid "Clear All Cache"
283
+ msgstr "清除全部快取"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "發佈內容後的快取處理方式:"
288
+
289
+ #: templates/updatepost.php:64 templates/preload.php:102
290
+ #: templates/newpost.php:68
291
+ msgid "OK"
292
+ msgstr "確定"
293
+
294
+ #: templates/preload.php:92
295
+ msgid "Restart After Completed"
296
+ msgstr "快取建立完畢後自動重新啟動預先載入程序"
297
+
298
+ #: templates/preload.php:87
299
+ msgid "pages per minute"
300
+ msgstr "頁處理頁數/分鐘"
301
+
302
+ #: templates/preload.php:63
303
+ msgid "Custom Taxonomies"
304
+ msgstr "自訂分類法"
305
+
306
+ #: templates/preload.php:58
307
+ msgid "Custom Post Types"
308
+ msgstr "自訂內容類型"
309
+
310
+ #: templates/preload.php:53 templates/exclude.php:101 inc/admin.php:1801
311
+ msgid "Attachments"
312
+ msgstr "附件"
313
+
314
+ #: templates/preload.php:49 templates/exclude.php:95 inc/admin.php:1797
315
+ msgid "Tags"
316
+ msgstr "標籤"
317
+
318
+ #: templates/preload.php:45 templates/exclude.php:97 inc/admin.php:1800
319
+ msgid "Pages"
320
+ msgstr "頁面"
321
+
322
+ #: templates/preload.php:41 templates/exclude.php:94 inc/admin.php:1796
323
+ msgid "Categories"
324
+ msgstr "分類"
325
+
326
+ #: templates/preload.php:37 templates/exclude.php:96 inc/admin.php:1799
327
+ msgid "Posts"
328
+ msgstr "文章"
329
+
330
+ #: templates/preload.php:33
331
+ msgid "Homepage"
332
+ msgstr "首頁"
333
+
334
+ #: inc/admin.php:1234 inc/admin.php:1242 inc/admin.php:1248 inc/admin.php:1254
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "合併 JS 檔案可以減少 HTTP 要求次數"
337
+
338
+ #: inc/admin.php:1342 inc/admin.php:1356 inc/admin.php:1363
339
+ msgid "Load images and iframes when they enter the browsers viewport"
340
+ msgstr "當圖片及 iFrame 進入瀏覽器檢視區內才進行載入"
341
+
342
+ #: inc/admin.php:1336 inc/admin.php:1355 inc/admin.php:1362
343
+ msgid "Lazy Load"
344
+ msgstr "延遲載入"
345
+
346
+ #: inc/admin.php:1313 inc/admin.php:1319 inc/admin.php:1326
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "以非同步方式載入 Google Fonts 網頁字型"
349
+
350
+ #: inc/admin.php:1312 inc/admin.php:1318 inc/admin.php:1325
351
+ msgid "Google Fonts"
352
+ msgstr "Google Fonts 網頁字型"
353
+
354
+ #: inc/admin.php:1286 inc/admin.php:1292 inc/admin.php:1299
355
+ msgid "Render Blocking Js"
356
+ msgstr "禁止轉譯的 JS"
357
+
358
+ #: inc/admin.php:1278
359
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "這項功能可移除 Emoji 內嵌 CSS 及 wp-emoji-release.min.js"
361
+
362
+ #: inc/admin.php:1277
363
+ msgid "Disable Emojis"
364
+ msgstr "停用 Emoji 表情符號"
365
+
366
+ #: inc/admin.php:1272
367
+ msgid "Reduce page load times for repeat visitors"
368
+ msgstr "這項功能可降低回訪訪客的頁面載入時間"
369
+
370
+ #: inc/admin.php:1271
371
+ msgid "Browser Caching"
372
+ msgstr "瀏覽器快取"
373
+
374
+ #: inc/admin.php:1260
375
+ msgid "Reduce the size of files sent from your server"
376
+ msgstr "減少從網站伺服器傳送的檔案大小"
377
+
378
+ #: inc/admin.php:1259
379
+ msgid "Gzip"
380
+ msgstr "Gzip"
381
+
382
+ #: inc/admin.php:1240 inc/admin.php:1247 inc/admin.php:1253
383
+ msgid "Combine Js Plus"
384
+ msgstr "JS 進階合併"
385
+
386
+ #: inc/admin.php:1233
387
+ msgid "Combine Js"
388
+ msgstr "JS 合併"
389
+
390
+ #: inc/admin.php:1217 inc/admin.php:1222 inc/admin.php:1228
391
+ msgid "You can decrease the size of js files"
392
+ msgstr "這項功能可減少 JS 檔案大小"
393
+
394
+ #: inc/admin.php:1216 inc/admin.php:1221 inc/admin.php:1227
395
+ msgid "Minify Js"
396
+ msgstr "JS 壓縮"
397
+
398
+ #: inc/admin.php:1209
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "合併 CSS 檔案可以減少 HTTP 要求次數"
401
+
402
+ #: inc/admin.php:1208
403
+ msgid "Combine Css"
404
+ msgstr "CSS 合併"
405
+
406
+ #: inc/admin.php:1197 inc/admin.php:1202
407
+ msgid "More powerful minify css"
408
+ msgstr "更多 CSS 進階壓縮功能"
409
+
410
+ #: inc/admin.php:1196 inc/admin.php:1201
411
+ msgid "Minify Css Plus"
412
+ msgstr "CSS 進階壓縮"
413
+
414
+ #: inc/admin.php:1188
415
+ msgid "You can decrease the size of css files"
416
+ msgstr "這項功能可減少 CSS 檔案大小"
417
+
418
+ #: inc/admin.php:1187
419
+ msgid "Minify Css"
420
+ msgstr "CSS 壓縮"
421
+
422
+ #: inc/admin.php:1175 inc/admin.php:1180
423
+ msgid "More powerful minify html"
424
+ msgstr "更多 HTML 進階壓縮功能"
425
+
426
+ #: inc/admin.php:1174 inc/admin.php:1179
427
+ msgid "Minify HTML Plus"
428
+ msgstr "HTML 進階壓縮"
429
+
430
+ #: inc/admin.php:1168
431
+ msgid "You can decrease the size of page"
432
+ msgstr "這項功能可減少頁面檔案大小"
433
+
434
+ #: inc/admin.php:1167
435
+ msgid "Minify HTML"
436
+ msgstr "HTML 壓縮"
437
+
438
+ #: inc/admin.php:1159
439
+ msgid "Clear cache files when a post or page is updated"
440
+ msgstr "更新文章或頁面後便清除快取檔案"
441
+
442
+ #: templates/updatepost.php:18 inc/admin.php:1158
443
+ msgid "Update Post"
444
+ msgstr "更新內容"
445
+
446
+ #: inc/admin.php:1152
447
+ msgid "Clear cache files when a post or page is published"
448
+ msgstr "發佈文章或頁面後便清除快取檔案"
449
+
450
+ #: templates/newpost.php:18 inc/admin.php:1151
451
+ msgid "New Post"
452
+ msgstr "新增內容"
453
+
454
+ #: inc/admin.php:1119 inc/admin.php:1145
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "為行動版佈景主題建立快取"
457
+
458
+ #: inc/admin.php:1118 inc/admin.php:1144
459
+ msgid "Mobile Theme"
460
+ msgstr "行動版佈景主題"
461
+
462
+ #: inc/admin.php:1113
463
+ msgid "Don't show the cached version for desktop to mobile devices"
464
+ msgstr "在行動裝置上不顯示已快取的桌面版內容"
465
+
466
+ #: inc/admin.php:1112
467
+ msgid "Mobile"
468
+ msgstr "行動裝置"
469
+
470
+ #: inc/admin.php:1108
471
+ msgid "Don't show the cached version for logged-in users"
472
+ msgstr "不在使用者登入後顯示已快取的內容"
473
+
474
+ #: inc/admin.php:1107
475
+ msgid "Logged-in Users"
476
+ msgstr "已登入的使用者"
477
+
478
+ #: inc/admin.php:1098
479
+ msgid "Create the cache of all the site automatically"
480
+ msgstr "為這個網站的全部項目自動建立快取"
481
+
482
+ #: templates/preload.php:20 inc/admin.php:1097
483
+ msgid "Preload"
484
+ msgstr "預先載入"
485
+
486
+ #: inc/admin.php:1069 inc/admin.php:1075 inc/admin.php:1082 inc/admin.php:1089
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "減少 SQL 查詢的次數"
489
+
490
+ #: inc/admin.php:1068 inc/admin.php:1074 inc/admin.php:1081 inc/admin.php:1088
491
+ msgid "Widget Cache"
492
+ msgstr "小工具快取"
493
+
494
+ #: inc/admin.php:1043
495
+ msgid "Enable"
496
+ msgstr "啟用"
497
+
498
+ #: inc/admin.php:1042
499
+ msgid "Cache System"
500
+ msgstr "快取系統"
501
+
502
+ #: wpFastestCache.php:1598
503
+ msgid "Once Every 15 Days"
504
+ msgstr "每 15 日一次"
505
+
506
+ #: wpFastestCache.php:1586
507
+ msgid "Once Every 7 Days"
508
+ msgstr "每 7 日一次"
509
+
510
+ #: wpFastestCache.php:1580
511
+ msgid "Once Every 3 Days"
512
+ msgstr "每 3 日一次"
513
+
514
+ #: wpFastestCache.php:1568
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "每 10 小時一次"
517
+
518
+ #: wpFastestCache.php:1562
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "每 9 小時一次"
521
+
522
+ #: wpFastestCache.php:1556
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "每 8 小時一次"
525
+
526
+ #: wpFastestCache.php:1550
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "每 7 小時一次"
529
+
530
+ #: wpFastestCache.php:1538
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "每 5 小時一次"
533
+
534
+ #: wpFastestCache.php:1532
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "每 4 小時一次"
537
+
538
+ #: wpFastestCache.php:1526
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "每 3 小時一次"
541
+
542
+ #: wpFastestCache.php:1520
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "每 2 小時一次"
545
+
546
+ #: wpFastestCache.php:1592
547
+ msgid "Once Every 10 Days"
548
+ msgstr "每 10 日一次"
549
+
550
+ #. Author URI of the plugin
551
+ msgid "http://tr.linkedin.com/in/emrevona"
552
+ msgstr "http://tr.linkedin.com/in/emrevona"
553
+
554
+ #. Author of the plugin
555
+ msgid "Emre Vona"
556
+ msgstr "Emre Vona"
557
+
558
+ #. Description of the plugin
559
+ msgid "The simplest and fastest WP Cache system"
560
+ msgstr "最易於使用、最快速的 WordPress 快取外掛。"
561
+
562
+ #. Plugin URI of the plugin
563
+ msgid "http://wordpress.org/plugins/wp-fastest-cache/"
564
+ msgstr "http://tw.wordpress.org/plugins/wp-fastest-cache/"
565
+
566
+ #. Plugin Name of the plugin
567
+ msgid "WP Fastest Cache"
568
+ msgstr "WP Fastest Cache"
569
+
570
+ #: wpFastestCache.php:1610
571
+ msgid "Once a Year"
572
+ msgstr "每年一次"
573
+
574
+ #: wpFastestCache.php:1604
575
+ msgid "Once a Month"
576
+ msgstr "每月一次"
577
+
578
+ #: wpFastestCache.php:1574
579
+ msgid "Once a Day"
580
+ msgstr "每日一次"
581
+
582
+ #: wpFastestCache.php:1544
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "每 6 小時一次"
585
+
586
+ #: wpFastestCache.php:1514
587
+ msgid "Once an Hour"
588
+ msgstr "每小時一次"
589
+
590
+ #: wpFastestCache.php:1508
591
+ msgid "Twice an Hour"
592
+ msgstr "每小時兩次"
593
+
594
+ #: wpFastestCache.php:1502
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "每 15 分鐘一次"
597
+
598
+ #: wpFastestCache.php:1496
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "每 5 分鐘一次"
601
+
602
+ #: wpFastestCache.php:1490
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "每分鐘一次"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://profiles.wordpress.org/emrevona/
4
  Tags: cache, caching, performance, wp-cache, total cache, super cache, cdn
5
  Requires at least: 3.3
6
  Tested up to: 5.3
7
- Stable tag: 0.9.0.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -60,8 +60,10 @@ Wpfc supports Wordpress Multisite [<a target="_blank" href="https://www.wpfastes
60
  * Deutsch
61
  * English
62
  * Español (by Javier Esteban)
 
 
63
  * Français (by PascalJ)
64
- * Italiana (by Valerio)
65
  * 日本語 (by KUCKLU)
66
  * Nederlands (by Frans Pronk https://ifra.nl)
67
  * Polski (by roan24.pl)
@@ -72,6 +74,7 @@ Wpfc supports Wordpress Multisite [<a target="_blank" href="https://www.wpfastes
72
  * Suomi (by Arhi Paivarinta)
73
  * Svenska (by Linus Wileryd)
74
  * Türkçe
 
75
 
76
  == Installation ==
77
 
@@ -103,6 +106,17 @@ Wpfc supports Wordpress Multisite [<a target="_blank" href="https://www.wpfastes
103
 
104
  == Changelog ==
105
 
 
 
 
 
 
 
 
 
 
 
 
106
  = 0.9.0.0 =
107
  * to exclude the css source of elementor which is /elementor/css/post-[number].css to avoid increasing the size of minified sources
108
  * to replace urls which have data-vc-parallax-image attribute with cdn-url
4
  Tags: cache, caching, performance, wp-cache, total cache, super cache, cdn
5
  Requires at least: 3.3
6
  Tested up to: 5.3
7
+ Stable tag: 0.9.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
60
  * Deutsch
61
  * English
62
  * Español (by Javier Esteban)
63
+ * Español de Venezuela (by Yordan Soares)
64
+ * فارسی (by Javad Rahimi)
65
  * Français (by PascalJ)
66
+ * Italiana (by Luisa Ravelli)
67
  * 日本語 (by KUCKLU)
68
  * Nederlands (by Frans Pronk https://ifra.nl)
69
  * Polski (by roan24.pl)
74
  * Suomi (by Arhi Paivarinta)
75
  * Svenska (by Linus Wileryd)
76
  * Türkçe
77
+ * 繁體中文 (Alex Lion)
78
 
79
  == Installation ==
80
 
106
 
107
  == Changelog ==
108
 
109
+ = 0.9.0.1 =
110
+ * to remove the clear cache button from column and to add clear cache action on row actions [<a target="_blank" href="https://www.wpfastestcache.com/tutorial/clear-cache-for-specific-page/">Details</a>]
111
+ * to hide clear cache icon on toolbar for IE
112
+ * to fix replacing cdn-url on data-product_variations attribute
113
+ * to add WPFC_TOOLBAR_FOR_EDITOR [<a target="_blank" href="https://www.wpfastestcache.com/features/clear-cache-link-at-the-toolbar/">Details</a>]
114
+ * <strong>[FEATURE]</strong> to add Persian language
115
+ * <strong>[FEATURE]</strong> to add Chinese (Taiwan) language
116
+ * <strong>[FEATURE]</strong> to add Spanish (Venezuela) language
117
+ * refactoring of checking admin users for exclution
118
+ * to fix E_WARNING on wpFastestCache.php line 1064
119
+
120
  = 0.9.0.0 =
121
  * to exclude the css source of elementor which is /elementor/css/post-[number].css to avoid increasing the size of minified sources
122
  * to replace urls which have data-vc-parallax-image attribute with cdn-url
templates/exclude.php CHANGED
@@ -108,8 +108,8 @@
108
  </td>
109
  <td width="300">
110
  <div class="wpfc-exclude-rule-line-middle">
111
- <input type="text" name="wpfc-exclude-rule-content" style="width:300px;">
112
- <input type="hidden" name="wpfc-exclude-rule-type" style="width:300px;">
113
  </div>
114
  </td>
115
  </tr>
108
  </td>
109
  <td width="300">
110
  <div class="wpfc-exclude-rule-line-middle">
111
+ <input type="text" name="wpfc-exclude-rule-content" style="width:289px;">
112
+ <input type="hidden" name="wpfc-exclude-rule-type" style="width:289px;">
113
  </div>
114
  </td>
115
  </tr>
wpFastestCache.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Fastest Cache
4
  Plugin URI: http://wordpress.org/plugins/wp-fastest-cache/
5
  Description: The simplest and fastest WP Cache system
6
- Version: 0.9.0.0
7
  Author: Emre Vona
8
  Author URI: http://tr.linkedin.com/in/emrevona
9
  Text Domain: wp-fastest-cache
@@ -633,17 +633,20 @@ GNU General Public License for more details.
633
  if(!defined('WPFC_HIDE_TOOLBAR') || (defined('WPFC_HIDE_TOOLBAR') && !WPFC_HIDE_TOOLBAR)){
634
  $show = false;
635
 
636
- // Admin
637
- $show = (current_user_can( 'manage_options' ) || current_user_can('edit_others_pages')) ? true : false;
638
 
639
  // Author
640
  if(defined('WPFC_TOOLBAR_FOR_AUTHOR') && WPFC_TOOLBAR_FOR_AUTHOR){
641
- if(current_user_can( 'delete_published_posts' ) || current_user_can('edit_published_posts')) {
642
- $show = true;
643
- }
 
 
 
644
  }
645
 
646
- if($show){
647
  include_once plugin_dir_path(__FILE__)."inc/admin-toolbar.php";
648
 
649
  $toolbar = new WpFastestCacheAdminToolbar();
@@ -1061,8 +1064,14 @@ GNU General Public License for more details.
1061
  $path = urldecode($path);
1062
 
1063
  // to remove the cache of tag/cat
1064
- @unlink($this->getWpContentDir("/cache/all/").$path."/index.html");
1065
- @unlink($this->getWpContentDir("/cache/wpfc-mobile-cache/").$path."/index.html");
 
 
 
 
 
 
1066
 
1067
  // to remove the cache of the pages
1068
  $this->rm_folder_recursively($this->getWpContentDir("/cache/all/").$path."/page");
@@ -1728,7 +1737,7 @@ GNU General Public License for more details.
1728
  $cdn->originurl = str_replace("\/", "\\\\\/", $cdn->originurl);
1729
 
1730
  if(preg_match("/".$cdn->originurl."/", $matches[0])){
1731
- $matches[0] = preg_replace("/(quot\;)(http(s?)\:)?".preg_quote("\/\/", "/")."(www\.)?/i", "$1", $matches[0]);
1732
  $matches[0] = preg_replace("/".$cdn->originurl."/i", $cdnurl, $matches[0]);
1733
  }
1734
  }else if(preg_match("/\{\"concatemoji\"\:\"[^\"]+\"\}/i", $matches[0])){
3
  Plugin Name: WP Fastest Cache
4
  Plugin URI: http://wordpress.org/plugins/wp-fastest-cache/
5
  Description: The simplest and fastest WP Cache system
6
+ Version: 0.9.0.1
7
  Author: Emre Vona
8
  Author URI: http://tr.linkedin.com/in/emrevona
9
  Text Domain: wp-fastest-cache
633
  if(!defined('WPFC_HIDE_TOOLBAR') || (defined('WPFC_HIDE_TOOLBAR') && !WPFC_HIDE_TOOLBAR)){
634
  $show = false;
635
 
636
+ $user = wp_get_current_user();
637
+ $allowed_roles = array('administrator');
638
 
639
  // Author
640
  if(defined('WPFC_TOOLBAR_FOR_AUTHOR') && WPFC_TOOLBAR_FOR_AUTHOR){
641
+ array_push($allowed_roles, "author");
642
+ }
643
+
644
+ // Editor
645
+ if(defined('WPFC_TOOLBAR_FOR_EDITOR') && WPFC_TOOLBAR_FOR_EDITOR){
646
+ array_push($allowed_roles, "editor");
647
  }
648
 
649
+ if(array_intersect($allowed_roles, $user->roles)){
650
  include_once plugin_dir_path(__FILE__)."inc/admin-toolbar.php";
651
 
652
  $toolbar = new WpFastestCacheAdminToolbar();
1064
  $path = urldecode($path);
1065
 
1066
  // to remove the cache of tag/cat
1067
+ if(file_exists($this->getWpContentDir("/cache/all/").$path."/index.html")){
1068
+ @unlink($this->getWpContentDir("/cache/all/").$path."/index.html");
1069
+ }
1070
+
1071
+ if(file_exists($this->getWpContentDir("/cache/wpfc-mobile-cache/").$path."/index.html")){
1072
+ @unlink($this->getWpContentDir("/cache/wpfc-mobile-cache/").$path."/index.html");
1073
+ }
1074
+
1075
 
1076
  // to remove the cache of the pages
1077
  $this->rm_folder_recursively($this->getWpContentDir("/cache/all/").$path."/page");
1737
  $cdn->originurl = str_replace("\/", "\\\\\/", $cdn->originurl);
1738
 
1739
  if(preg_match("/".$cdn->originurl."/", $matches[0])){
1740
+ $matches[0] = preg_replace("/(quot\;|\s)(http(s?)\:)?".preg_quote("\/\/", "/")."(www\.)?/i", "$1", $matches[0]);
1741
  $matches[0] = preg_replace("/".$cdn->originurl."/i", $cdnurl, $matches[0]);
1742
  }
1743
  }else if(preg_match("/\{\"concatemoji\"\:\"[^\"]+\"\}/i", $matches[0])){