Version Description
- Added Spanish translation by Omi.
- Added Italian translation by Gianni Diurno.
- Addded advanced debug code to check front page for category problem. Enable by setting $wp_super_cache_advanced_debug to 1 in the config file.
- Fixed wordpress vs wordpress_logged_in cookie mismatch in cookie checking function.
- Correctly check if WP_CACHE is set or not. PHP is weird.
- Added wp_cache_clear_cache() to clear out cache directory.
- Only show logged in message when debugging enabled.
- Added troubleshooting point 20. PHP vs Apache user.
- Fixed problem deleting cache file.
- Don't delete cache files when moderated comments are deleted.
Download this release
Release Info
Developer | donncha |
Plugin | WP Super Cache |
Version | 0.9.8 |
Comparing to | |
See all releases |
Code changes from version 0.9.7 to 0.9.8
- Changelog.txt +192 -0
- languages/wp-super-cache-es_ES.mo +0 -0
- languages/wp-super-cache-es_ES.po +1069 -0
- languages/wp-super-cache-it_IT.mo +0 -0
- languages/wp-super-cache-it_IT.po +1071 -0
- plugins/badbehaviour.php +10 -9
- plugins/searchengine.php +7 -7
- readme.txt +22 -2
- wp-cache-config-sample.php +6 -0
- wp-cache-phase1.php +7 -2
- wp-cache-phase2.php +157 -136
- wp-cache.php +122 -43
- wp-super-cache.pot +405 -222
Changelog.txt
CHANGED
@@ -1,3 +1,195 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
2009-10-02 21:40 donncha
|
2 |
|
3 |
* readme.txt, wp-cache.php: Bump version to 0.9.7
|
1 |
+
2009-11-18 17:28 donncha
|
2 |
+
|
3 |
+
* readme.txt: Added "Translators" thank you message
|
4 |
+
|
5 |
+
2009-11-18 17:14 donncha
|
6 |
+
|
7 |
+
* Changelog.txt, readme.txt: Updated changelog
|
8 |
+
|
9 |
+
2009-11-18 16:36 donncha
|
10 |
+
|
11 |
+
* wp-cache-config-sample.php, wp-cache.php: Added
|
12 |
+
$wp_super_cache_advanced_debug and hide advanced debug features
|
13 |
+
by default
|
14 |
+
|
15 |
+
2009-11-13 12:33 donncha
|
16 |
+
|
17 |
+
* languages/wp-super-cache-es_ES.mo,
|
18 |
+
languages/wp-super-cache-es_ES.po: Update Spanish translation
|
19 |
+
files, props Omi
|
20 |
+
|
21 |
+
2009-11-13 10:34 donncha
|
22 |
+
|
23 |
+
* wp-super-cache.pot: Update translation file
|
24 |
+
|
25 |
+
2009-11-13 10:24 donncha
|
26 |
+
|
27 |
+
* wp-cache.php: Fire off page checker every 5 minutes rather than 1
|
28 |
+
minute.
|
29 |
+
|
30 |
+
2009-11-13 10:02 donncha
|
31 |
+
|
32 |
+
* languages/wp-super-cache-it_IT.mo,
|
33 |
+
languages/wp-super-cache-it_IT.po: Fixed typo in translation
|
34 |
+
|
35 |
+
2009-11-12 14:05 donncha
|
36 |
+
|
37 |
+
* languages/wp-super-cache-es_ES.mo,
|
38 |
+
languages/wp-super-cache-es_ES.po,
|
39 |
+
languages/wp-super-cache-it_IT.mo,
|
40 |
+
languages/wp-super-cache-it_IT.po: Language updates via Gianni
|
41 |
+
Diurno and Omi (thanks guys, you do a great job!)
|
42 |
+
|
43 |
+
2009-11-10 16:31 donncha
|
44 |
+
|
45 |
+
* wp-super-cache.pot: Updated translation file
|
46 |
+
|
47 |
+
2009-11-10 16:26 donncha
|
48 |
+
|
49 |
+
* wp-cache-config-sample.php, wp-cache.php: Added
|
50 |
+
wp_cache_check_site() function
|
51 |
+
|
52 |
+
2009-11-10 13:00 donncha
|
53 |
+
|
54 |
+
* wp-cache.php: More gettext fixes
|
55 |
+
|
56 |
+
2009-11-10 12:24 donncha
|
57 |
+
|
58 |
+
* languages/wp-super-cache-es_ES.mo,
|
59 |
+
languages/wp-super-cache-es_ES.po: Added Spanish translation,
|
60 |
+
props Omi
|
61 |
+
|
62 |
+
2009-11-09 16:45 donncha
|
63 |
+
|
64 |
+
* wp-cache.php: Change wordpress_logged_in to wordpress in
|
65 |
+
supercache cookie checks to match PHP code
|
66 |
+
|
67 |
+
2009-11-05 18:01 donncha
|
68 |
+
|
69 |
+
* languages/wp-super-cache-it_IT.po: Fix link to adverts for
|
70 |
+
friends plugin
|
71 |
+
|
72 |
+
2009-11-05 16:17 donncha
|
73 |
+
|
74 |
+
* wp-cache.php: More gettext fixes, props Juan P.F.
|
75 |
+
|
76 |
+
2009-11-05 12:24 donncha
|
77 |
+
|
78 |
+
* languages/wp-super-cache-it_IT.mo,
|
79 |
+
languages/wp-super-cache-it_IT.po: First check in of Italian
|
80 |
+
translation by Gianni Diurno (http://gidibao.net/)
|
81 |
+
|
82 |
+
2009-11-05 12:10 donncha
|
83 |
+
|
84 |
+
* wp-super-cache.pot: Update translations
|
85 |
+
|
86 |
+
2009-11-05 11:57 donncha
|
87 |
+
|
88 |
+
* wp-cache.php: More gettext changes, props Gianni
|
89 |
+
|
90 |
+
2009-11-04 16:28 donncha
|
91 |
+
|
92 |
+
* wp-super-cache.pot: Fixed missing < in text
|
93 |
+
|
94 |
+
2009-11-04 16:26 donncha
|
95 |
+
|
96 |
+
* plugins/searchengine.php: Ooops, minor typo, props Juan P.F.
|
97 |
+
|
98 |
+
2009-11-04 12:07 donncha
|
99 |
+
|
100 |
+
* languages, wp-cache.php: Load translation files from languages
|
101 |
+
folder
|
102 |
+
|
103 |
+
2009-11-04 11:50 donncha
|
104 |
+
|
105 |
+
* wp-super-cache.pot: Updated translation file
|
106 |
+
|
107 |
+
2009-11-04 11:39 donncha
|
108 |
+
|
109 |
+
* wp-cache-phase1.php: Split user agent and cache file checks into
|
110 |
+
two for easier debugging
|
111 |
+
|
112 |
+
2009-11-04 11:38 donncha
|
113 |
+
|
114 |
+
* plugins/badbehaviour.php, plugins/searchengine.php, wp-cache.php:
|
115 |
+
gettext updates, thanks Gianni
|
116 |
+
|
117 |
+
2009-10-25 17:44 donncha
|
118 |
+
|
119 |
+
* wp-cache.php: Check for WP_CACHE when plugin loaded rather than
|
120 |
+
after init. See
|
121 |
+
http://wordpress.org/support/topic/307644?replies=28#post-1258599
|
122 |
+
|
123 |
+
2009-10-21 12:22 donncha
|
124 |
+
|
125 |
+
* wp-cache-phase2.php: Add wp_cache_clear_cache() function to clean
|
126 |
+
cache directory
|
127 |
+
|
128 |
+
2009-10-21 12:04 donncha
|
129 |
+
|
130 |
+
* wp-cache-phase2.php: Fix indentation in ob callback
|
131 |
+
|
132 |
+
2009-10-21 12:01 donncha
|
133 |
+
|
134 |
+
* wp-cache-phase2.php: Only show logged in message when debugging
|
135 |
+
enabled
|
136 |
+
|
137 |
+
2009-10-20 11:21 donncha
|
138 |
+
|
139 |
+
* wp-super-cache.pot: Updated translation file
|
140 |
+
|
141 |
+
2009-10-20 11:19 donncha
|
142 |
+
|
143 |
+
* wp-cache.php: Minor typo
|
144 |
+
|
145 |
+
2009-10-20 11:13 donncha
|
146 |
+
|
147 |
+
* wp-cache.php: Minor text change to aid translation. Props Aldo
|
148 |
+
Latino
|
149 |
+
|
150 |
+
2009-10-15 03:08 donncha
|
151 |
+
|
152 |
+
* readme.txt: Added troubleshooting no 20., php vs apache owners
|
153 |
+
accessing cache files. props Nikolay Bachiyski.
|
154 |
+
|
155 |
+
2009-10-12 22:01 donncha
|
156 |
+
|
157 |
+
* wp-cache.php: Fix problem deleting cache files. props Marco
|
158 |
+
Schmoecker
|
159 |
+
|
160 |
+
2009-10-06 14:55 donncha
|
161 |
+
|
162 |
+
* wp-cache-phase2.php: Deleting a moderated comment shouldn't
|
163 |
+
delete cached files.
|
164 |
+
|
165 |
+
2009-10-06 10:32 donncha
|
166 |
+
|
167 |
+
* wp-cache-phase2.php: "wp_set_comment_status" action has 2
|
168 |
+
parameters
|
169 |
+
|
170 |
+
2009-10-06 08:50 donncha
|
171 |
+
|
172 |
+
* wp-cache-phase2.php: Don't delete cache files on moderated pings
|
173 |
+
or trackbacks
|
174 |
+
|
175 |
+
2009-10-05 21:29 donncha
|
176 |
+
|
177 |
+
* wp-cache.php: Remove this debugging code
|
178 |
+
|
179 |
+
2009-10-05 21:25 donncha
|
180 |
+
|
181 |
+
* wp-cache.php: Schedule the site checker from the admin page, fix
|
182 |
+
typo when checking schedules
|
183 |
+
|
184 |
+
2009-10-05 16:53 donncha
|
185 |
+
|
186 |
+
* wp-cache.php: Added gzipped front page checker that kicks in
|
187 |
+
every 60 seconds via cron
|
188 |
+
|
189 |
+
2009-10-02 21:42 donncha
|
190 |
+
|
191 |
+
* Changelog.txt: More updating
|
192 |
+
|
193 |
2009-10-02 21:40 donncha
|
194 |
|
195 |
* readme.txt, wp-cache.php: Bump version to 0.9.7
|
languages/wp-super-cache-es_ES.mo
ADDED
Binary file
|
languages/wp-super-cache-es_ES.po
ADDED
@@ -0,0 +1,1069 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP Super Cache 0.9.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-super-cache\n"
|
5 |
+
"POT-Creation-Date: 2009-11-13 10:27+0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Omi <equipajedemano@gmail.com>\n"
|
8 |
+
"Language-Team: Omi <equipajedemano@gmail.com | http://equipajedemano.info/>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: Spanish\n"
|
14 |
+
"X-Poedit-Country: Spain\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
|
17 |
+
#: plugins/badbehaviour.php:45
|
18 |
+
msgid "Bad Behaviour not found. Please check your install."
|
19 |
+
msgstr "No se encuentra Bad Behaviour. Por favor, revise su instalación."
|
20 |
+
|
21 |
+
#: plugins/badbehaviour.php:47
|
22 |
+
#: plugins/badbehaviour.php:66
|
23 |
+
#: plugins/searchengine.php:61
|
24 |
+
#: plugins/searchengine.php:76
|
25 |
+
#: wp-cache.php:709
|
26 |
+
msgid "Disable"
|
27 |
+
msgstr "Desactivar"
|
28 |
+
|
29 |
+
#: plugins/badbehaviour.php:55
|
30 |
+
#: plugins/searchengine.php:67
|
31 |
+
msgid "disabled"
|
32 |
+
msgstr "desactivado"
|
33 |
+
|
34 |
+
#: plugins/badbehaviour.php:57
|
35 |
+
#: plugins/searchengine.php:69
|
36 |
+
#: wp-cache.php:1052
|
37 |
+
msgid "enabled"
|
38 |
+
msgstr "activado"
|
39 |
+
|
40 |
+
#: plugins/badbehaviour.php:60
|
41 |
+
#, php-format
|
42 |
+
msgid "Bad Behaviour support is %s"
|
43 |
+
msgstr "El soporte de Bad Behaviour está %s"
|
44 |
+
|
45 |
+
#: plugins/badbehaviour.php:62
|
46 |
+
#, php-format
|
47 |
+
msgid "(Only half-on caching supported, disabled compression and requires <a href=\"http://www.bad-behavior.ioerror.us/\">Bad Behavior</a> in \"%s/plugins/bad-behavior/\") "
|
48 |
+
msgstr "(Sólo se soporta caché \"a medias\", se desactiva la compresión y requiere instalar <a href=\"http://www.bad-behavior.ioerror.us/\">Bad Behavior</a> en \"%s/plugins/bad-behavior/\") "
|
49 |
+
|
50 |
+
#: plugins/badbehaviour.php:64
|
51 |
+
#: plugins/searchengine.php:74
|
52 |
+
#: wp-cache.php:709
|
53 |
+
msgid "Enable"
|
54 |
+
msgstr "Activar"
|
55 |
+
|
56 |
+
#: plugins/badbehaviour.php:70
|
57 |
+
#: wp-cache.php:786
|
58 |
+
#: wp-cache.php:788
|
59 |
+
msgid "Warning!"
|
60 |
+
msgstr "¡Atención!"
|
61 |
+
|
62 |
+
#: plugins/searchengine.php:71
|
63 |
+
#, php-format
|
64 |
+
msgid "<a href=\"http://ocaoimh.ie/no-adverts-for-friends/\">No Adverts for Friends</a> plugin is %s"
|
65 |
+
msgstr "El plugin <a href=\"http://ocaoimh.ie/no-adverts-for-friends/\">No Adverts for Friends</a> está %s"
|
66 |
+
|
67 |
+
#: plugins/searchengine.php:72
|
68 |
+
msgid "(requires <a href=\"http://ocaoimh.ie/no-adverts-for-friends/\">friendsadverts.php</a> too) "
|
69 |
+
msgstr "(Necesita también <a href=\"http://ocaoimh.ie/no-adverts-for-friends/\">friendsadverts.php</a>) "
|
70 |
+
|
71 |
+
#: wp-cache.php:87
|
72 |
+
#, php-format
|
73 |
+
msgid "Please create %s /wp-cache-config.php from wp-super-cache/wp-cache-config-sample.php"
|
74 |
+
msgstr "Por favor, cree %s /wp-cache-config.php desde wp-super-cache/wp-cache-config-sample.php"
|
75 |
+
|
76 |
+
#: wp-cache.php:170
|
77 |
+
msgid "WP Super Cache Manager"
|
78 |
+
msgstr "Gestión de WP Super Cache"
|
79 |
+
|
80 |
+
#: wp-cache.php:172
|
81 |
+
msgid "Warning! PHP Safe Mode Enabled!"
|
82 |
+
msgstr "¡Atención, modo PHP Safe activo!"
|
83 |
+
|
84 |
+
#: wp-cache.php:173
|
85 |
+
msgid "You may experience problems running this plugin because SAFE MODE is enabled."
|
86 |
+
msgstr "Podría experimentar problemas ejecutando este plugin con el modo PHP SAFE activo."
|
87 |
+
|
88 |
+
#: wp-cache.php:175
|
89 |
+
msgid "Your server is set up to check the owner of PHP scripts before allowing them to read and write files."
|
90 |
+
msgstr "Su servidor está configurado para comprobar el propietario de los scripts PHP antes de permitirles escribir y leer archivos."
|
91 |
+
|
92 |
+
#: wp-cache.php:176
|
93 |
+
#, php-format
|
94 |
+
msgid "You or an administrator may be able to make it work by changing the group owner of the plugin scripts to match that of the web server user. The group owner of the %s/cache/ directory must also be changed. See the <a href=\"http://php.net/features.safe-mode\">safe mode manual page</a> for further details."
|
95 |
+
msgstr "Usted, o un administrador, debería ser capaz de hacerlo funcionar cambiando el propietario del grupo de los scripts para que coincidan con el del usuario web del servidor. El propietario del grupo del directorio %s/cache/ también deberá cambiarse. Revise la <a href=\"http://php.net/features.safe-mode\">página sobre safe mode en el manual</a> para obtener más información."
|
96 |
+
|
97 |
+
#: wp-cache.php:178
|
98 |
+
msgid "You or an administrator must disable this. See the <a href=\"http://php.net/features.safe-mode\">safe mode manual page</a> for further details. This cannot be disabled in a .htaccess file unfortunately. It must be done in the php.ini config file."
|
99 |
+
msgstr "Usted, o un administrador, deberán desactivar esto. Revise la <a href=\"http://php.net/features.safe-mode\">página sobre safe mode en el manual</a> para obtener más información. Desafortunadamente, esto no puede ser desactivado desde un fichero .htaccess sino que debe hacerse desde el fichero de configuración php.ini"
|
100 |
+
|
101 |
+
#: wp-cache.php:189
|
102 |
+
msgid "Configuration file changed, some values might be wrong. Load the page again from the \"Settings\" menu to reset them."
|
103 |
+
msgstr "El archivo de configuración ha cambiado, algunos valores pueden ser incorrectos. Recargue de nuevo la página desde el menú \"Opciones\" para reestablecerlos."
|
104 |
+
|
105 |
+
#: wp-cache.php:195
|
106 |
+
msgid "Cannot continue... fix previous problems and retry."
|
107 |
+
msgstr "No puedo continuar...solucione los problemas descritos y reintente."
|
108 |
+
|
109 |
+
#: wp-cache.php:211
|
110 |
+
#, php-format
|
111 |
+
msgid "Warning! Your hostname \"%s\" resolves to %s"
|
112 |
+
msgstr "¡Atención! Su hostname \"%s\" resuelve como %s"
|
113 |
+
|
114 |
+
#: wp-cache.php:213
|
115 |
+
#, php-format
|
116 |
+
msgid "Your server thinks your hostname resolves to %s. Some services such as garbage collection by this plugin, and WordPress scheduled posts may not operate correctly."
|
117 |
+
msgstr "Su servidor cree que su hostname resuelve como %s. Algunos servicios, como la recolección de basura de este plugin o la publicación diferida de WordPress, podrían no funcionar correctamente."
|
118 |
+
|
119 |
+
#: wp-cache.php:214
|
120 |
+
#: wp-cache.php:228
|
121 |
+
#, php-format
|
122 |
+
msgid "Please see entry 16 in the <a href=\"%s\">Troubleshooting section</a> of the readme.txt"
|
123 |
+
msgstr "Por favor, revise la entrada nº 16 de la sección <a href=\"%s\">Troubleshooting</a> del fichero readme.txt"
|
124 |
+
|
125 |
+
#: wp-cache.php:227
|
126 |
+
msgid "Unfortunately WordPress cannot find the file wp-cron.php. This script is required for the the correct operation of garbage collection by this plugin, WordPress scheduled posts as well as other critical activities."
|
127 |
+
msgstr "Desafortunadamente WordPress no puede localizar el fichero wp-cron.php. Este script es necesario para el funcionamiento de la función de recolección de basura que realiza este, plugin así como para la publicación diferida de WordPress y otras actividades críticas."
|
128 |
+
|
129 |
+
#: wp-cache.php:239
|
130 |
+
msgid "Mod rewrite may not be installed!"
|
131 |
+
msgstr "¡Mod rewrite puede no estar instalado!"
|
132 |
+
|
133 |
+
#: wp-cache.php:240
|
134 |
+
msgid "It appears that mod_rewrite is not installed. Sometimes this check isn’t 100% reliable, especially if you are not using Apache. Please verify that the mod_rewrite module is loaded. It is required for serving Super Cache static files. You will still be able to use half-on mode."
|
135 |
+
msgstr "Parece que mod_rewrite no está instalado. Algunas veces esto no es 100% preciso, especialmente si no está utilizando Apache. Por favor, compruebe que el módulo mod_rewrite se encuentra cargado. Es necesario para servir los ficheros estáticos del Super Cache. No obstante, debería ser capaz de poder usar el modo de caché \"a medias\"."
|
136 |
+
|
137 |
+
#: wp-cache.php:245
|
138 |
+
msgid "Read Only Mode. Configuration cannot be changed."
|
139 |
+
msgstr "Modo de Solo Lectura. La configuración no puede cambiarse."
|
140 |
+
|
141 |
+
#: wp-cache.php:245
|
142 |
+
msgid "Why your configuration may not be changed"
|
143 |
+
msgstr "¿Por qué no puede cambiarse su configuración?"
|
144 |
+
|
145 |
+
#: wp-cache.php:245
|
146 |
+
msgid "Why"
|
147 |
+
msgstr "¿Por qué?"
|
148 |
+
|
149 |
+
#: wp-cache.php:247
|
150 |
+
#, php-format
|
151 |
+
msgid "The WP Super Cache configuration file is <code>%s/wp-cache-config.php</code> and cannot be modified. That file must be writeable by the webserver to make any changes."
|
152 |
+
msgstr "El archivo de configuración de WP Super Cache es <code>%s/wp-cache-config.php</code> y no puede modificarse. Dicho archivo debe tener permisos de escritura para que pueda ser modificado."
|
153 |
+
|
154 |
+
#: wp-cache.php:248
|
155 |
+
msgid "A simple way of doing that is by changing the permissions temporarily using the CHMOD command or through your ftp client. Make sure it’s globally writeable and it should be fine."
|
156 |
+
msgstr "La forma más sencilla es cambiar temporalmente los permisos utilizando el comando CHMOD de su cliente FTP. Asegúrese de que puede ser globalmente editado y todo debería ir bien."
|
157 |
+
|
158 |
+
#: wp-cache.php:249
|
159 |
+
msgid "Writeable:"
|
160 |
+
msgstr "Editable:"
|
161 |
+
|
162 |
+
#: wp-cache.php:250
|
163 |
+
msgid "Readonly:"
|
164 |
+
msgstr "Sólo lectura:"
|
165 |
+
|
166 |
+
#: wp-cache.php:262
|
167 |
+
#, php-format
|
168 |
+
msgid "Warning! %s is writeable!"
|
169 |
+
msgstr "¡Atención, %s es editable!"
|
170 |
+
|
171 |
+
#: wp-cache.php:263
|
172 |
+
#, php-format
|
173 |
+
msgid "You should change the permissions on %s and make it more restrictive. Use your ftp client, or the following command to fix things:"
|
174 |
+
msgstr "Debería cambiar los permisos de %s y hacerlos más restrictivos. Utilice su cliente de FTP o el siguiente comando para resolver cosas:"
|
175 |
+
|
176 |
+
#: wp-cache.php:354
|
177 |
+
msgid "WP Super Cache Status"
|
178 |
+
msgstr "Estado WP Super Cache"
|
179 |
+
|
180 |
+
#: wp-cache.php:357
|
181 |
+
msgid "ON"
|
182 |
+
msgstr "ACTIVADO"
|
183 |
+
|
184 |
+
#: wp-cache.php:357
|
185 |
+
msgid "WP Cache and Super Cache enabled"
|
186 |
+
msgstr "WP Cache y Super Cache activos"
|
187 |
+
|
188 |
+
#: wp-cache.php:358
|
189 |
+
msgid "HALF ON"
|
190 |
+
msgstr "A MEDIAS"
|
191 |
+
|
192 |
+
#: wp-cache.php:358
|
193 |
+
msgid "Super Cache Disabled, only legacy WP-Cache caching."
|
194 |
+
msgstr "Super Cache desactivado, sólo caché WP-Cache."
|
195 |
+
|
196 |
+
#: wp-cache.php:359
|
197 |
+
msgid "OFF"
|
198 |
+
msgstr "DESACTIVADO"
|
199 |
+
|
200 |
+
#: wp-cache.php:359
|
201 |
+
msgid "WP Cache and Super Cache disabled"
|
202 |
+
msgstr "WP Cache y Super Cache desactivados"
|
203 |
+
|
204 |
+
#: wp-cache.php:360
|
205 |
+
msgid "Don’t cache pages for logged in users."
|
206 |
+
msgstr "No hacer caché de páginas para usuarios autentificados."
|
207 |
+
|
208 |
+
#: wp-cache.php:361
|
209 |
+
msgid "Proudly tell the world your server is Digg proof! (places a message in your blog’s footer)"
|
210 |
+
msgstr "¡Dígale al mundo que su servidor está a prueba de Digg! (pone un mensaje en el pie de su blog)"
|
211 |
+
|
212 |
+
#: wp-cache.php:362
|
213 |
+
msgid "Clear all cache files when a post or page is published. (This may significantly slow down saving of posts.)"
|
214 |
+
msgstr "Limpiar la caché cuando se publique un artículo o página (esto puede ralentizar bastante el proceso de guardado)."
|
215 |
+
|
216 |
+
#: wp-cache.php:363
|
217 |
+
msgid "Cache rebuild. Serve a supercache file to anonymous users while a new file is being generated. Recommended for <em>very</em> busy websites with lots of comments. Makes \"directly cached pages\" and \"Lockdown mode\" obsolete."
|
218 |
+
msgstr "Reconstruir caché. Sirve un fichero supercaché a los usuarios anónimos mientras que el nuevo está siendo generado. Recomendado para sitios <em>muy</em> activos con muchos comentarios. Hace que \"páginas directamente en caché\" y \"modo Confinamiento\" queden obsoletos."
|
219 |
+
|
220 |
+
#: wp-cache.php:365
|
221 |
+
msgid "Coarse file locking. You probably don’t need this but it may help if your server is underpowered. Warning! <em>May cause your server to lock up in very rare cases!</em>"
|
222 |
+
msgstr "Bloquear ficheros toscamente. Normalmente no necesitará esto, pero podría serle de ayuda si su servidor tiene poca potencia. ¡Aviso, <em>es muy poco probable, pero podría ocasionar que su servidor se bloquease!</em>"
|
223 |
+
|
224 |
+
#: wp-cache.php:367
|
225 |
+
msgid "List the newest cached pages (may be expensive to run on busy sites, use with caution.)"
|
226 |
+
msgstr "Listar las nuevas páginas en caché (puede ser costoso de ejecutar en sitios muy activos, utilizar con precaución)."
|
227 |
+
|
228 |
+
#: wp-cache.php:368
|
229 |
+
msgid "Mobile device support."
|
230 |
+
msgstr "Soporte para dispositivos móviles."
|
231 |
+
|
232 |
+
#: wp-cache.php:373
|
233 |
+
msgid "Mobile rewrite rules detected"
|
234 |
+
msgstr "Reglas Mobile rewrite detectadas"
|
235 |
+
|
236 |
+
#: wp-cache.php:374
|
237 |
+
msgid "For best performance you should enable \"Mobile device support\" or delete the mobile rewrite rules in your .htaccess. Look for the 2 lines with the text \"Android|2.0\\ MMP|240x320|AvantGo|BlackBerry|Blazer|Cellphone\" and delete those."
|
238 |
+
msgstr "Para un mejor rendimiento debería activar \"Soporte para dispositivos móviles\" o borrar las reglas mobile rewrite rules de su archivo .htaccess. Localice las 2 líneas con el texto \"Android|2.0\\ MMP|240x320|AvantGo|BlackBerry|Blazer|Cellphone\" y elimínelas."
|
239 |
+
|
240 |
+
#: wp-cache.php:374
|
241 |
+
msgid "This will have no affect on ordinary users but mobile users will see uncached pages."
|
242 |
+
msgstr "Esto no tendrá repercusión sobre los usuarios normales pero los usuarios de móviles verán las páginas sin usar la caché."
|
243 |
+
|
244 |
+
#: wp-cache.php:377
|
245 |
+
msgid "Mobile support requires extra rules in your .htaccess file, or you can set the plugin to half-on mode. Here are your options (in order of difficulty):"
|
246 |
+
msgstr "El soporte para móviles requiere de reglas extra en su archivo .htaccess. También puede seleccionar el modo \"A medias\". Aquí se muestran sus opciones (en orden de dificultad):"
|
247 |
+
|
248 |
+
#: wp-cache.php:378
|
249 |
+
msgid "Set the plugin to half on mode and enable mobile support."
|
250 |
+
msgstr "Establecer este plugin en el modo \"A medias\" y activar el soporte para móviles."
|
251 |
+
|
252 |
+
#: wp-cache.php:379
|
253 |
+
#, php-format
|
254 |
+
msgid "Delete the plugin mod_rewrite rules in %s.htaccess enclosed by <code># BEGIN WPSuperCache</code> and <code># END WPSuperCache</code> and let the plugin regenerate them by reloading this page."
|
255 |
+
msgstr "Eliminar las reglas mod_rewrite del plugin en %s.htaccess que estén entre <code># BEGIN WPSuperCache</code> y <code># END WPSuperCache</code> y permitir que el plugin vuelva a generarlas recargando esta página."
|
256 |
+
|
257 |
+
#: wp-cache.php:380
|
258 |
+
msgid "Add the rules yourself. Edit %s.htaccess and find the block of code enclosed by the lines <code># BEGIN WPSuperCache</code> and <code># END WPSuperCache</code>. There are two sections that look very similar. Just below the line <code>%{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$</code> add this line: (do it twice, once for each section)"
|
259 |
+
msgstr "Añadir las reglas manualmente. Edite el fichero %s.htaccess y localice el bloque de código encerrado entre las líneas <code># BEGIN WPSuperCache</code> y <code># END WPSuperCache</code>. Hay dos secciones que parecen muy similares. Justo debajo de la línea <code>%{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$</code> añada esta otra línea: (deberá hacerlo dos veces, una para cada sección)"
|
260 |
+
|
261 |
+
#: wp-cache.php:383
|
262 |
+
msgid "Note:"
|
263 |
+
msgstr "Nota:"
|
264 |
+
|
265 |
+
#: wp-cache.php:383
|
266 |
+
#, php-format
|
267 |
+
msgid "If uninstalling this plugin, make sure the directory <em>%s</em> is writeable by the webserver so the files <em>advanced-cache.php</em> and <em>cache-config.php</em> can be deleted automatically. (Making sure those files are writeable too is probably a good idea!)"
|
268 |
+
msgstr "Si desinstala este plugin asegúrese de que el directorio <em>%s</em> es editable por el servidor web para que los archivos <em>advanced-cache.php</em> y <em>cache-config.php</em> puedan eliminarse automáticamente (asegurarse de que esos archivos son editables es también una buena idea!)"
|
269 |
+
|
270 |
+
#: wp-cache.php:384
|
271 |
+
#, php-format
|
272 |
+
msgid "Uninstall using the <a href=\"%1$s/wp-super-cache/uninstall.php\">uninstall script</a> to remove files and directories created by the plugin. (Please see <a href=\"%1$s/wp-super-cache/readme.txt\">readme.txt</a> for instructions on uninstalling this script.)"
|
273 |
+
msgstr "Desinstale utilizando el <a href=\"%1$s/wp-super-cache/uninstall.php\">script de desinstalación</a> para eliminar los archivos y directorios creados por el plugin. (Por favor, eche un vistazo al archivo <a href=\"%1$s/wp-super-cache/readme.txt\">readme.txt</a> para obtener instrucciones sobre como desinstalar este script)"
|
274 |
+
|
275 |
+
#: wp-cache.php:386
|
276 |
+
msgid "Update Status"
|
277 |
+
msgstr "Actualizar Estado"
|
278 |
+
|
279 |
+
#: wp-cache.php:393
|
280 |
+
msgid "Required to serve compressed supercache files properly."
|
281 |
+
msgstr "Requerido para servir archivos de supercache correctamente."
|
282 |
+
|
283 |
+
#: wp-cache.php:393
|
284 |
+
msgid "Required to set caching information on supercache pages. IE7 users will see old pages without this module."
|
285 |
+
msgstr "Requerido para establecer la información en las páginas de supercache. Los usuarios de IE7 verán páginas antiguas sin este módulo."
|
286 |
+
|
287 |
+
#: wp-cache.php:393
|
288 |
+
msgid "Set the expiry date on supercached pages. Visitors may not see new pages when they refresh or leave comments without this module."
|
289 |
+
msgstr "Establece la fecha de caducidad en las páginas de supercache. Los visitantes puede que no vean las nuevas páginas al refrescar o que no puedan dejar comentarios sin este modulo."
|
290 |
+
|
291 |
+
#: wp-cache.php:400
|
292 |
+
msgid "Missing Apache Modules"
|
293 |
+
msgstr "Módulos de Apache Ausentes"
|
294 |
+
|
295 |
+
#: wp-cache.php:401
|
296 |
+
msgid "The following Apache modules are missing. The plugin will work in half-on mode without them. In full Supercache mode, your visitors may see corrupted pages or out of date content however."
|
297 |
+
msgstr "Faltan los siguientes módulos de Apache. El plugin trabajará en modo \"A Medias\" sin ellos. En el modo Supercache sus visitantes podrían ver páginas corruptas o contenido desactualizado."
|
298 |
+
|
299 |
+
#: wp-cache.php:413
|
300 |
+
msgid "Make WordPress Faster"
|
301 |
+
msgstr "Hace WordPress Veloz"
|
302 |
+
|
303 |
+
#: wp-cache.php:415
|
304 |
+
#, php-format
|
305 |
+
msgid "%1$s really makes your blog go faster. Make it go faster<sup>*</sup> by buying me an <a href=\"%2$s\">Amazon gift card</a>! Make it out to \"%3$s\" for whatever amount you want. Every penny helps!"
|
306 |
+
msgstr "%1$s realmente consigue que su blog sea más veloz. Puede acelerarlo todavía más<sup>*</sup> comprándome una <a href=\"%2$s\">tarjeta regalo de Amazon</a>! Hágalo para \"%3$s\" por la cantidad que quiera. Cada céntimo ayuda!"
|
307 |
+
|
308 |
+
#: wp-cache.php:416
|
309 |
+
#, php-format
|
310 |
+
msgid "If Amazon isn’t your thing, there’s also PayPal. Click the \"Donate\" button below or take a quick peek at my <a href=\"%s\">wishlist</a>."
|
311 |
+
msgstr "Si Amazon no es su sitio preferido, también puede ayudarme a través de PayPal. Pinche sobre el botón \"Donate\" que está un poco más abajo o eche un rápido vistazo a mi <a href=\"%s\">lista de deseos</a>."
|
312 |
+
|
313 |
+
#: wp-cache.php:417
|
314 |
+
msgid "Thanks in advance!"
|
315 |
+
msgstr "¡Gracias por adelantado!"
|
316 |
+
|
317 |
+
#: wp-cache.php:418
|
318 |
+
msgid "Ok, it won’t go any faster but you’ll make this plugin author very happy!"
|
319 |
+
msgstr "Ok, no conseguirá que vaya más rápido, ¡pero hará muy feliz al autor de este plugin!"
|
320 |
+
|
321 |
+
#: wp-cache.php:426
|
322 |
+
msgid "Don’t show me this again."
|
323 |
+
msgstr "No mostrar esto nuevamente."
|
324 |
+
|
325 |
+
#: wp-cache.php:426
|
326 |
+
msgid "Hide"
|
327 |
+
msgstr "Ocultar"
|
328 |
+
|
329 |
+
#: wp-cache.php:429
|
330 |
+
#, php-format
|
331 |
+
msgid "%1$s is maintained and developed by %2$s with contributions from many others."
|
332 |
+
msgstr "%1$s es mantenido y desarrollado por %2$s con la colaboración de muchos otros."
|
333 |
+
|
334 |
+
#: wp-cache.php:430
|
335 |
+
#, php-format
|
336 |
+
msgid "He blogs at %1$s, posts photos at %2$s and <a href=\"%3$s\">wishes</a> he had more time to read and relax."
|
337 |
+
msgstr "El escribe en %1$s, publica fotos en %2$s y <a href=\"%3$s\">desearía</a> tener más tiempo para leer y relajarse."
|
338 |
+
|
339 |
+
#: wp-cache.php:431
|
340 |
+
#, php-format
|
341 |
+
msgid "Please say hi to him on %s too!"
|
342 |
+
msgstr "Por favor, dígale hola también en %s!"
|
343 |
+
|
344 |
+
#: wp-cache.php:440
|
345 |
+
#, php-format
|
346 |
+
msgid "Cached pages since %1$s : <strong>%2$s</strong>"
|
347 |
+
msgstr "Páginas en caché desde %1$s : <strong>%2$s</strong>"
|
348 |
+
|
349 |
+
#: wp-cache.php:441
|
350 |
+
msgid "Newest Cached Pages:"
|
351 |
+
msgstr "Nuevas páginas en caché:"
|
352 |
+
|
353 |
+
#: wp-cache.php:445
|
354 |
+
#, php-format
|
355 |
+
msgid "Cached %s seconds ago"
|
356 |
+
msgstr "En caché desde hace %s segundos"
|
357 |
+
|
358 |
+
#: wp-cache.php:448
|
359 |
+
msgid "(may not always be accurate on busy sites)"
|
360 |
+
msgstr "(puede no ser siempre preciso en sitios muy concurridos)"
|
361 |
+
|
362 |
+
#: wp-cache.php:469
|
363 |
+
msgid "Accepted Filenames & Rejected URIs"
|
364 |
+
msgstr "Nombres de archivos aceptados y URIs rechazadas"
|
365 |
+
|
366 |
+
#: wp-cache.php:494
|
367 |
+
msgid "Cache Plugins"
|
368 |
+
msgstr "Caché de Plugins "
|
369 |
+
|
370 |
+
#: wp-cache.php:505
|
371 |
+
#: wp-cache.php:516
|
372 |
+
msgid "Super Cache Compression"
|
373 |
+
msgstr "Compresión Super Caché"
|
374 |
+
|
375 |
+
#: wp-cache.php:506
|
376 |
+
msgid "Compression is enabled by default when in <em>HALF ON</em> mode."
|
377 |
+
msgstr "La compresión está activa por defecto cuando se ejecuta el modo <em>A MEDIAS</em>."
|
378 |
+
|
379 |
+
#: wp-cache.php:518
|
380 |
+
#: wp-cache.php:696
|
381 |
+
msgid "Enabled"
|
382 |
+
msgstr "Activado"
|
383 |
+
|
384 |
+
#: wp-cache.php:519
|
385 |
+
#: wp-cache.php:696
|
386 |
+
msgid "Disabled"
|
387 |
+
msgstr "Desactivado"
|
388 |
+
|
389 |
+
#: wp-cache.php:520
|
390 |
+
msgid "Compression is disabled by default because some hosts have problems with compressed files. Switching this on and off clears the cache."
|
391 |
+
msgstr "La compresión está desactivada por defecto debido a que algunos servidores tienen problemas con los archivos comprimidos. Activar o desactivar esta opción limpiará la caché."
|
392 |
+
|
393 |
+
#: wp-cache.php:523
|
394 |
+
msgid "Super Cache compression is now disabled."
|
395 |
+
msgstr "La Compresión Super Caché se ha desactivado."
|
396 |
+
|
397 |
+
#: wp-cache.php:525
|
398 |
+
msgid "Super Cache compression is now enabled."
|
399 |
+
msgstr "La Compresión Super Caché se ha activado."
|
400 |
+
|
401 |
+
#: wp-cache.php:527
|
402 |
+
msgid "Update Compression"
|
403 |
+
msgstr "Actualizar compresión"
|
404 |
+
|
405 |
+
#: wp-cache.php:534
|
406 |
+
msgid "Mod Rewrite Rules"
|
407 |
+
msgstr "Reglas Mod Rewrite"
|
408 |
+
|
409 |
+
#: wp-cache.php:581
|
410 |
+
msgid "WordPress MU Detected"
|
411 |
+
msgstr "Se ha detectado WordPress MU"
|
412 |
+
|
413 |
+
#: wp-cache.php:581
|
414 |
+
msgid "Unfortunately the rewrite rules cannot be updated automatically when running WordPress MU. Please open your .htaccess and add the following mod_rewrite rules above any other rules in that file."
|
415 |
+
msgstr "Desafortunadamente las reglas \"rewrite\" no pueden actualizarse de forma automática cuando se ejecuta WordPress MU. Por favir, abra su archivo .htaccess y añada las siguientes reglas mod_rewrite por debajo de otras reglas existentes en dicho fichero."
|
416 |
+
|
417 |
+
#: wp-cache.php:583
|
418 |
+
msgid "Mod Rewrite rules cannot be updated!"
|
419 |
+
msgstr "¡Las reglas Mod Rewrite no pueden actualizarse!"
|
420 |
+
|
421 |
+
#: wp-cache.php:584
|
422 |
+
#, php-format
|
423 |
+
msgid "You must have <strong>BEGIN</strong> and <strong>END</strong> markers in %s.htaccess for the auto update to work. They look like this and surround the main WordPress mod_rewrite rules:"
|
424 |
+
msgstr "Debe tener marcadores <strong>BEGIN</strong> y <strong>END</strong> dentro de su fichero %s.htaccess para que funcione la actualización automática. Se parecen a lo siguiente y rodean a las reglas mod_rewrite principales de WordPress:"
|
425 |
+
|
426 |
+
#: wp-cache.php:586
|
427 |
+
msgid "Refresh this page when you have updated your .htaccess file."
|
428 |
+
msgstr "Recargue esta página después de que haya actualizado su fichero .htaccess"
|
429 |
+
|
430 |
+
#: wp-cache.php:590
|
431 |
+
msgid "Thank you for upgrading."
|
432 |
+
msgstr "Gracias por actualizar."
|
433 |
+
|
434 |
+
#: wp-cache.php:590
|
435 |
+
#, php-format
|
436 |
+
msgid "The mod_rewrite rules changed since you last installed this plugin. Unfortunately you must remove the old supercache rules before the new ones are updated. Refresh this page when you have edited your .htaccess file. If you wish to manually upgrade, change the following line: %1$s so it looks like this: %2$s The only changes are \"HTTP_COOKIE\" becomes \"HTTP:Cookie\" and \"wordpressuser\" becomes \"wordpress\". This is a WordPress 2.5 change but it’s backwards compatible with older versions if you’re brave enough to use them."
|
437 |
+
msgstr "Las reglas mod_rewrite han cambiado desde que instaló este plugin. Desafortunadamente, deberá eliminar las antiguas reglas de supercache antes de que puedan instalarse las nuevas. Recargue esta página después de que haya editado su fichero .htaccess file. Si desea realizar una actualización manual, cambie la siguiente línea: %1$s para que quede como la siguiente: %2$s Los únicos cambios son que\"HTTP_COOKIE\" pasa a ser \"HTTP:Cookie\" y \"wordpressuser\" se convierte en \"wordpress\". Este es un cambio de WordPress 2.5 aunque sigue siendo compatible con versiones anteriores (si tiene valor para usarlas)"
|
438 |
+
|
439 |
+
#: wp-cache.php:594
|
440 |
+
msgid "Trailing slash check required."
|
441 |
+
msgstr "Comprobación de \"trailing slash\" (barra al final de una dirección) requerida"
|
442 |
+
|
443 |
+
#: wp-cache.php:594
|
444 |
+
msgid "It looks like your blog has URLs that end with a \"/\". Unfortunately since you installed this plugin a duplicate content bug has been found where URLs not ending in a \"/\" end serve the same content as those with the \"/\" and do not redirect to the proper URL. To fix, you must edit your .htaccess file and add these two rules to the two groups of Super Cache rules:"
|
445 |
+
msgstr "Parece que su blog tiene URLs que terminan con \"/\". Desafortunadamente, desde que instaló este plugin, se ha encontrado un fallo de contenido duplicado para las URLs que no terminan en \"/\" y de aquellas que sí lo hacen y que provoca que no se llame a la URL correcta. Para resolverlo, deberá editar su fichero .htaccess y añadir las dos siguientes reglas a los dos grupos de Super Caché:"
|
446 |
+
|
447 |
+
#: wp-cache.php:596
|
448 |
+
msgid "You can see where the rules go and examine the complete rules by clicking the \"View mod_rewrite rules\" link below."
|
449 |
+
msgstr "Puede ver dónde van las reglas y examinar todas ellas pinchando sobre el enlace \"Ver reglas mod_rewrite\" que se muestra abajo."
|
450 |
+
|
451 |
+
#: wp-cache.php:608
|
452 |
+
msgid "Cannot update .htaccess"
|
453 |
+
msgstr "No se pudo actualizar el fichero .htaccess"
|
454 |
+
|
455 |
+
#: wp-cache.php:608
|
456 |
+
#, php-format
|
457 |
+
msgid "The file <code>%s.htaccess</code> cannot be modified by the web server. Please correct this using the chmod command or your ftp client."
|
458 |
+
msgstr "El fichero <code>%s.htaccess</code> no puede ser modificado por el servidor. Por favor, resuélvalo mediante el comando CHMOD de su cliente de FTP."
|
459 |
+
|
460 |
+
#: wp-cache.php:608
|
461 |
+
msgid "Refresh this page when the file permissions have been modified."
|
462 |
+
msgstr "Recargue esta página cuando los permisos hayan sido modificados."
|
463 |
+
|
464 |
+
#: wp-cache.php:608
|
465 |
+
#, php-format
|
466 |
+
msgid "Alternatively, you can edit your <code>%s.htaccess</code> file manually and add the following code (before any WordPress rules):"
|
467 |
+
msgstr "Alternativamente, puede editar manualmente su fichero <code>%s.htaccess</code> y añadir el siguiente código (antes de cualquier regla de WordPress):"
|
468 |
+
|
469 |
+
#: wp-cache.php:611
|
470 |
+
#, php-format
|
471 |
+
msgid "To serve static html files your server must have the correct mod_rewrite rules added to a file called <code>%s.htaccess</code>"
|
472 |
+
msgstr "Para servir archivos html estáticos, su servidor debe tener las reglas mod_rewrite correctas añadidas a un fichero llamado <code>%s.htaccess</code>"
|
473 |
+
|
474 |
+
#: wp-cache.php:613
|
475 |
+
msgid "You must edit the file yourself add the following rules."
|
476 |
+
msgstr "Deberá editar manualmente el fichero para añadir las siguientes reglas."
|
477 |
+
|
478 |
+
#: wp-cache.php:615
|
479 |
+
msgid "You can edit the file yourself add the following rules."
|
480 |
+
msgstr "Puede editar manualmente el archivo y añadir las siguientes reglas."
|
481 |
+
|
482 |
+
#: wp-cache.php:617
|
483 |
+
msgid " Make sure they appear before any existing WordPress rules. "
|
484 |
+
msgstr " Asegúrese de que se muestran antes de cualquier regla de WordPress existente. "
|
485 |
+
|
486 |
+
#: wp-cache.php:619
|
487 |
+
#: wp-cache.php:646
|
488 |
+
#, php-format
|
489 |
+
msgid "Rules must be added to %s too:"
|
490 |
+
msgstr "Las reglas deben añadirse también a %s:"
|
491 |
+
|
492 |
+
#: wp-cache.php:624
|
493 |
+
msgid "Update Mod_Rewrite Rules"
|
494 |
+
msgstr "Actualizar reglas Mod_Rewrite"
|
495 |
+
|
496 |
+
#: wp-cache.php:633
|
497 |
+
msgid "Mod Rewrite rules updated!"
|
498 |
+
msgstr "¡Las reglas Mod Rewrite se han actualizado!"
|
499 |
+
|
500 |
+
#: wp-cache.php:634
|
501 |
+
#, php-format
|
502 |
+
msgid "%s.htaccess has been updated with the necessary mod_rewrite rules. Please verify they are correct. They should look like this:"
|
503 |
+
msgstr "El fichero %s.htaccess ha sido actualizado con las reglas mod_rewrite necesarias. Por favor, verifique que son correctas. Deberían parecerse a lo siguiente:"
|
504 |
+
|
505 |
+
#: wp-cache.php:636
|
506 |
+
msgid "Mod Rewrite rules must be updated!"
|
507 |
+
msgstr "¡Las reglas Mod Rewrite deben actualizarse!"
|
508 |
+
|
509 |
+
#: wp-cache.php:637
|
510 |
+
#, php-format
|
511 |
+
msgid "Your %s.htaccess is not writable by the webserver and must be updated with the necessary mod_rewrite rules. The new rules go above the regular WordPress rules as shown in the code below:"
|
512 |
+
msgstr "Su fichero %s.htaccess no puede ser editado por el servidor y debe actualizarse con las reglas mod_rewrite necesarias. Las nuevas reglas van encima de las reglas normales de WordPress, como se muestra en el siguiente código:"
|
513 |
+
|
514 |
+
#: wp-cache.php:642
|
515 |
+
#, php-format
|
516 |
+
msgid "WP Super Cache mod rewrite rules were detected in your %s.htaccess file.<br /> Click the following link to see the lines added to that file. If you have upgraded the plugin make sure these rules match."
|
517 |
+
msgstr "Se han detectado reglas mod rewrite de WP Super Cache en su fichero %s.htaccess.<br /> Pinche sobre el siguiente enlace para ver las líneas añadidas a dicho fichero. Si ha actualizado el plugin, asegúrese de que dichas reglas coinciden."
|
518 |
+
|
519 |
+
#: wp-cache.php:643
|
520 |
+
msgid "View Mod_Rewrite Rules"
|
521 |
+
msgstr "Ver reglas Mod_Rewrite"
|
522 |
+
|
523 |
+
#: wp-cache.php:654
|
524 |
+
#, php-format
|
525 |
+
msgid "Gzip encoding rules in %s.htaccess created."
|
526 |
+
msgstr "Reglas de codificación Gzip creadas en %s.htaccess"
|
527 |
+
|
528 |
+
#: wp-cache.php:661
|
529 |
+
msgid "Fix Configuration"
|
530 |
+
msgstr "Arreglar configuración"
|
531 |
+
|
532 |
+
#: wp-cache.php:664
|
533 |
+
msgid "Restore Default Configuration"
|
534 |
+
msgstr "Volver a la configuración por defecto"
|
535 |
+
|
536 |
+
#: wp-cache.php:672
|
537 |
+
msgid "Comment moderation is enabled. Your comment may take some time to appear."
|
538 |
+
msgstr "La moderación de comentarios está activada. Su comentario podría tardar cierto tiempo en aparecer."
|
539 |
+
|
540 |
+
#: wp-cache.php:696
|
541 |
+
msgid "Lock Down:"
|
542 |
+
msgstr "Modo Confinamiento:"
|
543 |
+
|
544 |
+
#: wp-cache.php:697
|
545 |
+
msgid "Prepare your server for an expected spike in traffic by enabling the lock down. When this is enabled, new comments on a post will not refresh the cached static files."
|
546 |
+
msgstr "Prepare su servidor para un pico de tráfico no esperado activando el modo \"confinamiento\". Cuando está activo, los nuevos comentarios de un artículo no provocarán que se refresquen los archivos estáticos de la caché."
|
547 |
+
|
548 |
+
#: wp-cache.php:698
|
549 |
+
msgid "Developers: Make your plugin lock down compatible by checking the \"WPLOCKDOWN\" constant. The following code will make sure your plugin respects the WPLOCKDOWN setting."
|
550 |
+
msgstr "Atención desarrolladores: hagan su plugin compatible con el modo \"confinamiento\" comprobando la constante \"WPLOCKDOWN\". El siguiente código hará que su plugin respete la configuración WPLOCKDOWN."
|
551 |
+
|
552 |
+
#: wp-cache.php:700
|
553 |
+
msgid "Sorry. My blog is locked down. Updates will appear shortly"
|
554 |
+
msgstr "Lo siento, mi blog está en modo confinamiento. Las actualizaciones aparecerán en breve."
|
555 |
+
|
556 |
+
#: wp-cache.php:704
|
557 |
+
msgid "WordPress is locked down. Super Cache static files will not be deleted when new comments are made."
|
558 |
+
msgstr "WordPress está en modo confinamiento. Los ficheros estáticos de Super Caché no se borrarán cuando se hagan nuevos comentarios."
|
559 |
+
|
560 |
+
#: wp-cache.php:706
|
561 |
+
msgid "WordPress is not locked down. New comments will refresh Super Cache static files as normal."
|
562 |
+
msgstr "WordPress no está en modo confinamiento. Los nuevos comentarios refrescarán los ficheros estáticos de Super Caché con normalidad."
|
563 |
+
|
564 |
+
#: wp-cache.php:712
|
565 |
+
msgid "Lock Down"
|
566 |
+
msgstr "Confinamiento"
|
567 |
+
|
568 |
+
#: wp-cache.php:720
|
569 |
+
msgid "Directly Cached Files"
|
570 |
+
msgstr "Archivos directos en caché"
|
571 |
+
|
572 |
+
#: wp-cache.php:778
|
573 |
+
#, php-format
|
574 |
+
msgid "%s removed!"
|
575 |
+
msgstr "%s eliminado!"
|
576 |
+
|
577 |
+
#: wp-cache.php:786
|
578 |
+
#, php-format
|
579 |
+
msgid "You must make %s writable to enable this feature. As this is a security risk please make it readonly after your page is generated."
|
580 |
+
msgstr "Debe hacer que %s pueda editarse para activar esta opción. Como es un riesgo para la seguridad, asegúrese de volverlo a dejar como solo lectura después de que se haya generado la página."
|
581 |
+
|
582 |
+
#: wp-cache.php:788
|
583 |
+
#, php-format
|
584 |
+
msgid "%s is writable. Please make it readonly after your page is generated as this is a security risk."
|
585 |
+
msgstr "%s es editable. Como es un riesgo para la seguridad, asegúrese de dejarlo como solo lectura después de que se haya generado la página."
|
586 |
+
|
587 |
+
#: wp-cache.php:802
|
588 |
+
msgid "Existing direct page"
|
589 |
+
msgstr "Página directa existente"
|
590 |
+
|
591 |
+
#: wp-cache.php:802
|
592 |
+
msgid "Delete cached file"
|
593 |
+
msgstr "Archivo de caché borrado"
|
594 |
+
|
595 |
+
#: wp-cache.php:807
|
596 |
+
msgid "Add direct page:"
|
597 |
+
msgstr "Añadir página directa:"
|
598 |
+
|
599 |
+
#: wp-cache.php:809
|
600 |
+
#, php-format
|
601 |
+
msgid "Directly cached files are files created directly off %s where your blog lives. This feature is only useful if you are expecting a major Digg or Slashdot level of traffic to one post or page."
|
602 |
+
msgstr "Los archivos directos a caché son archivos creados directamente fuera de %s donde reside su blog. Esta opción sólo es útil si esta experimentando problemas de mucho tráfico en un artículo o página concreta desde sitios del estilo a Digg o Menéame."
|
603 |
+
|
604 |
+
#: wp-cache.php:811
|
605 |
+
#, php-format
|
606 |
+
msgid "For example: to cache <em>%1$sabout/</em>, you would enter %1$sabout/ or /about/. The cached file will be generated the next time an anonymous user visits that page."
|
607 |
+
msgstr "Por ejemplo: to cache <em>%1$sabout/</em>, you would enter %1$sabout/ or /about/. The cached file will be generated the next time an anonymous user visits that page."
|
608 |
+
|
609 |
+
#: wp-cache.php:812
|
610 |
+
msgid "Make the textbox blank to remove it from the list of direct pages and delete the cached file."
|
611 |
+
msgstr "Deje el cuadro en blanco para eliminarla de la lista de páginas directas en caché y borrar así el fichero de caché."
|
612 |
+
|
613 |
+
#: wp-cache.php:817
|
614 |
+
msgid "Update Direct Pages"
|
615 |
+
msgstr "Actualizar páginas directas"
|
616 |
+
|
617 |
+
#: wp-cache.php:857
|
618 |
+
msgid "Expiry Time & Garbage Collection"
|
619 |
+
msgstr "Tiempo de caducidad y Recogida de basura"
|
620 |
+
|
621 |
+
#: wp-cache.php:859
|
622 |
+
msgid "Expire time:"
|
623 |
+
msgstr "Tiempo de caducidad:"
|
624 |
+
|
625 |
+
#: wp-cache.php:860
|
626 |
+
msgid "seconds"
|
627 |
+
msgstr "segundos"
|
628 |
+
|
629 |
+
#: wp-cache.php:861
|
630 |
+
msgid "Garbage Collection"
|
631 |
+
msgstr "Recolección de basura"
|
632 |
+
|
633 |
+
#: wp-cache.php:861
|
634 |
+
msgid "If expiry time is more than 1800 seconds (half an hour), garbage collection will be done every 10 minutes, otherwise it will happen 10 seconds after the expiry time above."
|
635 |
+
msgstr "Si el tiempo de caducidad es mayor a 1800 segundos (media hora), la recolección de basura se hará cada 10 minutos; en otro caso, se hará 10 segundos después del tiempo de caducidad indicado arriba."
|
636 |
+
|
637 |
+
#: wp-cache.php:862
|
638 |
+
msgid "Checking for and deleting expired files is expensive, but it’s expensive leaving them there too. On a very busy site you should set the expiry time to <em>300 seconds</em>. Experiment with different values and visit this page to see how many expired files remain at different times during the day. Aim to have less than 500 cached files if possible."
|
639 |
+
msgstr "Comprobar y eliminar archivos caducados es costoso, pero dejarlos ahí lo es más. En un sitio con mucho tráfico debería establecer el tiempo de caducidad a <em>300 segundos</em>. Experimente con diferentes valores y visite regularmente esta página para comprobar cuantos ficheros caducados aparecen a diferentes horas del día. El objetivo está en tener menos de 500 archivos en caché siempre que sea posible."
|
640 |
+
|
641 |
+
#: wp-cache.php:863
|
642 |
+
msgid "Change Expiration"
|
643 |
+
msgstr "Cambiar caducidad"
|
644 |
+
|
645 |
+
#: wp-cache.php:902
|
646 |
+
msgid "Rejected User Agents"
|
647 |
+
msgstr "Agentes de usuario rechazados"
|
648 |
+
|
649 |
+
#: wp-cache.php:903
|
650 |
+
msgid "Strings in the HTTP ’User Agent’ header that prevent WP-Cache from caching bot, spiders, and crawlers’ requests. Note that super cached files are still sent to these agents if they already exists."
|
651 |
+
msgstr "Cadenas en la cabecera HTTP ’User Agent’ que previenen que WP-Cache almacene peticiones de robots de búsqueda. Tenga en cuenta que los archivos de Super Caché se siguen enviando a esos agentes si ya existen."
|
652 |
+
|
653 |
+
#: wp-cache.php:910
|
654 |
+
msgid "Save UA Strings"
|
655 |
+
msgstr "Grabar cadenas User Agent"
|
656 |
+
|
657 |
+
#: wp-cache.php:933
|
658 |
+
msgid "Do not cache the following page types. See the <a href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> documentation for a complete discussion on each type."
|
659 |
+
msgstr "No almacenar en caché los siguientes tipos de páginas. Revise el apartado <a href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> de la documentación para acceder a un completo argumento sobre cada uno de los tipos."
|
660 |
+
|
661 |
+
#: wp-cache.php:936
|
662 |
+
msgid "Single Posts"
|
663 |
+
msgstr "Artículos individuales"
|
664 |
+
|
665 |
+
#: wp-cache.php:937
|
666 |
+
msgid "Pages"
|
667 |
+
msgstr "Páginas"
|
668 |
+
|
669 |
+
#: wp-cache.php:938
|
670 |
+
msgid "Front Page"
|
671 |
+
msgstr "Página principal"
|
672 |
+
|
673 |
+
#: wp-cache.php:939
|
674 |
+
msgid "Home"
|
675 |
+
msgstr "Home"
|
676 |
+
|
677 |
+
#: wp-cache.php:940
|
678 |
+
msgid "Archives"
|
679 |
+
msgstr "Archivos"
|
680 |
+
|
681 |
+
#: wp-cache.php:941
|
682 |
+
msgid "Tags"
|
683 |
+
msgstr "Etiquetas (tags)"
|
684 |
+
|
685 |
+
#: wp-cache.php:942
|
686 |
+
msgid "Category"
|
687 |
+
msgstr "Categorías"
|
688 |
+
|
689 |
+
#: wp-cache.php:943
|
690 |
+
msgid "Feeds"
|
691 |
+
msgstr "Feeds"
|
692 |
+
|
693 |
+
#: wp-cache.php:944
|
694 |
+
msgid "Search Pages"
|
695 |
+
msgstr "Páginas de búsqueda"
|
696 |
+
|
697 |
+
#: wp-cache.php:946
|
698 |
+
#: wp-cache.php:1073
|
699 |
+
msgid "Save"
|
700 |
+
msgstr "Grabar"
|
701 |
+
|
702 |
+
#: wp-cache.php:963
|
703 |
+
msgid "Add here strings (not a filename) that forces a page not to be cached. For example, if your URLs include year and you dont want to cache last year posts, it’s enough to specify the year, i.e. ’/2004/’. WP-Cache will search if that string is part of the URI and if so, it will not cache that page."
|
704 |
+
msgstr "Añada aquí las cadenas (no el nombre del fichero) que forzará que una página no entre en caché. Por ejemplo, si su URL incluye un año y no quiere que los artículos del último año entren en caché, bastará con especificar el año, por ejemplo:’/2004/’. WP-Cache buscará si esa cadena forma parte de la URI para, de ser así, no alojar dicha página en la caché."
|
705 |
+
|
706 |
+
#: wp-cache.php:969
|
707 |
+
msgid "Save Strings"
|
708 |
+
msgstr "Grabar cadenas"
|
709 |
+
|
710 |
+
#: wp-cache.php:985
|
711 |
+
msgid "Add here those filenames that can be cached, even if they match one of the rejected substring specified above."
|
712 |
+
msgstr "Añada aquí aquellos nombres de archivos que pueden ser almacenados en caché, incluso si coinciden con alguna de las subcadenas especificadas arriba."
|
713 |
+
|
714 |
+
#: wp-cache.php:991
|
715 |
+
msgid "Save Files"
|
716 |
+
msgstr "Grabar archivos"
|
717 |
+
|
718 |
+
#: wp-cache.php:1035
|
719 |
+
msgid "Debug Settings"
|
720 |
+
msgstr "Depurar opciones"
|
721 |
+
|
722 |
+
#: wp-cache.php:1037
|
723 |
+
msgid "Currently logging to: "
|
724 |
+
msgstr "Actualmente registrando datos (log) en:"
|
725 |
+
|
726 |
+
#: wp-cache.php:1047
|
727 |
+
msgid "Fix problems with the plugin by debugging it here. It can send you debug emails or log them to a file in your cache directory."
|
728 |
+
msgstr "Solucione problemas con el plugin depurándolos aquí. Podrá recibir emails de depuración o guardar los registros en un fichero de su directorio caché."
|
729 |
+
|
730 |
+
#: wp-cache.php:1048
|
731 |
+
msgid "Logging to a file is easier but faces the problem that clearing the cache will clear the log file."
|
732 |
+
msgstr "Guardar los registros en un fichero es más sencillo, pero limpiar la caché provocará que se borren dichos archivos de registro."
|
733 |
+
|
734 |
+
#: wp-cache.php:1052
|
735 |
+
msgid "Debugging"
|
736 |
+
msgstr "Modo depuración"
|
737 |
+
|
738 |
+
#: wp-cache.php:1053
|
739 |
+
msgid "Logging Type"
|
740 |
+
msgstr "Tipo de registro"
|
741 |
+
|
742 |
+
#: wp-cache.php:1053
|
743 |
+
msgid "Email"
|
744 |
+
msgstr "Email"
|
745 |
+
|
746 |
+
#: wp-cache.php:1054
|
747 |
+
msgid "file"
|
748 |
+
msgstr "archivo"
|
749 |
+
|
750 |
+
#: wp-cache.php:1055
|
751 |
+
msgid "IP Address"
|
752 |
+
msgstr "Dirección IP"
|
753 |
+
|
754 |
+
#: wp-cache.php:1055
|
755 |
+
#, php-format
|
756 |
+
msgid "(only log requests from this IP address. Your IP is %s)"
|
757 |
+
msgstr "(depurar sólo peticiones desde esta dirección IP. Su IP es %s)"
|
758 |
+
|
759 |
+
#: wp-cache.php:1056
|
760 |
+
msgid "Log level"
|
761 |
+
msgstr "Nivel de registro"
|
762 |
+
|
763 |
+
#: wp-cache.php:1062
|
764 |
+
msgid "(1 = less, 5 = more, may cause severe server load.)"
|
765 |
+
msgstr "(1 = menor, 5 = mayor, puede provocar una gran carga al servidor)"
|
766 |
+
|
767 |
+
#: wp-cache.php:1064
|
768 |
+
msgid "Advanced"
|
769 |
+
msgstr "Avanzado"
|
770 |
+
|
771 |
+
#: wp-cache.php:1064
|
772 |
+
msgid "In very rare cases two problems may arise on some blogs:<ol><li> The front page may start downloading as a zip file.</li><li> The wrong page is occasionally cached as the front page if your blog uses a static front page and the permalink structure is <em>/%category%/%postname%/</em>.</li></ol>"
|
773 |
+
msgstr "En algún caso bastante excepcional pueden ocurrir dos problemas en algunos blogs:<ol><li> La página principal puede empezar a descargarse como un archivo zip.</li><li> Ocasionalmente, una página incorrecta se almacena en caché como si fuese la página principal si su blog utiliza una página principal estática y la estructura de enlaces permanentes es <em>/%categoría%/%artículo%/</em>.</li></ol>"
|
774 |
+
|
775 |
+
#: wp-cache.php:1065
|
776 |
+
#, php-format
|
777 |
+
msgid "I’m 99% certain that they aren’t bugs in WP Super Cache and they only happen in very rare cases but you can run a simple check once every 5 minutes to verify that your site is ok if you’re worried. You will be emailed if there is a problem."
|
778 |
+
msgstr "Estoy seguro al 99% de que no son fallos de WP Super Cache y de que tan sólo ocurren en casos muy excepcionales, pero si esto le preocupa puede ejecutar un sencillo test cada 5 minutos para verificar que su sitio esta bien. Recibirá un correo en caso de problemas."
|
779 |
+
|
780 |
+
#: wp-cache.php:1067
|
781 |
+
msgid "Check front page every 5 minutes."
|
782 |
+
msgstr "Comprobar la página principal cada 5 minutos."
|
783 |
+
|
784 |
+
#: wp-cache.php:1068
|
785 |
+
msgid "Front page text"
|
786 |
+
msgstr "Texto página principal"
|
787 |
+
|
788 |
+
#: wp-cache.php:1068
|
789 |
+
msgid "Text to search for on your front page. If this text is missing the cache will be cleared. Leave blank to disable."
|
790 |
+
msgstr "Texto a buscar en su página principal. Si se detecta que falta este texto, la caché se limpiará. Déjelo en blanco para desactivar esta opción"
|
791 |
+
|
792 |
+
#: wp-cache.php:1069
|
793 |
+
msgid "Clear cache on error."
|
794 |
+
msgstr "Limpiar la caché en caso de error."
|
795 |
+
|
796 |
+
#: wp-cache.php:1070
|
797 |
+
msgid "Email the blog admin when checks are made. (useful for testing)"
|
798 |
+
msgstr "Enviar un email al administrador del blog cuando se hagan comprobaciones (útil para pruebas)"
|
799 |
+
|
800 |
+
#: wp-cache.php:1083
|
801 |
+
msgid "Error: GZIP compression is enabled, disable it if you want to enable wp-cache."
|
802 |
+
msgstr "Error: la compresión GZIP está activada; debe desactivarla si quiere activar wp-cache."
|
803 |
+
|
804 |
+
#: wp-cache.php:1131
|
805 |
+
#: wp-cache.php:1293
|
806 |
+
msgid "Warning"
|
807 |
+
msgstr "Aviso"
|
808 |
+
|
809 |
+
#: wp-cache.php:1131
|
810 |
+
msgid "GZIP compression is enabled in Wordpress, wp-cache will be bypassed until you disable gzip compression."
|
811 |
+
msgstr "La compresión GZIP está activa en WordPress, wp-cache se omitirá hasta que desactive dicha compresión."
|
812 |
+
|
813 |
+
#: wp-cache.php:1189
|
814 |
+
#: wp-cache.php:1194
|
815 |
+
#: wp-cache.php:1226
|
816 |
+
#: wp-cache.php:1231
|
817 |
+
#: wp-cache.php:1237
|
818 |
+
msgid "Error"
|
819 |
+
msgstr "Error"
|
820 |
+
|
821 |
+
#: wp-cache.php:1189
|
822 |
+
#, php-format
|
823 |
+
msgid "Your cache directory (<strong>$cache_path</strong>) did not exist and couldn’t be created by the web server. Check %s permissions."
|
824 |
+
msgstr "Si directorio caché (<strong>$cache_path</strong>) no existe y no puede ser creado por el servidor. Compruebe los permisos de %s."
|
825 |
+
|
826 |
+
#: wp-cache.php:1194
|
827 |
+
#, php-format
|
828 |
+
msgid "Your cache directory (<strong>%1$s</strong>) or <strong>%2$s</strong> need to be writable for this plugin to work. Double-check it."
|
829 |
+
msgstr "Su directorio caché (<strong>%1$s</strong>) o <strong>%2$s</strong> necesita tener permisos de escritura para que este plugin funcione. Verifíquelo bien."
|
830 |
+
|
831 |
+
#: wp-cache.php:1226
|
832 |
+
#, php-format
|
833 |
+
msgid "Your WP-Cache config file (<strong>%s</strong>) is out of date and not writable by the Web server.Please delete it and refresh this page."
|
834 |
+
msgstr "El archivo de configuración de WP-Cache (<strong>%s</strong>) está desactualizado y no puede editarse por el servidor. Por favor, bórrelo y recargue esta página."
|
835 |
+
|
836 |
+
#: wp-cache.php:1231
|
837 |
+
#, php-format
|
838 |
+
msgid "Configuration file missing and %1$s directory (<strong>%2$s</strong>) is not writable by the Web server.Check its permissions."
|
839 |
+
msgstr "Falta el archivo de configuración y %1$s el directorio (<strong>%2$s</strong>) no puede editarse por el servidor. Compruebe sus permisos."
|
840 |
+
|
841 |
+
#: wp-cache.php:1237
|
842 |
+
#, php-format
|
843 |
+
msgid "Sample WP-Cache config file (<strong>%s</strong>) does not exist.Verify you installation."
|
844 |
+
msgstr "El archivo de ejemplo de configuración WP-Cache (<strong>%s</strong>) no existe. Verifique su instalación."
|
845 |
+
|
846 |
+
#: wp-cache.php:1293
|
847 |
+
#, php-format
|
848 |
+
msgid "%s/advanced-cache.php</em> does not exist or cannot be updated."
|
849 |
+
msgstr "%s/advanced-cache.php</em> no existe o no puede ser actualizado."
|
850 |
+
|
851 |
+
#: wp-cache.php:1294
|
852 |
+
msgid "1. If it already exists please delete the file first."
|
853 |
+
msgstr "1. Si existe, por favor, borre primero el fichero."
|
854 |
+
|
855 |
+
#: wp-cache.php:1295
|
856 |
+
#, php-format
|
857 |
+
msgid "2. Make %1$s writable using the chmod command through your ftp or server software. (<em>chmod 777 %1$s</em>) and refresh this page. This is only a temporary measure and you’ll have to make it read only afterwards again. (Change 777 to 755 in the previous command)"
|
858 |
+
msgstr "2. Proporcione permisos de escritura a %1$s utilizando el comando CHMOD de su cliente de FTP. (<em>chmod 777 %1$s</em>) y recargue esta página. Esto sólo es una medida temporal: terminado el proceso deberá volver a dejarlo como de sólo lectura (cambiar de 777 a 755 en el comando anterior)"
|
859 |
+
|
860 |
+
#: wp-cache.php:1296
|
861 |
+
#, php-format
|
862 |
+
msgid "3. Refresh this page to update <em>%s/advanced-cache.php</em>"
|
863 |
+
msgstr "3. Recargue esta página para actualizar <em>%s/advanced-cache.php</em>"
|
864 |
+
|
865 |
+
#: wp-cache.php:1297
|
866 |
+
#, php-format
|
867 |
+
msgid "If that doesn’t work, make sure the file <em>%s/advanced-cache.php</em> doesn’t exist:"
|
868 |
+
msgstr "Si eso no funciona, asegúrese de que el archivo <em>%s/advanced-cache.php</em> no existe:"
|
869 |
+
|
870 |
+
#: wp-cache.php:1298
|
871 |
+
#, php-format
|
872 |
+
msgid "<li>1. Open <em>%1$s$wp_cache_file</em> in a text editor.</li><li>2. Change the text <em>CACHEHOME</em> to <em>%2$s</em></li><li>3. Save the file and copy it to <em>%3$s</em> and refresh this page.</li>"
|
873 |
+
msgstr "<li>1. Abra el fichero <em>%1$s$wp_cache_file</em> en un editor de texto.</li><li>2. Cambie el texto <em>CACHEHOME</em> por <em>%2$s</em></li><li>3. Guarde los cambios y salve el fichero en <em>%3$s</em>; luego recargue esta página.</li>"
|
874 |
+
|
875 |
+
#: wp-cache.php:1318
|
876 |
+
msgid "<strong>Error: WP_CACHE is not enabled</strong> in your <code>wp-config.php</code> file and I couldn’t modify it."
|
877 |
+
msgstr "<strong>Error: WP_CACHE no está activo</strong> en su fichero <code>wp-config.php</code> y no puedo modificarlo."
|
878 |
+
|
879 |
+
#: wp-cache.php:1319
|
880 |
+
#, php-format
|
881 |
+
msgid "Edit <code>%s</code> and add the following line:<br /> <code>define('WP_CACHE', true);</code><br />Otherwise, <strong>WP-Cache will not be executed</strong> by Wordpress core. "
|
882 |
+
msgstr "Edite el fichero <code>%s</code> y añada la siguiente línea:<br /> <code>define('WP_CACHE', true);</code><br />En caso contrario, <strong>WP-Cache no será ejecutado</strong> por el núcleo de Wordpress."
|
883 |
+
|
884 |
+
#: wp-cache.php:1322
|
885 |
+
msgid "<h3>WP_CACHE constant added to wp-config.php</h3><p>If you continue to see this warning message please see point 5 of the <a href=\"http://wordpress.org/extend/plugins/wp-super-cache/faq/\">FAQ</a>. The WP_CACHE line must be moved up."
|
886 |
+
msgstr "<h3>Constante WP_CACHE añadida al fichero wp-config.php</h3><p>Si sigue viendo este mensaje de aviso, revise por favor el punto 5 del <a href=\"http://wordpress.org/extend/plugins/wp-super-cache/faq/\">FAQ</a>. La línea WP_CACHE debe subirse sobre otras líneas."
|
887 |
+
|
888 |
+
#: wp-cache.php:1343
|
889 |
+
msgid "Cache Contents"
|
890 |
+
msgstr "Contenidos en caché"
|
891 |
+
|
892 |
+
#: wp-cache.php:1362
|
893 |
+
#, php-format
|
894 |
+
msgid "Deleting supercache file: <strong>%s</strong><br />"
|
895 |
+
msgstr "Borrando archivo supercache: <strong>%s</strong><br />"
|
896 |
+
|
897 |
+
#: wp-cache.php:1379
|
898 |
+
#, php-format
|
899 |
+
msgid "Deleting wp-cache file: <strong>%s</strong><br />"
|
900 |
+
msgstr "Borrando archivo wp-cache: <strong>%s</strong><br />"
|
901 |
+
|
902 |
+
#: wp-cache.php:1443
|
903 |
+
msgid "WP-Cache"
|
904 |
+
msgstr "WP-Cache"
|
905 |
+
|
906 |
+
#: wp-cache.php:1444
|
907 |
+
#: wp-cache.php:1457
|
908 |
+
#, php-format
|
909 |
+
msgid "%s Cached Pages"
|
910 |
+
msgstr "%s Páginas en caché"
|
911 |
+
|
912 |
+
#: wp-cache.php:1445
|
913 |
+
#: wp-cache.php:1459
|
914 |
+
#, php-format
|
915 |
+
msgid "%s Expired Pages"
|
916 |
+
msgstr "%s Páginas caducadas"
|
917 |
+
|
918 |
+
#: wp-cache.php:1456
|
919 |
+
msgid "WP-Super-Cache"
|
920 |
+
msgstr "WP-Super-Cache"
|
921 |
+
|
922 |
+
#: wp-cache.php:1464
|
923 |
+
msgid "Fresh WP-Cached Files"
|
924 |
+
msgstr "Archivos recientes en caché"
|
925 |
+
|
926 |
+
#: wp-cache.php:1465
|
927 |
+
#: wp-cache.php:1481
|
928 |
+
#: wp-cache.php:1497
|
929 |
+
#: wp-cache.php:1513
|
930 |
+
msgid "URI"
|
931 |
+
msgstr "URI"
|
932 |
+
|
933 |
+
#: wp-cache.php:1465
|
934 |
+
#: wp-cache.php:1481
|
935 |
+
msgid "Key"
|
936 |
+
msgstr "Clave"
|
937 |
+
|
938 |
+
#: wp-cache.php:1465
|
939 |
+
#: wp-cache.php:1481
|
940 |
+
#: wp-cache.php:1497
|
941 |
+
#: wp-cache.php:1513
|
942 |
+
msgid "Age"
|
943 |
+
msgstr "Edad"
|
944 |
+
|
945 |
+
#: wp-cache.php:1465
|
946 |
+
#: wp-cache.php:1481
|
947 |
+
#: wp-cache.php:1497
|
948 |
+
#: wp-cache.php:1513
|
949 |
+
msgid "Delete"
|
950 |
+
msgstr "Borrar"
|
951 |
+
|
952 |
+
#: wp-cache.php:1480
|
953 |
+
msgid "Stale WP-Cached Files"
|
954 |
+
msgstr "Archivos anticuados en caché"
|
955 |
+
|
956 |
+
#: wp-cache.php:1496
|
957 |
+
msgid "Fresh Super Cached Files"
|
958 |
+
msgstr "Archivos recientes en Super Caché"
|
959 |
+
|
960 |
+
#: wp-cache.php:1512
|
961 |
+
msgid "Stale Super Cached Files"
|
962 |
+
msgstr "Archivos anticuados en Super Caché"
|
963 |
+
|
964 |
+
#: wp-cache.php:1528
|
965 |
+
msgid "Hide file list"
|
966 |
+
msgstr "Ocultar lista de archivos"
|
967 |
+
|
968 |
+
#: wp-cache.php:1530
|
969 |
+
msgid "List all cached files"
|
970 |
+
msgstr "Mostrar archivos en caché"
|
971 |
+
|
972 |
+
#: wp-cache.php:1536
|
973 |
+
#, php-format
|
974 |
+
msgid "<strong>Garbage Collection</strong><br />Last GC was <strong>%s</strong> minutes ago<br />"
|
975 |
+
msgstr "<strong>Recolección de Basura</strong><br />La última \"RdB\" se hizo hace <strong>%s</strong> minutos<br />"
|
976 |
+
|
977 |
+
#: wp-cache.php:1537
|
978 |
+
#, php-format
|
979 |
+
msgid "Next GC in <strong>%s</strong> minutes"
|
980 |
+
msgstr "La siguiente \"RdB\" se hará en <strong>%s</strong> minutos"
|
981 |
+
|
982 |
+
#: wp-cache.php:1540
|
983 |
+
#, php-format
|
984 |
+
msgid "Expired files are files older than %s seconds. They are still used by the plugin and are deleted periodically."
|
985 |
+
msgstr "Los ficheros caducados son aquellos superiores a %s segundos. Todavía están en uso por el plugin y son borrados periódicamente."
|
986 |
+
|
987 |
+
#: wp-cache.php:1543
|
988 |
+
msgid "Delete Expired"
|
989 |
+
msgstr "Borrar caducados"
|
990 |
+
|
991 |
+
#: wp-cache.php:1549
|
992 |
+
#: wp-cache.php:1563
|
993 |
+
#: wp-cache.php:1719
|
994 |
+
msgid "Delete Cache"
|
995 |
+
msgstr "Borrar caché"
|
996 |
+
|
997 |
+
#: wp-cache.php:1563
|
998 |
+
msgid "Delete Super Cache cached files (opens in new window)"
|
999 |
+
msgstr "Borrar archivos de Super Caché (se abrirá una nueva ventana)"
|
1000 |
+
|
1001 |
+
#: wp-cache.php:1695
|
1002 |
+
#, php-format
|
1003 |
+
msgid "%1$s is Digg proof thanks to caching by %2$s"
|
1004 |
+
msgstr "%1$s está orgullosamente a prueba de Digg gracias a la caché que proporciona %2$s"
|
1005 |
+
|
1006 |
+
#: wp-cache.php:1728
|
1007 |
+
#, php-format
|
1008 |
+
msgid "WP Super Cache must be configured. Go to <a href=\"%s\">the admin page</a> to enable and configure the plugin."
|
1009 |
+
msgstr "WP Super Cache debe configurarse. Vaya a la <a href=\"%s\">página de administración</a> para activar y configurar el plugin."
|
1010 |
+
|
1011 |
+
#: wp-cache.php:1734
|
1012 |
+
msgid "Settings"
|
1013 |
+
msgstr "Configuraciones"
|
1014 |
+
|
1015 |
+
#: wp-cache.php:1744
|
1016 |
+
#, php-format
|
1017 |
+
msgid "WP Super Cache is disabled. Please go to the <a href=\"%s\">plugin admin page</a> to enable caching."
|
1018 |
+
msgstr "WP Super Cache está desactivado. Por favor, vaya a la <a href=\"%s\">página de administración del plugin</a> para activar la caché."
|
1019 |
+
|
1020 |
+
#: wp-cache.php:1763
|
1021 |
+
#, php-format
|
1022 |
+
msgid "[%s] Front page is gzipped! Please clear cache!"
|
1023 |
+
msgstr "[%s] La página principal esta comprimida con Gzip! Debe limpiar la caché."
|
1024 |
+
|
1025 |
+
#: wp-cache.php:1763
|
1026 |
+
#, php-format
|
1027 |
+
msgid "Please visit %s to clear the cache as the front page of your site is now downloading!"
|
1028 |
+
msgstr "Por favor, visite %s para limpiar la caché ya que la página principal de su sitio esta ahora descargándose!"
|
1029 |
+
|
1030 |
+
#: wp-cache.php:1766
|
1031 |
+
#, php-format
|
1032 |
+
msgid "[%s] Front page is gzipped! Cache Cleared!"
|
1033 |
+
msgstr "[%s] La página principal esta comprimida con Gzip! Caché eliminada!"
|
1034 |
+
|
1035 |
+
#: wp-cache.php:1766
|
1036 |
+
#, php-format
|
1037 |
+
msgid "The cache on your blog has been cleared because the front page of your site is now downloading. Please visit %s to verify the cache has been cleared."
|
1038 |
+
msgstr "La caché de su blog se ha limpiado ya que la página principal de su sitio se está descargando. Por favor, visite %s para comprobar que la caché se ha limpiado correctamente."
|
1039 |
+
|
1040 |
+
#: wp-cache.php:1773
|
1041 |
+
#, php-format
|
1042 |
+
msgid "[%s] Front page is not correct! Please clear cache!"
|
1043 |
+
msgstr "[%s] La página principal esta comprimida con Gzip! Por favor, limpie la caché."
|
1044 |
+
|
1045 |
+
#: wp-cache.php:1773
|
1046 |
+
#, php-format
|
1047 |
+
msgid "Please visit %1$s to clear the cache as the front page of your site is not correct and missing the text, \"%2$s\"!"
|
1048 |
+
msgstr "Por favor, visite %1$s para limpiar la caché, ya que la página principal de su sitio no es correcta y falta el texto , \"%2$s\"!"
|
1049 |
+
|
1050 |
+
#: wp-cache.php:1776
|
1051 |
+
#, php-format
|
1052 |
+
msgid "[%s] Front page is not correct! Cache Cleared!"
|
1053 |
+
msgstr "[%s] La página principal no es correcta, caché eliminada!"
|
1054 |
+
|
1055 |
+
#: wp-cache.php:1776
|
1056 |
+
#, php-format
|
1057 |
+
msgid "The cache on your blog has been cleared because the front page of your site is missing the text \"%2$s\". Please visit %1$s to verify the cache has been cleared."
|
1058 |
+
msgstr "Se ha limpiado la caché de su blog debido a que la página principal de su sitio carece del texto \"%2$s\". Por favor, visite %1$s para comprobar que la caché se ha limpiado correctamente."
|
1059 |
+
|
1060 |
+
#: wp-cache.php:1781
|
1061 |
+
#, php-format
|
1062 |
+
msgid "[%s] Front page check!"
|
1063 |
+
msgstr "[%s] Comprobar página principal!"
|
1064 |
+
|
1065 |
+
#: wp-cache.php:1781
|
1066 |
+
#, php-format
|
1067 |
+
msgid "WP Super Cache has checked the front page of your blog. Please visit %s if you would like to disable this."
|
1068 |
+
msgstr "WP Super Cache ha comprobado la página principal de su blog. Por favor, visite %s si quiere desactivar esto."
|
1069 |
+
|
languages/wp-super-cache-it_IT.mo
ADDED
Binary file
|
languages/wp-super-cache-it_IT.po
ADDED
@@ -0,0 +1,1071 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# WP Super Cache Translation File
|
2 |
+
# GPL
|
3 |
+
# Donncha O Caoimh, http://ocaoimh.ie/
|
4 |
+
#
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: WP Super Cache in italiano\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-super-cache\n"
|
9 |
+
"POT-Creation-Date: 2009-11-10 16:29+0000\n"
|
10 |
+
"PO-Revision-Date: 2009-11-10 21:06+0100\n"
|
11 |
+
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
|
12 |
+
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"X-Poedit-Language: Italian\n"
|
17 |
+
"X-Poedit-Country: ITALY\n"
|
18 |
+
|
19 |
+
#: plugins/badbehaviour.php:45
|
20 |
+
msgid "Bad Behaviour not found. Please check your install."
|
21 |
+
msgstr "Non é stato trovato Bad Behaviour. Effettua una verifica."
|
22 |
+
|
23 |
+
#: plugins/badbehaviour.php:47
|
24 |
+
#: plugins/badbehaviour.php:66
|
25 |
+
#: plugins/searchengine.php:61
|
26 |
+
#: plugins/searchengine.php:76
|
27 |
+
#: wp-cache.php:709
|
28 |
+
msgid "Disable"
|
29 |
+
msgstr "Disattiva"
|
30 |
+
|
31 |
+
#: plugins/badbehaviour.php:55
|
32 |
+
#: plugins/searchengine.php:67
|
33 |
+
msgid "disabled"
|
34 |
+
msgstr "disattivato"
|
35 |
+
|
36 |
+
#: plugins/badbehaviour.php:57
|
37 |
+
#: plugins/searchengine.php:69
|
38 |
+
#: wp-cache.php:1050
|
39 |
+
msgid "enabled"
|
40 |
+
msgstr "attivato"
|
41 |
+
|
42 |
+
#: plugins/badbehaviour.php:60
|
43 |
+
#, php-format
|
44 |
+
msgid "Bad Behaviour support is %s"
|
45 |
+
msgstr "Il supporto a Bad Behaviour é %s"
|
46 |
+
|
47 |
+
#: plugins/badbehaviour.php:62
|
48 |
+
#, php-format
|
49 |
+
msgid "(Only half-on caching supported, disabled compression and requires <a href=\"http://www.bad-behavior.ioerror.us/\">Bad Behavior</a> in \"%s/plugins/bad-behavior/\") "
|
50 |
+
msgstr "(utilizzare la sola cache parziale, non attivare la compressione ed installare <a href=\"http://www.bad-behavior.ioerror.us/\">Bad Behavior</a> sotto \"%s/plugins/bad-behavior/\") "
|
51 |
+
|
52 |
+
#: plugins/badbehaviour.php:64
|
53 |
+
#: plugins/searchengine.php:74
|
54 |
+
#: wp-cache.php:709
|
55 |
+
msgid "Enable"
|
56 |
+
msgstr "Attiva"
|
57 |
+
|
58 |
+
#: plugins/badbehaviour.php:70
|
59 |
+
#: wp-cache.php:786
|
60 |
+
#: wp-cache.php:788
|
61 |
+
msgid "Warning!"
|
62 |
+
msgstr "Attenzione!"
|
63 |
+
|
64 |
+
#: plugins/searchengine.php:71
|
65 |
+
#, php-format
|
66 |
+
msgid "<a href=\"http://ocaoimh.ie/no-adverts-for-friends/\">No Adverts for Friends</a> plugin is %s"
|
67 |
+
msgstr "Il plugin <a href=\"http://ocaoimh.ie/no-adverts-for-friends/\">No Adverts for Friends</a> é %s"
|
68 |
+
|
69 |
+
#: plugins/searchengine.php:72
|
70 |
+
msgid "(requires <a href=\"http://ocaoimh.ie/no-adverts-for-friends/\">friendsadverts.php</a> too) "
|
71 |
+
msgstr "(é necessario anche <a href=\"http://ocaoimh.ie/no-adverts-for-friends/\">friendsadverts.php</a>) "
|
72 |
+
|
73 |
+
#: wp-cache.php:87
|
74 |
+
#, php-format
|
75 |
+
msgid "Please create %s /wp-cache-config.php from wp-super-cache/wp-cache-config-sample.php"
|
76 |
+
msgstr "Crea %s /wp-cache-config.php da wp-super-cache/wp-cache-config-sample.php"
|
77 |
+
|
78 |
+
#: wp-cache.php:170
|
79 |
+
msgid "WP Super Cache Manager"
|
80 |
+
msgstr "Gestione WP Super Cache"
|
81 |
+
|
82 |
+
#: wp-cache.php:172
|
83 |
+
msgid "Warning! PHP Safe Mode Enabled!"
|
84 |
+
msgstr "Attenzione! Il PHP Safe Mode é attivo!"
|
85 |
+
|
86 |
+
#: wp-cache.php:173
|
87 |
+
msgid "You may experience problems running this plugin because SAFE MODE is enabled."
|
88 |
+
msgstr "Attivando questo plugin potresti andare incontro ad alcuni problemi poiché il SAFE MODE é attivo."
|
89 |
+
|
90 |
+
#: wp-cache.php:175
|
91 |
+
msgid "Your server is set up to check the owner of PHP scripts before allowing them to read and write files."
|
92 |
+
msgstr "Prima che sia possibile la lettura e la scrittura dei file, il tuo server richiede che venga effettuata una verifica circa il proprietario degli script PHP."
|
93 |
+
|
94 |
+
#: wp-cache.php:176
|
95 |
+
#, php-format
|
96 |
+
msgid "You or an administrator may be able to make it work by changing the group owner of the plugin scripts to match that of the web server user. The group owner of the %s/cache/ directory must also be changed. See the <a href=\"http://php.net/features.safe-mode\">safe mode manual page</a> for further details."
|
97 |
+
msgstr "L'amministratore del sito ha la possibilità di cambiare il proprietario del gruppo che fa capo agli script di questo plugin facendo sì che esso coincida con l'utente web del server. Anche il proprietario del gruppo per la cartella %s/cache/ può essere cambiato. Per ulteriori informazioni, consulta la pagina del manuale <a href=\"http://php.net/features.safe-mode\">safe mode</a>."
|
98 |
+
|
99 |
+
#: wp-cache.php:178
|
100 |
+
msgid "You or an administrator must disable this. See the <a href=\"http://php.net/features.safe-mode\">safe mode manual page</a> for further details. This cannot be disabled in a .htaccess file unfortunately. It must be done in the php.ini config file."
|
101 |
+
msgstr "L'amministratore del sito ha la possibilità di disattivare questa funzione. Per ulteriori informazioni, consulta la pagina del manuale <a href=\"http://php.net/features.safe-mode\">safe mode</a>. La disattivazione non potrà avvenire via file .htaccess. L'operazione dovrà essere effettuata nel file di configurazione php.ini."
|
102 |
+
|
103 |
+
#: wp-cache.php:189
|
104 |
+
msgid "Configuration file changed, some values might be wrong. Load the page again from the \"Settings\" menu to reset them."
|
105 |
+
msgstr "La configurazione del file é stata modificata: alcuni valori potrebbero essere errati. Ricarica nuovamente la pagina dal menu delle \"Impostazioni\" per ripristinare."
|
106 |
+
|
107 |
+
#: wp-cache.php:195
|
108 |
+
msgid "Cannot continue... fix previous problems and retry."
|
109 |
+
msgstr "Non é possibile proseguire l'operazione. Correggi i problemi precedenti prima di riprovare."
|
110 |
+
|
111 |
+
#: wp-cache.php:211
|
112 |
+
#, php-format
|
113 |
+
msgid "Warning! Your hostname \"%s\" resolves to %s"
|
114 |
+
msgstr "Attenzione! Il tuo hostname \"%s\" viene convertito in %s"
|
115 |
+
|
116 |
+
#: wp-cache.php:213
|
117 |
+
#, php-format
|
118 |
+
msgid "Your server thinks your hostname resolves to %s. Some services such as garbage collection by this plugin, and WordPress scheduled posts may not operate correctly."
|
119 |
+
msgstr "Il tuo server ritiene che il tuo hostname venga convertito in %s. Alcuni servizi quali ad esempio la garbage collection fornita da questo plugin e la pubblicazione programmata dei post di WordPress potrebbero non funzionare correttamente."
|
120 |
+
|
121 |
+
#: wp-cache.php:214
|
122 |
+
#: wp-cache.php:228
|
123 |
+
#, php-format
|
124 |
+
msgid "Please see entry 16 in the <a href=\"%s\">Troubleshooting section</a> of the readme.txt"
|
125 |
+
msgstr "Leggi il punto numero 16 nella sezione <a href=\"%s\">Troubleshooting</a> del file readme.txt"
|
126 |
+
|
127 |
+
#: wp-cache.php:227
|
128 |
+
msgid "Unfortunately WordPress cannot find the file wp-cron.php. This script is required for the the correct operation of garbage collection by this plugin, WordPress scheduled posts as well as other critical activities."
|
129 |
+
msgstr "WordPress non é in grado di trovare il file wp-cron.php. Questo script é necessario script per un corretto funzionamento della garbage collection fornita da questo plugin, per la pubblicazione programmata dei post di WordPress così come per tutte le altre attività di rilevante importanza."
|
130 |
+
|
131 |
+
#: wp-cache.php:239
|
132 |
+
msgid "Mod rewrite may not be installed!"
|
133 |
+
msgstr "Il Mod rewrite potrebbe non essere stato installato!"
|
134 |
+
|
135 |
+
#: wp-cache.php:240
|
136 |
+
msgid "It appears that mod_rewrite is not installed. Sometimes this check isn’t 100% reliable, especially if you are not using Apache. Please verify that the mod_rewrite module is loaded. It is required for serving Super Cache static files. You will still be able to use half-on mode."
|
137 |
+
msgstr "Pare che il mod_rewrite non sia installato. Considera che questa affermazione potrebbe non essere attendibile al 100%, specialmente qualora non venisse utilizzato Apache. Verifica che sia stato caricato il modulo mod_rewrite. Il modulo sarà necessario per potere servire i file statici di Super Cache. Avrai comunque ancora la possibilità di poter utilizzare la modalità parziale."
|
138 |
+
|
139 |
+
#: wp-cache.php:245
|
140 |
+
msgid "Read Only Mode. Configuration cannot be changed."
|
141 |
+
msgstr "Modalita di sola lettura. La configurazione non può essere modificata."
|
142 |
+
|
143 |
+
#: wp-cache.php:245
|
144 |
+
msgid "Why your configuration may not be changed"
|
145 |
+
msgstr "Perché la tua configurazione non può essere modificata"
|
146 |
+
|
147 |
+
#: wp-cache.php:245
|
148 |
+
msgid "Why"
|
149 |
+
msgstr "Perché"
|
150 |
+
|
151 |
+
#: wp-cache.php:247
|
152 |
+
#, php-format
|
153 |
+
msgid "The WP Super Cache configuration file is <code>%s/wp-cache-config.php</code> and cannot be modified. That file must be writeable by the webserver to make any changes."
|
154 |
+
msgstr "Il file di configurazione di WP Super Cache é <code>%s/wp-cache-config.php</code> e non può essere modificato. Affinché possa essere modicato, il file in questione deve essere scrivibile."
|
155 |
+
|
156 |
+
#: wp-cache.php:248
|
157 |
+
msgid "A simple way of doing that is by changing the permissions temporarily using the CHMOD command or through your ftp client. Make sure it’s globally writeable and it should be fine."
|
158 |
+
msgstr "Un modo semplice per compiere l'operazione é quello di modificare temporaneamente i permessi facendo uso del comando CHMOD oppure via il tuo client ftp. Assicurati che sia scrivibile affinché il tutto possa funzionare propriamente."
|
159 |
+
|
160 |
+
#: wp-cache.php:249
|
161 |
+
msgid "Writeable:"
|
162 |
+
msgstr "Scrivibile:"
|
163 |
+
|
164 |
+
#: wp-cache.php:250
|
165 |
+
msgid "Readonly:"
|
166 |
+
msgstr "Sola lettura:"
|
167 |
+
|
168 |
+
#: wp-cache.php:262
|
169 |
+
#, php-format
|
170 |
+
msgid "Warning! %s is writeable!"
|
171 |
+
msgstr "Attenzione! %s é scrivibile!"
|
172 |
+
|
173 |
+
#: wp-cache.php:263
|
174 |
+
#, php-format
|
175 |
+
msgid "You should change the permissions on %s and make it more restrictive. Use your ftp client, or the following command to fix things:"
|
176 |
+
msgstr "E' necessario modificare i permessi per %s per renderli maggiormente restrittivi. Utilizza per la correzione il tuo client ftp oppure il seguente comando:"
|
177 |
+
|
178 |
+
#: wp-cache.php:354
|
179 |
+
msgid "WP Super Cache Status"
|
180 |
+
msgstr "Stato WP Super Cache"
|
181 |
+
|
182 |
+
#: wp-cache.php:357
|
183 |
+
msgid "ON"
|
184 |
+
msgstr "ATTIVO"
|
185 |
+
|
186 |
+
#: wp-cache.php:357
|
187 |
+
msgid "WP Cache and Super Cache enabled"
|
188 |
+
msgstr "WP Cache e Super Cache sono attivi"
|
189 |
+
|
190 |
+
#: wp-cache.php:358
|
191 |
+
msgid "HALF ON"
|
192 |
+
msgstr "PARZIALE"
|
193 |
+
|
194 |
+
#: wp-cache.php:358
|
195 |
+
msgid "Super Cache Disabled, only legacy WP-Cache caching."
|
196 |
+
msgstr "Super Cache non attivo, WP-Cache attivo"
|
197 |
+
|
198 |
+
#: wp-cache.php:359
|
199 |
+
msgid "OFF"
|
200 |
+
msgstr "NON ATTIVO"
|
201 |
+
|
202 |
+
#: wp-cache.php:359
|
203 |
+
msgid "WP Cache and Super Cache disabled"
|
204 |
+
msgstr "WP Cache e Super Cache non sono attivi"
|
205 |
+
|
206 |
+
#: wp-cache.php:360
|
207 |
+
msgid "Don’t cache pages for logged in users."
|
208 |
+
msgstr "Non effettuare la cache delle pagine per gli utenti collegati."
|
209 |
+
|
210 |
+
#: wp-cache.php:361
|
211 |
+
msgid "Proudly tell the world your server is Digg proof! (places a message in your blog’s footer)"
|
212 |
+
msgstr "Fai sapere a tutti che il tuo sito é a prova di Digg! (inserisce un messaggio nel footer del tuo blog)"
|
213 |
+
|
214 |
+
#: wp-cache.php:362
|
215 |
+
msgid "Clear all cache files when a post or page is published. (This may significantly slow down saving of posts.)"
|
216 |
+
msgstr "Svuota tutti i file di cache quando viene pubblicato un articolo o una pagina (il salvataggio del post subirà un rallentamento significante)"
|
217 |
+
|
218 |
+
#: wp-cache.php:363
|
219 |
+
msgid "Cache rebuild. Serve a supercache file to anonymous users while a new file is being generated. Recommended for <em>very</em> busy websites with lots of comments. Makes \"directly cached pages\" and \"Lockdown mode\" obsolete."
|
220 |
+
msgstr "Rigenerazione della cache. Proponi agli utenti anonimi un file di supercache quando un nuovo file sta per essere generato. L'attivazione di questa funzione é preferibile per quei siti ad <em>alto</em> traffico e con molti commenti. Questa opzione rende di fatto obsoleta la \"cache diretta pagine\" e la \"modalità Lockdown\"."
|
221 |
+
|
222 |
+
#: wp-cache.php:365
|
223 |
+
msgid "Coarse file locking. You probably don’t need this but it may help if your server is underpowered. Warning! <em>May cause your server to lock up in very rare cases!</em>"
|
224 |
+
msgstr "Blocco grezzo del file. Sebbene questa funzione non sia particolarmente necessaria potrebbe tornarti utile qualora il tuo server non avesse una potenza sufficiente. Attenzione! <em>In alcuni casi molto rari potrebbe bloccare il tuo server!</em>"
|
225 |
+
|
226 |
+
#: wp-cache.php:367
|
227 |
+
msgid "List the newest cached pages (may be expensive to run on busy sites, use with caution.)"
|
228 |
+
msgstr "Lista delle nuove pagine nella cache (non indicato per i siti ad alto traffico - usare con cautela)"
|
229 |
+
|
230 |
+
#: wp-cache.php:368
|
231 |
+
msgid "Mobile device support."
|
232 |
+
msgstr "Supporto "
|
233 |
+
|
234 |
+
#: wp-cache.php:373
|
235 |
+
msgid "Mobile rewrite rules detected"
|
236 |
+
msgstr "Sono state rilevate le regole Mobile rewrite"
|
237 |
+
|
238 |
+
#: wp-cache.php:374
|
239 |
+
msgid "For best performance you should enable \"Mobile device support\" or delete the mobile rewrite rules in your .htaccess. Look for the 2 lines with the text \"Android|2.0\\ MMP|240x320|AvantGo|BlackBerry|Blazer|Cellphone\" and delete those."
|
240 |
+
msgstr "Per una migliore prestazione attivare il \"Supporto mobile device\" oppure cancellare le regole mobile rewrite presenti nel tuo file .htaccess. Cerca le 2 linee contenenti il testo \"Android|2.0\\ MMP|240x320|AvantGo|BlackBerry|Blazer|Cellphone\" e cancellale."
|
241 |
+
|
242 |
+
#: wp-cache.php:374
|
243 |
+
msgid "This will have no affect on ordinary users but mobile users will see uncached pages."
|
244 |
+
msgstr "Questa operazione non avrà alcun effetto per gli utenti comuni mentre gli utenti via mobile non visualizzeranno le pagine nella cache."
|
245 |
+
|
246 |
+
#: wp-cache.php:377
|
247 |
+
msgid "Mobile support requires extra rules in your .htaccess file, or you can set the plugin to half-on mode. Here are your options (in order of difficulty):"
|
248 |
+
msgstr "Il supporto mobile necessita della aggiunta di alcune regole extra nel tuo file .htaccess oppure che tu imposti il plugin nella modalità parziale. Qui puoi trovare le opzioni disponibili (in ordine di difficoltà):"
|
249 |
+
|
250 |
+
#: wp-cache.php:378
|
251 |
+
msgid "Set the plugin to half on mode and enable mobile support."
|
252 |
+
msgstr "Imposta il plugin nella modalità parziale ed attiva il supporto mobile."
|
253 |
+
|
254 |
+
#: wp-cache.php:379
|
255 |
+
#, php-format
|
256 |
+
msgid "Delete the plugin mod_rewrite rules in %s.htaccess enclosed by <code># BEGIN WPSuperCache</code> and <code># END WPSuperCache</code> and let the plugin regenerate them by reloading this page."
|
257 |
+
msgstr "Cancella le regole mod_rewrite del plugin in %s.htaccess presenti tra <code># BEGIN WPSuperCache</code> e <code># END WPSuperCache</code> quindi, permetti al plugin di rigenerarle al momento della ricarica di questa pagina."
|
258 |
+
|
259 |
+
#: wp-cache.php:380
|
260 |
+
msgid "Add the rules yourself. Edit %s.htaccess and find the block of code enclosed by the lines <code># BEGIN WPSuperCache</code> and <code># END WPSuperCache</code>. There are two sections that look very similar. Just below the line <code>%{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$</code> add this line: (do it twice, once for each section)"
|
261 |
+
msgstr "Aggiungi tu stesso le regole. Modifica il file %s.htaccess e trova il blocco del codice contenuto tra le linee <code># BEGIN WPSuperCache</code> e <code># END WPSuperCache</code>. Troverai due sezioni particolarmente simili tra loro. Proprio sotto la linea <code>%{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$</code> aggiungi questa linea: (per due volte, una per ogni sezione)"
|
262 |
+
|
263 |
+
#: wp-cache.php:383
|
264 |
+
msgid "Note:"
|
265 |
+
msgstr "Nota:"
|
266 |
+
|
267 |
+
#: wp-cache.php:383
|
268 |
+
#, php-format
|
269 |
+
msgid "If uninstalling this plugin, make sure the directory <em>%s</em> is writeable by the webserver so the files <em>advanced-cache.php</em> and <em>cache-config.php</em> can be deleted automatically. (Making sure those files are writeable too is probably a good idea!)"
|
270 |
+
msgstr "Qualora desiderassi disinstallare questo plugin, assicurati che la cartella <em>%s</em> sia scrivibile in modo tale che i file <em>advanced-cache.php</em> e <em>cache-config.php</em> possano venire cancellati automaticamente. (l'accertarsi che anche questi due file siano scrivibile é probabilmente una buona idea!)"
|
271 |
+
|
272 |
+
#: wp-cache.php:384
|
273 |
+
#, php-format
|
274 |
+
msgid "Uninstall using the <a href=\"%1$s/wp-super-cache/uninstall.php\">uninstall script</a> to remove files and directories created by the plugin. (Please see <a href=\"%1$s/wp-super-cache/readme.txt\">readme.txt</a> for instructions on uninstalling this script.)"
|
275 |
+
msgstr "Utilizzando lo script di <a href=\"%1$s/wp-super-cache/uninstall.php\">disinstallazione</a> verranno rimossi tutti i file e tutte le cartelle create dal plugin. (per maggiori informazioni sul come effettuare la disinstallazione, consulta il <a href=\"%1$s/wp-super-cache/readme.txt\">readme.txt</a>.)"
|
276 |
+
|
277 |
+
#: wp-cache.php:386
|
278 |
+
msgid "Update Status"
|
279 |
+
msgstr "Aggiorna lo stato"
|
280 |
+
|
281 |
+
#: wp-cache.php:393
|
282 |
+
msgid "Required to serve compressed supercache files properly."
|
283 |
+
msgstr "E' necessario fornire correttamente i file compressi supercache."
|
284 |
+
|
285 |
+
#: wp-cache.php:393
|
286 |
+
msgid "Required to set caching information on supercache pages. IE7 users will see old pages without this module."
|
287 |
+
msgstr "E' necessario impostare le informazioni cache per le pagine supercache. In assenza di questo modulo, gli utenti che utilizzano IE7 visualizzeranno le pagine non aggiornate."
|
288 |
+
|
289 |
+
#: wp-cache.php:393
|
290 |
+
msgid "Set the expiry date on supercached pages. Visitors may not see new pages when they refresh or leave comments without this module."
|
291 |
+
msgstr "Imposta la data di scadenza per le pagine supercached. Senza questo modulo, i visitatori potrebbero non visualizzare le nuove pagine sebbene venga ricaricata la pagina oppure inviare dei commenti."
|
292 |
+
|
293 |
+
#: wp-cache.php:400
|
294 |
+
msgid "Missing Apache Modules"
|
295 |
+
msgstr "Moduli Apache mancanti"
|
296 |
+
|
297 |
+
#: wp-cache.php:401
|
298 |
+
msgid "The following Apache modules are missing. The plugin will work in half-on mode without them. In full Supercache mode, your visitors may see corrupted pages or out of date content however."
|
299 |
+
msgstr "Non sono presenti i seguenti moduli Apache. Senza di essi, il plugin funzionerà in modalità parziale. Qualora facessi uso della modalita Supercache attiva, i tuoi visitatori potrebbero visualizzare delle pagine non aggiornate e/o corrotte."
|
300 |
+
|
301 |
+
#: wp-cache.php:413
|
302 |
+
msgid "Make WordPress Faster"
|
303 |
+
msgstr "Rendi più veloce WordPress"
|
304 |
+
|
305 |
+
#: wp-cache.php:415
|
306 |
+
#, php-format
|
307 |
+
msgid "%1$s really makes your blog go faster. Make it go faster<sup>*</sup> by buying me an <a href=\"%2$s\">Amazon gift card</a>! Make it out to \"%3$s\" for whatever amount you want. Every penny helps!"
|
308 |
+
msgstr "%1$s rende veramente più veloce il tuo blog. Rendilo più rapido<sup>*</sup> offrendomi una <a href=\"%2$s\">Amazon gift card</a>! Partecipa a \"%3$s\" con un qualsiasi importo tu desideri offrire. Ogni centesimo é di aiuto!"
|
309 |
+
|
310 |
+
#: wp-cache.php:416
|
311 |
+
#, php-format
|
312 |
+
msgid "If Amazon isn’t your thing, there’s also PayPal. Click the \"Donate\" button below or take a quick peek at my <a href=\"%s\">wishlist</a>."
|
313 |
+
msgstr "Non ti piacesse Amazon, utilizza PayPal. Clicca sul pulsante \"Donazione\" qui sotto oppure fai un salto alla mia <a href=\"%s\">wishlist</a>."
|
314 |
+
|
315 |
+
#: wp-cache.php:417
|
316 |
+
msgid "Thanks in advance!"
|
317 |
+
msgstr "Un grazie anticipato!"
|
318 |
+
|
319 |
+
#: wp-cache.php:418
|
320 |
+
msgid "Ok, it won’t go any faster but you’ll make this plugin author very happy!"
|
321 |
+
msgstr "Ok, considera che sebbene il tuo sito non sarà più veloce avrai almeno reso più felice l'autore di questo plugin!"
|
322 |
+
|
323 |
+
#: wp-cache.php:426
|
324 |
+
msgid "Don’t show me this again."
|
325 |
+
msgstr "Non mostrarmelo più."
|
326 |
+
|
327 |
+
#: wp-cache.php:426
|
328 |
+
msgid "Hide"
|
329 |
+
msgstr "Nascondi"
|
330 |
+
|
331 |
+
#: wp-cache.php:429
|
332 |
+
#, php-format
|
333 |
+
msgid "%1$s is maintained and developed by %2$s with contributions from many others."
|
334 |
+
msgstr "Il plugin %1$s viene aggiornato e sviluppato da %2$s grazie anche al contributo di molte altre persone."
|
335 |
+
|
336 |
+
#: wp-cache.php:430
|
337 |
+
#, php-format
|
338 |
+
msgid "He blogs at %1$s, posts photos at %2$s and <a href=\"%3$s\">wishes</a> he had more time to read and relax."
|
339 |
+
msgstr "Oltre al tempo dedicato alla lettura ed al relax, Donncha cura il blog %1$s, pubblica le sue foto nel sito %2$s e riceve anche dei <a href=\"%3$s\">doni</a>."
|
340 |
+
|
341 |
+
#: wp-cache.php:431
|
342 |
+
#, php-format
|
343 |
+
msgid "Please say hi to him on %s too!"
|
344 |
+
msgstr "Mandagli un saluto su %s!"
|
345 |
+
|
346 |
+
#: wp-cache.php:440
|
347 |
+
#, php-format
|
348 |
+
msgid "Cached pages since %1$s : <strong>%2$s</strong>"
|
349 |
+
msgstr "Pagine in cache da %1$s : <strong>%2$s</strong>"
|
350 |
+
|
351 |
+
#: wp-cache.php:441
|
352 |
+
msgid "Newest Cached Pages:"
|
353 |
+
msgstr "Pagine recenti nella cache:"
|
354 |
+
|
355 |
+
#: wp-cache.php:445
|
356 |
+
#, php-format
|
357 |
+
msgid "Cached %s seconds ago"
|
358 |
+
msgstr "Cache effettuata %s secondi fa"
|
359 |
+
|
360 |
+
#: wp-cache.php:448
|
361 |
+
msgid "(may not always be accurate on busy sites)"
|
362 |
+
msgstr "(il dato potrebbe essere non sempre accurato per quei siti ad alto traffico)"
|
363 |
+
|
364 |
+
#: wp-cache.php:469
|
365 |
+
msgid "Accepted Filenames & Rejected URIs"
|
366 |
+
msgstr "Nomi file consentiti e URL respinti"
|
367 |
+
|
368 |
+
#: wp-cache.php:494
|
369 |
+
msgid "Cache Plugins"
|
370 |
+
msgstr "Plugin e cache"
|
371 |
+
|
372 |
+
#: wp-cache.php:505
|
373 |
+
#: wp-cache.php:516
|
374 |
+
msgid "Super Cache Compression"
|
375 |
+
msgstr "Compressione Super Cache"
|
376 |
+
|
377 |
+
#: wp-cache.php:506
|
378 |
+
msgid "Compression is enabled by default when in <em>HALF ON</em> mode."
|
379 |
+
msgstr "La compressione viene attivata come predefinita quando é in uso la modalità <em>PARZIALE</em>."
|
380 |
+
|
381 |
+
#: wp-cache.php:518
|
382 |
+
#: wp-cache.php:696
|
383 |
+
msgid "Enabled"
|
384 |
+
msgstr "Attivato"
|
385 |
+
|
386 |
+
#: wp-cache.php:519
|
387 |
+
#: wp-cache.php:696
|
388 |
+
msgid "Disabled"
|
389 |
+
msgstr "Disattivato"
|
390 |
+
|
391 |
+
#: wp-cache.php:520
|
392 |
+
msgid "Compression is disabled by default because some hosts have problems with compressed files. Switching this on and off clears the cache."
|
393 |
+
msgstr "La compressione é disattivata come predefinita poiché alcuni host riscontrano dei problemi con i file compressi. La commutazione attivo/non attivo svuoterà la cache."
|
394 |
+
|
395 |
+
#: wp-cache.php:523
|
396 |
+
msgid "Super Cache compression is now disabled."
|
397 |
+
msgstr "La compressione Super Cache é stata disattivata."
|
398 |
+
|
399 |
+
#: wp-cache.php:525
|
400 |
+
msgid "Super Cache compression is now enabled."
|
401 |
+
msgstr "La compressione Super Cache é stata attivata."
|
402 |
+
|
403 |
+
#: wp-cache.php:527
|
404 |
+
msgid "Update Compression"
|
405 |
+
msgstr "Aggiorna la compressione"
|
406 |
+
|
407 |
+
#: wp-cache.php:534
|
408 |
+
msgid "Mod Rewrite Rules"
|
409 |
+
msgstr "Regole Mod Rewrite"
|
410 |
+
|
411 |
+
#: wp-cache.php:581
|
412 |
+
msgid "WordPress MU Detected"
|
413 |
+
msgstr "E' stata rilevata una installazione WordPress MU"
|
414 |
+
|
415 |
+
#: wp-cache.php:581
|
416 |
+
msgid "Unfortunately the rewrite rules cannot be updated automatically when running WordPress MU. Please open your .htaccess and add the following mod_rewrite rules above any other rules in that file."
|
417 |
+
msgstr "Sfortunatamente, le rewrite rule non possono essere aggiornate in automatico quando WordPress MU é in funzione. Apri il tuo file .htaccess ed aggiungi le seguenti regole mod_rewrite in cima ad ogni altra regola presente nel file."
|
418 |
+
|
419 |
+
#: wp-cache.php:583
|
420 |
+
msgid "Mod Rewrite rules cannot be updated!"
|
421 |
+
msgstr "Le regole Mod Rewrite non possono essere aggiornate!"
|
422 |
+
|
423 |
+
#: wp-cache.php:584
|
424 |
+
#, php-format
|
425 |
+
msgid "You must have <strong>BEGIN</strong> and <strong>END</strong> markers in %s.htaccess for the auto update to work. They look like this and surround the main WordPress mod_rewrite rules:"
|
426 |
+
msgstr "Affinché l'aggiornamento automatico possa funzionare, sono necessari i marcatori <strong>BEGIN</strong> ed <strong>END</strong> nel file %s.htaccess. Sono simili a questa ed avvolgono le principali regole mod_rewrite di WordPress:"
|
427 |
+
|
428 |
+
#: wp-cache.php:586
|
429 |
+
msgid "Refresh this page when you have updated your .htaccess file."
|
430 |
+
msgstr "Ricarica questa pagina una volta aggiornato il file .htaccess."
|
431 |
+
|
432 |
+
#: wp-cache.php:590
|
433 |
+
msgid "Thank you for upgrading."
|
434 |
+
msgstr "Grazie per avere effettuato l'aggiornamento."
|
435 |
+
|
436 |
+
#: wp-cache.php:590
|
437 |
+
#, php-format
|
438 |
+
msgid "The mod_rewrite rules changed since you last installed this plugin. Unfortunately you must remove the old supercache rules before the new ones are updated. Refresh this page when you have edited your .htaccess file. If you wish to manually upgrade, change the following line: %1$s so it looks like this: %2$s The only changes are \"HTTP_COOKIE\" becomes \"HTTP:Cookie\" and \"wordpressuser\" becomes \"wordpress\". This is a WordPress 2.5 change but it’s backwards compatible with older versions if you’re brave enough to use them."
|
439 |
+
msgstr "Le regole mod_rewrite sono cambiate dalla tua ultima installazione di questo plugin. E' necessario che tu rimuova le regole supercache precedenti prima che le nuove siano aggiornate. Ricarica questa pagina una volta che avrai modificato il tuo file .htaccess. Qualora desiderassi effettuare un aggiornamento manuale, modifica la seguente linea: %1$s rendendola simile a questa: %2$s Le sole modifiche sono \"HTTP_COOKIE\" che diventa \"HTTP:Cookie\" e \"wordpressuser\" che va sostituito con \"wordpress\". Questa é una modifica relativa a WordPress 2.5 comunque, la sua validità é estesa anche alle versioni precedenti (qualora avessi il coraggio di utilizzarle)."
|
440 |
+
|
441 |
+
#: wp-cache.php:594
|
442 |
+
msgid "Trailing slash check required."
|
443 |
+
msgstr "E' necessaria una verifica sullo slash di chiusura."
|
444 |
+
|
445 |
+
#: wp-cache.php:594
|
446 |
+
msgid "It looks like your blog has URLs that end with a \"/\". Unfortunately since you installed this plugin a duplicate content bug has been found where URLs not ending in a \"/\" end serve the same content as those with the \"/\" and do not redirect to the proper URL. To fix, you must edit your .htaccess file and add these two rules to the two groups of Super Cache rules:"
|
447 |
+
msgstr "Pare che il tuo URL termini con uno \"/\". Dal momento in cui hai installato questo plugin, é stato rilevato un bug che duplica il contenuto laddove l'URL non termina con uno \"/\"; di fatto, vengono proposti gli stessi contenuti di quelli con lo \"/\" e non viene altresì effettuato un reindirizzamento all'URL appropriato. Per la correzione, sarà necessario modificare il tuo file .htaccess aggiungendo queste due regole ai due gruppi di regole di Super Cache:"
|
448 |
+
|
449 |
+
#: wp-cache.php:596
|
450 |
+
msgid "You can see where the rules go and examine the complete rules by clicking the \"View mod_rewrite rules\" link below."
|
451 |
+
msgstr "Puoi vedere dove posizionare ed esaminare nella loro completezza le regole cliccando il link qui sotto a nome \"Visualizza le regole Mod_Rewrite\"."
|
452 |
+
|
453 |
+
#: wp-cache.php:608
|
454 |
+
msgid "Cannot update .htaccess"
|
455 |
+
msgstr "Non é possibile aggiornare il file .htaccess"
|
456 |
+
|
457 |
+
#: wp-cache.php:608
|
458 |
+
#, php-format
|
459 |
+
msgid "The file <code>%s.htaccess</code> cannot be modified by the web server. Please correct this using the chmod command or your ftp client."
|
460 |
+
msgstr "Il file <code>%s.htaccess</code> non può essere modificato. Correggi utilizzando il comando chmod oppure il tuo client ftp."
|
461 |
+
|
462 |
+
#: wp-cache.php:608
|
463 |
+
msgid "Refresh this page when the file permissions have been modified."
|
464 |
+
msgstr "Ricarica questa pagina una volta che i permessi per il file sono stati modificati."
|
465 |
+
|
466 |
+
#: wp-cache.php:608
|
467 |
+
#, php-format
|
468 |
+
msgid "Alternatively, you can edit your <code>%s.htaccess</code> file manually and add the following code (before any WordPress rules):"
|
469 |
+
msgstr "Come alternativa, puoi modificare manualmente il file <code>%s.htaccess</code> aggiungendo il seguente codice (prima di ogni regola WordPress):"
|
470 |
+
|
471 |
+
#: wp-cache.php:611
|
472 |
+
#, php-format
|
473 |
+
msgid "To serve static html files your server must have the correct mod_rewrite rules added to a file called <code>%s.htaccess</code>"
|
474 |
+
msgstr "Affinché il tuo server possa fornire dei file html statici é necessario che le regole mod_rewrite vengano aggiunte al file <code>%s.htaccess</code>"
|
475 |
+
|
476 |
+
#: wp-cache.php:613
|
477 |
+
msgid "You must edit the file yourself add the following rules."
|
478 |
+
msgstr "E' necessario che tu modifichi il file aggiungendo le seguenti regole."
|
479 |
+
|
480 |
+
#: wp-cache.php:615
|
481 |
+
msgid "You can edit the file yourself add the following rules."
|
482 |
+
msgstr "Puoi modificare tu stesso il file aggiungendo le seguenti regole."
|
483 |
+
|
484 |
+
#: wp-cache.php:617
|
485 |
+
msgid " Make sure they appear before any existing WordPress rules. "
|
486 |
+
msgstr " Accertati che appaiano prima di ogni regola WordPress già presente. "
|
487 |
+
|
488 |
+
#: wp-cache.php:619
|
489 |
+
#: wp-cache.php:646
|
490 |
+
#, php-format
|
491 |
+
msgid "Rules must be added to %s too:"
|
492 |
+
msgstr "Le regole devono essere aggiunte anche a %s:"
|
493 |
+
|
494 |
+
#: wp-cache.php:624
|
495 |
+
msgid "Update Mod_Rewrite Rules"
|
496 |
+
msgstr "Aggiorna le regole Mod_Rewrite"
|
497 |
+
|
498 |
+
#: wp-cache.php:633
|
499 |
+
msgid "Mod Rewrite rules updated!"
|
500 |
+
msgstr "Le regole Mod Rewrite sono state aggiornate!"
|
501 |
+
|
502 |
+
#: wp-cache.php:634
|
503 |
+
#, php-format
|
504 |
+
msgid "%s.htaccess has been updated with the necessary mod_rewrite rules. Please verify they are correct. They should look like this:"
|
505 |
+
msgstr "Il file %s.htaccess é stato aggiornato con l'inserimento delle regole mod_rewrite necessarie. Verifica la loro correttezza. Ecco come dovrebbero essere:"
|
506 |
+
|
507 |
+
#: wp-cache.php:636
|
508 |
+
msgid "Mod Rewrite rules must be updated!"
|
509 |
+
msgstr "E' necessario aggiornare le regole Mod Rewrite!"
|
510 |
+
|
511 |
+
#: wp-cache.php:637
|
512 |
+
#, php-format
|
513 |
+
msgid "Your %s.htaccess is not writable by the webserver and must be updated with the necessary mod_rewrite rules. The new rules go above the regular WordPress rules as shown in the code below:"
|
514 |
+
msgstr "Il tuo file %s.htaccess non é scrivibile e deve essere aggiornato con le regole mod_rewrite necessarie. Le nuove regole andranno inserite al di sopra di quelle regolari di WordPress così come nel codice qui sotto:"
|
515 |
+
|
516 |
+
#: wp-cache.php:642
|
517 |
+
#, php-format
|
518 |
+
msgid "WP Super Cache mod rewrite rules were detected in your %s.htaccess file.<br /> Click the following link to see the lines added to that file. If you have upgraded the plugin make sure these rules match."
|
519 |
+
msgstr "Sono state rilevate le regole mod rewrite di WP Super Cache nel tuo file %s.htaccess.<br /> Clicca il seguente link per vedere le linee aggiunte a quel file. Nel caso in cui avessi aggiornato il plugin assicurati che esse coincidano."
|
520 |
+
|
521 |
+
#: wp-cache.php:643
|
522 |
+
msgid "View Mod_Rewrite Rules"
|
523 |
+
msgstr "Visualizza le regole Mod_Rewrite"
|
524 |
+
|
525 |
+
#: wp-cache.php:654
|
526 |
+
#, php-format
|
527 |
+
msgid "Gzip encoding rules in %s.htaccess created."
|
528 |
+
msgstr "Sono state create nel file %s.htaccess le regole per la codifica Gzip."
|
529 |
+
|
530 |
+
#: wp-cache.php:661
|
531 |
+
msgid "Fix Configuration"
|
532 |
+
msgstr "Correggi la configurazione"
|
533 |
+
|
534 |
+
#: wp-cache.php:664
|
535 |
+
msgid "Restore Default Configuration"
|
536 |
+
msgstr "Ripristina la configurazione predefinita"
|
537 |
+
|
538 |
+
#: wp-cache.php:672
|
539 |
+
msgid "Comment moderation is enabled. Your comment may take some time to appear."
|
540 |
+
msgstr "Moderazione dei commenti attiva. Il tuo commento non apparirà immediatamente."
|
541 |
+
|
542 |
+
#: wp-cache.php:696
|
543 |
+
msgid "Lock Down:"
|
544 |
+
msgstr "Blocco di protezione:"
|
545 |
+
|
546 |
+
#: wp-cache.php:697
|
547 |
+
msgid "Prepare your server for an expected spike in traffic by enabling the lock down. When this is enabled, new comments on a post will not refresh the cached static files."
|
548 |
+
msgstr "Proteggi il tuo server da un inatteso picco di traffico attivando il blocco. Quando il blocco é attivo, i nuovi commenti non ricaricheranno i file statici nella cache."
|
549 |
+
|
550 |
+
#: wp-cache.php:698
|
551 |
+
msgid "Developers: Make your plugin lock down compatible by checking the \"WPLOCKDOWN\" constant. The following code will make sure your plugin respects the WPLOCKDOWN setting."
|
552 |
+
msgstr "Sviluppatori: é possibile rendere compatibile il plugin con il blocco di protezione grazie alla costante \"WPLOCKDOWN\". Il seguente codice farà sì che il plugin sia in grado di sopperire alle impostazioni WPLOCKDOWN."
|
553 |
+
|
554 |
+
#: wp-cache.php:700
|
555 |
+
msgid "Sorry. My blog is locked down. Updates will appear shortly"
|
556 |
+
msgstr "Il mio blog ha attivato un blocco di protezione. Gli aggiornamenti appariranno a breve"
|
557 |
+
|
558 |
+
#: wp-cache.php:704
|
559 |
+
msgid "WordPress is locked down. Super Cache static files will not be deleted when new comments are made."
|
560 |
+
msgstr "WordPress ha un blocco di protezione. Quando verranno effettuati dei nuovi commenti, i file statici di Super Cache non saranno cancellati."
|
561 |
+
|
562 |
+
#: wp-cache.php:706
|
563 |
+
msgid "WordPress is not locked down. New comments will refresh Super Cache static files as normal."
|
564 |
+
msgstr "WordPress ha un blocco di protezione. I nuovi commenti rigenereranno come al solito i file statici di Super Cache."
|
565 |
+
|
566 |
+
#: wp-cache.php:712
|
567 |
+
msgid "Lock Down"
|
568 |
+
msgstr "Blocco di protezione"
|
569 |
+
|
570 |
+
#: wp-cache.php:720
|
571 |
+
msgid "Directly Cached Files"
|
572 |
+
msgstr "File cache diretta"
|
573 |
+
|
574 |
+
#: wp-cache.php:778
|
575 |
+
#, php-format
|
576 |
+
msgid "%s removed!"
|
577 |
+
msgstr "%s rimosso!"
|
578 |
+
|
579 |
+
#: wp-cache.php:786
|
580 |
+
#, php-format
|
581 |
+
msgid "You must make %s writable to enable this feature. As this is a security risk please make it readonly after your page is generated."
|
582 |
+
msgstr "E' necessario rendere scrivibile %s affinché questa opzione possa essere attivata. Per ragioni di sicurezza, rendi di sola lettura una volta che la pagina é stata generata."
|
583 |
+
|
584 |
+
#: wp-cache.php:788
|
585 |
+
#, php-format
|
586 |
+
msgid "%s is writable. Please make it readonly after your page is generated as this is a security risk."
|
587 |
+
msgstr "%s é scrivibile. Assicurati che essa sia di sola lettura una volta che la pagina verrà generata (limita i problemi di sicurezza)."
|
588 |
+
|
589 |
+
#: wp-cache.php:802
|
590 |
+
msgid "Existing direct page"
|
591 |
+
msgstr "Pagina diretta esistente"
|
592 |
+
|
593 |
+
#: wp-cache.php:802
|
594 |
+
msgid "Delete cached file"
|
595 |
+
msgstr "Cancella i file nella cache"
|
596 |
+
|
597 |
+
#: wp-cache.php:807
|
598 |
+
msgid "Add direct page:"
|
599 |
+
msgstr "Aggiungi una pagina diretta:"
|
600 |
+
|
601 |
+
#: wp-cache.php:809
|
602 |
+
#, php-format
|
603 |
+
msgid "Directly cached files are files created directly off %s where your blog lives. This feature is only useful if you are expecting a major Digg or Slashdot level of traffic to one post or page."
|
604 |
+
msgstr "I file di cache diretta sono dei file creati direttamente sotto %s ossia laddove il tuo blog risiede. Questa opzione é particolarmente utile qualora ti aspettassi un alto livello di traffico proveniente da Digg o Slashdot verso un articolo/pagina."
|
605 |
+
|
606 |
+
#: wp-cache.php:811
|
607 |
+
#, php-format
|
608 |
+
msgid "For example: to cache <em>%1$sabout/</em>, you would enter %1$sabout/ or /about/. The cached file will be generated the next time an anonymous user visits that page."
|
609 |
+
msgstr "Esempio: per la cache di <em>%1$sabout/</em>, sarà necessario che tu inserisca %1$sabout/ oppure /about/. Il file di cache verrà generato la prima volta che un utente anonimo visiterà quella pagina."
|
610 |
+
|
611 |
+
#: wp-cache.php:812
|
612 |
+
msgid "Make the textbox blank to remove it from the list of direct pages and delete the cached file."
|
613 |
+
msgstr "Svuota la casella di testo per rimuovere l'indirizzo dalla lista delle pagine dirette e cancellare dalla cache il file."
|
614 |
+
|
615 |
+
#: wp-cache.php:817
|
616 |
+
msgid "Update Direct Pages"
|
617 |
+
msgstr "Aggiorna le pagine dirette"
|
618 |
+
|
619 |
+
#: wp-cache.php:857
|
620 |
+
msgid "Expiry Time & Garbage Collection"
|
621 |
+
msgstr "Periodo scadenza e Garbage Collection"
|
622 |
+
|
623 |
+
#: wp-cache.php:859
|
624 |
+
msgid "Expire time:"
|
625 |
+
msgstr "Periodo scadenza:"
|
626 |
+
|
627 |
+
#: wp-cache.php:860
|
628 |
+
msgid "seconds"
|
629 |
+
msgstr "secondi"
|
630 |
+
|
631 |
+
#: wp-cache.php:861
|
632 |
+
msgid "Garbage Collection"
|
633 |
+
msgstr "Garbage Collection"
|
634 |
+
|
635 |
+
#: wp-cache.php:861
|
636 |
+
msgid "If expiry time is more than 1800 seconds (half an hour), garbage collection will be done every 10 minutes, otherwise it will happen 10 seconds after the expiry time above."
|
637 |
+
msgstr "Qualora il periodo di scadenza fosse maggiore di 1800 secondi (mezz'ora), la garbage collection verrà effettuata ogni 10 minuti diversamente, l'operazione verrà effettuata 10 secondi dopo il periodo di scadenza indicato qui sopra."
|
638 |
+
|
639 |
+
#: wp-cache.php:862
|
640 |
+
msgid "Checking for and deleting expired files is expensive, but it’s expensive leaving them there too. On a very busy site you should set the expiry time to <em>300 seconds</em>. Experiment with different values and visit this page to see how many expired files remain at different times during the day. Aim to have less than 500 cached files if possible."
|
641 |
+
msgstr "La ricerca e la cancellazione dei file scaduti é particolarmente dispendiosa così come lo é il lasciarli lì scaduti. Qualora avessi un sito con un traffico rilevante, imposta il tempo di scadenza a <em>300 secondi</em>. Effettua eventualmente più prove con valori differenti e controlla in questa pagina (più volte durante l'arco della giornata) il totale dei file scaduti presenti. Il numero ottimale dovrebbe corrispondere a circa 500 file di cache."
|
642 |
+
|
643 |
+
#: wp-cache.php:863
|
644 |
+
msgid "Change Expiration"
|
645 |
+
msgstr "Modifica la scadenza"
|
646 |
+
|
647 |
+
#: wp-cache.php:902
|
648 |
+
msgid "Rejected User Agents"
|
649 |
+
msgstr "User Agents "
|
650 |
+
|
651 |
+
#: wp-cache.php:903
|
652 |
+
msgid "Strings in the HTTP ’User Agent’ header that prevent WP-Cache from caching bot, spiders, and crawlers’ requests. Note that super cached files are still sent to these agents if they already exists."
|
653 |
+
msgstr "Le stringhe presenti nella header HTTP degli ’User Agent’ che impediscono a WP-Cache di fornire i dati nella cache alle richieste da parte dei bot, degli spider e dei crawler. Nota che anche i file super cached saranno inviati a questi agent qualora esistessero."
|
654 |
+
|
655 |
+
#: wp-cache.php:910
|
656 |
+
msgid "Save UA Strings"
|
657 |
+
msgstr "Salva le stringhe UA"
|
658 |
+
|
659 |
+
#: wp-cache.php:933
|
660 |
+
msgid "Do not cache the following page types. See the <a href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> documentation for a complete discussion on each type."
|
661 |
+
msgstr "Non effettuare la cache per i tipi di pagine a seguire. Per maggiori informazioni, leggi la documentazione circa i <a href=\"http://codex.wordpress.org/Conditional_Tags\">tag condizionali</a>."
|
662 |
+
|
663 |
+
#: wp-cache.php:936
|
664 |
+
msgid "Single Posts"
|
665 |
+
msgstr "Articoli singoli"
|
666 |
+
|
667 |
+
#: wp-cache.php:937
|
668 |
+
msgid "Pages"
|
669 |
+
msgstr "Pagine"
|
670 |
+
|
671 |
+
#: wp-cache.php:938
|
672 |
+
msgid "Front Page"
|
673 |
+
msgstr "Pagina principale"
|
674 |
+
|
675 |
+
#: wp-cache.php:939
|
676 |
+
msgid "Home"
|
677 |
+
msgstr "Home"
|
678 |
+
|
679 |
+
#: wp-cache.php:940
|
680 |
+
msgid "Archives"
|
681 |
+
msgstr "Archivi"
|
682 |
+
|
683 |
+
#: wp-cache.php:941
|
684 |
+
msgid "Tags"
|
685 |
+
msgstr "Tag"
|
686 |
+
|
687 |
+
#: wp-cache.php:942
|
688 |
+
msgid "Category"
|
689 |
+
msgstr "Categoria"
|
690 |
+
|
691 |
+
#: wp-cache.php:943
|
692 |
+
msgid "Feeds"
|
693 |
+
msgstr "Feed"
|
694 |
+
|
695 |
+
#: wp-cache.php:944
|
696 |
+
msgid "Search Pages"
|
697 |
+
msgstr "Pagine ricerca"
|
698 |
+
|
699 |
+
#: wp-cache.php:946
|
700 |
+
#: wp-cache.php:1071
|
701 |
+
msgid "Save"
|
702 |
+
msgstr "Salva"
|
703 |
+
|
704 |
+
#: wp-cache.php:963
|
705 |
+
msgid "Add here strings (not a filename) that forces a page not to be cached. For example, if your URLs include year and you dont want to cache last year posts, it’s enough to specify the year, i.e. ’/2004/’. WP-Cache will search if that string is part of the URI and if so, it will not cache that page."
|
706 |
+
msgstr "Aggiungi qui le stringhe (non il nome del file) per forzare il blocco della cache per quella data pagina. Ad esempio, se il tuo URL contenesse l'anno e tu non gradissi la cache per gli articoli pubblicati in quel dato periodo, sarà sufficiente specificare l'anno, ad es. ’/2004/’. WP-Cache effettuerà una ricerca in modo tale da verificare la presenza di quella stringa nell'URI quindi, la cache per quella pagina non verrà generata."
|
707 |
+
|
708 |
+
#: wp-cache.php:969
|
709 |
+
msgid "Save Strings"
|
710 |
+
msgstr "Salva le stringhe"
|
711 |
+
|
712 |
+
#: wp-cache.php:985
|
713 |
+
msgid "Add here those filenames that can be cached, even if they match one of the rejected substring specified above."
|
714 |
+
msgstr "Aggiungi qui i nomi dei file per i quali potrà essere effettuata la cache (anche in caso di corrispondenza con una delle stringhe specificate più sopra)."
|
715 |
+
|
716 |
+
#: wp-cache.php:991
|
717 |
+
msgid "Save Files"
|
718 |
+
msgstr "Salva i file"
|
719 |
+
|
720 |
+
#: wp-cache.php:1033
|
721 |
+
msgid "Debug Settings"
|
722 |
+
msgstr "Impostazioni debug"
|
723 |
+
|
724 |
+
#: wp-cache.php:1035
|
725 |
+
msgid "Currently logging to: "
|
726 |
+
msgstr "Log attuale:"
|
727 |
+
|
728 |
+
#: wp-cache.php:1045
|
729 |
+
msgid "Fix problems with the plugin by debugging it here. It can send you debug emails or log them to a file in your cache directory."
|
730 |
+
msgstr "Correggi qui i problemi con il debugging del plugin. Potrai sceglie tra l'invio delle tue email di debug oppure consultare il registro contenuto in un file allocato nella cartella della cache."
|
731 |
+
|
732 |
+
#: wp-cache.php:1046
|
733 |
+
msgid "Logging to a file is easier but faces the problem that clearing the cache will clear the log file."
|
734 |
+
msgstr "Consultare il file di registro é semplice ma ricordati che, una volta svuotata la cache, verrà cancellato anche il file di registro."
|
735 |
+
|
736 |
+
#: wp-cache.php:1050
|
737 |
+
msgid "Debugging"
|
738 |
+
msgstr "Debugging"
|
739 |
+
|
740 |
+
#: wp-cache.php:1051
|
741 |
+
msgid "Logging Type"
|
742 |
+
msgstr "Tipo di logging"
|
743 |
+
|
744 |
+
#: wp-cache.php:1051
|
745 |
+
msgid "Email"
|
746 |
+
msgstr "Email"
|
747 |
+
|
748 |
+
#: wp-cache.php:1052
|
749 |
+
msgid "file"
|
750 |
+
msgstr "file"
|
751 |
+
|
752 |
+
#: wp-cache.php:1053
|
753 |
+
msgid "IP Address"
|
754 |
+
msgstr "Indirizzo IP"
|
755 |
+
|
756 |
+
#: wp-cache.php:1053
|
757 |
+
#, php-format
|
758 |
+
msgid "(only log requests from this IP address. Your IP is %s)"
|
759 |
+
msgstr "(richieste per il registro provenienti da questo solo indirizzo IP. Il tuo IP é %s)"
|
760 |
+
|
761 |
+
#: wp-cache.php:1054
|
762 |
+
msgid "Log level"
|
763 |
+
msgstr "Livello log"
|
764 |
+
|
765 |
+
#: wp-cache.php:1060
|
766 |
+
msgid "(1 = less, 5 = more, may cause severe server load.)"
|
767 |
+
msgstr "(1 = minore, 5 = maggiore, può essere causa di un maggior carico sul server.)"
|
768 |
+
|
769 |
+
#: wp-cache.php:1062
|
770 |
+
msgid "Advanced"
|
771 |
+
msgstr "Avanzato"
|
772 |
+
|
773 |
+
#: wp-cache.php:1062
|
774 |
+
msgid "In very rare cases two problems may arise on some blogs:<ol><li> The front page may start downloading as a zip file.</li><li> The wrong page is occasionally cached as the front page if your blog uses a static front page and the permalink structure is <em>/%category%/%postname%/</em>.</li></ol>"
|
775 |
+
msgstr "In alcuni casi molto rari, é possibile che si verifichino in alcuni blog due problematiche:<ol><li> La front page potrebbe giungere come download di un file zip.</li><li> La pagina errata può essere in certi casi custodita nella cache quale front page qualora il tuo blog facesse uso di una front page statica e la struttura del permalink fosse <em>/%category%/%postname%/</em>.</li></ol>"
|
776 |
+
|
777 |
+
#: wp-cache.php:1063
|
778 |
+
#, php-format
|
779 |
+
msgid "I’m 99% certain that they aren’t bugs in WP Super Cache and they only happen in very rare cases but you can run a simple check once a minute to verify that your site is ok if you’re worried. You will be emailed if there is a problem."
|
780 |
+
msgstr "Sono certo al 99% che non si tratta di bugs in WP Super Cache e questo problema può accadere in casi veramente molto rari. Puoi attivare comunque un controllo al minuto in modo tale che sia possibile monitorare il tuo sito. In caso di problemi, ti verrà inviata una email."
|
781 |
+
|
782 |
+
#: wp-cache.php:1065
|
783 |
+
msgid "Check front page once a minute."
|
784 |
+
msgstr "Controlla la front page ogni minuto."
|
785 |
+
|
786 |
+
#: wp-cache.php:1066
|
787 |
+
msgid "Front page text"
|
788 |
+
msgstr "Testo front page"
|
789 |
+
|
790 |
+
#: wp-cache.php:1066
|
791 |
+
msgid "Text to search for on your front page. If this text is missing the cache will be cleared. Leave blank to disable."
|
792 |
+
msgstr "il testo da cercare nella tua front page. La cache verrà svuotata in assenza del testo. Lascia vuoto per disattivare"
|
793 |
+
|
794 |
+
#: wp-cache.php:1067
|
795 |
+
msgid "Clear cache on error."
|
796 |
+
msgstr "Svuota la cache in caso di errore."
|
797 |
+
|
798 |
+
#: wp-cache.php:1068
|
799 |
+
msgid "Email the blog admin when checks are made. (useful for testing)"
|
800 |
+
msgstr "Invia una email di notifica all'aministratore del blog per l'avvenuto controllo. (utile per il testing) "
|
801 |
+
|
802 |
+
#: wp-cache.php:1081
|
803 |
+
msgid "Error: GZIP compression is enabled, disable it if you want to enable wp-cache."
|
804 |
+
msgstr "Errore: la compressione GZIP é attiva: disattivala qualora desiderassi attivare wp-cache."
|
805 |
+
|
806 |
+
#: wp-cache.php:1129
|
807 |
+
#: wp-cache.php:1291
|
808 |
+
msgid "Warning"
|
809 |
+
msgstr "Attenzione"
|
810 |
+
|
811 |
+
#: wp-cache.php:1129
|
812 |
+
msgid "GZIP compression is enabled in Wordpress, wp-cache will be bypassed until you disable gzip compression."
|
813 |
+
msgstr "La tua installazione di WordPress ha la compressione GZIP attiva: wp-cache non sarà disponibile sino a quando la compressione gzip non verrà disattivata."
|
814 |
+
|
815 |
+
#: wp-cache.php:1187
|
816 |
+
#: wp-cache.php:1192
|
817 |
+
#: wp-cache.php:1224
|
818 |
+
#: wp-cache.php:1229
|
819 |
+
#: wp-cache.php:1235
|
820 |
+
msgid "Error"
|
821 |
+
msgstr "Errore"
|
822 |
+
|
823 |
+
#: wp-cache.php:1187
|
824 |
+
#, php-format
|
825 |
+
msgid "Your cache directory (<strong>$cache_path</strong>) did not exist and couldn’t be created by the web server. Check %s permissions."
|
826 |
+
msgstr "La tua cartella per la cache (<strong>$cache_path</strong>) non esiste e non può essere creata nel server. Verifica i permessi %s."
|
827 |
+
|
828 |
+
#: wp-cache.php:1192
|
829 |
+
#, php-format
|
830 |
+
msgid "Your cache directory (<strong>%1$s</strong>) or <strong>%2$s</strong> need to be writable for this plugin to work. Double-check it."
|
831 |
+
msgstr "La tua cartella per la cache (<strong>%1$s</strong>) oppure <strong>%2$s</strong> é necessario renderla scrivibile affinché il plugin possa funzionare. Verifica con attenzione."
|
832 |
+
|
833 |
+
#: wp-cache.php:1224
|
834 |
+
#, php-format
|
835 |
+
msgid "Your WP-Cache config file (<strong>%s</strong>) is out of date and not writable by the Web server.Please delete it and refresh this page."
|
836 |
+
msgstr "Il tuo file di configurazione WP-Cache (<strong>%s</strong>) non é aggiornato e non é scrivibile. Cancellalo e ricarica questa pagina."
|
837 |
+
|
838 |
+
#: wp-cache.php:1229
|
839 |
+
#, php-format
|
840 |
+
msgid "Configuration file missing and %1$s directory (<strong>%2$s</strong>) is not writable by the Web server.Check its permissions."
|
841 |
+
msgstr "Non é presente il file di configurazione e la cartella %1$s (<strong>%2$s</strong>) non é scrivibile. Verifica i suoi permessi."
|
842 |
+
|
843 |
+
#: wp-cache.php:1235
|
844 |
+
#, php-format
|
845 |
+
msgid "Sample WP-Cache config file (<strong>%s</strong>) does not exist.Verify you installation."
|
846 |
+
msgstr "Il file campione per la configurazione di WP-Cache (<strong>%s</strong>) non esiste. Effettua una verifica."
|
847 |
+
|
848 |
+
#: wp-cache.php:1291
|
849 |
+
#, php-format
|
850 |
+
msgid "%s/advanced-cache.php</em> does not exist or cannot be updated."
|
851 |
+
msgstr "Il file %s/advanced-cache.php</em> non esiste oppure non può essere aggiornato."
|
852 |
+
|
853 |
+
#: wp-cache.php:1292
|
854 |
+
msgid "1. If it already exists please delete the file first."
|
855 |
+
msgstr "1. Nel caso fosse già esistente, cancellalo."
|
856 |
+
|
857 |
+
#: wp-cache.php:1293
|
858 |
+
#, php-format
|
859 |
+
msgid "2. Make %1$s writable using the chmod command through your ftp or server software. (<em>chmod 777 %1$s</em>) and refresh this page. This is only a temporary measure and you’ll have to make it read only afterwards again. (Change 777 to 755 in the previous command)"
|
860 |
+
msgstr "2. Rendi il file %1$s scrivibile utilizzando il comando chmod via ftp oppure grazie al software del server. (<em>chmod 777 %1$s</em>) e ricarica questa pagina. Questa é una misura temporanea: ad operazione compiuta, rendi il file di sola lettura. (modificando da 777 a 755 il comando precedente)"
|
861 |
+
|
862 |
+
#: wp-cache.php:1294
|
863 |
+
#, php-format
|
864 |
+
msgid "3. Refresh this page to update <em>%s/advanced-cache.php</em>"
|
865 |
+
msgstr "3. Ricarica questa pagina per aggiornare il file <em>%s/advanced-cache.php</em>"
|
866 |
+
|
867 |
+
#: wp-cache.php:1295
|
868 |
+
#, php-format
|
869 |
+
msgid "If that doesn’t work, make sure the file <em>%s/advanced-cache.php</em> doesn’t exist:"
|
870 |
+
msgstr "Nel caso in cui non funzionasse, accertati che il file <em>%s/advanced-cache.php</em> non esista:"
|
871 |
+
|
872 |
+
#: wp-cache.php:1296
|
873 |
+
#, php-format
|
874 |
+
msgid "<li>1. Open <em>%1$s$wp_cache_file</em> in a text editor.</li><li>2. Change the text <em>CACHEHOME</em> to <em>%2$s</em></li><li>3. Save the file and copy it to <em>%3$s</em> and refresh this page.</li>"
|
875 |
+
msgstr "<li>1. Apri <em>%1$s$wp_cache_file</em> con un editor di testo.</li><li>2. Modifica il testo da <em>CACHEHOME</em> a <em>%2$s</em></li><li>3. Salva il file e copialo in <em>%3$s</em> quindi, ricarica questa pagina.</li>"
|
876 |
+
|
877 |
+
#: wp-cache.php:1316
|
878 |
+
msgid "<strong>Error: WP_CACHE is not enabled</strong> in your <code>wp-config.php</code> file and I couldn’t modify it."
|
879 |
+
msgstr "<strong>Errore: WP_CACHE non é attivo</strong> nel tuo file <code>wp-config.php</code> ed il plugin non é in grado di modificarlo."
|
880 |
+
|
881 |
+
#: wp-cache.php:1317
|
882 |
+
#, php-format
|
883 |
+
msgid "Edit <code>%s</code> and add the following line:<br /> <code>define('WP_CACHE', true);</code><br />Otherwise, <strong>WP-Cache will not be executed</strong> by Wordpress core. "
|
884 |
+
msgstr "Modifica <code>%s</code> aggiungendo la seguente linea:<br /> <code>define('WP_CACHE', true);</code><br />Diversamente, <strong>WP-Cache non verrà eseguito</strong> dal core di Wordpress. "
|
885 |
+
|
886 |
+
#: wp-cache.php:1320
|
887 |
+
msgid "<h3>WP_CACHE constant added to wp-config.php</h3><p>If you continue to see this warning message please see point 5 of the <a href=\"http://wordpress.org/extend/plugins/wp-super-cache/faq/\">FAQ</a>. The WP_CACHE line must be moved up."
|
888 |
+
msgstr "<h3>La costante WP_CACHE é stata aggiunta al file wp-config.php</h3><p>Nel caso in cui continuassi a visualizzare questo messaggio consulta il punto 5 delle <a href=\"http://wordpress.org/extend/plugins/wp-super-cache/faq/\">FAQ</a>. La riga WP_CACHE deve essere spostata."
|
889 |
+
|
890 |
+
#: wp-cache.php:1341
|
891 |
+
msgid "Cache Contents"
|
892 |
+
msgstr "Contenuti cache"
|
893 |
+
|
894 |
+
#: wp-cache.php:1360
|
895 |
+
#, php-format
|
896 |
+
msgid "Deleting supercache file: <strong>%s</strong><br />"
|
897 |
+
msgstr "Sto cancellando il file supercache: <strong>%s</strong><br />"
|
898 |
+
|
899 |
+
#: wp-cache.php:1377
|
900 |
+
#, php-format
|
901 |
+
msgid "Deleting wp-cache file: <strong>%s</strong><br />"
|
902 |
+
msgstr "Sto cancellando il file wp-cache: <strong>%s</strong><br />"
|
903 |
+
|
904 |
+
#: wp-cache.php:1441
|
905 |
+
msgid "WP-Cache"
|
906 |
+
msgstr "WP-Cache"
|
907 |
+
|
908 |
+
#: wp-cache.php:1442
|
909 |
+
#: wp-cache.php:1455
|
910 |
+
#, php-format
|
911 |
+
msgid "%s Cached Pages"
|
912 |
+
msgstr "%s pagine nella cache"
|
913 |
+
|
914 |
+
#: wp-cache.php:1443
|
915 |
+
#: wp-cache.php:1457
|
916 |
+
#, php-format
|
917 |
+
msgid "%s Expired Pages"
|
918 |
+
msgstr "%s pagine scadute"
|
919 |
+
|
920 |
+
#: wp-cache.php:1454
|
921 |
+
msgid "WP-Super-Cache"
|
922 |
+
msgstr "WP-Super-Cache"
|
923 |
+
|
924 |
+
#: wp-cache.php:1462
|
925 |
+
msgid "Fresh WP-Cached Files"
|
926 |
+
msgstr "Aggiorna file WP-Cached"
|
927 |
+
|
928 |
+
#: wp-cache.php:1463
|
929 |
+
#: wp-cache.php:1479
|
930 |
+
#: wp-cache.php:1495
|
931 |
+
#: wp-cache.php:1511
|
932 |
+
msgid "URI"
|
933 |
+
msgstr "URI"
|
934 |
+
|
935 |
+
#: wp-cache.php:1463
|
936 |
+
#: wp-cache.php:1479
|
937 |
+
msgid "Key"
|
938 |
+
msgstr "Chiave"
|
939 |
+
|
940 |
+
#: wp-cache.php:1463
|
941 |
+
#: wp-cache.php:1479
|
942 |
+
#: wp-cache.php:1495
|
943 |
+
#: wp-cache.php:1511
|
944 |
+
msgid "Age"
|
945 |
+
msgstr "Età"
|
946 |
+
|
947 |
+
#: wp-cache.php:1463
|
948 |
+
#: wp-cache.php:1479
|
949 |
+
#: wp-cache.php:1495
|
950 |
+
#: wp-cache.php:1511
|
951 |
+
msgid "Delete"
|
952 |
+
msgstr "Cancella"
|
953 |
+
|
954 |
+
#: wp-cache.php:1478
|
955 |
+
msgid "Stale WP-Cached Files"
|
956 |
+
msgstr "Ordina i file WP-Cached"
|
957 |
+
|
958 |
+
#: wp-cache.php:1494
|
959 |
+
msgid "Fresh Super Cached Files"
|
960 |
+
msgstr "Aggiorna file Super Cached"
|
961 |
+
|
962 |
+
#: wp-cache.php:1510
|
963 |
+
msgid "Stale Super Cached Files"
|
964 |
+
msgstr "Scadenza file Super Cached"
|
965 |
+
|
966 |
+
#: wp-cache.php:1526
|
967 |
+
msgid "Hide file list"
|
968 |
+
msgstr "Nascondi la lista dei file"
|
969 |
+
|
970 |
+
#: wp-cache.php:1528
|
971 |
+
msgid "List all cached files"
|
972 |
+
msgstr "Lista di tutti i file presenti nella cache"
|
973 |
+
|
974 |
+
#: wp-cache.php:1534
|
975 |
+
#, php-format
|
976 |
+
msgid "<strong>Garbage Collection</strong><br />Last GC was <strong>%s</strong> minutes ago<br />"
|
977 |
+
msgstr "<strong>Garbage Collection</strong><br />L'ultima GC é stata effettuata <strong>%s</strong> minuti fa<br />"
|
978 |
+
|
979 |
+
#: wp-cache.php:1535
|
980 |
+
#, php-format
|
981 |
+
msgid "Next GC in <strong>%s</strong> minutes"
|
982 |
+
msgstr "La prossima GC verrà effettuata tra <strong>%s</strong> minuti"
|
983 |
+
|
984 |
+
#: wp-cache.php:1538
|
985 |
+
#, php-format
|
986 |
+
msgid "Expired files are files older than %s seconds. They are still used by the plugin and are deleted periodically."
|
987 |
+
msgstr "I file scaduti sono file più vecchi di %s secondi. Sebbene questi file vengano comunque utilizzati dal plugin sappi che sono cancellati periodicamente."
|
988 |
+
|
989 |
+
#: wp-cache.php:1541
|
990 |
+
msgid "Delete Expired"
|
991 |
+
msgstr "Cancella la cache scaduta"
|
992 |
+
|
993 |
+
#: wp-cache.php:1547
|
994 |
+
#: wp-cache.php:1561
|
995 |
+
#: wp-cache.php:1717
|
996 |
+
msgid "Delete Cache"
|
997 |
+
msgstr "Cancella la cache"
|
998 |
+
|
999 |
+
#: wp-cache.php:1561
|
1000 |
+
msgid "Delete Super Cache cached files (opens in new window)"
|
1001 |
+
msgstr "Cancella i file cache di Super Cache (apre in una nuova finestra)"
|
1002 |
+
|
1003 |
+
#: wp-cache.php:1693
|
1004 |
+
#, php-format
|
1005 |
+
msgid "%1$s is Digg proof thanks to caching by %2$s"
|
1006 |
+
msgstr "%1$s é a prova di Digg grazie alla cache fornita da %2$s"
|
1007 |
+
|
1008 |
+
#: wp-cache.php:1726
|
1009 |
+
#, php-format
|
1010 |
+
msgid "WP Super Cache must be configured. Go to <a href=\"%s\">the admin page</a> to enable and configure the plugin."
|
1011 |
+
msgstr "E' necessario configurare WP Super Cache. Vai alla pagina di <a href=\"%s\">amministrazione</a> per attivare e configurare il plugin."
|
1012 |
+
|
1013 |
+
#: wp-cache.php:1732
|
1014 |
+
msgid "Settings"
|
1015 |
+
msgstr "Impostazioni"
|
1016 |
+
|
1017 |
+
#: wp-cache.php:1742
|
1018 |
+
#, php-format
|
1019 |
+
msgid "WP Super Cache is disabled. Please go to the <a href=\"%s\">plugin admin page</a> to enable caching."
|
1020 |
+
msgstr "WP Super Cache non é attivo. Vai alla pagina di <a href=\"%s\">amministrazione del plugin</a> per attivare la funzione di caching."
|
1021 |
+
|
1022 |
+
#: wp-cache.php:1761
|
1023 |
+
#, php-format
|
1024 |
+
msgid "[%s] Front page is gzipped! Please clear cache!"
|
1025 |
+
msgstr "[%s] La front page é stata gzipped! Svuota la cache!"
|
1026 |
+
|
1027 |
+
#: wp-cache.php:1761
|
1028 |
+
#, php-format
|
1029 |
+
msgid "Please visit %s to clear the cache as the front page of your site is now downloading!"
|
1030 |
+
msgstr "Visita %s per svuotare la cache!"
|
1031 |
+
|
1032 |
+
#: wp-cache.php:1764
|
1033 |
+
#, php-format
|
1034 |
+
msgid "[%s] Front page is gzipped! Cache Cleared!"
|
1035 |
+
msgstr "[%s] La front page é stata gzipped! La cache é stata svuotata!"
|
1036 |
+
|
1037 |
+
#: wp-cache.php:1764
|
1038 |
+
#, php-format
|
1039 |
+
msgid "The cache on your blog has been cleared because the front page of your site is now downloading. Please visit %s to verify the cache has been cleared."
|
1040 |
+
msgstr "La cache del blog é stata svuotata perché la front page del tuo sito é sotto downloading. Visita %1$s per controllare se la cache sia stata svuotata."
|
1041 |
+
|
1042 |
+
#: wp-cache.php:1771
|
1043 |
+
#, php-format
|
1044 |
+
msgid "[%s] Front page is not correct! Please clear cache!"
|
1045 |
+
msgstr "[%s] La front page non é corretta! Svuota la cache!"
|
1046 |
+
|
1047 |
+
#: wp-cache.php:1771
|
1048 |
+
#, php-format
|
1049 |
+
msgid "Please visit %1$s to clear the cache as the front page of your site is not correct and missing the text, \"%2$s\"!"
|
1050 |
+
msgstr "Visita %1$s per svuotare la cache nel caso in cui la front page del tuo sito non fosse corretta e mancasse del testo, \"%2$s\"!"
|
1051 |
+
|
1052 |
+
#: wp-cache.php:1774
|
1053 |
+
#, php-format
|
1054 |
+
msgid "[%s] Front page is not correct! Cache Cleared!"
|
1055 |
+
msgstr "[%s] La front page non é corretta! La cache é stata svuotata!"
|
1056 |
+
|
1057 |
+
#: wp-cache.php:1774
|
1058 |
+
#, php-format
|
1059 |
+
msgid "The cache on your blog has been cleared because the front page of your site is missing the text \"%2$s\". Please visit %1$s to verify the cache has been cleared."
|
1060 |
+
msgstr "La cache del blog é stata svuotata perché manca il testo \"%2$s\" nella front page del tuo sito. Visita %1$s per controllare se la cache sia stata svuotata."
|
1061 |
+
|
1062 |
+
#: wp-cache.php:1779
|
1063 |
+
#, php-format
|
1064 |
+
msgid "[%s] Front page check!"
|
1065 |
+
msgstr "[%s] Controllo Front page!"
|
1066 |
+
|
1067 |
+
#: wp-cache.php:1779
|
1068 |
+
#, php-format
|
1069 |
+
msgid "WP Super Cache has checked the front page of your blog. Please visit %s if you would like to disable this."
|
1070 |
+
msgstr "WP Super Cache ha controllato la front page del tuo blog. Visita %s qualora gradissi disattivare la funzione."
|
1071 |
+
|
plugins/badbehaviour.php
CHANGED
@@ -42,31 +42,32 @@ function wp_supercache_badbehaviour_admin() {
|
|
42 |
$bbfile = get_bb_file_loc();
|
43 |
if( !$bbfile ) {
|
44 |
$_POST[ 'cache_badbehaviour' ] = 'Disable';
|
45 |
-
$err = 'Bad Behaviour not found. Please check your install.';
|
46 |
}
|
47 |
-
$cache_badbehaviour = $_POST['cache_badbehaviour'] == 'Disable' ? 0 : 1;
|
48 |
wp_cache_replace_line('^ *\$cache_compression', "\$cache_compression = 0;", $wp_cache_config_file);
|
49 |
wp_cache_replace_line('^ *\$cache_badbehaviour', "\$cache_badbehaviour = $cache_badbehaviour;", $wp_cache_config_file);
|
50 |
wp_cache_replace_line('^ *\$cache_badbehaviour_file', "\$cache_badbehaviour_file = '$bbfile';", $wp_cache_config_file);
|
51 |
}
|
52 |
echo '<form name="wp_supercache_badbehaviour_admin" action="'. $_SERVER["REQUEST_URI"] . '" method="post">';
|
53 |
wp_nonce_field('wp-cache');
|
54 |
-
echo '<strong>Bad Behaviour support is ';
|
55 |
if( $cache_badbehaviour == 0 ) {
|
56 |
-
|
57 |
} else {
|
58 |
-
|
59 |
wp_super_cache_disable();
|
60 |
}
|
61 |
-
echo '
|
|
|
|
|
62 |
if( $cache_badbehaviour == 0 ) {
|
63 |
-
echo '<input type="submit" name="cache_badbehaviour" value="Enable" />';
|
64 |
} else {
|
65 |
-
echo '<input type="submit" name="cache_badbehaviour" value="Disable" />';
|
66 |
}
|
67 |
echo "</form>\n";
|
68 |
if( $err )
|
69 |
-
echo "<p><strong>Warning
|
70 |
|
71 |
}
|
72 |
add_cacheaction( 'cache_admin_page', 'wp_supercache_badbehaviour_admin' );
|
42 |
$bbfile = get_bb_file_loc();
|
43 |
if( !$bbfile ) {
|
44 |
$_POST[ 'cache_badbehaviour' ] = 'Disable';
|
45 |
+
$err = __( 'Bad Behaviour not found. Please check your install.', 'wp-super-cache' );
|
46 |
}
|
47 |
+
$cache_badbehaviour = $_POST['cache_badbehaviour'] == __( 'Disable', 'wp-super-cache' ) ? 0 : 1;
|
48 |
wp_cache_replace_line('^ *\$cache_compression', "\$cache_compression = 0;", $wp_cache_config_file);
|
49 |
wp_cache_replace_line('^ *\$cache_badbehaviour', "\$cache_badbehaviour = $cache_badbehaviour;", $wp_cache_config_file);
|
50 |
wp_cache_replace_line('^ *\$cache_badbehaviour_file', "\$cache_badbehaviour_file = '$bbfile';", $wp_cache_config_file);
|
51 |
}
|
52 |
echo '<form name="wp_supercache_badbehaviour_admin" action="'. $_SERVER["REQUEST_URI"] . '" method="post">';
|
53 |
wp_nonce_field('wp-cache');
|
|
|
54 |
if( $cache_badbehaviour == 0 ) {
|
55 |
+
$bb_status = __( 'disabled', 'wp-super-cache' );
|
56 |
} else {
|
57 |
+
$bb_status = __( 'enabled', 'wp-super-cache' );
|
58 |
wp_super_cache_disable();
|
59 |
}
|
60 |
+
echo '<strong>' . sprintf( __( 'Bad Behaviour support is %s', 'wp-super-cache' ), $bb_status );
|
61 |
+
echo '.</strong>';
|
62 |
+
printf( __( '(Only half-on caching supported, disabled compression and requires <a href="http://www.bad-behavior.ioerror.us/">Bad Behavior</a> in "%s/plugins/bad-behavior/") ', 'wp-super-cache' ), WP_CONTENT_DIR );
|
63 |
if( $cache_badbehaviour == 0 ) {
|
64 |
+
echo '<input type="submit" name="cache_badbehaviour" value="' . __( 'Enable', 'wp-super-cache' ) . '" />';
|
65 |
} else {
|
66 |
+
echo '<input type="submit" name="cache_badbehaviour" value="' . __( 'Disable', 'wp-super-cache' ) . '" />';
|
67 |
}
|
68 |
echo "</form>\n";
|
69 |
if( $err )
|
70 |
+
echo "<p><strong>" . __( 'Warning!', 'wp-super-cache' ) . "</strong> $err</p>";
|
71 |
|
72 |
}
|
73 |
add_cacheaction( 'cache_admin_page', 'wp_supercache_badbehaviour_admin' );
|
plugins/searchengine.php
CHANGED
@@ -58,22 +58,22 @@ function wp_supercache_searchengine_admin() {
|
|
58 |
$cache_no_adverts_for_friends = $cache_no_adverts_for_friends == '' ? 'no' : $cache_no_adverts_for_friends;
|
59 |
|
60 |
if(isset($_POST['cache_no_adverts_for_friends']) && $valid_nonce) {
|
61 |
-
$cache_no_adverts_for_friends = $_POST['cache_no_adverts_for_friends'] == 'Disable' ? 'no' : 'yes';
|
62 |
wp_cache_replace_line('^ *\$cache_no_adverts_for_friends', "\$cache_no_adverts_for_friends = '$cache_no_adverts_for_friends';", $wp_cache_config_file);
|
63 |
}
|
64 |
echo '<form name="wp_supercache_searchengine_admin" action="'. $_SERVER["REQUEST_URI"] . '" method="post">';
|
65 |
wp_nonce_field('wp-cache');
|
66 |
-
echo '<strong><a href="http://ocaoimh.ie/no-adverts-for-friends/">No Adverts for Friends</a> plugin is ';
|
67 |
if( $cache_no_adverts_for_friends == 'no' ) {
|
68 |
-
|
69 |
} else {
|
70 |
-
|
71 |
}
|
72 |
-
echo '
|
|
|
73 |
if( $cache_no_adverts_for_friends == 'no' ) {
|
74 |
-
echo '<input type="submit" name="cache_no_adverts_for_friends" value="Enable" />';
|
75 |
} else {
|
76 |
-
echo '<input type="submit" name="cache_no_adverts_for_friends" value="Disable" />';
|
77 |
}
|
78 |
echo "</form>\n";
|
79 |
|
58 |
$cache_no_adverts_for_friends = $cache_no_adverts_for_friends == '' ? 'no' : $cache_no_adverts_for_friends;
|
59 |
|
60 |
if(isset($_POST['cache_no_adverts_for_friends']) && $valid_nonce) {
|
61 |
+
$cache_no_adverts_for_friends = $_POST['cache_no_adverts_for_friends'] == __( 'Disable', 'wp-super-cache' ) ? 'no' : 'yes';
|
62 |
wp_cache_replace_line('^ *\$cache_no_adverts_for_friends', "\$cache_no_adverts_for_friends = '$cache_no_adverts_for_friends';", $wp_cache_config_file);
|
63 |
}
|
64 |
echo '<form name="wp_supercache_searchengine_admin" action="'. $_SERVER["REQUEST_URI"] . '" method="post">';
|
65 |
wp_nonce_field('wp-cache');
|
|
|
66 |
if( $cache_no_adverts_for_friends == 'no' ) {
|
67 |
+
$status = __( 'disabled', 'wp-super-cache' );
|
68 |
} else {
|
69 |
+
$status = __( 'enabled', 'wp-super-cache' );
|
70 |
}
|
71 |
+
echo '<strong>' . sprintf( __( '<a href="http://ocaoimh.ie/no-adverts-for-friends/">No Adverts for Friends</a> plugin is %s', 'wp-super-cache' ), $status );
|
72 |
+
echo '.</strong> ' . __( '(requires <a href="http://ocaoimh.ie/no-adverts-for-friends/">friendsadverts.php</a> too) ', 'wp-super-cache' );
|
73 |
if( $cache_no_adverts_for_friends == 'no' ) {
|
74 |
+
echo '<input type="submit" name="cache_no_adverts_for_friends" value="' . __( 'Enable', 'wp-super-cache' ) . '" />';
|
75 |
} else {
|
76 |
+
echo '<input type="submit" name="cache_no_adverts_for_friends" value="' . __( 'Disable', 'wp-super-cache' ) . '" />';
|
77 |
}
|
78 |
echo "</form>\n";
|
79 |
|
readme.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
=== WP Super Cache ===
|
2 |
Contributors: donncha
|
3 |
Tags: performance,caching,wp-cache,wp-super-cache,cache
|
4 |
-
Tested up to: 2.8.
|
5 |
-
Stable tag: 0.9.
|
6 |
Requires at least: 2.6
|
7 |
Donate link: http://ocaoimh.ie/gad/
|
8 |
|
@@ -28,6 +28,19 @@ The [changelog](http://svn.wp-plugins.org/wp-super-cache/trunk/Changelog.txt) is
|
|
28 |
|
29 |
== Changelog ==
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
= 0.9.7 =
|
32 |
* Fixed problem with blogs in folders.
|
33 |
* Added cache file listing and delete links to admin page.
|
@@ -259,6 +272,9 @@ A line like "127.0.0.1 localhost localhost.localdomain" is ok.
|
|
259 |
17. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don't use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
|
260 |
18. The error message, "WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!" appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? If it is not the caching engine will not load.
|
261 |
19. Caching doesn't work. The timestamp on my blog keeps changing when I reload. Check that the path in your .htaccess rules matches where the supercache directory is. You may have to hardcode it. Or use the plugin in Half-On mode.
|
|
|
|
|
|
|
262 |
|
263 |
== Custom Caching ==
|
264 |
It is now possible to hook into the caching process using the add_cacheaction() function.
|
@@ -285,3 +301,7 @@ Updates to the plugin will be posted here, to [Holy Shmoly!](http://ocaoimh.ie/)
|
|
285 |
I would sincerely like to thank [John Pozadzides](http://onemansblog.com/) for giving me the idea for this, for writing the "How it works" section and for testing the plugin through 2 front page appearances on digg.com
|
286 |
|
287 |
Thanks to James Farmer and Andrew Billits of [Edu Blogs](http://edublogs.org/) fame who helped me make this more WordPress MU friendly.
|
|
|
|
|
|
|
|
1 |
=== WP Super Cache ===
|
2 |
Contributors: donncha
|
3 |
Tags: performance,caching,wp-cache,wp-super-cache,cache
|
4 |
+
Tested up to: 2.8.6
|
5 |
+
Stable tag: 0.9.8
|
6 |
Requires at least: 2.6
|
7 |
Donate link: http://ocaoimh.ie/gad/
|
8 |
|
28 |
|
29 |
== Changelog ==
|
30 |
|
31 |
+
= 0.9.8 =
|
32 |
+
* Added Spanish translation by Omi.
|
33 |
+
* Added Italian translation by Gianni Diurno.
|
34 |
+
* Addded advanced debug code to check front page for category problem. Enable by setting $wp_super_cache_advanced_debug to 1 in the config file.
|
35 |
+
* Fixed wordpress vs wordpress_logged_in cookie mismatch in cookie checking function.
|
36 |
+
* Correctly check if WP_CACHE is set or not. PHP is weird.
|
37 |
+
* Added wp_cache_clear_cache() to clear out cache directory.
|
38 |
+
* Only show logged in message when debugging enabled.
|
39 |
+
* Added troubleshooting point 20. PHP vs Apache user.
|
40 |
+
* Fixed problem deleting cache file.
|
41 |
+
* Don't delete cache files when moderated comments are deleted.
|
42 |
+
|
43 |
+
|
44 |
= 0.9.7 =
|
45 |
* Fixed problem with blogs in folders.
|
46 |
* Added cache file listing and delete links to admin page.
|
272 |
17. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don't use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
|
273 |
18. The error message, "WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!" appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? If it is not the caching engine will not load.
|
274 |
19. Caching doesn't work. The timestamp on my blog keeps changing when I reload. Check that the path in your .htaccess rules matches where the supercache directory is. You may have to hardcode it. Or use the plugin in Half-On mode.
|
275 |
+
20. If supercache cache files are generated but not served, check the permissions on all your wp-content/cache/supercache folders (and each of wp-content cache and supercache folders) and wp-content/cache/.htaccess. If your PHP runs as a different user to Apache and permissions are strict Apache may not be able to read the PHP generated cache files. To fix you must add the following line to your wp-config.php (Add it above the WP_CACHE define.) Then clear your cache.
|
276 |
+
|
277 |
+
`umask( 0022 );`
|
278 |
|
279 |
== Custom Caching ==
|
280 |
It is now possible to hook into the caching process using the add_cacheaction() function.
|
301 |
I would sincerely like to thank [John Pozadzides](http://onemansblog.com/) for giving me the idea for this, for writing the "How it works" section and for testing the plugin through 2 front page appearances on digg.com
|
302 |
|
303 |
Thanks to James Farmer and Andrew Billits of [Edu Blogs](http://edublogs.org/) fame who helped me make this more WordPress MU friendly.
|
304 |
+
|
305 |
+
Translators who did a great job converting the text of the plugin to their native language. Thank you!
|
306 |
+
[Gianni Diurno](http://gidibao.net/) (Italian)
|
307 |
+
[Omi](http://equipajedemano.info/) (Spanish)
|
wp-cache-config-sample.php
CHANGED
@@ -70,4 +70,10 @@ $wp_cache_plugins_dir = WPCACHEHOME . 'plugins';
|
|
70 |
// set to 1 to do garbage collection during normal process shutdown instead of wp-cron
|
71 |
$wp_cache_shutdown_gc = 0;
|
72 |
$wp_super_cache_late_init = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
?>
|
70 |
// set to 1 to do garbage collection during normal process shutdown instead of wp-cron
|
71 |
$wp_cache_shutdown_gc = 0;
|
72 |
$wp_super_cache_late_init = 0;
|
73 |
+
|
74 |
+
// uncomment the next line to enable advanced debugging features
|
75 |
+
//$wp_super_cache_advanced_debug = 1;
|
76 |
+
$wp_super_cache_front_page_check = 0;
|
77 |
+
$wp_super_cache_front_page_clear = 0;
|
78 |
+
$wp_super_cache_front_page_text = '';
|
79 |
?>
|
wp-cache-phase1.php
CHANGED
@@ -91,7 +91,12 @@ function wp_cache_serve_cache_file() {
|
|
91 |
|
92 |
extract( wp_super_cache_init() );
|
93 |
|
94 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
95 |
if ( isset( $wp_super_cache_debug ) && $wp_super_cache_debug ) wp_cache_debug( "wp-cache file exists", 5 );
|
96 |
if ( !( $meta = unserialize( @file_get_contents( $meta_pathname) ) ) ) {
|
97 |
if ( isset( $wp_super_cache_debug ) && $wp_super_cache_debug ) wp_cache_debug( "couldn't load wp-cache meta file", 5 );
|
@@ -126,7 +131,7 @@ function wp_cache_serve_cache_file() {
|
|
126 |
if ( isset( $wp_super_cache_debug ) && $wp_super_cache_debug ) wp_cache_debug( "exit request", 5 );
|
127 |
die();
|
128 |
} else {
|
129 |
-
if ( isset( $wp_super_cache_debug ) && $wp_super_cache_debug ) wp_cache_debug( "No wp-cache file exists
|
130 |
}
|
131 |
}
|
132 |
|
91 |
|
92 |
extract( wp_super_cache_init() );
|
93 |
|
94 |
+
if ( wp_cache_user_agent_is_rejected() ) {
|
95 |
+
if ( isset( $wp_super_cache_debug ) && $wp_super_cache_debug ) wp_cache_debug( "No wp-cache file served as user agent rejected.", 5 );
|
96 |
+
return false;
|
97 |
+
}
|
98 |
+
|
99 |
+
if ( file_exists( $cache_file ) ) {
|
100 |
if ( isset( $wp_super_cache_debug ) && $wp_super_cache_debug ) wp_cache_debug( "wp-cache file exists", 5 );
|
101 |
if ( !( $meta = unserialize( @file_get_contents( $meta_pathname) ) ) ) {
|
102 |
if ( isset( $wp_super_cache_debug ) && $wp_super_cache_debug ) wp_cache_debug( "couldn't load wp-cache meta file", 5 );
|
131 |
if ( isset( $wp_super_cache_debug ) && $wp_super_cache_debug ) wp_cache_debug( "exit request", 5 );
|
132 |
die();
|
133 |
} else {
|
134 |
+
if ( isset( $wp_super_cache_debug ) && $wp_super_cache_debug ) wp_cache_debug( "No wp-cache file exists. Must generate a new one.", 5 );
|
135 |
}
|
136 |
}
|
137 |
|
wp-cache-phase2.php
CHANGED
@@ -21,9 +21,8 @@ function wp_cache_phase2() {
|
|
21 |
add_action('pingback_post', 'wp_cache_get_postid_from_comment', 99);
|
22 |
add_action('comment_post', 'wp_cache_get_postid_from_comment', 99);
|
23 |
add_action('edit_comment', 'wp_cache_get_postid_from_comment', 99);
|
24 |
-
add_action('wp_set_comment_status', 'wp_cache_get_postid_from_comment', 99);
|
25 |
// No post_id is available
|
26 |
-
add_action('delete_comment', 'wp_cache_no_postid', 99);
|
27 |
add_action('switch_theme', 'wp_cache_no_postid', 99);
|
28 |
add_action('edit_user_profile_update', 'wp_cache_no_postid', 99);
|
29 |
|
@@ -53,8 +52,10 @@ function wp_cache_phase2() {
|
|
53 |
}
|
54 |
|
55 |
if ( $wp_cache_not_logged_in && is_user_logged_in() && !is_feed() && !is_admin() ) {
|
56 |
-
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] )
|
57 |
-
|
|
|
|
|
58 |
return false;
|
59 |
}
|
60 |
|
@@ -336,155 +337,155 @@ function wp_cache_get_ob(&$buffer) {
|
|
336 |
return $buffer;
|
337 |
}
|
338 |
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
|
346 |
-
|
347 |
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
}
|
363 |
}
|
364 |
}
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
@fclose( $fr );
|
381 |
@unlink( $tmp_wpcache_filename );
|
|
|
|
|
382 |
return $buffer;
|
383 |
-
} elseif( $cache_compression ) {
|
384 |
-
$gz = @fopen( $tmp_cache_filename . ".gz", 'w');
|
385 |
-
if (!$gz) {
|
386 |
-
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Error. Supercache could not write to " . str_replace( ABSPATH, '', $tmp_cache_filename ) . ".gz", 1 );
|
387 |
-
$buffer .= "<!-- File not cached! Super Cache Couldn't write to: " . str_replace( ABSPATH, '', $tmp_cache_filename ) . ".gz -->\n";
|
388 |
-
@fclose( $fr );
|
389 |
-
@unlink( $tmp_wpcache_filename );
|
390 |
-
@fclose( $fr2 );
|
391 |
-
@unlink( $tmp_cache_filename );
|
392 |
-
return $buffer;
|
393 |
-
}
|
394 |
}
|
395 |
}
|
396 |
}
|
397 |
}
|
|
|
398 |
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
}
|
425 |
-
if ($wp_cache_gzip_encoding) {
|
426 |
-
$wp_cache_meta[ 'headers' ][ 'Content-Encoding' ] = 'Content-Encoding: ' . $wp_cache_gzip_encoding;
|
427 |
-
$wp_cache_meta[ 'headers' ][ 'Vary' ] = 'Vary: Accept-Encoding, Cookie';
|
428 |
-
// Return uncompressed data & store compressed for later use
|
429 |
-
if( $fr ) {
|
430 |
-
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing gzipped buffer to wp-cache cache file.", 5 );
|
431 |
-
fputs($fr, $gzdata);
|
432 |
-
}
|
433 |
-
} else { // no compression
|
434 |
-
$wp_cache_meta[ 'headers' ][ 'Vary' ] = 'Vary: Cookie';
|
435 |
-
if( $fr ) {
|
436 |
-
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing non-gzipped buffer to wp-cache cache file.", 5 );
|
437 |
-
fputs($fr, $buffer);
|
438 |
-
}
|
439 |
-
}
|
440 |
-
if( $fr2 ) {
|
441 |
-
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing non-gzipped buffer to supercache file.", 5 );
|
442 |
-
fputs($fr2, $buffer . '<!-- super cache -->' );
|
443 |
-
}
|
444 |
-
if( $gz ) {
|
445 |
-
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing gzipped buffer to supercache file.", 5 );
|
446 |
-
fwrite($gz, $gzdata );
|
447 |
-
}
|
448 |
-
$buffer .= $log;
|
449 |
}
|
450 |
-
$
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
|
|
|
|
|
|
|
|
|
|
458 |
}
|
459 |
-
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Renamed temp wp-cache file to {$blog_cache_dir}$cache_filename", 5 );
|
460 |
-
$added_cache = 1;
|
461 |
}
|
462 |
if( $fr2 ) {
|
463 |
-
|
464 |
-
|
465 |
-
@unlink( $cache_fname );
|
466 |
-
@rename( $tmp_cache_filename, $cache_fname );
|
467 |
-
}
|
468 |
-
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Renamed temp supercache file to $cache_fname", 5 );
|
469 |
-
$added_cache = 1;
|
470 |
}
|
471 |
if( $gz ) {
|
472 |
-
|
473 |
-
|
474 |
-
@unlink( $cache_fname . '.gz' );
|
475 |
-
@rename( $tmp_cache_filename . '.gz', $cache_fname . '.gz' );
|
476 |
-
}
|
477 |
-
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Renamed temp supercache gz file to {$cache_fname}.gz", 5 );
|
478 |
-
$added_cache = 1;
|
479 |
}
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
|
|
|
|
|
|
487 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
wp_cache_writers_exit();
|
489 |
if ( !headers_sent() && isset( $wp_cache_gzip_first ) && 1 == $wp_cache_gzip_first && $wp_cache_gzip_encoding && $gzdata) {
|
490 |
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing gzip content headers. Sending buffer to browser", 5 );
|
@@ -713,20 +714,33 @@ function wp_cache_no_postid($id) {
|
|
713 |
return wp_cache_post_change(wp_cache_post_id());
|
714 |
}
|
715 |
|
716 |
-
function wp_cache_get_postid_from_comment($comment_id) {
|
717 |
global $super_cache_enabled, $wp_cache_request_uri;
|
718 |
$comment = get_comment($comment_id, ARRAY_A);
|
|
|
|
|
|
|
|
|
719 |
$postid = $comment['comment_post_ID'];
|
720 |
// Do nothing if comment is not moderated
|
721 |
// http://ocaoimh.ie/2006/12/05/caching-wordpress-with-wp-cache-in-a-spam-filled-world
|
722 |
-
if( !preg_match('/wp-admin\//', $wp_cache_request_uri) )
|
723 |
-
if( $comment['comment_approved'] == '
|
|
|
|
|
|
|
724 |
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Spam comment. Don't delete any cache files.", 4 );
|
725 |
return $postid;
|
726 |
} elseif( $comment['comment_approved'] == '0' ) {
|
727 |
-
if (
|
728 |
-
|
|
|
|
|
|
|
|
|
|
|
729 |
}
|
|
|
730 |
// We must check it up again due to WP bugs calling two different actions
|
731 |
// for delete, for example both wp_set_comment_status and delete_comment
|
732 |
// are called when deleting a comment
|
@@ -739,6 +753,13 @@ function wp_cache_get_postid_from_comment($comment_id) {
|
|
739 |
}
|
740 |
}
|
741 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
742 |
function wp_cache_post_edit($post_id) {
|
743 |
global $wp_cache_clear_on_post_edit, $cache_path, $blog_cache_dir;
|
744 |
if( $wp_cache_clear_on_post_edit ) {
|
21 |
add_action('pingback_post', 'wp_cache_get_postid_from_comment', 99);
|
22 |
add_action('comment_post', 'wp_cache_get_postid_from_comment', 99);
|
23 |
add_action('edit_comment', 'wp_cache_get_postid_from_comment', 99);
|
24 |
+
add_action('wp_set_comment_status', 'wp_cache_get_postid_from_comment', 99, 2);
|
25 |
// No post_id is available
|
|
|
26 |
add_action('switch_theme', 'wp_cache_no_postid', 99);
|
27 |
add_action('edit_user_profile_update', 'wp_cache_no_postid', 99);
|
28 |
|
52 |
}
|
53 |
|
54 |
if ( $wp_cache_not_logged_in && is_user_logged_in() && !is_feed() && !is_admin() ) {
|
55 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) {
|
56 |
+
wp_cache_debug( 'not caching for logged in user', 5 );
|
57 |
+
register_shutdown_function( 'wpcache_logged_in_message' );
|
58 |
+
}
|
59 |
return false;
|
60 |
}
|
61 |
|
337 |
return $buffer;
|
338 |
}
|
339 |
|
340 |
+
$dir = get_current_url_supercache_dir();
|
341 |
+
$supercachedir = $cache_path . 'supercache/' . preg_replace('/:.*$/', '', $_SERVER["HTTP_HOST"]);
|
342 |
+
if( !empty( $_GET ) || is_feed() || ( $super_cache_enabled == true && is_dir( substr( $supercachedir, 0, -1 ) . '.disabled' ) ) ) {
|
343 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Supercache disabled: GET or feed detected or disabled by config.", 2 );
|
344 |
+
$super_cache_enabled = false;
|
345 |
+
}
|
346 |
|
347 |
+
$tmp_wpcache_filename = $cache_path . uniqid( mt_rand(), true ) . '.tmp';
|
348 |
|
349 |
+
// Don't create wp-cache files for anon users
|
350 |
+
$supercacheonly = false;
|
351 |
+
if( $super_cache_enabled && wp_cache_get_cookies_values() == '' ) {
|
352 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Anonymous user detected. Only creating Supercache file.", 3 );
|
353 |
+
$supercacheonly = true;
|
354 |
+
}
|
355 |
|
356 |
+
if( !$supercacheonly ) {
|
357 |
+
if ( !@file_exists( $blog_cache_dir . $cache_filename ) || ( @file_exists( $blog_cache_dir . $cache_filename ) && ( time() - @filemtime( $blog_cache_dir . $cache_filename ) ) > 5 ) ) {
|
358 |
+
$fr = @fopen($tmp_wpcache_filename, 'w');
|
359 |
+
if (!$fr) {
|
360 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Error. Supercache could not write to " . str_replace( ABSPATH, '', $cache_path ) . $cache_filename, 1 );
|
361 |
+
$buffer .= "<!-- File not cached! Super Cache Couldn't write to: " . str_replace( ABSPATH, '', $cache_path ) . $cache_filename . " -->\n";
|
362 |
+
return $buffer;
|
|
|
363 |
}
|
364 |
}
|
365 |
+
}
|
366 |
+
if( $super_cache_enabled ) {
|
367 |
+
$user_info = wp_cache_get_cookies_values();
|
368 |
+
$do_cache = apply_filters( 'do_createsupercache', $user_info );
|
369 |
+
if( $user_info == '' || $do_cache === true ) {
|
370 |
+
|
371 |
+
if( @is_dir( $dir ) == false )
|
372 |
+
@wp_mkdir_p( $dir );
|
373 |
+
|
374 |
+
$cache_fname = "{$dir}index.html";
|
375 |
+
$tmp_cache_filename = $dir . uniqid( mt_rand(), true ) . '.tmp';
|
376 |
+
if ( !@file_exists( $cache_fname ) || ( @file_exists( $cache_fname ) && ( time() - @filemtime( $cache_fname ) ) > 5 ) ) {
|
377 |
+
$fr2 = @fopen( $tmp_cache_filename, 'w' );
|
378 |
+
if (!$fr2) {
|
379 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Error. Supercache could not write to " . str_replace( ABSPATH, '', $tmp_cache_filename ), 1 );
|
380 |
+
$buffer .= "<!-- File not cached! Super Cache Couldn't write to: " . str_replace( ABSPATH, '', $tmp_cache_filename ) . " -->\n";
|
381 |
+
@fclose( $fr );
|
382 |
+
@unlink( $tmp_wpcache_filename );
|
383 |
+
return $buffer;
|
384 |
+
} elseif( $cache_compression ) {
|
385 |
+
$gz = @fopen( $tmp_cache_filename . ".gz", 'w');
|
386 |
+
if (!$gz) {
|
387 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Error. Supercache could not write to " . str_replace( ABSPATH, '', $tmp_cache_filename ) . ".gz", 1 );
|
388 |
+
$buffer .= "<!-- File not cached! Super Cache Couldn't write to: " . str_replace( ABSPATH, '', $tmp_cache_filename ) . ".gz -->\n";
|
389 |
@fclose( $fr );
|
390 |
@unlink( $tmp_wpcache_filename );
|
391 |
+
@fclose( $fr2 );
|
392 |
+
@unlink( $tmp_cache_filename );
|
393 |
return $buffer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
}
|
395 |
}
|
396 |
}
|
397 |
}
|
398 |
+
}
|
399 |
|
400 |
+
if (preg_match('/<!--mclude|<!--mfunc/', $buffer)) { //Dynamic content
|
401 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Dynamic content found in buffer.", 4 );
|
402 |
+
$store = preg_replace('|<!--mclude (.*?)-->(.*?)<!--/mclude-->|is',
|
403 |
+
"<!--mclude-->\n<?php include_once('" . ABSPATH . "$1'); ?>\n<!--/mclude-->", $buffer);
|
404 |
+
$store = preg_replace('|<!--mfunc (.*?)-->(.*?)<!--/mfunc-->|is',
|
405 |
+
"<!--mfunc-->\n<?php $1 ;?>\n<!--/mfunc-->", $store);
|
406 |
+
$store = apply_filters( 'wpsupercache_buffer', $store );
|
407 |
+
$wp_cache_meta[ 'dynamic' ] = true;
|
408 |
+
/* Clean function calls in tag */
|
409 |
+
$buffer = preg_replace('|<!--mclude (.*?)-->|is', '<!--mclude-->', $buffer);
|
410 |
+
$buffer = preg_replace('|<!--mfunc (.*?)-->|is', '<!--mfunc-->', $buffer);
|
411 |
+
if( $fr )
|
412 |
+
fputs($fr, $store);
|
413 |
+
if( $fr2 )
|
414 |
+
fputs($fr2, $store . '<!-- super cache -->' );
|
415 |
+
if( $gz )
|
416 |
+
fputs($gz, gzencode( $store . '<!-- super cache gz -->', 1, FORCE_GZIP ) );
|
417 |
+
} else {
|
418 |
+
$buffer = apply_filters( 'wpsupercache_buffer', $buffer );
|
419 |
+
$buffer .= "<!-- Cached page generated by WP-Super-Cache on " . gmdate('Y-m-d H:i:s', (time() + ( $wp_cache_gmt_offset * 3600))) . " -->\n";
|
420 |
|
421 |
+
if( $gz || $wp_cache_gzip_encoding ) {
|
422 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Gzipping buffer.", 5 );
|
423 |
+
$gzdata = gzencode( $buffer . "<!-- Compression = gzip -->", 3, FORCE_GZIP );
|
424 |
+
$gzsize = strlen($gzdata);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
}
|
426 |
+
if ($wp_cache_gzip_encoding) {
|
427 |
+
$wp_cache_meta[ 'headers' ][ 'Content-Encoding' ] = 'Content-Encoding: ' . $wp_cache_gzip_encoding;
|
428 |
+
$wp_cache_meta[ 'headers' ][ 'Vary' ] = 'Vary: Accept-Encoding, Cookie';
|
429 |
+
// Return uncompressed data & store compressed for later use
|
430 |
+
if( $fr ) {
|
431 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing gzipped buffer to wp-cache cache file.", 5 );
|
432 |
+
fputs($fr, $gzdata);
|
433 |
+
}
|
434 |
+
} else { // no compression
|
435 |
+
$wp_cache_meta[ 'headers' ][ 'Vary' ] = 'Vary: Cookie';
|
436 |
+
if( $fr ) {
|
437 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing non-gzipped buffer to wp-cache cache file.", 5 );
|
438 |
+
fputs($fr, $buffer);
|
439 |
}
|
|
|
|
|
440 |
}
|
441 |
if( $fr2 ) {
|
442 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing non-gzipped buffer to supercache file.", 5 );
|
443 |
+
fputs($fr2, $buffer . '<!-- super cache -->' );
|
|
|
|
|
|
|
|
|
|
|
444 |
}
|
445 |
if( $gz ) {
|
446 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing gzipped buffer to supercache file.", 5 );
|
447 |
+
fwrite($gz, $gzdata );
|
|
|
|
|
|
|
|
|
|
|
448 |
}
|
449 |
+
$buffer .= $log;
|
450 |
+
}
|
451 |
+
$new_cache = true;
|
452 |
+
$added_cache = 0;
|
453 |
+
if( $fr ) {
|
454 |
+
$supercacheonly = false;
|
455 |
+
fclose($fr);
|
456 |
+
if( !rename( $tmp_wpcache_filename, $blog_cache_dir . $cache_filename ) ) {
|
457 |
+
unlink( $blog_cache_dir . $cache_filename );
|
458 |
+
rename( $tmp_wpcache_filename, $blog_cache_dir . $cache_filename );
|
459 |
}
|
460 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Renamed temp wp-cache file to {$blog_cache_dir}$cache_filename", 5 );
|
461 |
+
$added_cache = 1;
|
462 |
+
}
|
463 |
+
if( $fr2 ) {
|
464 |
+
fclose($fr2);
|
465 |
+
if( !@rename( $tmp_cache_filename, $cache_fname ) ) {
|
466 |
+
@unlink( $cache_fname );
|
467 |
+
@rename( $tmp_cache_filename, $cache_fname );
|
468 |
+
}
|
469 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Renamed temp supercache file to $cache_fname", 5 );
|
470 |
+
$added_cache = 1;
|
471 |
+
}
|
472 |
+
if( $gz ) {
|
473 |
+
fclose($gz);
|
474 |
+
if( !@rename( $tmp_cache_filename . '.gz', $cache_fname . '.gz' ) ) {
|
475 |
+
@unlink( $cache_fname . '.gz' );
|
476 |
+
@rename( $tmp_cache_filename . '.gz', $cache_fname . '.gz' );
|
477 |
+
}
|
478 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Renamed temp supercache gz file to {$cache_fname}.gz", 5 );
|
479 |
+
$added_cache = 1;
|
480 |
+
}
|
481 |
+
if ( $added_cache && isset( $wp_supercache_cache_list ) && $wp_supercache_cache_list ) {
|
482 |
+
update_option( 'wpsupercache_count', ( get_option( 'wpsupercache_count' ) + 1 ) );
|
483 |
+
$last_urls = (array)get_option( 'supercache_last_cached' );
|
484 |
+
if ( count( $last_urls ) >= 10 )
|
485 |
+
$last_urls = array_slice( $last_urls, 1, 9 );
|
486 |
+
$last_urls[] = array( 'url' => $_SERVER[ 'REQUEST_URI' ], 'date' => date( 'Y-m-d H:i:s' ) );
|
487 |
+
update_option( 'supercache_last_cached', $last_urls );
|
488 |
+
}
|
489 |
wp_cache_writers_exit();
|
490 |
if ( !headers_sent() && isset( $wp_cache_gzip_first ) && 1 == $wp_cache_gzip_first && $wp_cache_gzip_encoding && $gzdata) {
|
491 |
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Writing gzip content headers. Sending buffer to browser", 5 );
|
714 |
return wp_cache_post_change(wp_cache_post_id());
|
715 |
}
|
716 |
|
717 |
+
function wp_cache_get_postid_from_comment( $comment_id, $status = 'NA' ) {
|
718 |
global $super_cache_enabled, $wp_cache_request_uri;
|
719 |
$comment = get_comment($comment_id, ARRAY_A);
|
720 |
+
if ( $status != 'NA' ) {
|
721 |
+
$comment[ 'old_comment_approved' ] = $comment[ 'comment_approved' ];
|
722 |
+
$comment[ 'comment_approved' ] = $status;
|
723 |
+
}
|
724 |
$postid = $comment['comment_post_ID'];
|
725 |
// Do nothing if comment is not moderated
|
726 |
// http://ocaoimh.ie/2006/12/05/caching-wordpress-with-wp-cache-in-a-spam-filled-world
|
727 |
+
if ( !preg_match('/wp-admin\//', $wp_cache_request_uri) ) {
|
728 |
+
if ( $comment['comment_approved'] == 'delete' && ( isset( $comment[ 'old_comment_approved' ] ) && $comment[ 'old_comment_approved' ] == 0 ) ) { // do nothing if moderated comments are deleted
|
729 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Moderated comment deleted. Don't delete any cache files.", 4 );
|
730 |
+
return $postid;
|
731 |
+
} elseif ( $comment['comment_approved'] == 'spam' ) {
|
732 |
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Spam comment. Don't delete any cache files.", 4 );
|
733 |
return $postid;
|
734 |
} elseif( $comment['comment_approved'] == '0' ) {
|
735 |
+
if ( $comment[ 'content_type' ] == '' ) {
|
736 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Moderated comment. Don't delete supercache file until comment approved.", 4 );
|
737 |
+
$super_cache_enabled = 0; // don't remove the super cache static file until comment is approved
|
738 |
+
} else {
|
739 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( "Moderated ping or trackback. Not deleting cache files..", 4 );
|
740 |
+
return $postid;
|
741 |
+
}
|
742 |
}
|
743 |
+
}
|
744 |
// We must check it up again due to WP bugs calling two different actions
|
745 |
// for delete, for example both wp_set_comment_status and delete_comment
|
746 |
// are called when deleting a comment
|
753 |
}
|
754 |
}
|
755 |
|
756 |
+
/* Clear out the cache directory. */
|
757 |
+
function wp_cache_clear_cache() {
|
758 |
+
global $cache_path;
|
759 |
+
prune_super_cache( $cache_path . 'supercache/', true );
|
760 |
+
prune_super_cache( $cache_path, true );
|
761 |
+
}
|
762 |
+
|
763 |
function wp_cache_post_edit($post_id) {
|
764 |
global $wp_cache_clear_on_post_edit, $cache_path, $blog_cache_dir;
|
765 |
if( $wp_cache_clear_on_post_edit ) {
|
wp-cache.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
Plugin Name: WP Super Cache
|
4 |
Plugin URI: http://ocaoimh.ie/wp-super-cache/
|
5 |
Description: Very fast caching plugin for WordPress.
|
6 |
-
Version: 0.9.
|
7 |
Author: Donncha O Caoimh
|
8 |
Author URI: http://ocaoimh.ie/
|
9 |
*/
|
10 |
|
11 |
/* Copyright 2005-2006 Ricardo Galli Granada (email : gallir@uib.es)
|
12 |
-
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License as published by
|
@@ -46,10 +46,14 @@ $wp_cache_config_file_sample = WPCACHEHOME . 'wp-cache-config-sample.php';
|
|
46 |
$wp_cache_link = WP_CONTENT_DIR . '/advanced-cache.php';
|
47 |
$wp_cache_file = WPCACHEHOME . 'advanced-cache.php';
|
48 |
|
|
|
|
|
|
|
|
|
49 |
include(WPCACHEHOME . 'wp-cache-base.php');
|
50 |
|
51 |
function wp_super_cache_text_domain() {
|
52 |
-
load_plugin_textdomain( 'wp-super-cache', WPCACHEHOME, basename( dirname( __FILE__ ) ) );
|
53 |
}
|
54 |
add_action( 'init', 'wp_super_cache_text_domain' );
|
55 |
|
@@ -98,9 +102,14 @@ function wpsupercache_deactivate() {
|
|
98 |
@unlink( $cache_path . '.htaccess' );
|
99 |
@unlink( $cache_path . 'meta' );
|
100 |
@unlink( $cache_path . 'supercache' );
|
|
|
101 |
}
|
102 |
register_deactivation_hook( __FILE__, 'wpsupercache_deactivate' );
|
103 |
|
|
|
|
|
|
|
|
|
104 |
function wp_cache_add_pages() {
|
105 |
if( function_exists( 'is_site_admin' ) ) {
|
106 |
if( is_site_admin() ) {
|
@@ -117,6 +126,7 @@ function wp_cache_manager() {
|
|
117 |
global $wp_cache_config_file, $valid_nonce, $supercachedir, $cache_path, $cache_enabled, $cache_compression, $super_cache_enabled, $wp_cache_hello_world;
|
118 |
global $wp_cache_clear_on_post_edit, $cache_rebuild_files, $wp_cache_mutex_disabled, $wp_cache_mobile_enabled, $wp_cache_mobile_whitelist, $wp_cache_mobile_browsers;
|
119 |
global $wp_cache_cron_check, $wp_cache_debug, $wp_cache_hide_donation, $wp_cache_not_logged_in, $wp_supercache_cache_list;
|
|
|
120 |
|
121 |
if( function_exists( 'is_site_admin' ) )
|
122 |
if( !is_site_admin() )
|
@@ -157,7 +167,7 @@ jQuery(document).ready(function(){
|
|
157 |
</script>
|
158 |
<?php
|
159 |
echo '<div class="wrap">';
|
160 |
-
echo "<h2>WP Super Cache Manager</h2>\n";
|
161 |
if( 1 == ini_get( 'safe_mode' ) || "on" == strtolower( ini_get( 'safe_mode' ) ) ) {
|
162 |
?><h3><?php _e( 'Warning! PHP Safe Mode Enabled!', 'wp-super-cache' ); ?></h3>
|
163 |
<p><?php _e( 'You may experience problems running this plugin because SAFE MODE is enabled.', 'wp-super-cache' );
|
@@ -168,6 +178,12 @@ jQuery(document).ready(function(){
|
|
168 |
echo __( 'You or an administrator must disable this. See the <a href="http://php.net/features.safe-mode">safe mode manual page</a> for further details. This cannot be disabled in a .htaccess file unfortunately. It must be done in the php.ini config file.', 'wp-super-cache' ) . "</p>";
|
169 |
}
|
170 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
if(isset($_REQUEST['wp_restore_config']) && $valid_nonce) {
|
172 |
unlink($wp_cache_config_file);
|
173 |
echo '<strong>' . __( 'Configuration file changed, some values might be wrong. Load the page again from the "Settings" menu to reset them.', 'wp-super-cache' ) . '</strong>';
|
@@ -343,8 +359,8 @@ jQuery(document).ready(function(){
|
|
343 |
<label><input type='radio' name='wp_cache_status' value='none' <?php if( $cache_enabled == false ) { echo 'checked=checked'; } ?>> <strong><?php _e( 'OFF', 'wp-super-cache' ); ?></strong> <span class="setting-description"><?php _e( 'WP Cache and Super Cache disabled', 'wp-super-cache' ); ?></span></label><br />
|
344 |
<p><label><input type='checkbox' name='wp_cache_not_logged_in' <?php if( $wp_cache_not_logged_in ) echo "checked"; ?> value='1'> <?php _e( 'Don’t cache pages for logged in users.', 'wp-super-cache' ); ?></label></p>
|
345 |
<p><label><input type='checkbox' name='wp_cache_hello_world' <?php if( $wp_cache_hello_world ) echo "checked"; ?> value='1'> <?php _e( 'Proudly tell the world your server is Digg proof! (places a message in your blog’s footer)', 'wp-super-cache' ); ?></label></p>
|
346 |
-
<p><label><input type='checkbox' name='wp_cache_clear_on_post_edit' <?php if( $wp_cache_clear_on_post_edit ) echo "checked"; ?> value='1'> <?php _e( 'Clear all cache files when a post or page is published. (This may significantly slow down saving of posts.)' ); ?></label></p>
|
347 |
-
<p><label><input type='checkbox' name='cache_rebuild_files' <?php if( $cache_rebuild_files ) echo "checked"; ?> value='1'> <?php _e( 'Cache rebuild. Serve a supercache file to anonymous users while a new file is being generated. Recommended for <em>very</em> busy websites with lots of comments. Makes "directly cached pages" and "Lockdown mode" obsolete.' ); ?></label></p>
|
348 |
<?php if( false == defined( 'WPSC_DISABLE_LOCKING' ) ) { ?>
|
349 |
<p><label><input type='checkbox' name='wp_cache_mutex_disabled' <?php if( !$wp_cache_mutex_disabled ) echo "checked"; ?> value='0'> <?php _e( 'Coarse file locking. You probably don’t need this but it may help if your server is underpowered. Warning! <em>May cause your server to lock up in very rare cases!</em>', 'wp-super-cache' ); ?></label></p>
|
350 |
<?php } ?>
|
@@ -399,7 +415,7 @@ jQuery(document).ready(function(){
|
|
399 |
<p><?php printf( __( '%1$s really makes your blog go faster. Make it go faster<sup>*</sup> by buying me an <a href="%2$s">Amazon gift card</a>! Make it out to "%3$s" for whatever amount you want. Every penny helps!', 'wp-super-cache' ), '<a href="http://ocaoimh.ie/wp-super-cache/?r=wpsc">WP Super Cache</a>', 'http://ocaoimh.ie/agc', 'donncha@ocaoimh.ie' ) ?>;</p>
|
400 |
<p><?php printf( __( 'If Amazon isn’t your thing, there’s also PayPal. Click the "Donate" button below or take a quick peek at my <a href="%s">wishlist</a>.', 'wp-super-cache' ), 'http://ocaoimh.ie/wish' ); ?></p>
|
401 |
<p><?php _e( 'Thanks in advance!', 'wp-super-cache' ); ?><br />Donncha<br />
|
402 |
-
<small>* <?php _e( 'Ok, it won’t go any faster but you’ll make this plugin author very happy!' ); ?></small></p>
|
403 |
<div align='center'>
|
404 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
405 |
<input type="hidden" name="cmd" value="_s-xclick"/>
|
@@ -407,11 +423,11 @@ jQuery(document).ready(function(){
|
|
407 |
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_donate_SM.gif" border="0" name="submit" alt=""/>
|
408 |
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"/><br />
|
409 |
</form>
|
410 |
-
<p
|
411 |
</div>
|
412 |
<?php } else { ?>
|
413 |
<p><?php printf( __( '%1$s is maintained and developed by %2$s with contributions from many others.', 'wp-super-cache' ), '<a href="http://ocaoimh.ie/wp-super-cache/?r=supercache">WP Super Cache</a>', '<a href="http://ocaoimh.ie/?r=supercache">Donncha O Caoimh</a>' ); ?></p>
|
414 |
-
<p><?php printf( __( 'He blogs at %1$s, posts photos at %2$s and %3$s he had more time to read and relax.', 'wp-super-cache' ), '<a href="http://ocaoimh.ie/?r=supercache">Holy Shmoly</a>', '<a href="http://inphotos.org/?r=supercache">In Photos.org</a>', '
|
415 |
<p><?php printf( __( 'Please say hi to him on %s too!', 'wp-super-cache' ), '<a href="http://twitter.com/donncha/">Twitter</a>' ); ?></p>
|
416 |
<?php
|
417 |
}
|
@@ -422,14 +438,14 @@ jQuery(document).ready(function(){
|
|
422 |
}
|
423 |
?>
|
424 |
<p><?php printf( __( 'Cached pages since %1$s : <strong>%2$s</strong>', 'wp-super-cache' ), date( 'M j, Y', $start_date ), number_format( get_option( 'wpsupercache_count' ) ) ); ?></p>
|
425 |
-
<p><?php _e( 'Newest Cached Pages:' ); ?><ol>
|
426 |
<?php
|
427 |
foreach( array_reverse( (array)get_option( 'supercache_last_cached' ) ) as $url ) {
|
428 |
$since = time() - strtotime( $url[ 'date' ] );
|
429 |
echo "<li><a title='" . sprintf( __( 'Cached %s seconds ago', 'wp-super-cache' ), $since ) . "' href='" . site_url( $url[ 'url' ] ) . "'>{$url[ 'url' ]}</a></li>\n";
|
430 |
}
|
431 |
?></ol>
|
432 |
-
<small><?php _e( '(may not always be accurate on busy sites)' ); ?></small>
|
433 |
</p><?php
|
434 |
} else {
|
435 |
$start_date = get_option( 'wpsupercache_start' );
|
@@ -450,7 +466,7 @@ jQuery(document).ready(function(){
|
|
450 |
|
451 |
wp_cache_edit_max_time();
|
452 |
|
453 |
-
echo '<a name="files"></a><fieldset class="options"><h3>' . __( 'Accepted Filenames & Rejected URIs' ) . '</h3>';
|
454 |
wp_cache_edit_rejected_pages();
|
455 |
echo "\n";
|
456 |
wp_cache_edit_rejected();
|
@@ -515,7 +531,7 @@ function wsc_mod_rewrite() {
|
|
515 |
<?php } ?>
|
516 |
|
517 |
<a name="modrewrite"></a><fieldset class="options">
|
518 |
-
<h3
|
519 |
if ( isset( $_SERVER[ "PHP_DOCUMENT_ROOT" ] ) ) {
|
520 |
$document_root = $_SERVER[ "PHP_DOCUMENT_ROOT" ];
|
521 |
$apache_root = $_SERVER[ "PHP_DOCUMENT_ROOT" ];
|
@@ -538,7 +554,7 @@ function wsc_mod_rewrite() {
|
|
538 |
}
|
539 |
$condition_rules[] = "RewriteCond %{REQUEST_METHOD} !POST";
|
540 |
$condition_rules[] = "RewriteCond %{QUERY_STRING} !.*=.*";
|
541 |
-
$condition_rules[] = "RewriteCond %{HTTP:Cookie} !^.*(comment_author_|
|
542 |
$condition_rules[] = "RewriteCond %{HTTP_USER_AGENT} !^.*(Android|2.0\\ MMP|240x320|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|hiptop|IEMobile|iPhone|iPod|KYOCERA/WX310K|LG/U990|MIDP-2.0|MMEF20|MOT-V|NetFront|Newt|Nintendo\\ Wii|Nitro|Nokia|Opera\\ Mini|Palm|Playstation\\ Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|Small|SonyEricsson|Symbian\\ OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|Windows\\ CE|WinWAP).*";
|
543 |
$condition_rules = apply_filters( 'supercacherewriteconditions', $condition_rules );
|
544 |
|
@@ -624,10 +640,10 @@ function wsc_mod_rewrite() {
|
|
624 |
} else {
|
625 |
?>
|
626 |
<p><?php printf( __( 'WP Super Cache mod rewrite rules were detected in your %s.htaccess file.<br /> Click the following link to see the lines added to that file. If you have upgraded the plugin make sure these rules match.', 'wp-super-cache' ), $home_path ); ?><br /><br />
|
627 |
-
<a href="javascript:toggleLayer('rewriterules');" class="button"><?php _e( 'View Mod_Rewrite Rules' ); ?></a>
|
628 |
<div id='rewriterules' style='display: none;'>
|
629 |
<?php echo "<p><pre># BEGIN WPSuperCache\n" . wp_specialchars( $rules ) . "# END WPSuperCache</pre></p>\n";
|
630 |
-
echo "<p>Rules must be added to
|
631 |
echo "<pre># BEGIN supercache\n" . wp_specialchars( $gziprules ) . "# END supercache</pre></p>"; ?>
|
632 |
</div>
|
633 |
<?php
|
@@ -842,7 +858,7 @@ function wp_cache_edit_max_time () {
|
|
842 |
echo '<form name="wp_edit_max_time" action="#expirytime" method="post">';
|
843 |
echo '<label for="wp_max_time">' . __( 'Expire time:', 'wp-super-cache' ) . '</label> ';
|
844 |
echo "<input type=\"text\" size=6 name=\"wp_max_time\" value=\"$cache_max_time\" /> " . __( "seconds", 'wp-super-cache' );
|
845 |
-
echo "<h4>" . __( 'Garbage Collection', 'wp-super-cache' ) . "</h4><p>" . __( 'If expiry time is more than 1800 seconds (half an hour), garbage collection will be done every 10 minutes, otherwise it will happen 10 seconds after the expiry time above.' ) . "</p>";
|
846 |
echo "<p>" . __( 'Checking for and deleting expired files is expensive, but it’s expensive leaving them there too. On a very busy site you should set the expiry time to <em>300 seconds</em>. Experiment with different values and visit this page to see how many expired files remain at different times during the day. Aim to have less than 500 cached files if possible.', 'wp-super-cache' ) . "</p>";
|
847 |
echo '<div class="submit"><input type="submit" ' . SUBMITDISABLED . 'value="' . __( 'Change Expiration', 'wp-super-cache' ) . ' »" /></div>';
|
848 |
wp_nonce_field('wp-cache');
|
@@ -979,6 +995,7 @@ function wp_cache_edit_accepted() {
|
|
979 |
|
980 |
function wp_cache_debug_settings() {
|
981 |
global $wp_super_cache_debug, $wp_cache_debug_email, $wp_cache_debug_log, $wp_cache_debug_level, $wp_cache_debug_ip, $cache_path, $valid_nonce, $wp_cache_config_file, $wp_cache_debug_to_file;
|
|
|
982 |
|
983 |
if ( !isset( $wp_cache_debug_level ) )
|
984 |
$wp_cache_debug_level = 1;
|
@@ -999,13 +1016,25 @@ function wp_cache_debug_settings() {
|
|
999 |
wp_cache_replace_line('^ *\$wp_cache_debug_ip', "\$wp_cache_debug_ip = '$wp_cache_debug_ip';", $wp_cache_config_file);
|
1000 |
$wp_cache_debug_level = (int)$_POST[ 'wp_cache_debug_level' ];
|
1001 |
wp_cache_replace_line('^ *\$wp_cache_debug_level', "\$wp_cache_debug_level = '$wp_cache_debug_level';", $wp_cache_config_file);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
}
|
1003 |
|
1004 |
echo '<a name="debug"></a>';
|
1005 |
echo '<fieldset class="options">';
|
1006 |
-
echo "<h3>Debug Settings</h3>";
|
1007 |
if ( ( isset( $wp_cache_debug_log ) && $wp_cache_debug_log != '' ) || ( isset( $wp_cache_debug_email ) && $wp_cache_debug_email != '' ) ) {
|
1008 |
-
echo "<p>Currently logging to:
|
1009 |
if ( isset( $wp_cache_debug_log ) && $wp_cache_debug_log != '' ) {
|
1010 |
$url = str_replace( ABSPATH, '', "{$cache_path}{$wp_cache_debug_log}" );
|
1011 |
echo "<a href='" . site_url( $url ) . "'>$cache_path{$wp_cache_debug_log}</a> ";
|
@@ -1021,17 +1050,28 @@ function wp_cache_debug_settings() {
|
|
1021 |
echo "<input type='hidden' name='wp_cache_debug' value='1' /><br />";
|
1022 |
echo "<table class='form-table'>";
|
1023 |
echo "<tr><td>" . __( 'Debugging', 'wp-super-cache' ) . "</td><td><input type='checkbox' name='wp_super_cache_debug' value='1' " . checked( 1, $wp_super_cache_debug, false ) . " /> " . __( 'enabled', 'wp-super-cache' ) . "</td></tr>";
|
1024 |
-
echo "<tr><td valign='top' rowspan='2'>Logging Type</td><td> " . __( 'Email', 'wp-super-cache' ) . ": <input type='text' size='30' name='wp_cache_debug_email' value='{$wp_cache_debug_email}' /></td></tr>";
|
1025 |
echo "<tr><td><input type='checkbox' name='wp_cache_debug_to_file' value='1' " . checked( 1, $wp_cache_debug_to_file, false ) . " /> " . __( 'file', 'wp-super-cache' ) . "</td></tr>";
|
1026 |
echo "<tr><td>" . __( 'IP Address', 'wp-super-cache' ) . "</td><td> <input type='text' size='20' name='wp_cache_debug_ip' value='{$wp_cache_debug_ip}' /> " . sprintf( __( '(only log requests from this IP address. Your IP is %s)', 'wp-super-cache' ), $_SERVER[ 'REMOTE_ADDR' ] ) . "</td></tr>";
|
1027 |
-
echo "<tr><td>Log level</td><td> ";
|
1028 |
for( $t = 1; $t <= 5; $t++ ) {
|
1029 |
echo "<input type='radio' name='wp_cache_debug_level' value='$t' ";
|
1030 |
echo $wp_cache_debug_level == $t ? "checked='checked' " : '';
|
1031 |
echo "/> $t ";
|
1032 |
}
|
1033 |
-
echo " " . __( '(1 = less, 5 = more, may cause severe server load.)', 'wp-super-cache' ) . "</td></tr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1034 |
|
|
|
|
|
1035 |
echo '<div class="submit"><input type="submit" ' . SUBMITDISABLED . 'value="' . __( 'Save', 'wp-super-cache' ) . ' »" /></div>';
|
1036 |
wp_nonce_field('wp-cache');
|
1037 |
echo "</form>\n";
|
@@ -1264,7 +1304,9 @@ function wp_cache_check_link() {
|
|
1264 |
}
|
1265 |
|
1266 |
function wp_cache_check_global_config() {
|
1267 |
-
|
|
|
|
|
1268 |
return true;
|
1269 |
|
1270 |
if ( file_exists( ABSPATH . 'wp-config.php') ) {
|
@@ -1273,20 +1315,14 @@ function wp_cache_check_global_config() {
|
|
1273 |
$global = dirname(ABSPATH) . '/wp-config.php';
|
1274 |
}
|
1275 |
|
1276 |
-
$howtoenable = sprintf( __( "Edit <code>%s</code> and add the following line: <code>define('WP_CACHE', true);</code>Otherwise, <strong>WP-Cache will not be executed</strong> by Wordpress core. ", 'wp-super-cache' ), $global );
|
1277 |
-
$lines = file($global);
|
1278 |
-
foreach($lines as $line) {
|
1279 |
-
if (preg_match('/^\s*define\s*\(\s*\'WP_CACHE\'\s*,\s*(?i:TRUE|1)\s*\)\s*;/', $line)) {
|
1280 |
-
echo $howtoenable;
|
1281 |
-
return false;
|
1282 |
-
}
|
1283 |
-
}
|
1284 |
$line = 'define(\'WP_CACHE\', true);';
|
1285 |
if (!is_writeable_ACLSafe($global) || !wp_cache_replace_line('define *\( *\'WP_CACHE\'', $line, $global) ) {
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
}
|
|
|
|
|
1290 |
return true;
|
1291 |
}
|
1292 |
|
@@ -1306,7 +1342,7 @@ function wp_cache_files() {
|
|
1306 |
}
|
1307 |
}
|
1308 |
echo "<a name='listfiles'></a>";
|
1309 |
-
echo '<fieldset class="options" id="show-this-fieldset"><h3>Cache Contents</h3>';
|
1310 |
|
1311 |
$list_files = false; // it doesn't list supercached files, and removing single pages is buggy
|
1312 |
$count = 0;
|
@@ -1340,11 +1376,11 @@ function wp_cache_files() {
|
|
1340 |
|
1341 |
$age = $now - $mtime;
|
1342 |
if ( $valid_nonce && $_GET[ 'listfiles' ] ) {
|
1343 |
-
$meta = unserialize( file_get_contents( $
|
1344 |
if ( $deleteuri != '' && $meta[ 'uri' ] == $deleteuri ) {
|
1345 |
printf( __( "Deleting wp-cache file: <strong>%s</strong><br />", 'wp-super-cache' ), $deleteuri );
|
1346 |
-
@unlink( $
|
1347 |
-
@unlink( $
|
1348 |
continue;
|
1349 |
}
|
1350 |
$meta[ 'age' ] = $age;
|
@@ -1428,7 +1464,7 @@ function wp_cache_files() {
|
|
1428 |
echo "<div style='padding: 10px; border: 1px solid #333; height: 400px; width: 70%; overflow: auto'>";
|
1429 |
if ( is_array( $cached_list ) && !empty( $cached_list ) ) {
|
1430 |
echo "<h4>" . __( 'Fresh WP-Cached Files', 'wp-super-cache' ) . "</h4>";
|
1431 |
-
echo "<table class='widefat'><tr><th>#</th><th>" . __( 'URI' ) . "</th><th>" . __( 'Key' ) . "</th><th>" . __( 'Age' ) . "</th><th>" . __( 'Delete' ) . "</th></tr>";
|
1432 |
$c = 1;
|
1433 |
$flip = 1;
|
1434 |
ksort( $cached_list );
|
@@ -1444,7 +1480,7 @@ function wp_cache_files() {
|
|
1444 |
}
|
1445 |
if ( is_array( $expired_list ) && !empty( $expired_list ) ) {
|
1446 |
echo "<h4>" . __( 'Stale WP-Cached Files', 'wp-super-cache' ) . "</h4>";
|
1447 |
-
echo "<table class='widefat'><tr><th>#</th><th>" . __( 'URI' ) . "</th><th>" . __( 'Key' ) . "</th><th>" . __( 'Age' ) . "</th><th>" . __( 'Delete' ) . "</th></tr>";
|
1448 |
$c = 1;
|
1449 |
$flip = 1;
|
1450 |
ksort( $expired_list );
|
@@ -1460,7 +1496,7 @@ function wp_cache_files() {
|
|
1460 |
}
|
1461 |
if ( is_array( $sizes[ 'cached_list' ] ) & !empty( $sizes[ 'cached_list' ] ) ) {
|
1462 |
echo "<h4>" . __( 'Fresh Super Cached Files', 'wp-super-cache' ) . "</h4>";
|
1463 |
-
echo "<table class='widefat'><tr><th>#</th><th>" . __( 'URI' ) . "</th><th>" . __( 'Age' ) . "</th><th>" . __( 'Delete' ) . "</th></tr>";
|
1464 |
$c = 1;
|
1465 |
$flip = 1;
|
1466 |
ksort( $sizes[ 'cached_list' ] );
|
@@ -1476,7 +1512,7 @@ function wp_cache_files() {
|
|
1476 |
}
|
1477 |
if ( is_array( $sizes[ 'expired_list' ] ) && !empty( $sizes[ 'expired_list' ] ) ) {
|
1478 |
echo "<h4>" . __( 'Stale Super Cached Files', 'wp-super-cache' ) . "</h4>";
|
1479 |
-
echo "<table class='widefat'><tr><th>#</th><th>" . __( 'URI' ) . "</th><th>" . __( 'Age' ) . "</th><th>" . __( 'Delete' ) . "</th></tr>";
|
1480 |
$c = 1;
|
1481 |
$flip = 1;
|
1482 |
ksort( $sizes[ 'expired_list' ] );
|
@@ -1710,4 +1746,47 @@ function wp_cache_admin_notice() {
|
|
1710 |
echo '<div class="error"><p><strong>' . sprintf( __('WP Super Cache is disabled. Please go to the <a href="%s">plugin admin page</a> to enable caching.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) . '</strong></p></div>';
|
1711 |
}
|
1712 |
add_action( 'admin_notices', 'wp_cache_admin_notice' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1713 |
?>
|
3 |
Plugin Name: WP Super Cache
|
4 |
Plugin URI: http://ocaoimh.ie/wp-super-cache/
|
5 |
Description: Very fast caching plugin for WordPress.
|
6 |
+
Version: 0.9.8
|
7 |
Author: Donncha O Caoimh
|
8 |
Author URI: http://ocaoimh.ie/
|
9 |
*/
|
10 |
|
11 |
/* Copyright 2005-2006 Ricardo Galli Granada (email : gallir@uib.es)
|
12 |
+
Copyright 2007-2009 Donncha O Caoimh (http://ocaoimh.ie/)
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License as published by
|
46 |
$wp_cache_link = WP_CONTENT_DIR . '/advanced-cache.php';
|
47 |
$wp_cache_file = WPCACHEHOME . 'advanced-cache.php';
|
48 |
|
49 |
+
if( !defined( 'WP_CACHE' ) ) {
|
50 |
+
$wp_cache_check_wp_config = true;
|
51 |
+
}
|
52 |
+
|
53 |
include(WPCACHEHOME . 'wp-cache-base.php');
|
54 |
|
55 |
function wp_super_cache_text_domain() {
|
56 |
+
load_plugin_textdomain( 'wp-super-cache', WPCACHEHOME . 'languages', basename( dirname( __FILE__ ) ) . '/languages' );
|
57 |
}
|
58 |
add_action( 'init', 'wp_super_cache_text_domain' );
|
59 |
|
102 |
@unlink( $cache_path . '.htaccess' );
|
103 |
@unlink( $cache_path . 'meta' );
|
104 |
@unlink( $cache_path . 'supercache' );
|
105 |
+
wp_clear_scheduled_hook( 'wp_cache_check_site_hook' );
|
106 |
}
|
107 |
register_deactivation_hook( __FILE__, 'wpsupercache_deactivate' );
|
108 |
|
109 |
+
function wpsupercache_activate() {
|
110 |
+
}
|
111 |
+
register_activation_hook( __FILE__, 'wpsupercache_activate' );
|
112 |
+
|
113 |
function wp_cache_add_pages() {
|
114 |
if( function_exists( 'is_site_admin' ) ) {
|
115 |
if( is_site_admin() ) {
|
126 |
global $wp_cache_config_file, $valid_nonce, $supercachedir, $cache_path, $cache_enabled, $cache_compression, $super_cache_enabled, $wp_cache_hello_world;
|
127 |
global $wp_cache_clear_on_post_edit, $cache_rebuild_files, $wp_cache_mutex_disabled, $wp_cache_mobile_enabled, $wp_cache_mobile_whitelist, $wp_cache_mobile_browsers;
|
128 |
global $wp_cache_cron_check, $wp_cache_debug, $wp_cache_hide_donation, $wp_cache_not_logged_in, $wp_supercache_cache_list;
|
129 |
+
global $wp_super_cache_front_page_check;
|
130 |
|
131 |
if( function_exists( 'is_site_admin' ) )
|
132 |
if( !is_site_admin() )
|
167 |
</script>
|
168 |
<?php
|
169 |
echo '<div class="wrap">';
|
170 |
+
echo "<h2><a href='?page=wpsupercache'>" . __( 'WP Super Cache Manager', 'wp-super-cache' ) . "</a></h2>\n";
|
171 |
if( 1 == ini_get( 'safe_mode' ) || "on" == strtolower( ini_get( 'safe_mode' ) ) ) {
|
172 |
?><h3><?php _e( 'Warning! PHP Safe Mode Enabled!', 'wp-super-cache' ); ?></h3>
|
173 |
<p><?php _e( 'You may experience problems running this plugin because SAFE MODE is enabled.', 'wp-super-cache' );
|
178 |
echo __( 'You or an administrator must disable this. See the <a href="http://php.net/features.safe-mode">safe mode manual page</a> for further details. This cannot be disabled in a .htaccess file unfortunately. It must be done in the php.ini config file.', 'wp-super-cache' ) . "</p>";
|
179 |
}
|
180 |
}
|
181 |
+
|
182 |
+
if ( isset( $wp_super_cache_front_page_check ) && $wp_super_cache_front_page_check == 1 && !wp_next_scheduled( 'wp_cache_check_site_hook' ) ) {
|
183 |
+
wp_schedule_single_event( time() + 360 , 'wp_cache_check_site_hook' );
|
184 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( 'scheduled wp_cache_check_site_hook for 360 seconds time.', 2 );
|
185 |
+
}
|
186 |
+
|
187 |
if(isset($_REQUEST['wp_restore_config']) && $valid_nonce) {
|
188 |
unlink($wp_cache_config_file);
|
189 |
echo '<strong>' . __( 'Configuration file changed, some values might be wrong. Load the page again from the "Settings" menu to reset them.', 'wp-super-cache' ) . '</strong>';
|
359 |
<label><input type='radio' name='wp_cache_status' value='none' <?php if( $cache_enabled == false ) { echo 'checked=checked'; } ?>> <strong><?php _e( 'OFF', 'wp-super-cache' ); ?></strong> <span class="setting-description"><?php _e( 'WP Cache and Super Cache disabled', 'wp-super-cache' ); ?></span></label><br />
|
360 |
<p><label><input type='checkbox' name='wp_cache_not_logged_in' <?php if( $wp_cache_not_logged_in ) echo "checked"; ?> value='1'> <?php _e( 'Don’t cache pages for logged in users.', 'wp-super-cache' ); ?></label></p>
|
361 |
<p><label><input type='checkbox' name='wp_cache_hello_world' <?php if( $wp_cache_hello_world ) echo "checked"; ?> value='1'> <?php _e( 'Proudly tell the world your server is Digg proof! (places a message in your blog’s footer)', 'wp-super-cache' ); ?></label></p>
|
362 |
+
<p><label><input type='checkbox' name='wp_cache_clear_on_post_edit' <?php if( $wp_cache_clear_on_post_edit ) echo "checked"; ?> value='1'> <?php _e( 'Clear all cache files when a post or page is published. (This may significantly slow down saving of posts.)', 'wp-super-cache' ); ?></label></p>
|
363 |
+
<p><label><input type='checkbox' name='cache_rebuild_files' <?php if( $cache_rebuild_files ) echo "checked"; ?> value='1'> <?php _e( 'Cache rebuild. Serve a supercache file to anonymous users while a new file is being generated. Recommended for <em>very</em> busy websites with lots of comments. Makes "directly cached pages" and "Lockdown mode" obsolete.', 'wp-super-cache' ); ?></label></p>
|
364 |
<?php if( false == defined( 'WPSC_DISABLE_LOCKING' ) ) { ?>
|
365 |
<p><label><input type='checkbox' name='wp_cache_mutex_disabled' <?php if( !$wp_cache_mutex_disabled ) echo "checked"; ?> value='0'> <?php _e( 'Coarse file locking. You probably don’t need this but it may help if your server is underpowered. Warning! <em>May cause your server to lock up in very rare cases!</em>', 'wp-super-cache' ); ?></label></p>
|
366 |
<?php } ?>
|
415 |
<p><?php printf( __( '%1$s really makes your blog go faster. Make it go faster<sup>*</sup> by buying me an <a href="%2$s">Amazon gift card</a>! Make it out to "%3$s" for whatever amount you want. Every penny helps!', 'wp-super-cache' ), '<a href="http://ocaoimh.ie/wp-super-cache/?r=wpsc">WP Super Cache</a>', 'http://ocaoimh.ie/agc', 'donncha@ocaoimh.ie' ) ?>;</p>
|
416 |
<p><?php printf( __( 'If Amazon isn’t your thing, there’s also PayPal. Click the "Donate" button below or take a quick peek at my <a href="%s">wishlist</a>.', 'wp-super-cache' ), 'http://ocaoimh.ie/wish' ); ?></p>
|
417 |
<p><?php _e( 'Thanks in advance!', 'wp-super-cache' ); ?><br />Donncha<br />
|
418 |
+
<small>* <?php _e( 'Ok, it won’t go any faster but you’ll make this plugin author very happy!', 'wp-super-cache' ); ?></small></p>
|
419 |
<div align='center'>
|
420 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
421 |
<input type="hidden" name="cmd" value="_s-xclick"/>
|
423 |
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_donate_SM.gif" border="0" name="submit" alt=""/>
|
424 |
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"/><br />
|
425 |
</form>
|
426 |
+
<p><?php _e( 'Don’t show me this again.', 'wp-super-cache' ); ?> <form action="#top" method="post"><input type='hidden' name='wp_cache_hide_donation' value='1' /><input type='submit' value='<?php _e( 'Hide', 'wp-super-cache' ); ?>' /><?php wp_nonce_field('wp-cache'); ?></form></p>
|
427 |
</div>
|
428 |
<?php } else { ?>
|
429 |
<p><?php printf( __( '%1$s is maintained and developed by %2$s with contributions from many others.', 'wp-super-cache' ), '<a href="http://ocaoimh.ie/wp-super-cache/?r=supercache">WP Super Cache</a>', '<a href="http://ocaoimh.ie/?r=supercache">Donncha O Caoimh</a>' ); ?></p>
|
430 |
+
<p><?php printf( __( 'He blogs at %1$s, posts photos at %2$s and <a href="%3$s">wishes</a> he had more time to read and relax.', 'wp-super-cache' ), '<a href="http://ocaoimh.ie/?r=supercache">Holy Shmoly</a>', '<a href="http://inphotos.org/?r=supercache">In Photos.org</a>', 'http://ocaoimh.ie/gad' ); ?></p>
|
431 |
<p><?php printf( __( 'Please say hi to him on %s too!', 'wp-super-cache' ), '<a href="http://twitter.com/donncha/">Twitter</a>' ); ?></p>
|
432 |
<?php
|
433 |
}
|
438 |
}
|
439 |
?>
|
440 |
<p><?php printf( __( 'Cached pages since %1$s : <strong>%2$s</strong>', 'wp-super-cache' ), date( 'M j, Y', $start_date ), number_format( get_option( 'wpsupercache_count' ) ) ); ?></p>
|
441 |
+
<p><?php _e( 'Newest Cached Pages:', 'wp-super-cache' ); ?><ol>
|
442 |
<?php
|
443 |
foreach( array_reverse( (array)get_option( 'supercache_last_cached' ) ) as $url ) {
|
444 |
$since = time() - strtotime( $url[ 'date' ] );
|
445 |
echo "<li><a title='" . sprintf( __( 'Cached %s seconds ago', 'wp-super-cache' ), $since ) . "' href='" . site_url( $url[ 'url' ] ) . "'>{$url[ 'url' ]}</a></li>\n";
|
446 |
}
|
447 |
?></ol>
|
448 |
+
<small><?php _e( '(may not always be accurate on busy sites)', 'wp-super-cache' ); ?></small>
|
449 |
</p><?php
|
450 |
} else {
|
451 |
$start_date = get_option( 'wpsupercache_start' );
|
466 |
|
467 |
wp_cache_edit_max_time();
|
468 |
|
469 |
+
echo '<a name="files"></a><fieldset class="options"><h3>' . __( 'Accepted Filenames & Rejected URIs', 'wp-super-cache' ) . '</h3>';
|
470 |
wp_cache_edit_rejected_pages();
|
471 |
echo "\n";
|
472 |
wp_cache_edit_rejected();
|
531 |
<?php } ?>
|
532 |
|
533 |
<a name="modrewrite"></a><fieldset class="options">
|
534 |
+
<h3><?php _e( 'Mod Rewrite Rules', 'wp-super-cache' ); ?></h3><?php
|
535 |
if ( isset( $_SERVER[ "PHP_DOCUMENT_ROOT" ] ) ) {
|
536 |
$document_root = $_SERVER[ "PHP_DOCUMENT_ROOT" ];
|
537 |
$apache_root = $_SERVER[ "PHP_DOCUMENT_ROOT" ];
|
554 |
}
|
555 |
$condition_rules[] = "RewriteCond %{REQUEST_METHOD} !POST";
|
556 |
$condition_rules[] = "RewriteCond %{QUERY_STRING} !.*=.*";
|
557 |
+
$condition_rules[] = "RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$";
|
558 |
$condition_rules[] = "RewriteCond %{HTTP_USER_AGENT} !^.*(Android|2.0\\ MMP|240x320|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|hiptop|IEMobile|iPhone|iPod|KYOCERA/WX310K|LG/U990|MIDP-2.0|MMEF20|MOT-V|NetFront|Newt|Nintendo\\ Wii|Nitro|Nokia|Opera\\ Mini|Palm|Playstation\\ Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|Small|SonyEricsson|Symbian\\ OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|Windows\\ CE|WinWAP).*";
|
559 |
$condition_rules = apply_filters( 'supercacherewriteconditions', $condition_rules );
|
560 |
|
640 |
} else {
|
641 |
?>
|
642 |
<p><?php printf( __( 'WP Super Cache mod rewrite rules were detected in your %s.htaccess file.<br /> Click the following link to see the lines added to that file. If you have upgraded the plugin make sure these rules match.', 'wp-super-cache' ), $home_path ); ?><br /><br />
|
643 |
+
<a href="javascript:toggleLayer('rewriterules');" class="button"><?php _e( 'View Mod_Rewrite Rules', 'wp-super-cache' ); ?></a>
|
644 |
<div id='rewriterules' style='display: none;'>
|
645 |
<?php echo "<p><pre># BEGIN WPSuperCache\n" . wp_specialchars( $rules ) . "# END WPSuperCache</pre></p>\n";
|
646 |
+
echo "<p>" . sprintf( __( 'Rules must be added to %s too:', 'wp-super-cache' ), WP_CONTENT_DIR . "/cache/.htaccess" ) . "</p>";
|
647 |
echo "<pre># BEGIN supercache\n" . wp_specialchars( $gziprules ) . "# END supercache</pre></p>"; ?>
|
648 |
</div>
|
649 |
<?php
|
858 |
echo '<form name="wp_edit_max_time" action="#expirytime" method="post">';
|
859 |
echo '<label for="wp_max_time">' . __( 'Expire time:', 'wp-super-cache' ) . '</label> ';
|
860 |
echo "<input type=\"text\" size=6 name=\"wp_max_time\" value=\"$cache_max_time\" /> " . __( "seconds", 'wp-super-cache' );
|
861 |
+
echo "<h4>" . __( 'Garbage Collection', 'wp-super-cache' ) . "</h4><p>" . __( 'If expiry time is more than 1800 seconds (half an hour), garbage collection will be done every 10 minutes, otherwise it will happen 10 seconds after the expiry time above.', 'wp-super-cache' ) . "</p>";
|
862 |
echo "<p>" . __( 'Checking for and deleting expired files is expensive, but it’s expensive leaving them there too. On a very busy site you should set the expiry time to <em>300 seconds</em>. Experiment with different values and visit this page to see how many expired files remain at different times during the day. Aim to have less than 500 cached files if possible.', 'wp-super-cache' ) . "</p>";
|
863 |
echo '<div class="submit"><input type="submit" ' . SUBMITDISABLED . 'value="' . __( 'Change Expiration', 'wp-super-cache' ) . ' »" /></div>';
|
864 |
wp_nonce_field('wp-cache');
|
995 |
|
996 |
function wp_cache_debug_settings() {
|
997 |
global $wp_super_cache_debug, $wp_cache_debug_email, $wp_cache_debug_log, $wp_cache_debug_level, $wp_cache_debug_ip, $cache_path, $valid_nonce, $wp_cache_config_file, $wp_cache_debug_to_file;
|
998 |
+
global $wp_super_cache_front_page_check, $wp_super_cache_front_page_clear, $wp_super_cache_front_page_text, $wp_super_cache_front_page_notification, $wp_super_cache_advanced_debug;
|
999 |
|
1000 |
if ( !isset( $wp_cache_debug_level ) )
|
1001 |
$wp_cache_debug_level = 1;
|
1016 |
wp_cache_replace_line('^ *\$wp_cache_debug_ip', "\$wp_cache_debug_ip = '$wp_cache_debug_ip';", $wp_cache_config_file);
|
1017 |
$wp_cache_debug_level = (int)$_POST[ 'wp_cache_debug_level' ];
|
1018 |
wp_cache_replace_line('^ *\$wp_cache_debug_level', "\$wp_cache_debug_level = '$wp_cache_debug_level';", $wp_cache_config_file);
|
1019 |
+
$wp_super_cache_front_page_check = (int)$_POST[ 'wp_super_cache_front_page_check' ];
|
1020 |
+
wp_cache_replace_line('^ *\$wp_super_cache_front_page_check', "\$wp_super_cache_front_page_check = '$wp_super_cache_front_page_check';", $wp_cache_config_file);
|
1021 |
+
$wp_super_cache_front_page_clear = (int)$_POST[ 'wp_super_cache_front_page_clear' ];
|
1022 |
+
wp_cache_replace_line('^ *\$wp_super_cache_front_page_clear', "\$wp_super_cache_front_page_clear = '$wp_super_cache_front_page_clear';", $wp_cache_config_file);
|
1023 |
+
$wp_super_cache_front_page_text = wp_specialchars( $_POST[ 'wp_super_cache_front_page_text' ] );
|
1024 |
+
wp_cache_replace_line('^ *\$wp_super_cache_front_page_text', "\$wp_super_cache_front_page_text = '$wp_super_cache_front_page_text';", $wp_cache_config_file);
|
1025 |
+
$wp_super_cache_front_page_notification = (int)$_POST[ 'wp_super_cache_front_page_notification' ];
|
1026 |
+
wp_cache_replace_line('^ *\$wp_super_cache_front_page_notification', "\$wp_super_cache_front_page_notification = '$wp_super_cache_front_page_notification';", $wp_cache_config_file);
|
1027 |
+
if ( isset( $wp_super_cache_front_page_check ) && $wp_super_cache_front_page_check == 1 && !wp_next_scheduled( 'wp_cache_check_site_hook' ) ) {
|
1028 |
+
wp_schedule_single_event( time() + 360 , 'wp_cache_check_site_hook' );
|
1029 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( 'scheduled wp_cache_check_site_hook for 360 seconds time.', 2 );
|
1030 |
+
}
|
1031 |
}
|
1032 |
|
1033 |
echo '<a name="debug"></a>';
|
1034 |
echo '<fieldset class="options">';
|
1035 |
+
echo "<h3>" . __( 'Debug Settings', 'wp-super-cache' ) . "</h3>";
|
1036 |
if ( ( isset( $wp_cache_debug_log ) && $wp_cache_debug_log != '' ) || ( isset( $wp_cache_debug_email ) && $wp_cache_debug_email != '' ) ) {
|
1037 |
+
echo "<p>" . __( 'Currently logging to: ', 'wp-super-cache' );
|
1038 |
if ( isset( $wp_cache_debug_log ) && $wp_cache_debug_log != '' ) {
|
1039 |
$url = str_replace( ABSPATH, '', "{$cache_path}{$wp_cache_debug_log}" );
|
1040 |
echo "<a href='" . site_url( $url ) . "'>$cache_path{$wp_cache_debug_log}</a> ";
|
1050 |
echo "<input type='hidden' name='wp_cache_debug' value='1' /><br />";
|
1051 |
echo "<table class='form-table'>";
|
1052 |
echo "<tr><td>" . __( 'Debugging', 'wp-super-cache' ) . "</td><td><input type='checkbox' name='wp_super_cache_debug' value='1' " . checked( 1, $wp_super_cache_debug, false ) . " /> " . __( 'enabled', 'wp-super-cache' ) . "</td></tr>";
|
1053 |
+
echo "<tr><td valign='top' rowspan='2'>" . __( 'Logging Type', 'wp-super-cache' ) . "</td><td> " . __( 'Email', 'wp-super-cache' ) . ": <input type='text' size='30' name='wp_cache_debug_email' value='{$wp_cache_debug_email}' /></td></tr>";
|
1054 |
echo "<tr><td><input type='checkbox' name='wp_cache_debug_to_file' value='1' " . checked( 1, $wp_cache_debug_to_file, false ) . " /> " . __( 'file', 'wp-super-cache' ) . "</td></tr>";
|
1055 |
echo "<tr><td>" . __( 'IP Address', 'wp-super-cache' ) . "</td><td> <input type='text' size='20' name='wp_cache_debug_ip' value='{$wp_cache_debug_ip}' /> " . sprintf( __( '(only log requests from this IP address. Your IP is %s)', 'wp-super-cache' ), $_SERVER[ 'REMOTE_ADDR' ] ) . "</td></tr>";
|
1056 |
+
echo "<tr><td>" . __( 'Log level', 'wp-super-cache' ) . "</td><td> ";
|
1057 |
for( $t = 1; $t <= 5; $t++ ) {
|
1058 |
echo "<input type='radio' name='wp_cache_debug_level' value='$t' ";
|
1059 |
echo $wp_cache_debug_level == $t ? "checked='checked' " : '';
|
1060 |
echo "/> $t ";
|
1061 |
}
|
1062 |
+
echo " " . __( '(1 = less, 5 = more, may cause severe server load.)', 'wp-super-cache' ) . "</td></tr>";
|
1063 |
+
echo "</table>\n";
|
1064 |
+
if ( isset( $wp_super_cache_advanced_debug ) ) {
|
1065 |
+
echo "<h4>" . __( 'Advanced', 'wp-super-cache' ) . "</h4><p>" . __( 'In very rare cases two problems may arise on some blogs:<ol><li> The front page may start downloading as a zip file.</li><li> The wrong page is occasionally cached as the front page if your blog uses a static front page and the permalink structure is <em>/%category%/%postname%/</em>.</li></ol>', 'wp-super-cache' ) . '</p>';
|
1066 |
+
echo "<p>" . __( 'I’m 99% certain that they aren’t bugs in WP Super Cache and they only happen in very rare cases but you can run a simple check once every 5 minutes to verify that your site is ok if you’re worried. You will be emailed if there is a problem.', 'wp-super-cache' ) . "</p>";
|
1067 |
+
echo "<table class='form-table'>";
|
1068 |
+
echo "<tr><td valign='top' colspan='2'><input type='checkbox' name='wp_super_cache_front_page_check' value='1' " . checked( 1, $wp_super_cache_front_page_check, false ) . " /> " . __( 'Check front page every 5 minutes.', 'wp-super-cache' ) . "</td></tr>";
|
1069 |
+
echo "<tr><td valign='top'>" . __( 'Front page text', 'wp-super-cache' ) . "</td><td> <input type='text' size='30' name='wp_super_cache_front_page_text' value='{$wp_super_cache_front_page_text}' /> (" . __( 'Text to search for on your front page. If this text is missing the cache will be cleared. Leave blank to disable.', 'wp-super-cache' ) . ")</td></tr>";
|
1070 |
+
echo "<tr><td valign='top' colspan='2'><input type='checkbox' name='wp_super_cache_front_page_clear' value='1' " . checked( 1, $wp_super_cache_front_page_clear, false ) . " /> " . __( 'Clear cache on error.', 'wp-super-cache' ) . "</td></tr>";
|
1071 |
+
echo "<tr><td valign='top' colspan='2'><input type='checkbox' name='wp_super_cache_front_page_notification' value='1' " . checked( 1, $wp_super_cache_front_page_notification, false ) . " /> " . __( 'Email the blog admin when checks are made. (useful for testing)', 'wp-super-cache' ) . "</td></tr>";
|
1072 |
|
1073 |
+
echo "</table>\n";
|
1074 |
+
}
|
1075 |
echo '<div class="submit"><input type="submit" ' . SUBMITDISABLED . 'value="' . __( 'Save', 'wp-super-cache' ) . ' »" /></div>';
|
1076 |
wp_nonce_field('wp-cache');
|
1077 |
echo "</form>\n";
|
1304 |
}
|
1305 |
|
1306 |
function wp_cache_check_global_config() {
|
1307 |
+
global $wp_cache_check_wp_config;
|
1308 |
+
|
1309 |
+
if ( !isset( $wp_cache_check_wp_config ) )
|
1310 |
return true;
|
1311 |
|
1312 |
if ( file_exists( ABSPATH . 'wp-config.php') ) {
|
1315 |
$global = dirname(ABSPATH) . '/wp-config.php';
|
1316 |
}
|
1317 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1318 |
$line = 'define(\'WP_CACHE\', true);';
|
1319 |
if (!is_writeable_ACLSafe($global) || !wp_cache_replace_line('define *\( *\'WP_CACHE\'', $line, $global) ) {
|
1320 |
+
echo "<p>" . __( "<strong>Error: WP_CACHE is not enabled</strong> in your <code>wp-config.php</code> file and I couldn’t modify it.", 'wp-super-cache' ) . "</p>";;
|
1321 |
+
echo "<p>" . sprintf( __( "Edit <code>%s</code> and add the following line:<br /> <code>define('WP_CACHE', true);</code><br />Otherwise, <strong>WP-Cache will not be executed</strong> by Wordpress core. ", 'wp-super-cache' ), $global ) . "</p>";
|
1322 |
+
return false;
|
1323 |
+
} else {
|
1324 |
+
echo "<div style='border: 1px solid #333; background: #ffffaa; padding: 2px;'>" . __( '<h3>WP_CACHE constant added to wp-config.php</h3><p>If you continue to see this warning message please see point 5 of the <a href="http://wordpress.org/extend/plugins/wp-super-cache/faq/">FAQ</a>. The WP_CACHE line must be moved up.', 'wp-super-cache' ) . "</div>";
|
1325 |
+
}
|
1326 |
return true;
|
1327 |
}
|
1328 |
|
1342 |
}
|
1343 |
}
|
1344 |
echo "<a name='listfiles'></a>";
|
1345 |
+
echo '<fieldset class="options" id="show-this-fieldset"><h3>' . __( 'Cache Contents', 'wp-super-cache' ) . '</h3>';
|
1346 |
|
1347 |
$list_files = false; // it doesn't list supercached files, and removing single pages is buggy
|
1348 |
$count = 0;
|
1376 |
|
1377 |
$age = $now - $mtime;
|
1378 |
if ( $valid_nonce && $_GET[ 'listfiles' ] ) {
|
1379 |
+
$meta = unserialize( file_get_contents( $blog_cache_dir . 'meta/' . $file ) );
|
1380 |
if ( $deleteuri != '' && $meta[ 'uri' ] == $deleteuri ) {
|
1381 |
printf( __( "Deleting wp-cache file: <strong>%s</strong><br />", 'wp-super-cache' ), $deleteuri );
|
1382 |
+
@unlink( $blog_cache_dir . 'meta/' . $file );
|
1383 |
+
@unlink( $blog_cache_dir . $content_file );
|
1384 |
continue;
|
1385 |
}
|
1386 |
$meta[ 'age' ] = $age;
|
1464 |
echo "<div style='padding: 10px; border: 1px solid #333; height: 400px; width: 70%; overflow: auto'>";
|
1465 |
if ( is_array( $cached_list ) && !empty( $cached_list ) ) {
|
1466 |
echo "<h4>" . __( 'Fresh WP-Cached Files', 'wp-super-cache' ) . "</h4>";
|
1467 |
+
echo "<table class='widefat'><tr><th>#</th><th>" . __( 'URI', 'wp-super-cache' ) . "</th><th>" . __( 'Key', 'wp-super-cache' ) . "</th><th>" . __( 'Age', 'wp-super-cache' ) . "</th><th>" . __( 'Delete', 'wp-super-cache' ) . "</th></tr>";
|
1468 |
$c = 1;
|
1469 |
$flip = 1;
|
1470 |
ksort( $cached_list );
|
1480 |
}
|
1481 |
if ( is_array( $expired_list ) && !empty( $expired_list ) ) {
|
1482 |
echo "<h4>" . __( 'Stale WP-Cached Files', 'wp-super-cache' ) . "</h4>";
|
1483 |
+
echo "<table class='widefat'><tr><th>#</th><th>" . __( 'URI', 'wp-super-cache' ) . "</th><th>" . __( 'Key', 'wp-super-cache' ) . "</th><th>" . __( 'Age', 'wp-super-cache' ) . "</th><th>" . __( 'Delete', 'wp-super-cache' ) . "</th></tr>";
|
1484 |
$c = 1;
|
1485 |
$flip = 1;
|
1486 |
ksort( $expired_list );
|
1496 |
}
|
1497 |
if ( is_array( $sizes[ 'cached_list' ] ) & !empty( $sizes[ 'cached_list' ] ) ) {
|
1498 |
echo "<h4>" . __( 'Fresh Super Cached Files', 'wp-super-cache' ) . "</h4>";
|
1499 |
+
echo "<table class='widefat'><tr><th>#</th><th>" . __( 'URI', 'wp-super-cache' ) . "</th><th>" . __( 'Age', 'wp-super-cache' ) . "</th><th>" . __( 'Delete', 'wp-super-cache' ) . "</th></tr>";
|
1500 |
$c = 1;
|
1501 |
$flip = 1;
|
1502 |
ksort( $sizes[ 'cached_list' ] );
|
1512 |
}
|
1513 |
if ( is_array( $sizes[ 'expired_list' ] ) && !empty( $sizes[ 'expired_list' ] ) ) {
|
1514 |
echo "<h4>" . __( 'Stale Super Cached Files', 'wp-super-cache' ) . "</h4>";
|
1515 |
+
echo "<table class='widefat'><tr><th>#</th><th>" . __( 'URI', 'wp-super-cache' ) . "</th><th>" . __( 'Age', 'wp-super-cache' ) . "</th><th>" . __( 'Delete', 'wp-super-cache' ) . "</th></tr>";
|
1516 |
$c = 1;
|
1517 |
$flip = 1;
|
1518 |
ksort( $sizes[ 'expired_list' ] );
|
1746 |
echo '<div class="error"><p><strong>' . sprintf( __('WP Super Cache is disabled. Please go to the <a href="%s">plugin admin page</a> to enable caching.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) . '</strong></p></div>';
|
1747 |
}
|
1748 |
add_action( 'admin_notices', 'wp_cache_admin_notice' );
|
1749 |
+
|
1750 |
+
function wp_cache_check_site() {
|
1751 |
+
global $wp_super_cache_front_page_check, $wp_super_cache_front_page_clear, $wp_super_cache_front_page_text, $wp_super_cache_front_page_notification;
|
1752 |
+
|
1753 |
+
if ( !isset( $wp_super_cache_front_page_check ) || ( isset( $wp_super_cache_front_page_check ) && $wp_super_cache_front_page_check == 0 ) ) {
|
1754 |
+
return false;
|
1755 |
+
}
|
1756 |
+
|
1757 |
+
if ( function_exists( "wp_remote_get" ) == false ) {
|
1758 |
+
return false;
|
1759 |
+
}
|
1760 |
+
$front_page = wp_remote_get( site_url(), array('timeout' => 60, 'blocking' => true ) );
|
1761 |
+
if( is_array( $front_page ) ) {
|
1762 |
+
// Check for gzipped front page
|
1763 |
+
if ( $front_page[ 'headers' ][ 'content-type' ] == 'application/x-gzip' ) {
|
1764 |
+
if ( !isset( $wp_super_cache_front_page_clear ) || ( isset( $wp_super_cache_front_page_clear ) && $wp_super_cache_front_page_clear == 0 ) ) {
|
1765 |
+
wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is gzipped! Please clear cache!', 'wp-super-cache' ), site_url() ), sprintf( __( "Please visit %s to clear the cache as the front page of your site is now downloading!", 'wp-super-cache' ), trailingslashit( site_url() ) . "wp-admin/options-general.php?page=wpsupercache" ) );
|
1766 |
+
} else {
|
1767 |
+
wp_cache_clear_cache();
|
1768 |
+
wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is gzipped! Cache Cleared!', 'wp-super-cache' ), site_url() ), sprintf( __( "The cache on your blog has been cleared because the front page of your site is now downloading. Please visit %s to verify the cache has been cleared.", 'wp-super-cache' ), trailingslashit( site_url() ) . "wp-admin/options-general.php?page=wpsupercache" ) );
|
1769 |
+
}
|
1770 |
+
}
|
1771 |
+
|
1772 |
+
// Check for broken front page
|
1773 |
+
if ( isset( $wp_super_cache_front_page_text ) && $wp_super_cache_front_page_text != '' && false === strpos( $front_page[ 'body' ], $wp_super_cache_front_page_text ) ) {
|
1774 |
+
if ( !isset( $wp_super_cache_front_page_clear ) || ( isset( $wp_super_cache_front_page_clear ) && $wp_super_cache_front_page_clear == 0 ) ) {
|
1775 |
+
wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is not correct! Please clear cache!', 'wp-super-cache' ), site_url() ), sprintf( __( 'Please visit %1$s to clear the cache as the front page of your site is not correct and missing the text, "%2$s"!', 'wp-super-cache' ), trailingslashit( site_url() ) . "wp-admin/options-general.php?page=wpsupercache", $wp_super_cache_front_page_text ) );
|
1776 |
+
} else {
|
1777 |
+
wp_cache_clear_cache();
|
1778 |
+
wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page is not correct! Cache Cleared!', 'wp-super-cache' ), site_url() ), sprintf( __( 'The cache on your blog has been cleared because the front page of your site is missing the text "%2$s". Please visit %1$s to verify the cache has been cleared.', 'wp-super-cache' ), trailingslashit( site_url() ) . "wp-admin/options-general.php?page=wpsupercache", $wp_super_cache_front_page_text ) );
|
1779 |
+
}
|
1780 |
+
}
|
1781 |
+
}
|
1782 |
+
if ( isset( $wp_super_cache_front_page_notification ) && $wp_super_cache_front_page_notification == 1 ) {
|
1783 |
+
wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] Front page check!', 'wp-super-cache' ), site_url() ), sprintf( __( "WP Super Cache has checked the front page of your blog. Please visit %s if you would like to disable this.", 'wp-super-cache' ) . "\n\n", trailingslashit( site_url() ) . "wp-admin/options-general.php?page=wpsupercache#debug" ) . print_r( $front_page, 1 ) );
|
1784 |
+
}
|
1785 |
+
|
1786 |
+
if ( !wp_next_scheduled( 'wp_cache_check_site_hook' ) ) {
|
1787 |
+
wp_schedule_single_event( time() + 360 , 'wp_cache_check_site_hook' );
|
1788 |
+
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( 'scheduled wp_cache_check_site_hook for 360 seconds time.', 2 );
|
1789 |
+
}
|
1790 |
+
}
|
1791 |
+
add_action( 'wp_cache_check_site_hook', 'wp_cache_check_site' );
|
1792 |
?>
|
wp-super-cache.pot
CHANGED
@@ -7,7 +7,7 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: PACKAGE VERSION\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-super-cache\n"
|
10 |
-
"POT-Creation-Date: 2009-
|
11 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -15,29 +15,84 @@ msgstr ""
|
|
15 |
"Content-Type: text/plain; charset=CHARSET\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
|
18 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
#, php-format
|
20 |
msgid ""
|
21 |
"Please create %s /wp-cache-config.php from wp-super-cache/wp-cache-config-"
|
22 |
"sample.php"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: wp-cache.php:
|
|
|
|
|
|
|
|
|
26 |
msgid "Warning! PHP Safe Mode Enabled!"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: wp-cache.php:
|
30 |
msgid ""
|
31 |
"You may experience problems running this plugin because SAFE MODE is enabled."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: wp-cache.php:
|
35 |
msgid ""
|
36 |
"Your server is set up to check the owner of PHP scripts before allowing them "
|
37 |
"to read and write files."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: wp-cache.php:
|
41 |
#, php-format
|
42 |
msgid ""
|
43 |
"You or an administrator may be able to make it work by changing the group "
|
@@ -47,7 +102,7 @@ msgid ""
|
|
47 |
"details."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: wp-cache.php:
|
51 |
msgid ""
|
52 |
"You or an administrator must disable this. See the <a href=\"http://php.net/"
|
53 |
"features.safe-mode\">safe mode manual page</a> for further details. This "
|
@@ -55,22 +110,22 @@ msgid ""
|
|
55 |
"php.ini config file."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-cache.php:
|
59 |
msgid ""
|
60 |
"Configuration file changed, some values might be wrong. Load the page again "
|
61 |
"from the \"Settings\" menu to reset them."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: wp-cache.php:
|
65 |
msgid "Cannot continue... fix previous problems and retry."
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: wp-cache.php:
|
69 |
#, php-format
|
70 |
msgid "Warning! Your hostname \"%s\" resolves to %s"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: wp-cache.php:
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"Your server thinks your hostname resolves to %s. Some services such as "
|
@@ -78,25 +133,25 @@ msgid ""
|
|
78 |
"operate correctly."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: wp-cache.php:
|
82 |
#, php-format
|
83 |
msgid ""
|
84 |
"Please see entry 16 in the <a href=\"%s\">Troubleshooting section</a> of the "
|
85 |
"readme.txt"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: wp-cache.php:
|
89 |
msgid ""
|
90 |
"Unfortunately WordPress cannot find the file wp-cron.php. This script is "
|
91 |
"required for the the correct operation of garbage collection by this plugin, "
|
92 |
"WordPress scheduled posts as well as other critical activities."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: wp-cache.php:
|
96 |
msgid "Mod rewrite may not be installed!"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: wp-cache.php:
|
100 |
msgid ""
|
101 |
"It appears that mod_rewrite is not installed. Sometimes this check isn’"
|
102 |
"t 100% reliable, especially if you are not using Apache. Please verify that "
|
@@ -104,19 +159,19 @@ msgid ""
|
|
104 |
"static files. You will still be able to use half-on mode."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: wp-cache.php:
|
108 |
msgid "Read Only Mode. Configuration cannot be changed."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: wp-cache.php:
|
112 |
msgid "Why your configuration may not be changed"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: wp-cache.php:
|
116 |
msgid "Why"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: wp-cache.php:
|
120 |
#, php-format
|
121 |
msgid ""
|
122 |
"The WP Super Cache configuration file is <code>%s/wp-cache-config.php</code> "
|
@@ -124,106 +179,106 @@ msgid ""
|
|
124 |
"any changes."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: wp-cache.php:
|
128 |
msgid ""
|
129 |
"A simple way of doing that is by changing the permissions temporarily using "
|
130 |
"the CHMOD command or through your ftp client. Make sure it’s globally "
|
131 |
"writeable and it should be fine."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: wp-cache.php:
|
135 |
msgid "Writeable:"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: wp-cache.php:
|
139 |
msgid "Readonly:"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: wp-cache.php:
|
143 |
#, php-format
|
144 |
msgid "Warning! %s is writeable!"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: wp-cache.php:
|
148 |
#, php-format
|
149 |
msgid ""
|
150 |
"You should change the permissions on %s and make it more restrictive. Use "
|
151 |
"your ftp client, or the following command to fix things:"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: wp-cache.php:
|
155 |
msgid "WP Super Cache Status"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: wp-cache.php:
|
159 |
msgid "ON"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: wp-cache.php:
|
163 |
msgid "WP Cache and Super Cache enabled"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: wp-cache.php:
|
167 |
msgid "HALF ON"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: wp-cache.php:
|
171 |
msgid "Super Cache Disabled, only legacy WP-Cache caching."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: wp-cache.php:
|
175 |
msgid "OFF"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: wp-cache.php:
|
179 |
msgid "WP Cache and Super Cache disabled"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: wp-cache.php:
|
183 |
msgid "Don’t cache pages for logged in users."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: wp-cache.php:
|
187 |
msgid ""
|
188 |
"Proudly tell the world your server is Digg proof! (places a message in your "
|
189 |
"blog’s footer)"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: wp-cache.php:
|
193 |
msgid ""
|
194 |
"Clear all cache files when a post or page is published. (This may "
|
195 |
"significantly slow down saving of posts.)"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: wp-cache.php:
|
199 |
msgid ""
|
200 |
"Cache rebuild. Serve a supercache file to anonymous users while a new file "
|
201 |
"is being generated. Recommended for <em>very</em> busy websites with lots of "
|
202 |
"comments. Makes \"directly cached pages\" and \"Lockdown mode\" obsolete."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: wp-cache.php:
|
206 |
msgid ""
|
207 |
"Coarse file locking. You probably don’t need this but it may help if "
|
208 |
"your server is underpowered. Warning! <em>May cause your server to lock up "
|
209 |
"in very rare cases!</em>"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: wp-cache.php:
|
213 |
msgid ""
|
214 |
"List the newest cached pages (may be expensive to run on busy sites, use "
|
215 |
"with caution.)"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: wp-cache.php:
|
219 |
msgid "Mobile device support."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: wp-cache.php:
|
223 |
msgid "Mobile rewrite rules detected"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: wp-cache.php:
|
227 |
msgid ""
|
228 |
"For best performance you should enable \"Mobile device support\" or delete "
|
229 |
"the mobile rewrite rules in your .htaccess. Look for the 2 lines with the "
|
@@ -231,23 +286,23 @@ msgid ""
|
|
231 |
"delete those."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: wp-cache.php:
|
235 |
msgid ""
|
236 |
"This will have no affect on ordinary users but mobile users will see "
|
237 |
"uncached pages."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: wp-cache.php:
|
241 |
msgid ""
|
242 |
"Mobile support requires extra rules in your .htaccess file, or you can set "
|
243 |
"the plugin to half-on mode. Here are your options (in order of difficulty):"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: wp-cache.php:
|
247 |
msgid "Set the plugin to half on mode and enable mobile support."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: wp-cache.php:
|
251 |
#, php-format
|
252 |
msgid ""
|
253 |
"Delete the plugin mod_rewrite rules in %s.htaccess enclosed by <code># BEGIN "
|
@@ -255,7 +310,7 @@ msgid ""
|
|
255 |
"regenerate them by reloading this page."
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: wp-cache.php:
|
259 |
msgid ""
|
260 |
"Add the rules yourself. Edit %s.htaccess and find the block of code enclosed "
|
261 |
"by the lines <code># BEGIN WPSuperCache</code> and <code># END WPSuperCache</"
|
@@ -264,11 +319,11 @@ msgid ""
|
|
264 |
"add this line: (do it twice, once for each section)"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: wp-cache.php:
|
268 |
msgid "Note:"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: wp-cache.php:
|
272 |
#, php-format
|
273 |
msgid ""
|
274 |
"If uninstalling this plugin, make sure the directory <em>%s</em> is "
|
@@ -277,7 +332,7 @@ msgid ""
|
|
277 |
"files are writeable too is probably a good idea!)"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: wp-cache.php:
|
281 |
#, php-format
|
282 |
msgid ""
|
283 |
"Uninstall using the <a href=\"%1$s/wp-super-cache/uninstall.php\">uninstall "
|
@@ -286,42 +341,42 @@ msgid ""
|
|
286 |
"instructions on uninstalling this script.)"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: wp-cache.php:
|
290 |
msgid "Update Status"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: wp-cache.php:
|
294 |
msgid "Required to serve compressed supercache files properly."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: wp-cache.php:
|
298 |
msgid ""
|
299 |
"Required to set caching information on supercache pages. IE7 users will see "
|
300 |
"old pages without this module."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: wp-cache.php:
|
304 |
msgid ""
|
305 |
"Set the expiry date on supercached pages. Visitors may not see new pages "
|
306 |
"when they refresh or leave comments without this module."
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: wp-cache.php:
|
310 |
msgid "Missing Apache Modules"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: wp-cache.php:
|
314 |
msgid ""
|
315 |
"The following Apache modules are missing. The plugin will work in half-on "
|
316 |
"mode without them. In full Supercache mode, your visitors may see corrupted "
|
317 |
"pages or out of date content however."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: wp-cache.php:
|
321 |
msgid "Make WordPress Faster"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: wp-cache.php:
|
325 |
#, php-format
|
326 |
msgid ""
|
327 |
"%1$s really makes your blog go faster. Make it go faster<sup>*</sup> by "
|
@@ -329,7 +384,7 @@ msgid ""
|
|
329 |
"for whatever amount you want. Every penny helps!"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: wp-cache.php:
|
333 |
#, php-format
|
334 |
msgid ""
|
335 |
"If Amazon isn’t your thing, there’s also PayPal. Click the "
|
@@ -337,110 +392,122 @@ msgid ""
|
|
337 |
"a>."
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: wp-cache.php:
|
341 |
msgid "Thanks in advance!"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: wp-cache.php:
|
345 |
msgid ""
|
346 |
"Ok, it won’t go any faster but you’ll make this plugin author "
|
347 |
"very happy!"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: wp-cache.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
#, php-format
|
352 |
msgid ""
|
353 |
"%1$s is maintained and developed by %2$s with contributions from many others."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: wp-cache.php:
|
357 |
#, php-format
|
358 |
msgid ""
|
359 |
-
"He blogs at %1$s, posts photos at %2$s and %3$s he
|
360 |
-
"relax."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: wp-cache.php:
|
364 |
#, php-format
|
365 |
msgid "Please say hi to him on %s too!"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: wp-cache.php:
|
369 |
#, php-format
|
370 |
msgid "Cached pages since %1$s : <strong>%2$s</strong>"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: wp-cache.php:
|
374 |
msgid "Newest Cached Pages:"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: wp-cache.php:
|
378 |
#, php-format
|
379 |
msgid "Cached %s seconds ago"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: wp-cache.php:
|
383 |
msgid "(may not always be accurate on busy sites)"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: wp-cache.php:
|
387 |
msgid "Accepted Filenames & Rejected URIs"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: wp-cache.php:
|
391 |
msgid "Cache Plugins"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: wp-cache.php:
|
395 |
msgid "Super Cache Compression"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: wp-cache.php:
|
399 |
msgid "Compression is enabled by default when in <em>HALF ON</em> mode."
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: wp-cache.php:
|
403 |
msgid "Enabled"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: wp-cache.php:
|
407 |
msgid "Disabled"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: wp-cache.php:
|
411 |
msgid ""
|
412 |
"Compression is disabled by default because some hosts have problems with "
|
413 |
"compressed files. Switching this on and off clears the cache."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: wp-cache.php:
|
417 |
msgid "Super Cache compression is now disabled."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: wp-cache.php:
|
421 |
msgid "Super Cache compression is now enabled."
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: wp-cache.php:
|
425 |
msgid "Update Compression"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: wp-cache.php:
|
|
|
|
|
|
|
|
|
429 |
msgid "WordPress MU Detected"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: wp-cache.php:
|
433 |
msgid ""
|
434 |
"Unfortunately the rewrite rules cannot be updated automatically when running "
|
435 |
"WordPress MU. Please open your .htaccess and add the following mod_rewrite "
|
436 |
"rules above any other rules in that file."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: wp-cache.php:
|
440 |
msgid "Mod Rewrite rules cannot be updated!"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: wp-cache.php:
|
444 |
#, php-format
|
445 |
msgid ""
|
446 |
"You must have <strong>BEGIN</strong> and <strong>END</strong> markers in %s."
|
@@ -448,15 +515,15 @@ msgid ""
|
|
448 |
"main WordPress mod_rewrite rules:"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: wp-cache.php:
|
452 |
msgid "Refresh this page when you have updated your .htaccess file."
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: wp-cache.php:
|
456 |
msgid "Thank you for upgrading."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: wp-cache.php:
|
460 |
#, php-format
|
461 |
msgid ""
|
462 |
"The mod_rewrite rules changed since you last installed this plugin. "
|
@@ -469,11 +536,11 @@ msgid ""
|
|
469 |
"brave enough to use them."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: wp-cache.php:
|
473 |
msgid "Trailing slash check required."
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: wp-cache.php:
|
477 |
msgid ""
|
478 |
"It looks like your blog has URLs that end with a \"/\". Unfortunately since "
|
479 |
"you installed this plugin a duplicate content bug has been found where URLs "
|
@@ -482,78 +549,78 @@ msgid ""
|
|
482 |
"and add these two rules to the two groups of Super Cache rules:"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: wp-cache.php:
|
486 |
msgid ""
|
487 |
"You can see where the rules go and examine the complete rules by clicking "
|
488 |
"the \"View mod_rewrite rules\" link below."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: wp-cache.php:
|
492 |
msgid "Cannot update .htaccess"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: wp-cache.php:
|
496 |
#, php-format
|
497 |
msgid ""
|
498 |
"The file <code>%s.htaccess</code> cannot be modified by the web server. "
|
499 |
"Please correct this using the chmod command or your ftp client."
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: wp-cache.php:
|
503 |
msgid "Refresh this page when the file permissions have been modified."
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: wp-cache.php:
|
507 |
#, php-format
|
508 |
msgid ""
|
509 |
"Alternatively, you can edit your <code>%s.htaccess</code> file manually and "
|
510 |
"add the following code (before any WordPress rules):"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: wp-cache.php:
|
514 |
#, php-format
|
515 |
msgid ""
|
516 |
"To serve static html files your server must have the correct mod_rewrite "
|
517 |
"rules added to a file called <code>%s.htaccess</code>"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: wp-cache.php:
|
521 |
msgid "You must edit the file yourself add the following rules."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: wp-cache.php:
|
525 |
msgid "You can edit the file yourself add the following rules."
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: wp-cache.php:
|
529 |
msgid " Make sure they appear before any existing WordPress rules. "
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: wp-cache.php:
|
533 |
#, php-format
|
534 |
msgid "Rules must be added to %s too:"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: wp-cache.php:
|
538 |
msgid "Update Mod_Rewrite Rules"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: wp-cache.php:
|
542 |
msgid "Mod Rewrite rules updated!"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: wp-cache.php:
|
546 |
#, php-format
|
547 |
msgid ""
|
548 |
"%s.htaccess has been updated with the necessary mod_rewrite rules. Please "
|
549 |
"verify they are correct. They should look like this:"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: wp-cache.php:
|
553 |
msgid "Mod Rewrite rules must be updated!"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: wp-cache.php:
|
557 |
#, php-format
|
558 |
msgid ""
|
559 |
"Your %s.htaccess is not writable by the webserver and must be updated with "
|
@@ -561,7 +628,7 @@ msgid ""
|
|
561 |
"WordPress rules as shown in the code below:"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: wp-cache.php:
|
565 |
#, php-format
|
566 |
msgid ""
|
567 |
"WP Super Cache mod rewrite rules were detected in your %s.htaccess file.<br /"
|
@@ -569,114 +636,102 @@ msgid ""
|
|
569 |
"upgraded the plugin make sure these rules match."
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: wp-cache.php:
|
573 |
msgid "View Mod_Rewrite Rules"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: wp-cache.php:
|
577 |
#, php-format
|
578 |
msgid "Gzip encoding rules in %s.htaccess created."
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: wp-cache.php:
|
582 |
msgid "Fix Configuration"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: wp-cache.php:
|
586 |
msgid "Restore Default Configuration"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: wp-cache.php:
|
590 |
msgid ""
|
591 |
"Comment moderation is enabled. Your comment may take some time to appear."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: wp-cache.php:
|
595 |
msgid "Lock Down:"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: wp-cache.php:
|
599 |
msgid ""
|
600 |
"Prepare your server for an expected spike in traffic by enabling the lock "
|
601 |
"down. When this is enabled, new comments on a post will not refresh the "
|
602 |
"cached static files."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: wp-cache.php:
|
606 |
msgid ""
|
607 |
"Developers: Make your plugin lock down compatible by checking the "
|
608 |
"\"WPLOCKDOWN\" constant. The following code will make sure your plugin "
|
609 |
"respects the WPLOCKDOWN setting."
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: wp-cache.php:
|
613 |
msgid "Sorry. My blog is locked down. Updates will appear shortly"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: wp-cache.php:
|
617 |
msgid ""
|
618 |
"WordPress is locked down. Super Cache static files will not be deleted when "
|
619 |
"new comments are made."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: wp-cache.php:
|
623 |
msgid ""
|
624 |
"WordPress is not locked down. New comments will refresh Super Cache static "
|
625 |
"files as normal."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: wp-cache.php:
|
629 |
-
msgid "Disable"
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: wp-cache.php:693
|
633 |
-
msgid "Enable"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: wp-cache.php:696
|
637 |
msgid "Lock Down"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: wp-cache.php:
|
641 |
msgid "Directly Cached Files"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: wp-cache.php:
|
645 |
#, php-format
|
646 |
msgid "%s removed!"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: wp-cache.php:
|
650 |
-
msgid "Warning!"
|
651 |
-
msgstr ""
|
652 |
-
|
653 |
-
#: wp-cache.php:770
|
654 |
#, php-format
|
655 |
msgid ""
|
656 |
"You must make %s writable to enable this feature. As this is a security risk "
|
657 |
"please make it readonly after your page is generated."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: wp-cache.php:
|
661 |
#, php-format
|
662 |
msgid ""
|
663 |
"%s is writable. Please make it readonly after your page is generated as this "
|
664 |
"is a security risk."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: wp-cache.php:
|
668 |
msgid "Existing direct page"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: wp-cache.php:
|
672 |
msgid "Delete cached file"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: wp-cache.php:
|
676 |
msgid "Add direct page:"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: wp-cache.php:
|
680 |
#, php-format
|
681 |
msgid ""
|
682 |
"Directly cached files are files created directly off %s where your blog "
|
@@ -684,7 +739,7 @@ msgid ""
|
|
684 |
"Slashdot level of traffic to one post or page."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: wp-cache.php:
|
688 |
#, php-format
|
689 |
msgid ""
|
690 |
"For example: to cache <em>%1$sabout/</em>, you would enter %1$sabout/ or /"
|
@@ -692,40 +747,40 @@ msgid ""
|
|
692 |
"visits that page."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: wp-cache.php:
|
696 |
msgid ""
|
697 |
"Make the textbox blank to remove it from the list of direct pages and delete "
|
698 |
"the cached file."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: wp-cache.php:
|
702 |
msgid "Update Direct Pages"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: wp-cache.php:
|
706 |
msgid "Expiry Time & Garbage Collection"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: wp-cache.php:
|
710 |
msgid "Expire time:"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: wp-cache.php:
|
714 |
msgid "seconds"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: wp-cache.php:
|
718 |
msgid "Garbage Collection"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: wp-cache.php:
|
722 |
msgid ""
|
723 |
"If expiry time is more than 1800 seconds (half an hour), garbage collection "
|
724 |
"will be done every 10 minutes, otherwise it will happen 10 seconds after the "
|
725 |
"expiry time above."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: wp-cache.php:
|
729 |
msgid ""
|
730 |
"Checking for and deleting expired files is expensive, but it’s "
|
731 |
"expensive leaving them there too. On a very busy site you should set the "
|
@@ -734,73 +789,73 @@ msgid ""
|
|
734 |
"during the day. Aim to have less than 500 cached files if possible."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: wp-cache.php:
|
738 |
msgid "Change Expiration"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: wp-cache.php:
|
742 |
msgid "Rejected User Agents"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: wp-cache.php:
|
746 |
msgid ""
|
747 |
"Strings in the HTTP ’User Agent’ header that prevent WP-Cache "
|
748 |
"from caching bot, spiders, and crawlers’ requests. Note that super "
|
749 |
"cached files are still sent to these agents if they already exists."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: wp-cache.php:
|
753 |
msgid "Save UA Strings"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: wp-cache.php:
|
757 |
msgid ""
|
758 |
"Do not cache the following page types. See the <a href=\"http://codex."
|
759 |
"wordpress.org/Conditional_Tags\">Conditional Tags</a> documentation for a "
|
760 |
"complete discussion on each type."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: wp-cache.php:
|
764 |
msgid "Single Posts"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: wp-cache.php:
|
768 |
msgid "Pages"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: wp-cache.php:
|
772 |
msgid "Front Page"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: wp-cache.php:
|
776 |
msgid "Home"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: wp-cache.php:
|
780 |
msgid "Archives"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: wp-cache.php:
|
784 |
msgid "Tags"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: wp-cache.php:
|
788 |
msgid "Category"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: wp-cache.php:
|
792 |
msgid "Feeds"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: wp-cache.php:
|
796 |
msgid "Search Pages"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: wp-cache.php:
|
800 |
msgid "Save"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: wp-cache.php:
|
804 |
msgid ""
|
805 |
"Add here strings (not a filename) that forces a page not to be cached. For "
|
806 |
"example, if your URLs include year and you dont want to cache last year "
|
@@ -809,127 +864,182 @@ msgid ""
|
|
809 |
"cache that page."
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: wp-cache.php:
|
813 |
msgid "Save Strings"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: wp-cache.php:
|
817 |
msgid ""
|
818 |
"Add here those filenames that can be cached, even if they match one of the "
|
819 |
"rejected substring specified above."
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: wp-cache.php:
|
823 |
msgid "Save Files"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: wp-cache.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
827 |
msgid ""
|
828 |
"Fix problems with the plugin by debugging it here. It can send you debug "
|
829 |
"emails or log them to a file in your cache directory."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: wp-cache.php:
|
833 |
msgid ""
|
834 |
"Logging to a file is easier but faces the problem that clearing the cache "
|
835 |
"will clear the log file."
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: wp-cache.php:
|
839 |
msgid "Debugging"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: wp-cache.php:
|
843 |
-
msgid "
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: wp-cache.php:
|
847 |
msgid "Email"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: wp-cache.php:
|
851 |
msgid "file"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: wp-cache.php:
|
855 |
msgid "IP Address"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: wp-cache.php:
|
859 |
#, php-format
|
860 |
msgid "(only log requests from this IP address. Your IP is %s)"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: wp-cache.php:
|
|
|
|
|
|
|
|
|
864 |
msgid "(1 = less, 5 = more, may cause severe server load.)"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: wp-cache.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
868 |
msgid ""
|
869 |
"Error: GZIP compression is enabled, disable it if you want to enable wp-"
|
870 |
"cache."
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: wp-cache.php:
|
874 |
msgid "Warning"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: wp-cache.php:
|
878 |
msgid ""
|
879 |
"GZIP compression is enabled in Wordpress, wp-cache will be bypassed until "
|
880 |
"you disable gzip compression."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: wp-cache.php:
|
884 |
-
#: wp-cache.php:
|
885 |
msgid "Error"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: wp-cache.php:
|
889 |
#, php-format
|
890 |
msgid ""
|
891 |
"Your cache directory (<strong>$cache_path</strong>) did not exist and "
|
892 |
"couldn’t be created by the web server. Check %s permissions."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: wp-cache.php:
|
896 |
#, php-format
|
897 |
msgid ""
|
898 |
"Your cache directory (<strong>%1$s</strong>) or <strong>%2$s</strong> need "
|
899 |
"to be writable for this plugin to work. Double-check it."
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: wp-cache.php:
|
903 |
#, php-format
|
904 |
msgid ""
|
905 |
"Your WP-Cache config file (<strong>%s</strong>) is out of date and not "
|
906 |
"writable by the Web server.Please delete it and refresh this page."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: wp-cache.php:
|
910 |
#, php-format
|
911 |
msgid ""
|
912 |
"Configuration file missing and %1$s directory (<strong>%2$s</strong>) is "
|
913 |
"not writable by the Web server.Check its permissions."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: wp-cache.php:
|
917 |
#, php-format
|
918 |
msgid ""
|
919 |
"Sample WP-Cache config file (<strong>%s</strong>) does not exist.Verify you "
|
920 |
"installation."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: wp-cache.php:
|
924 |
#, php-format
|
925 |
msgid "%s/advanced-cache.php</em> does not exist or cannot be updated."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: wp-cache.php:
|
929 |
msgid "1. If it already exists please delete the file first."
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: wp-cache.php:
|
933 |
#, php-format
|
934 |
msgid ""
|
935 |
"2. Make %1$s writable using the chmod command through your ftp or server "
|
@@ -938,19 +1048,19 @@ msgid ""
|
|
938 |
"again. (Change 777 to 755 in the previous command)"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: wp-cache.php:
|
942 |
#, php-format
|
943 |
msgid "3. Refresh this page to update <em>%s/advanced-cache.php</em>"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: wp-cache.php:
|
947 |
#, php-format
|
948 |
msgid ""
|
949 |
"If that doesn’t work, make sure the file <em>%s/advanced-cache.php</"
|
950 |
"em> doesn’t exist:"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: wp-cache.php:
|
954 |
#, php-format
|
955 |
msgid ""
|
956 |
"<li>1. Open <em>%1$s$wp_cache_file</em> in a text editor.</li><li>2. Change "
|
@@ -958,138 +1068,211 @@ msgid ""
|
|
958 |
"copy it to <em>%3$s</em> and refresh this page.</li>"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: wp-cache.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
#, php-format
|
963 |
msgid ""
|
964 |
-
"Edit <code>%s</code> and add the following line
|
965 |
-
"true);</code
|
966 |
-
"Wordpress core. "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: wp-cache.php:
|
970 |
msgid ""
|
971 |
-
"<
|
972 |
-
"
|
|
|
|
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: wp-cache.php:
|
|
|
|
|
|
|
|
|
976 |
#, php-format
|
977 |
msgid "Deleting supercache file: <strong>%s</strong><br />"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: wp-cache.php:
|
981 |
#, php-format
|
982 |
msgid "Deleting wp-cache file: <strong>%s</strong><br />"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: wp-cache.php:
|
986 |
msgid "WP-Cache"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: wp-cache.php:
|
990 |
#, php-format
|
991 |
msgid "%s Cached Pages"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: wp-cache.php:
|
995 |
#, php-format
|
996 |
msgid "%s Expired Pages"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: wp-cache.php:
|
1000 |
msgid "WP-Super-Cache"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: wp-cache.php:
|
1004 |
msgid "Fresh WP-Cached Files"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: wp-cache.php:
|
1008 |
msgid "URI"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: wp-cache.php:
|
1012 |
msgid "Key"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: wp-cache.php:
|
1016 |
msgid "Age"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: wp-cache.php:
|
1020 |
msgid "Delete"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: wp-cache.php:
|
1024 |
msgid "Stale WP-Cached Files"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: wp-cache.php:
|
1028 |
msgid "Fresh Super Cached Files"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: wp-cache.php:
|
1032 |
msgid "Stale Super Cached Files"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: wp-cache.php:
|
1036 |
msgid "Hide file list"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: wp-cache.php:
|
1040 |
msgid "List all cached files"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: wp-cache.php:
|
1044 |
#, php-format
|
1045 |
msgid ""
|
1046 |
"<strong>Garbage Collection</strong><br />Last GC was <strong>%s</strong> "
|
1047 |
"minutes ago<br />"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: wp-cache.php:
|
1051 |
#, php-format
|
1052 |
msgid "Next GC in <strong>%s</strong> minutes"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: wp-cache.php:
|
1056 |
#, php-format
|
1057 |
msgid ""
|
1058 |
"Expired files are files older than %s seconds. They are still used by the "
|
1059 |
"plugin and are deleted periodically."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: wp-cache.php:
|
1063 |
msgid "Delete Expired"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: wp-cache.php:
|
1067 |
msgid "Delete Cache"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: wp-cache.php:
|
1071 |
msgid "Delete Super Cache cached files (opens in new window)"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: wp-cache.php:
|
1075 |
#, php-format
|
1076 |
msgid "%1$s is Digg proof thanks to caching by %2$s"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: wp-cache.php:
|
1080 |
#, php-format
|
1081 |
msgid ""
|
1082 |
"WP Super Cache must be configured. Go to <a href=\"%s\">the admin page</a> "
|
1083 |
"to enable and configure the plugin."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: wp-cache.php:
|
1087 |
msgid "Settings"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: wp-cache.php:
|
1091 |
#, php-format
|
1092 |
msgid ""
|
1093 |
"WP Super Cache is disabled. Please go to the <a href=\"%s\">plugin admin "
|
1094 |
"page</a> to enable caching."
|
1095 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: PACKAGE VERSION\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-super-cache\n"
|
10 |
+
"POT-Creation-Date: 2009-11-13 10:27+0000\n"
|
11 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
"Content-Type: text/plain; charset=CHARSET\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
|
18 |
+
#: plugins/badbehaviour.php:45
|
19 |
+
msgid "Bad Behaviour not found. Please check your install."
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: plugins/badbehaviour.php:47 plugins/badbehaviour.php:66
|
23 |
+
#: plugins/searchengine.php:61 plugins/searchengine.php:76 wp-cache.php:709
|
24 |
+
msgid "Disable"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: plugins/badbehaviour.php:55 plugins/searchengine.php:67
|
28 |
+
msgid "disabled"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: plugins/badbehaviour.php:57 plugins/searchengine.php:69 wp-cache.php:1052
|
32 |
+
msgid "enabled"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: plugins/badbehaviour.php:60
|
36 |
+
#, php-format
|
37 |
+
msgid "Bad Behaviour support is %s"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: plugins/badbehaviour.php:62
|
41 |
+
#, php-format
|
42 |
+
msgid ""
|
43 |
+
"(Only half-on caching supported, disabled compression and requires <a href="
|
44 |
+
"\"http://www.bad-behavior.ioerror.us/\">Bad Behavior</a> in \"%s/plugins/bad-"
|
45 |
+
"behavior/\") "
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: plugins/badbehaviour.php:64 plugins/searchengine.php:74 wp-cache.php:709
|
49 |
+
msgid "Enable"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: plugins/badbehaviour.php:70 wp-cache.php:786 wp-cache.php:788
|
53 |
+
msgid "Warning!"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: plugins/searchengine.php:71
|
57 |
+
#, php-format
|
58 |
+
msgid ""
|
59 |
+
"<a href=\"http://ocaoimh.ie/no-adverts-for-friends/\">No Adverts for "
|
60 |
+
"Friends</a> plugin is %s"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: plugins/searchengine.php:72
|
64 |
+
msgid ""
|
65 |
+
"(requires <a href=\"http://ocaoimh.ie/no-adverts-for-friends/"
|
66 |
+
"\">friendsadverts.php</a> too) "
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: wp-cache.php:87
|
70 |
#, php-format
|
71 |
msgid ""
|
72 |
"Please create %s /wp-cache-config.php from wp-super-cache/wp-cache-config-"
|
73 |
"sample.php"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: wp-cache.php:170
|
77 |
+
msgid "WP Super Cache Manager"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: wp-cache.php:172
|
81 |
msgid "Warning! PHP Safe Mode Enabled!"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: wp-cache.php:173
|
85 |
msgid ""
|
86 |
"You may experience problems running this plugin because SAFE MODE is enabled."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: wp-cache.php:175
|
90 |
msgid ""
|
91 |
"Your server is set up to check the owner of PHP scripts before allowing them "
|
92 |
"to read and write files."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: wp-cache.php:176
|
96 |
#, php-format
|
97 |
msgid ""
|
98 |
"You or an administrator may be able to make it work by changing the group "
|
102 |
"details."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: wp-cache.php:178
|
106 |
msgid ""
|
107 |
"You or an administrator must disable this. See the <a href=\"http://php.net/"
|
108 |
"features.safe-mode\">safe mode manual page</a> for further details. This "
|
110 |
"php.ini config file."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: wp-cache.php:189
|
114 |
msgid ""
|
115 |
"Configuration file changed, some values might be wrong. Load the page again "
|
116 |
"from the \"Settings\" menu to reset them."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: wp-cache.php:195
|
120 |
msgid "Cannot continue... fix previous problems and retry."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: wp-cache.php:211
|
124 |
#, php-format
|
125 |
msgid "Warning! Your hostname \"%s\" resolves to %s"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: wp-cache.php:213
|
129 |
#, php-format
|
130 |
msgid ""
|
131 |
"Your server thinks your hostname resolves to %s. Some services such as "
|
133 |
"operate correctly."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: wp-cache.php:214 wp-cache.php:228
|
137 |
#, php-format
|
138 |
msgid ""
|
139 |
"Please see entry 16 in the <a href=\"%s\">Troubleshooting section</a> of the "
|
140 |
"readme.txt"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: wp-cache.php:227
|
144 |
msgid ""
|
145 |
"Unfortunately WordPress cannot find the file wp-cron.php. This script is "
|
146 |
"required for the the correct operation of garbage collection by this plugin, "
|
147 |
"WordPress scheduled posts as well as other critical activities."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: wp-cache.php:239
|
151 |
msgid "Mod rewrite may not be installed!"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: wp-cache.php:240
|
155 |
msgid ""
|
156 |
"It appears that mod_rewrite is not installed. Sometimes this check isn’"
|
157 |
"t 100% reliable, especially if you are not using Apache. Please verify that "
|
159 |
"static files. You will still be able to use half-on mode."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-cache.php:245
|
163 |
msgid "Read Only Mode. Configuration cannot be changed."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: wp-cache.php:245
|
167 |
msgid "Why your configuration may not be changed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: wp-cache.php:245
|
171 |
msgid "Why"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: wp-cache.php:247
|
175 |
#, php-format
|
176 |
msgid ""
|
177 |
"The WP Super Cache configuration file is <code>%s/wp-cache-config.php</code> "
|
179 |
"any changes."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: wp-cache.php:248
|
183 |
msgid ""
|
184 |
"A simple way of doing that is by changing the permissions temporarily using "
|
185 |
"the CHMOD command or through your ftp client. Make sure it’s globally "
|
186 |
"writeable and it should be fine."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: wp-cache.php:249
|
190 |
msgid "Writeable:"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: wp-cache.php:250
|
194 |
msgid "Readonly:"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: wp-cache.php:262
|
198 |
#, php-format
|
199 |
msgid "Warning! %s is writeable!"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: wp-cache.php:263
|
203 |
#, php-format
|
204 |
msgid ""
|
205 |
"You should change the permissions on %s and make it more restrictive. Use "
|
206 |
"your ftp client, or the following command to fix things:"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: wp-cache.php:354
|
210 |
msgid "WP Super Cache Status"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: wp-cache.php:357
|
214 |
msgid "ON"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: wp-cache.php:357
|
218 |
msgid "WP Cache and Super Cache enabled"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: wp-cache.php:358
|
222 |
msgid "HALF ON"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: wp-cache.php:358
|
226 |
msgid "Super Cache Disabled, only legacy WP-Cache caching."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: wp-cache.php:359
|
230 |
msgid "OFF"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: wp-cache.php:359
|
234 |
msgid "WP Cache and Super Cache disabled"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: wp-cache.php:360
|
238 |
msgid "Don’t cache pages for logged in users."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: wp-cache.php:361
|
242 |
msgid ""
|
243 |
"Proudly tell the world your server is Digg proof! (places a message in your "
|
244 |
"blog’s footer)"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: wp-cache.php:362
|
248 |
msgid ""
|
249 |
"Clear all cache files when a post or page is published. (This may "
|
250 |
"significantly slow down saving of posts.)"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: wp-cache.php:363
|
254 |
msgid ""
|
255 |
"Cache rebuild. Serve a supercache file to anonymous users while a new file "
|
256 |
"is being generated. Recommended for <em>very</em> busy websites with lots of "
|
257 |
"comments. Makes \"directly cached pages\" and \"Lockdown mode\" obsolete."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: wp-cache.php:365
|
261 |
msgid ""
|
262 |
"Coarse file locking. You probably don’t need this but it may help if "
|
263 |
"your server is underpowered. Warning! <em>May cause your server to lock up "
|
264 |
"in very rare cases!</em>"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: wp-cache.php:367
|
268 |
msgid ""
|
269 |
"List the newest cached pages (may be expensive to run on busy sites, use "
|
270 |
"with caution.)"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: wp-cache.php:368
|
274 |
msgid "Mobile device support."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: wp-cache.php:373
|
278 |
msgid "Mobile rewrite rules detected"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: wp-cache.php:374
|
282 |
msgid ""
|
283 |
"For best performance you should enable \"Mobile device support\" or delete "
|
284 |
"the mobile rewrite rules in your .htaccess. Look for the 2 lines with the "
|
286 |
"delete those."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: wp-cache.php:374
|
290 |
msgid ""
|
291 |
"This will have no affect on ordinary users but mobile users will see "
|
292 |
"uncached pages."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: wp-cache.php:377
|
296 |
msgid ""
|
297 |
"Mobile support requires extra rules in your .htaccess file, or you can set "
|
298 |
"the plugin to half-on mode. Here are your options (in order of difficulty):"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: wp-cache.php:378
|
302 |
msgid "Set the plugin to half on mode and enable mobile support."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: wp-cache.php:379
|
306 |
#, php-format
|
307 |
msgid ""
|
308 |
"Delete the plugin mod_rewrite rules in %s.htaccess enclosed by <code># BEGIN "
|
310 |
"regenerate them by reloading this page."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: wp-cache.php:380
|
314 |
msgid ""
|
315 |
"Add the rules yourself. Edit %s.htaccess and find the block of code enclosed "
|
316 |
"by the lines <code># BEGIN WPSuperCache</code> and <code># END WPSuperCache</"
|
319 |
"add this line: (do it twice, once for each section)"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: wp-cache.php:383
|
323 |
msgid "Note:"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: wp-cache.php:383
|
327 |
#, php-format
|
328 |
msgid ""
|
329 |
"If uninstalling this plugin, make sure the directory <em>%s</em> is "
|
332 |
"files are writeable too is probably a good idea!)"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: wp-cache.php:384
|
336 |
#, php-format
|
337 |
msgid ""
|
338 |
"Uninstall using the <a href=\"%1$s/wp-super-cache/uninstall.php\">uninstall "
|
341 |
"instructions on uninstalling this script.)"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: wp-cache.php:386
|
345 |
msgid "Update Status"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: wp-cache.php:393
|
349 |
msgid "Required to serve compressed supercache files properly."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: wp-cache.php:393
|
353 |
msgid ""
|
354 |
"Required to set caching information on supercache pages. IE7 users will see "
|
355 |
"old pages without this module."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: wp-cache.php:393
|
359 |
msgid ""
|
360 |
"Set the expiry date on supercached pages. Visitors may not see new pages "
|
361 |
"when they refresh or leave comments without this module."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: wp-cache.php:400
|
365 |
msgid "Missing Apache Modules"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: wp-cache.php:401
|
369 |
msgid ""
|
370 |
"The following Apache modules are missing. The plugin will work in half-on "
|
371 |
"mode without them. In full Supercache mode, your visitors may see corrupted "
|
372 |
"pages or out of date content however."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: wp-cache.php:413
|
376 |
msgid "Make WordPress Faster"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: wp-cache.php:415
|
380 |
#, php-format
|
381 |
msgid ""
|
382 |
"%1$s really makes your blog go faster. Make it go faster<sup>*</sup> by "
|
384 |
"for whatever amount you want. Every penny helps!"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: wp-cache.php:416
|
388 |
#, php-format
|
389 |
msgid ""
|
390 |
"If Amazon isn’t your thing, there’s also PayPal. Click the "
|
392 |
"a>."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: wp-cache.php:417
|
396 |
msgid "Thanks in advance!"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: wp-cache.php:418
|
400 |
msgid ""
|
401 |
"Ok, it won’t go any faster but you’ll make this plugin author "
|
402 |
"very happy!"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: wp-cache.php:426
|
406 |
+
msgid "Don’t show me this again."
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: wp-cache.php:426
|
410 |
+
msgid "Hide"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: wp-cache.php:429
|
414 |
#, php-format
|
415 |
msgid ""
|
416 |
"%1$s is maintained and developed by %2$s with contributions from many others."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: wp-cache.php:430
|
420 |
#, php-format
|
421 |
msgid ""
|
422 |
+
"He blogs at %1$s, posts photos at %2$s and <a href=\"%3$s\">wishes</a> he "
|
423 |
+
"had more time to read and relax."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: wp-cache.php:431
|
427 |
#, php-format
|
428 |
msgid "Please say hi to him on %s too!"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: wp-cache.php:440
|
432 |
#, php-format
|
433 |
msgid "Cached pages since %1$s : <strong>%2$s</strong>"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: wp-cache.php:441
|
437 |
msgid "Newest Cached Pages:"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: wp-cache.php:445
|
441 |
#, php-format
|
442 |
msgid "Cached %s seconds ago"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: wp-cache.php:448
|
446 |
msgid "(may not always be accurate on busy sites)"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: wp-cache.php:469
|
450 |
msgid "Accepted Filenames & Rejected URIs"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: wp-cache.php:494
|
454 |
msgid "Cache Plugins"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: wp-cache.php:505 wp-cache.php:516
|
458 |
msgid "Super Cache Compression"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: wp-cache.php:506
|
462 |
msgid "Compression is enabled by default when in <em>HALF ON</em> mode."
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: wp-cache.php:518 wp-cache.php:696
|
466 |
msgid "Enabled"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: wp-cache.php:519 wp-cache.php:696
|
470 |
msgid "Disabled"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: wp-cache.php:520
|
474 |
msgid ""
|
475 |
"Compression is disabled by default because some hosts have problems with "
|
476 |
"compressed files. Switching this on and off clears the cache."
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: wp-cache.php:523
|
480 |
msgid "Super Cache compression is now disabled."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: wp-cache.php:525
|
484 |
msgid "Super Cache compression is now enabled."
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: wp-cache.php:527
|
488 |
msgid "Update Compression"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: wp-cache.php:534
|
492 |
+
msgid "Mod Rewrite Rules"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: wp-cache.php:581
|
496 |
msgid "WordPress MU Detected"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: wp-cache.php:581
|
500 |
msgid ""
|
501 |
"Unfortunately the rewrite rules cannot be updated automatically when running "
|
502 |
"WordPress MU. Please open your .htaccess and add the following mod_rewrite "
|
503 |
"rules above any other rules in that file."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: wp-cache.php:583
|
507 |
msgid "Mod Rewrite rules cannot be updated!"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: wp-cache.php:584
|
511 |
#, php-format
|
512 |
msgid ""
|
513 |
"You must have <strong>BEGIN</strong> and <strong>END</strong> markers in %s."
|
515 |
"main WordPress mod_rewrite rules:"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: wp-cache.php:586
|
519 |
msgid "Refresh this page when you have updated your .htaccess file."
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: wp-cache.php:590
|
523 |
msgid "Thank you for upgrading."
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: wp-cache.php:590
|
527 |
#, php-format
|
528 |
msgid ""
|
529 |
"The mod_rewrite rules changed since you last installed this plugin. "
|
536 |
"brave enough to use them."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: wp-cache.php:594
|
540 |
msgid "Trailing slash check required."
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: wp-cache.php:594
|
544 |
msgid ""
|
545 |
"It looks like your blog has URLs that end with a \"/\". Unfortunately since "
|
546 |
"you installed this plugin a duplicate content bug has been found where URLs "
|
549 |
"and add these two rules to the two groups of Super Cache rules:"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: wp-cache.php:596
|
553 |
msgid ""
|
554 |
"You can see where the rules go and examine the complete rules by clicking "
|
555 |
"the \"View mod_rewrite rules\" link below."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: wp-cache.php:608
|
559 |
msgid "Cannot update .htaccess"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: wp-cache.php:608
|
563 |
#, php-format
|
564 |
msgid ""
|
565 |
"The file <code>%s.htaccess</code> cannot be modified by the web server. "
|
566 |
"Please correct this using the chmod command or your ftp client."
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: wp-cache.php:608
|
570 |
msgid "Refresh this page when the file permissions have been modified."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: wp-cache.php:608
|
574 |
#, php-format
|
575 |
msgid ""
|
576 |
"Alternatively, you can edit your <code>%s.htaccess</code> file manually and "
|
577 |
"add the following code (before any WordPress rules):"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: wp-cache.php:611
|
581 |
#, php-format
|
582 |
msgid ""
|
583 |
"To serve static html files your server must have the correct mod_rewrite "
|
584 |
"rules added to a file called <code>%s.htaccess</code>"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: wp-cache.php:613
|
588 |
msgid "You must edit the file yourself add the following rules."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: wp-cache.php:615
|
592 |
msgid "You can edit the file yourself add the following rules."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: wp-cache.php:617
|
596 |
msgid " Make sure they appear before any existing WordPress rules. "
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: wp-cache.php:619 wp-cache.php:646
|
600 |
#, php-format
|
601 |
msgid "Rules must be added to %s too:"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: wp-cache.php:624
|
605 |
msgid "Update Mod_Rewrite Rules"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: wp-cache.php:633
|
609 |
msgid "Mod Rewrite rules updated!"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: wp-cache.php:634
|
613 |
#, php-format
|
614 |
msgid ""
|
615 |
"%s.htaccess has been updated with the necessary mod_rewrite rules. Please "
|
616 |
"verify they are correct. They should look like this:"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: wp-cache.php:636
|
620 |
msgid "Mod Rewrite rules must be updated!"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: wp-cache.php:637
|
624 |
#, php-format
|
625 |
msgid ""
|
626 |
"Your %s.htaccess is not writable by the webserver and must be updated with "
|
628 |
"WordPress rules as shown in the code below:"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: wp-cache.php:642
|
632 |
#, php-format
|
633 |
msgid ""
|
634 |
"WP Super Cache mod rewrite rules were detected in your %s.htaccess file.<br /"
|
636 |
"upgraded the plugin make sure these rules match."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: wp-cache.php:643
|
640 |
msgid "View Mod_Rewrite Rules"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: wp-cache.php:654
|
644 |
#, php-format
|
645 |
msgid "Gzip encoding rules in %s.htaccess created."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: wp-cache.php:661
|
649 |
msgid "Fix Configuration"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: wp-cache.php:664
|
653 |
msgid "Restore Default Configuration"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: wp-cache.php:672
|
657 |
msgid ""
|
658 |
"Comment moderation is enabled. Your comment may take some time to appear."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: wp-cache.php:696
|
662 |
msgid "Lock Down:"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: wp-cache.php:697
|
666 |
msgid ""
|
667 |
"Prepare your server for an expected spike in traffic by enabling the lock "
|
668 |
"down. When this is enabled, new comments on a post will not refresh the "
|
669 |
"cached static files."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: wp-cache.php:698
|
673 |
msgid ""
|
674 |
"Developers: Make your plugin lock down compatible by checking the "
|
675 |
"\"WPLOCKDOWN\" constant. The following code will make sure your plugin "
|
676 |
"respects the WPLOCKDOWN setting."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: wp-cache.php:700
|
680 |
msgid "Sorry. My blog is locked down. Updates will appear shortly"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: wp-cache.php:704
|
684 |
msgid ""
|
685 |
"WordPress is locked down. Super Cache static files will not be deleted when "
|
686 |
"new comments are made."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: wp-cache.php:706
|
690 |
msgid ""
|
691 |
"WordPress is not locked down. New comments will refresh Super Cache static "
|
692 |
"files as normal."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: wp-cache.php:712
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
696 |
msgid "Lock Down"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: wp-cache.php:720
|
700 |
msgid "Directly Cached Files"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: wp-cache.php:778
|
704 |
#, php-format
|
705 |
msgid "%s removed!"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: wp-cache.php:786
|
|
|
|
|
|
|
|
|
709 |
#, php-format
|
710 |
msgid ""
|
711 |
"You must make %s writable to enable this feature. As this is a security risk "
|
712 |
"please make it readonly after your page is generated."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: wp-cache.php:788
|
716 |
#, php-format
|
717 |
msgid ""
|
718 |
"%s is writable. Please make it readonly after your page is generated as this "
|
719 |
"is a security risk."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: wp-cache.php:802
|
723 |
msgid "Existing direct page"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: wp-cache.php:802
|
727 |
msgid "Delete cached file"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: wp-cache.php:807
|
731 |
msgid "Add direct page:"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: wp-cache.php:809
|
735 |
#, php-format
|
736 |
msgid ""
|
737 |
"Directly cached files are files created directly off %s where your blog "
|
739 |
"Slashdot level of traffic to one post or page."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: wp-cache.php:811
|
743 |
#, php-format
|
744 |
msgid ""
|
745 |
"For example: to cache <em>%1$sabout/</em>, you would enter %1$sabout/ or /"
|
747 |
"visits that page."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: wp-cache.php:812
|
751 |
msgid ""
|
752 |
"Make the textbox blank to remove it from the list of direct pages and delete "
|
753 |
"the cached file."
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: wp-cache.php:817
|
757 |
msgid "Update Direct Pages"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: wp-cache.php:857
|
761 |
msgid "Expiry Time & Garbage Collection"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: wp-cache.php:859
|
765 |
msgid "Expire time:"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: wp-cache.php:860
|
769 |
msgid "seconds"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: wp-cache.php:861
|
773 |
msgid "Garbage Collection"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: wp-cache.php:861
|
777 |
msgid ""
|
778 |
"If expiry time is more than 1800 seconds (half an hour), garbage collection "
|
779 |
"will be done every 10 minutes, otherwise it will happen 10 seconds after the "
|
780 |
"expiry time above."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: wp-cache.php:862
|
784 |
msgid ""
|
785 |
"Checking for and deleting expired files is expensive, but it’s "
|
786 |
"expensive leaving them there too. On a very busy site you should set the "
|
789 |
"during the day. Aim to have less than 500 cached files if possible."
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: wp-cache.php:863
|
793 |
msgid "Change Expiration"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: wp-cache.php:902
|
797 |
msgid "Rejected User Agents"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: wp-cache.php:903
|
801 |
msgid ""
|
802 |
"Strings in the HTTP ’User Agent’ header that prevent WP-Cache "
|
803 |
"from caching bot, spiders, and crawlers’ requests. Note that super "
|
804 |
"cached files are still sent to these agents if they already exists."
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: wp-cache.php:910
|
808 |
msgid "Save UA Strings"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: wp-cache.php:933
|
812 |
msgid ""
|
813 |
"Do not cache the following page types. See the <a href=\"http://codex."
|
814 |
"wordpress.org/Conditional_Tags\">Conditional Tags</a> documentation for a "
|
815 |
"complete discussion on each type."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: wp-cache.php:936
|
819 |
msgid "Single Posts"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: wp-cache.php:937
|
823 |
msgid "Pages"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: wp-cache.php:938
|
827 |
msgid "Front Page"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: wp-cache.php:939
|
831 |
msgid "Home"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: wp-cache.php:940
|
835 |
msgid "Archives"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: wp-cache.php:941
|
839 |
msgid "Tags"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: wp-cache.php:942
|
843 |
msgid "Category"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: wp-cache.php:943
|
847 |
msgid "Feeds"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: wp-cache.php:944
|
851 |
msgid "Search Pages"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: wp-cache.php:946 wp-cache.php:1073
|
855 |
msgid "Save"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: wp-cache.php:963
|
859 |
msgid ""
|
860 |
"Add here strings (not a filename) that forces a page not to be cached. For "
|
861 |
"example, if your URLs include year and you dont want to cache last year "
|
864 |
"cache that page."
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: wp-cache.php:969
|
868 |
msgid "Save Strings"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: wp-cache.php:985
|
872 |
msgid ""
|
873 |
"Add here those filenames that can be cached, even if they match one of the "
|
874 |
"rejected substring specified above."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: wp-cache.php:991
|
878 |
msgid "Save Files"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: wp-cache.php:1035
|
882 |
+
msgid "Debug Settings"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: wp-cache.php:1037
|
886 |
+
msgid "Currently logging to: "
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: wp-cache.php:1047
|
890 |
msgid ""
|
891 |
"Fix problems with the plugin by debugging it here. It can send you debug "
|
892 |
"emails or log them to a file in your cache directory."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: wp-cache.php:1048
|
896 |
msgid ""
|
897 |
"Logging to a file is easier but faces the problem that clearing the cache "
|
898 |
"will clear the log file."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: wp-cache.php:1052
|
902 |
msgid "Debugging"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: wp-cache.php:1053
|
906 |
+
msgid "Logging Type"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: wp-cache.php:1053
|
910 |
msgid "Email"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: wp-cache.php:1054
|
914 |
msgid "file"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: wp-cache.php:1055
|
918 |
msgid "IP Address"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: wp-cache.php:1055
|
922 |
#, php-format
|
923 |
msgid "(only log requests from this IP address. Your IP is %s)"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: wp-cache.php:1056
|
927 |
+
msgid "Log level"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: wp-cache.php:1062
|
931 |
msgid "(1 = less, 5 = more, may cause severe server load.)"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: wp-cache.php:1064
|
935 |
+
msgid "Advanced"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: wp-cache.php:1064
|
939 |
+
msgid ""
|
940 |
+
"In very rare cases two problems may arise on some blogs:<ol><li> The front "
|
941 |
+
"page may start downloading as a zip file.</li><li> The wrong page is "
|
942 |
+
"occasionally cached as the front page if your blog uses a static front page "
|
943 |
+
"and the permalink structure is <em>/%category%/%postname%/</em>.</li></ol>"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: wp-cache.php:1065
|
947 |
+
#, php-format
|
948 |
+
msgid ""
|
949 |
+
"I’m 99% certain that they aren’t bugs in WP Super Cache and they "
|
950 |
+
"only happen in very rare cases but you can run a simple check once every 5 "
|
951 |
+
"minutes to verify that your site is ok if you’re worried. You will be "
|
952 |
+
"emailed if there is a problem."
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: wp-cache.php:1067
|
956 |
+
msgid "Check front page every 5 minutes."
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: wp-cache.php:1068
|
960 |
+
msgid "Front page text"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: wp-cache.php:1068
|
964 |
+
msgid ""
|
965 |
+
"Text to search for on your front page. If this text is missing the cache "
|
966 |
+
"will be cleared. Leave blank to disable."
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: wp-cache.php:1069
|
970 |
+
msgid "Clear cache on error."
|
971 |
+
msgstr ""
|
972 |
+
|
973 |
+
#: wp-cache.php:1070
|
974 |
+
msgid "Email the blog admin when checks are made. (useful for testing)"
|
975 |
+
msgstr ""
|
976 |
+
|
977 |
+
#: wp-cache.php:1083
|
978 |
msgid ""
|
979 |
"Error: GZIP compression is enabled, disable it if you want to enable wp-"
|
980 |
"cache."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: wp-cache.php:1131 wp-cache.php:1293
|
984 |
msgid "Warning"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: wp-cache.php:1131
|
988 |
msgid ""
|
989 |
"GZIP compression is enabled in Wordpress, wp-cache will be bypassed until "
|
990 |
"you disable gzip compression."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: wp-cache.php:1189 wp-cache.php:1194 wp-cache.php:1226 wp-cache.php:1231
|
994 |
+
#: wp-cache.php:1237
|
995 |
msgid "Error"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: wp-cache.php:1189
|
999 |
#, php-format
|
1000 |
msgid ""
|
1001 |
"Your cache directory (<strong>$cache_path</strong>) did not exist and "
|
1002 |
"couldn’t be created by the web server. Check %s permissions."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: wp-cache.php:1194
|
1006 |
#, php-format
|
1007 |
msgid ""
|
1008 |
"Your cache directory (<strong>%1$s</strong>) or <strong>%2$s</strong> need "
|
1009 |
"to be writable for this plugin to work. Double-check it."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: wp-cache.php:1226
|
1013 |
#, php-format
|
1014 |
msgid ""
|
1015 |
"Your WP-Cache config file (<strong>%s</strong>) is out of date and not "
|
1016 |
"writable by the Web server.Please delete it and refresh this page."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: wp-cache.php:1231
|
1020 |
#, php-format
|
1021 |
msgid ""
|
1022 |
"Configuration file missing and %1$s directory (<strong>%2$s</strong>) is "
|
1023 |
"not writable by the Web server.Check its permissions."
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: wp-cache.php:1237
|
1027 |
#, php-format
|
1028 |
msgid ""
|
1029 |
"Sample WP-Cache config file (<strong>%s</strong>) does not exist.Verify you "
|
1030 |
"installation."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: wp-cache.php:1293
|
1034 |
#, php-format
|
1035 |
msgid "%s/advanced-cache.php</em> does not exist or cannot be updated."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: wp-cache.php:1294
|
1039 |
msgid "1. If it already exists please delete the file first."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: wp-cache.php:1295
|
1043 |
#, php-format
|
1044 |
msgid ""
|
1045 |
"2. Make %1$s writable using the chmod command through your ftp or server "
|
1048 |
"again. (Change 777 to 755 in the previous command)"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: wp-cache.php:1296
|
1052 |
#, php-format
|
1053 |
msgid "3. Refresh this page to update <em>%s/advanced-cache.php</em>"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: wp-cache.php:1297
|
1057 |
#, php-format
|
1058 |
msgid ""
|
1059 |
"If that doesn’t work, make sure the file <em>%s/advanced-cache.php</"
|
1060 |
"em> doesn’t exist:"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: wp-cache.php:1298
|
1064 |
#, php-format
|
1065 |
msgid ""
|
1066 |
"<li>1. Open <em>%1$s$wp_cache_file</em> in a text editor.</li><li>2. Change "
|
1068 |
"copy it to <em>%3$s</em> and refresh this page.</li>"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: wp-cache.php:1318
|
1072 |
+
msgid ""
|
1073 |
+
"<strong>Error: WP_CACHE is not enabled</strong> in your <code>wp-config.php</"
|
1074 |
+
"code> file and I couldn’t modify it."
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: wp-cache.php:1319
|
1078 |
#, php-format
|
1079 |
msgid ""
|
1080 |
+
"Edit <code>%s</code> and add the following line:<br /> <code>define"
|
1081 |
+
"('WP_CACHE', true);</code><br />Otherwise, <strong>WP-Cache will not be "
|
1082 |
+
"executed</strong> by Wordpress core. "
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: wp-cache.php:1322
|
1086 |
msgid ""
|
1087 |
+
"<h3>WP_CACHE constant added to wp-config.php</h3><p>If you continue to see "
|
1088 |
+
"this warning message please see point 5 of the <a href=\"http://wordpress."
|
1089 |
+
"org/extend/plugins/wp-super-cache/faq/\">FAQ</a>. The WP_CACHE line must be "
|
1090 |
+
"moved up."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: wp-cache.php:1343
|
1094 |
+
msgid "Cache Contents"
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: wp-cache.php:1362
|
1098 |
#, php-format
|
1099 |
msgid "Deleting supercache file: <strong>%s</strong><br />"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: wp-cache.php:1379
|
1103 |
#, php-format
|
1104 |
msgid "Deleting wp-cache file: <strong>%s</strong><br />"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: wp-cache.php:1443
|
1108 |
msgid "WP-Cache"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: wp-cache.php:1444 wp-cache.php:1457
|
1112 |
#, php-format
|
1113 |
msgid "%s Cached Pages"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: wp-cache.php:1445 wp-cache.php:1459
|
1117 |
#, php-format
|
1118 |
msgid "%s Expired Pages"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: wp-cache.php:1456
|
1122 |
msgid "WP-Super-Cache"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: wp-cache.php:1464
|
1126 |
msgid "Fresh WP-Cached Files"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: wp-cache.php:1465 wp-cache.php:1481 wp-cache.php:1497 wp-cache.php:1513
|
1130 |
msgid "URI"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: wp-cache.php:1465 wp-cache.php:1481
|
1134 |
msgid "Key"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: wp-cache.php:1465 wp-cache.php:1481 wp-cache.php:1497 wp-cache.php:1513
|
1138 |
msgid "Age"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: wp-cache.php:1465 wp-cache.php:1481 wp-cache.php:1497 wp-cache.php:1513
|
1142 |
msgid "Delete"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: wp-cache.php:1480
|
1146 |
msgid "Stale WP-Cached Files"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: wp-cache.php:1496
|
1150 |
msgid "Fresh Super Cached Files"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: wp-cache.php:1512
|
1154 |
msgid "Stale Super Cached Files"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: wp-cache.php:1528
|
1158 |
msgid "Hide file list"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: wp-cache.php:1530
|
1162 |
msgid "List all cached files"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: wp-cache.php:1536
|
1166 |
#, php-format
|
1167 |
msgid ""
|
1168 |
"<strong>Garbage Collection</strong><br />Last GC was <strong>%s</strong> "
|
1169 |
"minutes ago<br />"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: wp-cache.php:1537
|
1173 |
#, php-format
|
1174 |
msgid "Next GC in <strong>%s</strong> minutes"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: wp-cache.php:1540
|
1178 |
#, php-format
|
1179 |
msgid ""
|
1180 |
"Expired files are files older than %s seconds. They are still used by the "
|
1181 |
"plugin and are deleted periodically."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: wp-cache.php:1543
|
1185 |
msgid "Delete Expired"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: wp-cache.php:1549 wp-cache.php:1563 wp-cache.php:1719
|
1189 |
msgid "Delete Cache"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: wp-cache.php:1563
|
1193 |
msgid "Delete Super Cache cached files (opens in new window)"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: wp-cache.php:1695
|
1197 |
#, php-format
|
1198 |
msgid "%1$s is Digg proof thanks to caching by %2$s"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: wp-cache.php:1728
|
1202 |
#, php-format
|
1203 |
msgid ""
|
1204 |
"WP Super Cache must be configured. Go to <a href=\"%s\">the admin page</a> "
|
1205 |
"to enable and configure the plugin."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: wp-cache.php:1734
|
1209 |
msgid "Settings"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: wp-cache.php:1744
|
1213 |
#, php-format
|
1214 |
msgid ""
|
1215 |
"WP Super Cache is disabled. Please go to the <a href=\"%s\">plugin admin "
|
1216 |
"page</a> to enable caching."
|
1217 |
msgstr ""
|
1218 |
+
|
1219 |
+
#: wp-cache.php:1763
|
1220 |
+
#, php-format
|
1221 |
+
msgid "[%s] Front page is gzipped! Please clear cache!"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: wp-cache.php:1763
|
1225 |
+
#, php-format
|
1226 |
+
msgid ""
|
1227 |
+
"Please visit %s to clear the cache as the front page of your site is now "
|
1228 |
+
"downloading!"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: wp-cache.php:1766
|
1232 |
+
#, php-format
|
1233 |
+
msgid "[%s] Front page is gzipped! Cache Cleared!"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: wp-cache.php:1766
|
1237 |
+
#, php-format
|
1238 |
+
msgid ""
|
1239 |
+
"The cache on your blog has been cleared because the front page of your site "
|
1240 |
+
"is now downloading. Please visit %s to verify the cache has been cleared."
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: wp-cache.php:1773
|
1244 |
+
#, php-format
|
1245 |
+
msgid "[%s] Front page is not correct! Please clear cache!"
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: wp-cache.php:1773
|
1249 |
+
#, php-format
|
1250 |
+
msgid ""
|
1251 |
+
"Please visit %1$s to clear the cache as the front page of your site is not "
|
1252 |
+
"correct and missing the text, \"%2$s\"!"
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: wp-cache.php:1776
|
1256 |
+
#, php-format
|
1257 |
+
msgid "[%s] Front page is not correct! Cache Cleared!"
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: wp-cache.php:1776
|
1261 |
+
#, php-format
|
1262 |
+
msgid ""
|
1263 |
+
"The cache on your blog has been cleared because the front page of your site "
|
1264 |
+
"is missing the text \"%2$s\". Please visit %1$s to verify the cache has been "
|
1265 |
+
"cleared."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: wp-cache.php:1781
|
1269 |
+
#, php-format
|
1270 |
+
msgid "[%s] Front page check!"
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: wp-cache.php:1781
|
1274 |
+
#, php-format
|
1275 |
+
msgid ""
|
1276 |
+
"WP Super Cache has checked the front page of your blog. Please visit %s if "
|
1277 |
+
"you would like to disable this."
|
1278 |
+
msgstr ""
|