WP Fastest Cache - Version 0.9.0.2

Version Description

  • [FEATURE] to add Spanish (Argentina) language
  • to add WPFC_TOOLBAR_FOR_SHOP_MANAGER [Details]
  • to support MultiSite
  • to add wpfc_exclude_current_page() for excluding current page [Details]
  • [FEATURE] to add French language
  • [FEATURE] to add Slovak language
  • to show the solution for AWS S3 Access Denied [Details]
  • to show the solution for Using CDN on SSL Sites [Details]
Download this release

Release Info

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

Code changes from version 0.9.0.1 to 0.9.0.2

css/dialog.css CHANGED
@@ -215,7 +215,7 @@ button:focus {outline:0;}
215
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#38bf26', endColorstr='#39cc28',GradientType=0 );
216
  }
217
 
218
- .wiz-error-msg{
219
  color: red;
220
  font-weight: bold;
221
  text-align: center;
215
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#38bf26', endColorstr='#39cc28',GradientType=0 );
216
  }
217
 
218
+ .wiz-error-msg, .wiz-error-msg a{
219
  color: red;
220
  font-weight: bold;
221
  text-align: center;
css/style.css CHANGED
@@ -38,7 +38,7 @@ div.questionCon.qsubmit{
38
  }
39
 
40
  .tabGroup div.question{
41
- padding-right: 10px;
42
  float: left;
43
  text-align: right;
44
  width: 130px;
@@ -124,6 +124,7 @@ div.questionCon.qsubmit{
124
  }
125
  .question:after {
126
  content: ":";
 
127
  }
128
  .inputCon input[type="checkbox"]{
129
  margin-right: 5px;
38
  }
39
 
40
  .tabGroup div.question{
41
+ padding-right: 5px;
42
  float: left;
43
  text-align: right;
44
  width: 130px;
124
  }
125
  .question:after {
126
  content: ":";
127
+ padding-left: 5px;
128
  }
129
  .inputCon input[type="checkbox"]{
130
  margin-right: 5px;
inc/admin.php CHANGED
@@ -112,14 +112,14 @@
112
  include_once ABSPATH."wp-includes/capabilities.php";
113
  include_once ABSPATH."wp-includes/pluggable.php";
114
 
115
- if(defined("WPFC_MULTI_SITE_BETA") && WPFC_MULTI_SITE_BETA){
116
- //nothing
117
- }else{
118
- if(is_multisite()){
119
- $this->notify(array("The plugin does not work with Multisite.\n Please <a target='_blank' href='https://www.wpfastestcache.com/blog/multi-site/'>click here</a> to learn how to enable it.", "error"));
120
- return 0;
121
- }
122
- }
123
 
124
  if(current_user_can('manage_options')){
125
  if($_POST["wpFastestCachePage"] == "options"){
@@ -709,6 +709,11 @@
709
 
710
  if(isset($_POST["wpFastestCacheMobile"]) && $_POST["wpFastestCacheMobile"] == "on"){
711
  $mobile = "RewriteCond %{HTTP_USER_AGENT} !^.*(".$this->getMobileUserAgents().").*$ [NC]"."\n";
 
 
 
 
 
712
  }
713
 
714
  if(isset($_POST["wpFastestCacheLoggedInUser"]) && $_POST["wpFastestCacheLoggedInUser"] == "on"){
@@ -1083,22 +1088,6 @@
1083
  <div class="inputCon"><input type="checkbox" <?php echo $wpFastestCacheStatus; ?> id="wpFastestCacheStatus" name="wpFastestCacheStatus"><label for="wpFastestCacheStatus"><?php _e("Enable", "wp-fastest-cache"); ?></label></div>
1084
  </div>
1085
 
1086
-
1087
-
1088
-
1089
- <?php
1090
-
1091
- $tester_arr = array(
1092
- "tr-TR",
1093
- "berkatan.com",
1094
- "hciwla.org"
1095
- );
1096
-
1097
- if(in_array(get_bloginfo('language'), $tester_arr) || in_array(str_replace("www.", "", $_SERVER["HTTP_HOST"]), $tester_arr)){ ?>
1098
- <?php } ?>
1099
-
1100
-
1101
-
1102
  <?php if(class_exists("WpFastestCachePowerfulHtml")){ ?>
1103
  <?php if(file_exists(WPFC_WP_PLUGIN_DIR."/wp-fastest-cache-premium/pro/library/widget-cache.php")){ ?>
1104
  <?php include_once WPFC_WP_PLUGIN_DIR."/wp-fastest-cache-premium/pro/library/widget-cache.php"; ?>
@@ -1730,10 +1719,12 @@
1730
  </div>
1731
  <div class="wpfc-premium-step-footer">
1732
  <?php
1733
- if(get_bloginfo('language') == "tr-TR"){
1734
  $premium_price = "150TL";
 
1735
  }else{
1736
  $premium_price = "$49.99";
 
1737
  }
1738
 
1739
  ?>
@@ -1752,7 +1743,7 @@
1752
  <span>Not Available<br>for<br>Multi-Site</span>
1753
  </button>
1754
  <?php }else{ ?>
1755
- <form action="https://api.wpfastestcache.net/paypal/buypremium/" method="post">
1756
  <input type="hidden" name="ip" value="<?php echo $_SERVER["REMOTE_ADDR"]; ?>">
1757
  <input type="hidden" name="wpfclang" value="<?php echo isset($this->options->wpFastestCacheLanguage) ? esc_attr($this->options->wpFastestCacheLanguage) : ""; ?>">
1758
  <input type="hidden" name="bloglang" value="<?php echo get_bloginfo('language'); ?>">
112
  include_once ABSPATH."wp-includes/capabilities.php";
113
  include_once ABSPATH."wp-includes/pluggable.php";
114
 
115
+ // if(defined("WPFC_MULTI_SITE_BETA") && WPFC_MULTI_SITE_BETA){
116
+ // //nothing
117
+ // }else{
118
+ // if(is_multisite()){
119
+ // $this->notify(array("The plugin does not work with Multisite.\n Please <a target='_blank' href='https://www.wpfastestcache.com/blog/multi-site/'>click here</a> to learn how to enable it.", "error"));
120
+ // return 0;
121
+ // }
122
+ // }
123
 
124
  if(current_user_can('manage_options')){
125
  if($_POST["wpFastestCachePage"] == "options"){
709
 
710
  if(isset($_POST["wpFastestCacheMobile"]) && $_POST["wpFastestCacheMobile"] == "on"){
711
  $mobile = "RewriteCond %{HTTP_USER_AGENT} !^.*(".$this->getMobileUserAgents().").*$ [NC]"."\n";
712
+
713
+ if(isset($_SERVER['HTTP_CLOUDFRONT_IS_MOBILE_VIEWER'])){
714
+ $mobile = $mobile."RewriteCond %{HTTP_CLOUDFRONT_IS_MOBILE_VIEWER} false [NC]"."\n";
715
+ $mobile = $mobile."RewriteCond %{HTTP_CLOUDFRONT_IS_TABLET_VIEWER} false [NC]"."\n";
716
+ }
717
  }
718
 
719
  if(isset($_POST["wpFastestCacheLoggedInUser"]) && $_POST["wpFastestCacheLoggedInUser"] == "on"){
1088
  <div class="inputCon"><input type="checkbox" <?php echo $wpFastestCacheStatus; ?> id="wpFastestCacheStatus" name="wpFastestCacheStatus"><label for="wpFastestCacheStatus"><?php _e("Enable", "wp-fastest-cache"); ?></label></div>
1089
  </div>
1090
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1091
  <?php if(class_exists("WpFastestCachePowerfulHtml")){ ?>
1092
  <?php if(file_exists(WPFC_WP_PLUGIN_DIR."/wp-fastest-cache-premium/pro/library/widget-cache.php")){ ?>
1093
  <?php include_once WPFC_WP_PLUGIN_DIR."/wp-fastest-cache-premium/pro/library/widget-cache.php"; ?>
1719
  </div>
1720
  <div class="wpfc-premium-step-footer">
1721
  <?php
1722
+ if(in_array(get_bloginfo('language'), array("tr-TR", "tr"))){
1723
  $premium_price = "150TL";
1724
+ $premium_buy_link = "https://www.wpfastestcache.com/#buy";
1725
  }else{
1726
  $premium_price = "$49.99";
1727
+ $premium_buy_link = "https://api.wpfastestcache.net/paypal/buypremium/";
1728
  }
1729
 
1730
  ?>
1743
  <span>Not Available<br>for<br>Multi-Site</span>
1744
  </button>
1745
  <?php }else{ ?>
1746
+ <form action="<?php echo $premium_buy_link; ?>" method="post">
1747
  <input type="hidden" name="ip" value="<?php echo $_SERVER["REMOTE_ADDR"]; ?>">
1748
  <input type="hidden" name="wpfclang" value="<?php echo isset($this->options->wpFastestCacheLanguage) ? esc_attr($this->options->wpFastestCacheLanguage) : ""; ?>">
1749
  <input type="hidden" name="bloglang" value="<?php echo get_bloginfo('language'); ?>">
inc/cache.php CHANGED
@@ -10,6 +10,7 @@
10
  public $preload_user_agent = false;
11
  public $current_page_type = false;
12
  public $current_page_content_type = false;
 
13
 
14
  public function __construct(){
15
  //to fix: PHP Notice: Undefined index: HTTP_USER_AGENT
@@ -413,12 +414,38 @@
413
  add_action('get_footer', array($this, "detect_current_page_type"));
414
  add_action('get_footer', array($this, "wp_print_scripts_action"));
415
 
 
 
 
416
  ob_start(array($this, "callback"));
417
  }
418
  }
419
  }
420
  }
421
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
422
  public function wp_print_scripts_action(){
423
  echo "<!--WPFC_FOOTER_START-->";
424
  }
@@ -629,7 +656,9 @@
629
 
630
  $buffer = preg_replace('/<\!--WPFC_PAGE_TYPE_[a-z]+-->/i', '', $buffer);
631
 
632
- if($this->is_json() && (!defined('WPFC_CACHE_JSON') || (defined('WPFC_CACHE_JSON') && WPFC_CACHE_JSON !== true))){
 
 
633
  return $buffer;
634
  }else if(preg_match("/Mediapartners-Google|Google\sWireless\sTranscoder/i", $_SERVER['HTTP_USER_AGENT'])){
635
  return $buffer;
@@ -1052,6 +1081,16 @@
1052
  return true;
1053
  }
1054
  }
 
 
 
 
 
 
 
 
 
 
1055
  }
1056
 
1057
  public function isWpLogin($buffer){
10
  public $preload_user_agent = false;
11
  public $current_page_type = false;
12
  public $current_page_content_type = false;
13
+ public $exclude_current_page_text = false;
14
 
15
  public function __construct(){
16
  //to fix: PHP Notice: Undefined index: HTTP_USER_AGENT
414
  add_action('get_footer', array($this, "detect_current_page_type"));
415
  add_action('get_footer', array($this, "wp_print_scripts_action"));
416
 
417
+ // to exclude current page hook
418
+ add_action("wpfc_exclude_current_page", array($this, 'exclude_current_page'), 10, 0);
419
+
420
  ob_start(array($this, "callback"));
421
  }
422
  }
423
  }
424
  }
425
 
426
+ public function exclude_current_page($some = true){
427
+ $via = debug_backtrace();
428
+
429
+ if(isset($via) && is_array($via)){
430
+ foreach ($via as $key => $value){
431
+ if($value["function"] == "wpfc_exclude_current_page"){
432
+
433
+ if(defined('WPFC_DEBUG') && (WPFC_DEBUG === true)){
434
+ if(preg_match("/wp-content\/themes/", $value["file"])){
435
+ $this->exclude_current_page_text = "<!-- This page has been excluded by ".basename($value["file"])." of the Theme -->";
436
+ }else if(preg_match("/wp-content\/plugins/", $value["file"])){
437
+ $this->exclude_current_page_text = "<!-- This page has been excluded by ".basename($value["file"])." of ".preg_replace("/([^\/]+)\/.+/", "$1", plugin_basename($value["file"]))." -->";
438
+ }
439
+ }else{
440
+ $this->exclude_current_page_text = "<!-- This page has been excluded -->";
441
+ }
442
+
443
+ break;
444
+ }
445
+ }
446
+ }
447
+ }
448
+
449
  public function wp_print_scripts_action(){
450
  echo "<!--WPFC_FOOTER_START-->";
451
  }
656
 
657
  $buffer = preg_replace('/<\!--WPFC_PAGE_TYPE_[a-z]+-->/i', '', $buffer);
658
 
659
+ if($this->exclude_current_page_text){
660
+ return $buffer.$this->exclude_current_page_text;
661
+ }else if($this->is_json() && (!defined('WPFC_CACHE_JSON') || (defined('WPFC_CACHE_JSON') && WPFC_CACHE_JSON !== true))){
662
  return $buffer;
663
  }else if(preg_match("/Mediapartners-Google|Google\sWireless\sTranscoder/i", $_SERVER['HTTP_USER_AGENT'])){
664
  return $buffer;
1081
  return true;
1082
  }
1083
  }
1084
+
1085
+ if(isset($_SERVER['HTTP_CLOUDFRONT_IS_MOBILE_VIEWER']) && "true" === $_SERVER['HTTP_CLOUDFRONT_IS_MOBILE_VIEWER']){
1086
+ $is_mobile = true;
1087
+ }
1088
+
1089
+
1090
+ if(isset($_SERVER['HTTP_CLOUDFRONT_IS_TABLET_VIEWER']) && "true" === $_SERVER['HTTP_CLOUDFRONT_IS_TABLET_VIEWER']){
1091
+ $is_mobile = true;
1092
+ }
1093
+
1094
  }
1095
 
1096
  public function isWpLogin($buffer){
inc/cdn.php CHANGED
@@ -253,6 +253,10 @@
253
  if(!preg_match("/^http/", $_GET["url"])){
254
  $_GET["url"] = "http://".$_GET["url"];
255
  }
 
 
 
 
256
 
257
  $response = wp_remote_get($_GET["url"], array('timeout' => 20, 'user-agent' => "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:64.0) Gecko/20100101 Firefox/64.0"));
258
 
@@ -264,6 +268,9 @@
264
  if($response->get_error_code() == "http_request_failed"){
265
  if($response->get_error_message() == "Failure when receiving data from the peer"){
266
  $res = array("success" => true);
 
 
 
267
  }else if(preg_match("/cURL\serror\s6/i", $response->get_error_message())){
268
  //cURL error 6: Couldn't resolve host
269
  if(preg_match("/".preg_quote($host, "/")."/i", $_GET["url"])){
@@ -293,6 +300,10 @@
293
  if(($response_code == 403) && (preg_match("/stackpathdns\.com/i", $_GET["url"]))){
294
  $res = array("success" => true);
295
  }
 
 
 
 
296
  }
297
  }
298
 
253
  if(!preg_match("/^http/", $_GET["url"])){
254
  $_GET["url"] = "http://".$_GET["url"];
255
  }
256
+
257
+ if(preg_match("/^https/i", site_url()) && preg_match("/^https/i", home_url())){
258
+ $_GET["url"] = preg_replace("/http\:\/\//i", "https://", $_GET["url"]);
259
+ }
260
 
261
  $response = wp_remote_get($_GET["url"], array('timeout' => 20, 'user-agent' => "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:64.0) Gecko/20100101 Firefox/64.0"));
262
 
268
  if($response->get_error_code() == "http_request_failed"){
269
  if($response->get_error_message() == "Failure when receiving data from the peer"){
270
  $res = array("success" => true);
271
+ }else if(preg_match("/cURL\serror\s60/i", $response->get_error_message())){
272
+ //cURL error 60: SSL: no alternative certificate subject name matches target host name
273
+ $res = array("success" => false, "error_message" => "<a href='https://www.wpfastestcache.com/warnings/how-to-use-cdn-on-ssl-sites/' target='_blank'>Please Read: https://www.wpfastestcache.com/warnings/how-to-use-cdn-on-ssl-sites/</a>");
274
  }else if(preg_match("/cURL\serror\s6/i", $response->get_error_message())){
275
  //cURL error 6: Couldn't resolve host
276
  if(preg_match("/".preg_quote($host, "/")."/i", $_GET["url"])){
300
  if(($response_code == 403) && (preg_match("/stackpathdns\.com/i", $_GET["url"]))){
301
  $res = array("success" => true);
302
  }
303
+
304
+ if(($response_code == 403) && (preg_match("/cloudfront\.net/i", $_GET["url"]))){
305
+ $res = array("success" => false, "error_message" => "<a href='https://www.wpfastestcache.com/warnings/amazon-s3-cloudfront-access-denied-403-forbidden/' target='_blank'>Please Read: https://www.wpfastestcache.com/warnings/amazon-s3-cloudfront-access-denied-403-forbidden</a>");
306
+ }
307
  }
308
  }
309
 
languages/wp-fastest-cache-de_DE.mo ADDED
Binary file
languages/wp-fastest-cache-de_DE.po ADDED
@@ -0,0 +1,604 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in German
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-12-09 11:45:26+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: de\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "Cache leeren"
17
+
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
19
+ msgid "Eliminate render-blocking JavaScript resources"
20
+ msgstr "Beseitigt JavaScript-Ressourcen, die das Rendering blockieren"
21
+
22
+ #: inc/admin.php:429 inc/admin.php:432
23
+ msgid "Options have been saved"
24
+ msgstr "Optionen wurden gespeichert"
25
+
26
+ #: inc/admin.php:1786
27
+ msgid "Download"
28
+ msgstr "Herunterladen"
29
+
30
+ #: inc/admin.php:1781
31
+ msgid "Update"
32
+ msgstr "Update"
33
+
34
+ #: inc/admin.php:1775
35
+ msgid "Please don't delete the free version. Premium version works with the free version."
36
+ msgstr "Bitte lösche die kostenlose Version nicht. Die Premium-Version funktioniert mit der kostenlosen Version."
37
+
38
+ #: inc/admin.php:1774
39
+ msgid "Get It Now!"
40
+ msgstr "Jetzt erwerben!"
41
+
42
+ #: inc/admin.php:1768
43
+ msgid "You can download and update the premium when you want if you paid."
44
+ msgstr "Du kannst die Premium-Version herunterladen und aktualisieren wann immer du willst, wenn du bezahlt hast."
45
+
46
+ #: inc/admin.php:1765
47
+ msgid "Download & Update"
48
+ msgstr "Herunterladen & Aktualisieren"
49
+
50
+ #: inc/admin.php:1752
51
+ msgid "Buy"
52
+ msgstr "Kaufen"
53
+
54
+ #: inc/admin.php:1737
55
+ msgid "Purchased"
56
+ msgstr "Gekauft"
57
+
58
+ #: inc/admin.php:1732
59
+ msgid "The download button will be available after paid. You can buy the premium version now."
60
+ msgstr "Der Download-Button wird nach der Bezahlung verfügbar sein. Du kannst die Premium-Version jetzt kaufen."
61
+
62
+ #: inc/admin.php:1731
63
+ msgid "Just"
64
+ msgstr "Nur"
65
+
66
+ #: inc/admin.php:1715
67
+ msgid "You need to pay before downloading the premium version."
68
+ msgstr "Du musst die Premium-Version vor dem Herunterladen bezahlen."
69
+
70
+ #: inc/admin.php:1712
71
+ msgid "Checkout"
72
+ msgstr "Zur Kasse"
73
+
74
+ #: inc/admin.php:1698
75
+ msgid "New Features"
76
+ msgstr "Neue Funktionen"
77
+
78
+ #: inc/admin.php:1692
79
+ msgid "In the premium version there are some new features which speed up the sites more."
80
+ msgstr "In der Premium-Version gibt es einige Funktionen, die die Websiten noch mehr beschleunigen"
81
+
82
+ #: inc/admin.php:1689
83
+ msgid "Discover Features"
84
+ msgstr "Funktionen entdecken"
85
+
86
+ #: templates/exclude.php:106 inc/admin.php:1837
87
+ msgid "has Woocommerce Items in Cart"
88
+ msgstr "hat Woocommerce-Elemente im Warenkorb"
89
+
90
+ #: templates/exclude.php:105 inc/admin.php:1836
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "hat Google-Analytics-Parameter"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1829
95
+ msgid "Archives"
96
+ msgstr "Archive"
97
+
98
+ #: templates/timeout.php:189
99
+ msgid "Server Time"
100
+ msgstr "Serverzeit"
101
+
102
+ #: templates/timeout.php:169
103
+ msgid "delete the files"
104
+ msgstr "die Dateien löschen"
105
+
106
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
+ msgid "Contains"
109
+ msgstr "Beinhaltet"
110
+
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
+ msgid "Is Equal To"
114
+ msgstr "Ist gleich"
115
+
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
+ msgid "Starts With"
119
+ msgstr "Beginnt mit"
120
+
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
+ msgid "Home Page"
124
+ msgstr "Homepage"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1555
127
+ msgid "All"
128
+ msgstr "Alles"
129
+
130
+ #: templates/exclude.php:66
131
+ msgid "Exclude Page Wizard"
132
+ msgstr "Seiten-Ausschluss-Assistent"
133
+
134
+ #: templates/timeout.php:124
135
+ msgid "Then"
136
+ msgstr "Dann"
137
+
138
+ #: templates/exclude.php:89 templates/timeout.php:91
139
+ msgid "If REQUEST_URI"
140
+ msgstr "Falls REQUEST_URI"
141
+
142
+ #: templates/timeout.php:68
143
+ msgid "Cache Timeout Wizard"
144
+ msgstr "Cache-Timeout-Assistent"
145
+
146
+ #: templates/lazy_load.php:9
147
+ msgid "Lazy Load Settings"
148
+ msgstr "Einstellungen für Verzögertes Laden"
149
+
150
+ #: templates/nginx_gzip.php:9
151
+ msgid "Enable Gzip"
152
+ msgstr "Gzip aktivieren"
153
+
154
+ #: templates/update_now.php:9
155
+ msgid "Please Update"
156
+ msgstr "Bitte aktualisieren"
157
+
158
+ #: templates/update_success.php:9
159
+ msgid "Success"
160
+ msgstr "Erfolg"
161
+
162
+ #: templates/disable_wp_cron.php:20
163
+ msgid "Warning"
164
+ msgstr "Warnung"
165
+
166
+ #: inc/admin.php:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
+ msgid "Add New Rule"
169
+ msgstr "Neue Regel"
170
+
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "Cache und Minimiertes CSS/JS löschen"
174
+
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
176
+ msgid "Only available in Premium version"
177
+ msgstr "Nur verfügbar in der Premium Version"
178
+
179
+ #: templates/timeout.php:141
180
+ msgid "Choose One"
181
+ msgstr "Wähle eins"
182
+
183
+ #: inc/admin.php:1532
184
+ msgid "All cache files will be removed as well"
185
+ msgstr "Auch alle Cache-Dateien werden dabei gelöscht"
186
+
187
+ #: inc/admin.php:1531
188
+ msgid "If you modify any css file, you have to delete minified css files"
189
+ msgstr "Falls du eine CSS-Datei veränderst, musst du minimierte CSS-Dateien löschen"
190
+
191
+ #: inc/admin.php:1519 inc/admin.php:1533 inc/admin.php:1534
192
+ msgid "Target folder"
193
+ msgstr "Zielverzeichnis"
194
+
195
+ #: inc/admin.php:1518
196
+ msgid "You can delete all cache files"
197
+ msgstr "Du kannst alle Cache-Dateien löschen"
198
+
199
+ #: inc/admin.php:1059
200
+ msgid "Exclude"
201
+ msgstr "Ausschließen"
202
+
203
+ #: inc/admin.php:1057
204
+ msgid "Image Optimization"
205
+ msgstr "Bildoptimierung"
206
+
207
+ #: inc/admin.php:1054
208
+ msgid "Settings"
209
+ msgstr "Einstellungen"
210
+
211
+ #: inc/admin.php:2077
212
+ msgid "Database Cleanup"
213
+ msgstr "Datenbank aufräumen"
214
+
215
+ #: inc/admin.php:1965
216
+ msgid "CDN Settings"
217
+ msgstr "CDN-Einstellungen"
218
+
219
+ #: inc/admin.php:1928
220
+ msgid "Exclude JS"
221
+ msgstr "JS ausschließen"
222
+
223
+ #: inc/admin.php:1908
224
+ msgid "Exclude CSS"
225
+ msgstr "CSS ausschließen"
226
+
227
+ #: inc/admin.php:1890
228
+ msgid "Exclude Cookies"
229
+ msgstr "Cookies ausschließen"
230
+
231
+ #: inc/admin.php:1871
232
+ msgid "Exclude User-Agents"
233
+ msgstr "User-Agenten ausschließen"
234
+
235
+ #: inc/admin.php:1854
236
+ msgid "Exclude Pages"
237
+ msgstr "Seiten ausschließen"
238
+
239
+ #: inc/admin.php:1665
240
+ msgid "Optimize Image Tool"
241
+ msgstr "Werkzeug zur Bildoptimierung"
242
+
243
+ #: inc/admin.php:1548
244
+ msgid "Timeout Rules"
245
+ msgstr "Timeout-Regeln"
246
+
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
+ msgid "Delete Cache"
250
+ msgstr "Cache löschen"
251
+
252
+ #: inc/admin.php:1469
253
+ msgid "Cache Statistics"
254
+ msgstr "Cache-Statistiken"
255
+
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "Cache leeren von Beitrag/Seite"
259
+
260
+ #: templates/updatepost.php:29
261
+ msgid "What do you want to happen after update a post or a page?"
262
+ msgstr "Was soll geschehen, nachdem ein Beitrag oder eine Seite aktualisiert wurde?"
263
+
264
+ #: templates/newpost.php:58
265
+ msgid "Clear Cache of Pagination"
266
+ msgstr "Cache leeren von Seitennummerierung"
267
+
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "Cache leeren von Beitrags-Schlagwörtern"
271
+
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "Cache leeren von Beitrags-Kategorien"
275
+
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "Cache leeren von Homepage"
279
+
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
+ #: inc/admin-toolbar.php:74
282
+ msgid "Clear All Cache"
283
+ msgstr "Alle Caches löschen"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "Was soll geschehen, nachdem ein neuer Beitrag veröffentlicht wurde?"
288
+
289
+ #: templates/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
291
+ msgid "OK"
292
+ msgstr "OK"
293
+
294
+ #: templates/preload.php:92
295
+ msgid "Restart After Completed"
296
+ msgstr "Neustart nach Abschluss"
297
+
298
+ #: templates/preload.php:87
299
+ msgid "pages per minute"
300
+ msgstr "Seiten pro Minute"
301
+
302
+ #: templates/preload.php:63
303
+ msgid "Custom Taxonomies"
304
+ msgstr "Individuelle Taxonomien"
305
+
306
+ #: templates/preload.php:58
307
+ msgid "Custom Post Types"
308
+ msgstr "Individuelle Inhaltstypen"
309
+
310
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
+ msgid "Attachments"
312
+ msgstr "Anhänge"
313
+
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
+ msgid "Tags"
316
+ msgstr "Schlagwörter"
317
+
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
+ msgid "Pages"
320
+ msgstr "Seiten"
321
+
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
+ msgid "Categories"
324
+ msgstr "Kategorien"
325
+
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
327
+ msgid "Posts"
328
+ msgstr "Beiträge"
329
+
330
+ #: templates/preload.php:33
331
+ msgid "Homepage"
332
+ msgstr "Homepage"
333
+
334
+ #: inc/admin.php:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "HTTP-Anfragen durch kombinierte JS-Dateien reduzieren"
337
+
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
339
+ msgid "Load images and iframes when they enter the browsers viewport"
340
+ msgstr "Bilder und Iframes laden, sobald sie in den Viewport des Browsers kommen"
341
+
342
+ #: inc/admin.php:1365 inc/admin.php:1384 inc/admin.php:1391
343
+ msgid "Lazy Load"
344
+ msgstr "Verzögertes Laden"
345
+
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "Google Fonts asynchron laden"
349
+
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
+ msgid "Google Fonts"
352
+ msgstr "Google Fonts"
353
+
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
+ msgid "Render Blocking Js"
356
+ msgstr "Render-Blocking-JS"
357
+
358
+ #: inc/admin.php:1307
359
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "Du kannst das Inline-CSS für Emojis und wp-emoji-release.min.js entfernen"
361
+
362
+ #: inc/admin.php:1306
363
+ msgid "Disable Emojis"
364
+ msgstr "Emojis deaktivieren"
365
+
366
+ #: inc/admin.php:1301
367
+ msgid "Reduce page load times for repeat visitors"
368
+ msgstr "Reduziere die Seitenladezeiten für wiederkehrende Besucher"
369
+
370
+ #: inc/admin.php:1300
371
+ msgid "Browser Caching"
372
+ msgstr "Browser-Caching"
373
+
374
+ #: inc/admin.php:1289
375
+ msgid "Reduce the size of files sent from your server"
376
+ msgstr "Reduziere die Größe der Dateien, die von deinem Server ausgeliefert werden"
377
+
378
+ #: inc/admin.php:1288
379
+ msgid "Gzip"
380
+ msgstr "Gzip"
381
+
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
+ msgid "Combine Js Plus"
384
+ msgstr "JS minimieren Plus"
385
+
386
+ #: inc/admin.php:1262
387
+ msgid "Combine Js"
388
+ msgstr "JS kombinieren"
389
+
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
391
+ msgid "You can decrease the size of js files"
392
+ msgstr "Du kannst die Größe von JS-Dateien reduzieren"
393
+
394
+ #: inc/admin.php:1245 inc/admin.php:1250 inc/admin.php:1256
395
+ msgid "Minify Js"
396
+ msgstr "JS minimieren"
397
+
398
+ #: inc/admin.php:1238
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "Reduziere HTTP-Anfragen durch kombinierte CSS-Dateien"
401
+
402
+ #: inc/admin.php:1237
403
+ msgid "Combine Css"
404
+ msgstr "CSS kombinieren"
405
+
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
+ msgid "More powerful minify css"
408
+ msgstr "Stärkeres Minimieren von CSS"
409
+
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
+ msgid "Minify Css Plus"
412
+ msgstr "CSS minimieren Plus"
413
+
414
+ #: inc/admin.php:1217
415
+ msgid "You can decrease the size of css files"
416
+ msgstr "Du kannst die Größe von CSS-Dateien verringern"
417
+
418
+ #: inc/admin.php:1216
419
+ msgid "Minify Css"
420
+ msgstr "CSS minimieren"
421
+
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
+ msgid "More powerful minify html"
424
+ msgstr "Stärkeres Minimieren von HTML"
425
+
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
+ msgid "Minify HTML Plus"
428
+ msgstr "HTML minimieren Plus"
429
+
430
+ #: inc/admin.php:1197
431
+ msgid "You can decrease the size of page"
432
+ msgstr "Du kannst die Größe der Seite verringern"
433
+
434
+ #: inc/admin.php:1196
435
+ msgid "Minify HTML"
436
+ msgstr "HTML minimieren"
437
+
438
+ #: inc/admin.php:1188
439
+ msgid "Clear cache files when a post or page is updated"
440
+ msgstr "Cache leeren wenn ein Beitrag oder eine Seite aktualisiert wird"
441
+
442
+ #: templates/updatepost.php:18 inc/admin.php:1187
443
+ msgid "Update Post"
444
+ msgstr "Aktualisierter Beitrag"
445
+
446
+ #: inc/admin.php:1181
447
+ msgid "Clear cache files when a post or page is published"
448
+ msgstr "Cache leeren wenn ein Beitrag oder eine Seite veröffentlicht wird"
449
+
450
+ #: templates/newpost.php:18 inc/admin.php:1180
451
+ msgid "New Post"
452
+ msgstr "Neuer Beitrag"
453
+
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "Cache für Theme für Mobilgeräte erstellen"
457
+
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
+ msgid "Mobile Theme"
460
+ msgstr "Theme für Mobilgeräte"
461
+
462
+ #: inc/admin.php:1142
463
+ msgid "Don't show the cached version for desktop to mobile devices"
464
+ msgstr "Die gecachte Version für den Desktop nicht auf Mobilgeräten anzeigen"
465
+
466
+ #: inc/admin.php:1141
467
+ msgid "Mobile"
468
+ msgstr "Mobilgeräte"
469
+
470
+ #: inc/admin.php:1137
471
+ msgid "Don't show the cached version for logged-in users"
472
+ msgstr "Die gecachte Version angemeldeten Benutzern nicht anzeigen"
473
+
474
+ #: inc/admin.php:1136
475
+ msgid "Logged-in Users"
476
+ msgstr "Angemeldete Benutzer"
477
+
478
+ #: inc/admin.php:1127
479
+ msgid "Create the cache of all the site automatically"
480
+ msgstr "Den Cache für die gesamte Website automatisch erstellen"
481
+
482
+ #: templates/preload.php:20 inc/admin.php:1126
483
+ msgid "Preload"
484
+ msgstr "Vorladen"
485
+
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "Reduziere die Anzahl von SQL-Anfragen"
489
+
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
+ msgid "Widget Cache"
492
+ msgstr "Widget-Cache"
493
+
494
+ #: inc/admin.php:1088
495
+ msgid "Enable"
496
+ msgstr "Aktivieren"
497
+
498
+ #: inc/admin.php:1087
499
+ msgid "Cache System"
500
+ msgstr "Cache-System"
501
+
502
+ #: wpFastestCache.php:1611
503
+ msgid "Once Every 15 Days"
504
+ msgstr "Einmal alle 15 Tage"
505
+
506
+ #: wpFastestCache.php:1599
507
+ msgid "Once Every 7 Days"
508
+ msgstr "Einmal alle 7 Tage"
509
+
510
+ #: wpFastestCache.php:1593
511
+ msgid "Once Every 3 Days"
512
+ msgstr "Einmal alle 3 Tage"
513
+
514
+ #: wpFastestCache.php:1581
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "Einmal alle 10 Stunden"
517
+
518
+ #: wpFastestCache.php:1575
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "Einmal alle 9 Stunden"
521
+
522
+ #: wpFastestCache.php:1569
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "Einmal alle 8 Stunden"
525
+
526
+ #: wpFastestCache.php:1563
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "Einmal alle 7 Stunden"
529
+
530
+ #: wpFastestCache.php:1551
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "Einmal alle 5 Stunden"
533
+
534
+ #: wpFastestCache.php:1545
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "Einmal alle 4 Stunden"
537
+
538
+ #: wpFastestCache.php:1539
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "Einmal alle 3 Stunden"
541
+
542
+ #: wpFastestCache.php:1533
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "Einmal alle 2 Stunden"
545
+
546
+ #: wpFastestCache.php:1605
547
+ msgid "Once Every 10 Days"
548
+ msgstr "Einmal alle 10 Tage"
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 "Das einfachste und schnellste Cache-System für WordPress"
561
+
562
+ #. Plugin URI of the plugin
563
+ msgid "http://wordpress.org/plugins/wp-fastest-cache/"
564
+ msgstr "http://de.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:1623
571
+ msgid "Once a Year"
572
+ msgstr "Einmal pro Jahr"
573
+
574
+ #: wpFastestCache.php:1617
575
+ msgid "Once a Month"
576
+ msgstr "Einmal pro Monat"
577
+
578
+ #: wpFastestCache.php:1587
579
+ msgid "Once a Day"
580
+ msgstr "Einmal pro Tag"
581
+
582
+ #: wpFastestCache.php:1557
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "Einmal alle 6 Stunden"
585
+
586
+ #: wpFastestCache.php:1527
587
+ msgid "Once an Hour"
588
+ msgstr "Einmal pro Stunde"
589
+
590
+ #: wpFastestCache.php:1521
591
+ msgid "Twice an Hour"
592
+ msgstr "Zweimal pro Stunde"
593
+
594
+ #: wpFastestCache.php:1515
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "Einmal alle 15 Minuten"
597
+
598
+ #: wpFastestCache.php:1509
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "Einmal alle 5 Minuten"
601
+
602
+ #: wpFastestCache.php:1503
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "Einmal pro Minute"
languages/wp-fastest-cache-es_AR.mo ADDED
Binary file
languages/wp-fastest-cache-es_AR.po ADDED
@@ -0,0 +1,604 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in Spanish (Argentina)
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-12-16 00:45:27+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_AR\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "Borrar caché"
17
+
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
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:1786
27
+ msgid "Download"
28
+ msgstr "Descargar"
29
+
30
+ #: inc/admin.php:1781
31
+ msgid "Update"
32
+ msgstr "Actualizar"
33
+
34
+ #: inc/admin.php:1775
35
+ msgid "Please don't delete the free version. Premium version works with the free version."
36
+ msgstr "Por favor, no borrés la versión gratuita. La versión premium funciona con la versión gratuita."
37
+
38
+ #: inc/admin.php:1774
39
+ msgid "Get It Now!"
40
+ msgstr "¡Conseguila ahora!"
41
+
42
+ #: inc/admin.php:1768
43
+ msgid "You can download and update the premium when you want if you paid."
44
+ msgstr "Podés descargar y actualizar a la versión premium cuando quieras si has pagado."
45
+
46
+ #: inc/admin.php:1765
47
+ msgid "Download & Update"
48
+ msgstr "Descargar y actualizar"
49
+
50
+ #: inc/admin.php:1752
51
+ msgid "Buy"
52
+ msgstr "Comprar"
53
+
54
+ #: inc/admin.php:1737
55
+ msgid "Purchased"
56
+ msgstr "Comprada"
57
+
58
+ #: inc/admin.php:1732
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. Podés comprar la versión premium ahora."
61
+
62
+ #: inc/admin.php:1731
63
+ msgid "Just"
64
+ msgstr "Solo"
65
+
66
+ #: inc/admin.php:1715
67
+ msgid "You need to pay before downloading the premium version."
68
+ msgstr "Tenés que pagar antes de descargar la versión premium."
69
+
70
+ #: inc/admin.php:1712
71
+ msgid "Checkout"
72
+ msgstr "Pagar"
73
+
74
+ #: inc/admin.php:1698
75
+ msgid "New Features"
76
+ msgstr "Nuevas características"
77
+
78
+ #: inc/admin.php:1692
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:1689
83
+ msgid "Discover Features"
84
+ msgstr "Descubre las características"
85
+
86
+ #: templates/exclude.php:106 inc/admin.php:1837
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:1836
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "tiene parámetros de Google Analytics"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1829
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/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
+ msgid "Contains"
109
+ msgstr "Contiene"
110
+
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
+ msgid "Is Equal To"
114
+ msgstr "Es igual a"
115
+
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
+ msgid "Starts With"
119
+ msgstr "Comienza con"
120
+
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
+ msgid "Home Page"
124
+ msgstr "Página de inicio"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1555
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/exclude.php:89 templates/timeout.php:91
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 del 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:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
+ msgid "Add New Rule"
169
+ msgstr "Agregar una nueva regla"
170
+
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "Borrar el caché y minimizar CSS/JS"
174
+
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
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 "Elegí uno"
182
+
183
+ #: inc/admin.php:1532
184
+ msgid "All cache files will be removed as well"
185
+ msgstr "También se van a eliminar todos los archivos del caché"
186
+
187
+ #: inc/admin.php:1531
188
+ msgid "If you modify any css file, you have to delete minified css files"
189
+ msgstr "Si modificás cualquier archivo CSS, tenés que borrar los archivos CSS minimizados"
190
+
191
+ #: inc/admin.php:1519 inc/admin.php:1533 inc/admin.php:1534
192
+ msgid "Target folder"
193
+ msgstr "Carpeta de destino"
194
+
195
+ #: inc/admin.php:1518
196
+ msgid "You can delete all cache files"
197
+ msgstr "Podés borrar todos los archivos del caché"
198
+
199
+ #: inc/admin.php:1059
200
+ msgid "Exclude"
201
+ msgstr "Excluir"
202
+
203
+ #: inc/admin.php:1057
204
+ msgid "Image Optimization"
205
+ msgstr "Optimización de imágenes"
206
+
207
+ #: inc/admin.php:1054
208
+ msgid "Settings"
209
+ msgstr "Ajustes"
210
+
211
+ #: inc/admin.php:2077
212
+ msgid "Database Cleanup"
213
+ msgstr "Limpieza de la base de datos"
214
+
215
+ #: inc/admin.php:1965
216
+ msgid "CDN Settings"
217
+ msgstr "Ajustes de la CDN"
218
+
219
+ #: inc/admin.php:1928
220
+ msgid "Exclude JS"
221
+ msgstr "Excluir JS"
222
+
223
+ #: inc/admin.php:1908
224
+ msgid "Exclude CSS"
225
+ msgstr "Excluir CSS"
226
+
227
+ #: inc/admin.php:1890
228
+ msgid "Exclude Cookies"
229
+ msgstr "Excluir cookies"
230
+
231
+ #: inc/admin.php:1871
232
+ msgid "Exclude User-Agents"
233
+ msgstr "Excluir agentes de usuario"
234
+
235
+ #: inc/admin.php:1854
236
+ msgid "Exclude Pages"
237
+ msgstr "Excluir páginas"
238
+
239
+ #: inc/admin.php:1665
240
+ msgid "Optimize Image Tool"
241
+ msgstr "Herramienta de optimización de imágenes"
242
+
243
+ #: inc/admin.php:1548
244
+ msgid "Timeout Rules"
245
+ msgstr "Reglas de límite"
246
+
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
+ msgid "Delete Cache"
250
+ msgstr "Borrar el caché"
251
+
252
+ #: inc/admin.php:1469
253
+ msgid "Cache Statistics"
254
+ msgstr "Estadísticas del caché"
255
+
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "Vaciar el 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é querés que pase 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 el caché de paginación"
267
+
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "Vaciar el caché de etiquetas de entradas"
271
+
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "Vaciar el caché de categorías de entradas"
275
+
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "Vaciar el caché de la página de inicio"
279
+
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
+ #: inc/admin-toolbar.php:74
282
+ msgid "Clear All Cache"
283
+ msgstr "Vaciar toda el caché"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "¿Qué querés que pase después de publicar la nueva entrada?"
288
+
289
+ #: templates/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
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/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
+ msgid "Attachments"
312
+ msgstr "Adjuntos"
313
+
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
+ msgid "Tags"
316
+ msgstr "Etiquetas"
317
+
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
+ msgid "Pages"
320
+ msgstr "Páginas"
321
+
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
+ msgid "Categories"
324
+ msgstr "Categorías"
325
+
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
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:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
337
+
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
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:1365 inc/admin.php:1384 inc/admin.php:1391
343
+ msgid "Lazy Load"
344
+ msgstr "Carga diferida (lazy load)"
345
+
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "Cargar las fuentes de Google de forma asíncrona"
349
+
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
+ msgid "Google Fonts"
352
+ msgstr "Fuentes de Google"
353
+
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
+ msgid "Render Blocking Js"
356
+ msgstr "Bloqueo de procesado de JS"
357
+
358
+ #: inc/admin.php:1307
359
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "Podés eliminar los emojis CSS integrados y el archivo «wp-emoji-release.min.js»"
361
+
362
+ #: inc/admin.php:1306
363
+ msgid "Disable Emojis"
364
+ msgstr "Desactivar los emojis"
365
+
366
+ #: inc/admin.php:1301
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:1300
371
+ msgid "Browser Caching"
372
+ msgstr "Caché del navegador"
373
+
374
+ #: inc/admin.php:1289
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:1288
379
+ msgid "Gzip"
380
+ msgstr "Gzip"
381
+
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
+ msgid "Combine Js Plus"
384
+ msgstr "Combine Js Plus"
385
+
386
+ #: inc/admin.php:1262
387
+ msgid "Combine Js"
388
+ msgstr "Combinar JS"
389
+
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
391
+ msgid "You can decrease the size of js files"
392
+ msgstr "Podés reducir el tamaño de los archivos JS"
393
+
394
+ #: inc/admin.php:1245 inc/admin.php:1250 inc/admin.php:1256
395
+ msgid "Minify Js"
396
+ msgstr "Minimizar JS"
397
+
398
+ #: inc/admin.php:1238
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
401
+
402
+ #: inc/admin.php:1237
403
+ msgid "Combine Css"
404
+ msgstr "Combinar CSS"
405
+
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
+ msgid "More powerful minify css"
408
+ msgstr "Más potente minimización CSS"
409
+
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
+ msgid "Minify Css Plus"
412
+ msgstr "Minify Css Plus"
413
+
414
+ #: inc/admin.php:1217
415
+ msgid "You can decrease the size of css files"
416
+ msgstr "Podés reducir el tamaño de los archivos CSS"
417
+
418
+ #: inc/admin.php:1216
419
+ msgid "Minify Css"
420
+ msgstr "Minimizar CSS"
421
+
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
+ msgid "More powerful minify html"
424
+ msgstr "Más potente minimización HTML"
425
+
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
+ msgid "Minify HTML Plus"
428
+ msgstr "Minify HTML Plus"
429
+
430
+ #: inc/admin.php:1197
431
+ msgid "You can decrease the size of page"
432
+ msgstr "Podés reducir el tamaño de la página"
433
+
434
+ #: inc/admin.php:1196
435
+ msgid "Minify HTML"
436
+ msgstr "Minimizar HTML"
437
+
438
+ #: inc/admin.php:1188
439
+ msgid "Clear cache files when a post or page is updated"
440
+ msgstr "Vaciar los archivos del caché cuando se actualiza una entrada o página"
441
+
442
+ #: templates/updatepost.php:18 inc/admin.php:1187
443
+ msgid "Update Post"
444
+ msgstr "Actualizar la entrada"
445
+
446
+ #: inc/admin.php:1181
447
+ msgid "Clear cache files when a post or page is published"
448
+ msgstr "Vaciar los archivos del caché cuando se publica una entrada o página"
449
+
450
+ #: templates/newpost.php:18 inc/admin.php:1180
451
+ msgid "New Post"
452
+ msgstr "Nueva entrada"
453
+
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "Crear el caché para el tema para móviles"
457
+
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
+ msgid "Mobile Theme"
460
+ msgstr "Tema para móviles"
461
+
462
+ #: inc/admin.php:1142
463
+ msgid "Don't show the cached version for desktop to mobile devices"
464
+ msgstr "No mostrar la versión de escritorio del caché en los dispositivos móviles"
465
+
466
+ #: inc/admin.php:1141
467
+ msgid "Mobile"
468
+ msgstr "Móvil"
469
+
470
+ #: inc/admin.php:1137
471
+ msgid "Don't show the cached version for logged-in users"
472
+ msgstr "No mostrar la versión del caché para usuarios conectados"
473
+
474
+ #: inc/admin.php:1136
475
+ msgid "Logged-in Users"
476
+ msgstr "Usuarios conectados"
477
+
478
+ #: inc/admin.php:1127
479
+ msgid "Create the cache of all the site automatically"
480
+ msgstr "Crear automáticamente el caché de todo el sitio"
481
+
482
+ #: templates/preload.php:20 inc/admin.php:1126
483
+ msgid "Preload"
484
+ msgstr "Precargar"
485
+
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "Reducir el número de consultas SQL"
489
+
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
+ msgid "Widget Cache"
492
+ msgstr "Widget de caché"
493
+
494
+ #: inc/admin.php:1088
495
+ msgid "Enable"
496
+ msgstr "Activar"
497
+
498
+ #: inc/admin.php:1087
499
+ msgid "Cache System"
500
+ msgstr "Sistema de caché"
501
+
502
+ #: wpFastestCache.php:1611
503
+ msgid "Once Every 15 Days"
504
+ msgstr "Una vez cada 15 días"
505
+
506
+ #: wpFastestCache.php:1599
507
+ msgid "Once Every 7 Days"
508
+ msgstr "Una vez cada 7 días"
509
+
510
+ #: wpFastestCache.php:1593
511
+ msgid "Once Every 3 Days"
512
+ msgstr "Una vez cada 3 días"
513
+
514
+ #: wpFastestCache.php:1581
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "Una vez cada 10 horas"
517
+
518
+ #: wpFastestCache.php:1575
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "Una vez cada 9 horas"
521
+
522
+ #: wpFastestCache.php:1569
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "Una vez cada 8 horas"
525
+
526
+ #: wpFastestCache.php:1563
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "Una vez cada 7 horas"
529
+
530
+ #: wpFastestCache.php:1551
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "Una vez cada 5 horas"
533
+
534
+ #: wpFastestCache.php:1545
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "Una vez cada 4 horas"
537
+
538
+ #: wpFastestCache.php:1539
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "Una vez cada 3 horas"
541
+
542
+ #: wpFastestCache.php:1533
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "Una vez cada 2 horas"
545
+
546
+ #: wpFastestCache.php:1605
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:1623
571
+ msgid "Once a Year"
572
+ msgstr "Una vez al año"
573
+
574
+ #: wpFastestCache.php:1617
575
+ msgid "Once a Month"
576
+ msgstr "Una vez al mes"
577
+
578
+ #: wpFastestCache.php:1587
579
+ msgid "Once a Day"
580
+ msgstr "Una vez al día"
581
+
582
+ #: wpFastestCache.php:1557
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "Una vez cada 6 horas"
585
+
586
+ #: wpFastestCache.php:1527
587
+ msgid "Once an Hour"
588
+ msgstr "Una vez a la hora"
589
+
590
+ #: wpFastestCache.php:1521
591
+ msgid "Twice an Hour"
592
+ msgstr "Dos veces a la hora"
593
+
594
+ #: wpFastestCache.php:1515
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "Una vez cada 15 minutos"
597
+
598
+ #: wpFastestCache.php:1509
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "Una vez cada 5 minutos"
601
+
602
+ #: wpFastestCache.php:1503
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "Una vez cada minuto"
languages/wp-fastest-cache-es_ES.mo CHANGED
Binary file
languages/wp-fastest-cache-es_ES.po CHANGED
@@ -1,630 +1,604 @@
1
- # Translation of Plugins - WP Fastest Cache - Stable (latest release) in Spanish (Spain)
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-10-05 13:33+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: Loco https://localise.biz/\n"
11
- "Language: es-ES\n"
12
- "Project-Id-Version: Plugins - WP Fastest Cache - Stable (latest release)\n"
13
- "\n"
14
- "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2019-10-05 12:57:35+00:00\n"
16
- "Last-Translator: admin <a@a.com>\n"
17
- "Language-Team: Español\n"
18
- "X-Loco-Version: 2.3.0; wp-5.2.3"
19
-
20
- #: inc/admin-toolbar.php:69 inc/admin.php:988 inc/admin.php:1458
21
- #: inc/admin.php:1463
22
- msgid "Delete Cache"
23
- msgstr "Borrar la caché"
24
-
25
- #: inc/admin-toolbar.php:74 templates/newpost.php:51
26
- #: templates/updatepost.php:49
27
- msgid "Clear All Cache"
28
- msgstr "Vaciar toda la caché"
29
-
30
- #: inc/admin-toolbar.php:81 inc/admin.php:1476
31
- msgid "Delete Cache and Minified CSS/JS"
32
- msgstr "Borrar la caché y minimizar CSS/JS"
33
-
34
- #: inc/admin.php:429 inc/admin.php:432
35
- msgid "Options have been saved"
36
- msgstr "Las opciones han sido guardadas"
37
-
38
- #: inc/admin.php:987
39
- msgid "Settings"
40
- msgstr "Ajustes"
41
-
42
- #: inc/admin.php:990
43
- msgid "Image Optimization"
44
- msgstr "Optimización de imágenes"
45
-
46
- #: inc/admin.php:992
47
- msgid "Exclude"
48
- msgstr "Excluir"
49
-
50
- #: inc/admin.php:1020
51
- msgid "Cache System"
52
- msgstr "Sistema de caché"
53
-
54
- #: inc/admin.php:1021
55
- msgid "Enable"
56
- msgstr "Activar"
57
-
58
- #: inc/admin.php:1046 inc/admin.php:1052 inc/admin.php:1059 inc/admin.php:1066
59
- msgid "Widget Cache"
60
- msgstr "Widget de caché"
61
-
62
- #: inc/admin.php:1047 inc/admin.php:1053 inc/admin.php:1060 inc/admin.php:1067
63
- msgid "Reduce the number of SQL queries"
64
- msgstr "Reducir el número de consultas SQL"
65
-
66
- #: inc/admin.php:1075 templates/preload.php:20
67
- msgid "Preload"
68
- msgstr "Precargar"
69
-
70
- #: inc/admin.php:1076
71
- msgid "Create the cache of all the site automatically"
72
- msgstr "Crear automáticamente la caché de todo el sitio"
73
-
74
- #: inc/admin.php:1085
75
- msgid "Logged-in Users"
76
- msgstr "Usuarios conectados"
77
-
78
- #: inc/admin.php:1086
79
- msgid "Don't show the cached version for logged-in users"
80
- msgstr "No mostrar la versión de la caché para usuarios conectados"
81
-
82
- #: inc/admin.php:1090
83
- msgid "Mobile"
84
- msgstr "Móvil"
85
-
86
- #: inc/admin.php:1091
87
- msgid "Don't show the cached version for desktop to mobile devices"
88
- msgstr ""
89
- "No mostrar la versión de escritorio de la caché en los dispositivos móviles"
90
-
91
- #: inc/admin.php:1096 inc/admin.php:1122
92
- msgid "Mobile Theme"
93
- msgstr "Tema para móviles"
94
-
95
- #: inc/admin.php:1097 inc/admin.php:1123
96
- msgid "Create cache for mobile theme"
97
- msgstr "Crear la caché para el tema para móviles"
98
-
99
- #: inc/admin.php:1129 templates/newpost.php:18
100
- msgid "New Post"
101
- msgstr "Nueva entrada"
102
-
103
- #: inc/admin.php:1130
104
- msgid "Clear cache files when a post or page is published"
105
- msgstr "Vaciar los archivos de la caché cuando se publica una entrada o página"
106
-
107
- #: inc/admin.php:1136 templates/updatepost.php:18
108
- msgid "Update Post"
109
- msgstr "Actualizar la entrada"
110
-
111
- #: inc/admin.php:1137
112
- msgid "Clear cache files when a post or page is updated"
113
- msgstr ""
114
- "Vaciar los archivos de la caché cuando se actualiza una entrada o página"
115
-
116
- #: inc/admin.php:1145
117
- msgid "Minify HTML"
118
- msgstr "Minimizar HTML"
119
-
120
- #: inc/admin.php:1146
121
- msgid "You can decrease the size of page"
122
- msgstr "Puedes reducir el tamaño de la página"
123
-
124
- #: inc/admin.php:1152 inc/admin.php:1157
125
- msgid "Minify HTML Plus"
126
- msgstr "Minify HTML Plus"
127
-
128
- #: inc/admin.php:1153 inc/admin.php:1158
129
- msgid "More powerful minify html"
130
- msgstr "Más potente minimización HTML"
131
-
132
- #: inc/admin.php:1165
133
- msgid "Minify Css"
134
- msgstr "Minimizar CSS"
135
-
136
- #: inc/admin.php:1166
137
- msgid "You can decrease the size of css files"
138
- msgstr "Puedes reducir el tamaño de los archivos CSS"
139
-
140
- #: inc/admin.php:1174 inc/admin.php:1179
141
- msgid "Minify Css Plus"
142
- msgstr "Minify Css Plus"
143
-
144
- #: inc/admin.php:1175 inc/admin.php:1180
145
- msgid "More powerful minify css"
146
- msgstr "Más potente minimización CSS"
147
-
148
- #: inc/admin.php:1186
149
- msgid "Combine Css"
150
- msgstr "Combinar CSS"
151
-
152
- #: inc/admin.php:1187
153
- msgid "Reduce HTTP requests through combined css files"
154
- msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
155
-
156
- #: inc/admin.php:1194 inc/admin.php:1199 inc/admin.php:1205
157
- msgid "Minify Js"
158
- msgstr "Minimizar JS"
159
-
160
- #: inc/admin.php:1195 inc/admin.php:1200 inc/admin.php:1206
161
- msgid "You can decrease the size of js files"
162
- msgstr "Puedes reducir el tamaño de los archivos JS"
163
-
164
- #: inc/admin.php:1211
165
- msgid "Combine Js"
166
- msgstr "Combinar JS"
167
-
168
- #: inc/admin.php:1212 inc/admin.php:1220 inc/admin.php:1226 inc/admin.php:1232
169
- msgid "Reduce HTTP requests through combined js files"
170
- msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
171
-
172
- #: inc/admin.php:1218 inc/admin.php:1225 inc/admin.php:1231
173
- msgid "Combine Js Plus"
174
- msgstr "Combine Js Plus"
175
-
176
- #: inc/admin.php:1237
177
- msgid "Gzip"
178
- msgstr "Gzip"
179
-
180
- #: inc/admin.php:1238
181
- msgid "Reduce the size of files sent from your server"
182
- msgstr "Reducir el tamaño de los archivos enviados por tu servidor"
183
-
184
- #: inc/admin.php:1249
185
- msgid "Browser Caching"
186
- msgstr "Caché del navegador"
187
-
188
- #: inc/admin.php:1250
189
- msgid "Reduce page load times for repeat visitors"
190
- msgstr ""
191
- "Reducir el tiempo de carga de la página para los visitantes repetitivos"
192
-
193
- #: inc/admin.php:1255
194
- msgid "Disable Emojis"
195
- msgstr "Desactivar los emojis"
196
-
197
- #: inc/admin.php:1256
198
- msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
199
- msgstr ""
200
- "Puedes eliminar los emojis CSS integrados y el archivo «wp-emoji-release.min."
201
- "js»"
202
-
203
- #: inc/admin.php:1264 inc/admin.php:1270 inc/admin.php:1277
204
- msgid "Render Blocking Js"
205
- msgstr "Bloqueo de procesado de JS"
206
-
207
- #: inc/admin.php:1265 inc/admin.php:1271 inc/admin.php:1278
208
- msgid "Eliminate render-blocking JavaScript resources"
209
- msgstr "Elimina los JavaScript recursos que bloqueen el renderizado"
210
-
211
- #: inc/admin.php:1290 inc/admin.php:1296 inc/admin.php:1303
212
- msgid "Google Fonts"
213
- msgstr "Fuentes de Google"
214
-
215
- #: inc/admin.php:1291 inc/admin.php:1297 inc/admin.php:1304
216
- msgid "Load Google Fonts asynchronously"
217
- msgstr "Cargar las fuentes de Google de forma asíncrona"
218
-
219
- #: inc/admin.php:1314 inc/admin.php:1333 inc/admin.php:1340
220
- msgid "Lazy Load"
221
- msgstr "Carga diferida"
222
-
223
- #: inc/admin.php:1320 inc/admin.php:1334 inc/admin.php:1341
224
- msgid "Load images and iframes when they enter the browsers viewport"
225
- msgstr ""
226
- "Cargar las imágenes e iframes cuando entren en la visualización de los "
227
- "navegadores"
228
-
229
- #: inc/admin.php:1411 inc/admin.php:2039 inc/admin.php:2260
230
- msgid "Only available in Premium version"
231
- msgstr "Solo disponible en la versión premium"
232
-
233
- #: inc/admin.php:1418
234
- msgid "Cache Statistics"
235
- msgstr "Estadísticas de la caché"
236
-
237
- #: inc/admin.php:1467
238
- msgid "You can delete all cache files"
239
- msgstr "Puedes borrar todos los archivos de la caché"
240
-
241
- #: inc/admin.php:1468 inc/admin.php:1482 inc/admin.php:1483
242
- msgid "Target folder"
243
- msgstr "Carpeta de destino"
244
-
245
- #: inc/admin.php:1480
246
- msgid "If you modify any css file, you have to delete minified css files"
247
- msgstr ""
248
- "Si modificas cualquier archivo CSS, tienes que borrar los archivos CSS "
249
- "minimizados"
250
-
251
- #: inc/admin.php:1481
252
- msgid "All cache files will be removed as well"
253
- msgstr "También se eliminarán todos los archivos de la caché"
254
-
255
- #: inc/admin.php:1497
256
- msgid "Timeout Rules"
257
- msgstr "Reglas de límite"
258
-
259
- #: inc/admin.php:1504 templates/timeout.php:95
260
- msgid "All"
261
- msgstr "Todo"
262
-
263
- #: inc/admin.php:1505 inc/admin.php:1773 templates/exclude.php:93
264
- #: templates/timeout.php:96
265
- msgid "Home Page"
266
- msgstr "Página de inicio"
267
-
268
- #: inc/admin.php:1506 inc/admin.php:1780 templates/exclude.php:102
269
- #: templates/timeout.php:97
270
- msgid "Starts With"
271
- msgstr "Comienza con"
272
-
273
- #: inc/admin.php:1507 inc/admin.php:1781 templates/exclude.php:103
274
- #: templates/timeout.php:99
275
- msgid "Contains"
276
- msgstr "Contiene"
277
-
278
- #: inc/admin.php:1508 inc/admin.php:1782 templates/exclude.php:104
279
- #: templates/timeout.php:98
280
- msgid "Is Equal To"
281
- msgstr "Es igual a"
282
-
283
- #: inc/admin.php:1540 inc/admin.php:1805 inc/admin.php:1822 inc/admin.php:1841
284
- #: inc/admin.php:1859 inc/admin.php:1879
285
- msgid "Add New Rule"
286
- msgstr "Añadir una nueva regla"
287
-
288
- #: inc/admin.php:1614
289
- msgid "Optimize Image Tool"
290
- msgstr "Herramienta de optimización de imágenes"
291
-
292
- #: inc/admin.php:1638
293
- msgid "Discover Features"
294
- msgstr "Descubre las características"
295
-
296
- #: inc/admin.php:1641
297
- msgid ""
298
- "In the premium version there are some new features which speed up the sites "
299
- "more."
300
- msgstr ""
301
- "En la versión premium hay algunas nuevas características que dan más "
302
- "velocidad a los sitios."
303
-
304
- #: inc/admin.php:1647
305
- msgid "New Features"
306
- msgstr "Nuevas características"
307
-
308
- #: inc/admin.php:1661
309
- msgid "Checkout"
310
- msgstr "Pagar"
311
-
312
- #: inc/admin.php:1664
313
- msgid "You need to pay before downloading the premium version."
314
- msgstr "Tienes que pagar antes de descargar la versión premium."
315
-
316
- #: inc/admin.php:1678
317
- msgid "Just"
318
- msgstr "Solo"
319
-
320
- #: inc/admin.php:1679
321
- msgid ""
322
- "The download button will be available after paid. You can buy the premium "
323
- "version now."
324
- msgstr ""
325
- "El botón de descarga estará disponible después del pago. Puedes comprar la "
326
- "versión premium ahora."
327
-
328
- #: inc/admin.php:1684
329
- msgid "Purchased"
330
- msgstr "Comprada"
331
-
332
- #: inc/admin.php:1699
333
- msgid "Buy"
334
- msgstr "Comprar"
335
-
336
- #: inc/admin.php:1712
337
- msgid "Download & Update"
338
- msgstr "Descargar y actualizar"
339
-
340
- #: inc/admin.php:1715
341
- msgid "You can download and update the premium when you want if you paid."
342
- msgstr ""
343
- "Puedes descargar y actualizar a la versión premium cuando quieras si has "
344
- "pagado."
345
-
346
- #: inc/admin.php:1721
347
- msgid "Get It Now!"
348
- msgstr "¡Consíguela ahora!"
349
-
350
- #: inc/admin.php:1722
351
- msgid ""
352
- "Please don't delete the free version. Premium version works with the free "
353
- "version."
354
- msgstr ""
355
- "Por favor, no borres la versión gratuita. La versión premium funciona con la "
356
- "versión gratuita."
357
-
358
- #: inc/admin.php:1728
359
- msgid "Update"
360
- msgstr "Actualizar"
361
-
362
- #: inc/admin.php:1733
363
- msgid "Download"
364
- msgstr "Descargar"
365
-
366
- #: inc/admin.php:1774 templates/exclude.php:94 templates/preload.php:41
367
- msgid "Categories"
368
- msgstr "Categorías"
369
-
370
- #: inc/admin.php:1775 templates/exclude.php:95 templates/preload.php:49
371
- msgid "Tags"
372
- msgstr "Etiquetas"
373
-
374
- #: inc/admin.php:1776 templates/exclude.php:99
375
- msgid "Archives"
376
- msgstr "Archivos"
377
-
378
- #: inc/admin.php:1777 templates/exclude.php:96 templates/preload.php:37
379
- msgid "Posts"
380
- msgstr "Entradas"
381
-
382
- #: inc/admin.php:1778 templates/exclude.php:97 templates/preload.php:45
383
- msgid "Pages"
384
- msgstr "Páginas"
385
-
386
- #: inc/admin.php:1779 templates/exclude.php:101 templates/preload.php:53
387
- msgid "Attachments"
388
- msgstr "Adjuntos"
389
-
390
- #: inc/admin.php:1783 templates/exclude.php:105
391
- msgid "has Google Analytics Parameters"
392
- msgstr "tiene parámetros de Google Analytics"
393
-
394
- #: inc/admin.php:1784 templates/exclude.php:106
395
- msgid "has Woocommerce Items in Cart"
396
- msgstr "tiene artículos de WooCommerce en el carrito"
397
-
398
- #: inc/admin.php:1801
399
- msgid "Exclude Pages"
400
- msgstr "Excluir páginas"
401
-
402
- #: inc/admin.php:1818
403
- msgid "Exclude User-Agents"
404
- msgstr "Excluir agentes de usuario"
405
-
406
- #: inc/admin.php:1837
407
- msgid "Exclude Cookies"
408
- msgstr "Excluir cookies"
409
-
410
- #: inc/admin.php:1855
411
- msgid "Exclude CSS"
412
- msgstr "Excluir CSS"
413
-
414
- #: inc/admin.php:1875
415
- msgid "Exclude JS"
416
- msgstr "Excluir JS"
417
-
418
- #: inc/admin.php:1912
419
- msgid "CDN Settings"
420
- msgstr "Ajustes de la CDN"
421
-
422
- #: inc/admin.php:2024
423
- msgid "Database Cleanup"
424
- msgstr "Limpieza de la base de datos"
425
-
426
- #: templates/disable_wp_cron.php:20
427
- msgid "Warning"
428
- msgstr "Advertencia"
429
-
430
- #: templates/exclude.php:66
431
- msgid "Exclude Page Wizard"
432
- msgstr "Asistente para excluir páginas"
433
-
434
- #: templates/exclude.php:89 templates/timeout.php:91
435
- msgid "If REQUEST_URI"
436
- msgstr "Si REQUEST_URI"
437
-
438
- #: templates/lazy_load.php:9
439
- msgid "Lazy Load Settings"
440
- msgstr "Asistente de carga diferida"
441
-
442
- #: templates/newpost.php:29
443
- msgid "What do you want to happen after publishing the new post?"
444
- msgstr "¿Qué quieres que ocurra después de publicar la nueva entrada?"
445
-
446
- #: templates/newpost.php:55 templates/updatepost.php:56
447
- msgid "Clear Cache of Homepage"
448
- msgstr "Vaciar la caché de la página de inicio"
449
-
450
- #: templates/newpost.php:56 templates/updatepost.php:54
451
- msgid "Clear Cache of Post Categories"
452
- msgstr "Vaciar la caché de categorías de entradas"
453
-
454
- #: templates/newpost.php:57 templates/updatepost.php:55
455
- msgid "Clear Cache of Post Tags"
456
- msgstr "Vaciar la caché de etiquetas de entradas"
457
-
458
- #: templates/newpost.php:58
459
- msgid "Clear Cache of Pagination"
460
- msgstr "Vaciar la caché de paginación"
461
-
462
- #: templates/newpost.php:68 templates/preload.php:102
463
- #: templates/updatepost.php:64
464
- msgid "OK"
465
- msgstr "Aceptar"
466
-
467
- #: templates/nginx_gzip.php:9
468
- msgid "Enable Gzip"
469
- msgstr "Activar Gzip"
470
-
471
- #: templates/preload.php:33
472
- msgid "Homepage"
473
- msgstr "Página de inicio"
474
-
475
- #: templates/preload.php:58
476
- msgid "Custom Post Types"
477
- msgstr "Tipos de contenido personalizado"
478
-
479
- #: templates/preload.php:63
480
- msgid "Custom Taxonomies"
481
- msgstr "Taxonomías personalizadas"
482
-
483
- #: templates/preload.php:87
484
- msgid "pages per minute"
485
- msgstr "páginas por minuto"
486
-
487
- #: templates/preload.php:92
488
- msgid "Restart After Completed"
489
- msgstr "Reiniciar después de completado"
490
-
491
- #: templates/timeout.php:68
492
- msgid "Cache Timeout Wizard"
493
- msgstr "Asistente del tiempo límite de la caché"
494
-
495
- #: templates/timeout.php:124
496
- msgid "Then"
497
- msgstr "Entonces"
498
-
499
- #: templates/timeout.php:137
500
- msgid "Choose One"
501
- msgstr "Elige uno"
502
-
503
- #: templates/timeout.php:165
504
- msgid "delete the files"
505
- msgstr "borrar los archivos"
506
-
507
- #: templates/timeout.php:185
508
- msgid "Server Time"
509
- msgstr "Hora del servidor"
510
-
511
- #: templates/update_now.php:9
512
- msgid "Please Update"
513
- msgstr "Por favor, actualiza"
514
-
515
- #: templates/update_success.php:9
516
- msgid "Success"
517
- msgstr "Correcto"
518
-
519
- #: templates/updatepost.php:29
520
- msgid "What do you want to happen after update a post or a page?"
521
- msgstr ""
522
- "¿Qué quieres que ocurra después de actualizar una entrada o una página?"
523
-
524
- #: templates/updatepost.php:53
525
- msgid "Clear Cache of Post / Page"
526
- msgstr "Vaciar la caché de entradas / páginas"
527
-
528
- #: wpFastestCache.php:1470
529
- msgid "Once Every 1 Minute"
530
- msgstr "Una vez cada minuto"
531
-
532
- #: wpFastestCache.php:1476
533
- msgid "Once Every 5 Minutes"
534
- msgstr "Una vez cada 5 minutos"
535
-
536
- #: wpFastestCache.php:1482
537
- msgid "Once Every 15 Minutes"
538
- msgstr "Una vez cada 15 minutos"
539
-
540
- #: wpFastestCache.php:1488
541
- msgid "Twice an Hour"
542
- msgstr "Dos veces a la hora"
543
-
544
- #: wpFastestCache.php:1494
545
- msgid "Once an Hour"
546
- msgstr "Una vez a la hora"
547
-
548
- #: wpFastestCache.php:1500
549
- msgid "Once Every 2 Hours"
550
- msgstr "Una vez cada 2 horas"
551
-
552
- #: wpFastestCache.php:1506
553
- msgid "Once Every 3 Hours"
554
- msgstr "Una vez cada 3 horas"
555
-
556
- #: wpFastestCache.php:1512
557
- msgid "Once Every 4 Hours"
558
- msgstr "Una vez cada 4 horas"
559
-
560
- #: wpFastestCache.php:1518
561
- msgid "Once Every 5 Hours"
562
- msgstr "Una vez cada 5 horas"
563
-
564
- #: wpFastestCache.php:1524
565
- msgid "Once Every 6 Hours"
566
- msgstr "Una vez cada 6 horas"
567
-
568
- #: wpFastestCache.php:1530
569
- msgid "Once Every 7 Hours"
570
- msgstr "Una vez cada 7 horas"
571
-
572
- #: wpFastestCache.php:1536
573
- msgid "Once Every 8 Hours"
574
- msgstr "Una vez cada 8 horas"
575
-
576
- #: wpFastestCache.php:1542
577
- msgid "Once Every 9 Hours"
578
- msgstr "Una vez cada 9 horas"
579
-
580
- #: wpFastestCache.php:1548
581
- msgid "Once Every 10 Hours"
582
- msgstr "Una vez cada 10 horas"
583
-
584
- #: wpFastestCache.php:1554
585
- msgid "Once a Day"
586
- msgstr "Una vez al día"
587
-
588
- #: wpFastestCache.php:1560
589
- msgid "Once Every 3 Days"
590
- msgstr "Una vez cada 3 días"
591
-
592
- #: wpFastestCache.php:1566
593
- msgid "Once Every 7 Days"
594
- msgstr "Una vez cada 7 días"
595
-
596
- #: wpFastestCache.php:1572
597
- msgid "Once Every 10 Days"
598
- msgstr "Una vez cada 10 días"
599
-
600
- #: wpFastestCache.php:1578
601
- msgid "Once Every 15 Days"
602
- msgstr "Una vez cada 15 días"
603
-
604
- #: wpFastestCache.php:1584
605
- msgid "Once a Month"
606
- msgstr "Una vez al mes"
607
-
608
- #: wpFastestCache.php:1590
609
- msgid "Once a Year"
610
- msgstr "Una vez al año"
611
-
612
- #. Plugin Name of the plugin
613
- msgid "WP Fastest Cache"
614
- msgstr "WP Fastest Cache"
615
-
616
- #. Plugin URI of the plugin
617
- msgid "http://wordpress.org/plugins/wp-fastest-cache/"
618
- msgstr "http://es.wordpress.org/plugins/wp-fastest-cache/"
619
-
620
- #. Description of the plugin
621
- msgid "The simplest and fastest WP Cache system"
622
- msgstr "El sistema WP Cache más simple y rápido"
623
-
624
- #. Author of the plugin
625
- msgid "Emre Vona"
626
- msgstr "Emre Vona"
627
-
628
- #. Author URI of the plugin
629
- msgid "http://tr.linkedin.com/in/emrevona"
630
- msgstr "http://tr.linkedin.com/in/emrevona"
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in Spanish (Spain)
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-12-18 17:28:46+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\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "Vaciar la caché"
17
+
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
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:1786
27
+ msgid "Download"
28
+ msgstr "Descargar"
29
+
30
+ #: inc/admin.php:1781
31
+ msgid "Update"
32
+ msgstr "Actualizar"
33
+
34
+ #: inc/admin.php:1775
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:1774
39
+ msgid "Get It Now!"
40
+ msgstr "¡Consíguela ahora!"
41
+
42
+ #: inc/admin.php:1768
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:1765
47
+ msgid "Download & Update"
48
+ msgstr "Descargar y actualizar"
49
+
50
+ #: inc/admin.php:1752
51
+ msgid "Buy"
52
+ msgstr "Comprar"
53
+
54
+ #: inc/admin.php:1737
55
+ msgid "Purchased"
56
+ msgstr "Comprada"
57
+
58
+ #: inc/admin.php:1732
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:1731
63
+ msgid "Just"
64
+ msgstr "Solo"
65
+
66
+ #: inc/admin.php:1715
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:1712
71
+ msgid "Checkout"
72
+ msgstr "Pagar"
73
+
74
+ #: inc/admin.php:1698
75
+ msgid "New Features"
76
+ msgstr "Nuevas características"
77
+
78
+ #: inc/admin.php:1692
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:1689
83
+ msgid "Discover Features"
84
+ msgstr "Descubre las características"
85
+
86
+ #: templates/exclude.php:106 inc/admin.php:1837
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:1836
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "tiene parámetros de Google Analytics"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1829
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/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
+ msgid "Contains"
109
+ msgstr "Contiene"
110
+
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
+ msgid "Is Equal To"
114
+ msgstr "Es igual a"
115
+
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
+ msgid "Starts With"
119
+ msgstr "Comienza con"
120
+
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
+ msgid "Home Page"
124
+ msgstr "Página de inicio"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1555
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/exclude.php:89 templates/timeout.php:91
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:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
+ msgid "Add New Rule"
169
+ msgstr "Añadir una nueva regla"
170
+
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "Borrar la caché y minimizar CSS/JS"
174
+
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
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:1532
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:1531
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:1519 inc/admin.php:1533 inc/admin.php:1534
192
+ msgid "Target folder"
193
+ msgstr "Carpeta de destino"
194
+
195
+ #: inc/admin.php:1518
196
+ msgid "You can delete all cache files"
197
+ msgstr "Puedes borrar todos los archivos de la caché"
198
+
199
+ #: inc/admin.php:1059
200
+ msgid "Exclude"
201
+ msgstr "Excluir"
202
+
203
+ #: inc/admin.php:1057
204
+ msgid "Image Optimization"
205
+ msgstr "Optimización de imágenes"
206
+
207
+ #: inc/admin.php:1054
208
+ msgid "Settings"
209
+ msgstr "Ajustes"
210
+
211
+ #: inc/admin.php:2077
212
+ msgid "Database Cleanup"
213
+ msgstr "Limpieza de la base de datos"
214
+
215
+ #: inc/admin.php:1965
216
+ msgid "CDN Settings"
217
+ msgstr "Ajustes de la CDN"
218
+
219
+ #: inc/admin.php:1928
220
+ msgid "Exclude JS"
221
+ msgstr "Excluir JS"
222
+
223
+ #: inc/admin.php:1908
224
+ msgid "Exclude CSS"
225
+ msgstr "Excluir CSS"
226
+
227
+ #: inc/admin.php:1890
228
+ msgid "Exclude Cookies"
229
+ msgstr "Excluir cookies"
230
+
231
+ #: inc/admin.php:1871
232
+ msgid "Exclude User-Agents"
233
+ msgstr "Excluir agentes de usuario"
234
+
235
+ #: inc/admin.php:1854
236
+ msgid "Exclude Pages"
237
+ msgstr "Excluir páginas"
238
+
239
+ #: inc/admin.php:1665
240
+ msgid "Optimize Image Tool"
241
+ msgstr "Herramienta de optimización de imágenes"
242
+
243
+ #: inc/admin.php:1548
244
+ msgid "Timeout Rules"
245
+ msgstr "Reglas de límite"
246
+
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
+ msgid "Delete Cache"
250
+ msgstr "Borrar la caché"
251
+
252
+ #: inc/admin.php:1469
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/newpost.php:57 templates/updatepost.php:55
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "Vaciar la caché de etiquetas de entradas"
271
+
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "Vaciar la caché de categorías de entradas"
275
+
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "Vaciar la caché de la página de inicio"
279
+
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
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/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
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/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
+ msgid "Attachments"
312
+ msgstr "Adjuntos"
313
+
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
+ msgid "Tags"
316
+ msgstr "Etiquetas"
317
+
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
+ msgid "Pages"
320
+ msgstr "Páginas"
321
+
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
+ msgid "Categories"
324
+ msgstr "Categorías"
325
+
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
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:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
337
+
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
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:1365 inc/admin.php:1384 inc/admin.php:1391
343
+ msgid "Lazy Load"
344
+ msgstr "Carga diferida"
345
+
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "Cargar las fuentes de Google de forma asíncrona"
349
+
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
+ msgid "Google Fonts"
352
+ msgstr "Fuentes de Google"
353
+
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
+ msgid "Render Blocking Js"
356
+ msgstr "Bloqueo de procesado de JS"
357
+
358
+ #: inc/admin.php:1307
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:1306
363
+ msgid "Disable Emojis"
364
+ msgstr "Desactivar los emojis"
365
+
366
+ #: inc/admin.php:1301
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:1300
371
+ msgid "Browser Caching"
372
+ msgstr "Caché del navegador"
373
+
374
+ #: inc/admin.php:1289
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:1288
379
+ msgid "Gzip"
380
+ msgstr "Gzip"
381
+
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
+ msgid "Combine Js Plus"
384
+ msgstr "Combine Js Plus"
385
+
386
+ #: inc/admin.php:1262
387
+ msgid "Combine Js"
388
+ msgstr "Combinar JS"
389
+
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
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:1245 inc/admin.php:1250 inc/admin.php:1256
395
+ msgid "Minify Js"
396
+ msgstr "Minimizar JS"
397
+
398
+ #: inc/admin.php:1238
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
401
+
402
+ #: inc/admin.php:1237
403
+ msgid "Combine Css"
404
+ msgstr "Combinar CSS"
405
+
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
+ msgid "More powerful minify css"
408
+ msgstr "Más potente minimización CSS"
409
+
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
+ msgid "Minify Css Plus"
412
+ msgstr "Minify Css Plus"
413
+
414
+ #: inc/admin.php:1217
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:1216
419
+ msgid "Minify Css"
420
+ msgstr "Minimizar CSS"
421
+
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
+ msgid "More powerful minify html"
424
+ msgstr "Más potente minimización HTML"
425
+
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
+ msgid "Minify HTML Plus"
428
+ msgstr "Minify HTML Plus"
429
+
430
+ #: inc/admin.php:1197
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:1196
435
+ msgid "Minify HTML"
436
+ msgstr "Minimizar HTML"
437
+
438
+ #: inc/admin.php:1188
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:1187
443
+ msgid "Update Post"
444
+ msgstr "Actualizar la entrada"
445
+
446
+ #: inc/admin.php:1181
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:1180
451
+ msgid "New Post"
452
+ msgstr "Nueva entrada"
453
+
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "Crear la caché para el tema para móviles"
457
+
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
+ msgid "Mobile Theme"
460
+ msgstr "Tema para móviles"
461
+
462
+ #: inc/admin.php:1142
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:1141
467
+ msgid "Mobile"
468
+ msgstr "Móvil"
469
+
470
+ #: inc/admin.php:1137
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:1136
475
+ msgid "Logged-in Users"
476
+ msgstr "Usuarios conectados"
477
+
478
+ #: inc/admin.php:1127
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:1126
483
+ msgid "Preload"
484
+ msgstr "Precargar"
485
+
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "Reducir el número de consultas SQL"
489
+
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
+ msgid "Widget Cache"
492
+ msgstr "Widget de caché"
493
+
494
+ #: inc/admin.php:1088
495
+ msgid "Enable"
496
+ msgstr "Activar"
497
+
498
+ #: inc/admin.php:1087
499
+ msgid "Cache System"
500
+ msgstr "Sistema de caché"
501
+
502
+ #: wpFastestCache.php:1611
503
+ msgid "Once Every 15 Days"
504
+ msgstr "Una vez cada 15 días"
505
+
506
+ #: wpFastestCache.php:1599
507
+ msgid "Once Every 7 Days"
508
+ msgstr "Una vez cada 7 días"
509
+
510
+ #: wpFastestCache.php:1593
511
+ msgid "Once Every 3 Days"
512
+ msgstr "Una vez cada 3 días"
513
+
514
+ #: wpFastestCache.php:1581
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "Una vez cada 10 horas"
517
+
518
+ #: wpFastestCache.php:1575
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "Una vez cada 9 horas"
521
+
522
+ #: wpFastestCache.php:1569
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "Una vez cada 8 horas"
525
+
526
+ #: wpFastestCache.php:1563
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "Una vez cada 7 horas"
529
+
530
+ #: wpFastestCache.php:1551
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "Una vez cada 5 horas"
533
+
534
+ #: wpFastestCache.php:1545
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "Una vez cada 4 horas"
537
+
538
+ #: wpFastestCache.php:1539
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "Una vez cada 3 horas"
541
+
542
+ #: wpFastestCache.php:1533
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "Una vez cada 2 horas"
545
+
546
+ #: wpFastestCache.php:1605
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:1623
571
+ msgid "Once a Year"
572
+ msgstr "Una vez al año"
573
+
574
+ #: wpFastestCache.php:1617
575
+ msgid "Once a Month"
576
+ msgstr "Una vez al mes"
577
+
578
+ #: wpFastestCache.php:1587
579
+ msgid "Once a Day"
580
+ msgstr "Una vez al día"
581
+
582
+ #: wpFastestCache.php:1557
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "Una vez cada 6 horas"
585
+
586
+ #: wpFastestCache.php:1527
587
+ msgid "Once an Hour"
588
+ msgstr "Una vez a la hora"
589
+
590
+ #: wpFastestCache.php:1521
591
+ msgid "Twice an Hour"
592
+ msgstr "Dos veces a la hora"
593
+
594
+ #: wpFastestCache.php:1515
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "Una vez cada 15 minutos"
597
+
598
+ #: wpFastestCache.php:1509
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "Una vez cada 5 minutos"
601
+
602
+ #: wpFastestCache.php:1503
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "Una vez cada minuto"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wp-fastest-cache-es_VE.mo CHANGED
Binary file
languages/wp-fastest-cache-es_VE.po CHANGED
@@ -2,7 +2,7 @@
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"
@@ -13,9 +13,9 @@ msgstr ""
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
 
@@ -23,75 +23,75 @@ msgstr "Eliminar los recursos JavaScript que bloquean los procesos"
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
 
@@ -103,27 +103,27 @@ msgstr "Hora del servidor"
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
 
@@ -135,7 +135,7 @@ msgstr "Asistente para excluir páginas"
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
 
@@ -163,16 +163,16 @@ msgstr "Correcto"
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
 
@@ -180,76 +180,76 @@ msgstr "Solo disponible en la versión premium"
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
 
@@ -265,19 +265,19 @@ msgstr "¿Qué quieres que ocurra después de actualizar una entrada o una pági
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é"
@@ -286,8 +286,8 @@ msgstr "Vaciar toda la caché"
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
 
@@ -307,23 +307,23 @@ msgstr "Taxonomías personalizadas"
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
 
@@ -331,219 +331,219 @@ msgstr "Entradas"
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
 
@@ -567,38 +567,38 @@ msgstr "http://es.wordpress.org/plugins/wp-fastest-cache/"
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"
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-12-05 10:47:38+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
13
 
14
  #: inc/column.php:15
15
  msgid "Clear Cache"
16
+ msgstr "Borrar caché"
17
 
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
19
  msgid "Eliminate render-blocking JavaScript resources"
20
  msgstr "Eliminar los recursos JavaScript que bloquean los procesos"
21
 
23
  msgid "Options have been saved"
24
  msgstr "Las opciones han sido guardadas"
25
 
26
+ #: inc/admin.php:1786
27
  msgid "Download"
28
  msgstr "Descargar"
29
 
30
+ #: inc/admin.php:1781
31
  msgid "Update"
32
  msgstr "Actualizar"
33
 
34
+ #: inc/admin.php:1775
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:1774
39
  msgid "Get It Now!"
40
  msgstr "¡Consíguela ahora!"
41
 
42
+ #: inc/admin.php:1768
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:1765
47
  msgid "Download & Update"
48
  msgstr "Descargar y actualizar"
49
 
50
+ #: inc/admin.php:1752
51
  msgid "Buy"
52
  msgstr "Comprar"
53
 
54
+ #: inc/admin.php:1737
55
  msgid "Purchased"
56
  msgstr "Comprada"
57
 
58
+ #: inc/admin.php:1732
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:1731
63
  msgid "Just"
64
  msgstr "Solo"
65
 
66
+ #: inc/admin.php:1715
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:1712
71
  msgid "Checkout"
72
  msgstr "Pagar"
73
 
74
+ #: inc/admin.php:1698
75
  msgid "New Features"
76
  msgstr "Nuevas características"
77
 
78
+ #: inc/admin.php:1692
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:1689
83
  msgid "Discover Features"
84
  msgstr "Descubre las características"
85
 
86
+ #: templates/exclude.php:106 inc/admin.php:1837
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:1836
91
  msgid "has Google Analytics Parameters"
92
  msgstr "tiene parámetros de Google Analytics"
93
 
94
+ #: templates/exclude.php:99 inc/admin.php:1829
95
  msgid "Archives"
96
  msgstr "Archivos"
97
 
103
  msgid "delete the files"
104
  msgstr "borrar los archivos"
105
 
106
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
  msgid "Contains"
109
  msgstr "Contiene"
110
 
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
  msgid "Is Equal To"
114
  msgstr "Es igual a"
115
 
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
  msgid "Starts With"
119
  msgstr "Comienza con"
120
 
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
  msgid "Home Page"
124
  msgstr "Página de inicio"
125
 
126
+ #: templates/timeout.php:95 inc/admin.php:1555
127
  msgid "All"
128
  msgstr "Todo"
129
 
135
  msgid "Then"
136
  msgstr "Entonces"
137
 
138
+ #: templates/exclude.php:89 templates/timeout.php:91
139
  msgid "If REQUEST_URI"
140
  msgstr "Si REQUEST_URI"
141
 
163
  msgid "Warning"
164
  msgstr "Advertencia"
165
 
166
+ #: inc/admin.php:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
  msgid "Add New Rule"
169
  msgstr "Añadir una nueva regla"
170
 
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
  msgid "Delete Cache and Minified CSS/JS"
173
  msgstr "Borrar la caché y minimizar CSS/JS"
174
 
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
176
  msgid "Only available in Premium version"
177
  msgstr "Solo disponible en la versión premium"
178
 
180
  msgid "Choose One"
181
  msgstr "Elige uno"
182
 
183
+ #: inc/admin.php:1532
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:1531
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:1519 inc/admin.php:1533 inc/admin.php:1534
192
  msgid "Target folder"
193
  msgstr "Carpeta de destino"
194
 
195
+ #: inc/admin.php:1518
196
  msgid "You can delete all cache files"
197
  msgstr "Puedes borrar todos los archivos de la caché"
198
 
199
+ #: inc/admin.php:1059
200
  msgid "Exclude"
201
  msgstr "Excluir"
202
 
203
+ #: inc/admin.php:1057
204
  msgid "Image Optimization"
205
  msgstr "Optimización de imágenes"
206
 
207
+ #: inc/admin.php:1054
208
  msgid "Settings"
209
  msgstr "Ajustes"
210
 
211
+ #: inc/admin.php:2077
212
  msgid "Database Cleanup"
213
  msgstr "Limpieza de la base de datos"
214
 
215
+ #: inc/admin.php:1965
216
  msgid "CDN Settings"
217
  msgstr "Ajustes de la CDN"
218
 
219
+ #: inc/admin.php:1928
220
  msgid "Exclude JS"
221
  msgstr "Excluir JS"
222
 
223
+ #: inc/admin.php:1908
224
  msgid "Exclude CSS"
225
  msgstr "Excluir CSS"
226
 
227
+ #: inc/admin.php:1890
228
  msgid "Exclude Cookies"
229
  msgstr "Excluir cookies"
230
 
231
+ #: inc/admin.php:1871
232
  msgid "Exclude User-Agents"
233
  msgstr "Excluir agentes de usuario"
234
 
235
+ #: inc/admin.php:1854
236
  msgid "Exclude Pages"
237
  msgstr "Excluir páginas"
238
 
239
+ #: inc/admin.php:1665
240
  msgid "Optimize Image Tool"
241
  msgstr "Herramienta de optimización de imágenes"
242
 
243
+ #: inc/admin.php:1548
244
  msgid "Timeout Rules"
245
  msgstr "Reglas de límite"
246
 
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
  msgid "Delete Cache"
250
  msgstr "Borrar la caché"
251
 
252
+ #: inc/admin.php:1469
253
  msgid "Cache Statistics"
254
  msgstr "Estadísticas de la caché"
255
 
265
  msgid "Clear Cache of Pagination"
266
  msgstr "Vaciar la caché de paginación"
267
 
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
  msgid "Clear Cache of Post Tags"
270
  msgstr "Vaciar la caché de etiquetas de entradas"
271
 
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
  msgid "Clear Cache of Post Categories"
274
  msgstr "Vaciar la caché de categorías de entradas"
275
 
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
  msgid "Clear Cache of Homepage"
278
  msgstr "Vaciar la caché de la página de inicio"
279
 
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
  #: inc/admin-toolbar.php:74
282
  msgid "Clear All Cache"
283
  msgstr "Vaciar toda la caché"
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/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
291
  msgid "OK"
292
  msgstr "Aceptar"
293
 
307
  msgid "Custom Post Types"
308
  msgstr "Tipos de contenido personalizado"
309
 
310
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
  msgid "Attachments"
312
  msgstr "Adjuntos"
313
 
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
  msgid "Tags"
316
  msgstr "Etiquetas"
317
 
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
  msgid "Pages"
320
  msgstr "Páginas"
321
 
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
  msgid "Categories"
324
  msgstr "Categorías"
325
 
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
327
  msgid "Posts"
328
  msgstr "Entradas"
329
 
331
  msgid "Homepage"
332
  msgstr "Página de inicio"
333
 
334
+ #: inc/admin.php:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
  msgid "Reduce HTTP requests through combined js files"
336
  msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
337
 
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
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:1365 inc/admin.php:1384 inc/admin.php:1391
343
  msgid "Lazy Load"
344
  msgstr "Carga diferida"
345
 
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
  msgid "Load Google Fonts asynchronously"
348
  msgstr "Cargar las fuentes de Google de forma asíncrona"
349
 
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
  msgid "Google Fonts"
352
  msgstr "Fuentes de Google"
353
 
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
  msgid "Render Blocking Js"
356
  msgstr "Bloqueo de procesado de JS"
357
 
358
+ #: inc/admin.php:1307
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:1306
363
  msgid "Disable Emojis"
364
  msgstr "Desactivar los emojis"
365
 
366
+ #: inc/admin.php:1301
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:1300
371
  msgid "Browser Caching"
372
  msgstr "Caché del navegador"
373
 
374
+ #: inc/admin.php:1289
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:1288
379
  msgid "Gzip"
380
  msgstr "Gzip"
381
 
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
  msgid "Combine Js Plus"
384
  msgstr "Combine Js Plus"
385
 
386
+ #: inc/admin.php:1262
387
  msgid "Combine Js"
388
  msgstr "Combinar JS"
389
 
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
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:1245 inc/admin.php:1250 inc/admin.php:1256
395
  msgid "Minify Js"
396
  msgstr "Minimizar JS"
397
 
398
+ #: inc/admin.php:1238
399
  msgid "Reduce HTTP requests through combined css files"
400
  msgstr "Reducir las solicitudes HTTP mediante archivos JS combinados"
401
 
402
+ #: inc/admin.php:1237
403
  msgid "Combine Css"
404
  msgstr "Combinar CSS"
405
 
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
  msgid "More powerful minify css"
408
  msgstr "Más potente minimización CSS"
409
 
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
  msgid "Minify Css Plus"
412
  msgstr "Minify Css Plus"
413
 
414
+ #: inc/admin.php:1217
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:1216
419
  msgid "Minify Css"
420
  msgstr "Minimizar CSS"
421
 
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
  msgid "More powerful minify html"
424
  msgstr "Más potente minimización HTML"
425
 
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
  msgid "Minify HTML Plus"
428
  msgstr "Minify HTML Plus"
429
 
430
+ #: inc/admin.php:1197
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:1196
435
  msgid "Minify HTML"
436
  msgstr "Minimizar HTML"
437
 
438
+ #: inc/admin.php:1188
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:1187
443
  msgid "Update Post"
444
  msgstr "Actualizar la entrada"
445
 
446
+ #: inc/admin.php:1181
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:1180
451
  msgid "New Post"
452
  msgstr "Nueva entrada"
453
 
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
  msgid "Create cache for mobile theme"
456
  msgstr "Crear la caché para el tema para móviles"
457
 
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
  msgid "Mobile Theme"
460
  msgstr "Tema para móviles"
461
 
462
+ #: inc/admin.php:1142
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:1141
467
  msgid "Mobile"
468
  msgstr "Móvil"
469
 
470
+ #: inc/admin.php:1137
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:1136
475
  msgid "Logged-in Users"
476
  msgstr "Usuarios conectados"
477
 
478
+ #: inc/admin.php:1127
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:1126
483
  msgid "Preload"
484
  msgstr "Precargar"
485
 
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
  msgid "Reduce the number of SQL queries"
488
  msgstr "Reducir el número de consultas SQL"
489
 
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
  msgid "Widget Cache"
492
  msgstr "Widget de caché"
493
 
494
+ #: inc/admin.php:1088
495
  msgid "Enable"
496
  msgstr "Activar"
497
 
498
+ #: inc/admin.php:1087
499
  msgid "Cache System"
500
  msgstr "Sistema de caché"
501
 
502
+ #: wpFastestCache.php:1611
503
  msgid "Once Every 15 Days"
504
  msgstr "Una vez cada 15 días"
505
 
506
+ #: wpFastestCache.php:1599
507
  msgid "Once Every 7 Days"
508
  msgstr "Una vez cada 7 días"
509
 
510
+ #: wpFastestCache.php:1593
511
  msgid "Once Every 3 Days"
512
  msgstr "Una vez cada 3 días"
513
 
514
+ #: wpFastestCache.php:1581
515
  msgid "Once Every 10 Hours"
516
  msgstr "Una vez cada 10 horas"
517
 
518
+ #: wpFastestCache.php:1575
519
  msgid "Once Every 9 Hours"
520
  msgstr "Una vez cada 9 horas"
521
 
522
+ #: wpFastestCache.php:1569
523
  msgid "Once Every 8 Hours"
524
  msgstr "Una vez cada 8 horas"
525
 
526
+ #: wpFastestCache.php:1563
527
  msgid "Once Every 7 Hours"
528
  msgstr "Una vez cada 7 horas"
529
 
530
+ #: wpFastestCache.php:1551
531
  msgid "Once Every 5 Hours"
532
  msgstr "Una vez cada 5 horas"
533
 
534
+ #: wpFastestCache.php:1545
535
  msgid "Once Every 4 Hours"
536
  msgstr "Una vez cada 4 horas"
537
 
538
+ #: wpFastestCache.php:1539
539
  msgid "Once Every 3 Hours"
540
  msgstr "Una vez cada 3 horas"
541
 
542
+ #: wpFastestCache.php:1533
543
  msgid "Once Every 2 Hours"
544
  msgstr "Una vez cada 2 horas"
545
 
546
+ #: wpFastestCache.php:1605
547
  msgid "Once Every 10 Days"
548
  msgstr "Una vez cada 10 días"
549
 
567
  msgid "WP Fastest Cache"
568
  msgstr "WP Fastest Cache"
569
 
570
+ #: wpFastestCache.php:1623
571
  msgid "Once a Year"
572
  msgstr "Una vez al año"
573
 
574
+ #: wpFastestCache.php:1617
575
  msgid "Once a Month"
576
  msgstr "Una vez al mes"
577
 
578
+ #: wpFastestCache.php:1587
579
  msgid "Once a Day"
580
  msgstr "Una vez al día"
581
 
582
+ #: wpFastestCache.php:1557
583
  msgid "Once Every 6 Hours"
584
  msgstr "Una vez cada 6 horas"
585
 
586
+ #: wpFastestCache.php:1527
587
  msgid "Once an Hour"
588
  msgstr "Una vez a la hora"
589
 
590
+ #: wpFastestCache.php:1521
591
  msgid "Twice an Hour"
592
  msgstr "Dos veces a la hora"
593
 
594
+ #: wpFastestCache.php:1515
595
  msgid "Once Every 15 Minutes"
596
  msgstr "Una vez cada 15 minutos"
597
 
598
+ #: wpFastestCache.php:1509
599
  msgid "Once Every 5 Minutes"
600
  msgstr "Una vez cada 5 minutos"
601
 
602
+ #: wpFastestCache.php:1503
603
  msgid "Once Every 1 Minute"
604
  msgstr "Una vez cada minuto"
languages/wp-fastest-cache-fa_IR.po CHANGED
@@ -15,7 +15,7 @@ msgstr ""
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
 
@@ -23,75 +23,75 @@ msgstr "برطرف کردن مشکل Eliminate render-blocking JavaScript resour
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
 
@@ -103,27 +103,27 @@ msgstr "زمان سرور"
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
 
@@ -135,7 +135,7 @@ msgstr "عدم فعال سازی در برگه های"
135
  msgid "Then"
136
  msgstr "سپس"
137
 
138
- #: templates/timeout.php:91 templates/exclude.php:89
139
  msgid "If REQUEST_URI"
140
  msgstr "اگر لینک درخواستی برابر"
141
 
@@ -163,16 +163,16 @@ msgstr "موفقیت آمیز"
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
 
@@ -180,76 +180,76 @@ msgstr "قابل دسترسی تنها در نسخه پریمیوم است."
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
 
@@ -265,20 +265,20 @@ msgstr "بعد از بروزرسانی برگه ها و پست ها چه عمل
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
 
@@ -286,8 +286,8 @@ msgstr "حذف تمام کش"
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
 
@@ -307,23 +307,23 @@ msgstr "تکسونومی های سفارشی"
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
 
@@ -331,219 +331,219 @@ msgstr "نوشته‌ها"
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
 
@@ -567,38 +567,38 @@ msgstr "http://wordpress.org/plugins/wp-fastest-cache/"
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 "یکبار در هر دقیقه"
15
  msgid "Clear Cache"
16
  msgstr "پاک‌سازی کش"
17
 
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
19
  msgid "Eliminate render-blocking JavaScript resources"
20
  msgstr "برطرف کردن مشکل Eliminate render-blocking JavaScript resources"
21
 
23
  msgid "Options have been saved"
24
  msgstr "تنظیمات ذخیره شدند"
25
 
26
+ #: inc/admin.php:1786
27
  msgid "Download"
28
  msgstr "دانلود"
29
 
30
+ #: inc/admin.php:1781
31
  msgid "Update"
32
  msgstr "به‌روزرسانی"
33
 
34
+ #: inc/admin.php:1775
35
  msgid "Please don't delete the free version. Premium version works with the free version."
36
  msgstr "لطفا ورژن رایگان افزونه را حذف نکنید.ورژن پرمیوم افزونه در کنار ورژن رایگان فعالسازی می شود."
37
 
38
+ #: inc/admin.php:1774
39
  msgid "Get It Now!"
40
  msgstr "همین حالا دریافت کنید!"
41
 
42
+ #: inc/admin.php:1768
43
  msgid "You can download and update the premium when you want if you paid."
44
  msgstr "دانلود و دریافت بروزرسانی افزونه."
45
 
46
+ #: inc/admin.php:1765
47
  msgid "Download & Update"
48
  msgstr "دانلود و بروزرسانی"
49
 
50
+ #: inc/admin.php:1752
51
  msgid "Buy"
52
  msgstr "خرید"
53
 
54
+ #: inc/admin.php:1737
55
  msgid "Purchased"
56
  msgstr "خریداری شده"
57
 
58
+ #: inc/admin.php:1732
59
  msgid "The download button will be available after paid. You can buy the premium version now."
60
  msgstr "دکمه دانلود بعد از خرید فعال می شود."
61
 
62
+ #: inc/admin.php:1731
63
  msgid "Just"
64
  msgstr "فقط"
65
 
66
+ #: inc/admin.php:1715
67
  msgid "You need to pay before downloading the premium version."
68
  msgstr "قبل از دانلود ورژن پرمیوم افزونه باید آنرا خریداری کنید."
69
 
70
+ #: inc/admin.php:1712
71
  msgid "Checkout"
72
  msgstr "پرداخت"
73
 
74
+ #: inc/admin.php:1698
75
  msgid "New Features"
76
  msgstr "ویژگی های جدید"
77
 
78
+ #: inc/admin.php:1692
79
  msgid "In the premium version there are some new features which speed up the sites more."
80
  msgstr "در حالت پرمیوم ویژگی های فوق العاده و جدیدی برای بهینه سازی بهتر سایت شما قرار گرفته است."
81
 
82
+ #: inc/admin.php:1689
83
  msgid "Discover Features"
84
  msgstr "ویژگی های جدید"
85
 
86
+ #: templates/exclude.php:106 inc/admin.php:1837
87
  msgid "has Woocommerce Items in Cart"
88
  msgstr "دارای محصول در سبد خرید"
89
 
90
+ #: templates/exclude.php:105 inc/admin.php:1836
91
  msgid "has Google Analytics Parameters"
92
  msgstr "دارای پارامتر های گوگل آنالیتیک"
93
 
94
+ #: templates/exclude.php:99 inc/admin.php:1829
95
  msgid "Archives"
96
  msgstr "بایگانی ها"
97
 
103
  msgid "delete the files"
104
  msgstr "حذف فایلها"
105
 
106
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
  msgid "Contains"
109
  msgstr "شامل"
110
 
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
  msgid "Is Equal To"
114
  msgstr "برابر با"
115
 
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
  msgid "Starts With"
119
  msgstr "شروع می شود با"
120
 
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
  msgid "Home Page"
124
  msgstr "صفحه اصلی"
125
 
126
+ #: templates/timeout.php:95 inc/admin.php:1555
127
  msgid "All"
128
  msgstr "همه"
129
 
135
  msgid "Then"
136
  msgstr "سپس"
137
 
138
+ #: templates/exclude.php:89 templates/timeout.php:91
139
  msgid "If REQUEST_URI"
140
  msgstr "اگر لینک درخواستی برابر"
141
 
163
  msgid "Warning"
164
  msgstr "هشدار"
165
 
166
+ #: inc/admin.php:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
  msgid "Add New Rule"
169
  msgstr "افزودن قانون جدید"
170
 
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
  msgid "Delete Cache and Minified CSS/JS"
173
  msgstr "حذف کش و فایل های سی اس اس و جاوا اسکریپت فشرده شده"
174
 
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
176
  msgid "Only available in Premium version"
177
  msgstr "قابل دسترسی تنها در نسخه پریمیوم است."
178
 
180
  msgid "Choose One"
181
  msgstr "یکی را انتخاب کن"
182
 
183
+ #: inc/admin.php:1532
184
  msgid "All cache files will be removed as well"
185
  msgstr "تمامی فایل های کش حذف خواهد شد"
186
 
187
+ #: inc/admin.php:1531
188
  msgid "If you modify any css file, you have to delete minified css files"
189
  msgstr "در صورت تغییر در فایل های سی اس اس باید کش و فایلهای فشرده را حذف کنید"
190
 
191
+ #: inc/admin.php:1519 inc/admin.php:1533 inc/admin.php:1534
192
  msgid "Target folder"
193
  msgstr "فولدر هدف"
194
 
195
+ #: inc/admin.php:1518
196
  msgid "You can delete all cache files"
197
  msgstr "حذف تمامی فایلهای کش"
198
 
199
+ #: inc/admin.php:1059
200
  msgid "Exclude"
201
  msgstr "عدم تاثیر بر"
202
 
203
+ #: inc/admin.php:1057
204
  msgid "Image Optimization"
205
  msgstr "بهینه‌سازی تصاویر"
206
 
207
+ #: inc/admin.php:1054
208
  msgid "Settings"
209
  msgstr "تنظیمات"
210
 
211
+ #: inc/admin.php:2077
212
  msgid "Database Cleanup"
213
  msgstr "پاکسازی دیتابیس"
214
 
215
+ #: inc/admin.php:1965
216
  msgid "CDN Settings"
217
  msgstr "تنظیمات CDN"
218
 
219
+ #: inc/admin.php:1928
220
  msgid "Exclude JS"
221
  msgstr "عدم اعمال بر فایل های جاوااسکریپت"
222
 
223
+ #: inc/admin.php:1908
224
  msgid "Exclude CSS"
225
  msgstr "عدم اعمال بر فایل های سی اس اس"
226
 
227
+ #: inc/admin.php:1890
228
  msgid "Exclude Cookies"
229
  msgstr "عدم اعمال بر کوکی های"
230
 
231
+ #: inc/admin.php:1871
232
  msgid "Exclude User-Agents"
233
  msgstr "عدم اعمال بر User-Agents"
234
 
235
+ #: inc/admin.php:1854
236
  msgid "Exclude Pages"
237
  msgstr "عدم اعمال در برگه های"
238
 
239
+ #: inc/admin.php:1665
240
  msgid "Optimize Image Tool"
241
  msgstr "بهینه سازی تصاویر"
242
 
243
+ #: inc/admin.php:1548
244
  msgid "Timeout Rules"
245
  msgstr "تایم بندی فایل های کش"
246
 
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
  msgid "Delete Cache"
250
  msgstr "حذف کش"
251
 
252
+ #: inc/admin.php:1469
253
  msgid "Cache Statistics"
254
  msgstr "آمار کش"
255
 
265
  msgid "Clear Cache of Pagination"
266
  msgstr "حذف کش Pagination"
267
 
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
  msgid "Clear Cache of Post Tags"
270
  msgstr "حذف کش تگ های پست ها"
271
 
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
  msgid "Clear Cache of Post Categories"
274
  msgstr "حذف کش دسته بندی پست ها"
275
 
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
  msgid "Clear Cache of Homepage"
278
  msgstr "حذف کش صفحه اصلی"
279
 
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
+ #: inc/admin-toolbar.php:74
282
  msgid "Clear All Cache"
283
  msgstr "حذف تمام کش"
284
 
286
  msgid "What do you want to happen after publishing the new post?"
287
  msgstr "بعد از انتشار پست جدید چه عملی میخواهید انجام شود؟"
288
 
289
+ #: templates/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
291
  msgid "OK"
292
  msgstr "تایید"
293
 
307
  msgid "Custom Post Types"
308
  msgstr "پست تایپ های سفارشی"
309
 
310
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
  msgid "Attachments"
312
  msgstr "پیوست‌ها"
313
 
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
  msgid "Tags"
316
  msgstr "برچسب‌ها"
317
 
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
  msgid "Pages"
320
  msgstr "برگه‌ها"
321
 
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
  msgid "Categories"
324
  msgstr "دسته‌بندی‌ها"
325
 
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
327
  msgid "Posts"
328
  msgstr "نوشته‌ها"
329
 
331
  msgid "Homepage"
332
  msgstr "صفحه نخست"
333
 
334
+ #: inc/admin.php:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
  msgid "Reduce HTTP requests through combined js files"
336
  msgstr "با فعال کردن این قسمت تعداد درخواست های HTTP کاهش می یابد"
337
 
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
339
  msgid "Load images and iframes when they enter the browsers viewport"
340
  msgstr "لود تصاویر و آی فریم ها با قرار گرفتن در حالت دید کاربر"
341
 
342
+ #: inc/admin.php:1365 inc/admin.php:1384 inc/admin.php:1391
343
  msgid "Lazy Load"
344
  msgstr "حالت Lazy Load"
345
 
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
  msgid "Load Google Fonts asynchronously"
348
  msgstr "لود فونت های گوگل بصورت asynchronously"
349
 
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
  msgid "Google Fonts"
352
  msgstr "فونت‌های گوگل"
353
 
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
  msgid "Render Blocking Js"
356
  msgstr "فعال کردن Render Blocking Js"
357
 
358
+ #: inc/admin.php:1307
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:1306
363
  msgid "Disable Emojis"
364
  msgstr "غیرفعال کردن اموجی ها"
365
 
366
+ #: inc/admin.php:1301
367
  msgid "Reduce page load times for repeat visitors"
368
  msgstr "کاهش زمان لود برای کاربران تکراری"
369
 
370
+ #: inc/admin.php:1300
371
  msgid "Browser Caching"
372
  msgstr "کش مرورگر"
373
 
374
+ #: inc/admin.php:1289
375
  msgid "Reduce the size of files sent from your server"
376
  msgstr "کاهش حجم فایل های ارسالی از سمت سرور"
377
 
378
+ #: inc/admin.php:1288
379
  msgid "Gzip"
380
  msgstr "GZip"
381
 
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
  msgid "Combine Js Plus"
384
  msgstr "ترکیب کردن قوی تر فایل های JS"
385
 
386
+ #: inc/admin.php:1262
387
  msgid "Combine Js"
388
  msgstr "ترکیب کردن فایل های JS"
389
 
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
391
  msgid "You can decrease the size of js files"
392
  msgstr "فشرده سازی و کاهش حجم فایل های جاوا اسکریپت"
393
 
394
+ #: inc/admin.php:1245 inc/admin.php:1250 inc/admin.php:1256
395
  msgid "Minify Js"
396
  msgstr "فشرده سازی JS"
397
 
398
+ #: inc/admin.php:1238
399
  msgid "Reduce HTTP requests through combined css files"
400
  msgstr "با فعال کردن این قسمت تعداد درخواست های HTTP کاهش می یابد"
401
 
402
+ #: inc/admin.php:1237
403
  msgid "Combine Css"
404
  msgstr "ترکیب فایل های CSS"
405
 
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
  msgid "More powerful minify css"
408
  msgstr "فشرده سازی بیشتر و قوی تر فایل های CSS"
409
 
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
  msgid "Minify Css Plus"
412
  msgstr "فشرده سازی قویتر CSS"
413
 
414
+ #: inc/admin.php:1217
415
  msgid "You can decrease the size of css files"
416
  msgstr "فشرده سازی و کاهش حجم فایل های CSS"
417
 
418
+ #: inc/admin.php:1216
419
  msgid "Minify Css"
420
  msgstr "فشرده سازی CSS"
421
 
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
  msgid "More powerful minify html"
424
  msgstr "باعث کاهش بیشتر حجم و فشرده سازی بیشتر می شود"
425
 
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
  msgid "Minify HTML Plus"
428
  msgstr "فشرده سازی قویتر HTML"
429
 
430
+ #: inc/admin.php:1197
431
  msgid "You can decrease the size of page"
432
  msgstr "باعث کاهش حجم برگه ها میشود"
433
 
434
+ #: inc/admin.php:1196
435
  msgid "Minify HTML"
436
  msgstr "فشرده سازی HTML"
437
 
438
+ #: inc/admin.php:1188
439
  msgid "Clear cache files when a post or page is updated"
440
  msgstr "حذف کش در صورت بروز رسانی برگه و پست"
441
 
442
+ #: templates/updatepost.php:18 inc/admin.php:1187
443
  msgid "Update Post"
444
  msgstr "بروزرسانی پست"
445
 
446
+ #: inc/admin.php:1181
447
  msgid "Clear cache files when a post or page is published"
448
  msgstr "حذف کش در صورت انتشار پست و برگه"
449
 
450
+ #: templates/newpost.php:18 inc/admin.php:1180
451
  msgid "New Post"
452
  msgstr "پست جدید"
453
 
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
  msgid "Create cache for mobile theme"
456
  msgstr "ایجاد کش برای موبایل"
457
 
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
  msgid "Mobile Theme"
460
  msgstr "تم موبایل"
461
 
462
+ #: inc/admin.php:1142
463
  msgid "Don't show the cached version for desktop to mobile devices"
464
  msgstr "عدم نمایش کش دسکتاپ برای موبایل"
465
 
466
+ #: inc/admin.php:1141
467
  msgid "Mobile"
468
  msgstr "موبایل"
469
 
470
+ #: inc/admin.php:1137
471
  msgid "Don't show the cached version for logged-in users"
472
  msgstr "عدم نمایش حالت کش شده برای کاربران وارد شده"
473
 
474
+ #: inc/admin.php:1136
475
  msgid "Logged-in Users"
476
  msgstr "کاربران وارد شده"
477
 
478
+ #: inc/admin.php:1127
479
  msgid "Create the cache of all the site automatically"
480
  msgstr "ایجاد اتوماتیک کش تمامی قسمت های سایت"
481
 
482
+ #: templates/preload.php:20 inc/admin.php:1126
483
  msgid "Preload"
484
  msgstr "پیش‌بارگذاری"
485
 
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
  msgid "Reduce the number of SQL queries"
488
  msgstr "کاهش تعداد کوئری های دیتابیس"
489
 
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
  msgid "Widget Cache"
492
  msgstr "کش ابزارک ها"
493
 
494
+ #: inc/admin.php:1088
495
  msgid "Enable"
496
  msgstr "فعال کردن"
497
 
498
+ #: inc/admin.php:1087
499
  msgid "Cache System"
500
  msgstr "فعال کردن کش"
501
 
502
+ #: wpFastestCache.php:1611
503
  msgid "Once Every 15 Days"
504
  msgstr "یکبار هر 15 روز"
505
 
506
+ #: wpFastestCache.php:1599
507
  msgid "Once Every 7 Days"
508
  msgstr "یکبار هر 7 روز"
509
 
510
+ #: wpFastestCache.php:1593
511
  msgid "Once Every 3 Days"
512
  msgstr "یکبار هر 3 روز"
513
 
514
+ #: wpFastestCache.php:1581
515
  msgid "Once Every 10 Hours"
516
  msgstr "یکبار هر 10 ساعت"
517
 
518
+ #: wpFastestCache.php:1575
519
  msgid "Once Every 9 Hours"
520
  msgstr "یکبار هر 9 ساعت"
521
 
522
+ #: wpFastestCache.php:1569
523
  msgid "Once Every 8 Hours"
524
  msgstr "یکبار هر 8 ساعت"
525
 
526
+ #: wpFastestCache.php:1563
527
  msgid "Once Every 7 Hours"
528
  msgstr "یکبار هر 7 ساعت"
529
 
530
+ #: wpFastestCache.php:1551
531
  msgid "Once Every 5 Hours"
532
  msgstr "یکبار هر 5 ساعت"
533
 
534
+ #: wpFastestCache.php:1545
535
  msgid "Once Every 4 Hours"
536
  msgstr "یکبار هر 4 ساعت"
537
 
538
+ #: wpFastestCache.php:1539
539
  msgid "Once Every 3 Hours"
540
  msgstr "یکبار هر 3 ساعت"
541
 
542
+ #: wpFastestCache.php:1533
543
  msgid "Once Every 2 Hours"
544
  msgstr "یکبار هر 2 ساعت"
545
 
546
+ #: wpFastestCache.php:1605
547
  msgid "Once Every 10 Days"
548
  msgstr "یکبار هر 10 روز"
549
 
567
  msgid "WP Fastest Cache"
568
  msgstr "سریعترین کش وردپرس"
569
 
570
+ #: wpFastestCache.php:1623
571
  msgid "Once a Year"
572
  msgstr "یکبار در سال"
573
 
574
+ #: wpFastestCache.php:1617
575
  msgid "Once a Month"
576
  msgstr "یکبار در ماه"
577
 
578
+ #: wpFastestCache.php:1587
579
  msgid "Once a Day"
580
  msgstr "یکبار در روز"
581
 
582
+ #: wpFastestCache.php:1557
583
  msgid "Once Every 6 Hours"
584
  msgstr "هر 6 ساعت یکبار"
585
 
586
+ #: wpFastestCache.php:1527
587
  msgid "Once an Hour"
588
  msgstr "هرساعت یکبار"
589
 
590
+ #: wpFastestCache.php:1521
591
  msgid "Twice an Hour"
592
  msgstr "هرساعت دوبار"
593
 
594
+ #: wpFastestCache.php:1515
595
  msgid "Once Every 15 Minutes"
596
  msgstr "یکبار در 15 دقیقه"
597
 
598
+ #: wpFastestCache.php:1509
599
  msgid "Once Every 5 Minutes"
600
  msgstr "یکبار در هر 5 دقیقه"
601
 
602
+ #: wpFastestCache.php:1503
603
  msgid "Once Every 1 Minute"
604
  msgstr "یکبار در هر دقیقه"
languages/wp-fastest-cache-fr_FR.mo ADDED
Binary file
languages/wp-fastest-cache-fr_FR.po ADDED
@@ -0,0 +1,604 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in French (France)
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: 2020-01-02 11:29:02+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: fr\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "Vider le cache"
17
+
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
19
+ msgid "Eliminate render-blocking JavaScript resources"
20
+ msgstr "Élimine les ressources JavaScript bloquant le rendu (Premium)"
21
+
22
+ #: inc/admin.php:429 inc/admin.php:432
23
+ msgid "Options have been saved"
24
+ msgstr "Les options ont été enregistrées"
25
+
26
+ #: inc/admin.php:1786
27
+ msgid "Download"
28
+ msgstr "Télécharger"
29
+
30
+ #: inc/admin.php:1781
31
+ msgid "Update"
32
+ msgstr "Mise à jour"
33
+
34
+ #: inc/admin.php:1775
35
+ msgid "Please don't delete the free version. Premium version works with the free version."
36
+ msgstr "Veuillez conserver la version gratuite, elle est nécessaire pour que la version Premium fonctionne."
37
+
38
+ #: inc/admin.php:1774
39
+ msgid "Get It Now!"
40
+ msgstr "Allez-y !"
41
+
42
+ #: inc/admin.php:1768
43
+ msgid "You can download and update the premium when you want if you paid."
44
+ msgstr "Vous pouvez télécharger et mettre à jour la version premium quand vous le souhaitez si vous avez payé."
45
+
46
+ #: inc/admin.php:1765
47
+ msgid "Download & Update"
48
+ msgstr "Télécharger & activer"
49
+
50
+ #: inc/admin.php:1752
51
+ msgid "Buy"
52
+ msgstr "Acheter"
53
+
54
+ #: inc/admin.php:1737
55
+ msgid "Purchased"
56
+ msgstr "Acheté"
57
+
58
+ #: inc/admin.php:1732
59
+ msgid "The download button will be available after paid. You can buy the premium version now."
60
+ msgstr "Le bouton de téléchargement sera disponible après paiement. Vous pouvez acheter la version premium maintenant."
61
+
62
+ #: inc/admin.php:1731
63
+ msgid "Just"
64
+ msgstr "Seulement"
65
+
66
+ #: inc/admin.php:1715
67
+ msgid "You need to pay before downloading the premium version."
68
+ msgstr "Vous devez payer avant de télécharger la version premium."
69
+
70
+ #: inc/admin.php:1712
71
+ msgid "Checkout"
72
+ msgstr "Paiement"
73
+
74
+ #: inc/admin.php:1698
75
+ msgid "New Features"
76
+ msgstr "Nouvelles fonctionnalités"
77
+
78
+ #: inc/admin.php:1692
79
+ msgid "In the premium version there are some new features which speed up the sites more."
80
+ msgstr "Dans la version premium, il y a de nouvelles fonctionnalités qui accélèrent encore plus les sites."
81
+
82
+ #: inc/admin.php:1689
83
+ msgid "Discover Features"
84
+ msgstr "Fonctionnalités"
85
+
86
+ #: templates/exclude.php:106 inc/admin.php:1837
87
+ msgid "has Woocommerce Items in Cart"
88
+ msgstr "a des articles WooCommerce dans le panier"
89
+
90
+ #: templates/exclude.php:105 inc/admin.php:1836
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "a des paramètres Google Analytics"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1829
95
+ msgid "Archives"
96
+ msgstr "Archives"
97
+
98
+ #: templates/timeout.php:189
99
+ msgid "Server Time"
100
+ msgstr "Heure du serveur"
101
+
102
+ #: templates/timeout.php:169
103
+ msgid "delete the files"
104
+ msgstr "supprimer les fichiers"
105
+
106
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
+ msgid "Contains"
109
+ msgstr "Contient"
110
+
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
+ msgid "Is Equal To"
114
+ msgstr "Est égal à"
115
+
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
+ msgid "Starts With"
119
+ msgstr "Commence par"
120
+
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
+ msgid "Home Page"
124
+ msgstr "Page d’accueil"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1555
127
+ msgid "All"
128
+ msgstr "Tous"
129
+
130
+ #: templates/exclude.php:66
131
+ msgid "Exclude Page Wizard"
132
+ msgstr "Assistant d’exclusion de page"
133
+
134
+ #: templates/timeout.php:124
135
+ msgid "Then"
136
+ msgstr "Alors"
137
+
138
+ #: templates/exclude.php:89 templates/timeout.php:91
139
+ msgid "If REQUEST_URI"
140
+ msgstr "si REQUEST_URI"
141
+
142
+ #: templates/timeout.php:68
143
+ msgid "Cache Timeout Wizard"
144
+ msgstr "Assistant d’expiration du cache"
145
+
146
+ #: templates/lazy_load.php:9
147
+ msgid "Lazy Load Settings"
148
+ msgstr "Réglages de chargement différé"
149
+
150
+ #: templates/nginx_gzip.php:9
151
+ msgid "Enable Gzip"
152
+ msgstr "Activer Gzip"
153
+
154
+ #: templates/update_now.php:9
155
+ msgid "Please Update"
156
+ msgstr "Veuillez mettre à jour"
157
+
158
+ #: templates/update_success.php:9
159
+ msgid "Success"
160
+ msgstr "Succès"
161
+
162
+ #: templates/disable_wp_cron.php:20
163
+ msgid "Warning"
164
+ msgstr "Avertissement"
165
+
166
+ #: inc/admin.php:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
+ msgid "Add New Rule"
169
+ msgstr "Ajouter une règle"
170
+
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "Vider le cache et les CSS/JS minifiés"
174
+
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
176
+ msgid "Only available in Premium version"
177
+ msgstr "Disponible uniquement avec la version Premium"
178
+
179
+ #: templates/timeout.php:141
180
+ msgid "Choose One"
181
+ msgstr "Choisissez-en un"
182
+
183
+ #: inc/admin.php:1532
184
+ msgid "All cache files will be removed as well"
185
+ msgstr "Tous les fichiers de cache seront également supprimés"
186
+
187
+ #: inc/admin.php:1531
188
+ msgid "If you modify any css file, you have to delete minified css files"
189
+ msgstr "Si vous modifiez un fichier CSS, vous devez supprimer les fichiers CSS minifiés"
190
+
191
+ #: inc/admin.php:1519 inc/admin.php:1533 inc/admin.php:1534
192
+ msgid "Target folder"
193
+ msgstr "Dossier cible"
194
+
195
+ #: inc/admin.php:1518
196
+ msgid "You can delete all cache files"
197
+ msgstr "Vide tous les fichiers cache"
198
+
199
+ #: inc/admin.php:1059
200
+ msgid "Exclude"
201
+ msgstr "Exclure"
202
+
203
+ #: inc/admin.php:1057
204
+ msgid "Image Optimization"
205
+ msgstr "Optimisation d’images"
206
+
207
+ #: inc/admin.php:1054
208
+ msgid "Settings"
209
+ msgstr "Réglages"
210
+
211
+ #: inc/admin.php:2077
212
+ msgid "Database Cleanup"
213
+ msgstr "Nettoyage de la base de données"
214
+
215
+ #: inc/admin.php:1965
216
+ msgid "CDN Settings"
217
+ msgstr "Réglages CDN"
218
+
219
+ #: inc/admin.php:1928
220
+ msgid "Exclude JS"
221
+ msgstr "Exclure JS"
222
+
223
+ #: inc/admin.php:1908
224
+ msgid "Exclude CSS"
225
+ msgstr "Exclure le CSS"
226
+
227
+ #: inc/admin.php:1890
228
+ msgid "Exclude Cookies"
229
+ msgstr "Exclure les cookies"
230
+
231
+ #: inc/admin.php:1871
232
+ msgid "Exclude User-Agents"
233
+ msgstr "Exclure les agents utilisateurs"
234
+
235
+ #: inc/admin.php:1854
236
+ msgid "Exclude Pages"
237
+ msgstr "Exclure pages"
238
+
239
+ #: inc/admin.php:1665
240
+ msgid "Optimize Image Tool"
241
+ msgstr "Outil optimisation d’image"
242
+
243
+ #: inc/admin.php:1548
244
+ msgid "Timeout Rules"
245
+ msgstr "Règles de temporisation"
246
+
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
+ msgid "Delete Cache"
250
+ msgstr "Vider le cache"
251
+
252
+ #: inc/admin.php:1469
253
+ msgid "Cache Statistics"
254
+ msgstr "Statistiques de cache"
255
+
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "Vider le cache d’article/page"
259
+
260
+ #: templates/updatepost.php:29
261
+ msgid "What do you want to happen after update a post or a page?"
262
+ msgstr "Que voulez-vous qu’il se passe après la mise à jour d’une publication ou d’une page ?"
263
+
264
+ #: templates/newpost.php:58
265
+ msgid "Clear Cache of Pagination"
266
+ msgstr "Vider le cache de pagination"
267
+
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "Vider le cache des étiquettes de publication"
271
+
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "Vider le cache des catégories de publication"
275
+
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "Vider le cache de la page d’accueil"
279
+
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
+ #: inc/admin-toolbar.php:74
282
+ msgid "Clear All Cache"
283
+ msgstr "Nettoyer tout le cache"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "Que voulez-vous qu’il se passe après la mise en ligne d’une nouvelle publication ?"
288
+
289
+ #: templates/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
291
+ msgid "OK"
292
+ msgstr "OK"
293
+
294
+ #: templates/preload.php:92
295
+ msgid "Restart After Completed"
296
+ msgstr "Redémarrer une fois terminé"
297
+
298
+ #: templates/preload.php:87
299
+ msgid "pages per minute"
300
+ msgstr "pages par minute"
301
+
302
+ #: templates/preload.php:63
303
+ msgid "Custom Taxonomies"
304
+ msgstr "Taxonomies personnalisées"
305
+
306
+ #: templates/preload.php:58
307
+ msgid "Custom Post Types"
308
+ msgstr "Types de publications personnalisés"
309
+
310
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
+ msgid "Attachments"
312
+ msgstr "fichiers joints"
313
+
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
+ msgid "Tags"
316
+ msgstr "Étiquettes"
317
+
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
+ msgid "Pages"
320
+ msgstr "Pages"
321
+
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
+ msgid "Categories"
324
+ msgstr "Catégories"
325
+
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
327
+ msgid "Posts"
328
+ msgstr "Publications"
329
+
330
+ #: templates/preload.php:33
331
+ msgid "Homepage"
332
+ msgstr "Page d’accueil "
333
+
334
+ #: inc/admin.php:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "Réduit les requêtes HTTP grâce aux fichiers JS combinés"
337
+
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
339
+ msgid "Load images and iframes when they enter the browsers viewport"
340
+ msgstr "Charge les images et les iframes quand ils entrent dans la fenêtre du navigateur (Premium)"
341
+
342
+ #: inc/admin.php:1365 inc/admin.php:1384 inc/admin.php:1391
343
+ msgid "Lazy Load"
344
+ msgstr "Chargement différé "
345
+
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "Charge les polices Google de façon asynchrone (Premium)"
349
+
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
+ msgid "Google Fonts"
352
+ msgstr "Polices Google "
353
+
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
+ msgid "Render Blocking Js"
356
+ msgstr "Blocage de rendu JS "
357
+
358
+ #: inc/admin.php:1307
359
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "Retire les émojis CSS en ligne et wp-emoji-release.min.js"
361
+
362
+ #: inc/admin.php:1306
363
+ msgid "Disable Emojis"
364
+ msgstr "Désactiver les émojis"
365
+
366
+ #: inc/admin.php:1301
367
+ msgid "Reduce page load times for repeat visitors"
368
+ msgstr "Réduit les temps de chargement des pages pour les visiteurs réguliers"
369
+
370
+ #: inc/admin.php:1300
371
+ msgid "Browser Caching"
372
+ msgstr "Cache navigateur"
373
+
374
+ #: inc/admin.php:1289
375
+ msgid "Reduce the size of files sent from your server"
376
+ msgstr "Réduit la taille des fichiers envoyés depuis votre serveur"
377
+
378
+ #: inc/admin.php:1288
379
+ msgid "Gzip"
380
+ msgstr "Gzip"
381
+
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
+ msgid "Combine Js Plus"
384
+ msgstr "Combiner le JS Plus "
385
+
386
+ #: inc/admin.php:1262
387
+ msgid "Combine Js"
388
+ msgstr "Combiner le JS "
389
+
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
391
+ msgid "You can decrease the size of js files"
392
+ msgstr "Diminue la taille des fichiers JS (Premium)"
393
+
394
+ #: inc/admin.php:1245 inc/admin.php:1250 inc/admin.php:1256
395
+ msgid "Minify Js"
396
+ msgstr "Minifier le JS "
397
+
398
+ #: inc/admin.php:1238
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "Réduit les requêtes HTTP grâce aux fichiers CSS combinés"
401
+
402
+ #: inc/admin.php:1237
403
+ msgid "Combine Css"
404
+ msgstr "Combiner le CSS "
405
+
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
+ msgid "More powerful minify css"
408
+ msgstr "Minification CSS plus puissante (Premium)"
409
+
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
+ msgid "Minify Css Plus"
412
+ msgstr "Minifier le CSS Plus "
413
+
414
+ #: inc/admin.php:1217
415
+ msgid "You can decrease the size of css files"
416
+ msgstr "Diminue la taille des fichiers CSS"
417
+
418
+ #: inc/admin.php:1216
419
+ msgid "Minify Css"
420
+ msgstr "Minifier le CSS "
421
+
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
+ msgid "More powerful minify html"
424
+ msgstr "Minification HTML plus puissante (Premium)"
425
+
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
+ msgid "Minify HTML Plus"
428
+ msgstr "Minifier le HTML Plus "
429
+
430
+ #: inc/admin.php:1197
431
+ msgid "You can decrease the size of page"
432
+ msgstr "Diminue la taille de la page"
433
+
434
+ #: inc/admin.php:1196
435
+ msgid "Minify HTML"
436
+ msgstr "Minifier le HTML "
437
+
438
+ #: inc/admin.php:1188
439
+ msgid "Clear cache files when a post or page is updated"
440
+ msgstr "Vide les fichiers de cache lors de la mise à jour d’un article ou d’une page"
441
+
442
+ #: templates/updatepost.php:18 inc/admin.php:1187
443
+ msgid "Update Post"
444
+ msgstr "Màj de publication"
445
+
446
+ #: inc/admin.php:1181
447
+ msgid "Clear cache files when a post or page is published"
448
+ msgstr "Vide les fichiers de cache lors de la publication d’un article ou d’une page"
449
+
450
+ #: templates/newpost.php:18 inc/admin.php:1180
451
+ msgid "New Post"
452
+ msgstr "Nouvelle publication "
453
+
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "Crée un cache pour le thème mobile (Premium)"
457
+
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
+ msgid "Mobile Theme"
460
+ msgstr "Thème mobile "
461
+
462
+ #: inc/admin.php:1142
463
+ msgid "Don't show the cached version for desktop to mobile devices"
464
+ msgstr "N’affiche pas la version mise en cache pour les ordinateurs sur les mobiles"
465
+
466
+ #: inc/admin.php:1141
467
+ msgid "Mobile"
468
+ msgstr "Mobile "
469
+
470
+ #: inc/admin.php:1137
471
+ msgid "Don't show the cached version for logged-in users"
472
+ msgstr "N’affiche pas la version mise en cache pour les utilisateurs connectés"
473
+
474
+ #: inc/admin.php:1136
475
+ msgid "Logged-in Users"
476
+ msgstr "Utilisateurs connectés "
477
+
478
+ #: inc/admin.php:1127
479
+ msgid "Create the cache of all the site automatically"
480
+ msgstr "Crée automatiquement le cache pour tout le site"
481
+
482
+ #: templates/preload.php:20 inc/admin.php:1126
483
+ msgid "Preload"
484
+ msgstr "Préchargement "
485
+
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "Réduit le nombre de requêtes SQL (Premium)"
489
+
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
+ msgid "Widget Cache"
492
+ msgstr "Cache de widget "
493
+
494
+ #: inc/admin.php:1088
495
+ msgid "Enable"
496
+ msgstr "Actif"
497
+
498
+ #: inc/admin.php:1087
499
+ msgid "Cache System"
500
+ msgstr "Système de cache"
501
+
502
+ #: wpFastestCache.php:1611
503
+ msgid "Once Every 15 Days"
504
+ msgstr "Tous les 15 jours"
505
+
506
+ #: wpFastestCache.php:1599
507
+ msgid "Once Every 7 Days"
508
+ msgstr "Tous les 7 jours"
509
+
510
+ #: wpFastestCache.php:1593
511
+ msgid "Once Every 3 Days"
512
+ msgstr "Tous les 3 jours"
513
+
514
+ #: wpFastestCache.php:1581
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "Toutes les 10 heures"
517
+
518
+ #: wpFastestCache.php:1575
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "Toutes les 9 heures"
521
+
522
+ #: wpFastestCache.php:1569
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "Toutes les 8 heures"
525
+
526
+ #: wpFastestCache.php:1563
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "Toutes les 7 heures"
529
+
530
+ #: wpFastestCache.php:1551
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "Toutes les 5 heures"
533
+
534
+ #: wpFastestCache.php:1545
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "Toutes les 4 heures"
537
+
538
+ #: wpFastestCache.php:1539
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "Toutes les 3 heures"
541
+
542
+ #: wpFastestCache.php:1533
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "Toutes les 2 heures"
545
+
546
+ #: wpFastestCache.php:1605
547
+ msgid "Once Every 10 Days"
548
+ msgstr "Tous les 10 jours"
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 "Le plus simple et le plus rapide des systèmes de cache pour WordPress"
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 "WP Fastest Cache"
569
+
570
+ #: wpFastestCache.php:1623
571
+ msgid "Once a Year"
572
+ msgstr "Une fois par an"
573
+
574
+ #: wpFastestCache.php:1617
575
+ msgid "Once a Month"
576
+ msgstr "Une fois par mois"
577
+
578
+ #: wpFastestCache.php:1587
579
+ msgid "Once a Day"
580
+ msgstr "Une fois par jour"
581
+
582
+ #: wpFastestCache.php:1557
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "Toutes les 6 heures"
585
+
586
+ #: wpFastestCache.php:1527
587
+ msgid "Once an Hour"
588
+ msgstr "Toutes les heures"
589
+
590
+ #: wpFastestCache.php:1521
591
+ msgid "Twice an Hour"
592
+ msgstr "Deux fois par heure"
593
+
594
+ #: wpFastestCache.php:1515
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "Toutes les 15 minutes"
597
+
598
+ #: wpFastestCache.php:1509
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "Toutes les 5 minutes"
601
+
602
+ #: wpFastestCache.php:1503
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "Toutes les minutes"
languages/wp-fastest-cache-it_IT.mo CHANGED
Binary file
languages/wp-fastest-cache-it_IT.po CHANGED
@@ -1,511 +1,551 @@
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"
@@ -527,74 +567,38 @@ msgstr "http://wordpress.org/plugins/wp-fastest-cache/"
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"
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in Italian
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: 2020-01-14 16:40:26+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 - Development (trunk)\n"
13
 
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "Svuota cache"
 
 
 
 
 
 
 
 
17
 
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
19
+ msgid "Eliminate render-blocking JavaScript resources"
20
+ msgstr "Elimina le risorse JavaScript che bloccano il rendering"
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
+ #: inc/admin.php:429 inc/admin.php:432
23
+ msgid "Options have been saved"
24
+ msgstr "Le opzioni sono state salvate"
25
 
26
+ #: inc/admin.php:1786
27
  msgid "Download"
28
  msgstr "Scarica"
29
 
30
+ #: inc/admin.php:1781
31
  msgid "Update"
32
  msgstr "Aggiorna"
33
 
34
+ #: inc/admin.php:1775
35
  msgid "Please don't delete the free version. Premium version works with the free version."
36
  msgstr "Non eliminare la versione gratuita. La versione Premium funziona con la versione gratuita."
37
 
38
+ #: inc/admin.php:1774
39
  msgid "Get It Now!"
40
  msgstr "Ottienilo ora!"
41
 
42
+ #: inc/admin.php:1768
43
  msgid "You can download and update the premium when you want if you paid."
44
  msgstr "Puoi scaricare e aggiornare la versione premium quando vuoi se la acquisti."
45
 
46
+ #: inc/admin.php:1765
47
  msgid "Download & Update"
48
  msgstr "Scarica e aggiorna"
49
 
50
+ #: inc/admin.php:1752
51
  msgid "Buy"
52
  msgstr "Acquista"
53
 
54
+ #: inc/admin.php:1737
55
  msgid "Purchased"
56
  msgstr "Acquistato"
57
 
58
+ #: inc/admin.php:1732
59
  msgid "The download button will be available after paid. You can buy the premium version now."
60
  msgstr "Il pulsante di download sarà disponibile dopo aver effettuato il pagamento. Puoi acquistare la versione Premium immediatamente."
61
 
62
+ #: inc/admin.php:1731
63
  msgid "Just"
64
  msgstr "Solo"
65
 
66
+ #: inc/admin.php:1715
67
  msgid "You need to pay before downloading the premium version."
68
  msgstr "Devi procedere al pagamento prima di poter scaricare la versione premium."
69
 
70
+ #: inc/admin.php:1712
71
  msgid "Checkout"
72
  msgstr "Pagamento"
73
 
74
+ #: inc/admin.php:1698
75
  msgid "New Features"
76
  msgstr "Nuove funzionalità"
77
 
78
+ #: inc/admin.php:1692
79
  msgid "In the premium version there are some new features which speed up the sites more."
80
  msgstr "Nella versione Premium ci sono alcune nuove funzionalità che accelerano maggiormente i siti."
81
 
82
+ #: inc/admin.php:1689
83
  msgid "Discover Features"
84
  msgstr "Scopri le funzionalità"
85
 
86
+ #: templates/exclude.php:106 inc/admin.php:1837
87
+ msgid "has Woocommerce Items in Cart"
88
+ msgstr "ha articoli Woocommerce nel carrello"
89
+
90
+ #: templates/exclude.php:105 inc/admin.php:1836
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "ha parametri di Google Analytics"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1829
95
+ msgid "Archives"
96
+ msgstr "Archivi"
97
+
98
+ #: templates/timeout.php:189
99
+ msgid "Server Time"
100
+ msgstr "Ora del server"
101
+
102
+ #: templates/timeout.php:169
103
+ msgid "delete the files"
104
+ msgstr "elimina i file"
105
+
106
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
+ msgid "Contains"
109
+ msgstr "Contiene"
110
+
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
+ msgid "Is Equal To"
114
+ msgstr "è uguale a"
115
+
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
+ msgid "Starts With"
119
+ msgstr "Inizia con"
120
+
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
+ msgid "Home Page"
124
+ msgstr "Homepage"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1555
127
+ msgid "All"
128
+ msgstr "Tutti"
129
+
130
+ #: templates/exclude.php:66
131
+ msgid "Exclude Page Wizard"
132
+ msgstr "Procedura guidata di esclusione pagina"
133
+
134
+ #: templates/timeout.php:124
135
+ msgid "Then"
136
+ msgstr "Allora"
137
+
138
+ #: templates/exclude.php:89 templates/timeout.php:91
139
+ msgid "If REQUEST_URI"
140
+ msgstr "Se REQUEST_URI"
141
+
142
+ #: templates/timeout.php:68
143
+ msgid "Cache Timeout Wizard"
144
+ msgstr "Procedura guidata timeout cache"
145
+
146
+ #: templates/lazy_load.php:9
147
+ msgid "Lazy Load Settings"
148
+ msgstr "Impostazioni lazy load"
149
+
150
+ #: templates/nginx_gzip.php:9
151
+ msgid "Enable Gzip"
152
+ msgstr "Abilita Gzip"
153
+
154
+ #: templates/update_now.php:9
155
+ msgid "Please Update"
156
+ msgstr "Aggiorna"
157
+
158
+ #: templates/update_success.php:9
159
+ msgid "Success"
160
+ msgstr "Completato"
161
 
162
+ #: templates/disable_wp_cron.php:20
163
+ msgid "Warning"
164
+ msgstr "Attenzione"
165
+
166
+ #: inc/admin.php:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
  msgid "Add New Rule"
169
  msgstr "Aggiungi nuova regola"
170
 
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "Elimina la cache e i CSS/JS minificati"
174
 
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
176
+ msgid "Only available in Premium version"
177
+ msgstr "Disponibile solo nella versione Premium"
178
+
179
+ #: templates/timeout.php:141
180
+ msgid "Choose One"
181
+ msgstr "Scegli uno"
182
+
183
+ #: inc/admin.php:1532
184
  msgid "All cache files will be removed as well"
185
  msgstr "Verranno rimossi anche tutti i file di cache"
186
 
187
+ #: inc/admin.php:1531
188
  msgid "If you modify any css file, you have to delete minified css files"
189
  msgstr "Se modifichi un file CSS, devi eliminare i file dei CSS minificati"
190
 
191
+ #: inc/admin.php:1519 inc/admin.php:1533 inc/admin.php:1534
192
  msgid "Target folder"
193
  msgstr "Cartella di destinazione"
194
 
195
+ #: inc/admin.php:1518
196
  msgid "You can delete all cache files"
197
  msgstr "Puoi eliminare tutti i file della cache"
198
 
199
+ #: inc/admin.php:1059
200
+ msgid "Exclude"
201
+ msgstr "Escludi"
202
+
203
+ #: inc/admin.php:1057
204
+ msgid "Image Optimization"
205
+ msgstr "Ottimizzazione immagini"
206
+
207
+ #: inc/admin.php:1054
208
+ msgid "Settings"
209
+ msgstr "Impostazioni"
210
+
211
+ #: inc/admin.php:2077
212
+ msgid "Database Cleanup"
213
+ msgstr "Pulizia del database"
214
+
215
+ #: inc/admin.php:1965
216
+ msgid "CDN Settings"
217
+ msgstr "Impostazioni CDN"
218
+
219
+ #: inc/admin.php:1928
220
+ msgid "Exclude JS"
221
+ msgstr "Escludi JS"
222
+
223
+ #: inc/admin.php:1908
224
+ msgid "Exclude CSS"
225
+ msgstr "Escludi CSS"
226
+
227
+ #: inc/admin.php:1890
228
+ msgid "Exclude Cookies"
229
+ msgstr "Escludi i cookie"
230
+
231
+ #: inc/admin.php:1871
232
+ msgid "Exclude User-Agents"
233
+ msgstr "Escludi gli user agent"
234
+
235
+ #: inc/admin.php:1854
236
+ msgid "Exclude Pages"
237
+ msgstr "Escludi pagine"
238
+
239
+ #: inc/admin.php:1665
240
+ msgid "Optimize Image Tool"
241
+ msgstr "Strumento di ottimizzazione immagini"
242
+
243
+ #: inc/admin.php:1548
244
+ msgid "Timeout Rules"
245
+ msgstr "Regole di timeout"
246
+
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
+ msgid "Delete Cache"
250
+ msgstr "Elimina cache"
251
+
252
+ #: inc/admin.php:1469
253
  msgid "Cache Statistics"
254
  msgstr "Statistiche della cache"
255
 
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "Cancella la cache di articoli/pagine"
259
+
260
+ #: templates/updatepost.php:29
261
+ msgid "What do you want to happen after update a post or a page?"
262
+ msgstr "Cosa vuoi che accada dopo l'aggiornamento di un articolo o di una pagina?"
263
+
264
+ #: templates/newpost.php:58
265
+ msgid "Clear Cache of Pagination"
266
+ msgstr "Cancella cache della paginazione"
267
+
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "Cancella cache dei tag"
271
+
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "Cancella cache delle categorie"
275
+
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "Cancella cache della home"
279
+
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
+ #: inc/admin-toolbar.php:74
282
+ msgid "Clear All Cache"
283
+ msgstr "Cancella tutta la cache"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "Cosa vuoi che accada dopo aver pubblicato il nuovo articolo?"
288
+
289
+ #: templates/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
291
+ msgid "OK"
292
+ msgstr "OK"
293
+
294
+ #: templates/preload.php:92
295
+ msgid "Restart After Completed"
296
+ msgstr "Riavvia al completamento"
297
+
298
+ #: templates/preload.php:87
299
+ msgid "pages per minute"
300
+ msgstr "pagine al minuto"
301
+
302
+ #: templates/preload.php:63
303
+ msgid "Custom Taxonomies"
304
+ msgstr "Tassonomie personalizzate"
305
+
306
+ #: templates/preload.php:58
307
+ msgid "Custom Post Types"
308
+ msgstr "Tipi di contenuto personalizzati"
309
+
310
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
+ msgid "Attachments"
312
+ msgstr "Allegati"
313
 
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
+ msgid "Tags"
316
+ msgstr "Tag"
317
+
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
+ msgid "Pages"
320
+ msgstr "Pagine"
321
+
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
+ msgid "Categories"
324
+ msgstr "Categorie"
325
+
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
327
+ msgid "Posts"
328
+ msgstr "Articoli"
329
+
330
+ #: templates/preload.php:33
331
+ msgid "Homepage"
332
+ msgstr "Homepage"
333
+
334
+ #: inc/admin.php:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "Riduci le richieste HTTP attraverso file Js combinati"
337
+
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
339
  msgid "Load images and iframes when they enter the browsers viewport"
340
  msgstr "Carica immagini e iframe quando vengono visualizzati nel browser"
341
 
342
+ #: inc/admin.php:1365 inc/admin.php:1384 inc/admin.php:1391
343
  msgid "Lazy Load"
344
  msgstr "Lazy load"
345
 
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
  msgid "Load Google Fonts asynchronously"
348
  msgstr "Carica Google Fonts in modo asincrono"
349
 
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
  msgid "Google Fonts"
352
  msgstr "Google Fonts"
353
 
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
  msgid "Render Blocking Js"
356
  msgstr "Js che bloccano il rendering"
357
 
358
+ #: inc/admin.php:1307
359
  msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "Puoi rimuovere gli inline CSS degli emoji e wp-emoji-release.min.js"
361
 
362
+ #: inc/admin.php:1306
363
  msgid "Disable Emojis"
364
  msgstr "Disabilita emoji"
365
 
366
+ #: inc/admin.php:1301
367
  msgid "Reduce page load times for repeat visitors"
368
  msgstr "Riduce i tempi di caricamento della pagina per visitatori abituali"
369
 
370
+ #: inc/admin.php:1300
371
  msgid "Browser Caching"
372
  msgstr "Memorizzazione nella cache del browser"
373
 
374
+ #: inc/admin.php:1289
375
  msgid "Reduce the size of files sent from your server"
376
  msgstr "Riduce la dimensione dei file inviati dal tuo server"
377
 
378
+ #: inc/admin.php:1288
379
  msgid "Gzip"
380
  msgstr "Gzip"
381
 
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
  msgid "Combine Js Plus"
384
  msgstr "Combina Js Plus"
385
 
386
+ #: inc/admin.php:1262
 
 
 
 
387
  msgid "Combine Js"
388
  msgstr "Combina Js"
389
 
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
391
  msgid "You can decrease the size of js files"
392
  msgstr "Puoi ridurre la dimensione dei file Js"
393
 
394
+ #: inc/admin.php:1245 inc/admin.php:1250 inc/admin.php:1256
395
  msgid "Minify Js"
396
  msgstr "Minifica JS"
397
 
398
+ #: inc/admin.php:1238
399
  msgid "Reduce HTTP requests through combined css files"
400
  msgstr "Riduce le richieste HTTP attraverso file CSS combinati"
401
 
402
+ #: inc/admin.php:1237
403
  msgid "Combine Css"
404
  msgstr "Combina CSS"
405
 
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
  msgid "More powerful minify css"
408
  msgstr "Minificazione CSS più potente"
409
 
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
  msgid "Minify Css Plus"
412
  msgstr "Minifica CSS Plus"
413
 
414
+ #: inc/admin.php:1217
415
  msgid "You can decrease the size of css files"
416
  msgstr "Puoi ridurre la dimensione dei file CSS"
417
 
418
+ #: inc/admin.php:1216
419
  msgid "Minify Css"
420
  msgstr "Minifica CSS"
421
 
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
  msgid "More powerful minify html"
424
  msgstr "Minificazione HTML più potente"
425
 
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
  msgid "Minify HTML Plus"
428
  msgstr "Minifica HTML Plus"
429
 
430
+ #: inc/admin.php:1197
431
  msgid "You can decrease the size of page"
432
  msgstr "Puoi ridurre la dimensione della pagina"
433
 
434
+ #: inc/admin.php:1196
435
  msgid "Minify HTML"
436
  msgstr "Minifica HTML"
437
 
438
+ #: inc/admin.php:1188
439
  msgid "Clear cache files when a post or page is updated"
440
  msgstr "Svuota la cache quando un articolo o una pagina vengono aggiornati"
441
 
442
+ #: templates/updatepost.php:18 inc/admin.php:1187
443
+ msgid "Update Post"
444
+ msgstr "Aggiorna articolo"
445
+
446
+ #: inc/admin.php:1181
447
  msgid "Clear cache files when a post or page is published"
448
  msgstr "Svuota la cache quando un articolo o una pagina vengono pubblicati"
449
 
450
+ #: templates/newpost.php:18 inc/admin.php:1180
451
+ msgid "New Post"
452
+ msgstr "Nuovo articolo"
453
+
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
  msgid "Create cache for mobile theme"
456
  msgstr "Crea la cache per il tema mobile"
457
 
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
  msgid "Mobile Theme"
460
  msgstr "Tema mobile"
461
 
462
+ #: inc/admin.php:1142
463
  msgid "Don't show the cached version for desktop to mobile devices"
464
  msgstr "Non mostrare la versione cache per desktop su dispositivi mobili"
465
 
466
+ #: inc/admin.php:1141
467
  msgid "Mobile"
468
  msgstr "Dispositivi mobili"
469
 
470
+ #: inc/admin.php:1137
471
  msgid "Don't show the cached version for logged-in users"
472
  msgstr "Non mostrare la versione in cache agli utenti connessi"
473
 
474
+ #: inc/admin.php:1136
475
  msgid "Logged-in Users"
476
  msgstr "Utenti connessi"
477
 
478
+ #: inc/admin.php:1127
479
  msgid "Create the cache of all the site automatically"
480
  msgstr "Crea la cache di tutto il sito automaticamente"
481
 
482
+ #: templates/preload.php:20 inc/admin.php:1126
483
+ msgid "Preload"
484
+ msgstr "Precaricamento"
485
+
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
  msgid "Reduce the number of SQL queries"
488
  msgstr "Riduci il numero di query SQL"
489
 
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
  msgid "Widget Cache"
492
  msgstr "Cache dei widget"
493
 
494
+ #: inc/admin.php:1088
495
  msgid "Enable"
496
  msgstr "Attiva"
497
 
498
+ #: inc/admin.php:1087
499
  msgid "Cache System"
500
  msgstr "Sistema di cache"
501
 
502
+ #: wpFastestCache.php:1611
503
+ msgid "Once Every 15 Days"
504
+ msgstr "Ogni 15 giorni"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
 
506
+ #: wpFastestCache.php:1599
507
+ msgid "Once Every 7 Days"
508
+ msgstr "Ogni 7 giorni"
509
 
510
+ #: wpFastestCache.php:1593
511
+ msgid "Once Every 3 Days"
512
+ msgstr "Una volta ogni 3 giorni"
513
 
514
+ #: wpFastestCache.php:1581
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "Una volta ogni 10 ore"
517
 
518
+ #: wpFastestCache.php:1575
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "Una volta ogni 9 ore"
 
521
 
522
+ #: wpFastestCache.php:1569
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "Una volta ogni 8 ore"
525
 
526
+ #: wpFastestCache.php:1563
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "Una volta ogni 7 ore"
529
 
530
+ #: wpFastestCache.php:1551
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "Una volta ogni 5 ore"
533
 
534
+ #: wpFastestCache.php:1545
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "Una volta ogni 4 ore"
537
 
538
+ #: wpFastestCache.php:1539
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "Una volta ogni 3 ore"
541
 
542
+ #: wpFastestCache.php:1533
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "Una volta ogni 2 ore"
545
 
546
+ #: wpFastestCache.php:1605
547
+ msgid "Once Every 10 Days"
548
+ msgstr "Una volta ogni 10 giorni"
549
 
550
  #. Author URI of the plugin
551
  msgid "http://tr.linkedin.com/in/emrevona"
567
  msgid "WP Fastest Cache"
568
  msgstr "WP Fastest Cache"
569
 
570
+ #: wpFastestCache.php:1623
571
  msgid "Once a Year"
572
  msgstr "Una volta all'anno"
573
 
574
+ #: wpFastestCache.php:1617
575
  msgid "Once a Month"
576
  msgstr "Una volta al mese"
577
 
578
+ #: wpFastestCache.php:1587
 
 
 
 
579
  msgid "Once a Day"
580
  msgstr "Una volta al giorno"
581
 
582
+ #: wpFastestCache.php:1557
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
583
  msgid "Once Every 6 Hours"
584
  msgstr "Una volta ogni 6 ore"
585
 
586
+ #: wpFastestCache.php:1527
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587
  msgid "Once an Hour"
588
  msgstr "Una volta all'ora"
589
 
590
+ #: wpFastestCache.php:1521
591
  msgid "Twice an Hour"
592
  msgstr "Due volte all'ora"
593
 
594
+ #: wpFastestCache.php:1515
595
  msgid "Once Every 15 Minutes"
596
  msgstr "Una volta ogni 15 minuti"
597
 
598
+ #: wpFastestCache.php:1509
599
  msgid "Once Every 5 Minutes"
600
  msgstr "Una volta ogni 5 minuti"
601
 
602
+ #: wpFastestCache.php:1503
603
  msgid "Once Every 1 Minute"
604
  msgstr "Una volta al minuto"
languages/wp-fastest-cache-sk_SK.mo ADDED
Binary file
languages/wp-fastest-cache-sk_SK.po ADDED
@@ -0,0 +1,604 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in Slovak
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-12-27 08:17:38+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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: sk\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "Vyčistiť Cache"
17
+
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
19
+ msgid "Eliminate render-blocking JavaScript resources"
20
+ msgstr "Odstrániť JavaScript zdroje blokujúce vykreslenie"
21
+
22
+ #: inc/admin.php:429 inc/admin.php:432
23
+ msgid "Options have been saved"
24
+ msgstr "Nastavenia boli uložené"
25
+
26
+ #: inc/admin.php:1786
27
+ msgid "Download"
28
+ msgstr "Stiahnuť"
29
+
30
+ #: inc/admin.php:1781
31
+ msgid "Update"
32
+ msgstr "Aktualizovať"
33
+
34
+ #: inc/admin.php:1775
35
+ msgid "Please don't delete the free version. Premium version works with the free version."
36
+ msgstr "Neodstraňujte bezplatnú verziu. Prémiová verzia funguje s bezplatnou verziou."
37
+
38
+ #: inc/admin.php:1774
39
+ msgid "Get It Now!"
40
+ msgstr "Získať teraz!"
41
+
42
+ #: inc/admin.php:1768
43
+ msgid "You can download and update the premium when you want if you paid."
44
+ msgstr "Premium si môžete stiahnuť a aktualizovať, kedykoľvek budete chcieť, ak ste zaplatili."
45
+
46
+ #: inc/admin.php:1765
47
+ msgid "Download & Update"
48
+ msgstr "Stiahnuť a aktualizovať"
49
+
50
+ #: inc/admin.php:1752
51
+ msgid "Buy"
52
+ msgstr "Kúpiť"
53
+
54
+ #: inc/admin.php:1737
55
+ msgid "Purchased"
56
+ msgstr "Zakúpené"
57
+
58
+ #: inc/admin.php:1732
59
+ msgid "The download button will be available after paid. You can buy the premium version now."
60
+ msgstr "Tlačidlo na stiahnutie bude k dispozícii po zaplatení. Prémiovú verziu si môžete zakúpiť."
61
+
62
+ #: inc/admin.php:1731
63
+ msgid "Just"
64
+ msgstr "Práve"
65
+
66
+ #: inc/admin.php:1715
67
+ msgid "You need to pay before downloading the premium version."
68
+ msgstr "Pred stiahnutím prémiovej verzie musíte zaplatiť."
69
+
70
+ #: inc/admin.php:1712
71
+ msgid "Checkout"
72
+ msgstr "Pokladňa"
73
+
74
+ #: inc/admin.php:1698
75
+ msgid "New Features"
76
+ msgstr "Nové funkcie"
77
+
78
+ #: inc/admin.php:1692
79
+ msgid "In the premium version there are some new features which speed up the sites more."
80
+ msgstr "V prémiovej verzii sú niektoré nové funkcie, ktoré viac zrýchľujú stránku."
81
+
82
+ #: inc/admin.php:1689
83
+ msgid "Discover Features"
84
+ msgstr "Objavte funkcie"
85
+
86
+ #: templates/exclude.php:106 inc/admin.php:1837
87
+ msgid "has Woocommerce Items in Cart"
88
+ msgstr "má Woocommerce položky v košíku"
89
+
90
+ #: templates/exclude.php:105 inc/admin.php:1836
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "má Google Analytics Parameters"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1829
95
+ msgid "Archives"
96
+ msgstr "Archívy"
97
+
98
+ #: templates/timeout.php:189
99
+ msgid "Server Time"
100
+ msgstr "Serverový čas"
101
+
102
+ #: templates/timeout.php:169
103
+ msgid "delete the files"
104
+ msgstr "Vymazať súbory"
105
+
106
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
+ msgid "Contains"
109
+ msgstr "Obsahuje"
110
+
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
+ msgid "Is Equal To"
114
+ msgstr "sa rovná"
115
+
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
+ msgid "Starts With"
119
+ msgstr "Začína s"
120
+
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
+ msgid "Home Page"
124
+ msgstr "Domovská stránka"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1555
127
+ msgid "All"
128
+ msgstr "Všetko"
129
+
130
+ #: templates/exclude.php:66
131
+ msgid "Exclude Page Wizard"
132
+ msgstr "Vylúčiť sprievodcu stránkami"
133
+
134
+ #: templates/timeout.php:124
135
+ msgid "Then"
136
+ msgstr "Následne"
137
+
138
+ #: templates/exclude.php:89 templates/timeout.php:91
139
+ msgid "If REQUEST_URI"
140
+ msgstr "Ak REQUEST_URI"
141
+
142
+ #: templates/timeout.php:68
143
+ msgid "Cache Timeout Wizard"
144
+ msgstr "Sprievodca Cache Timeout"
145
+
146
+ #: templates/lazy_load.php:9
147
+ msgid "Lazy Load Settings"
148
+ msgstr "Lazy load nastavenia"
149
+
150
+ #: templates/nginx_gzip.php:9
151
+ msgid "Enable Gzip"
152
+ msgstr "Povoliť Gzip"
153
+
154
+ #: templates/update_now.php:9
155
+ msgid "Please Update"
156
+ msgstr "Prosím aktualizujte"
157
+
158
+ #: templates/update_success.php:9
159
+ msgid "Success"
160
+ msgstr "Úspech"
161
+
162
+ #: templates/disable_wp_cron.php:20
163
+ msgid "Warning"
164
+ msgstr "Varovanie"
165
+
166
+ #: inc/admin.php:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
+ msgid "Add New Rule"
169
+ msgstr "Pridať nové pravidlo"
170
+
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "Vymazať Cache a minifikované CSS/JS"
174
+
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
176
+ msgid "Only available in Premium version"
177
+ msgstr "K dispozícii iba vo verzii Premium"
178
+
179
+ #: templates/timeout.php:141
180
+ msgid "Choose One"
181
+ msgstr "Zvoliť jeden"
182
+
183
+ #: inc/admin.php:1532
184
+ msgid "All cache files will be removed as well"
185
+ msgstr "Všetky cache súbory boli vymazané"
186
+
187
+ #: inc/admin.php:1531
188
+ msgid "If you modify any css file, you have to delete minified css files"
189
+ msgstr "Ak upravíte akýkoľvek súbor css, musíte odstrániť zmenšené súbory css"
190
+
191
+ #: inc/admin.php:1519 inc/admin.php:1533 inc/admin.php:1534
192
+ msgid "Target folder"
193
+ msgstr "Cieľový priečinok"
194
+
195
+ #: inc/admin.php:1518
196
+ msgid "You can delete all cache files"
197
+ msgstr "Môžete odstrániť všetky súbory cache"
198
+
199
+ #: inc/admin.php:1059
200
+ msgid "Exclude"
201
+ msgstr "Vylúčiť"
202
+
203
+ #: inc/admin.php:1057
204
+ msgid "Image Optimization"
205
+ msgstr "Optimalizácia obrázkov"
206
+
207
+ #: inc/admin.php:1054
208
+ msgid "Settings"
209
+ msgstr "Nastavenia"
210
+
211
+ #: inc/admin.php:2077
212
+ msgid "Database Cleanup"
213
+ msgstr "Vyčistenie databázy"
214
+
215
+ #: inc/admin.php:1965
216
+ msgid "CDN Settings"
217
+ msgstr "Nastavenia CDN"
218
+
219
+ #: inc/admin.php:1928
220
+ msgid "Exclude JS"
221
+ msgstr "Vylúčiť JS"
222
+
223
+ #: inc/admin.php:1908
224
+ msgid "Exclude CSS"
225
+ msgstr "Vylúčiť CSS"
226
+
227
+ #: inc/admin.php:1890
228
+ msgid "Exclude Cookies"
229
+ msgstr "Vylúčiť Cookies"
230
+
231
+ #: inc/admin.php:1871
232
+ msgid "Exclude User-Agents"
233
+ msgstr "Vylúčiť User-Agents"
234
+
235
+ #: inc/admin.php:1854
236
+ msgid "Exclude Pages"
237
+ msgstr "Vylúčiť stránky"
238
+
239
+ #: inc/admin.php:1665
240
+ msgid "Optimize Image Tool"
241
+ msgstr "Optimalizovať nástroje obrázkov"
242
+
243
+ #: inc/admin.php:1548
244
+ msgid "Timeout Rules"
245
+ msgstr "Timeout pravidla"
246
+
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
+ msgid "Delete Cache"
250
+ msgstr "Vymazať cache"
251
+
252
+ #: inc/admin.php:1469
253
+ msgid "Cache Statistics"
254
+ msgstr "Štatistika Cache"
255
+
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "Vymazať cache článku/stránky"
259
+
260
+ #: templates/updatepost.php:29
261
+ msgid "What do you want to happen after update a post or a page?"
262
+ msgstr "Čo chcete, aby sa stalo po aktualizácii článku alebo stránky?"
263
+
264
+ #: templates/newpost.php:58
265
+ msgid "Clear Cache of Pagination"
266
+ msgstr "Vyčistiť cache stránkovania."
267
+
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "Vymazať cache značiek článku"
271
+
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "Vymazať cache pre kategórie článkov"
275
+
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "Vymazať cache domovskej stránky"
279
+
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
+ #: inc/admin-toolbar.php:74
282
+ msgid "Clear All Cache"
283
+ msgstr "Vymazať všetko cache"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "Čo chcete, aby sa stalo po publikovaní nového článku?"
288
+
289
+ #: templates/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
291
+ msgid "OK"
292
+ msgstr "OK"
293
+
294
+ #: templates/preload.php:92
295
+ msgid "Restart After Completed"
296
+ msgstr "Reštartovať po dokončení"
297
+
298
+ #: templates/preload.php:87
299
+ msgid "pages per minute"
300
+ msgstr "stránok za minútu"
301
+
302
+ #: templates/preload.php:63
303
+ msgid "Custom Taxonomies"
304
+ msgstr "Vlastné taxonómie"
305
+
306
+ #: templates/preload.php:58
307
+ msgid "Custom Post Types"
308
+ msgstr "Vlastné typy obsahu"
309
+
310
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
+ msgid "Attachments"
312
+ msgstr "Prílohy"
313
+
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
+ msgid "Tags"
316
+ msgstr "Značky"
317
+
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
+ msgid "Pages"
320
+ msgstr "Stránky"
321
+
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
+ msgid "Categories"
324
+ msgstr "Kategórie"
325
+
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
327
+ msgid "Posts"
328
+ msgstr "Články"
329
+
330
+ #: templates/preload.php:33
331
+ msgid "Homepage"
332
+ msgstr "Domovská stránka"
333
+
334
+ #: inc/admin.php:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "Redukovať HTTP žiadosti pomocou kombinácie js súborov"
337
+
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
339
+ msgid "Load images and iframes when they enter the browsers viewport"
340
+ msgstr "Načítať obrázky a iframe až pri vyrezávaní prehliadača"
341
+
342
+ #: inc/admin.php:1365 inc/admin.php:1384 inc/admin.php:1391
343
+ msgid "Lazy Load"
344
+ msgstr "Lazy Load"
345
+
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "Načítanie písma Google asynchrónne"
349
+
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
+ msgid "Google Fonts"
352
+ msgstr "Google Fonts"
353
+
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
+ msgid "Render Blocking Js"
356
+ msgstr "Renderovať blokovanie Js"
357
+
358
+ #: inc/admin.php:1307
359
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "Môžete odstrániť vložené súbory emoji css a wp-emoji-release.min.js"
361
+
362
+ #: inc/admin.php:1306
363
+ msgid "Disable Emojis"
364
+ msgstr "Vypnúť Emojis"
365
+
366
+ #: inc/admin.php:1301
367
+ msgid "Reduce page load times for repeat visitors"
368
+ msgstr "Znížte čas načítania stránky pre návštevníkov, ktorý už boli na stránke."
369
+
370
+ #: inc/admin.php:1300
371
+ msgid "Browser Caching"
372
+ msgstr "Cache prehliadača"
373
+
374
+ #: inc/admin.php:1289
375
+ msgid "Reduce the size of files sent from your server"
376
+ msgstr "Znížuje veľkosť súborov odoslaných zo servera"
377
+
378
+ #: inc/admin.php:1288
379
+ msgid "Gzip"
380
+ msgstr "Gzip"
381
+
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
+ msgid "Combine Js Plus"
384
+ msgstr "Kombinovať Js Plus"
385
+
386
+ #: inc/admin.php:1262
387
+ msgid "Combine Js"
388
+ msgstr "Kombinovať Js "
389
+
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
391
+ msgid "You can decrease the size of js files"
392
+ msgstr "Môžete zmenšiť veľkosť js súborov"
393
+
394
+ #: inc/admin.php:1245 inc/admin.php:1250 inc/admin.php:1256
395
+ msgid "Minify Js"
396
+ msgstr "Minifikovať js"
397
+
398
+ #: inc/admin.php:1238
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "Zredukovanie HTTP žiadosti prostredníctvom kombinovaných súborov CSS"
401
+
402
+ #: inc/admin.php:1237
403
+ msgid "Combine Css"
404
+ msgstr "Kombinovať Css"
405
+
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
+ msgid "More powerful minify css"
408
+ msgstr "Výkonnejšie minifikovať css"
409
+
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
+ msgid "Minify Css Plus"
412
+ msgstr "Minifikovať Css Plus"
413
+
414
+ #: inc/admin.php:1217
415
+ msgid "You can decrease the size of css files"
416
+ msgstr "Môžete zmenšiť veľkosť súborov css"
417
+
418
+ #: inc/admin.php:1216
419
+ msgid "Minify Css"
420
+ msgstr "Minifikovať Css"
421
+
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
+ msgid "More powerful minify html"
424
+ msgstr ""
425
+
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
+ msgid "Minify HTML Plus"
428
+ msgstr "Minimalizovať HTML Plus"
429
+
430
+ #: inc/admin.php:1197
431
+ msgid "You can decrease the size of page"
432
+ msgstr "Môžete znížiť veľkosť stránky"
433
+
434
+ #: inc/admin.php:1196
435
+ msgid "Minify HTML"
436
+ msgstr "Minimalizovať HTM\""
437
+
438
+ #: inc/admin.php:1188
439
+ msgid "Clear cache files when a post or page is updated"
440
+ msgstr "Aktualizovať cache súbory, keď upravíte článok alebo stránku"
441
+
442
+ #: templates/updatepost.php:18 inc/admin.php:1187
443
+ msgid "Update Post"
444
+ msgstr "Aktualizovať článok"
445
+
446
+ #: inc/admin.php:1181
447
+ msgid "Clear cache files when a post or page is published"
448
+ msgstr "Aktualizovať cache súbory, keď publikujete článok alebo stránku "
449
+
450
+ #: templates/newpost.php:18 inc/admin.php:1180
451
+ msgid "New Post"
452
+ msgstr "Nový článok"
453
+
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "Vytvoriť cache pre mobilnú verziu témy"
457
+
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
+ msgid "Mobile Theme"
460
+ msgstr "Mobilná téma"
461
+
462
+ #: inc/admin.php:1142
463
+ msgid "Don't show the cached version for desktop to mobile devices"
464
+ msgstr "Nezobrazovať cache verziu pre PC na mobilných zariadeniach"
465
+
466
+ #: inc/admin.php:1141
467
+ msgid "Mobile"
468
+ msgstr "Mobil"
469
+
470
+ #: inc/admin.php:1137
471
+ msgid "Don't show the cached version for logged-in users"
472
+ msgstr "Nezobrazovať verziu v cache pre prihlásených používateľov"
473
+
474
+ #: inc/admin.php:1136
475
+ msgid "Logged-in Users"
476
+ msgstr "Prihlásení používatelia"
477
+
478
+ #: inc/admin.php:1127
479
+ msgid "Create the cache of all the site automatically"
480
+ msgstr "Vytvorte cache pre všetky stránky automaticky"
481
+
482
+ #: templates/preload.php:20 inc/admin.php:1126
483
+ msgid "Preload"
484
+ msgstr ""
485
+
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "Znížiť počet dopytov SQL"
489
+
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
+ msgid "Widget Cache"
492
+ msgstr "Widget Cache"
493
+
494
+ #: inc/admin.php:1088
495
+ msgid "Enable"
496
+ msgstr "Zapnúť"
497
+
498
+ #: inc/admin.php:1087
499
+ msgid "Cache System"
500
+ msgstr "Cache systému"
501
+
502
+ #: wpFastestCache.php:1611
503
+ msgid "Once Every 15 Days"
504
+ msgstr "Raz za 15 dní "
505
+
506
+ #: wpFastestCache.php:1599
507
+ msgid "Once Every 7 Days"
508
+ msgstr "Raz za 7 dní "
509
+
510
+ #: wpFastestCache.php:1593
511
+ msgid "Once Every 3 Days"
512
+ msgstr "Raz za 3 dni"
513
+
514
+ #: wpFastestCache.php:1581
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "Každých 10 hodín "
517
+
518
+ #: wpFastestCache.php:1575
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "Každých 9 hodín"
521
+
522
+ #: wpFastestCache.php:1569
523
+ msgid "Once Every 8 Hours"
524
+ msgstr " Každých 8 hodín "
525
+
526
+ #: wpFastestCache.php:1563
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "Každých 7 hodín"
529
+
530
+ #: wpFastestCache.php:1551
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "Každých 5 hodín "
533
+
534
+ #: wpFastestCache.php:1545
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "Každé 4 hodiny"
537
+
538
+ #: wpFastestCache.php:1539
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "Každé 3 hodiny"
541
+
542
+ #: wpFastestCache.php:1533
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "Každé 2 hodiny"
545
+
546
+ #: wpFastestCache.php:1605
547
+ msgid "Once Every 10 Days"
548
+ msgstr "Raz za 10 dní"
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 "Najjednoduchší a najrýchlejší WP Cache systém"
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 "WP Fastest Cache"
569
+
570
+ #: wpFastestCache.php:1623
571
+ msgid "Once a Year"
572
+ msgstr "Raz ročne"
573
+
574
+ #: wpFastestCache.php:1617
575
+ msgid "Once a Month"
576
+ msgstr "Jedenkrát mesačne"
577
+
578
+ #: wpFastestCache.php:1587
579
+ msgid "Once a Day"
580
+ msgstr "Jedenkrát denne"
581
+
582
+ #: wpFastestCache.php:1557
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "Jedenkrát každých 6 hodín"
585
+
586
+ #: wpFastestCache.php:1527
587
+ msgid "Once an Hour"
588
+ msgstr "Jedenkrát za hodinu"
589
+
590
+ #: wpFastestCache.php:1521
591
+ msgid "Twice an Hour"
592
+ msgstr "Dvakrát za hodinu"
593
+
594
+ #: wpFastestCache.php:1515
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "Jedenkrát každých 15 minút"
597
+
598
+ #: wpFastestCache.php:1509
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "Jedenkrát každých 5 minút"
601
+
602
+ #: wpFastestCache.php:1503
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "Jedenkrát za 1 minútu"
languages/wp-fastest-cache-sv_SE.mo CHANGED
Binary file
languages/wp-fastest-cache-sv_SE.po CHANGED
@@ -1,621 +1,604 @@
1
- # Translation of Plugins - WP Fastest Cache - Development (trunk) in Swedish
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-10-05 13:23+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: Loco https://localise.biz/\n"
11
- "Language: sv-SE\n"
12
- "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
- "\n"
14
- "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2019-10-05 13:21+0000\n"
16
- "Last-Translator: admin <a@a.com>\n"
17
- "Language-Team: Swedish\n"
18
- "X-Loco-Version: 2.3.0; wp-5.2.3"
19
-
20
- #: inc/admin.php:1265 inc/admin.php:1271 inc/admin.php:1278
21
- msgid "Eliminate render-blocking JavaScript resources"
22
- msgstr "Eliminera renderingsblockerande JavaScript-resurser"
23
-
24
- #: inc/admin.php:429 inc/admin.php:432
25
- msgid "Options have been saved"
26
- msgstr "Alternativ har sparats"
27
-
28
- #: inc/admin.php:1733
29
- msgid "Download"
30
- msgstr "Ladda ner"
31
-
32
- #: inc/admin.php:1728
33
- msgid "Update"
34
- msgstr "Uppdatera"
35
-
36
- #: inc/admin.php:1722
37
- msgid ""
38
- "Please don't delete the free version. Premium version works with the free "
39
- "version."
40
- msgstr ""
41
- "Ta inte bort gratisversionen. Premiumversionen används tillsammans med "
42
- "gratisversionen."
43
-
44
- #: inc/admin.php:1721
45
- msgid "Get It Now!"
46
- msgstr "Skaffa det nu!"
47
-
48
- #: inc/admin.php:1715
49
- msgid "You can download and update the premium when you want if you paid."
50
- msgstr "Du kan ladda ner och uppdatera premium när du vill om du har betalat."
51
-
52
- #: inc/admin.php:1712
53
- msgid "Download & Update"
54
- msgstr "Ladda ner och uppdatera"
55
-
56
- #: inc/admin.php:1699
57
- msgid "Buy"
58
- msgstr "Köp"
59
-
60
- #: inc/admin.php:1684
61
- msgid "Purchased"
62
- msgstr "Köpt"
63
-
64
- #: inc/admin.php:1679
65
- msgid ""
66
- "The download button will be available after paid. You can buy the premium "
67
- "version now."
68
- msgstr ""
69
- "Nedladdningsknappen kommer att finnas tillgänglig efter betalning. Du kan "
70
- "köpa premiumversionen nu."
71
-
72
- #: inc/admin.php:1678
73
- msgid "Just"
74
- msgstr "Endast"
75
-
76
- #: inc/admin.php:1664
77
- msgid "You need to pay before downloading the premium version."
78
- msgstr "Du måste betala före nedladdning av premiumversionen."
79
-
80
- #: inc/admin.php:1661
81
- msgid "Checkout"
82
- msgstr "Kassa"
83
-
84
- #: inc/admin.php:1647
85
- msgid "New Features"
86
- msgstr "Nya funktioner"
87
-
88
- #: inc/admin.php:1641
89
- msgid ""
90
- "In the premium version there are some new features which speed up the sites "
91
- "more."
92
- msgstr ""
93
- "I premiumversionen finns det några nya funktioner som snabbar upp "
94
- "webbplatserna mer."
95
-
96
- #: inc/admin.php:1638
97
- msgid "Discover Features"
98
- msgstr "Utforska funktioner"
99
-
100
- #: templates/exclude.php:106 inc/admin.php:1784
101
- msgid "has Woocommerce Items in Cart"
102
- msgstr "har Woocommerce-varor i varukorgen"
103
-
104
- #: templates/exclude.php:105 inc/admin.php:1783
105
- msgid "has Google Analytics Parameters"
106
- msgstr "har Google Analytics-parametrar"
107
-
108
- #: templates/exclude.php:99 inc/admin.php:1776
109
- msgid "Archives"
110
- msgstr "Arkiv"
111
-
112
- #: templates/timeout.php:185
113
- msgid "Server Time"
114
- msgstr "Servertid"
115
-
116
- #: templates/timeout.php:165
117
- msgid "delete the files"
118
- msgstr "ta bort filerna"
119
-
120
- #: templates/timeout.php:99 templates/exclude.php:103 inc/admin.php:1507
121
- #: inc/admin.php:1781
122
- msgid "Contains"
123
- msgstr "Innehåller"
124
-
125
- #: templates/timeout.php:98 templates/exclude.php:104 inc/admin.php:1508
126
- #: inc/admin.php:1782
127
- msgid "Is Equal To"
128
- msgstr "Är lika med"
129
-
130
- #: templates/timeout.php:97 templates/exclude.php:102 inc/admin.php:1506
131
- #: inc/admin.php:1780
132
- msgid "Starts With"
133
- msgstr "Startar med"
134
-
135
- #: templates/timeout.php:96 templates/exclude.php:93 inc/admin.php:1505
136
- #: inc/admin.php:1773
137
- msgid "Home Page"
138
- msgstr "Startsida"
139
-
140
- #: templates/timeout.php:95 inc/admin.php:1504
141
- msgid "All"
142
- msgstr "Alla"
143
-
144
- #: templates/exclude.php:66
145
- msgid "Exclude Page Wizard"
146
- msgstr "Guide för exkludering av sida"
147
-
148
- #: templates/timeout.php:124
149
- msgid "Then"
150
- msgstr "Sedan"
151
-
152
- #: templates/timeout.php:91 templates/exclude.php:89
153
- msgid "If REQUEST_URI"
154
- msgstr "Om REQUEST_URI"
155
-
156
- #: templates/timeout.php:68
157
- msgid "Cache Timeout Wizard"
158
- msgstr "Guide för cache-timeout"
159
-
160
- #: templates/lazy_load.php:9
161
- msgid "Lazy Load Settings"
162
- msgstr "Inställningar för Lazy Load"
163
-
164
- #: templates/nginx_gzip.php:9
165
- msgid "Enable Gzip"
166
- msgstr "Aktivera Gzip"
167
-
168
- #: templates/update_now.php:9
169
- msgid "Please Update"
170
- msgstr "Uppdatera"
171
-
172
- #: templates/update_success.php:9
173
- msgid "Success"
174
- msgstr "Lyckades"
175
-
176
- #: templates/disable_wp_cron.php:20
177
- msgid "Warning"
178
- msgstr "Varning"
179
-
180
- #: inc/admin.php:1540 inc/admin.php:1805 inc/admin.php:1822 inc/admin.php:1841
181
- #: inc/admin.php:1859 inc/admin.php:1879
182
- msgid "Add New Rule"
183
- msgstr "Lägg till ny regel"
184
-
185
- #: inc/admin-toolbar.php:81 inc/admin.php:1476
186
- msgid "Delete Cache and Minified CSS/JS"
187
- msgstr "Ta bort cache och minifierad CSS/JS"
188
-
189
- #: inc/admin.php:1411 inc/admin.php:2039 inc/admin.php:2260
190
- msgid "Only available in Premium version"
191
- msgstr "Endast tillgängligt i premiumversion"
192
-
193
- #: templates/timeout.php:137
194
- msgid "Choose One"
195
- msgstr "Välj en"
196
-
197
- #: inc/admin.php:1481
198
- msgid "All cache files will be removed as well"
199
- msgstr "Alla cache-filer kommer också att tas bort"
200
-
201
- #: inc/admin.php:1480
202
- msgid "If you modify any css file, you have to delete minified css files"
203
- msgstr "Om du modifierar någon CSS-fil måste du ta bort minifierade CSS-filer"
204
-
205
- #: inc/admin.php:1468 inc/admin.php:1482 inc/admin.php:1483
206
- msgid "Target folder"
207
- msgstr "Målmapp"
208
-
209
- #: inc/admin.php:1467
210
- msgid "You can delete all cache files"
211
- msgstr "Du kan ta bort alla cache-filer"
212
-
213
- #: inc/admin.php:992
214
- msgid "Exclude"
215
- msgstr "Exkludera"
216
-
217
- #: inc/admin.php:990
218
- msgid "Image Optimization"
219
- msgstr "Bildoptimering"
220
-
221
- #: inc/admin.php:987
222
- msgid "Settings"
223
- msgstr "Inställningar"
224
-
225
- #: inc/admin.php:2024
226
- msgid "Database Cleanup"
227
- msgstr "Databasrensning"
228
-
229
- #: inc/admin.php:1912
230
- msgid "CDN Settings"
231
- msgstr "CDN-inställningar"
232
-
233
- #: inc/admin.php:1875
234
- msgid "Exclude JS"
235
- msgstr "Exkludera JS"
236
-
237
- #: inc/admin.php:1855
238
- msgid "Exclude CSS"
239
- msgstr "Exkludera CSS"
240
-
241
- #: inc/admin.php:1837
242
- msgid "Exclude Cookies"
243
- msgstr "Exkludera cookies"
244
-
245
- #: inc/admin.php:1818
246
- msgid "Exclude User-Agents"
247
- msgstr "Exkludera användaragenter"
248
-
249
- #: inc/admin.php:1801
250
- msgid "Exclude Pages"
251
- msgstr "Exkludera sidor"
252
-
253
- #: inc/admin.php:1614
254
- msgid "Optimize Image Tool"
255
- msgstr "Bildoptimeringsverktyg"
256
-
257
- #: inc/admin.php:1497
258
- msgid "Timeout Rules"
259
- msgstr "Timeout-regler"
260
-
261
- #: inc/admin-toolbar.php:69 inc/admin.php:988 inc/admin.php:1458
262
- #: inc/admin.php:1463
263
- msgid "Delete Cache"
264
- msgstr "Ta bort cache"
265
-
266
- #: inc/admin.php:1418
267
- msgid "Cache Statistics"
268
- msgstr "Cachestatistik"
269
-
270
- #: templates/updatepost.php:53
271
- msgid "Clear Cache of Post / Page"
272
- msgstr "Rensa cache för inlägg/sida"
273
-
274
- #: templates/updatepost.php:29
275
- msgid "What do you want to happen after update a post or a page?"
276
- msgstr ""
277
- "Vad vill du ska hända efter att ha uppdaterat ett inlägg eller en sida?"
278
-
279
- #: templates/newpost.php:58
280
- msgid "Clear Cache of Pagination"
281
- msgstr "Rensa cache för paginering"
282
-
283
- #: templates/newpost.php:57 templates/updatepost.php:55
284
- msgid "Clear Cache of Post Tags"
285
- msgstr "Rensa cache för inläggsetiketter"
286
-
287
- #: templates/newpost.php:56 templates/updatepost.php:54
288
- msgid "Clear Cache of Post Categories"
289
- msgstr "Rensa cache för inläggskategorier"
290
-
291
- #: templates/newpost.php:55 templates/updatepost.php:56
292
- msgid "Clear Cache of Homepage"
293
- msgstr "Rensa cache för startsida"
294
-
295
- #: templates/newpost.php:51 templates/updatepost.php:49
296
- #: inc/admin-toolbar.php:74
297
- msgid "Clear All Cache"
298
- msgstr "Rensa all cache"
299
-
300
- #: templates/newpost.php:29
301
- msgid "What do you want to happen after publishing the new post?"
302
- msgstr "Vad vill du hända efter att du publicerat det nya inlägget?"
303
-
304
- #: templates/newpost.php:68 templates/preload.php:102
305
- #: templates/updatepost.php:64
306
- msgid "OK"
307
- msgstr "OK"
308
-
309
- #: templates/preload.php:92
310
- msgid "Restart After Completed"
311
- msgstr "Starta om efter att ha slutförts"
312
-
313
- #: templates/preload.php:87
314
- msgid "pages per minute"
315
- msgstr "sidor per minut"
316
-
317
- #: templates/preload.php:63
318
- msgid "Custom Taxonomies"
319
- msgstr "Anpassade taxonomier"
320
-
321
- #: templates/preload.php:58
322
- msgid "Custom Post Types"
323
- msgstr "Anpassade inläggstyper"
324
-
325
- #: templates/preload.php:53 templates/exclude.php:101 inc/admin.php:1779
326
- msgid "Attachments"
327
- msgstr "Bilagor"
328
-
329
- #: templates/preload.php:49 templates/exclude.php:95 inc/admin.php:1775
330
- msgid "Tags"
331
- msgstr "Etiketter"
332
-
333
- #: templates/preload.php:45 templates/exclude.php:97 inc/admin.php:1778
334
- msgid "Pages"
335
- msgstr "Sidor"
336
-
337
- #: templates/preload.php:41 templates/exclude.php:94 inc/admin.php:1774
338
- msgid "Categories"
339
- msgstr "Kategorier"
340
-
341
- #: templates/preload.php:37 templates/exclude.php:96 inc/admin.php:1777
342
- msgid "Posts"
343
- msgstr "Inlägg"
344
-
345
- #: templates/preload.php:33
346
- msgid "Homepage"
347
- msgstr "Startsida"
348
-
349
- #: inc/admin.php:1212 inc/admin.php:1220 inc/admin.php:1226 inc/admin.php:1232
350
- msgid "Reduce HTTP requests through combined js files"
351
- msgstr "Minska HTTP-förfrågningar genom kombinerade js-filer"
352
-
353
- #: inc/admin.php:1320 inc/admin.php:1334 inc/admin.php:1341
354
- msgid "Load images and iframes when they enter the browsers viewport"
355
- msgstr ""
356
- "Ladda bilder och iframes när de kommer in i webbläsarens visningsområde"
357
-
358
- #: inc/admin.php:1314 inc/admin.php:1333 inc/admin.php:1340
359
- msgid "Lazy Load"
360
- msgstr "Lazy Load"
361
-
362
- #: inc/admin.php:1291 inc/admin.php:1297 inc/admin.php:1304
363
- msgid "Load Google Fonts asynchronously"
364
- msgstr "Ladda Google Fonts asynkront"
365
-
366
- #: inc/admin.php:1290 inc/admin.php:1296 inc/admin.php:1303
367
- msgid "Google Fonts"
368
- msgstr "Google Fonts"
369
-
370
- #: inc/admin.php:1264 inc/admin.php:1270 inc/admin.php:1277
371
- msgid "Render Blocking Js"
372
- msgstr ""
373
-
374
- #: inc/admin.php:1256
375
- msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
376
- msgstr "Du kan ta bort emoji inline CSS och wp-emoji-release.min.js"
377
-
378
- #: inc/admin.php:1255
379
- msgid "Disable Emojis"
380
- msgstr "Inaktivera emojis"
381
-
382
- #: inc/admin.php:1250
383
- msgid "Reduce page load times for repeat visitors"
384
- msgstr "Minska sidans laddningstid för upprepade besökare"
385
-
386
- #: inc/admin.php:1249
387
- msgid "Browser Caching"
388
- msgstr "Webbläsarcaching"
389
-
390
- #: inc/admin.php:1238
391
- msgid "Reduce the size of files sent from your server"
392
- msgstr "Minska storleken på filer som skickas från din server"
393
-
394
- #: inc/admin.php:1237
395
- msgid "Gzip"
396
- msgstr "Gzip"
397
-
398
- #: inc/admin.php:1218 inc/admin.php:1225 inc/admin.php:1231
399
- msgid "Combine Js Plus"
400
- msgstr "Kombinera Js Plus"
401
-
402
- #: inc/admin.php:1211
403
- msgid "Combine Js"
404
- msgstr "Kombinera Js"
405
-
406
- #: inc/admin.php:1195 inc/admin.php:1200 inc/admin.php:1206
407
- msgid "You can decrease the size of js files"
408
- msgstr "Du kan minska storleken på js-filer"
409
-
410
- #: inc/admin.php:1194 inc/admin.php:1199 inc/admin.php:1205
411
- msgid "Minify Js"
412
- msgstr "Minifiera Js"
413
-
414
- #: inc/admin.php:1187
415
- msgid "Reduce HTTP requests through combined css files"
416
- msgstr "Minska HTTP-förfrågningar genom kombinerade CSS-filer"
417
-
418
- #: inc/admin.php:1186
419
- msgid "Combine Css"
420
- msgstr "Kombinera CSS"
421
-
422
- #: inc/admin.php:1175 inc/admin.php:1180
423
- msgid "More powerful minify css"
424
- msgstr "Kraftfullare minifierad CSS"
425
-
426
- #: inc/admin.php:1174 inc/admin.php:1179
427
- msgid "Minify Css Plus"
428
- msgstr "Minifiera CSS Plus"
429
-
430
- #: inc/admin.php:1166
431
- msgid "You can decrease the size of css files"
432
- msgstr "Du kan minska storleken på CSS-filer"
433
-
434
- #: inc/admin.php:1165
435
- msgid "Minify Css"
436
- msgstr "Minifiera CSS"
437
-
438
- #: inc/admin.php:1153 inc/admin.php:1158
439
- msgid "More powerful minify html"
440
- msgstr "Kraftfullare minifierad html"
441
-
442
- #: inc/admin.php:1152 inc/admin.php:1157
443
- msgid "Minify HTML Plus"
444
- msgstr "Minifiera HTML Plus"
445
-
446
- #: inc/admin.php:1146
447
- msgid "You can decrease the size of page"
448
- msgstr "Du kan minska storleken sidan"
449
-
450
- #: inc/admin.php:1145
451
- msgid "Minify HTML"
452
- msgstr "Minifiera HTML"
453
-
454
- #: inc/admin.php:1137
455
- msgid "Clear cache files when a post or page is updated"
456
- msgstr "Rensa cache-filer när ett inlägg eller en sida uppdateras"
457
-
458
- #: templates/updatepost.php:18 inc/admin.php:1136
459
- msgid "Update Post"
460
- msgstr "Uppdatera inlägg"
461
-
462
- #: inc/admin.php:1130
463
- msgid "Clear cache files when a post or page is published"
464
- msgstr "Rensa cache-filer när ett inlägg eller en sida publiceras"
465
-
466
- #: templates/newpost.php:18 inc/admin.php:1129
467
- msgid "New Post"
468
- msgstr "Nytt inlägg"
469
-
470
- #: inc/admin.php:1097 inc/admin.php:1123
471
- msgid "Create cache for mobile theme"
472
- msgstr "Skapa cache för mobiltema"
473
-
474
- #: inc/admin.php:1096 inc/admin.php:1122
475
- msgid "Mobile Theme"
476
- msgstr "Mobiltema"
477
-
478
- #: inc/admin.php:1091
479
- msgid "Don't show the cached version for desktop to mobile devices"
480
- msgstr ""
481
- "Visa inte den cachade versionen för stationär dator till mobila enheter"
482
-
483
- #: inc/admin.php:1090
484
- msgid "Mobile"
485
- msgstr "Mobil"
486
-
487
- #: inc/admin.php:1086
488
- msgid "Don't show the cached version for logged-in users"
489
- msgstr "Visa inte den cachade versionen för inloggade användare"
490
-
491
- #: inc/admin.php:1085
492
- msgid "Logged-in Users"
493
- msgstr "Inloggade användare"
494
-
495
- #: inc/admin.php:1076
496
- msgid "Create the cache of all the site automatically"
497
- msgstr "Skapa cache för hela webbplatsen automatiskt"
498
-
499
- #: templates/preload.php:20 inc/admin.php:1075
500
- msgid "Preload"
501
- msgstr "Förhandsladda"
502
-
503
- #: inc/admin.php:1047 inc/admin.php:1053 inc/admin.php:1060 inc/admin.php:1067
504
- msgid "Reduce the number of SQL queries"
505
- msgstr "Minska antalet SQL-frågor"
506
-
507
- #: inc/admin.php:1046 inc/admin.php:1052 inc/admin.php:1059 inc/admin.php:1066
508
- msgid "Widget Cache"
509
- msgstr "Widget-cache"
510
-
511
- #: inc/admin.php:1021
512
- msgid "Enable"
513
- msgstr "Aktivera"
514
-
515
- #: inc/admin.php:1020
516
- msgid "Cache System"
517
- msgstr "Cachesystem"
518
-
519
- #: wpFastestCache.php:1578
520
- msgid "Once Every 15 Days"
521
- msgstr "En gång var 15:e dag"
522
-
523
- #: wpFastestCache.php:1566
524
- msgid "Once Every 7 Days"
525
- msgstr "En gång var 7:e dag"
526
-
527
- #: wpFastestCache.php:1560
528
- msgid "Once Every 3 Days"
529
- msgstr "En gång var 3:e dag"
530
-
531
- #: wpFastestCache.php:1548
532
- msgid "Once Every 10 Hours"
533
- msgstr "En gång var 10:e timme"
534
-
535
- #: wpFastestCache.php:1542
536
- msgid "Once Every 9 Hours"
537
- msgstr "En gång var 9:e timme"
538
-
539
- #: wpFastestCache.php:1536
540
- msgid "Once Every 8 Hours"
541
- msgstr "En gång var 8:e timme"
542
-
543
- #: wpFastestCache.php:1530
544
- msgid "Once Every 7 Hours"
545
- msgstr "En gång var 7:e timme"
546
-
547
- #: wpFastestCache.php:1518
548
- msgid "Once Every 5 Hours"
549
- msgstr "En gång var 5:e timme"
550
-
551
- #: wpFastestCache.php:1512
552
- msgid "Once Every 4 Hours"
553
- msgstr "En gång var 4:e timme"
554
-
555
- #: wpFastestCache.php:1506
556
- msgid "Once Every 3 Hours"
557
- msgstr "En gång var 3:e timme"
558
-
559
- #: wpFastestCache.php:1500
560
- msgid "Once Every 2 Hours"
561
- msgstr "En gång varannan timme"
562
-
563
- #: wpFastestCache.php:1572
564
- msgid "Once Every 10 Days"
565
- msgstr "En gång var 10:e dag"
566
-
567
- #. Author URI of the plugin
568
- msgid "http://tr.linkedin.com/in/emrevona"
569
- msgstr "http://tr.linkedin.com/in/emrevona"
570
-
571
- #. Author of the plugin
572
- msgid "Emre Vona"
573
- msgstr "Emre Vona"
574
-
575
- #. Description of the plugin
576
- msgid "The simplest and fastest WP Cache system"
577
- msgstr "Det enklaste och snabbaste cachesystemet för WordPress"
578
-
579
- #. Plugin URI of the plugin
580
- msgid "http://wordpress.org/plugins/wp-fastest-cache/"
581
- msgstr "http://wordpress.org/plugins/wp-fastest-cache/"
582
-
583
- #. Plugin Name of the plugin
584
- msgid "WP Fastest Cache"
585
- msgstr "WP Fastest Cache"
586
-
587
- #: wpFastestCache.php:1590
588
- msgid "Once a Year"
589
- msgstr "En gång om året"
590
-
591
- #: wpFastestCache.php:1584
592
- msgid "Once a Month"
593
- msgstr "En gång i månaden"
594
-
595
- #: wpFastestCache.php:1554
596
- msgid "Once a Day"
597
- msgstr "En gång om dagen"
598
-
599
- #: wpFastestCache.php:1524
600
- msgid "Once Every 6 Hours"
601
- msgstr "En gång var 6:e timme"
602
-
603
- #: wpFastestCache.php:1494
604
- msgid "Once an Hour"
605
- msgstr "En gång i timmen"
606
-
607
- #: wpFastestCache.php:1488
608
- msgid "Twice an Hour"
609
- msgstr "Två gånger i timmen"
610
-
611
- #: wpFastestCache.php:1482
612
- msgid "Once Every 15 Minutes"
613
- msgstr "En gång var 15:e minut"
614
-
615
- #: wpFastestCache.php:1476
616
- msgid "Once Every 5 Minutes"
617
- msgstr "En gång var 5:e minut"
618
-
619
- #: wpFastestCache.php:1470
620
- msgid "Once Every 1 Minute"
621
- msgstr "En gång per minut"
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in Swedish
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-12-22 22:43: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=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: sv_SE\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "Rensa cache"
17
+
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
19
+ msgid "Eliminate render-blocking JavaScript resources"
20
+ msgstr "Eliminera renderingsblockerande JavaScript-resurser"
21
+
22
+ #: inc/admin.php:429 inc/admin.php:432
23
+ msgid "Options have been saved"
24
+ msgstr "Alternativ har sparats"
25
+
26
+ #: inc/admin.php:1786
27
+ msgid "Download"
28
+ msgstr "Ladda ner"
29
+
30
+ #: inc/admin.php:1781
31
+ msgid "Update"
32
+ msgstr "Uppdatera"
33
+
34
+ #: inc/admin.php:1775
35
+ msgid "Please don't delete the free version. Premium version works with the free version."
36
+ msgstr "Ta inte bort gratisversionen. Premiumversionen används tillsammans med gratisversionen."
37
+
38
+ #: inc/admin.php:1774
39
+ msgid "Get It Now!"
40
+ msgstr "Skaffa det nu!"
41
+
42
+ #: inc/admin.php:1768
43
+ msgid "You can download and update the premium when you want if you paid."
44
+ msgstr "Du kan ladda ner och uppdatera premium när du vill om du har betalat."
45
+
46
+ #: inc/admin.php:1765
47
+ msgid "Download & Update"
48
+ msgstr "Ladda ner och uppdatera"
49
+
50
+ #: inc/admin.php:1752
51
+ msgid "Buy"
52
+ msgstr "Köp"
53
+
54
+ #: inc/admin.php:1737
55
+ msgid "Purchased"
56
+ msgstr "Köpt"
57
+
58
+ #: inc/admin.php:1732
59
+ msgid "The download button will be available after paid. You can buy the premium version now."
60
+ msgstr "Nedladdningsknappen kommer att finnas tillgänglig efter betalning. Du kan köpa premiumversionen nu."
61
+
62
+ #: inc/admin.php:1731
63
+ msgid "Just"
64
+ msgstr "Endast"
65
+
66
+ #: inc/admin.php:1715
67
+ msgid "You need to pay before downloading the premium version."
68
+ msgstr "Du måste betala före nedladdning av premiumversionen."
69
+
70
+ #: inc/admin.php:1712
71
+ msgid "Checkout"
72
+ msgstr "Kassa"
73
+
74
+ #: inc/admin.php:1698
75
+ msgid "New Features"
76
+ msgstr "Nya funktioner"
77
+
78
+ #: inc/admin.php:1692
79
+ msgid "In the premium version there are some new features which speed up the sites more."
80
+ msgstr "I premiumversionen finns det några nya funktioner som snabbar upp webbplatserna mer."
81
+
82
+ #: inc/admin.php:1689
83
+ msgid "Discover Features"
84
+ msgstr "Utforska funktioner"
85
+
86
+ #: templates/exclude.php:106 inc/admin.php:1837
87
+ msgid "has Woocommerce Items in Cart"
88
+ msgstr "har Woocommerce-varor i varukorgen"
89
+
90
+ #: templates/exclude.php:105 inc/admin.php:1836
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "har Google Analytics-parametrar"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1829
95
+ msgid "Archives"
96
+ msgstr "Arkiv"
97
+
98
+ #: templates/timeout.php:189
99
+ msgid "Server Time"
100
+ msgstr "Servertid"
101
+
102
+ #: templates/timeout.php:169
103
+ msgid "delete the files"
104
+ msgstr "ta bort filerna"
105
+
106
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
+ msgid "Contains"
109
+ msgstr "Innehåller"
110
+
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
+ msgid "Is Equal To"
114
+ msgstr "Är lika med"
115
+
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
+ msgid "Starts With"
119
+ msgstr "Startar med"
120
+
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
+ msgid "Home Page"
124
+ msgstr "Startsida"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1555
127
+ msgid "All"
128
+ msgstr "Alla"
129
+
130
+ #: templates/exclude.php:66
131
+ msgid "Exclude Page Wizard"
132
+ msgstr "Guide för exkludering av sida"
133
+
134
+ #: templates/timeout.php:124
135
+ msgid "Then"
136
+ msgstr "Sedan"
137
+
138
+ #: templates/exclude.php:89 templates/timeout.php:91
139
+ msgid "If REQUEST_URI"
140
+ msgstr "Om REQUEST_URI"
141
+
142
+ #: templates/timeout.php:68
143
+ msgid "Cache Timeout Wizard"
144
+ msgstr "Guide för cache-timeout"
145
+
146
+ #: templates/lazy_load.php:9
147
+ msgid "Lazy Load Settings"
148
+ msgstr "Inställningar för Lazy Load"
149
+
150
+ #: templates/nginx_gzip.php:9
151
+ msgid "Enable Gzip"
152
+ msgstr "Aktivera Gzip"
153
+
154
+ #: templates/update_now.php:9
155
+ msgid "Please Update"
156
+ msgstr "Uppdatera"
157
+
158
+ #: templates/update_success.php:9
159
+ msgid "Success"
160
+ msgstr "Lyckades"
161
+
162
+ #: templates/disable_wp_cron.php:20
163
+ msgid "Warning"
164
+ msgstr "Varning"
165
+
166
+ #: inc/admin.php:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
+ msgid "Add New Rule"
169
+ msgstr "Lägg till ny regel"
170
+
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "Rensa cache och minifierad CSS/JS"
174
+
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
176
+ msgid "Only available in Premium version"
177
+ msgstr "Endast tillgängligt i premiumversion"
178
+
179
+ #: templates/timeout.php:141
180
+ msgid "Choose One"
181
+ msgstr "Välj en"
182
+
183
+ #: inc/admin.php:1532
184
+ msgid "All cache files will be removed as well"
185
+ msgstr "Alla cache-filer kommer också att tas bort"
186
+
187
+ #: inc/admin.php:1531
188
+ msgid "If you modify any css file, you have to delete minified css files"
189
+ msgstr "Om du modifierar någon CSS-fil måste du ta bort minifierade CSS-filer"
190
+
191
+ #: inc/admin.php:1519 inc/admin.php:1533 inc/admin.php:1534
192
+ msgid "Target folder"
193
+ msgstr "Målmapp"
194
+
195
+ #: inc/admin.php:1518
196
+ msgid "You can delete all cache files"
197
+ msgstr "Du kan ta bort alla cache-filer"
198
+
199
+ #: inc/admin.php:1059
200
+ msgid "Exclude"
201
+ msgstr "Exkludera"
202
+
203
+ #: inc/admin.php:1057
204
+ msgid "Image Optimization"
205
+ msgstr "Bildoptimering"
206
+
207
+ #: inc/admin.php:1054
208
+ msgid "Settings"
209
+ msgstr "Inställningar"
210
+
211
+ #: inc/admin.php:2077
212
+ msgid "Database Cleanup"
213
+ msgstr "Databasrensning"
214
+
215
+ #: inc/admin.php:1965
216
+ msgid "CDN Settings"
217
+ msgstr "CDN-inställningar"
218
+
219
+ #: inc/admin.php:1928
220
+ msgid "Exclude JS"
221
+ msgstr "Exkludera JS"
222
+
223
+ #: inc/admin.php:1908
224
+ msgid "Exclude CSS"
225
+ msgstr "Exkludera CSS"
226
+
227
+ #: inc/admin.php:1890
228
+ msgid "Exclude Cookies"
229
+ msgstr "Exkludera cookies"
230
+
231
+ #: inc/admin.php:1871
232
+ msgid "Exclude User-Agents"
233
+ msgstr "Exkludera användaragenter"
234
+
235
+ #: inc/admin.php:1854
236
+ msgid "Exclude Pages"
237
+ msgstr "Exkludera sidor"
238
+
239
+ #: inc/admin.php:1665
240
+ msgid "Optimize Image Tool"
241
+ msgstr "Bildoptimeringsverktyg"
242
+
243
+ #: inc/admin.php:1548
244
+ msgid "Timeout Rules"
245
+ msgstr "Timeout-regler"
246
+
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
+ msgid "Delete Cache"
250
+ msgstr "Rensa cache"
251
+
252
+ #: inc/admin.php:1469
253
+ msgid "Cache Statistics"
254
+ msgstr "Cachestatistik"
255
+
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "Rensa cache för inlägg/sida"
259
+
260
+ #: templates/updatepost.php:29
261
+ msgid "What do you want to happen after update a post or a page?"
262
+ msgstr "Vad vill du ska hända efter att ha uppdaterat ett inlägg eller en sida?"
263
+
264
+ #: templates/newpost.php:58
265
+ msgid "Clear Cache of Pagination"
266
+ msgstr "Rensa cache för paginering"
267
+
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "Rensa cache för inläggsetiketter"
271
+
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "Rensa cache för inläggskategorier"
275
+
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "Rensa cache för startsida"
279
+
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
+ #: inc/admin-toolbar.php:74
282
+ msgid "Clear All Cache"
283
+ msgstr "Rensa all cache"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "Vad vill du hända efter att du publicerat det nya inlägget?"
288
+
289
+ #: templates/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
291
+ msgid "OK"
292
+ msgstr "OK"
293
+
294
+ #: templates/preload.php:92
295
+ msgid "Restart After Completed"
296
+ msgstr "Starta om efter att ha slutförts"
297
+
298
+ #: templates/preload.php:87
299
+ msgid "pages per minute"
300
+ msgstr "sidor per minut"
301
+
302
+ #: templates/preload.php:63
303
+ msgid "Custom Taxonomies"
304
+ msgstr "Anpassade taxonomier"
305
+
306
+ #: templates/preload.php:58
307
+ msgid "Custom Post Types"
308
+ msgstr "Anpassade inläggstyper"
309
+
310
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
+ msgid "Attachments"
312
+ msgstr "Bilagor"
313
+
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
+ msgid "Tags"
316
+ msgstr "Etiketter"
317
+
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
+ msgid "Pages"
320
+ msgstr "Sidor"
321
+
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
+ msgid "Categories"
324
+ msgstr "Kategorier"
325
+
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
327
+ msgid "Posts"
328
+ msgstr "Inlägg"
329
+
330
+ #: templates/preload.php:33
331
+ msgid "Homepage"
332
+ msgstr "Startsida"
333
+
334
+ #: inc/admin.php:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "Minska HTTP-förfrågningar genom kombinerade js-filer"
337
+
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
339
+ msgid "Load images and iframes when they enter the browsers viewport"
340
+ msgstr "Ladda bilder och iframes när de kommer in i webbläsarens visningsområde"
341
+
342
+ #: inc/admin.php:1365 inc/admin.php:1384 inc/admin.php:1391
343
+ msgid "Lazy Load"
344
+ msgstr "Lazy Load"
345
+
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "Ladda Google Fonts asynkront"
349
+
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
+ msgid "Google Fonts"
352
+ msgstr "Google Fonts"
353
+
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
+ msgid "Render Blocking Js"
356
+ msgstr ""
357
+
358
+ #: inc/admin.php:1307
359
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "Du kan ta bort emoji inline CSS och wp-emoji-release.min.js"
361
+
362
+ #: inc/admin.php:1306
363
+ msgid "Disable Emojis"
364
+ msgstr "Inaktivera emojis"
365
+
366
+ #: inc/admin.php:1301
367
+ msgid "Reduce page load times for repeat visitors"
368
+ msgstr "Minska sidans laddningstid för upprepade besökare"
369
+
370
+ #: inc/admin.php:1300
371
+ msgid "Browser Caching"
372
+ msgstr "Webbläsarcaching"
373
+
374
+ #: inc/admin.php:1289
375
+ msgid "Reduce the size of files sent from your server"
376
+ msgstr "Minska storleken filer som skickas från din server"
377
+
378
+ #: inc/admin.php:1288
379
+ msgid "Gzip"
380
+ msgstr "Gzip"
381
+
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
+ msgid "Combine Js Plus"
384
+ msgstr "Kombinera Js Plus"
385
+
386
+ #: inc/admin.php:1262
387
+ msgid "Combine Js"
388
+ msgstr "Kombinera Js"
389
+
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
391
+ msgid "You can decrease the size of js files"
392
+ msgstr "Du kan minska storleken på js-filer"
393
+
394
+ #: inc/admin.php:1245 inc/admin.php:1250 inc/admin.php:1256
395
+ msgid "Minify Js"
396
+ msgstr "Minifiera Js"
397
+
398
+ #: inc/admin.php:1238
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "Minska HTTP-förfrågningar genom kombinerade CSS-filer"
401
+
402
+ #: inc/admin.php:1237
403
+ msgid "Combine Css"
404
+ msgstr "Kombinera CSS"
405
+
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
+ msgid "More powerful minify css"
408
+ msgstr "Kraftfullare minifierad CSS"
409
+
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
+ msgid "Minify Css Plus"
412
+ msgstr "Minifiera CSS Plus"
413
+
414
+ #: inc/admin.php:1217
415
+ msgid "You can decrease the size of css files"
416
+ msgstr "Du kan minska storleken CSS-filer"
417
+
418
+ #: inc/admin.php:1216
419
+ msgid "Minify Css"
420
+ msgstr "Minifiera CSS"
421
+
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
+ msgid "More powerful minify html"
424
+ msgstr "Kraftfullare minifierad html"
425
+
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
+ msgid "Minify HTML Plus"
428
+ msgstr "Minifiera HTML Plus"
429
+
430
+ #: inc/admin.php:1197
431
+ msgid "You can decrease the size of page"
432
+ msgstr "Du kan minska storleken på sidan"
433
+
434
+ #: inc/admin.php:1196
435
+ msgid "Minify HTML"
436
+ msgstr "Minifiera HTML"
437
+
438
+ #: inc/admin.php:1188
439
+ msgid "Clear cache files when a post or page is updated"
440
+ msgstr "Rensa cache-filer när ett inlägg eller en sida uppdateras"
441
+
442
+ #: templates/updatepost.php:18 inc/admin.php:1187
443
+ msgid "Update Post"
444
+ msgstr "Uppdatera inlägg"
445
+
446
+ #: inc/admin.php:1181
447
+ msgid "Clear cache files when a post or page is published"
448
+ msgstr "Rensa cache-filer när ett inlägg eller en sida publiceras"
449
+
450
+ #: templates/newpost.php:18 inc/admin.php:1180
451
+ msgid "New Post"
452
+ msgstr "Nytt inlägg"
453
+
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "Skapa cache för mobiltema"
457
+
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
+ msgid "Mobile Theme"
460
+ msgstr "Mobiltema"
461
+
462
+ #: inc/admin.php:1142
463
+ msgid "Don't show the cached version for desktop to mobile devices"
464
+ msgstr "Visa inte den cachade versionen för stationär dator till mobila enheter"
465
+
466
+ #: inc/admin.php:1141
467
+ msgid "Mobile"
468
+ msgstr "Mobil"
469
+
470
+ #: inc/admin.php:1137
471
+ msgid "Don't show the cached version for logged-in users"
472
+ msgstr "Visa inte den cachade versionen för inloggade användare"
473
+
474
+ #: inc/admin.php:1136
475
+ msgid "Logged-in Users"
476
+ msgstr "Inloggade användare"
477
+
478
+ #: inc/admin.php:1127
479
+ msgid "Create the cache of all the site automatically"
480
+ msgstr "Skapa cache för hela webbplatsen automatiskt"
481
+
482
+ #: templates/preload.php:20 inc/admin.php:1126
483
+ msgid "Preload"
484
+ msgstr "Förhandsladda"
485
+
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "Minska antalet SQL-frågor"
489
+
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
+ msgid "Widget Cache"
492
+ msgstr "Widget-cache"
493
+
494
+ #: inc/admin.php:1088
495
+ msgid "Enable"
496
+ msgstr "Aktivera"
497
+
498
+ #: inc/admin.php:1087
499
+ msgid "Cache System"
500
+ msgstr "Cachesystem"
501
+
502
+ #: wpFastestCache.php:1611
503
+ msgid "Once Every 15 Days"
504
+ msgstr "En gång var 15:e dag"
505
+
506
+ #: wpFastestCache.php:1599
507
+ msgid "Once Every 7 Days"
508
+ msgstr "En gång var 7:e dag"
509
+
510
+ #: wpFastestCache.php:1593
511
+ msgid "Once Every 3 Days"
512
+ msgstr "En gång var 3:e dag"
513
+
514
+ #: wpFastestCache.php:1581
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "En gång var 10:e timme"
517
+
518
+ #: wpFastestCache.php:1575
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "En gång var 9:e timme"
521
+
522
+ #: wpFastestCache.php:1569
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "En gång var 8:e timme"
525
+
526
+ #: wpFastestCache.php:1563
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "En gång var 7:e timme"
529
+
530
+ #: wpFastestCache.php:1551
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "En gång var 5:e timme"
533
+
534
+ #: wpFastestCache.php:1545
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "En gång var 4:e timme"
537
+
538
+ #: wpFastestCache.php:1539
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "En gång var 3:e timme"
541
+
542
+ #: wpFastestCache.php:1533
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "En gång varannan timme"
545
+
546
+ #: wpFastestCache.php:1605
547
+ msgid "Once Every 10 Days"
548
+ msgstr "En gång var 10:e dag"
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 "Det enklaste och snabbaste cachesystemet för WordPress"
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 "WP Fastest Cache"
569
+
570
+ #: wpFastestCache.php:1623
571
+ msgid "Once a Year"
572
+ msgstr "En gång om året"
573
+
574
+ #: wpFastestCache.php:1617
575
+ msgid "Once a Month"
576
+ msgstr "En gång i månaden"
577
+
578
+ #: wpFastestCache.php:1587
579
+ msgid "Once a Day"
580
+ msgstr "En gång om dagen"
581
+
582
+ #: wpFastestCache.php:1557
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "En gång var 6:e timme"
585
+
586
+ #: wpFastestCache.php:1527
587
+ msgid "Once an Hour"
588
+ msgstr "En gång i timmen"
589
+
590
+ #: wpFastestCache.php:1521
591
+ msgid "Twice an Hour"
592
+ msgstr "Två gånger i timmen"
593
+
594
+ #: wpFastestCache.php:1515
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "En gång var 15:e minut"
597
+
598
+ #: wpFastestCache.php:1509
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "En gång var 5:e minut"
601
+
602
+ #: wpFastestCache.php:1503
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "En gång per minut"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wp-fastest-cache-tr_TR.mo CHANGED
Binary file
languages/wp-fastest-cache-tr_TR.po CHANGED
@@ -1,620 +1,604 @@
1
- # Copyright (C) 2016 WP Fastest Cache
2
- # This file is distributed under the same license as the WP Fastest Cache package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: WP Fastest Cache 0.8.5.5\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-fastest-cache\n"
7
- "POT-Creation-Date: 2019-10-05 12:57:35+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2019-10-05 13:01+0000\n"
12
- "Last-Translator: admin <a@a.com>\n"
13
- "Language-Team: Türkçe\n"
14
- "Language: tr-TR\n"
15
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Generator: Loco https://localise.biz/\n"
17
- "X-Loco-Version: 2.3.0; wp-5.2.3"
18
-
19
- #: inc/admin-toolbar.php:69 inc/admin.php:988 inc/admin.php:1458
20
- #: inc/admin.php:1463
21
- msgid "Delete Cache"
22
- msgstr "Önbellek Temizleme"
23
-
24
- #: inc/admin-toolbar.php:74 templates/newpost.php:51
25
- #: templates/updatepost.php:49
26
- msgid "Clear All Cache"
27
- msgstr "Tüm Önbelleği Temizle"
28
-
29
- #: inc/admin-toolbar.php:81 inc/admin.php:1476
30
- msgid "Delete Cache and Minified CSS/JS"
31
- msgstr "Önbellek ve küçültülen CSS/JS'leri sil"
32
-
33
- #: inc/admin.php:429 inc/admin.php:432
34
- msgid "Options have been saved"
35
- msgstr "Seçenekler kaydedildi"
36
-
37
- #: inc/admin.php:987
38
- msgid "Settings"
39
- msgstr "Ayarlar"
40
-
41
- #: inc/admin.php:990
42
- msgid "Image Optimization"
43
- msgstr "Resim Optimizasyonu"
44
-
45
- #: inc/admin.php:992
46
- msgid "Exclude"
47
- msgstr "Hariç"
48
-
49
- #: inc/admin.php:1020
50
- msgid "Cache System"
51
- msgstr "Önbellek"
52
-
53
- #: inc/admin.php:1021
54
- msgid "Enable"
55
- msgstr "Aktif"
56
-
57
- #: inc/admin.php:1046 inc/admin.php:1052 inc/admin.php:1059 inc/admin.php:1066
58
- msgid "Widget Cache"
59
- msgstr "Bileşen Önbellek"
60
-
61
- #: inc/admin.php:1047 inc/admin.php:1053 inc/admin.php:1060 inc/admin.php:1067
62
- msgid "Reduce the number of SQL queries"
63
- msgstr "SQL sorgu sayısını azalt"
64
-
65
- #: inc/admin.php:1075 templates/preload.php:20
66
- msgid "Preload"
67
- msgstr "Önyükleme"
68
-
69
- #: inc/admin.php:1076
70
- msgid "Create the cache of all the site automatically"
71
- msgstr "Tüm sitenin önbelleğini otomatik oluştur"
72
-
73
- #: inc/admin.php:1085
74
- msgid "Logged-in Users"
75
- msgstr "Giriş Yapan Kullanıcı"
76
-
77
- #: inc/admin.php:1086
78
- msgid "Don't show the cached version for logged-in users"
79
- msgstr "Giriş yapan kullanıcılara önbelleği gösterme"
80
-
81
- #: inc/admin.php:1090
82
- msgid "Mobile"
83
- msgstr "Mobil"
84
-
85
- #: inc/admin.php:1091
86
- msgid "Don't show the cached version for desktop to mobile devices"
87
- msgstr "Mobil kullanıcılara masaüstü için oluşturulan önbelleği gösterme"
88
-
89
- #: inc/admin.php:1096 inc/admin.php:1122
90
- msgid "Mobile Theme"
91
- msgstr "Mobil Tema"
92
-
93
- #: inc/admin.php:1097 inc/admin.php:1123
94
- msgid "Create cache for mobile theme"
95
- msgstr "Mobil temalar için önbellek oluşturma"
96
-
97
- #: inc/admin.php:1129 templates/newpost.php:18
98
- msgid "New Post"
99
- msgstr "Yeni Yazı"
100
-
101
- #: inc/admin.php:1130
102
- msgid "Clear cache files when a post or page is published"
103
- msgstr "Yeni bir yazı veya sayfa yayımlandığında önbelleği temizle"
104
-
105
- #: inc/admin.php:1136 templates/updatepost.php:18
106
- msgid "Update Post"
107
- msgstr "Yazı Güncelleme"
108
-
109
- #: inc/admin.php:1137
110
- msgid "Clear cache files when a post or page is updated"
111
- msgstr "Bir yazı ya da sayfa düzenlendiğinde önbelleği temizle"
112
-
113
- #: inc/admin.php:1145
114
- msgid "Minify HTML"
115
- msgstr "HTML Küçült"
116
-
117
- #: inc/admin.php:1146
118
- msgid "You can decrease the size of page"
119
- msgstr "Sayfanın boyutunu küçültebilirsiniz"
120
-
121
- #: inc/admin.php:1152 inc/admin.php:1157
122
- msgid "Minify HTML Plus"
123
- msgstr "HTML Küçült Ektra"
124
-
125
- #: inc/admin.php:1153 inc/admin.php:1158
126
- msgid "More powerful minify html"
127
- msgstr "Daha güçlü html küçültme aracı"
128
-
129
- #: inc/admin.php:1165
130
- msgid "Minify Css"
131
- msgstr "Css Küçült"
132
-
133
- #: inc/admin.php:1166
134
- msgid "You can decrease the size of css files"
135
- msgstr "CSS dosyalarının boyununu küçültebilirsiniz"
136
-
137
- #: inc/admin.php:1174 inc/admin.php:1179
138
- msgid "Minify Css Plus"
139
- msgstr "CSS Küçült"
140
-
141
- #: inc/admin.php:1175 inc/admin.php:1180
142
- msgid "More powerful minify css"
143
- msgstr "Daha güçlü css küçültme aracı"
144
-
145
- #: inc/admin.php:1186
146
- msgid "Combine Css"
147
- msgstr "Css Birleştir"
148
-
149
- #: inc/admin.php:1187
150
- msgid "Reduce HTTP requests through combined css files"
151
- msgstr "CSS dosyalarını birleştirerek HTTP isteklerini azaltın"
152
-
153
- #: inc/admin.php:1194 inc/admin.php:1199 inc/admin.php:1205
154
- msgid "Minify Js"
155
- msgstr "JS Küçült"
156
-
157
- #: inc/admin.php:1195 inc/admin.php:1200 inc/admin.php:1206
158
- msgid "You can decrease the size of js files"
159
- msgstr "JS dosyalarının boyununu küçültebilirsiniz"
160
-
161
- #: inc/admin.php:1211
162
- msgid "Combine Js"
163
- msgstr "Js Birleştir"
164
-
165
- #: inc/admin.php:1212 inc/admin.php:1220 inc/admin.php:1226 inc/admin.php:1232
166
- msgid "Reduce HTTP requests through combined js files"
167
- msgstr "JS dosyalarını birleştirerek HTTP isteklerini azaltın"
168
-
169
- #: inc/admin.php:1218 inc/admin.php:1225 inc/admin.php:1231
170
- msgid "Combine Js Plus"
171
- msgstr "Js Birleştir Ekstra"
172
-
173
- #: inc/admin.php:1237
174
- msgid "Gzip"
175
- msgstr "Gzip"
176
-
177
- #: inc/admin.php:1238
178
- msgid "Reduce the size of files sent from your server"
179
- msgstr "Sunucudan gönderilen dosyaların boyutunu küçült"
180
-
181
- #: inc/admin.php:1249
182
- msgid "Browser Caching"
183
- msgstr "Tarayıcı Önbellek"
184
-
185
- #: inc/admin.php:1250
186
- msgid "Reduce page load times for repeat visitors"
187
- msgstr "Sürekli gelen kullanıcılar için sayfa yüklenme hızını azalt"
188
-
189
- #: inc/admin.php:1255
190
- msgid "Disable Emojis"
191
- msgstr "Emojileri Kapat"
192
-
193
- #: inc/admin.php:1256
194
- msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
195
- msgstr ""
196
- "emoji inline css ve wp-emoji-release.min.js kaynağını kaldırabilirsiniz"
197
-
198
- #: inc/admin.php:1264 inc/admin.php:1270 inc/admin.php:1277
199
- msgid "Render Blocking Js"
200
- msgstr "Oluşturma Engelleyici Js"
201
-
202
- #: inc/admin.php:1265 inc/admin.php:1271 inc/admin.php:1278
203
- msgid "Eliminate render-blocking JavaScript resources"
204
- msgstr "Oluşturmayı engelleyen JavaScript kaynaklarını ortadan kaldırın"
205
-
206
- #: inc/admin.php:1290 inc/admin.php:1296 inc/admin.php:1303
207
- msgid "Google Fonts"
208
- msgstr "Google Fonts"
209
-
210
- #: inc/admin.php:1291 inc/admin.php:1297 inc/admin.php:1304
211
- msgid "Load Google Fonts asynchronously"
212
- msgstr "Google Fontlarını eş zamansız (asenkron) olarak yükle"
213
-
214
- #: inc/admin.php:1314 inc/admin.php:1333 inc/admin.php:1340
215
- msgid "Lazy Load"
216
- msgstr "Lazy Load"
217
-
218
- #: inc/admin.php:1320 inc/admin.php:1334 inc/admin.php:1341
219
- msgid "Load images and iframes when they enter the browsers viewport"
220
- msgstr "Resimleri ve iframleri tarayıcının görünen alanına gelince yükle"
221
-
222
- #: inc/admin.php:1411 inc/admin.php:2039 inc/admin.php:2260
223
- msgid "Only available in Premium version"
224
- msgstr "Sadece Premium versiyonda mevcut"
225
-
226
- #: inc/admin.php:1418
227
- msgid "Cache Statistics"
228
- msgstr "Önbellek İstatistikleri"
229
-
230
- #: inc/admin.php:1467
231
- msgid "You can delete all cache files"
232
- msgstr "Tüm önbelleği temizleyebilirsiniz"
233
-
234
- #: inc/admin.php:1468 inc/admin.php:1482 inc/admin.php:1483
235
- msgid "Target folder"
236
- msgstr "Hedef Klasör"
237
-
238
- #: inc/admin.php:1480
239
- msgid "If you modify any css file, you have to delete minified css files"
240
- msgstr ""
241
- "Eğer bir css dosyası değiştirdiyseniz, küçültülmüş olan css/js dosyalarını "
242
- "da temizlemelisiniz"
243
-
244
- #: inc/admin.php:1481
245
- msgid "All cache files will be removed as well"
246
- msgstr "Tüm önbellek dosyaları da silinecek"
247
-
248
- #: inc/admin.php:1497
249
- msgid "Timeout Rules"
250
- msgstr "Zaman Aşımı Kuralları"
251
-
252
- #: inc/admin.php:1504 templates/timeout.php:95
253
- msgid "All"
254
- msgstr "Tümü"
255
-
256
- #: inc/admin.php:1505 inc/admin.php:1773 templates/exclude.php:93
257
- #: templates/timeout.php:96
258
- msgid "Home Page"
259
- msgstr "Ana Sayfa"
260
-
261
- #: inc/admin.php:1506 inc/admin.php:1780 templates/exclude.php:102
262
- #: templates/timeout.php:97
263
- msgid "Starts With"
264
- msgstr "ile başlıyorsa"
265
-
266
- #: inc/admin.php:1507 inc/admin.php:1781 templates/exclude.php:103
267
- #: templates/timeout.php:99
268
- msgid "Contains"
269
- msgstr "İçeriyorsa"
270
-
271
- #: inc/admin.php:1508 inc/admin.php:1782 templates/exclude.php:104
272
- #: templates/timeout.php:98
273
- msgid "Is Equal To"
274
- msgstr "Eşit ise"
275
-
276
- #: inc/admin.php:1540 inc/admin.php:1805 inc/admin.php:1822 inc/admin.php:1841
277
- #: inc/admin.php:1859 inc/admin.php:1879
278
- msgid "Add New Rule"
279
- msgstr "Yeni Kural Ekle"
280
-
281
- #: inc/admin.php:1614
282
- msgid "Optimize Image Tool"
283
- msgstr "Resim Optimizasyon Aracı"
284
-
285
- #: inc/admin.php:1638
286
- msgid "Discover Features"
287
- msgstr "Özellikleri Keşfet"
288
-
289
- #: inc/admin.php:1641
290
- msgid ""
291
- "In the premium version there are some new features which speed up the sites "
292
- "more."
293
- msgstr ""
294
- "Premium versiyonda siteleri daha fazla hızlandıran bazı yeni özellikler var."
295
-
296
- #: inc/admin.php:1647
297
- msgid "New Features"
298
- msgstr "Yeni Özellikler"
299
-
300
- #: inc/admin.php:1661
301
- msgid "Checkout"
302
- msgstr "Ödeme"
303
-
304
- #: inc/admin.php:1664
305
- msgid "You need to pay before downloading the premium version."
306
- msgstr "Premium sürümü indirmeden önce ödeme yapmanız gerekiyor."
307
-
308
- #: inc/admin.php:1678
309
- msgid "Just"
310
- msgstr "Sadece"
311
-
312
- #: inc/admin.php:1679
313
- msgid ""
314
- "The download button will be available after paid. You can buy the premium "
315
- "version now."
316
- msgstr ""
317
- "İndirme düğmesi ödeme yaptıktan sonra aktif olacaktır. Şimdi premium "
318
- "sürümünü satın alabilirsiniz."
319
-
320
- #: inc/admin.php:1684
321
- msgid "Purchased"
322
- msgstr "Satın Alındı"
323
-
324
- #: inc/admin.php:1699
325
- msgid "Buy"
326
- msgstr "Satın Al"
327
-
328
- #: inc/admin.php:1712
329
- msgid "Download & Update"
330
- msgstr "İndir & Güncelle"
331
-
332
- #: inc/admin.php:1715
333
- msgid "You can download and update the premium when you want if you paid."
334
- msgstr ""
335
- "Ödeme yaptıysanız istediğiniz zaman premium'u indirebilir ve "
336
- "güncelleyebilirsiniz."
337
-
338
- #: inc/admin.php:1721
339
- msgid "Get It Now!"
340
- msgstr "Hemen Al!"
341
-
342
- #: inc/admin.php:1722
343
- msgid ""
344
- "Please don't delete the free version. Premium version works with the free "
345
- "version."
346
- msgstr ""
347
- "Lütfen ücretsiz sürümü silmeyin. Premium sürüm ücretsiz sürümü ile çalışır."
348
-
349
- #: inc/admin.php:1728
350
- msgid "Update"
351
- msgstr "Güncelle"
352
-
353
- #: inc/admin.php:1733
354
- msgid "Download"
355
- msgstr "İndir"
356
-
357
- #: inc/admin.php:1774 templates/exclude.php:94 templates/preload.php:41
358
- msgid "Categories"
359
- msgstr "Kategoriler"
360
-
361
- #: inc/admin.php:1775 templates/exclude.php:95 templates/preload.php:49
362
- msgid "Tags"
363
- msgstr "Etiketler"
364
-
365
- #: inc/admin.php:1776 templates/exclude.php:99
366
- msgid "Archives"
367
- msgstr "Arşivler"
368
-
369
- #: inc/admin.php:1777 templates/exclude.php:96 templates/preload.php:37
370
- msgid "Posts"
371
- msgstr "Yazılar"
372
-
373
- #: inc/admin.php:1778 templates/exclude.php:97 templates/preload.php:45
374
- msgid "Pages"
375
- msgstr "Sayfalar"
376
-
377
- #: inc/admin.php:1779 templates/exclude.php:101 templates/preload.php:53
378
- msgid "Attachments"
379
- msgstr "Ekler"
380
-
381
- #: inc/admin.php:1783 templates/exclude.php:105
382
- msgid "has Google Analytics Parameters"
383
- msgstr "Google Analytics Parametereleri içeriyorsa"
384
-
385
- #: inc/admin.php:1784 templates/exclude.php:106
386
- msgid "has Woocommerce Items in Cart"
387
- msgstr ""
388
-
389
- #: inc/admin.php:1801
390
- msgid "Exclude Pages"
391
- msgstr "Hariç Tutulan Sayfalar"
392
-
393
- #: inc/admin.php:1818
394
- msgid "Exclude User-Agents"
395
- msgstr "Hariç Tutulan User-Agent"
396
-
397
- #: inc/admin.php:1837
398
- msgid "Exclude Cookies"
399
- msgstr "Hariç Tutulan Cookie"
400
-
401
- #: inc/admin.php:1855
402
- msgid "Exclude CSS"
403
- msgstr "Hariç Tutulan CSS"
404
-
405
- #: inc/admin.php:1875
406
- msgid "Exclude JS"
407
- msgstr "Hariç Tutulan JS"
408
-
409
- #: inc/admin.php:1912
410
- msgid "CDN Settings"
411
- msgstr "CDN Ayarları"
412
-
413
- #: inc/admin.php:2024
414
- msgid "Database Cleanup"
415
- msgstr "Veritabanı Temizleme"
416
-
417
- #: templates/disable_wp_cron.php:20
418
- msgid "Warning"
419
- msgstr "Uyarı"
420
-
421
- #: templates/exclude.php:66
422
- msgid "Exclude Page Wizard"
423
- msgstr ""
424
-
425
- #: templates/exclude.php:89 templates/timeout.php:91
426
- msgid "If REQUEST_URI"
427
- msgstr "Eğer REQUEST_URI"
428
-
429
- #: templates/lazy_load.php:9
430
- msgid "Lazy Load Settings"
431
- msgstr "Lazy Load Ayarları"
432
-
433
- #: templates/newpost.php:29
434
- msgid "What do you want to happen after publishing the new post?"
435
- msgstr "Yeni yazı yayımlandıktan sonra ne olmasını istiyorsun?"
436
-
437
- #: templates/newpost.php:55 templates/updatepost.php:56
438
- msgid "Clear Cache of Homepage"
439
- msgstr "Ana Sayfanın önbelleğini temizle"
440
-
441
- #: templates/newpost.php:56 templates/updatepost.php:54
442
- msgid "Clear Cache of Post Categories"
443
- msgstr "Tüm kategorilerin önbelleğini temizle"
444
-
445
- #: templates/newpost.php:57 templates/updatepost.php:55
446
- msgid "Clear Cache of Post Tags"
447
- msgstr "Tüm etiketlerin önbelleğini temizle"
448
-
449
- #: templates/newpost.php:58
450
- msgid "Clear Cache of Pagination"
451
- msgstr ""
452
-
453
- #: templates/newpost.php:68 templates/preload.php:102
454
- #: templates/updatepost.php:64
455
- msgid "OK"
456
- msgstr "Tamam"
457
-
458
- #: templates/nginx_gzip.php:9
459
- msgid "Enable Gzip"
460
- msgstr "Gzip Aktivasyonu"
461
-
462
- #: templates/preload.php:33
463
- msgid "Homepage"
464
- msgstr "Ana Sayfa"
465
-
466
- #: templates/preload.php:58
467
- msgid "Custom Post Types"
468
- msgstr "Özel İçerik Türleri"
469
-
470
- #: templates/preload.php:63
471
- msgid "Custom Taxonomies"
472
- msgstr ""
473
-
474
- #: templates/preload.php:87
475
- msgid "pages per minute"
476
- msgstr "sayfa her dakika"
477
-
478
- #: templates/preload.php:92
479
- msgid "Restart After Completed"
480
- msgstr "Tekrar Başlat Tamamlandıktan Sonra"
481
-
482
- #: templates/timeout.php:68
483
- msgid "Cache Timeout Wizard"
484
- msgstr "Önbellek Zaman Aşımı Sihirbazı"
485
-
486
- #: templates/timeout.php:124
487
- msgid "Then"
488
- msgstr "O zaman"
489
-
490
- #: templates/timeout.php:137
491
- msgid "Choose One"
492
- msgstr "Birini Seç"
493
-
494
- #: templates/timeout.php:165
495
- msgid "delete the files"
496
- msgstr "tüm dosyaları temizle"
497
-
498
- #: templates/timeout.php:185
499
- msgid "Server Time"
500
- msgstr "Sunucu Zamanı"
501
-
502
- #: templates/update_now.php:9
503
- msgid "Please Update"
504
- msgstr "Lütfen Güncelleştir"
505
-
506
- #: templates/update_success.php:9
507
- msgid "Success"
508
- msgstr "Başarılı"
509
-
510
- #: templates/updatepost.php:29
511
- msgid "What do you want to happen after update a post or a page?"
512
- msgstr "Yazı veya sayfa güncellendikten sonra ne olmasını istiyorsun?"
513
-
514
- #: templates/updatepost.php:53
515
- msgid "Clear Cache of Post / Page"
516
- msgstr "Yazı ya da sayfanın önbelleğini temizle"
517
-
518
- #: wpFastestCache.php:1470
519
- msgid "Once Every 1 Minute"
520
- msgstr "Her dakika"
521
-
522
- #: wpFastestCache.php:1476
523
- msgid "Once Every 5 Minutes"
524
- msgstr "5 dakikada bir kez"
525
-
526
- #: wpFastestCache.php:1482
527
- msgid "Once Every 15 Minutes"
528
- msgstr "15 dakikada bir kez"
529
-
530
- #: wpFastestCache.php:1488
531
- msgid "Twice an Hour"
532
- msgstr "Saatte iki kez"
533
-
534
- #: wpFastestCache.php:1494
535
- msgid "Once an Hour"
536
- msgstr "Saatte bir kez"
537
-
538
- #: wpFastestCache.php:1500
539
- msgid "Once Every 2 Hours"
540
- msgstr "2 saatte bir kez"
541
-
542
- #: wpFastestCache.php:1506
543
- msgid "Once Every 3 Hours"
544
- msgstr "3 saatte bir kez"
545
-
546
- #: wpFastestCache.php:1512
547
- msgid "Once Every 4 Hours"
548
- msgstr "4 saatte bir kez"
549
-
550
- #: wpFastestCache.php:1518
551
- msgid "Once Every 5 Hours"
552
- msgstr "5 saatte bir kez"
553
-
554
- #: wpFastestCache.php:1524
555
- msgid "Once Every 6 Hours"
556
- msgstr "6 saatte bir kez"
557
-
558
- #: wpFastestCache.php:1530
559
- msgid "Once Every 7 Hours"
560
- msgstr "7 saatte bir kez"
561
-
562
- #: wpFastestCache.php:1536
563
- msgid "Once Every 8 Hours"
564
- msgstr "8 saatte bir kez"
565
-
566
- #: wpFastestCache.php:1542
567
- msgid "Once Every 9 Hours"
568
- msgstr "9 saatte bir kez"
569
-
570
- #: wpFastestCache.php:1548
571
- msgid "Once Every 10 Hours"
572
- msgstr "10 saatte bir kez"
573
-
574
- #: wpFastestCache.php:1554
575
- msgid "Once a Day"
576
- msgstr "Günde bir kez"
577
-
578
- #: wpFastestCache.php:1560
579
- msgid "Once Every 3 Days"
580
- msgstr "3 günde bir kez"
581
-
582
- #: wpFastestCache.php:1566
583
- msgid "Once Every 7 Days"
584
- msgstr "7 günde bir kez"
585
-
586
- #: wpFastestCache.php:1572
587
- msgid "Once Every 10 Days"
588
- msgstr "10 günde bir kez"
589
-
590
- #: wpFastestCache.php:1578
591
- msgid "Once Every 15 Days"
592
- msgstr "15 günde bir kez"
593
-
594
- #: wpFastestCache.php:1584
595
- msgid "Once a Month"
596
- msgstr "Ayda bir kez"
597
-
598
- #: wpFastestCache.php:1590
599
- msgid "Once a Year"
600
- msgstr "Yılda bir kez"
601
-
602
- #. Plugin Name of the plugin/theme
603
- msgid "WP Fastest Cache"
604
- msgstr "WP Fastest Cache"
605
-
606
- #. Plugin URI of the plugin/theme
607
- msgid "http://wordpress.org/plugins/wp-fastest-cache/"
608
- msgstr "http://wordpress.org/plugins/wp-fastest-cache/"
609
-
610
- #. Description of the plugin/theme
611
- msgid "The simplest and fastest WP Cache system"
612
- msgstr "En basit ve en hızlı wp cache sistemi"
613
-
614
- #. Author of the plugin/theme
615
- msgid "Emre Vona"
616
- msgstr "Emre Vona"
617
-
618
- #. Author URI of the plugin/theme
619
- msgid "http://tr.linkedin.com/in/emrevona"
620
- msgstr "http://tr.linkedin.com/in/emrevona"
1
+ # Translation of Plugins - WP Fastest Cache - Development (trunk) in Turkish
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: 2020-01-01 09:30:52+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: tr\n"
12
+ "Project-Id-Version: Plugins - WP Fastest Cache - Development (trunk)\n"
13
+
14
+ #: inc/column.php:15
15
+ msgid "Clear Cache"
16
+ msgstr "Önbelleği Temizle"
17
+
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
19
+ msgid "Eliminate render-blocking JavaScript resources"
20
+ msgstr "Oluşturmayı engelleyen JavaScript kaynaklarını kaldır"
21
+
22
+ #: inc/admin.php:429 inc/admin.php:432
23
+ msgid "Options have been saved"
24
+ msgstr "Seçenekler kaydedildi"
25
+
26
+ #: inc/admin.php:1786
27
+ msgid "Download"
28
+ msgstr "İndir"
29
+
30
+ #: inc/admin.php:1781
31
+ msgid "Update"
32
+ msgstr "Güncelle"
33
+
34
+ #: inc/admin.php:1775
35
+ msgid "Please don't delete the free version. Premium version works with the free version."
36
+ msgstr "Lütfen ücretsiz sürümü silmeyin. Premium sürüm ücretsiz sürümü ile çalışır."
37
+
38
+ #: inc/admin.php:1774
39
+ msgid "Get It Now!"
40
+ msgstr "Hemen Al!"
41
+
42
+ #: inc/admin.php:1768
43
+ msgid "You can download and update the premium when you want if you paid."
44
+ msgstr "Ödeme yaptıysanız istediğiniz zaman premium'u indirebilir ve güncelleyebilirsiniz."
45
+
46
+ #: inc/admin.php:1765
47
+ msgid "Download & Update"
48
+ msgstr "İndir & Güncelle"
49
+
50
+ #: inc/admin.php:1752
51
+ msgid "Buy"
52
+ msgstr "Satın Al"
53
+
54
+ #: inc/admin.php:1737
55
+ msgid "Purchased"
56
+ msgstr "Satın Alındı"
57
+
58
+ #: inc/admin.php:1732
59
+ msgid "The download button will be available after paid. You can buy the premium version now."
60
+ msgstr "İndirme düğmesi ödeme yaptıktan sonra aktif olacaktır. Şimdi premium sürümünü satın alabilirsiniz."
61
+
62
+ #: inc/admin.php:1731
63
+ msgid "Just"
64
+ msgstr "Sadece"
65
+
66
+ #: inc/admin.php:1715
67
+ msgid "You need to pay before downloading the premium version."
68
+ msgstr "Premium sürümü indirmeden önce ödeme yapmanız gerekiyor."
69
+
70
+ #: inc/admin.php:1712
71
+ msgid "Checkout"
72
+ msgstr "Ödeme"
73
+
74
+ #: inc/admin.php:1698
75
+ msgid "New Features"
76
+ msgstr "Yeni Özellikler"
77
+
78
+ #: inc/admin.php:1692
79
+ msgid "In the premium version there are some new features which speed up the sites more."
80
+ msgstr "Premium versiyonda siteleri daha fazla hızlandıran bazı yeni özellikler var."
81
+
82
+ #: inc/admin.php:1689
83
+ msgid "Discover Features"
84
+ msgstr "Özellikleri Keşfet"
85
+
86
+ #: templates/exclude.php:106 inc/admin.php:1837
87
+ msgid "has Woocommerce Items in Cart"
88
+ msgstr ""
89
+
90
+ #: templates/exclude.php:105 inc/admin.php:1836
91
+ msgid "has Google Analytics Parameters"
92
+ msgstr "Google Analytics Parametereleri içeriyorsa"
93
+
94
+ #: templates/exclude.php:99 inc/admin.php:1829
95
+ msgid "Archives"
96
+ msgstr "Arşivler"
97
+
98
+ #: templates/timeout.php:189
99
+ msgid "Server Time"
100
+ msgstr "Sunucu Zamanı"
101
+
102
+ #: templates/timeout.php:169
103
+ msgid "delete the files"
104
+ msgstr "tüm dosyaları temizle"
105
+
106
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
+ msgid "Contains"
109
+ msgstr "İçeriyorsa"
110
+
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
+ msgid "Is Equal To"
114
+ msgstr "Eşit ise"
115
+
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
+ msgid "Starts With"
119
+ msgstr "ile başlıyorsa"
120
+
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
+ msgid "Home Page"
124
+ msgstr "Ana Sayfa"
125
+
126
+ #: templates/timeout.php:95 inc/admin.php:1555
127
+ msgid "All"
128
+ msgstr "Tümü"
129
+
130
+ #: templates/exclude.php:66
131
+ msgid "Exclude Page Wizard"
132
+ msgstr ""
133
+
134
+ #: templates/timeout.php:124
135
+ msgid "Then"
136
+ msgstr "O zaman"
137
+
138
+ #: templates/exclude.php:89 templates/timeout.php:91
139
+ msgid "If REQUEST_URI"
140
+ msgstr "Eğer REQUEST_URI"
141
+
142
+ #: templates/timeout.php:68
143
+ msgid "Cache Timeout Wizard"
144
+ msgstr "Önbellek Zaman Aşımı Sihirbazı"
145
+
146
+ #: templates/lazy_load.php:9
147
+ msgid "Lazy Load Settings"
148
+ msgstr "Lazy Load Ayarları"
149
+
150
+ #: templates/nginx_gzip.php:9
151
+ msgid "Enable Gzip"
152
+ msgstr "Gzip Aktivasyonu"
153
+
154
+ #: templates/update_now.php:9
155
+ msgid "Please Update"
156
+ msgstr "Lütfen Güncelleştir"
157
+
158
+ #: templates/update_success.php:9
159
+ msgid "Success"
160
+ msgstr "Başarılı"
161
+
162
+ #: templates/disable_wp_cron.php:20
163
+ msgid "Warning"
164
+ msgstr "Uyarı"
165
+
166
+ #: inc/admin.php:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
+ msgid "Add New Rule"
169
+ msgstr "Yeni Kural Ekle"
170
+
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
+ msgid "Delete Cache and Minified CSS/JS"
173
+ msgstr "Önbellek ve küçültülen CSS/JS'leri sil"
174
+
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
176
+ msgid "Only available in Premium version"
177
+ msgstr "Sadece Premium versiyonda mevcut"
178
+
179
+ #: templates/timeout.php:141
180
+ msgid "Choose One"
181
+ msgstr "Birini Seç"
182
+
183
+ #: inc/admin.php:1532
184
+ msgid "All cache files will be removed as well"
185
+ msgstr "Tüm önbellek dosyaları da silinecek"
186
+
187
+ #: inc/admin.php:1531
188
+ msgid "If you modify any css file, you have to delete minified css files"
189
+ msgstr "Eğer bir css dosyası değiştirdiyseniz, küçültülmüş olan css/js dosyalarını da temizlemelisiniz"
190
+
191
+ #: inc/admin.php:1519 inc/admin.php:1533 inc/admin.php:1534
192
+ msgid "Target folder"
193
+ msgstr "Hedef Klasör"
194
+
195
+ #: inc/admin.php:1518
196
+ msgid "You can delete all cache files"
197
+ msgstr "Tüm önbelleği temizleyebilirsiniz"
198
+
199
+ #: inc/admin.php:1059
200
+ msgid "Exclude"
201
+ msgstr "Hariç"
202
+
203
+ #: inc/admin.php:1057
204
+ msgid "Image Optimization"
205
+ msgstr "Resim Optimizasyonu"
206
+
207
+ #: inc/admin.php:1054
208
+ msgid "Settings"
209
+ msgstr "Ayarlar"
210
+
211
+ #: inc/admin.php:2077
212
+ msgid "Database Cleanup"
213
+ msgstr "Veritabanı Temizleme"
214
+
215
+ #: inc/admin.php:1965
216
+ msgid "CDN Settings"
217
+ msgstr "CDN Ayarları"
218
+
219
+ #: inc/admin.php:1928
220
+ msgid "Exclude JS"
221
+ msgstr "Hariç Tutulan JS"
222
+
223
+ #: inc/admin.php:1908
224
+ msgid "Exclude CSS"
225
+ msgstr "Hariç Tutulan CSS"
226
+
227
+ #: inc/admin.php:1890
228
+ msgid "Exclude Cookies"
229
+ msgstr "Hariç Tutulan Cookie"
230
+
231
+ #: inc/admin.php:1871
232
+ msgid "Exclude User-Agents"
233
+ msgstr "Hariç Tutulan User-Agent"
234
+
235
+ #: inc/admin.php:1854
236
+ msgid "Exclude Pages"
237
+ msgstr "Hariç Tutulan Sayfalar"
238
+
239
+ #: inc/admin.php:1665
240
+ msgid "Optimize Image Tool"
241
+ msgstr "Resim Optimizasyon Aracı"
242
+
243
+ #: inc/admin.php:1548
244
+ msgid "Timeout Rules"
245
+ msgstr "Zaman Aşımı Kuralları"
246
+
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
+ msgid "Delete Cache"
250
+ msgstr "Önbellek Temizleme"
251
+
252
+ #: inc/admin.php:1469
253
+ msgid "Cache Statistics"
254
+ msgstr "Önbellek İstatistikleri"
255
+
256
+ #: templates/updatepost.php:53
257
+ msgid "Clear Cache of Post / Page"
258
+ msgstr "Yazı ya da sayfanın önbelleğini temizle"
259
+
260
+ #: templates/updatepost.php:29
261
+ msgid "What do you want to happen after update a post or a page?"
262
+ msgstr "Yazı veya sayfa güncellendikten sonra ne olmasını istiyorsun?"
263
+
264
+ #: templates/newpost.php:58
265
+ msgid "Clear Cache of Pagination"
266
+ msgstr ""
267
+
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
+ msgid "Clear Cache of Post Tags"
270
+ msgstr "Tüm etiketlerin önbelleğini temizle"
271
+
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
+ msgid "Clear Cache of Post Categories"
274
+ msgstr "Tüm kategorilerin önbelleğini temizle"
275
+
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
+ msgid "Clear Cache of Homepage"
278
+ msgstr "Ana Sayfanın önbelleğini temizle"
279
+
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
+ #: inc/admin-toolbar.php:74
282
+ msgid "Clear All Cache"
283
+ msgstr "Tüm Önbelleği Temizle"
284
+
285
+ #: templates/newpost.php:29
286
+ msgid "What do you want to happen after publishing the new post?"
287
+ msgstr "Yeni yazı yayımlandıktan sonra ne olmasını istiyorsun?"
288
+
289
+ #: templates/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
291
+ msgid "OK"
292
+ msgstr "Tamam"
293
+
294
+ #: templates/preload.php:92
295
+ msgid "Restart After Completed"
296
+ msgstr "Tekrar Başlat Tamamlandıktan Sonra"
297
+
298
+ #: templates/preload.php:87
299
+ msgid "pages per minute"
300
+ msgstr "sayfa her dakika"
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 "Özel İçerik Türleri"
309
+
310
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
+ msgid "Attachments"
312
+ msgstr "Ekler"
313
+
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
+ msgid "Tags"
316
+ msgstr "Etiketler"
317
+
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
+ msgid "Pages"
320
+ msgstr "Sayfalar"
321
+
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
+ msgid "Categories"
324
+ msgstr "Kategoriler"
325
+
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
327
+ msgid "Posts"
328
+ msgstr "Yazılar"
329
+
330
+ #: templates/preload.php:33
331
+ msgid "Homepage"
332
+ msgstr "Ana Sayfa"
333
+
334
+ #: inc/admin.php:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
+ msgid "Reduce HTTP requests through combined js files"
336
+ msgstr "JS dosyalarını birleştirerek HTTP isteklerini azaltın"
337
+
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
339
+ msgid "Load images and iframes when they enter the browsers viewport"
340
+ msgstr "Resimleri ve iframleri tarayıcının görünen alanına gelince yükle"
341
+
342
+ #: inc/admin.php:1365 inc/admin.php:1384 inc/admin.php:1391
343
+ msgid "Lazy Load"
344
+ msgstr "Lazy Load"
345
+
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
+ msgid "Load Google Fonts asynchronously"
348
+ msgstr "Google Fontlarını eş zamansız (asenkron) olarak yükle"
349
+
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
+ msgid "Google Fonts"
352
+ msgstr "Google Fonts"
353
+
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
+ msgid "Render Blocking Js"
356
+ msgstr "Oluşturma Engelleyici Js"
357
+
358
+ #: inc/admin.php:1307
359
+ msgid "You can remove the emoji inline css and wp-emoji-release.min.js"
360
+ msgstr "emoji inline css ve wp-emoji-release.min.js kaynağını kaldırabilirsiniz"
361
+
362
+ #: inc/admin.php:1306
363
+ msgid "Disable Emojis"
364
+ msgstr "Emojileri Kapat"
365
+
366
+ #: inc/admin.php:1301
367
+ msgid "Reduce page load times for repeat visitors"
368
+ msgstr "Sürekli gelen kullanıcılar için sayfa yüklenme hızını azalt"
369
+
370
+ #: inc/admin.php:1300
371
+ msgid "Browser Caching"
372
+ msgstr "Tarayıcı Önbellek"
373
+
374
+ #: inc/admin.php:1289
375
+ msgid "Reduce the size of files sent from your server"
376
+ msgstr "Sunucudan gönderilen dosyaların boyutunu küçült"
377
+
378
+ #: inc/admin.php:1288
379
+ msgid "Gzip"
380
+ msgstr "Gzip"
381
+
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
+ msgid "Combine Js Plus"
384
+ msgstr "Js Birleştir Ekstra"
385
+
386
+ #: inc/admin.php:1262
387
+ msgid "Combine Js"
388
+ msgstr "Js Birleştir"
389
+
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
391
+ msgid "You can decrease the size of js files"
392
+ msgstr "JS dosyalarının boyununu küçültebilirsiniz"
393
+
394
+ #: inc/admin.php:1245 inc/admin.php:1250 inc/admin.php:1256
395
+ msgid "Minify Js"
396
+ msgstr "JS Küçült"
397
+
398
+ #: inc/admin.php:1238
399
+ msgid "Reduce HTTP requests through combined css files"
400
+ msgstr "CSS dosyalarını birleştirerek HTTP isteklerini azaltın"
401
+
402
+ #: inc/admin.php:1237
403
+ msgid "Combine Css"
404
+ msgstr "Css Birleştir"
405
+
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
+ msgid "More powerful minify css"
408
+ msgstr "Daha güçlü css küçültme aracı"
409
+
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
+ msgid "Minify Css Plus"
412
+ msgstr "CSS Küçült"
413
+
414
+ #: inc/admin.php:1217
415
+ msgid "You can decrease the size of css files"
416
+ msgstr "CSS dosyalarının boyununu küçültebilirsiniz"
417
+
418
+ #: inc/admin.php:1216
419
+ msgid "Minify Css"
420
+ msgstr "Css Küçült"
421
+
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
+ msgid "More powerful minify html"
424
+ msgstr "Daha güçlü html küçültme aracı"
425
+
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
+ msgid "Minify HTML Plus"
428
+ msgstr "HTML Küçült Ektra"
429
+
430
+ #: inc/admin.php:1197
431
+ msgid "You can decrease the size of page"
432
+ msgstr "Sayfanın boyutunu küçültebilirsiniz"
433
+
434
+ #: inc/admin.php:1196
435
+ msgid "Minify HTML"
436
+ msgstr "HTML Küçült"
437
+
438
+ #: inc/admin.php:1188
439
+ msgid "Clear cache files when a post or page is updated"
440
+ msgstr "Bir yazı ya da sayfa düzenlendiğinde önbelleği temizle"
441
+
442
+ #: templates/updatepost.php:18 inc/admin.php:1187
443
+ msgid "Update Post"
444
+ msgstr "Yazı Güncelleme"
445
+
446
+ #: inc/admin.php:1181
447
+ msgid "Clear cache files when a post or page is published"
448
+ msgstr "Yeni bir yazı veya sayfa yayımlandığında önbelleği temizle"
449
+
450
+ #: templates/newpost.php:18 inc/admin.php:1180
451
+ msgid "New Post"
452
+ msgstr "Yeni Yazı"
453
+
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
+ msgid "Create cache for mobile theme"
456
+ msgstr "Mobil temalar için önbellek oluşturma"
457
+
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
+ msgid "Mobile Theme"
460
+ msgstr "Mobil Tema"
461
+
462
+ #: inc/admin.php:1142
463
+ msgid "Don't show the cached version for desktop to mobile devices"
464
+ msgstr "Mobil kullanıcılara masaüstü için oluşturulan önbelleği gösterme"
465
+
466
+ #: inc/admin.php:1141
467
+ msgid "Mobile"
468
+ msgstr "Mobil"
469
+
470
+ #: inc/admin.php:1137
471
+ msgid "Don't show the cached version for logged-in users"
472
+ msgstr "Giriş yapan kullanıcılara önbelleği gösterme"
473
+
474
+ #: inc/admin.php:1136
475
+ msgid "Logged-in Users"
476
+ msgstr "Giriş Yapan Kullanıcı"
477
+
478
+ #: inc/admin.php:1127
479
+ msgid "Create the cache of all the site automatically"
480
+ msgstr "Tüm sitenin önbelleğini otomatik oluştur"
481
+
482
+ #: templates/preload.php:20 inc/admin.php:1126
483
+ msgid "Preload"
484
+ msgstr "Önyükleme"
485
+
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
+ msgid "Reduce the number of SQL queries"
488
+ msgstr "SQL sorgu sayısını azalt"
489
+
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
+ msgid "Widget Cache"
492
+ msgstr "Bileşen Önbellek"
493
+
494
+ #: inc/admin.php:1088
495
+ msgid "Enable"
496
+ msgstr "Aktif"
497
+
498
+ #: inc/admin.php:1087
499
+ msgid "Cache System"
500
+ msgstr "Önbellek"
501
+
502
+ #: wpFastestCache.php:1611
503
+ msgid "Once Every 15 Days"
504
+ msgstr "15 günde bir kez"
505
+
506
+ #: wpFastestCache.php:1599
507
+ msgid "Once Every 7 Days"
508
+ msgstr "7 günde bir kez"
509
+
510
+ #: wpFastestCache.php:1593
511
+ msgid "Once Every 3 Days"
512
+ msgstr "3 günde bir kez"
513
+
514
+ #: wpFastestCache.php:1581
515
+ msgid "Once Every 10 Hours"
516
+ msgstr "10 saatte bir kez"
517
+
518
+ #: wpFastestCache.php:1575
519
+ msgid "Once Every 9 Hours"
520
+ msgstr "9 saatte bir kez"
521
+
522
+ #: wpFastestCache.php:1569
523
+ msgid "Once Every 8 Hours"
524
+ msgstr "8 saatte bir kez"
525
+
526
+ #: wpFastestCache.php:1563
527
+ msgid "Once Every 7 Hours"
528
+ msgstr "7 saatte bir kez"
529
+
530
+ #: wpFastestCache.php:1551
531
+ msgid "Once Every 5 Hours"
532
+ msgstr "5 saatte bir kez"
533
+
534
+ #: wpFastestCache.php:1545
535
+ msgid "Once Every 4 Hours"
536
+ msgstr "4 saatte bir kez"
537
+
538
+ #: wpFastestCache.php:1539
539
+ msgid "Once Every 3 Hours"
540
+ msgstr "3 saatte bir kez"
541
+
542
+ #: wpFastestCache.php:1533
543
+ msgid "Once Every 2 Hours"
544
+ msgstr "2 saatte bir kez"
545
+
546
+ #: wpFastestCache.php:1605
547
+ msgid "Once Every 10 Days"
548
+ msgstr "10 günde bir kez"
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 "En basit ve en hızlı wp cache sistemi"
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 "WP Fastest Cache"
569
+
570
+ #: wpFastestCache.php:1623
571
+ msgid "Once a Year"
572
+ msgstr "Yılda bir kez"
573
+
574
+ #: wpFastestCache.php:1617
575
+ msgid "Once a Month"
576
+ msgstr "Ayda bir kez"
577
+
578
+ #: wpFastestCache.php:1587
579
+ msgid "Once a Day"
580
+ msgstr "Günde bir kez"
581
+
582
+ #: wpFastestCache.php:1557
583
+ msgid "Once Every 6 Hours"
584
+ msgstr "6 saatte bir kez"
585
+
586
+ #: wpFastestCache.php:1527
587
+ msgid "Once an Hour"
588
+ msgstr "Saatte bir kez"
589
+
590
+ #: wpFastestCache.php:1521
591
+ msgid "Twice an Hour"
592
+ msgstr "Saatte iki kez"
593
+
594
+ #: wpFastestCache.php:1515
595
+ msgid "Once Every 15 Minutes"
596
+ msgstr "15 dakikada bir kez"
597
+
598
+ #: wpFastestCache.php:1509
599
+ msgid "Once Every 5 Minutes"
600
+ msgstr "5 dakikada bir kez"
601
+
602
+ #: wpFastestCache.php:1503
603
+ msgid "Once Every 1 Minute"
604
+ msgstr "Her dakika"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wp-fastest-cache-zh_TW.po CHANGED
@@ -15,7 +15,7 @@ msgstr ""
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
 
@@ -23,75 +23,75 @@ msgstr "清除禁止轉譯的 JavaScrpt 資源"
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
 
@@ -103,27 +103,27 @@ msgstr "伺服器時間"
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
 
@@ -135,7 +135,7 @@ msgstr "排除頁面小幫手"
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
 
@@ -163,16 +163,16 @@ msgstr "成功"
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
 
@@ -180,76 +180,76 @@ msgstr "這項功能僅於 Premium 版中提供"
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
 
@@ -265,19 +265,19 @@ msgstr "更新內容後的快取處理方式:"
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 "清除全部快取"
@@ -286,8 +286,8 @@ msgstr "清除全部快取"
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
 
@@ -307,23 +307,23 @@ msgstr "自訂分類法"
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
 
@@ -331,219 +331,219 @@ msgstr "文章"
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
 
@@ -567,38 +567,38 @@ msgstr "http://tw.wordpress.org/plugins/wp-fastest-cache/"
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 "每分鐘一次"
15
  msgid "Clear Cache"
16
  msgstr "清除快取"
17
 
18
+ #: inc/admin.php:1316 inc/admin.php:1322 inc/admin.php:1329
19
  msgid "Eliminate render-blocking JavaScript resources"
20
  msgstr "清除禁止轉譯的 JavaScrpt 資源"
21
 
23
  msgid "Options have been saved"
24
  msgstr "設定已儲存。"
25
 
26
+ #: inc/admin.php:1786
27
  msgid "Download"
28
  msgstr "下載"
29
 
30
+ #: inc/admin.php:1781
31
  msgid "Update"
32
  msgstr "更新"
33
 
34
+ #: inc/admin.php:1775
35
  msgid "Please don't delete the free version. Premium version works with the free version."
36
  msgstr "請勿刪除免費版外掛,Premium 版需要與免費版搭配使用。"
37
 
38
+ #: inc/admin.php:1774
39
  msgid "Get It Now!"
40
  msgstr "立即購買授權"
41
 
42
+ #: inc/admin.php:1768
43
  msgid "You can download and update the premium when you want if you paid."
44
  msgstr "購買授權後,便可隨時下載或更新 Premium 版外掛。"
45
 
46
+ #: inc/admin.php:1765
47
  msgid "Download & Update"
48
  msgstr "下載及更新"
49
 
50
+ #: inc/admin.php:1752
51
  msgid "Buy"
52
  msgstr "購買授權"
53
 
54
+ #: inc/admin.php:1737
55
  msgid "Purchased"
56
  msgstr "已購買"
57
 
58
+ #: inc/admin.php:1732
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:1731
63
  msgid "Just"
64
  msgstr "僅需"
65
 
66
+ #: inc/admin.php:1715
67
  msgid "You need to pay before downloading the premium version."
68
  msgstr "必須先購買授權才能下載 Premium 版。"
69
 
70
+ #: inc/admin.php:1712
71
  msgid "Checkout"
72
  msgstr "購買授權"
73
 
74
+ #: inc/admin.php:1698
75
  msgid "New Features"
76
  msgstr "全新功能"
77
 
78
+ #: inc/admin.php:1692
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:1689
83
  msgid "Discover Features"
84
  msgstr "進一步瞭解更多功能"
85
 
86
+ #: templates/exclude.php:106 inc/admin.php:1837
87
  msgid "has Woocommerce Items in Cart"
88
  msgstr "包含購物車中的 Woocommerce 商品資料"
89
 
90
+ #: templates/exclude.php:105 inc/admin.php:1836
91
  msgid "has Google Analytics Parameters"
92
  msgstr "包含 Google Analytics 參數"
93
 
94
+ #: templates/exclude.php:99 inc/admin.php:1829
95
  msgid "Archives"
96
  msgstr "彙整"
97
 
103
  msgid "delete the files"
104
  msgstr "刪除檔案"
105
 
106
+ #: templates/exclude.php:103 templates/timeout.php:99 inc/admin.php:1558
107
+ #: inc/admin.php:1834
108
  msgid "Contains"
109
  msgstr "包含"
110
 
111
+ #: templates/exclude.php:104 templates/timeout.php:98 inc/admin.php:1559
112
+ #: inc/admin.php:1835
113
  msgid "Is Equal To"
114
  msgstr "等於"
115
 
116
+ #: templates/exclude.php:102 templates/timeout.php:97 inc/admin.php:1557
117
+ #: inc/admin.php:1833
118
  msgid "Starts With"
119
  msgstr "開頭含有"
120
 
121
+ #: templates/exclude.php:93 templates/timeout.php:96 inc/admin.php:1556
122
+ #: inc/admin.php:1826
123
  msgid "Home Page"
124
  msgstr "首頁"
125
 
126
+ #: templates/timeout.php:95 inc/admin.php:1555
127
  msgid "All"
128
  msgstr "全部"
129
 
135
  msgid "Then"
136
  msgstr "然後"
137
 
138
+ #: templates/exclude.php:89 templates/timeout.php:91
139
  msgid "If REQUEST_URI"
140
  msgstr "如果 REQUEST_URI"
141
 
163
  msgid "Warning"
164
  msgstr "警告"
165
 
166
+ #: inc/admin.php:1591 inc/admin.php:1858 inc/admin.php:1875 inc/admin.php:1894
167
+ #: inc/admin.php:1912 inc/admin.php:1932
168
  msgid "Add New Rule"
169
  msgstr "新增規則"
170
 
171
+ #: inc/admin-toolbar.php:81 inc/admin.php:1527
172
  msgid "Delete Cache and Minified CSS/JS"
173
  msgstr "刪除快取及已壓縮的 CSS/JS"
174
 
175
+ #: inc/admin.php:1462 inc/admin.php:2092 inc/admin.php:2313
176
  msgid "Only available in Premium version"
177
  msgstr "這項功能僅於 Premium 版中提供"
178
 
180
  msgid "Choose One"
181
  msgstr "選取一項"
182
 
183
+ #: inc/admin.php:1532
184
  msgid "All cache files will be removed as well"
185
  msgstr "這項操作會同時刪除全部快取檔案。"
186
 
187
+ #: inc/admin.php:1531
188
  msgid "If you modify any css file, you have to delete minified css files"
189
  msgstr "如果對任何 CSS 檔案進行修改,修改完畢後必須刪除之前已壓縮的 CSS 檔案。"
190
 
191
+ #: inc/admin.php:1519 inc/admin.php:1533 inc/admin.php:1534
192
  msgid "Target folder"
193
  msgstr "目標資料夾"
194
 
195
+ #: inc/admin.php:1518
196
  msgid "You can delete all cache files"
197
  msgstr "這項操作會刪除全部快取。"
198
 
199
+ #: inc/admin.php:1059
200
  msgid "Exclude"
201
  msgstr "排除"
202
 
203
+ #: inc/admin.php:1057
204
  msgid "Image Optimization"
205
  msgstr "圖片最佳化"
206
 
207
+ #: inc/admin.php:1054
208
  msgid "Settings"
209
  msgstr "設定"
210
 
211
+ #: inc/admin.php:2077
212
  msgid "Database Cleanup"
213
  msgstr "清理資料庫"
214
 
215
+ #: inc/admin.php:1965
216
  msgid "CDN Settings"
217
  msgstr "CDN 設定"
218
 
219
+ #: inc/admin.php:1928
220
  msgid "Exclude JS"
221
  msgstr "排除 JS"
222
 
223
+ #: inc/admin.php:1908
224
  msgid "Exclude CSS"
225
  msgstr "排除 CSS"
226
 
227
+ #: inc/admin.php:1890
228
  msgid "Exclude Cookies"
229
  msgstr "排除 Cookie"
230
 
231
+ #: inc/admin.php:1871
232
  msgid "Exclude User-Agents"
233
  msgstr "排除使用者代理程式"
234
 
235
+ #: inc/admin.php:1854
236
  msgid "Exclude Pages"
237
  msgstr "排除頁面"
238
 
239
+ #: inc/admin.php:1665
240
  msgid "Optimize Image Tool"
241
  msgstr "圖片最佳化工具"
242
 
243
+ #: inc/admin.php:1548
244
  msgid "Timeout Rules"
245
  msgstr "逾時規則"
246
 
247
+ #: inc/admin-toolbar.php:69 inc/admin.php:1055 inc/admin.php:1509
248
+ #: inc/admin.php:1514
249
  msgid "Delete Cache"
250
  msgstr "刪除快取"
251
 
252
+ #: inc/admin.php:1469
253
  msgid "Cache Statistics"
254
  msgstr "快取統計資料"
255
 
265
  msgid "Clear Cache of Pagination"
266
  msgstr "清除內容頁次快取"
267
 
268
+ #: templates/newpost.php:57 templates/updatepost.php:55
269
  msgid "Clear Cache of Post Tags"
270
  msgstr "清除文章標籤快取"
271
 
272
+ #: templates/newpost.php:56 templates/updatepost.php:54
273
  msgid "Clear Cache of Post Categories"
274
  msgstr "清除文章分類快取"
275
 
276
+ #: templates/newpost.php:55 templates/updatepost.php:56
277
  msgid "Clear Cache of Homepage"
278
  msgstr "清除首頁快取"
279
 
280
+ #: templates/newpost.php:51 templates/updatepost.php:49
281
  #: inc/admin-toolbar.php:74
282
  msgid "Clear All Cache"
283
  msgstr "清除全部快取"
286
  msgid "What do you want to happen after publishing the new post?"
287
  msgstr "發佈內容後的快取處理方式:"
288
 
289
+ #: templates/newpost.php:68 templates/updatepost.php:64
290
+ #: templates/preload.php:102
291
  msgid "OK"
292
  msgstr "確定"
293
 
307
  msgid "Custom Post Types"
308
  msgstr "自訂內容類型"
309
 
310
+ #: templates/exclude.php:101 templates/preload.php:53 inc/admin.php:1832
311
  msgid "Attachments"
312
  msgstr "附件"
313
 
314
+ #: templates/exclude.php:95 templates/preload.php:49 inc/admin.php:1828
315
  msgid "Tags"
316
  msgstr "標籤"
317
 
318
+ #: templates/exclude.php:97 templates/preload.php:45 inc/admin.php:1831
319
  msgid "Pages"
320
  msgstr "頁面"
321
 
322
+ #: templates/exclude.php:94 templates/preload.php:41 inc/admin.php:1827
323
  msgid "Categories"
324
  msgstr "分類"
325
 
326
+ #: templates/exclude.php:96 templates/preload.php:37 inc/admin.php:1830
327
  msgid "Posts"
328
  msgstr "文章"
329
 
331
  msgid "Homepage"
332
  msgstr "首頁"
333
 
334
+ #: inc/admin.php:1263 inc/admin.php:1271 inc/admin.php:1277 inc/admin.php:1283
335
  msgid "Reduce HTTP requests through combined js files"
336
  msgstr "合併 JS 檔案可以減少 HTTP 要求次數"
337
 
338
+ #: inc/admin.php:1371 inc/admin.php:1385 inc/admin.php:1392
339
  msgid "Load images and iframes when they enter the browsers viewport"
340
  msgstr "當圖片及 iFrame 進入瀏覽器檢視區內才進行載入"
341
 
342
+ #: inc/admin.php:1365 inc/admin.php:1384 inc/admin.php:1391
343
  msgid "Lazy Load"
344
  msgstr "延遲載入"
345
 
346
+ #: inc/admin.php:1342 inc/admin.php:1348 inc/admin.php:1355
347
  msgid "Load Google Fonts asynchronously"
348
  msgstr "以非同步方式載入 Google Fonts 網頁字型"
349
 
350
+ #: inc/admin.php:1341 inc/admin.php:1347 inc/admin.php:1354
351
  msgid "Google Fonts"
352
  msgstr "Google Fonts 網頁字型"
353
 
354
+ #: inc/admin.php:1315 inc/admin.php:1321 inc/admin.php:1328
355
  msgid "Render Blocking Js"
356
  msgstr "禁止轉譯的 JS"
357
 
358
+ #: inc/admin.php:1307
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:1306
363
  msgid "Disable Emojis"
364
  msgstr "停用 Emoji 表情符號"
365
 
366
+ #: inc/admin.php:1301
367
  msgid "Reduce page load times for repeat visitors"
368
  msgstr "這項功能可降低回訪訪客的頁面載入時間"
369
 
370
+ #: inc/admin.php:1300
371
  msgid "Browser Caching"
372
  msgstr "瀏覽器快取"
373
 
374
+ #: inc/admin.php:1289
375
  msgid "Reduce the size of files sent from your server"
376
  msgstr "減少從網站伺服器傳送的檔案大小"
377
 
378
+ #: inc/admin.php:1288
379
  msgid "Gzip"
380
  msgstr "Gzip"
381
 
382
+ #: inc/admin.php:1269 inc/admin.php:1276 inc/admin.php:1282
383
  msgid "Combine Js Plus"
384
  msgstr "JS 進階合併"
385
 
386
+ #: inc/admin.php:1262
387
  msgid "Combine Js"
388
  msgstr "JS 合併"
389
 
390
+ #: inc/admin.php:1246 inc/admin.php:1251 inc/admin.php:1257
391
  msgid "You can decrease the size of js files"
392
  msgstr "這項功能可減少 JS 檔案大小"
393
 
394
+ #: inc/admin.php:1245 inc/admin.php:1250 inc/admin.php:1256
395
  msgid "Minify Js"
396
  msgstr "JS 壓縮"
397
 
398
+ #: inc/admin.php:1238
399
  msgid "Reduce HTTP requests through combined css files"
400
  msgstr "合併 CSS 檔案可以減少 HTTP 要求次數"
401
 
402
+ #: inc/admin.php:1237
403
  msgid "Combine Css"
404
  msgstr "CSS 合併"
405
 
406
+ #: inc/admin.php:1226 inc/admin.php:1231
407
  msgid "More powerful minify css"
408
  msgstr "更多 CSS 進階壓縮功能"
409
 
410
+ #: inc/admin.php:1225 inc/admin.php:1230
411
  msgid "Minify Css Plus"
412
  msgstr "CSS 進階壓縮"
413
 
414
+ #: inc/admin.php:1217
415
  msgid "You can decrease the size of css files"
416
  msgstr "這項功能可減少 CSS 檔案大小"
417
 
418
+ #: inc/admin.php:1216
419
  msgid "Minify Css"
420
  msgstr "CSS 壓縮"
421
 
422
+ #: inc/admin.php:1204 inc/admin.php:1209
423
  msgid "More powerful minify html"
424
  msgstr "更多 HTML 進階壓縮功能"
425
 
426
+ #: inc/admin.php:1203 inc/admin.php:1208
427
  msgid "Minify HTML Plus"
428
  msgstr "HTML 進階壓縮"
429
 
430
+ #: inc/admin.php:1197
431
  msgid "You can decrease the size of page"
432
  msgstr "這項功能可減少頁面檔案大小"
433
 
434
+ #: inc/admin.php:1196
435
  msgid "Minify HTML"
436
  msgstr "HTML 壓縮"
437
 
438
+ #: inc/admin.php:1188
439
  msgid "Clear cache files when a post or page is updated"
440
  msgstr "更新文章或頁面後便清除快取檔案"
441
 
442
+ #: templates/updatepost.php:18 inc/admin.php:1187
443
  msgid "Update Post"
444
  msgstr "更新內容"
445
 
446
+ #: inc/admin.php:1181
447
  msgid "Clear cache files when a post or page is published"
448
  msgstr "發佈文章或頁面後便清除快取檔案"
449
 
450
+ #: templates/newpost.php:18 inc/admin.php:1180
451
  msgid "New Post"
452
  msgstr "新增內容"
453
 
454
+ #: inc/admin.php:1148 inc/admin.php:1174
455
  msgid "Create cache for mobile theme"
456
  msgstr "為行動版佈景主題建立快取"
457
 
458
+ #: inc/admin.php:1147 inc/admin.php:1173
459
  msgid "Mobile Theme"
460
  msgstr "行動版佈景主題"
461
 
462
+ #: inc/admin.php:1142
463
  msgid "Don't show the cached version for desktop to mobile devices"
464
  msgstr "在行動裝置上不顯示已快取的桌面版內容"
465
 
466
+ #: inc/admin.php:1141
467
  msgid "Mobile"
468
  msgstr "行動裝置"
469
 
470
+ #: inc/admin.php:1137
471
  msgid "Don't show the cached version for logged-in users"
472
  msgstr "不在使用者登入後顯示已快取的內容"
473
 
474
+ #: inc/admin.php:1136
475
  msgid "Logged-in Users"
476
  msgstr "已登入的使用者"
477
 
478
+ #: inc/admin.php:1127
479
  msgid "Create the cache of all the site automatically"
480
  msgstr "為這個網站的全部項目自動建立快取"
481
 
482
+ #: templates/preload.php:20 inc/admin.php:1126
483
  msgid "Preload"
484
  msgstr "預先載入"
485
 
486
+ #: inc/admin.php:1098 inc/admin.php:1104 inc/admin.php:1111 inc/admin.php:1118
487
  msgid "Reduce the number of SQL queries"
488
  msgstr "減少 SQL 查詢的次數"
489
 
490
+ #: inc/admin.php:1097 inc/admin.php:1103 inc/admin.php:1110 inc/admin.php:1117
491
  msgid "Widget Cache"
492
  msgstr "小工具快取"
493
 
494
+ #: inc/admin.php:1088
495
  msgid "Enable"
496
  msgstr "啟用"
497
 
498
+ #: inc/admin.php:1087
499
  msgid "Cache System"
500
  msgstr "快取系統"
501
 
502
+ #: wpFastestCache.php:1611
503
  msgid "Once Every 15 Days"
504
  msgstr "每 15 日一次"
505
 
506
+ #: wpFastestCache.php:1599
507
  msgid "Once Every 7 Days"
508
  msgstr "每 7 日一次"
509
 
510
+ #: wpFastestCache.php:1593
511
  msgid "Once Every 3 Days"
512
  msgstr "每 3 日一次"
513
 
514
+ #: wpFastestCache.php:1581
515
  msgid "Once Every 10 Hours"
516
  msgstr "每 10 小時一次"
517
 
518
+ #: wpFastestCache.php:1575
519
  msgid "Once Every 9 Hours"
520
  msgstr "每 9 小時一次"
521
 
522
+ #: wpFastestCache.php:1569
523
  msgid "Once Every 8 Hours"
524
  msgstr "每 8 小時一次"
525
 
526
+ #: wpFastestCache.php:1563
527
  msgid "Once Every 7 Hours"
528
  msgstr "每 7 小時一次"
529
 
530
+ #: wpFastestCache.php:1551
531
  msgid "Once Every 5 Hours"
532
  msgstr "每 5 小時一次"
533
 
534
+ #: wpFastestCache.php:1545
535
  msgid "Once Every 4 Hours"
536
  msgstr "每 4 小時一次"
537
 
538
+ #: wpFastestCache.php:1539
539
  msgid "Once Every 3 Hours"
540
  msgstr "每 3 小時一次"
541
 
542
+ #: wpFastestCache.php:1533
543
  msgid "Once Every 2 Hours"
544
  msgstr "每 2 小時一次"
545
 
546
+ #: wpFastestCache.php:1605
547
  msgid "Once Every 10 Days"
548
  msgstr "每 10 日一次"
549
 
567
  msgid "WP Fastest Cache"
568
  msgstr "WP Fastest Cache"
569
 
570
+ #: wpFastestCache.php:1623
571
  msgid "Once a Year"
572
  msgstr "每年一次"
573
 
574
+ #: wpFastestCache.php:1617
575
  msgid "Once a Month"
576
  msgstr "每月一次"
577
 
578
+ #: wpFastestCache.php:1587
579
  msgid "Once a Day"
580
  msgstr "每日一次"
581
 
582
+ #: wpFastestCache.php:1557
583
  msgid "Once Every 6 Hours"
584
  msgstr "每 6 小時一次"
585
 
586
+ #: wpFastestCache.php:1527
587
  msgid "Once an Hour"
588
  msgstr "每小時一次"
589
 
590
+ #: wpFastestCache.php:1521
591
  msgid "Twice an Hour"
592
  msgstr "每小時兩次"
593
 
594
+ #: wpFastestCache.php:1515
595
  msgid "Once Every 15 Minutes"
596
  msgstr "每 15 分鐘一次"
597
 
598
+ #: wpFastestCache.php:1509
599
  msgid "Once Every 5 Minutes"
600
  msgstr "每 5 分鐘一次"
601
 
602
+ #: wpFastestCache.php:1503
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.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -23,9 +23,6 @@ In addition, the site speed is used in Google’s search ranking algorithm so ca
23
  <br><br>
24
  Setup of this plugin is so easy. You don't need to modify the .htacces file. It will be modified automatically.
25
 
26
- <h4>Multisite Support</h4>
27
- Wpfc supports Wordpress Multisite [<a target="_blank" href="https://www.wpfastestcache.com/blog/multi-site/">Details</a>]
28
-
29
  <h4>Features</h4>
30
 
31
  1. Mod_Rewrite which is the fastest method is used in this plugin
@@ -45,15 +42,34 @@ Wpfc supports Wordpress Multisite [<a target="_blank" href="https://www.wpfastes
45
 
46
  <h4>Performance Optimization</h4>
47
 
 
 
48
  1. Generating static html files from your dynamic WordPress blog
49
  2. Minify Html - You can decrease the size of page
50
  3. Minify Css - You can decrease the size of css files
51
- 4. Enable Gzip Compression - Reduce the size of files sent from your server to increase the speed to which they are transferred to the browser.
52
  5. Leverage browser caching - Reduce page load times for repeat visitors
53
  6. Combine CSS - Reduce number of HTTP round-trips by combining multiple CSS resources into one
54
  7. Combine JS
55
  8. Disable Emoji - You can remove the emoji inline css and wp-emoji-release.min.js
56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  <h4>Supported languages: </h4>
58
 
59
  * 中文 (by suifengtec)
@@ -61,8 +77,9 @@ Wpfc supports Wordpress Multisite [<a target="_blank" href="https://www.wpfastes
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)
@@ -71,6 +88,7 @@ Wpfc supports Wordpress Multisite [<a target="_blank" href="https://www.wpfastes
71
  * Português do Brasil (Mario Antonio Sesso Junior)
72
  * Română
73
  * Русский (by Maxim)
 
74
  * Suomi (by Arhi Paivarinta)
75
  * Svenska (by Linus Wileryd)
76
  * Türkçe
@@ -106,6 +124,16 @@ Wpfc supports Wordpress Multisite [<a target="_blank" href="https://www.wpfastes
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
@@ -139,762 +167,8 @@ Wpfc supports Wordpress Multisite [<a target="_blank" href="https://www.wpfastes
139
  * to convert the icon from png to svg [by Roni Laukkarinen]
140
  * to fix Undefined index: HTTP_HOST cache.php on line 321
141
 
142
- = 0.8.9.7 =
143
- * to create cache for xml sources
144
- * to create cache for json sources [<a target="_blank" href="https://www.wpfastestcache.com/features/how-to-cache-json/">Details</a>]
145
- * to clear cache after Maintenance Mode activation/deactivation on Elementor plugin
146
- * refactoring of clearing cache hook system
147
- * refactoring of cache time-out time list
148
- * to disable cache when "The site is experiencing technical difficulties." error occurs
149
-
150
- = 0.8.9.6 =
151
- * to clear post's cache which contains query string if WPFC_CACHE_QUERYSTRING is defined
152
- * refactoring of excluding system
153
- * refactoring of getWpContentDir()
154
- * to fix the homepage cache problem when WPML with different url is used
155
- * to prevent directory traversal attack (discoverd by Imre Rad)
156
-
157
- = 0.8.9.5 =
158
- * to check the page is 404 or not with http_response_code() if is_404() does not work
159
- * <strong>[FEATURE]</strong> to add Custom Taxonomies on the preload feature
160
- * <strong>[FEATURE]</strong> to show statistics of Preload
161
- * to replace urls which have data-img-url attribute with cdn-url
162
- * <strong>[FEATURE]</strong> to add WP-CLI command for clearing cache [<a target="_blank" href="https://www.wpfastestcache.com/features/wp-cli-commands/">Details</a>]
163
- * refactoring of is_amp()
164
-
165
- = 0.8.9.4 =
166
- * to clear cache of parent categories after clearing category cache [<a target="_blank" href="https://wordpress.org/support/topic/cache-of-mother-categories-not-auto-deleting/">Details</a>]
167
- * to fix PHP Notice: Undefined variable: preg_match_rule in preload.php on line 418
168
- * to show cloudflare integration warning if it has not been added
169
- * to fix Preload visiting page urls without end slashes problem [<a target="_blank" href="https://wordpress.org/support/topic/preload-visiting-page-urls-without-end-slashes/">Details</a>]
170
- * <strong>[FEATURE]</strong> to add Buffer Callback Filter [<a target="_blank" href="https://www.wpfastestcache.com/tutorial/buffer-callback-filter/">Details</a>]
171
- * to add application/x-font-opentype and application/x-font-truetype for browser caching
172
- * <strong>[FEATURE]</strong> Widget Cache is compatible with WPML Multilingual Plugin
173
- * to fix 403 forbidden error when the cdn-url is checking
174
-
175
- = 0.8.9.3 =
176
- * to exclude urls on preload
177
- * to add exclude rule for admin cookie as default
178
- * to prevent replace urls with cdn-url if the url has already been replaced with Jetpack
179
- * to fix replacing origin-url with cdn-url for data-product_variations attribute
180
- * to fix "Database Syntax Error" [<a target="_blank" href="https://wordpress.org/support/topic/database-syntax-error-2/">Details</a>]
181
- * refactoring of read_file()
182
-
183
- = 0.8.9.2 =
184
- * to clear cache of author page after update/insert post
185
- * to fix PHP Notice: Undefined offset: -1 in wp-fastest-cache/inc/js-utilities.php on line 47.
186
- * to fix PHP Fatal error: Function name must be a string in /public_html/wp-content/plugins/wp-fastest-cache/inc/preload.php on line 316
187
- * to support MultiSite (Beta) [<a target="_blank" href="https://www.wpfastestcache.com/blog/multi-site/">Details</a>]
188
- * to enable gzip for x-font/ttf
189
- * to prevent replace urls with cdn-url if the url has already been replaced with cdn.shortpixel.ai
190
-
191
-
192
- = 0.8.9.1 =
193
- * to disable webp image extension if cloudflare subscription is free
194
- * to fix cache deletion security issue of WP-PostRatings (CVE-2019-6726 by Sebastian Neef)
195
- * to add do_action("wpfc_is_cacheable_action") the plugins to be able to detect that a page has been cached or not
196
- * <strong>[FEATURE]</strong> exclude woocommerce_items_in_cart cookie [<a target="_blank" href="https://www.wpfastestcache.com/tutorial/woocommerce-settings/#cart-widget">Details</a>]
197
-
198
- = 0.8.9.0 =
199
- * to replace lazy load blank.gif with cdn-url
200
- * to exclude wishlist url of YITH WooCommerce Wishlist
201
- * refactoring of is_amp()
202
- * to add webm extension for cdn
203
- * refactoring of current_url()
204
-
205
- = 0.8.8.9 =
206
- * to fix url with replacing cdn-url on data-product_variations attribute
207
- * to increase browser cache time from 3 months to 4 months
208
- * to fix bug on language dropdown [<a target="_blank" href="https://wordpress.org/support/topic/bug-with-language-setting/">Details</a>]
209
- * to increase the value of Cloudflare Browser Cache Expiration to 6 months
210
- * to exclude Twitterbot user-agent
211
- * to fix PHP Warning: file_exists(): open_basedir restriction in effect
212
-
213
- = 0.8.8.8 =
214
- * to move "cache timeout" to under "delete cache" tab [<a target="_blank" href="https://www.wpfastestcache.com/features/cache-timeout-page/">Details</a>]
215
- * to prevent clearing cache after Ninja Form is submitted
216
- * <strong>[FEATURE]</strong> Preload for custom post types
217
- * to fix PHP Fatal error: Call to undefined function add_settings_error()
218
-
219
- = 0.8.8.7 =
220
- * to fix error which is Undefined index: SERVER_PORT
221
- * to prevent running preload when cache is disabled
222
- * to change saving options and notice system
223
- * to replace image urls of woocommerce variable with cdn-url
224
- * to fix url() problem for data:font/opentype
225
- * to add add_action('wp') for detection current page type
226
- * to support non-latin characters for clearing category cache
227
- * to show cache if the url contains “fbclid” (Facebook Click Identifier)
228
- * to show cache if the url contains “gclid” (Google Click Identifier)
229
-
230
- = 0.8.8.6 =
231
- * to show single clear cache button for the pages
232
- * to show warning if wp cron is disabled when a cache timeout rule is added
233
- * to disabe lazy load for the amp pages
234
- * to replace urls on data-cvpsrc and data-cvpset attribute with cdn-url
235
- * to clear the cache of a post which includes /%postname%/%post_id% permalink after the post is deleted
236
- * to fix vulnerability
237
- * to add "event" and "artist" custom post types for preload
238
-
239
- = 0.8.8.5 =
240
- * to fix pre tag problem after minify html
241
- * to add woff2 extensions for cdn
242
- * to support non-latin characters for exclude
243
- * to support non-latin characters for toolbar clear current page cache
244
- * to fix "removing dollar sign with number" on fixing pre tag
245
- * to clear cache of cloudflare afer restart preload
246
- * to exclude LinkedInBot user-agent
247
- * to replace urls on data-large_image attribute with cdn-url
248
-
249
- = 0.8.8.4 =
250
- * to show language option via php instead of javascript
251
- * to show warning if there is no zone on Cloudflare
252
- * to fix Uncaught SyntaxError on cdn.js [<a target="_blank" href="https://wordpress.org/support/topic/uncaught-syntaxerror-cdn-js/">Details</a>]
253
- * refactoring of cdn_replace_urls()
254
- * <strong>[FEATURE]</strong> Clear Cache via URL [<a target="_blank" href="https://www.wpfastestcache.com/features/clear-cache-via-url/">Details</a>]
255
- * to add webm, ogg and mp4 extensions for browser cache
256
-
257
- = 0.8.8.3 =
258
- * to fix Revolution Slider Error
259
- * to make Cloudflare CDN integration work with sub-domains
260
- * to fix error on js combine feature
261
- * to fix error replace cdn-url
262
- * to replace urls on data-thumb attribute with cdn-url
263
- * to move the rules of Gtranslate at the top of WP Fastest Cache on .htaccess
264
- * to define preload number manually [<a target="_blank" href="https://www.wpfastestcache.com/features/preload-settings/#preload-number">Details</a>]
265
-
266
- = 0.8.8.2 =
267
- * to fix removing the escaped slashes of Cloudflare Integration [<a target="_blank" href="https://wordpress.org/support/topic/wpfc-cf-is-stripping-important-code/">Details</a>]
268
- * <strong>[FEATURE]</strong> Compatible with Fast Velocity Minify
269
- * <strong>[FEATURE]</strong> Microsoft IIS support
270
- * to serve the sources of Rev Slider if the cdn integration is enabled
271
- * to exclude woocommerce_items_in_cart cookie automatically
272
- * to check wptouch-pro-view cookie
273
-
274
- = 0.8.8.1 =
275
- * to update russian translation
276
- * to set browser caching for Cloudflare
277
- * not to load the css and js sources of clear cache button when toolar is not visible
278
- * to fix SyntaxError: Unexpected token M in JSON at position 0 error
279
-
280
- = 0.8.8.0 =
281
- * to rename the text on admin bar
282
- * to move cdn functions to speed up wp fastest cache
283
- * check if settings are indexed by multilang locales for WeePie Cookie Allow
284
- * <strong>[FEATURE]</strong> to add Cloudflare integration
285
-
286
- = 0.8.7.9 =
287
- * refactoring of delete_cache_of_term()
288
- * <strong>[FEATURE]</strong> exclude archives
289
- * to delete cache of pagination after new post
290
- * to add do_action() for deleteCache()
291
- * to shorten the url of the minified and combined sources
292
- * to fix excluding googleanalytics problem
293
- * to create cache for mobile user-agents when mobile option is disabled
294
- * <strong>[FEATURE]</strong> Compatible with WeePie Cookie Allow
295
-
296
- = 0.8.7.8 =
297
- * to check <title> for 404 if the header return 200
298
- * to clear all the cache if the visibility is converted to private
299
- * refactoring of ignored()
300
- * to stop loading the admin functions if DOING_AJAX is set
301
- * to fix excluding attachment pages problem
302
- * <strong>[FEATURE]</strong> Compatible with Yet Another Stars Rating
303
- * to disable including powerfulhtml class for ajax request
304
- * to convert the uninstall method to uninstall.php
305
- * <strong>[FEATURE]</strong> exclude Google Analytics Parameters [<a target="_blank" href="http://www.wpfastestcache.com/features/cache-url-with-google-analytics-parameters-querystring/#disable-cache-google-analytics-parameters">Details</a>]
306
- * to add WPFC_DISABLE_WEBP [<a target="_blank" href="http://www.wpfastestcache.com/premium/image-optimization/#disable-webp">Details</a>]
307
- * to fix 403 cdn template error
308
- * to fix height problem of lightbox
309
-
310
- = 0.8.7.7 =
311
- * to remove "via php" text if WPFC_REMOVE_VIA_FOOTER_COMMENT is defined as true
312
- * <strong>[FEATURE]</strong> Restart Preload [<a target="_blank" href="http://www.wpfastestcache.com/features/restart-preload-after-completed/">Details</a>]
313
- * to fix the problem of selecting chinese language automatically
314
- * to fix php notice trying to get property of non-object in delete_cache_of_term()
315
- * to speed up getting db optimization statistics()
316
- * to show the cache of main content without query string if google analytics parameters are set [<a target="_blank" href="http://www.wpfastestcache.com/features/cache-url-with-google-analytics-parameters-querystring/">Details</a>]
317
-
318
-
319
- = 0.8.7.6 =
320
- * to fix the problem which show the same cache for every language on Polylang
321
- * <strong>[FEATURE]</strong> to remove wordpress emojis [<a target="_blank" href="http://www.wpfastestcache.com/optimization/disableremove-wordpress-emojis/">Details</a>]
322
-
323
- = 0.8.7.5 =
324
- * <strong>[FEATURE]</strong> Compatible with Easy HTTPS (SSL) Redirection
325
- * to clear of the post when WPML is active
326
-
327
- = 0.8.7.4 =
328
- * to exclude the renamed my-account page of woocommerce
329
- * to add AddType x-font/ttf for gzip
330
- * to fix the errors of Undefined property: stdClass::$post, stdClass::$page, stdClass::$category
331
- * <strong>[FEATURE]</strong> exclude attachments
332
-
333
- = 0.8.7.3 =
334
- * to espace empty spaces for webp rules
335
- * to clear cache after new Woocommerce orders
336
- * <strong>[FEATURE]</strong> Compatible with kk Star Ratings
337
- * to clear the pages cache of the categories and tags
338
- * <strong>[FEATURE]</strong> Compatible with All In One Schema.org Rich Snippets
339
- * <strong>[FEATURE]</strong> Compatible with WPML Multilingual Plugin
340
- * <strong>[FEATURE]</strong> Compatible with Cloudinary
341
-
342
- = 0.8.7.2 =
343
- * to exclude the admins cookies for the cache automatically
344
- * to clear the cache of category and tag after update
345
- * refactoring of insertWebp()
346
- * to exclude /cart automatically for eCommerce Shopping Cart by WP EasyCart
347
- * to exclude /cart and /checkout automatically for Easy Digital Downloads
348
- * to exclude /sitemap_index.xml automatically for Yoast SEO
349
- * to decode path if it is not utf-8
350
- * to fix problem on activation and deactivation
351
- * to clear widget cache after publishing a new post
352
-
353
- = 0.8.7.1 =
354
- * to fix image error on Structured Data Testing Tool when cdn is used
355
- * to optimize the panel of wp fastest cache
356
- * to fix cache path for gtranslate
357
- * to fix Cannot modify header error
358
- * to add WPFC_HIDE_CLEAR_CACHE_BUTTON
359
-
360
- = 0.8.7.0 =
361
- * to avoid removing www prefix from photon cdn-url
362
- * to prevent to empty origin-url on cdn wizard
363
- * <strong>[FEATURE]</strong> to clear cache of post via post list
364
- * preload for woocommorce product category
365
- * to clear cache of tag and cat after product update
366
- * to check that SG Optimizer is active or not
367
- * <strong>[FEATURE]</strong> Preload for tags
368
- * <strong>[FEATURE]</strong> Preload for attachments
369
- * <strong>[FEATURE]</strong> exclude categories, tags, posts and pages
370
-
371
- = 0.8.6.9 =
372
- * <strong>[FEATURE]</strong> to clear cache of the post tags and the post categories after new post
373
- * <strong>[FEATURE]</strong> WebP [<a target="_blank" href="http://www.wpfastestcache.com/premium/image-optimization/">Details</a>]
374
- * to fix BlogPosting error on Structured Data Testing Tool when cdn is used
375
- * to fix more than one cdn work concurrently
376
- * <strong>[FEATURE]</strong> Preload for category
377
- * <strong>[FEATURE]</strong> Preload for woocommerce products
378
-
379
- = 0.8.6.8 =
380
- * <strong>[FEATURE]</strong> Widget Cache [<a target="_blank" href="http://www.wpfastestcache.com/premium/widget-cache-reduce-the-number-of-sql-queries/">Details</a>]
381
- * to add browser cache for woff2
382
- * to fix Woocommerce basket issue
383
- * to serve the sources via cdn for logged-in users
384
- * to prevent removing "=" from exclude rules
385
- * to change &lt;FilesMatch "\.(html|htm)"&gt; to &lt;FilesMatch "index\.(html|htm)"&gt;
386
- * to fix problem about random url of photon
387
- * to replace origin-url which starts with /wp-content with cdn-url
388
- * to replace wp_get_recent_posts() with get_results() for preload
389
- * to replace the attribute which are data-srcsmall|data-srclarge|data-srcfull with cdn-url
390
- * <strong>[FEATURE]</strong> Compatible with WP Hide & Security Enhancer
391
-
392
- = 0.8.6.7 =
393
- * to escape spaces in path for htaccess
394
- * to fix the error of htaccess not writeable warning
395
- * <strong>[FEATURE]</strong> WP AMP — Accelerated Mobile Pages for WordPress and WooCommerce
396
- * <strong>[FEATURE]</strong> to support webp for leverage browser caching
397
- * <strong>[FEATURE]</strong> to exclude REST API url which start with /wp-json
398
- * <strong>[FEATURE]</strong> Google Fonts Async [<a target="_blank" href="http://www.wpfastestcache.com/premium/google-fonts-optimize-css-delivery/">Details</a>]
399
- * <strong>[FEATURE]</strong> Random option for Photon CDN
400
-
401
- = 0.8.6.6 =
402
- * to make compatible with the new rules of wordpress
403
- * <strong>[FEATURE]</strong> Database Cleanup [<a target="_blank" href="http://www.wpfastestcache.com/premium/database-cleanup-speed-up-databases/">Details</a>]
404
- * to decode URLs in non-latin languages for singleDeleteCache()
405
- * to change the method of the premium update <a href="http://www.wpfastestcache.com/blog/premium-update-before-v1-3-6/">Details</a>
406
-
407
- = 0.8.6.5 =
408
- * <strong>[FEATURE]</strong> Compatible with GTranslate
409
- * to exclude avada-dynamic-css-css for css optimizations
410
- * to compatible with Safir Mobile theme
411
- * to update htaccess after activation
412
- * <strong>[FEATURE]</strong> Compatible with Caldera Forms
413
- * to prevent 404 errors for non-existent minified files
414
- * to clear the cache of post cats and the cache of post tags after update post
415
-
416
- = 0.8.6.4 =
417
- * to add aac, mp3, ogg extension for CDN
418
- * to serve wp-emoji-release.min.js via cdn if CDN integration has been added
419
- * not to show the cache for comment authors
420
- * to show how to enable gzip warning for Nginx
421
- * to fix the check cdn-url issue which is cURL error 6: Couldn't resolve host
422
- * to check http_response_code is 503 or not if DONOTCACHEPAGE is set
423
- * to fix the warnings about clearing cache
424
- * to fix the issue if a js source is called as ?site=site.com
425
-
426
- = 0.8.6.3 =
427
- * to be able to hide toolbar [<a target="_blank" href="http://www.wpfastestcache.com/features/hide-toolbar-link/">Details</a>]
428
- * <strong>[FEATURE]</strong> Compatible with Yet Another Stars Rating
429
- * <strong>[FEATURE]</strong> Cache Timeout with Hour and Minute [<a target="_blank" href="http://www.wpfastestcache.com/features/cache-timeout-with-hour-and-minute/">Details</a>]
430
- * to add style for manually preload
431
- * to fix htaccess popup
432
- * <strong>[FEATURE]</strong> exclude cookie
433
-
434
- = 0.8.6.2 =
435
- * to update user-agents with Microsoft Edge
436
- * to fix duplicate menu problem
437
- * to create /cache/index.html for security
438
- * to create /cache/wpfc-minified/index.html for security
439
- * to execute render blocking js before css and js (premium)
440
- * to fix Undefined variable: trailing_slash_rule
441
- * <strong>[FEATURE]</strong> Clear Cache for Specific Page [<a target="_blank" href="http://www.wpfastestcache.com/tutorial/clear-cache-for-specific-page/">Details</a>]
442
- * to add http_host condition into htaccess
443
- * <strong>[FEATURE]</strong> Compatible with Mailchimp mc4wp.com
444
- * <strong>[FEATURE]</strong> Compatible with Hide My WP [<a target="_blank" href="http://www.wpfastestcache.com/features/hide-my-wp/">Details</a>]
445
- * <strong>[FEATURE]</strong> Compatible with AMP
446
-
447
- = 0.8.6.1 =
448
- * <strong>[FEATURE]</strong> exclude css sources
449
- * to fix Non-trailing Slash problem
450
- * to add specify source option for cdn integration
451
- * new interface of cdn tab
452
- * <strong>[FEATURE]</strong> to add Photon
453
- * <strong>[FEATURE]</strong> Multiple CDN
454
- * <strong>[FEATURE]</strong> exclude js sources
455
- * to improve Combine JS feature
456
- * <strong>[FEATURE]</strong> Compatible with WpResidence theme
457
- * <strong>[FEATURE]</strong> to call preload manually
458
-
459
- = 0.8.6.0 =
460
- * to fix the problem about replacing url after minify css
461
- * to add "start with" option to the cache timeout
462
- * to add uninstall feature
463
- * to add "user-agent" option to the exclude page
464
- * to convert cache time to local time
465
- * to exclude WhatsApp user-agent
466
-
467
- = 0.8.5.9 =
468
- * to remove X-Wap-Profile from htaccess
469
- * to show warning lightbox if the cache cannot be deleted
470
- * <strong>[FEATURE]</strong> Set preload number
471
- * refactoring of is_wptouch_smartphone()
472
- * <strong>[FEATURE]</strong> to clear only the homepage cache
473
- * wp nonces added for security
474
-
475
- = 0.8.5.8 =
476
- * to remove hostname from exclude rule
477
- * to fix file cache problem
478
- * to change the mobile user-agents
479
- * to fix Wordfence Security report
480
-
481
- = 0.8.5.7 =
482
- * <strong>[FEATURE]</strong> Preload
483
- * to exclude the renamed page of woocommerce
484
- * to fix path which starts with ./ in css files
485
- * <strong>[FEATURE]</strong> Compatible with Visual Composer Post Grid
486
- * application/x-javascript has been added for leverage browser caching
487
- * to prevent removing newlines from .htaccess
488
- * <strong>[FEATURE]</strong> Compatible with WP-CLI
489
- * to add wp-touch mobile user-agent list
490
- * to exclude facebookexternalhit user-agent
491
- * <strong>[FEATURE]</strong> Compatible with Any Mobile Theme Switcher
492
- * <strong>[FEATURE]</strong> CDN for css files
493
- * to fix the huge size of tmpWpfc problem
494
-
495
- = 0.8.5.6 =
496
- * to combine css files by media attribute
497
- * to fix lots of disk usage issue
498
- * to fix design broken which occours after some time
499
- * to fix PHP Notice: Undefined index: HTTP_ACCEPT
500
- * to fix WP-Polls issue if PHP v5.6
501
- * to remove 
502
- * <strong>[FEATURE]</strong> to add Polish language
503
- * <strong>[FEATURE]</strong> to add CDN77
504
- * to get the source of fonts.googleapis.com
505
- * new style of Exclude Page
506
- * to set cache timeout for specific pages
507
- * gzip for woff type
508
- * to fix "unknown error" of AWS cdn integration
509
- * <strong>[FEATURE]</strong> chinese language has been added
510
- * <strong>[FEATURE]</strong> Compatible with WP-PostRatings
511
- * to add WPFC_TOOLBAR_FOR_AUTHOR
512
- * to fix combine css issue if a file is empty after minify
513
- * to add woff2 for browser caching
514
- * to disable creating cache if get_option("home") is secure and current url is not secure
515
- * to fix switching theme from mobile to desktop on wptouch
516
- * to remove carriage return (^M)
517
- * <strong>[FEATURE]</strong> Finnish language has been added
518
- * <strong>[FEATURE]</strong> Nginx support
519
- * to use case-insensitive file system for browser caching
520
- * WAP-Browser has been added into mobile user agent list
521
- * to prevent 404 error for wpfc-minified after clearing minified files
522
- * <strong>[FEATURE]</strong> to add any cdn provider
523
- * to prevent from xss attacks (Brendon Boshell)
524
- * to clear the cache of homepage after update static page
525
- * to clear the cache of homepage after update sticky page
526
- * to clear the cache of homepage after update post which appears on homepage
527
-
528
- = 0.8.5.5 =
529
- * to add Amazon CloudFront CDN
530
- * to add KeyCDN
531
- * to update Russian Language
532
- * to fix PHP Notice: Undefined index: HTTP_USER_AGENT
533
- * to fix PHP Notice: Undefined index: name
534
- * to fix combine js issue with commented out js
535
- * to fix delete minify files issue
536
- * to add image/svg+xml for leverage browser cache
537
- * refactoring of minify and combine css features
538
- * to fix redirection to /wp-content/cache/all for ssl
539
- * to add text for toolbar icon
540
-
541
- = 0.8.5.4 =
542
- * to be compatible with Guideline
543
-
544
- = 0.8.5.3 =
545
- * to check zlib extension for downloading premium automatically
546
- * to update Portuguese and Turkish languages
547
- * to be compatible with sub-directory installation with renamed wp-content
548
- * refactoring of js-utilities.php
549
- * to fix delete comment issue
550
-
551
- = 0.8.5.2 =
552
- * to replace https:// and http:// to // after converting inline css to link
553
- * to replace https:// and http:// to // after converting inline js to link
554
- * to ignore the empty css files
555
- * to optimize exclude page feature
556
- * to fix mobile cache issue for ipad user if wp touch is used
557
- * to prevent caching js files whose type is text/template
558
- * to update Portuguese language
559
-
560
- = 0.8.5.1 =
561
- * <strong>[FEATURE]</strong> to add MaxCDN
562
- * to remove comments from inline js
563
- * to fix trim() issue
564
- * to be compatible with Leaflet Maps Marker
565
-
566
- = 0.8.5.0 =
567
- * to prevent combine js file which is added by WP Socializer
568
- * to make ruleForWpContent() pasive
569
- * refactoring of inlineToScript()
570
- * <strong>[FEATURE]</strong> Romanian has been added
571
-
572
- = 0.8.4.9 =
573
- * <strong>[FEATURE]</strong> to be compatible with WP Mobile Edition
574
- * to prevent from sql injection attacks (Kacper Szurek)
575
- * to prevent using Head Cleaner
576
-
577
- = 0.8.4.8 =
578
- * to show .htaccess rules if not writeable
579
- * not to comment out Facebook js
580
- * not to comment out document.createElement('script')
581
- * not to minify and combine style and js codes in noscript tag
582
-
583
- = 0.8.4.7 =
584
- * to update Portuguese language
585
- * to make compatible with Google Adsense plugin
586
- * to add user-agent of Samsung S5, LG and HTC
587
-
588
- = 0.8.4.6 =
589
- * to add popup warning modal for premium download
590
- * to remove mobile cache after update post
591
-
592
- = 0.8.4.5 =
593
- * wpfcNOT is visible only for admins
594
- * to prevent creating cache for POST request
595
- * to fix issue of converting inline js to internal file
596
-
597
- = 0.8.4.4 =
598
- * to fix inline css issue
599
- * to prevent caching for renamed wp-login.php
600
-
601
- = 0.8.4.3 =
602
- * to stop caching for /wp-api/v1, /cart, /checkout, /receipt, /confirmation, /product - WooCommerce
603
- * to prevent caching if useragent Mediapartners-Google
604
- * to decrease pcre.recursion_limit in css optimization to prevent Internal Server Error
605
-
606
- = 0.8.4.2 =
607
- * to fix premium page issue
608
-
609
- = 0.8.4.1 =
610
- * exclude page is case insensitive
611
- * to check buffer is json or not for checkWoocommerceSession()
612
- * not to comment out Google Analytics by Yoast
613
-
614
- = 0.8.4.0 =
615
- * refactoring of checkHtml()
616
-
617
- = 0.8.3.9 =
618
- * other plugins can use the functions
619
- * to put ";" at the end of js file if last char is not ";"
620
- * to make compatible renamed wp-content sites
621
-
622
- = 0.8.3.8 =
623
- * to prevent using GZip Ninja Speed Compression
624
- * to prevent using GZIP Output
625
- * to show success message after saving exclude page
626
- * style of left panel
627
- * opera mini has been added into mobile user agent list
628
- * to fix download premium version issue
629
-
630
- = 0.8.3.7 =
631
- * to prevent confliction on left menu
632
- * to fix error and success message icon
633
-
634
- = 0.8.3.6 =
635
- * MIDP has been added into mobile user agent list
636
-
637
- = 0.8.3.5 =
638
- * to fix vulnerability (discoverd by 0pc0deFR aka Kevin FALCOZ)
639
- * to fix issue of moving chartset to the top
640
- * to prevent combine Google Fonts javascripts
641
- * <strong>[FEATURE]</strong> exclude page
642
-
643
- = 0.8.3.4 =
644
- * to prevent inline to external if the style is used in the javascript
645
- * to prevent creating cache for xmlrpc.php
646
- * to fix white page issue because of combine css and js
647
- * icons for premium version
648
-
649
- = 0.8.3.3 =
650
- * WPtouch issue has been solved
651
- * improvement of cache delete
652
- * to add ";" at the end of JS file if it does not exist
653
-
654
- = 0.8.3.2 =
655
- * to prevent comment out google analitics code
656
- * refactoring of isPasswordProtected()
657
- * the clear cache button on toolbar is available for editors
658
-
659
- = 0.8.3.1 =
660
- * index.html files have been added intead of .htaccess
661
- * to prevent comment out inline js rules twice
662
- * <strong>[FEATURE]</strong> to add delete button on the admin bar
663
- * to fix url() problem for data:image/svg+xml
664
-
665
- = 0.8.3.0 =
666
- * to fix <!--[wpfcNOT]--> issue of text to visual
667
- * refactoring of redirect rule
668
- * to prevent the directory access
669
- * to prevent from xss attacks (Kacper Szurek)
670
-
671
- = 0.8.2.9 =
672
- * to fix 301 redirection issue of sub-folder
673
- * to support non-english characters on search
674
-
675
- = 0.8.2.8 =
676
- * to prevent caching wp-login.php if renamed
677
- * to prevent caching if the page has a contactform7 form with captcha
678
- * to prevent caching for ajax call
679
-
680
- = 0.8.2.7 =
681
- * to implement single post cache deletion when a post/page is modified
682
- * <strong>[FEATURE]</strong> to implement new frequency values for cache timeout
683
- * html corrupted warning has been added
684
- * to make compatible with WooCommerce Themes
685
- * to prevent combine inline css if commented out
686
-
687
- = 0.8.2.6 =
688
- * to fix sub-domain redirect issue with www
689
- * to prevent caching of sitemap.xml
690
- * to fix getting error when .htaccess is not found
691
- * to improve combine css
692
- * to prevent caching wp-comments-post.php
693
- * to prevent combine comment out js files
694
- * to prevent caching js files whose type is application/ld+json
695
- * style changes of delete cache panel
696
- * to fix php warning which is Invalid argument supplied for foreach()
697
- * to fix "File not found" message when trying to leave a comment
698
-
699
- = 0.8.2.5 =
700
- * to prevent converting style rules to link more than once
701
- * to clear cache after admin writes a comment
702
- * to clear cache if comment has not ben manually approved
703
- * to disable minute and hour when hourly is selected
704
- * to show both time when twice daily is selected on cache timeout panel
705
-
706
- = 0.8.2.4 =
707
- * rewrite rule issue has been solved
708
- * to remove empty chars from url()
709
- * to add media type for inline css after minify
710
-
711
- = 0.8.2.3 =
712
- * to support setting hour and minute as a 0
713
- * to fix server time NaN
714
- * to check the length of inline css for combine css
715
- * to support selecting the css files which do not include home_url()
716
- * to support selecting the js files which do not include home_url()
717
- * publish_page to save_post
718
-
719
- = 0.8.2.2 =
720
- * to minify css files which are NOT "media='all'"
721
- * to support selecting the css files which do not include home_url()
722
- * to insert define('WP_CACHE', true) into wp-config.php for wp-postviews
723
- * to fix PHP Warning: Missing argument 2 for CssUtilities::minifyCss()
724
- * to fix PHP Warning: scandir warning
725
-
726
- = 0.8.2.1 =
727
- * to support WP-PostViews
728
- * tab of minified css and js has been removed
729
- * warning about Microsoft IIS has been added
730
- * to prevent minify and combine css if returns 404
731
- * to prevent combine js if returns 404
732
- * warning about Multisite has been added
733
-
734
- = 0.8.2.0 =
735
- * warning of regular expression is too large has been added
736
- * <strong>[FEATURE]</strong> to be able to choose specific time
737
- * js and css merging is not beta anymore
738
-
739
- = 0.8.1.9 =
740
- * to delete cachen when page is edited or published
741
- * warning of DONOTCACHEPAGE has been added
742
- * file_get_contents_curl() issue for the files which start with //
743
- * to combine the css files which has media="all" attribute
744
- * to fix re-write rule for sub-directory installation
745
- * <strong>[FEATURE]</strong> to prevent 304 browser caching to see new post
746
- * <strong>[FEATURE]</strong> wpfcNOT works for pages as well except the themes
747
- * the warning has been added for empty buffer
748
-
749
- = 0.8.1.8 =
750
- * to fix disable the plugin
751
- * to check permalinks was set or not
752
- * modified of deletion of minified files' warning
753
- * to fix inserting extra comment tag
754
-
755
- = 0.8.1.7 =
756
- * wp-polls issue
757
- * cache timeout issue
758
- * minify css issue for data:application/x-font-woff
759
-
760
- = 0.8.1.6 =
761
- * optimization of deletion cache
762
- * creating cache problem when combine css is unchecked
763
-
764
- = 0.8.1.5 =
765
- * <strong>[FEATURE]</strong> JS Combine
766
- * to check that super cache is active or not
767
- * to check that better wordPress minify is active or not
768
- * <strong>[FEATURE]</strong> french translation
769
-
770
- = 0.8.1.4 =
771
- * to prevent creating cache for logged-in users
772
- * gzip for svg, x-font-ttf, vnd.ms-fontobject, font/opentype font/ttf font/eot font/otf
773
- * stlye files issue with https
774
- * <strong>[FEATURE]</strong> Keep Alive
775
- * compatible with @import "style.css";
776
- * <strong>[FEATURE]</strong> italian language has been added
777
-
778
- = 0.8.1.3 =
779
- * to support renamed wp-content
780
-
781
- = 0.8.1.2 =
782
- * to fix combine css breaking css down
783
- * the password protected posts are not cached
784
- * change of minified css file name
785
-
786
- = 0.8.1.1 =
787
- * to show which style files are combined
788
- * to fix the minify css issue
789
- * to fix minify css breaking css down
790
-
791
- = 0.8 =
792
- * <strong>[FEATURE]</strong> Supports "Subdirectory Install"
793
- * <strong>[FEATURE]</strong> SSL support
794
- * <strong>[FEATURE]</strong> Leverage browser caching has been added
795
- * GZippy warning has been added
796
- * Path issue of rewrite rules has been solved
797
- * to prevent create cache for mobile devices
798
- * <strong>[FEATURE]</strong> Enable/Disable cache option for logged-in users has been added
799
- * Improvement of Turkish and Spanish translation
800
- * Issue of subdirectory install using with subdirectory url
801
- * Double slash in the rewrite rule problem has been solved
802
- * Full path is written instead of %{DOCUMENT_ROOT}
803
- * Stop to prevent not to minify css files which has small size
804
- * Improvement of detection active plugins
805
- * <strong>[FEATURE]</strong> "Combine Css" has been added
806
- * Stop to prevent not to minify css files which has small size
807
- * Improvement of detection active plugins
808
- * <strong>[FEATURE]</strong> "Combine Css" has been added
809
- * Improvement of combine css
810
- * to prevent creating cache for the urls which has query string
811
-
812
- = 0.7.9 =
813
- * <strong>[FEATURE]</strong> Compatible with WP-Polls
814
- * <strong>[FEATURE]</strong> Enable/Disable cache option for mobile devices has been added
815
- * <strong>[FEATURE]</strong> "[wpfcNOT]" shortcode has been converted to the image
816
- * Optimization of CSS minify
817
- * r10.net support forum url has been added
818
- * Some style changes
819
- * to correct misspelling
820
- * Icon has been changed
821
- * <strong>[FEATURE]</strong> Portuguese language has been added
822
- * <strong>[FEATURE]</strong> German language has been added
823
- * Minify css issue has been solved
824
- * <strong>[FEATURE]</strong> Blackberry PlayBook has been added into mobiles
825
- * <strong>[FEATURE]</strong> www and non-www redirections have been added
826
-
827
- = 0.7.8 =
828
- * <strong>[FEATURE]</strong> Delete Minified Css & Js feature has been added
829
- * Update of Spanish translation
830
- * Update of Turkish translation
831
- * Update of Russian translation
832
- * Update of Ukrainian translation
833
-
834
- = 0.7.7 =
835
- * Optimization of CSS minify
836
- * rmdir, mkdir and rename error_log problem
837
- * modify .htaccess problem
838
- * Update of Spanish translation
839
- * Update of Turkish translation
840
- * Update of Russian translation
841
- * Update of Ukrainian translation
842
-
843
- = 0.7.6 =
844
- * <strong>[FEATURE]</strong> Gzip Compression
845
-
846
- = 0.7.5 =
847
- * Performance of delete all files is improved
848
- * Rewrite rules of WPFC is removed from .htaccess when wpfc is deactivated
849
- * CSS of Warnings has been changed
850
-
851
- = 0.7.4 =
852
- * Minify Css problem has been solved
853
- * Info panel has been added
854
- * Update of Spanish translation
855
- * Update of Turkish translation
856
- * Update of Russian translation
857
- * Update of Ukrainian translation
858
-
859
- = 0.7.3 =
860
- * Info Tip has been added
861
-
862
- = 0.7.2 =
863
- * <strong>[FEATURE]</strong> Minify CSS files
864
-
865
- = 0.7.1 =
866
- * Delete Cron Job when the plugin is deactivated
867
- * Delete from DB when the plugin is deactivated
868
-
869
- = 0.7 =
870
- * <strong>[FEATURE]</strong> works with Wordfence properly
871
- * <strong>[FEATURE]</strong> 404 pages are not cached
872
- * urls which includes words that wp-content, wp-admin, wp-includes are not cached
873
- * The issue about cache timeout has been solved
874
- * <strong>[FEATURE]</strong> Cache Timeout has been added
875
- * <strong>[FEATURE]</strong> Spanish language has been added
876
- * <strong>[FEATURE]</strong> Minify html
877
- * <strong>[FEATURE]</strong> Supported languages: Russian, Ukrainian and Turkish
878
- * <strong>[FEATURE]</strong> "Block Cache For Posts and Pages" has been added as a icon for TinyMCE and Quicktags editor
879
- * Cache file is not created if the file is exist
880
- * Cached files are deleted after deactivation of the plugin
881
-
882
- = 0.6 =
883
- * Cached file is not updated after comment because of security reasons
884
- * Checking corruption of html
885
- * Creation time of file has been added
886
- * "Not cached version" text has been removed
887
- * Some style changes
888
- * System works under sub wp sites
889
- * Plugin URI has been added
890
- * Dir path has been removed from not cached version
891
- * Some styles changes
892
- * Some styles changes
893
-
894
- = 0.5 =
895
- * <strong>[FEATURE]</strong> Admin can delete all cached files from the options page
896
- * <strong>[FEATURE]</strong> All cache files are deleted when a post or page is published
897
- * <strong>[FEATURE]</strong> Blocking cache with Shortcode
898
 
899
  == Frequently Asked Questions ==
900
 
@@ -907,17 +181,11 @@ Yes, it works with Nginx properly.
907
  = Does it work with IIS (Windows Server) ? =
908
  Yes, it works with IIS properly.
909
 
910
- = What does ".htaccess not found" warning mean? =
911
- Wpfc does not create .htaccess automatically so you need to create empty one.
912
-
913
- = How is "tmpWpfc" removed? =
914
- When the cached files are deleted, they are moved to "tmpWpfc" instead of being deleted and a cron-job is set. Delete all files are so difficult for server so cron-job is set not to use a lot of CPU resources. Cron-job is set and it deletes 100 files every 5 minutes. When all files in "tmpWpfc" are deleted, cron-job is unset.
915
 
916
- = Does Wpfc work with WPMU (Wordpress Multisite) properly? =
917
- No. Wpfc does not support Wordpress Multisite yet.
918
-
919
- = Does Wpfc work in "Subdirectory Install"? =
920
- Yes. Wpfc supports "Subdirectory Install".
921
 
922
  = Is this plugin compatible with Http Secure (https) ? =
923
  Yes, it is compatible with Http Secure (https).
@@ -940,11 +208,8 @@ Yes, it is compatible with Wordfence Security 100%.
940
  = Is this plugin compatible with qTranslate? =
941
  Yes, it is compatible with qTranslate 100%.
942
 
943
- = Is this plugin compatible with WPtouch Mobile Plugin? =
944
- Yes, it is compatible with WPtouch Mobile Plugin 100%.
945
-
946
- = Is this plugin compatible with Any Mobile Theme Switcher Plugin? =
947
- Yes, it is compatible with Any Mobile Theme Switcher Plugin 100%.
948
 
949
  = Is this plugin compatible with WP-PostRatings? =
950
  Yes, it is compatible with WP-PostRatings.
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.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
23
  <br><br>
24
  Setup of this plugin is so easy. You don't need to modify the .htacces file. It will be modified automatically.
25
 
 
 
 
26
  <h4>Features</h4>
27
 
28
  1. Mod_Rewrite which is the fastest method is used in this plugin
42
 
43
  <h4>Performance Optimization</h4>
44
 
45
+ In the premium version there are many features such as Minify Html, Minify Css, Enable Gzip Compression, Leverage browser caching, Combine CSS, Combine JS, Disable Emoji.
46
+
47
  1. Generating static html files from your dynamic WordPress blog
48
  2. Minify Html - You can decrease the size of page
49
  3. Minify Css - You can decrease the size of css files
50
+ 4. Enable Gzip Compression - Reduce the size of files sent from your server to increase the speed to which they are transferred to the browser
51
  5. Leverage browser caching - Reduce page load times for repeat visitors
52
  6. Combine CSS - Reduce number of HTTP round-trips by combining multiple CSS resources into one
53
  7. Combine JS
54
  8. Disable Emoji - You can remove the emoji inline css and wp-emoji-release.min.js
55
 
56
+ <h4>Premium Performance Optimization</h4>
57
+
58
+ The free version is enough to speed up your site but in the premium version there are extra features such as Mobile Cache, Widget Cache, Minify HTML Plus, Minify CSS Plus, Minify JS, Combine JS Plus, Defer Javascript, Optimize Images, Convert WebP, Database Cleanup, Google Fonts Async, Lazy Load for super fast load times.
59
+
60
+ 1. Mobile Cache
61
+ 2. Widget Cache
62
+ 3. Minify HTML Plus
63
+ 4. Minify CSS Plus
64
+ 5. Minify Javascript - Minifying JavaScript files can reduce payload sizes and script parse time
65
+ 6. Combine JS Plus
66
+ 7. Defer Javascript - Eliminate render-blocking JavaScript resources. Consider delivering critical JS inline and deferring all non-critical JS
67
+ 8. Optimize Images - Optimized images load faster and consume less cellular data
68
+ 9. Convert WebP - Serve images in next-gen formats. Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption
69
+ 10. Database Cleanup
70
+ 11. Google Fonts Async
71
+ 12. Lazy Load - Defer offscreen images. Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive
72
+
73
  <h4>Supported languages: </h4>
74
 
75
  * 中文 (by suifengtec)
77
  * English
78
  * Español (by Javier Esteban)
79
  * Español de Venezuela (by Yordan Soares)
80
+ * Español de Argentina (by Mauricio Lopez)
81
  * فارسی (by Javad Rahimi)
82
+ * Français (by Cyrille Sanson)
83
  * Italiana (by Luisa Ravelli)
84
  * 日本語 (by KUCKLU)
85
  * Nederlands (by Frans Pronk https://ifra.nl)
88
  * Português do Brasil (Mario Antonio Sesso Junior)
89
  * Română
90
  * Русский (by Maxim)
91
+ * Slovenčina
92
  * Suomi (by Arhi Paivarinta)
93
  * Svenska (by Linus Wileryd)
94
  * Türkçe
124
 
125
  == Changelog ==
126
 
127
+ = 0.9.0.2 =
128
+ * <strong>[FEATURE]</strong> to add Spanish (Argentina) language
129
+ * to add WPFC_TOOLBAR_FOR_SHOP_MANAGER [<a target="_blank" href="https://www.wpfastestcache.com/features/clear-cache-link-at-the-toolbar/">Details</a>]
130
+ * to support MultiSite
131
+ * to add wpfc_exclude_current_page() for excluding current page [<a target="_blank" href="https://www.wpfastestcache.com/features/exclude-page/#hook">Details</a>]
132
+ * <strong>[FEATURE]</strong> to add French language
133
+ * <strong>[FEATURE]</strong> to add Slovak language
134
+ * to show the solution for AWS S3 Access Denied [<a target="_blank" href="https://www.wpfastestcache.com/warnings/amazon-s3-cloudfront-access-denied-403-forbidden/">Details</a>]
135
+ * to show the solution for Using CDN on SSL Sites [<a target="_blank" href="https://www.wpfastestcache.com/warnings/how-to-use-cdn-on-ssl-sites/">Details</a>]
136
+
137
  = 0.9.0.1 =
138
  * 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>]
139
  * to hide clear cache icon on toolbar for IE
167
  * to convert the icon from png to svg [by Roni Laukkarinen]
168
  * to fix Undefined index: HTTP_HOST cache.php on line 321
169
 
170
+ EARLIER VERSIONS
171
+ For the changelog of earlier versions, please refer to [<a target="_blank" href="https://www.wpfastestcache.com/changelog/earlier-changelog-of-freemium-version/">the changelog on wpfastestcache.com</a>]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
 
173
  == Frequently Asked Questions ==
174
 
181
  = Does it work with IIS (Windows Server) ? =
182
  Yes, it works with IIS properly.
183
 
184
+ = Is this plugin compatible with Multisite? =
185
+ Yes, it is compatible with Multisite.
 
 
 
186
 
187
+ = Is this plugin compatible with Subdirectory Installation? =
188
+ Yes, it is compatible with Subdirectory Installation.
 
 
 
189
 
190
  = Is this plugin compatible with Http Secure (https) ? =
191
  Yes, it is compatible with Http Secure (https).
208
  = Is this plugin compatible with qTranslate? =
209
  Yes, it is compatible with qTranslate 100%.
210
 
211
+ = Is this plugin compatible with WPtouch Mobile? =
212
+ Yes, it is compatible with WPtouch Mobile.
 
 
 
213
 
214
  = Is this plugin compatible with WP-PostRatings? =
215
  Yes, it is compatible with WP-PostRatings.
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.1
7
  Author: Emre Vona
8
  Author URI: http://tr.linkedin.com/in/emrevona
9
  Text Domain: wp-fastest-cache
@@ -131,6 +131,7 @@ GNU General Public License for more details.
131
  add_action("wpfc_clear_post_cache_by_id", array($this, 'singleDeleteCache'), 10, 2);
132
 
133
 
 
134
  // to clear cache after ajax request by other plugins
135
  if(isset($_POST["action"])){
136
  // All In One Schema.org Rich Snippets
@@ -294,6 +295,7 @@ GNU General Public License for more details.
294
  }
295
  }
296
 
 
297
  public function notify($message = array()){
298
  if(isset($message[0]) && $message[0]){
299
  if(function_exists("add_settings_error")){
@@ -645,6 +647,11 @@ GNU General Public License for more details.
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";
@@ -815,7 +822,7 @@ GNU General Public License for more details.
815
  }
816
 
817
  protected function get_excluded_useragent(){
818
- return "facebookexternalhit|Twitterbot|LinkedInBot|WhatsApp|Mediatoolkitbot";
819
  }
820
 
821
  // protected function detectNewPost(){
@@ -1857,6 +1864,10 @@ GNU General Public License for more details.
1857
  do_action("wpfc_clear_all_cache", $minified);
1858
  }
1859
 
 
 
 
 
1860
  function wpfc_clear_post_cache_by_id($post_id = false){
1861
  if($post_id){
1862
  do_action("wpfc_clear_post_cache_by_id", false, $post_id);
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.2
7
  Author: Emre Vona
8
  Author URI: http://tr.linkedin.com/in/emrevona
9
  Text Domain: wp-fastest-cache
131
  add_action("wpfc_clear_post_cache_by_id", array($this, 'singleDeleteCache'), 10, 2);
132
 
133
 
134
+
135
  // to clear cache after ajax request by other plugins
136
  if(isset($_POST["action"])){
137
  // All In One Schema.org Rich Snippets
295
  }
296
  }
297
 
298
+
299
  public function notify($message = array()){
300
  if(isset($message[0]) && $message[0]){
301
  if(function_exists("add_settings_error")){
647
  if(defined('WPFC_TOOLBAR_FOR_EDITOR') && WPFC_TOOLBAR_FOR_EDITOR){
648
  array_push($allowed_roles, "editor");
649
  }
650
+
651
+ // Shop Manager
652
+ if(defined('WPFC_TOOLBAR_FOR_SHOP_MANAGER') && WPFC_TOOLBAR_FOR_SHOP_MANAGER){
653
+ array_push($allowed_roles, "shop_manager");
654
+ }
655
 
656
  if(array_intersect($allowed_roles, $user->roles)){
657
  include_once plugin_dir_path(__FILE__)."inc/admin-toolbar.php";
822
  }
823
 
824
  protected function get_excluded_useragent(){
825
+ return "facebookexternalhit|WP_FASTEST_CACHE_CSS_VALIDATOR|Twitterbot|LinkedInBot|WhatsApp|Mediatoolkitbot";
826
  }
827
 
828
  // protected function detectNewPost(){
1864
  do_action("wpfc_clear_all_cache", $minified);
1865
  }
1866
 
1867
+ function wpfc_exclude_current_page(){
1868
+ do_action("wpfc_exclude_current_page");
1869
+ }
1870
+
1871
  function wpfc_clear_post_cache_by_id($post_id = false){
1872
  if($post_id){
1873
  do_action("wpfc_clear_post_cache_by_id", false, $post_id);