Version Description
- Fix security issue for deleting ALL Quick and Individual Redirects.
- Update POT and English Translation file.
- Added 'No Quick Redirects' message when there are no Quick Redirects.
Download this release
Release Info
Developer | prophecy2040 |
Plugin | Quick Page/Post Redirect Plugin |
Version | 5.1.0 |
Comparing to | |
See all releases |
Code changes from version 5.0.7 to 5.1.0
- js/qppr_admin_script.js +30 -1
- lang/quick-pagepost-redirect-plugin-en_US.mo +0 -0
- lang/quick-pagepost-redirect-plugin-en_US.po +184 -184
- lang/quick-pagepost-redirect-plugin-es_MX.mo +0 -0
- lang/quick-pagepost-redirect-plugin-es_MX.po +180 -182
- lang/quick-pagepost-redirect-plugin.pot +180 -182
- page_post_redirect_plugin.php +50 -56
- readme.txt +9 -6
js/qppr_admin_script.js
CHANGED
@@ -11,7 +11,36 @@
|
|
11 |
e.preventDefault();
|
12 |
});
|
13 |
var mainurl = qpprData.ajaxurl;
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
var obj = $( this );
|
16 |
var reqs = $('input[name^="quickppr_redirects[request]"');
|
17 |
var dest = $('input[name^="quickppr_redirects[destination]"');
|
11 |
e.preventDefault();
|
12 |
});
|
13 |
var mainurl = qpprData.ajaxurl;
|
14 |
+
|
15 |
+
$( '.qppr-delete-regular' ).on( 'click', function(e){
|
16 |
+
e.preventDefault();
|
17 |
+
if( confirm( qpprData.msgIndividualDeleteConfirm ) ){
|
18 |
+
var remove_qppr_all_indiviual_data = {'action' : 'qppr_delete_all_iredirects', 'security': qpprData.securityDelete};
|
19 |
+
$.post(qpprData.ajaxurl, remove_qppr_all_indiviual_data, function( response ) {
|
20 |
+
if( response == 'success' ){
|
21 |
+
document.location.href = qpprData.adminURL+'?page=redirect-options&update=2';
|
22 |
+
}else{
|
23 |
+
document.location.href = qpprData.adminURL+'?page=redirect-options&update=0';
|
24 |
+
}
|
25 |
+
});
|
26 |
+
}
|
27 |
+
});
|
28 |
+
|
29 |
+
$( '.qppr-delete-quick' ).on( 'click', function(e){
|
30 |
+
e.preventDefault();
|
31 |
+
if( confirm( qpprData.msgQuickDeleteConfirm ) ){
|
32 |
+
var remove_qppr_all_quick_data = {'action' : 'qppr_delete_all_qredirects', 'security': qpprData.securityDelete};
|
33 |
+
$.post(qpprData.ajaxurl, remove_qppr_all_quick_data, function(response) {
|
34 |
+
if( response == 'success' ){
|
35 |
+
document.location.href = qpprData.adminURL+'?page=redirect-options&update=3';
|
36 |
+
}else{
|
37 |
+
document.location.href = qpprData.adminURL+'?page=redirect-options&update=0';
|
38 |
+
}
|
39 |
+
});
|
40 |
+
}
|
41 |
+
});
|
42 |
+
|
43 |
+
$( '#qppr_quick_save_form' ).on( 'submit', function(e){
|
44 |
var obj = $( this );
|
45 |
var reqs = $('input[name^="quickppr_redirects[request]"');
|
46 |
var dest = $('input[name^="quickppr_redirects[destination]"');
|
lang/quick-pagepost-redirect-plugin-en_US.mo
CHANGED
Binary file
|
lang/quick-pagepost-redirect-plugin-en_US.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Quick Page/Post Redirect Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: Fri Jun 19 2015 23:42:16 GMT-0400 (Eastern Daylight Time)\n"
|
6 |
-
"PO-Revision-Date: Sun Jul
|
7 |
"Last-Translator: dfischer <admin@fischercreativemedia.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: English\n"
|
@@ -22,11 +22,11 @@ msgstr ""
|
|
22 |
"X-Loco-Target-Locale: en_US\n"
|
23 |
"X-Generator: Loco - https://localise.biz/"
|
24 |
|
25 |
-
#: ../page_post_redirect_plugin.php:
|
26 |
msgid "New Layout of Existing Redirects"
|
27 |
msgstr "New Layout of Existing Redirects"
|
28 |
|
29 |
-
#: ../page_post_redirect_plugin.php:
|
30 |
msgid ""
|
31 |
"The existing <strong>Quick Redirects</strong> are now laid out in a list "
|
32 |
"format instead of form fields. When you have a lot of Redirects, this helps "
|
@@ -38,23 +38,23 @@ msgstr ""
|
|
38 |
"elminiate the \"max_input_vars\" configuration issue where redirects were not "
|
39 |
"saving correctly."
|
40 |
|
41 |
-
#: ../page_post_redirect_plugin.php:
|
42 |
msgid "To edit an exisitng redirect, click the pencil icon"
|
43 |
msgstr "To edit an exisitng redirect, click the pencil icon"
|
44 |
|
45 |
-
#: ../page_post_redirect_plugin.php:
|
46 |
msgid "and the row will become editable. Click the trash can icon"
|
47 |
msgstr "and the row will become editable. Click the trash can icon"
|
48 |
|
49 |
-
#: ../page_post_redirect_plugin.php:
|
50 |
msgid "and the redirect will be deleted. Click the trash can icon"
|
51 |
msgstr "and the redirect will be deleted. Click the trash can icon"
|
52 |
|
53 |
-
#: ../page_post_redirect_plugin.php:
|
54 |
msgid "New Option to Use jQuery"
|
55 |
msgstr "New Option to Use jQuery"
|
56 |
|
57 |
-
#: ../page_post_redirect_plugin.php:
|
58 |
msgid ""
|
59 |
"To increase the effectiveness of the plugin's ability to add new window and "
|
60 |
"nofollow functionality, you can use the jQuery option."
|
@@ -62,7 +62,7 @@ msgstr ""
|
|
62 |
"To increase the effectiveness of the plugin's ability to add new window and "
|
63 |
"nofollow functionality, you can use the jQuery option."
|
64 |
|
65 |
-
#: ../page_post_redirect_plugin.php:
|
66 |
msgid ""
|
67 |
"This adds JavaScript/jQuery scripting to check the links in the output HTML "
|
68 |
"of the page and add the correct functionality if needed."
|
@@ -70,24 +70,32 @@ msgstr ""
|
|
70 |
"This adds JavaScript/jQuery scripting to check the links in the output HTML "
|
71 |
"of the page and add the correct functionality if needed."
|
72 |
|
73 |
-
#: ../page_post_redirect_plugin.php:
|
74 |
msgid "If you experience JavaScript/jQuery conflicts, try turning this option off."
|
75 |
msgstr "If you experience JavaScript/jQuery conflicts, try turning this option off."
|
76 |
|
77 |
-
#: ../page_post_redirect_plugin.php:
|
78 |
msgid "Quick Redirects Updated."
|
79 |
msgstr "Quick Redirects Updated."
|
80 |
|
81 |
-
#: ../page_post_redirect_plugin.php:
|
82 |
msgid "Redirect"
|
83 |
msgstr "Redirect"
|
84 |
|
85 |
# Plugin Name
|
86 |
-
#: ../page_post_redirect_plugin.php:
|
87 |
msgid "Quick Page/Post Redirect"
|
88 |
msgstr "Quick Page/Post Redirect"
|
89 |
|
90 |
-
#: ../page_post_redirect_plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
msgid ""
|
92 |
"Redirect could not be saved as a redirect already exists with the same "
|
93 |
"Request URL."
|
@@ -95,29 +103,29 @@ msgstr ""
|
|
95 |
"Redirect could not be saved as a redirect already exists with the same "
|
96 |
"Request URL."
|
97 |
|
98 |
-
#: ../page_post_redirect_plugin.php:
|
99 |
msgid "Are you sure you want to delete this redirect?"
|
100 |
msgstr "Are you sure you want to delete this redirect?"
|
101 |
|
102 |
# JavaScript message
|
103 |
-
#: ../page_post_redirect_plugin.php:
|
104 |
msgid "Error Saving Redirect\\nTry refreshing the page and trying again."
|
105 |
msgstr "Error Saving Redirect\\nTry refreshing the page and trying again."
|
106 |
|
107 |
# JavaScript Message
|
108 |
-
#: ../page_post_redirect_plugin.php:
|
109 |
msgid "File type not allowed,\\nAllowed file type: *.txt"
|
110 |
msgstr "File type not allowed,\\nAllowed file type: *.txt"
|
111 |
|
112 |
-
#: ../page_post_redirect_plugin.php:
|
113 |
msgid "Please add at least one redirect before submitting form"
|
114 |
msgstr "Please add at least one redirect before submitting form"
|
115 |
|
116 |
-
#: ../page_post_redirect_plugin.php:
|
117 |
msgid "Quick Page/Post Redirect FAQs/Help"
|
118 |
msgstr "Quick Page/Post Redirect FAQs/Help"
|
119 |
|
120 |
-
#: ../page_post_redirect_plugin.php:
|
121 |
msgid ""
|
122 |
"The FAQS are now on a feed that can be updated on the fly. If you have a "
|
123 |
"question and don't see an answer, please send an email to <a href=\"mailto:"
|
@@ -137,91 +145,91 @@ msgstr ""
|
|
137 |
"information like your WordPress version and examples if the plugin is not "
|
138 |
"working correctly for you. THANKS!"
|
139 |
|
140 |
-
#: ../page_post_redirect_plugin.php:
|
141 |
msgid "Table of Contents"
|
142 |
msgstr "Table of Contents"
|
143 |
|
144 |
-
#: ../page_post_redirect_plugin.php:
|
145 |
msgid "Questions/Answers"
|
146 |
msgstr "Questions/Answers"
|
147 |
|
148 |
-
#: ../page_post_redirect_plugin.php:
|
149 |
msgid "Quick Page Post Redirect Summary"
|
150 |
msgstr "Quick Page Post Redirect Summary"
|
151 |
|
152 |
-
#: ../page_post_redirect_plugin.php:
|
153 |
msgid "This is a summary of Individual & Quick 301 Redirects."
|
154 |
msgstr "This is a summary of Individual & Quick 301 Redirects."
|
155 |
|
156 |
-
#: ../page_post_redirect_plugin.php:
|
157 |
msgid "Summary"
|
158 |
msgstr "Summary"
|
159 |
|
160 |
-
#: ../page_post_redirect_plugin.php:
|
161 |
msgid "Acitve Override is on - All Redirects are OFF!"
|
162 |
msgstr "Acitve Override is on - All Redirects are OFF!\n"
|
163 |
|
164 |
-
#: ../page_post_redirect_plugin.php:
|
165 |
msgid "No Follow Override is on!"
|
166 |
msgstr "No Follow Override is on!"
|
167 |
|
168 |
-
#: ../page_post_redirect_plugin.php:
|
169 |
msgid "New Window Override is on!"
|
170 |
msgstr "New Window Override is on!"
|
171 |
|
172 |
-
#: ../page_post_redirect_plugin.php:
|
173 |
msgid "Rewrite Override is on!"
|
174 |
msgstr "Rewrite Override is on!"
|
175 |
|
176 |
-
#: ../page_post_redirect_plugin.php:
|
177 |
msgid "ID"
|
178 |
msgstr "ID"
|
179 |
|
180 |
-
#: ../page_post_redirect_plugin.php:
|
181 |
msgid "post type"
|
182 |
msgstr "post type"
|
183 |
|
184 |
-
#: ../page_post_redirect_plugin.php:
|
185 |
msgid "active"
|
186 |
msgstr "active"
|
187 |
|
188 |
-
#: ../page_post_redirect_plugin.php:
|
189 |
msgid "no follow"
|
190 |
msgstr "no follow"
|
191 |
|
192 |
-
#: ../page_post_redirect_plugin.php:
|
193 |
msgid "new window"
|
194 |
msgstr "new window"
|
195 |
|
196 |
-
#: ../page_post_redirect_plugin.php:
|
197 |
msgid "type"
|
198 |
msgstr "type"
|
199 |
|
200 |
-
#: ../page_post_redirect_plugin.php:
|
201 |
msgid "rewrite"
|
202 |
msgstr "rewrite"
|
203 |
|
204 |
-
#: ../page_post_redirect_plugin.php:
|
205 |
msgid "original URL"
|
206 |
msgstr "original URL"
|
207 |
|
208 |
-
#: ../page_post_redirect_plugin.php:
|
209 |
msgid "redirect to URL"
|
210 |
msgstr "redirect to URL"
|
211 |
|
212 |
-
#: ../page_post_redirect_plugin.php:
|
213 |
msgid "Quick Redirects Imported & Replaced."
|
214 |
msgstr "Quick Redirects Imported & Replaced."
|
215 |
|
216 |
-
#: ../page_post_redirect_plugin.php:
|
217 |
msgid "Quick Redirects Imported & Added to Existing Redirects."
|
218 |
msgstr "Quick Redirects Imported & Added to Existing Redirects."
|
219 |
|
220 |
-
#: ../page_post_redirect_plugin.php:
|
221 |
msgid "Import/Export Redirects"
|
222 |
msgstr "Import/Export Redirects"
|
223 |
|
224 |
-
#: ../page_post_redirect_plugin.php:
|
225 |
msgid ""
|
226 |
"If you enjoy or find any of our plugins useful, please donate a few dollars "
|
227 |
"to help with future development and updates. We thank you in advance."
|
@@ -229,11 +237,11 @@ msgstr ""
|
|
229 |
"If you enjoy or find any of our plugins useful, please donate a few dollars "
|
230 |
"to help with future development and updates. We thank you in advance."
|
231 |
|
232 |
-
#: ../page_post_redirect_plugin.php:
|
233 |
msgid "Export Redirects"
|
234 |
msgstr "Export Redirects"
|
235 |
|
236 |
-
#: ../page_post_redirect_plugin.php:
|
237 |
msgid ""
|
238 |
"You should back-up your redirect regularly in case something happens to the "
|
239 |
"database."
|
@@ -241,7 +249,7 @@ msgstr ""
|
|
241 |
"You should back-up your redirect regularly in case something happens to the "
|
242 |
"database."
|
243 |
|
244 |
-
#: ../page_post_redirect_plugin.php:
|
245 |
msgid ""
|
246 |
"Please use the below buttons to make a back-up as either encoded "
|
247 |
"(unreadable) or pipe separated"
|
@@ -249,23 +257,23 @@ msgstr ""
|
|
249 |
"Please use the below buttons to make a back-up as either encoded "
|
250 |
"(unreadable) or pipe separated"
|
251 |
|
252 |
-
#: ../page_post_redirect_plugin.php:
|
253 |
msgid "EXPORT all Quick Redirects (Encoded)"
|
254 |
msgstr "EXPORT all Quick Redirects (Encoded)"
|
255 |
|
256 |
-
#: ../page_post_redirect_plugin.php:
|
257 |
msgid "OR"
|
258 |
msgstr "OR"
|
259 |
|
260 |
-
#: ../page_post_redirect_plugin.php:
|
261 |
msgid "EXPORT all Quick Redirects (PIPE Separated)"
|
262 |
msgstr "EXPORT all Quick Redirects (PIPE Separated)"
|
263 |
|
264 |
-
#: ../page_post_redirect_plugin.php:
|
265 |
msgid "Import Redirects"
|
266 |
msgstr "Import Redirects"
|
267 |
|
268 |
-
#: ../page_post_redirect_plugin.php:
|
269 |
msgid ""
|
270 |
"If you want to replace or restore redirects from a file, use the \"Restore\" "
|
271 |
"option."
|
@@ -273,7 +281,7 @@ msgstr ""
|
|
273 |
"If you want to replace or restore redirects from a file, use the \"Restore\" "
|
274 |
"option."
|
275 |
|
276 |
-
#: ../page_post_redirect_plugin.php:
|
277 |
msgid ""
|
278 |
"To add new redirects in bulk use the \"Add To\" option - NOTE: to Add To "
|
279 |
"redirects, the file must be pipe dilimited "
|
@@ -281,19 +289,19 @@ msgstr ""
|
|
281 |
"To add new redirects in bulk use the \"Add To\" option - NOTE: to Add To "
|
282 |
"redirects, the file must be pipe dilimited "
|
283 |
|
284 |
-
#: ../page_post_redirect_plugin.php:
|
285 |
msgid "RESTORE Saved Quick Redirects"
|
286 |
msgstr "RESTORE Saved Quick Redirects"
|
287 |
|
288 |
-
#: ../page_post_redirect_plugin.php:
|
289 |
msgid "ADD TO Quick Redirects"
|
290 |
msgstr "ADD TO Quick Redirects"
|
291 |
|
292 |
-
#: ../page_post_redirect_plugin.php:
|
293 |
msgid "Select Quick Redirects file to import:"
|
294 |
msgstr "Select Quick Redirects file to import:"
|
295 |
|
296 |
-
#: ../page_post_redirect_plugin.php:
|
297 |
msgid ""
|
298 |
"The import file should be a text file with one rediect per line, PIPE "
|
299 |
"separated, in this format:"
|
@@ -302,28 +310,28 @@ msgstr ""
|
|
302 |
"separated, in this format:"
|
303 |
|
304 |
# these are column titles.
|
305 |
-
#: ../page_post_redirect_plugin.php:
|
306 |
msgid "redirect|destination|newwindow|nofollow"
|
307 |
msgstr "redirect|destination|newwindow|nofollow"
|
308 |
|
309 |
-
#: ../page_post_redirect_plugin.php:
|
310 |
msgid "for Example:"
|
311 |
msgstr "for Example:"
|
312 |
|
313 |
# translate this to same as source
|
314 |
-
#: ../page_post_redirect_plugin.php:
|
315 |
msgid "/old-location.htm|http://some.com/new-destination/|0|1"
|
316 |
msgstr "/old-location.htm|http://some.com/new-destination/|0|1"
|
317 |
|
318 |
-
#: ../page_post_redirect_plugin.php:
|
319 |
msgid "/dontate/|http://example.com/destination/|1|1"
|
320 |
msgstr "/dontate/|http://example.com/destination/|1|1"
|
321 |
|
322 |
-
#: ../page_post_redirect_plugin.php:
|
323 |
msgid "IMPORTANT:"
|
324 |
msgstr "IMPORTANT:"
|
325 |
|
326 |
-
#: ../page_post_redirect_plugin.php:
|
327 |
msgid ""
|
328 |
"Make Sure any destination URLs that have a PIPE in the querystring data are "
|
329 |
"URL encoded before adding them!"
|
@@ -331,52 +339,60 @@ msgstr ""
|
|
331 |
"Make Sure any destination URLs that have a PIPE in the querystring data are "
|
332 |
"URL encoded before adding them!"
|
333 |
|
334 |
-
#: ../page_post_redirect_plugin.php:
|
335 |
msgid "ADD TO Current Quick Redirects"
|
336 |
msgstr "ADD TO Current Quick Redirects"
|
337 |
|
338 |
-
#: ../page_post_redirect_plugin.php:
|
339 |
msgid "All Quick Redirects deleted from database."
|
340 |
msgstr "All Quick Redirects deleted from database."
|
341 |
|
342 |
-
#: ../page_post_redirect_plugin.php:
|
343 |
-
msgid "All
|
344 |
-
msgstr "All
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
|
346 |
-
#: ../page_post_redirect_plugin.php:
|
347 |
msgid "Quick Page Post Redirect Options"
|
348 |
msgstr "Quick Page Post Redirect Options"
|
349 |
|
350 |
-
#: ../page_post_redirect_plugin.php:
|
351 |
msgid "Basic Settings"
|
352 |
msgstr "Basic Settings"
|
353 |
|
354 |
# Custom Post Types text here should match WordPress' name for Custom Post Types.
|
355 |
-
#: ../page_post_redirect_plugin.php:
|
356 |
msgid "Use with Custom Post Types?"
|
357 |
msgstr "Use with Custom Post Types?"
|
358 |
|
359 |
-
#: ../page_post_redirect_plugin.php:
|
360 |
msgid "Hide"
|
361 |
msgstr "Hide"
|
362 |
|
363 |
-
#: ../page_post_redirect_plugin.php:
|
364 |
msgid "meta box for following Post Types:"
|
365 |
msgstr "meta box for following Post Types:"
|
366 |
|
367 |
-
#: ../page_post_redirect_plugin.php:
|
368 |
msgid "Show Column Headers?"
|
369 |
msgstr "Show Column Headers?"
|
370 |
|
371 |
-
#: ../page_post_redirect_plugin.php:
|
372 |
msgid "Show Columns on list pages for set up redirects."
|
373 |
msgstr "Show Columns on list pages for set up redirects."
|
374 |
|
375 |
-
#: ../page_post_redirect_plugin.php:
|
376 |
msgid "Use jQuery?"
|
377 |
msgstr "Use jQuery?"
|
378 |
|
379 |
-
#: ../page_post_redirect_plugin.php:
|
380 |
msgid ""
|
381 |
"Increases effectiveness of plugin. If you have a jQuery conflict, try "
|
382 |
"turning this off."
|
@@ -384,31 +400,31 @@ msgstr ""
|
|
384 |
"Increases effectiveness of plugin. If you have a jQuery conflict, try "
|
385 |
"turning this off."
|
386 |
|
387 |
-
#: ../page_post_redirect_plugin.php:
|
388 |
msgid "Uses jQuery to add the \"New Window\" and \"No Follow\" attributes to links."
|
389 |
msgstr "Uses jQuery to add the \"New Window\" and \"No Follow\" attributes to links."
|
390 |
|
391 |
-
#: ../page_post_redirect_plugin.php:
|
392 |
msgid "Meta Refresh Time (in seconds):"
|
393 |
msgstr "Meta Refresh Time (in seconds):"
|
394 |
|
395 |
-
#: ../page_post_redirect_plugin.php:
|
396 |
msgid "Only needed for Meta Refresh. 0=default (instant)"
|
397 |
msgstr "Only needed for Meta Refresh. 0=default (instant)"
|
398 |
|
399 |
-
#: ../page_post_redirect_plugin.php:
|
400 |
msgid "Meta Refresh Message:"
|
401 |
msgstr "Meta Refresh Message:"
|
402 |
|
403 |
-
#: ../page_post_redirect_plugin.php:
|
404 |
msgid "Default is blank. Message to display while waiting for refresh."
|
405 |
msgstr "Default is blank. Message to display while waiting for refresh."
|
406 |
|
407 |
-
#: ../page_post_redirect_plugin.php:
|
408 |
msgid "Master Override Options"
|
409 |
msgstr "Master Override Options"
|
410 |
|
411 |
-
#: ../page_post_redirect_plugin.php:
|
412 |
msgid ""
|
413 |
"<strong>NOTE: </strong>The below settings will override all individual "
|
414 |
"settings."
|
@@ -416,72 +432,72 @@ msgstr ""
|
|
416 |
"<strong>NOTE: </strong>The below settings will override all individual "
|
417 |
"settings."
|
418 |
|
419 |
-
#: ../page_post_redirect_plugin.php:
|
420 |
msgid "Turn OFF all Redirects?"
|
421 |
msgstr "Turn OFF all Redirects?"
|
422 |
|
423 |
-
#: ../page_post_redirect_plugin.php:
|
424 |
msgid "Basically the same as having no redirects set up."
|
425 |
msgstr "Basically the same as having no redirects set up."
|
426 |
|
427 |
# keep code text untranslated.
|
428 |
-
#: ../page_post_redirect_plugin.php:
|
429 |
msgid "Make ALL Redirects have <code>rel=\"nofollow\"</code>?"
|
430 |
msgstr "Make ALL Redirects have <code>rel=\"nofollow\"</code>?"
|
431 |
|
432 |
-
#: ../page_post_redirect_plugin.php:
|
433 |
msgid "Requires \"use jQuery\" option to work with Quick Redirects."
|
434 |
msgstr "Requires \"use jQuery\" option to work with Quick Redirects."
|
435 |
|
436 |
-
#: ../page_post_redirect_plugin.php:
|
437 |
msgid "Make ALL Redirects open in a New Window?"
|
438 |
msgstr "Make ALL Redirects open in a New Window?"
|
439 |
|
440 |
-
#: ../page_post_redirect_plugin.php:
|
441 |
msgid "Make ALL Redirects this type:"
|
442 |
msgstr "Make ALL Redirects this type:"
|
443 |
|
444 |
-
#: ../page_post_redirect_plugin.php:
|
445 |
msgid "Use Individual Settings"
|
446 |
msgstr "Use Individual Settings"
|
447 |
|
448 |
-
#: ../page_post_redirect_plugin.php:
|
449 |
msgid "Permanant Redirect"
|
450 |
msgstr "Permanant Redirect"
|
451 |
|
452 |
-
#: ../page_post_redirect_plugin.php:
|
453 |
msgid "Temporary Redirect"
|
454 |
msgstr "Temporary Redirect"
|
455 |
|
456 |
-
#: ../page_post_redirect_plugin.php:
|
457 |
msgid "Meta Refresh Redirect"
|
458 |
msgstr "Meta Refresh Redirect"
|
459 |
|
460 |
-
#: ../page_post_redirect_plugin.php:
|
461 |
msgid "(Quick 301 Redirects will always be 301)"
|
462 |
msgstr "(Quick 301 Redirects will always be 301)"
|
463 |
|
464 |
-
#: ../page_post_redirect_plugin.php:
|
465 |
msgid "Make ALL redirects Case Sensitive?"
|
466 |
msgstr "Make ALL redirects Case Sensitive?"
|
467 |
|
468 |
-
#: ../page_post_redirect_plugin.php:
|
469 |
msgid "Makes URLs CaSe SensiTivE - i.e., /somepage/ DOES NOT EQUAL /SoMEpaGe/"
|
470 |
msgstr "Makes URLs CaSe SensiTivE - i.e., /somepage/ DOES NOT EQUAL /SoMEpaGe/"
|
471 |
|
472 |
-
#: ../page_post_redirect_plugin.php:
|
473 |
msgid "Make ALL Redirects go to this URL:"
|
474 |
msgstr "Make ALL Redirects go to this URL:"
|
475 |
|
476 |
-
#: ../page_post_redirect_plugin.php:
|
477 |
msgid "Use full URL including <code>http://</code>."
|
478 |
msgstr "Use full URL including <code>http://</code>."
|
479 |
|
480 |
-
#: ../page_post_redirect_plugin.php:
|
481 |
msgid "Rewrite ALL Redirects URLs to Show in LINK?"
|
482 |
msgstr "Rewrite ALL Redirects URLs to Show in LINK?"
|
483 |
|
484 |
-
#: ../page_post_redirect_plugin.php:
|
485 |
msgid ""
|
486 |
"Makes link show redirect URL instead of the original URL. Will not work on "
|
487 |
"Quick Redirects at this time."
|
@@ -489,11 +505,11 @@ msgstr ""
|
|
489 |
"Makes link show redirect URL instead of the original URL. Will not work on "
|
490 |
"Quick Redirects at this time."
|
491 |
|
492 |
-
#: ../page_post_redirect_plugin.php:
|
493 |
msgid "Plugin Clean Up"
|
494 |
msgstr "Plugin Clean Up"
|
495 |
|
496 |
-
#: ../page_post_redirect_plugin.php:
|
497 |
msgid ""
|
498 |
"<strong>NOTE: </strong>This will DELETE all redirects - so be careful with "
|
499 |
"this."
|
@@ -501,27 +517,19 @@ msgstr ""
|
|
501 |
"<strong>NOTE: </strong>This will DELETE all redirects - so be careful with "
|
502 |
"this."
|
503 |
|
504 |
-
#: ../page_post_redirect_plugin.php:
|
505 |
msgid "Delete Redirects?"
|
506 |
msgstr "Delete Redirects?"
|
507 |
|
508 |
-
#: ../page_post_redirect_plugin.php:
|
509 |
msgid "Delete All Individual Redirects"
|
510 |
msgstr "Delete All Individual Redirects"
|
511 |
|
512 |
-
#: ../page_post_redirect_plugin.php:
|
513 |
-
msgid "Are you sure you want to PERMANENTLY Delets ALL Regular Redirects?"
|
514 |
-
msgstr "Are you sure you want to PERMANENTLY Delets ALL Regular Redirects?"
|
515 |
-
|
516 |
-
#: ../page_post_redirect_plugin.php:948
|
517 |
msgid "Delete all Quick Redirects"
|
518 |
msgstr "Delete all Quick Redirects"
|
519 |
|
520 |
-
#: ../page_post_redirect_plugin.php:
|
521 |
-
msgid "Are you sure you want to PERMANENTLY Delets ALL Quick Redirects?"
|
522 |
-
msgstr "Are you sure you want to PERMANENTLY Delets ALL Quick Redirects?"
|
523 |
-
|
524 |
-
#: ../page_post_redirect_plugin.php:948
|
525 |
msgid ""
|
526 |
"Individual Redirects are redirects set up on individual pages or posts when "
|
527 |
"in the editing screen. The Quick Redirects are set up on the Quick Redirects "
|
@@ -531,23 +539,23 @@ msgstr ""
|
|
531 |
"in the editing screen. The Quick Redirects are set up on the Quick Redirects "
|
532 |
"page."
|
533 |
|
534 |
-
#: ../page_post_redirect_plugin.php:
|
535 |
msgid "Save Changes"
|
536 |
msgstr "Save Changes"
|
537 |
|
538 |
-
#: ../page_post_redirect_plugin.php:
|
539 |
msgid "Examples"
|
540 |
msgstr "Examples"
|
541 |
|
542 |
-
#: ../page_post_redirect_plugin.php:
|
543 |
msgid "Troubleshooting"
|
544 |
msgstr "Troubleshooting"
|
545 |
|
546 |
-
#: ../page_post_redirect_plugin.php:
|
547 |
msgid "IMPORTANT TROUBLESHOOTING NOTES:"
|
548 |
msgstr "IMPORTANT TROUBLESHOOTING NOTES:"
|
549 |
|
550 |
-
#: ../page_post_redirect_plugin.php:
|
551 |
msgid ""
|
552 |
"At this time the New Window (NW) and No Follow (NF) features will not work "
|
553 |
"for Quick Redirects."
|
@@ -555,7 +563,7 @@ msgstr ""
|
|
555 |
"At this time the New Window (NW) and No Follow (NF) features will not work "
|
556 |
"for Quick Redirects."
|
557 |
|
558 |
-
#: ../page_post_redirect_plugin.php:
|
559 |
msgid ""
|
560 |
"It is recommended that the <b>Request URL</b> be relative to the ROOT "
|
561 |
"directory and contain the <code>/</code> at the beginning."
|
@@ -563,7 +571,7 @@ msgstr ""
|
|
563 |
"It is recommended that the <b>Request URL</b> be relative to the ROOT "
|
564 |
"directory and contain the <code>/</code> at the beginning."
|
565 |
|
566 |
-
#: ../page_post_redirect_plugin.php:
|
567 |
msgid ""
|
568 |
"If you do use the domain name in the Request URL field, make sure it matches "
|
569 |
"your site's domain style and protocol. For example, if your site uses \"www\" "
|
@@ -577,7 +585,7 @@ msgstr ""
|
|
577 |
"<code>https://</code>, use it as the protocol. Our best guess is that your "
|
578 |
"domain and protocol are"
|
579 |
|
580 |
-
#: ../page_post_redirect_plugin.php:
|
581 |
msgid ""
|
582 |
"If you are having issues with the link not redirecting on a SSL site with "
|
583 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
@@ -587,7 +595,7 @@ msgstr ""
|
|
587 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
588 |
"redirects, one with and one without the SSL protocol."
|
589 |
|
590 |
-
#: ../page_post_redirect_plugin.php:
|
591 |
msgid ""
|
592 |
"The <b>Destination</b> field can be any valid URL or relative path (from "
|
593 |
"root), for example"
|
@@ -595,7 +603,7 @@ msgstr ""
|
|
595 |
"The <b>Destination</b> field can be any valid URL or relative path (from "
|
596 |
"root), for example"
|
597 |
|
598 |
-
#: ../page_post_redirect_plugin.php:
|
599 |
msgid ""
|
600 |
"In order for NW (open in a new window) or NF (rel=\"nofollow\") options to "
|
601 |
"work with Quick Redirects, you need to have:"
|
@@ -603,11 +611,11 @@ msgstr ""
|
|
603 |
"In order for NW (open in a new window) or NF (rel=\"nofollow\") options to "
|
604 |
"work with Quick Redirects, you need to have:"
|
605 |
|
606 |
-
#: ../page_post_redirect_plugin.php:
|
607 |
msgid "\"Use jQuery?\" option selected in the settings page"
|
608 |
msgstr "\"Use jQuery?\" option selected in the settings page"
|
609 |
|
610 |
-
#: ../page_post_redirect_plugin.php:
|
611 |
msgid ""
|
612 |
"A link that uses the request url SOMEWHERE in your site page - i.e., in a "
|
613 |
"menu, content, sidebar, etc."
|
@@ -615,7 +623,7 @@ msgstr ""
|
|
615 |
"A link that uses the request url SOMEWHERE in your site page - i.e., in a "
|
616 |
"menu, content, sidebar, etc."
|
617 |
|
618 |
-
#: ../page_post_redirect_plugin.php:
|
619 |
msgid ""
|
620 |
"The open in a new window or nofollow settings will not happen if someone "
|
621 |
"just types the old link in the URL or if they come from a bookmark or link "
|
@@ -631,15 +639,15 @@ msgstr ""
|
|
631 |
"<code>target</code> and <code>rel</code> properties to the link to make it "
|
632 |
"work."
|
633 |
|
634 |
-
#: ../page_post_redirect_plugin.php:
|
635 |
msgid "You can export redirects in two formats - Encoded or Delimited."
|
636 |
msgstr "You can export redirects in two formats - Encoded or Delimited."
|
637 |
|
638 |
-
#: ../page_post_redirect_plugin.php:
|
639 |
msgid "Quick Redirects (301 Redirects)"
|
640 |
msgstr "Quick Redirects (301 Redirects)"
|
641 |
|
642 |
-
#: ../page_post_redirect_plugin.php:
|
643 |
msgid ""
|
644 |
"The <code>Use jQuery?</code> option is turned off in the settings.<br/>In "
|
645 |
"order to use <strong>NW</strong> (open in a new window) or "
|
@@ -651,11 +659,11 @@ msgstr ""
|
|
651 |
"<strong>NF</strong> (add rel=\"nofollow\") options for Quick Redirects, you "
|
652 |
"must have it enabled."
|
653 |
|
654 |
-
#: ../page_post_redirect_plugin.php:
|
655 |
msgid "hide this message"
|
656 |
msgstr "hide this message"
|
657 |
|
658 |
-
#: ../page_post_redirect_plugin.php:
|
659 |
msgid ""
|
660 |
"To use the <strong>NW</strong> (open in a new window) <strong>NF</strong> "
|
661 |
"(nofollow) options, check the appropriate option and update when adding "
|
@@ -669,7 +677,7 @@ msgstr ""
|
|
669 |
"updated with these options (as long as you have <code>Use jQuery?</code> "
|
670 |
"enabled in the plugin settings."
|
671 |
|
672 |
-
#: ../page_post_redirect_plugin.php:
|
673 |
msgid ""
|
674 |
"Quick Redirects are useful when you have links from an old site that now "
|
675 |
"come up 404 Not Found, and you need to have them redirect to a new location "
|
@@ -685,7 +693,7 @@ msgstr ""
|
|
685 |
"need to send some place else and you don't want to create a Page or Post "
|
686 |
"just to use the individual Page/Post Redirect option."
|
687 |
|
688 |
-
#: ../page_post_redirect_plugin.php:
|
689 |
msgid ""
|
690 |
"To add Quick Redirects, put the URL for the redirect in the <strong>Request "
|
691 |
"URL</strong> field, and the URL it should be redirected to in the "
|
@@ -699,7 +707,7 @@ msgstr ""
|
|
699 |
"trash can at the end of that row. To edit a redirect, click the pencil edit "
|
700 |
"icon."
|
701 |
|
702 |
-
#: ../page_post_redirect_plugin.php:
|
703 |
msgid ""
|
704 |
"See 'HELP' in the upper right corner, for troubleshooting problems and "
|
705 |
"example redirects."
|
@@ -707,39 +715,39 @@ msgstr ""
|
|
707 |
"See 'HELP' in the upper right corner, for troubleshooting problems and "
|
708 |
"example redirects."
|
709 |
|
710 |
-
#: ../page_post_redirect_plugin.php:
|
711 |
msgid "Add New Redirects"
|
712 |
msgstr "Add New Redirects"
|
713 |
|
714 |
-
#: ../page_post_redirect_plugin.php:
|
715 |
msgid "Request URL"
|
716 |
msgstr "Request URL"
|
717 |
|
718 |
-
#: ../page_post_redirect_plugin.php:
|
719 |
msgid "Destination URL"
|
720 |
msgstr "Destination URL"
|
721 |
|
722 |
# Stands for 'New Window'
|
723 |
-
#: ../page_post_redirect_plugin.php:
|
724 |
msgid "NW"
|
725 |
msgstr "NW"
|
726 |
|
727 |
# Stands for 'No Follow'
|
728 |
-
#: ../page_post_redirect_plugin.php:
|
729 |
msgid "NF"
|
730 |
msgstr "NF"
|
731 |
|
732 |
-
#: ../page_post_redirect_plugin.php:
|
733 |
-
#: page_post_redirect_plugin.php:
|
734 |
msgid "open in a New Window"
|
735 |
msgstr "open in a New Window"
|
736 |
|
737 |
-
#: ../page_post_redirect_plugin.php:
|
738 |
-
#: page_post_redirect_plugin.php:
|
739 |
msgid "add No Follow"
|
740 |
msgstr "add No Follow"
|
741 |
|
742 |
-
#: ../page_post_redirect_plugin.php:
|
743 |
msgid ""
|
744 |
"New Window(NW) and NoFollow(NF) functionality not available unless \"Use with "
|
745 |
"jQuery\" is set in the options."
|
@@ -747,39 +755,31 @@ msgstr ""
|
|
747 |
"New Window(NW) and NoFollow(NF) functionality not available unless \"Use with "
|
748 |
"jQuery\" is set in the options."
|
749 |
|
750 |
-
#: ../page_post_redirect_plugin.php:
|
751 |
msgid "Existing Redirects"
|
752 |
msgstr "Existing Redirects"
|
753 |
|
754 |
-
#: ../page_post_redirect_plugin.php:
|
755 |
msgid "Save"
|
756 |
msgstr "Save"
|
757 |
|
758 |
-
#: ../page_post_redirect_plugin.php:
|
759 |
msgid "Cancel"
|
760 |
msgstr "Cancel"
|
761 |
|
762 |
-
#: ../page_post_redirect_plugin.php:
|
763 |
msgid "Edit"
|
764 |
msgstr "Edit"
|
765 |
|
766 |
-
#: ../page_post_redirect_plugin.php:
|
767 |
msgid "Delete"
|
768 |
msgstr "Delete"
|
769 |
|
770 |
-
#: ../page_post_redirect_plugin.php:
|
771 |
-
msgid "
|
772 |
-
msgstr "
|
773 |
-
|
774 |
-
#: ../page_post_redirect_plugin.php:1325
|
775 |
-
msgid "Quick Page/Post Redirect Plugin - Export"
|
776 |
-
msgstr "Quick Page/Post Redirect Plugin - Export"
|
777 |
-
|
778 |
-
#: ../page_post_redirect_plugin.php:1328
|
779 |
-
msgid "Quick Page/Post Redirect Plugin - Import"
|
780 |
-
msgstr "Quick Page/Post Redirect Plugin - Import"
|
781 |
|
782 |
-
#: ../page_post_redirect_plugin.php:
|
783 |
msgid ""
|
784 |
"An error occured during the file upload. Please fix your server "
|
785 |
"configuration and retry."
|
@@ -787,11 +787,11 @@ msgstr ""
|
|
787 |
"An error occured during the file upload. Please fix your server "
|
788 |
"configuration and retry."
|
789 |
|
790 |
-
#: ../page_post_redirect_plugin.php:
|
791 |
msgid "SERVER ERROR - Could Not Load"
|
792 |
msgstr "SERVER ERROR - Could Not Load"
|
793 |
|
794 |
-
#: ../page_post_redirect_plugin.php:
|
795 |
msgid ""
|
796 |
"This does not look like a Quick Page Post Redirect file - it is possibly "
|
797 |
"damaged or corrupt."
|
@@ -799,12 +799,12 @@ msgstr ""
|
|
799 |
"This does not look like a Quick Page Post Redirect file - it is possibly "
|
800 |
"damaged or corrupt."
|
801 |
|
802 |
-
#: ../page_post_redirect_plugin.php:
|
803 |
-
#: page_post_redirect_plugin.php:
|
804 |
msgid "ERROR - Not a valid File"
|
805 |
msgstr "ERROR - Not a valid File"
|
806 |
|
807 |
-
#: ../page_post_redirect_plugin.php:
|
808 |
msgid ""
|
809 |
"An error occured during the file upload. It might me that the file is too "
|
810 |
"large or you do not have the premissions to write to the temporary upload "
|
@@ -814,7 +814,7 @@ msgstr ""
|
|
814 |
"large or you do not have the premissions to write to the temporary upload "
|
815 |
"directory. Please fix your server configuration and retry."
|
816 |
|
817 |
-
#: ../page_post_redirect_plugin.php:
|
818 |
msgid ""
|
819 |
"This does not look like the file is in the correct format - it is possibly "
|
820 |
"damaged or corrupt.<br/>Be sure the redirects are 1 per line and the "
|
@@ -824,7 +824,7 @@ msgstr ""
|
|
824 |
"damaged or corrupt.<br/>Be sure the redirects are 1 per line and the "
|
825 |
"redirect and destination are seperated by a PIPE (|), COMMA (,) or a TAB."
|
826 |
|
827 |
-
#: ../page_post_redirect_plugin.php:
|
828 |
msgid ""
|
829 |
"It does not look like there are any valid items to import - check the file "
|
830 |
"and try again."
|
@@ -832,63 +832,63 @@ msgstr ""
|
|
832 |
"It does not look like there are any valid items to import - check the file "
|
833 |
"and try again."
|
834 |
|
835 |
-
#: ../page_post_redirect_plugin.php:
|
836 |
msgid "ERROR - No Valid items to add."
|
837 |
msgstr "ERROR - No Valid items to add."
|
838 |
|
839 |
-
#: ../page_post_redirect_plugin.php:
|
840 |
msgid "Donate"
|
841 |
msgstr "Donate"
|
842 |
|
843 |
-
#: ../page_post_redirect_plugin.php:
|
844 |
msgid "Quick Redirects"
|
845 |
msgstr "Quick Redirects"
|
846 |
|
847 |
-
#: ../page_post_redirect_plugin.php:
|
848 |
msgid "FAQ"
|
849 |
msgstr "FAQ"
|
850 |
|
851 |
-
#: ../page_post_redirect_plugin.php:
|
852 |
msgid "Make Redirect <strong>Active</strong>."
|
853 |
msgstr "Make Redirect <strong>Active</strong>."
|
854 |
|
855 |
-
#: ../page_post_redirect_plugin.php:
|
856 |
msgid "Open redirect link in a <strong>new window.</strong>"
|
857 |
msgstr "Open redirect link in a <strong>new window.</strong>"
|
858 |
|
859 |
-
#: ../page_post_redirect_plugin.php:
|
860 |
msgid "Add <strong>rel=\"nofollow\"</strong> to redirect link."
|
861 |
msgstr "Add <strong>rel=\"nofollow\"</strong> to redirect link."
|
862 |
|
863 |
-
#: ../page_post_redirect_plugin.php:
|
864 |
msgid "<strong>Show</strong> the Redirect URL instead of original URL."
|
865 |
msgstr "<strong>Show</strong> the Redirect URL instead of original URL."
|
866 |
|
867 |
-
#: ../page_post_redirect_plugin.php:
|
868 |
msgid "Redirect URL:"
|
869 |
msgstr "Redirect URL:"
|
870 |
|
871 |
-
#: ../page_post_redirect_plugin.php:
|
872 |
msgid "Type of Redirect:"
|
873 |
msgstr "Type of Redirect:"
|
874 |
|
875 |
-
#: ../page_post_redirect_plugin.php:
|
876 |
msgid "Permanent"
|
877 |
msgstr "Permanent"
|
878 |
|
879 |
-
#: ../page_post_redirect_plugin.php:
|
880 |
msgid "Temporary"
|
881 |
msgstr "Temporary"
|
882 |
|
883 |
-
#: ../page_post_redirect_plugin.php:
|
884 |
msgid "Meta Redirect"
|
885 |
msgstr "Meta Redirect"
|
886 |
|
887 |
-
#: ../page_post_redirect_plugin.php:
|
888 |
msgid "Default is 302 (Temporary Redirect)."
|
889 |
msgstr "Default is 302 (Temporary Redirect)."
|
890 |
|
891 |
-
#: ../page_post_redirect_plugin.php:
|
892 |
msgid ""
|
893 |
"<strong>NOTE:</strong> For a Page or Post (or Custom Post) Redirect to work, "
|
894 |
"it may need to be published first and then saved again as a Draft. If you do "
|
@@ -898,6 +898,6 @@ msgstr ""
|
|
898 |
"it may need to be published first and then saved again as a Draft. If you do "
|
899 |
"not already have a page/post created you can add a 'Quick' redirect using the"
|
900 |
|
901 |
-
#: ../page_post_redirect_plugin.php:
|
902 |
msgid "method."
|
903 |
msgstr "method."
|
3 |
"Project-Id-Version: Quick Page/Post Redirect Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: Fri Jun 19 2015 23:42:16 GMT-0400 (Eastern Daylight Time)\n"
|
6 |
+
"PO-Revision-Date: Sun Jul 12 2015 13:41:05 GMT-0400 (Eastern Daylight Time)\n"
|
7 |
"Last-Translator: dfischer <admin@fischercreativemedia.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: English\n"
|
22 |
"X-Loco-Target-Locale: en_US\n"
|
23 |
"X-Generator: Loco - https://localise.biz/"
|
24 |
|
25 |
+
#: ../page_post_redirect_plugin.php:182
|
26 |
msgid "New Layout of Existing Redirects"
|
27 |
msgstr "New Layout of Existing Redirects"
|
28 |
|
29 |
+
#: ../page_post_redirect_plugin.php:183
|
30 |
msgid ""
|
31 |
"The existing <strong>Quick Redirects</strong> are now laid out in a list "
|
32 |
"format instead of form fields. When you have a lot of Redirects, this helps "
|
38 |
"elminiate the \"max_input_vars\" configuration issue where redirects were not "
|
39 |
"saving correctly."
|
40 |
|
41 |
+
#: ../page_post_redirect_plugin.php:184
|
42 |
msgid "To edit an exisitng redirect, click the pencil icon"
|
43 |
msgstr "To edit an exisitng redirect, click the pencil icon"
|
44 |
|
45 |
+
#: ../page_post_redirect_plugin.php:184
|
46 |
msgid "and the row will become editable. Click the trash can icon"
|
47 |
msgstr "and the row will become editable. Click the trash can icon"
|
48 |
|
49 |
+
#: ../page_post_redirect_plugin.php:184
|
50 |
msgid "and the redirect will be deleted. Click the trash can icon"
|
51 |
msgstr "and the redirect will be deleted. Click the trash can icon"
|
52 |
|
53 |
+
#: ../page_post_redirect_plugin.php:196
|
54 |
msgid "New Option to Use jQuery"
|
55 |
msgstr "New Option to Use jQuery"
|
56 |
|
57 |
+
#: ../page_post_redirect_plugin.php:197
|
58 |
msgid ""
|
59 |
"To increase the effectiveness of the plugin's ability to add new window and "
|
60 |
"nofollow functionality, you can use the jQuery option."
|
62 |
"To increase the effectiveness of the plugin's ability to add new window and "
|
63 |
"nofollow functionality, you can use the jQuery option."
|
64 |
|
65 |
+
#: ../page_post_redirect_plugin.php:198
|
66 |
msgid ""
|
67 |
"This adds JavaScript/jQuery scripting to check the links in the output HTML "
|
68 |
"of the page and add the correct functionality if needed."
|
70 |
"This adds JavaScript/jQuery scripting to check the links in the output HTML "
|
71 |
"of the page and add the correct functionality if needed."
|
72 |
|
73 |
+
#: ../page_post_redirect_plugin.php:199
|
74 |
msgid "If you experience JavaScript/jQuery conflicts, try turning this option off."
|
75 |
msgstr "If you experience JavaScript/jQuery conflicts, try turning this option off."
|
76 |
|
77 |
+
#: ../page_post_redirect_plugin.php:300
|
78 |
msgid "Quick Redirects Updated."
|
79 |
msgstr "Quick Redirects Updated."
|
80 |
|
81 |
+
#: ../page_post_redirect_plugin.php:405
|
82 |
msgid "Redirect"
|
83 |
msgstr "Redirect"
|
84 |
|
85 |
# Plugin Name
|
86 |
+
#: ../page_post_redirect_plugin.php:467
|
87 |
msgid "Quick Page/Post Redirect"
|
88 |
msgstr "Quick Page/Post Redirect"
|
89 |
|
90 |
+
#: ../page_post_redirect_plugin.php:479
|
91 |
+
msgid "Are you sure you want to PERMANENTLY Delets ALL Quick Redirects?"
|
92 |
+
msgstr "Are you sure you want to PERMANENTLY Delets ALL Quick Redirects?"
|
93 |
+
|
94 |
+
#: ../page_post_redirect_plugin.php:479
|
95 |
+
msgid "Are you sure you want to PERMANENTLY Delets ALL Individual Redirects?"
|
96 |
+
msgstr "Are you sure you want to PERMANENTLY Delets ALL Individual Redirects?"
|
97 |
+
|
98 |
+
#: ../page_post_redirect_plugin.php:479
|
99 |
msgid ""
|
100 |
"Redirect could not be saved as a redirect already exists with the same "
|
101 |
"Request URL."
|
103 |
"Redirect could not be saved as a redirect already exists with the same "
|
104 |
"Request URL."
|
105 |
|
106 |
+
#: ../page_post_redirect_plugin.php:479
|
107 |
msgid "Are you sure you want to delete this redirect?"
|
108 |
msgstr "Are you sure you want to delete this redirect?"
|
109 |
|
110 |
# JavaScript message
|
111 |
+
#: ../page_post_redirect_plugin.php:479
|
112 |
msgid "Error Saving Redirect\\nTry refreshing the page and trying again."
|
113 |
msgstr "Error Saving Redirect\\nTry refreshing the page and trying again."
|
114 |
|
115 |
# JavaScript Message
|
116 |
+
#: ../page_post_redirect_plugin.php:479
|
117 |
msgid "File type not allowed,\\nAllowed file type: *.txt"
|
118 |
msgstr "File type not allowed,\\nAllowed file type: *.txt"
|
119 |
|
120 |
+
#: ../page_post_redirect_plugin.php:479
|
121 |
msgid "Please add at least one redirect before submitting form"
|
122 |
msgstr "Please add at least one redirect before submitting form"
|
123 |
|
124 |
+
#: ../page_post_redirect_plugin.php:548
|
125 |
msgid "Quick Page/Post Redirect FAQs/Help"
|
126 |
msgstr "Quick Page/Post Redirect FAQs/Help"
|
127 |
|
128 |
+
#: ../page_post_redirect_plugin.php:549
|
129 |
msgid ""
|
130 |
"The FAQS are now on a feed that can be updated on the fly. If you have a "
|
131 |
"question and don't see an answer, please send an email to <a href=\"mailto:"
|
145 |
"information like your WordPress version and examples if the plugin is not "
|
146 |
"working correctly for you. THANKS!"
|
147 |
|
148 |
+
#: ../page_post_redirect_plugin.php:567
|
149 |
msgid "Table of Contents"
|
150 |
msgstr "Table of Contents"
|
151 |
|
152 |
+
#: ../page_post_redirect_plugin.php:571
|
153 |
msgid "Questions/Answers"
|
154 |
msgstr "Questions/Answers"
|
155 |
|
156 |
+
#: ../page_post_redirect_plugin.php:581
|
157 |
msgid "Quick Page Post Redirect Summary"
|
158 |
msgstr "Quick Page Post Redirect Summary"
|
159 |
|
160 |
+
#: ../page_post_redirect_plugin.php:582
|
161 |
msgid "This is a summary of Individual & Quick 301 Redirects."
|
162 |
msgstr "This is a summary of Individual & Quick 301 Redirects."
|
163 |
|
164 |
+
#: ../page_post_redirect_plugin.php:590
|
165 |
msgid "Summary"
|
166 |
msgstr "Summary"
|
167 |
|
168 |
+
#: ../page_post_redirect_plugin.php:593
|
169 |
msgid "Acitve Override is on - All Redirects are OFF!"
|
170 |
msgstr "Acitve Override is on - All Redirects are OFF!\n"
|
171 |
|
172 |
+
#: ../page_post_redirect_plugin.php:594
|
173 |
msgid "No Follow Override is on!"
|
174 |
msgstr "No Follow Override is on!"
|
175 |
|
176 |
+
#: ../page_post_redirect_plugin.php:595
|
177 |
msgid "New Window Override is on!"
|
178 |
msgstr "New Window Override is on!"
|
179 |
|
180 |
+
#: ../page_post_redirect_plugin.php:596
|
181 |
msgid "Rewrite Override is on!"
|
182 |
msgstr "Rewrite Override is on!"
|
183 |
|
184 |
+
#: ../page_post_redirect_plugin.php:600
|
185 |
msgid "ID"
|
186 |
msgstr "ID"
|
187 |
|
188 |
+
#: ../page_post_redirect_plugin.php:601
|
189 |
msgid "post type"
|
190 |
msgstr "post type"
|
191 |
|
192 |
+
#: ../page_post_redirect_plugin.php:602
|
193 |
msgid "active"
|
194 |
msgstr "active"
|
195 |
|
196 |
+
#: ../page_post_redirect_plugin.php:603
|
197 |
msgid "no follow"
|
198 |
msgstr "no follow"
|
199 |
|
200 |
+
#: ../page_post_redirect_plugin.php:604
|
201 |
msgid "new window"
|
202 |
msgstr "new window"
|
203 |
|
204 |
+
#: ../page_post_redirect_plugin.php:605
|
205 |
msgid "type"
|
206 |
msgstr "type"
|
207 |
|
208 |
+
#: ../page_post_redirect_plugin.php:606
|
209 |
msgid "rewrite"
|
210 |
msgstr "rewrite"
|
211 |
|
212 |
+
#: ../page_post_redirect_plugin.php:607
|
213 |
msgid "original URL"
|
214 |
msgstr "original URL"
|
215 |
|
216 |
+
#: ../page_post_redirect_plugin.php:608
|
217 |
msgid "redirect to URL"
|
218 |
msgstr "redirect to URL"
|
219 |
|
220 |
+
#: ../page_post_redirect_plugin.php:701 ../page_post_redirect_plugin.php:795
|
221 |
msgid "Quick Redirects Imported & Replaced."
|
222 |
msgstr "Quick Redirects Imported & Replaced."
|
223 |
|
224 |
+
#: ../page_post_redirect_plugin.php:702 ../page_post_redirect_plugin.php:796
|
225 |
msgid "Quick Redirects Imported & Added to Existing Redirects."
|
226 |
msgstr "Quick Redirects Imported & Added to Existing Redirects."
|
227 |
|
228 |
+
#: ../page_post_redirect_plugin.php:705
|
229 |
msgid "Import/Export Redirects"
|
230 |
msgstr "Import/Export Redirects"
|
231 |
|
232 |
+
#: ../page_post_redirect_plugin.php:721 ../page_post_redirect_plugin.php:819
|
233 |
msgid ""
|
234 |
"If you enjoy or find any of our plugins useful, please donate a few dollars "
|
235 |
"to help with future development and updates. We thank you in advance."
|
237 |
"If you enjoy or find any of our plugins useful, please donate a few dollars "
|
238 |
"to help with future development and updates. We thank you in advance."
|
239 |
|
240 |
+
#: ../page_post_redirect_plugin.php:727 ../page_post_redirect_plugin.php:999
|
241 |
msgid "Export Redirects"
|
242 |
msgstr "Export Redirects"
|
243 |
|
244 |
+
#: ../page_post_redirect_plugin.php:728
|
245 |
msgid ""
|
246 |
"You should back-up your redirect regularly in case something happens to the "
|
247 |
"database."
|
249 |
"You should back-up your redirect regularly in case something happens to the "
|
250 |
"database."
|
251 |
|
252 |
+
#: ../page_post_redirect_plugin.php:729
|
253 |
msgid ""
|
254 |
"Please use the below buttons to make a back-up as either encoded "
|
255 |
"(unreadable) or pipe separated"
|
257 |
"Please use the below buttons to make a back-up as either encoded "
|
258 |
"(unreadable) or pipe separated"
|
259 |
|
260 |
+
#: ../page_post_redirect_plugin.php:730
|
261 |
msgid "EXPORT all Quick Redirects (Encoded)"
|
262 |
msgstr "EXPORT all Quick Redirects (Encoded)"
|
263 |
|
264 |
+
#: ../page_post_redirect_plugin.php:731 ../page_post_redirect_plugin.php:744
|
265 |
msgid "OR"
|
266 |
msgstr "OR"
|
267 |
|
268 |
+
#: ../page_post_redirect_plugin.php:732
|
269 |
msgid "EXPORT all Quick Redirects (PIPE Separated)"
|
270 |
msgstr "EXPORT all Quick Redirects (PIPE Separated)"
|
271 |
|
272 |
+
#: ../page_post_redirect_plugin.php:739 ../page_post_redirect_plugin.php:1004
|
273 |
msgid "Import Redirects"
|
274 |
msgstr "Import Redirects"
|
275 |
|
276 |
+
#: ../page_post_redirect_plugin.php:740
|
277 |
msgid ""
|
278 |
"If you want to replace or restore redirects from a file, use the \"Restore\" "
|
279 |
"option."
|
281 |
"If you want to replace or restore redirects from a file, use the \"Restore\" "
|
282 |
"option."
|
283 |
|
284 |
+
#: ../page_post_redirect_plugin.php:741
|
285 |
msgid ""
|
286 |
"To add new redirects in bulk use the \"Add To\" option - NOTE: to Add To "
|
287 |
"redirects, the file must be pipe dilimited "
|
289 |
"To add new redirects in bulk use the \"Add To\" option - NOTE: to Add To "
|
290 |
"redirects, the file must be pipe dilimited "
|
291 |
|
292 |
+
#: ../page_post_redirect_plugin.php:743
|
293 |
msgid "RESTORE Saved Quick Redirects"
|
294 |
msgstr "RESTORE Saved Quick Redirects"
|
295 |
|
296 |
+
#: ../page_post_redirect_plugin.php:745
|
297 |
msgid "ADD TO Quick Redirects"
|
298 |
msgstr "ADD TO Quick Redirects"
|
299 |
|
300 |
+
#: ../page_post_redirect_plugin.php:749 ../page_post_redirect_plugin.php:770
|
301 |
msgid "Select Quick Redirects file to import:"
|
302 |
msgstr "Select Quick Redirects file to import:"
|
303 |
|
304 |
+
#: ../page_post_redirect_plugin.php:760
|
305 |
msgid ""
|
306 |
"The import file should be a text file with one rediect per line, PIPE "
|
307 |
"separated, in this format:"
|
310 |
"separated, in this format:"
|
311 |
|
312 |
# these are column titles.
|
313 |
+
#: ../page_post_redirect_plugin.php:762
|
314 |
msgid "redirect|destination|newwindow|nofollow"
|
315 |
msgstr "redirect|destination|newwindow|nofollow"
|
316 |
|
317 |
+
#: ../page_post_redirect_plugin.php:763
|
318 |
msgid "for Example:"
|
319 |
msgstr "for Example:"
|
320 |
|
321 |
# translate this to same as source
|
322 |
+
#: ../page_post_redirect_plugin.php:765
|
323 |
msgid "/old-location.htm|http://some.com/new-destination/|0|1"
|
324 |
msgstr "/old-location.htm|http://some.com/new-destination/|0|1"
|
325 |
|
326 |
+
#: ../page_post_redirect_plugin.php:766
|
327 |
msgid "/dontate/|http://example.com/destination/|1|1"
|
328 |
msgstr "/dontate/|http://example.com/destination/|1|1"
|
329 |
|
330 |
+
#: ../page_post_redirect_plugin.php:768
|
331 |
msgid "IMPORTANT:"
|
332 |
msgstr "IMPORTANT:"
|
333 |
|
334 |
+
#: ../page_post_redirect_plugin.php:768
|
335 |
msgid ""
|
336 |
"Make Sure any destination URLs that have a PIPE in the querystring data are "
|
337 |
"URL encoded before adding them!"
|
339 |
"Make Sure any destination URLs that have a PIPE in the querystring data are "
|
340 |
"URL encoded before adding them!"
|
341 |
|
342 |
+
#: ../page_post_redirect_plugin.php:775
|
343 |
msgid "ADD TO Current Quick Redirects"
|
344 |
msgstr "ADD TO Current Quick Redirects"
|
345 |
|
346 |
+
#: ../page_post_redirect_plugin.php:793
|
347 |
msgid "All Quick Redirects deleted from database."
|
348 |
msgstr "All Quick Redirects deleted from database."
|
349 |
|
350 |
+
#: ../page_post_redirect_plugin.php:794
|
351 |
+
msgid "All Individual Redirects deleted from database."
|
352 |
+
msgstr "All Individual Redirects deleted from database."
|
353 |
+
|
354 |
+
#: ../page_post_redirect_plugin.php:797
|
355 |
+
msgid ""
|
356 |
+
"There was an problem with your last request. Please reload the page and try "
|
357 |
+
"again."
|
358 |
+
msgstr ""
|
359 |
+
"There was an problem with your last request. Please reload the page and try "
|
360 |
+
"again."
|
361 |
|
362 |
+
#: ../page_post_redirect_plugin.php:801
|
363 |
msgid "Quick Page Post Redirect Options"
|
364 |
msgstr "Quick Page Post Redirect Options"
|
365 |
|
366 |
+
#: ../page_post_redirect_plugin.php:830
|
367 |
msgid "Basic Settings"
|
368 |
msgstr "Basic Settings"
|
369 |
|
370 |
# Custom Post Types text here should match WordPress' name for Custom Post Types.
|
371 |
+
#: ../page_post_redirect_plugin.php:833
|
372 |
msgid "Use with Custom Post Types?"
|
373 |
msgstr "Use with Custom Post Types?"
|
374 |
|
375 |
+
#: ../page_post_redirect_plugin.php:837
|
376 |
msgid "Hide"
|
377 |
msgstr "Hide"
|
378 |
|
379 |
+
#: ../page_post_redirect_plugin.php:837
|
380 |
msgid "meta box for following Post Types:"
|
381 |
msgstr "meta box for following Post Types:"
|
382 |
|
383 |
+
#: ../page_post_redirect_plugin.php:859
|
384 |
msgid "Show Column Headers?"
|
385 |
msgstr "Show Column Headers?"
|
386 |
|
387 |
+
#: ../page_post_redirect_plugin.php:860
|
388 |
msgid "Show Columns on list pages for set up redirects."
|
389 |
msgstr "Show Columns on list pages for set up redirects."
|
390 |
|
391 |
+
#: ../page_post_redirect_plugin.php:863
|
392 |
msgid "Use jQuery?"
|
393 |
msgstr "Use jQuery?"
|
394 |
|
395 |
+
#: ../page_post_redirect_plugin.php:864
|
396 |
msgid ""
|
397 |
"Increases effectiveness of plugin. If you have a jQuery conflict, try "
|
398 |
"turning this off."
|
400 |
"Increases effectiveness of plugin. If you have a jQuery conflict, try "
|
401 |
"turning this off."
|
402 |
|
403 |
+
#: ../page_post_redirect_plugin.php:864
|
404 |
msgid "Uses jQuery to add the \"New Window\" and \"No Follow\" attributes to links."
|
405 |
msgstr "Uses jQuery to add the \"New Window\" and \"No Follow\" attributes to links."
|
406 |
|
407 |
+
#: ../page_post_redirect_plugin.php:867
|
408 |
msgid "Meta Refresh Time (in seconds):"
|
409 |
msgstr "Meta Refresh Time (in seconds):"
|
410 |
|
411 |
+
#: ../page_post_redirect_plugin.php:868
|
412 |
msgid "Only needed for Meta Refresh. 0=default (instant)"
|
413 |
msgstr "Only needed for Meta Refresh. 0=default (instant)"
|
414 |
|
415 |
+
#: ../page_post_redirect_plugin.php:871
|
416 |
msgid "Meta Refresh Message:"
|
417 |
msgstr "Meta Refresh Message:"
|
418 |
|
419 |
+
#: ../page_post_redirect_plugin.php:872
|
420 |
msgid "Default is blank. Message to display while waiting for refresh."
|
421 |
msgstr "Default is blank. Message to display while waiting for refresh."
|
422 |
|
423 |
+
#: ../page_post_redirect_plugin.php:878
|
424 |
msgid "Master Override Options"
|
425 |
msgstr "Master Override Options"
|
426 |
|
427 |
+
#: ../page_post_redirect_plugin.php:878
|
428 |
msgid ""
|
429 |
"<strong>NOTE: </strong>The below settings will override all individual "
|
430 |
"settings."
|
432 |
"<strong>NOTE: </strong>The below settings will override all individual "
|
433 |
"settings."
|
434 |
|
435 |
+
#: ../page_post_redirect_plugin.php:881
|
436 |
msgid "Turn OFF all Redirects?"
|
437 |
msgstr "Turn OFF all Redirects?"
|
438 |
|
439 |
+
#: ../page_post_redirect_plugin.php:882
|
440 |
msgid "Basically the same as having no redirects set up."
|
441 |
msgstr "Basically the same as having no redirects set up."
|
442 |
|
443 |
# keep code text untranslated.
|
444 |
+
#: ../page_post_redirect_plugin.php:885
|
445 |
msgid "Make ALL Redirects have <code>rel=\"nofollow\"</code>?"
|
446 |
msgstr "Make ALL Redirects have <code>rel=\"nofollow\"</code>?"
|
447 |
|
448 |
+
#: ../page_post_redirect_plugin.php:886 ../page_post_redirect_plugin.php:890
|
449 |
msgid "Requires \"use jQuery\" option to work with Quick Redirects."
|
450 |
msgstr "Requires \"use jQuery\" option to work with Quick Redirects."
|
451 |
|
452 |
+
#: ../page_post_redirect_plugin.php:889
|
453 |
msgid "Make ALL Redirects open in a New Window?"
|
454 |
msgstr "Make ALL Redirects open in a New Window?"
|
455 |
|
456 |
+
#: ../page_post_redirect_plugin.php:893
|
457 |
msgid "Make ALL Redirects this type:"
|
458 |
msgstr "Make ALL Redirects this type:"
|
459 |
|
460 |
+
#: ../page_post_redirect_plugin.php:895
|
461 |
msgid "Use Individual Settings"
|
462 |
msgstr "Use Individual Settings"
|
463 |
|
464 |
+
#: ../page_post_redirect_plugin.php:896
|
465 |
msgid "Permanant Redirect"
|
466 |
msgstr "Permanant Redirect"
|
467 |
|
468 |
+
#: ../page_post_redirect_plugin.php:897 ../page_post_redirect_plugin.php:898
|
469 |
msgid "Temporary Redirect"
|
470 |
msgstr "Temporary Redirect"
|
471 |
|
472 |
+
#: ../page_post_redirect_plugin.php:899
|
473 |
msgid "Meta Refresh Redirect"
|
474 |
msgstr "Meta Refresh Redirect"
|
475 |
|
476 |
+
#: ../page_post_redirect_plugin.php:901
|
477 |
msgid "(Quick 301 Redirects will always be 301)"
|
478 |
msgstr "(Quick 301 Redirects will always be 301)"
|
479 |
|
480 |
+
#: ../page_post_redirect_plugin.php:905
|
481 |
msgid "Make ALL redirects Case Sensitive?"
|
482 |
msgstr "Make ALL redirects Case Sensitive?"
|
483 |
|
484 |
+
#: ../page_post_redirect_plugin.php:906
|
485 |
msgid "Makes URLs CaSe SensiTivE - i.e., /somepage/ DOES NOT EQUAL /SoMEpaGe/"
|
486 |
msgstr "Makes URLs CaSe SensiTivE - i.e., /somepage/ DOES NOT EQUAL /SoMEpaGe/"
|
487 |
|
488 |
+
#: ../page_post_redirect_plugin.php:909
|
489 |
msgid "Make ALL Redirects go to this URL:"
|
490 |
msgstr "Make ALL Redirects go to this URL:"
|
491 |
|
492 |
+
#: ../page_post_redirect_plugin.php:910
|
493 |
msgid "Use full URL including <code>http://</code>."
|
494 |
msgstr "Use full URL including <code>http://</code>."
|
495 |
|
496 |
+
#: ../page_post_redirect_plugin.php:913
|
497 |
msgid "Rewrite ALL Redirects URLs to Show in LINK?"
|
498 |
msgstr "Rewrite ALL Redirects URLs to Show in LINK?"
|
499 |
|
500 |
+
#: ../page_post_redirect_plugin.php:914
|
501 |
msgid ""
|
502 |
"Makes link show redirect URL instead of the original URL. Will not work on "
|
503 |
"Quick Redirects at this time."
|
505 |
"Makes link show redirect URL instead of the original URL. Will not work on "
|
506 |
"Quick Redirects at this time."
|
507 |
|
508 |
+
#: ../page_post_redirect_plugin.php:920
|
509 |
msgid "Plugin Clean Up"
|
510 |
msgstr "Plugin Clean Up"
|
511 |
|
512 |
+
#: ../page_post_redirect_plugin.php:920
|
513 |
msgid ""
|
514 |
"<strong>NOTE: </strong>This will DELETE all redirects - so be careful with "
|
515 |
"this."
|
517 |
"<strong>NOTE: </strong>This will DELETE all redirects - so be careful with "
|
518 |
"this."
|
519 |
|
520 |
+
#: ../page_post_redirect_plugin.php:923
|
521 |
msgid "Delete Redirects?"
|
522 |
msgstr "Delete Redirects?"
|
523 |
|
524 |
+
#: ../page_post_redirect_plugin.php:925
|
525 |
msgid "Delete All Individual Redirects"
|
526 |
msgstr "Delete All Individual Redirects"
|
527 |
|
528 |
+
#: ../page_post_redirect_plugin.php:926
|
|
|
|
|
|
|
|
|
529 |
msgid "Delete all Quick Redirects"
|
530 |
msgstr "Delete all Quick Redirects"
|
531 |
|
532 |
+
#: ../page_post_redirect_plugin.php:927
|
|
|
|
|
|
|
|
|
533 |
msgid ""
|
534 |
"Individual Redirects are redirects set up on individual pages or posts when "
|
535 |
"in the editing screen. The Quick Redirects are set up on the Quick Redirects "
|
539 |
"in the editing screen. The Quick Redirects are set up on the Quick Redirects "
|
540 |
"page."
|
541 |
|
542 |
+
#: ../page_post_redirect_plugin.php:931
|
543 |
msgid "Save Changes"
|
544 |
msgstr "Save Changes"
|
545 |
|
546 |
+
#: ../page_post_redirect_plugin.php:971
|
547 |
msgid "Examples"
|
548 |
msgstr "Examples"
|
549 |
|
550 |
+
#: ../page_post_redirect_plugin.php:976
|
551 |
msgid "Troubleshooting"
|
552 |
msgstr "Troubleshooting"
|
553 |
|
554 |
+
#: ../page_post_redirect_plugin.php:979
|
555 |
msgid "IMPORTANT TROUBLESHOOTING NOTES:"
|
556 |
msgstr "IMPORTANT TROUBLESHOOTING NOTES:"
|
557 |
|
558 |
+
#: ../page_post_redirect_plugin.php:981
|
559 |
msgid ""
|
560 |
"At this time the New Window (NW) and No Follow (NF) features will not work "
|
561 |
"for Quick Redirects."
|
563 |
"At this time the New Window (NW) and No Follow (NF) features will not work "
|
564 |
"for Quick Redirects."
|
565 |
|
566 |
+
#: ../page_post_redirect_plugin.php:982
|
567 |
msgid ""
|
568 |
"It is recommended that the <b>Request URL</b> be relative to the ROOT "
|
569 |
"directory and contain the <code>/</code> at the beginning."
|
571 |
"It is recommended that the <b>Request URL</b> be relative to the ROOT "
|
572 |
"directory and contain the <code>/</code> at the beginning."
|
573 |
|
574 |
+
#: ../page_post_redirect_plugin.php:983
|
575 |
msgid ""
|
576 |
"If you do use the domain name in the Request URL field, make sure it matches "
|
577 |
"your site's domain style and protocol. For example, if your site uses \"www\" "
|
585 |
"<code>https://</code>, use it as the protocol. Our best guess is that your "
|
586 |
"domain and protocol are"
|
587 |
|
588 |
+
#: ../page_post_redirect_plugin.php:984
|
589 |
msgid ""
|
590 |
"If you are having issues with the link not redirecting on a SSL site with "
|
591 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
595 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
596 |
"redirects, one with and one without the SSL protocol."
|
597 |
|
598 |
+
#: ../page_post_redirect_plugin.php:985
|
599 |
msgid ""
|
600 |
"The <b>Destination</b> field can be any valid URL or relative path (from "
|
601 |
"root), for example"
|
603 |
"The <b>Destination</b> field can be any valid URL or relative path (from "
|
604 |
"root), for example"
|
605 |
|
606 |
+
#: ../page_post_redirect_plugin.php:986
|
607 |
msgid ""
|
608 |
"In order for NW (open in a new window) or NF (rel=\"nofollow\") options to "
|
609 |
"work with Quick Redirects, you need to have:"
|
611 |
"In order for NW (open in a new window) or NF (rel=\"nofollow\") options to "
|
612 |
"work with Quick Redirects, you need to have:"
|
613 |
|
614 |
+
#: ../page_post_redirect_plugin.php:988
|
615 |
msgid "\"Use jQuery?\" option selected in the settings page"
|
616 |
msgstr "\"Use jQuery?\" option selected in the settings page"
|
617 |
|
618 |
+
#: ../page_post_redirect_plugin.php:989
|
619 |
msgid ""
|
620 |
"A link that uses the request url SOMEWHERE in your site page - i.e., in a "
|
621 |
"menu, content, sidebar, etc."
|
623 |
"A link that uses the request url SOMEWHERE in your site page - i.e., in a "
|
624 |
"menu, content, sidebar, etc."
|
625 |
|
626 |
+
#: ../page_post_redirect_plugin.php:990
|
627 |
msgid ""
|
628 |
"The open in a new window or nofollow settings will not happen if someone "
|
629 |
"just types the old link in the URL or if they come from a bookmark or link "
|
639 |
"<code>target</code> and <code>rel</code> properties to the link to make it "
|
640 |
"work."
|
641 |
|
642 |
+
#: ../page_post_redirect_plugin.php:1000
|
643 |
msgid "You can export redirects in two formats - Encoded or Delimited."
|
644 |
msgstr "You can export redirects in two formats - Encoded or Delimited."
|
645 |
|
646 |
+
#: ../page_post_redirect_plugin.php:1013
|
647 |
msgid "Quick Redirects (301 Redirects)"
|
648 |
msgstr "Quick Redirects (301 Redirects)"
|
649 |
|
650 |
+
#: ../page_post_redirect_plugin.php:1024
|
651 |
msgid ""
|
652 |
"The <code>Use jQuery?</code> option is turned off in the settings.<br/>In "
|
653 |
"order to use <strong>NW</strong> (open in a new window) or "
|
659 |
"<strong>NF</strong> (add rel=\"nofollow\") options for Quick Redirects, you "
|
660 |
"must have it enabled."
|
661 |
|
662 |
+
#: ../page_post_redirect_plugin.php:1025 ../page_post_redirect_plugin.php:1030
|
663 |
msgid "hide this message"
|
664 |
msgstr "hide this message"
|
665 |
|
666 |
+
#: ../page_post_redirect_plugin.php:1029
|
667 |
msgid ""
|
668 |
"To use the <strong>NW</strong> (open in a new window) <strong>NF</strong> "
|
669 |
"(nofollow) options, check the appropriate option and update when adding "
|
677 |
"updated with these options (as long as you have <code>Use jQuery?</code> "
|
678 |
"enabled in the plugin settings."
|
679 |
|
680 |
+
#: ../page_post_redirect_plugin.php:1033
|
681 |
msgid ""
|
682 |
"Quick Redirects are useful when you have links from an old site that now "
|
683 |
"come up 404 Not Found, and you need to have them redirect to a new location "
|
693 |
"need to send some place else and you don't want to create a Page or Post "
|
694 |
"just to use the individual Page/Post Redirect option."
|
695 |
|
696 |
+
#: ../page_post_redirect_plugin.php:1034
|
697 |
msgid ""
|
698 |
"To add Quick Redirects, put the URL for the redirect in the <strong>Request "
|
699 |
"URL</strong> field, and the URL it should be redirected to in the "
|
707 |
"trash can at the end of that row. To edit a redirect, click the pencil edit "
|
708 |
"icon."
|
709 |
|
710 |
+
#: ../page_post_redirect_plugin.php:1035
|
711 |
msgid ""
|
712 |
"See 'HELP' in the upper right corner, for troubleshooting problems and "
|
713 |
"example redirects."
|
715 |
"See 'HELP' in the upper right corner, for troubleshooting problems and "
|
716 |
"example redirects."
|
717 |
|
718 |
+
#: ../page_post_redirect_plugin.php:1041 ../page_post_redirect_plugin.php:1084
|
719 |
msgid "Add New Redirects"
|
720 |
msgstr "Add New Redirects"
|
721 |
|
722 |
+
#: ../page_post_redirect_plugin.php:1044 ../page_post_redirect_plugin.php:1093
|
723 |
msgid "Request URL"
|
724 |
msgstr "Request URL"
|
725 |
|
726 |
+
#: ../page_post_redirect_plugin.php:1046 ../page_post_redirect_plugin.php:1095
|
727 |
msgid "Destination URL"
|
728 |
msgstr "Destination URL"
|
729 |
|
730 |
# Stands for 'New Window'
|
731 |
+
#: ../page_post_redirect_plugin.php:1047 ../page_post_redirect_plugin.php:1096
|
732 |
msgid "NW"
|
733 |
msgstr "NW"
|
734 |
|
735 |
# Stands for 'No Follow'
|
736 |
+
#: ../page_post_redirect_plugin.php:1048 ../page_post_redirect_plugin.php:1097
|
737 |
msgid "NF"
|
738 |
msgstr "NF"
|
739 |
|
740 |
+
#: ../page_post_redirect_plugin.php:1056 ../page_post_redirect_plugin.php:1065 ..
|
741 |
+
#: page_post_redirect_plugin.php:1074 ../page_post_redirect_plugin.php:1106
|
742 |
msgid "open in a New Window"
|
743 |
msgstr "open in a New Window"
|
744 |
|
745 |
+
#: ../page_post_redirect_plugin.php:1057 ../page_post_redirect_plugin.php:1066 ..
|
746 |
+
#: page_post_redirect_plugin.php:1075 ../page_post_redirect_plugin.php:1107
|
747 |
msgid "add No Follow"
|
748 |
msgstr "add No Follow"
|
749 |
|
750 |
+
#: ../page_post_redirect_plugin.php:1080
|
751 |
msgid ""
|
752 |
"New Window(NW) and NoFollow(NF) functionality not available unless \"Use with "
|
753 |
"jQuery\" is set in the options."
|
755 |
"New Window(NW) and NoFollow(NF) functionality not available unless \"Use with "
|
756 |
"jQuery\" is set in the options."
|
757 |
|
758 |
+
#: ../page_post_redirect_plugin.php:1090
|
759 |
msgid "Existing Redirects"
|
760 |
msgstr "Existing Redirects"
|
761 |
|
762 |
+
#: ../page_post_redirect_plugin.php:1108
|
763 |
msgid "Save"
|
764 |
msgstr "Save"
|
765 |
|
766 |
+
#: ../page_post_redirect_plugin.php:1109
|
767 |
msgid "Cancel"
|
768 |
msgstr "Cancel"
|
769 |
|
770 |
+
#: ../page_post_redirect_plugin.php:1152
|
771 |
msgid "Edit"
|
772 |
msgstr "Edit"
|
773 |
|
774 |
+
#: ../page_post_redirect_plugin.php:1153
|
775 |
msgid "Delete"
|
776 |
msgstr "Delete"
|
777 |
|
778 |
+
#: ../page_post_redirect_plugin.php:1161
|
779 |
+
msgid "No Quick Redirects."
|
780 |
+
msgstr "No Quick Redirects."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
781 |
|
782 |
+
#: ../page_post_redirect_plugin.php:1336
|
783 |
msgid ""
|
784 |
"An error occured during the file upload. Please fix your server "
|
785 |
"configuration and retry."
|
787 |
"An error occured during the file upload. Please fix your server "
|
788 |
"configuration and retry."
|
789 |
|
790 |
+
#: ../page_post_redirect_plugin.php:1336 ../page_post_redirect_plugin.php:1398
|
791 |
msgid "SERVER ERROR - Could Not Load"
|
792 |
msgstr "SERVER ERROR - Could Not Load"
|
793 |
|
794 |
+
#: ../page_post_redirect_plugin.php:1378 ../page_post_redirect_plugin.php:1384
|
795 |
msgid ""
|
796 |
"This does not look like a Quick Page Post Redirect file - it is possibly "
|
797 |
"damaged or corrupt."
|
799 |
"This does not look like a Quick Page Post Redirect file - it is possibly "
|
800 |
"damaged or corrupt."
|
801 |
|
802 |
+
#: ../page_post_redirect_plugin.php:1378 ../page_post_redirect_plugin.php:1384 ..
|
803 |
+
#: page_post_redirect_plugin.php:1412
|
804 |
msgid "ERROR - Not a valid File"
|
805 |
msgstr "ERROR - Not a valid File"
|
806 |
|
807 |
+
#: ../page_post_redirect_plugin.php:1398
|
808 |
msgid ""
|
809 |
"An error occured during the file upload. It might me that the file is too "
|
810 |
"large or you do not have the premissions to write to the temporary upload "
|
814 |
"large or you do not have the premissions to write to the temporary upload "
|
815 |
"directory. Please fix your server configuration and retry."
|
816 |
|
817 |
+
#: ../page_post_redirect_plugin.php:1412
|
818 |
msgid ""
|
819 |
"This does not look like the file is in the correct format - it is possibly "
|
820 |
"damaged or corrupt.<br/>Be sure the redirects are 1 per line and the "
|
824 |
"damaged or corrupt.<br/>Be sure the redirects are 1 per line and the "
|
825 |
"redirect and destination are seperated by a PIPE (|), COMMA (,) or a TAB."
|
826 |
|
827 |
+
#: ../page_post_redirect_plugin.php:1447
|
828 |
msgid ""
|
829 |
"It does not look like there are any valid items to import - check the file "
|
830 |
"and try again."
|
832 |
"It does not look like there are any valid items to import - check the file "
|
833 |
"and try again."
|
834 |
|
835 |
+
#: ../page_post_redirect_plugin.php:1447
|
836 |
msgid "ERROR - No Valid items to add."
|
837 |
msgstr "ERROR - No Valid items to add."
|
838 |
|
839 |
+
#: ../page_post_redirect_plugin.php:1493 ../page_post_redirect_plugin.php:1501
|
840 |
msgid "Donate"
|
841 |
msgstr "Donate"
|
842 |
|
843 |
+
#: ../page_post_redirect_plugin.php:1499 ../page_post_redirect_plugin.php:1554
|
844 |
msgid "Quick Redirects"
|
845 |
msgstr "Quick Redirects"
|
846 |
|
847 |
+
#: ../page_post_redirect_plugin.php:1500
|
848 |
msgid "FAQ"
|
849 |
msgstr "FAQ"
|
850 |
|
851 |
+
#: ../page_post_redirect_plugin.php:1519
|
852 |
msgid "Make Redirect <strong>Active</strong>."
|
853 |
msgstr "Make Redirect <strong>Active</strong>."
|
854 |
|
855 |
+
#: ../page_post_redirect_plugin.php:1520
|
856 |
msgid "Open redirect link in a <strong>new window.</strong>"
|
857 |
msgstr "Open redirect link in a <strong>new window.</strong>"
|
858 |
|
859 |
+
#: ../page_post_redirect_plugin.php:1521
|
860 |
msgid "Add <strong>rel=\"nofollow\"</strong> to redirect link."
|
861 |
msgstr "Add <strong>rel=\"nofollow\"</strong> to redirect link."
|
862 |
|
863 |
+
#: ../page_post_redirect_plugin.php:1522
|
864 |
msgid "<strong>Show</strong> the Redirect URL instead of original URL."
|
865 |
msgstr "<strong>Show</strong> the Redirect URL instead of original URL."
|
866 |
|
867 |
+
#: ../page_post_redirect_plugin.php:1524
|
868 |
msgid "Redirect URL:"
|
869 |
msgstr "Redirect URL:"
|
870 |
|
871 |
+
#: ../page_post_redirect_plugin.php:1526
|
872 |
msgid "Type of Redirect:"
|
873 |
msgstr "Type of Redirect:"
|
874 |
|
875 |
+
#: ../page_post_redirect_plugin.php:1548
|
876 |
msgid "Permanent"
|
877 |
msgstr "Permanent"
|
878 |
|
879 |
+
#: ../page_post_redirect_plugin.php:1549 ../page_post_redirect_plugin.php:1550
|
880 |
msgid "Temporary"
|
881 |
msgstr "Temporary"
|
882 |
|
883 |
+
#: ../page_post_redirect_plugin.php:1551
|
884 |
msgid "Meta Redirect"
|
885 |
msgstr "Meta Redirect"
|
886 |
|
887 |
+
#: ../page_post_redirect_plugin.php:1552
|
888 |
msgid "Default is 302 (Temporary Redirect)."
|
889 |
msgstr "Default is 302 (Temporary Redirect)."
|
890 |
|
891 |
+
#: ../page_post_redirect_plugin.php:1554
|
892 |
msgid ""
|
893 |
"<strong>NOTE:</strong> For a Page or Post (or Custom Post) Redirect to work, "
|
894 |
"it may need to be published first and then saved again as a Draft. If you do "
|
898 |
"it may need to be published first and then saved again as a Draft. If you do "
|
899 |
"not already have a page/post created you can add a 'Quick' redirect using the"
|
900 |
|
901 |
+
#: ../page_post_redirect_plugin.php:1554
|
902 |
msgid "method."
|
903 |
msgstr "method."
|
lang/quick-pagepost-redirect-plugin-es_MX.mo
CHANGED
Binary file
|
lang/quick-pagepost-redirect-plugin-es_MX.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Quick Page/Post Redirect Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: Fri Jun 19 2015 23:42:16 GMT-0400 (Eastern Daylight Time)\n"
|
6 |
-
"PO-Revision-Date: Sun Jul
|
7 |
"Last-Translator: dfischer <admin@fischercreativemedia.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: Spanish (Mexico)\n"
|
@@ -22,11 +22,11 @@ msgstr ""
|
|
22 |
"X-Loco-Target-Locale: es_MX\n"
|
23 |
"X-Generator: Loco - https://localise.biz/"
|
24 |
|
25 |
-
#: ../page_post_redirect_plugin.php:
|
26 |
msgid "New Layout of Existing Redirects"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../page_post_redirect_plugin.php:
|
30 |
msgid ""
|
31 |
"The existing <strong>Quick Redirects</strong> are now laid out in a list "
|
32 |
"format instead of form fields. When you have a lot of Redirects, this helps "
|
@@ -34,82 +34,90 @@ msgid ""
|
|
34 |
"saving correctly."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: ../page_post_redirect_plugin.php:
|
38 |
msgid "To edit an exisitng redirect, click the pencil icon"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../page_post_redirect_plugin.php:
|
42 |
msgid "and the row will become editable. Click the trash can icon"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../page_post_redirect_plugin.php:
|
46 |
msgid "and the redirect will be deleted. Click the trash can icon"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../page_post_redirect_plugin.php:
|
50 |
msgid "New Option to Use jQuery"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../page_post_redirect_plugin.php:
|
54 |
msgid ""
|
55 |
"To increase the effectiveness of the plugin's ability to add new window and "
|
56 |
"nofollow functionality, you can use the jQuery option."
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../page_post_redirect_plugin.php:
|
60 |
msgid ""
|
61 |
"This adds JavaScript/jQuery scripting to check the links in the output HTML "
|
62 |
"of the page and add the correct functionality if needed."
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../page_post_redirect_plugin.php:
|
66 |
msgid "If you experience JavaScript/jQuery conflicts, try turning this option off."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../page_post_redirect_plugin.php:
|
70 |
msgid "Quick Redirects Updated."
|
71 |
msgstr "Redirecciones Quick Actualización.\n"
|
72 |
|
73 |
-
#: ../page_post_redirect_plugin.php:
|
74 |
msgid "Redirect"
|
75 |
msgstr "Redirigir"
|
76 |
|
77 |
# Plugin Name
|
78 |
-
#: ../page_post_redirect_plugin.php:
|
79 |
msgid "Quick Page/Post Redirect"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../page_post_redirect_plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
msgid ""
|
84 |
"Redirect could not be saved as a redirect already exists with the same "
|
85 |
"Request URL."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../page_post_redirect_plugin.php:
|
89 |
msgid "Are you sure you want to delete this redirect?"
|
90 |
msgstr ""
|
91 |
|
92 |
# JavaScript message
|
93 |
-
#: ../page_post_redirect_plugin.php:
|
94 |
msgid "Error Saving Redirect\\nTry refreshing the page and trying again."
|
95 |
msgstr ""
|
96 |
|
97 |
# JavaScript Message
|
98 |
-
#: ../page_post_redirect_plugin.php:
|
99 |
msgid "File type not allowed,\\nAllowed file type: *.txt"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../page_post_redirect_plugin.php:
|
103 |
msgid "Please add at least one redirect before submitting form"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: ../page_post_redirect_plugin.php:
|
107 |
msgid "Quick Page/Post Redirect FAQs/Help"
|
108 |
msgstr ""
|
109 |
"Quick Page/Post Redirect \n"
|
110 |
"Preguntas Frecuentes/Ayuda"
|
111 |
|
112 |
-
#: ../page_post_redirect_plugin.php:
|
113 |
msgid ""
|
114 |
"The FAQS are now on a feed that can be updated on the fly. If you have a "
|
115 |
"question and don't see an answer, please send an email to <a href=\"mailto:"
|
@@ -121,392 +129,390 @@ msgid ""
|
|
121 |
"working correctly for you. THANKS!"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../page_post_redirect_plugin.php:
|
125 |
msgid "Table of Contents"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../page_post_redirect_plugin.php:
|
129 |
msgid "Questions/Answers"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: ../page_post_redirect_plugin.php:
|
133 |
msgid "Quick Page Post Redirect Summary"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../page_post_redirect_plugin.php:
|
137 |
msgid "This is a summary of Individual & Quick 301 Redirects."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../page_post_redirect_plugin.php:
|
141 |
msgid "Summary"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../page_post_redirect_plugin.php:
|
145 |
msgid "Acitve Override is on - All Redirects are OFF!"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../page_post_redirect_plugin.php:
|
149 |
msgid "No Follow Override is on!"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ../page_post_redirect_plugin.php:
|
153 |
msgid "New Window Override is on!"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../page_post_redirect_plugin.php:
|
157 |
msgid "Rewrite Override is on!"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../page_post_redirect_plugin.php:
|
161 |
msgid "ID"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../page_post_redirect_plugin.php:
|
165 |
msgid "post type"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../page_post_redirect_plugin.php:
|
169 |
msgid "active"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../page_post_redirect_plugin.php:
|
173 |
msgid "no follow"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../page_post_redirect_plugin.php:
|
177 |
msgid "new window"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../page_post_redirect_plugin.php:
|
181 |
msgid "type"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: ../page_post_redirect_plugin.php:
|
185 |
msgid "rewrite"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: ../page_post_redirect_plugin.php:
|
189 |
msgid "original URL"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ../page_post_redirect_plugin.php:
|
193 |
msgid "redirect to URL"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../page_post_redirect_plugin.php:
|
197 |
msgid "Quick Redirects Imported & Replaced."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../page_post_redirect_plugin.php:
|
201 |
msgid "Quick Redirects Imported & Added to Existing Redirects."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../page_post_redirect_plugin.php:
|
205 |
msgid "Import/Export Redirects"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../page_post_redirect_plugin.php:
|
209 |
msgid ""
|
210 |
"If you enjoy or find any of our plugins useful, please donate a few dollars "
|
211 |
"to help with future development and updates. We thank you in advance."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../page_post_redirect_plugin.php:
|
215 |
msgid "Export Redirects"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../page_post_redirect_plugin.php:
|
219 |
msgid ""
|
220 |
"You should back-up your redirect regularly in case something happens to the "
|
221 |
"database."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ../page_post_redirect_plugin.php:
|
225 |
msgid ""
|
226 |
"Please use the below buttons to make a back-up as either encoded "
|
227 |
"(unreadable) or pipe separated"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../page_post_redirect_plugin.php:
|
231 |
msgid "EXPORT all Quick Redirects (Encoded)"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../page_post_redirect_plugin.php:
|
235 |
msgid "OR"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../page_post_redirect_plugin.php:
|
239 |
msgid "EXPORT all Quick Redirects (PIPE Separated)"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../page_post_redirect_plugin.php:
|
243 |
msgid "Import Redirects"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../page_post_redirect_plugin.php:
|
247 |
msgid ""
|
248 |
"If you want to replace or restore redirects from a file, use the \"Restore\" "
|
249 |
"option."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: ../page_post_redirect_plugin.php:
|
253 |
msgid ""
|
254 |
"To add new redirects in bulk use the \"Add To\" option - NOTE: to Add To "
|
255 |
"redirects, the file must be pipe dilimited "
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../page_post_redirect_plugin.php:
|
259 |
msgid "RESTORE Saved Quick Redirects"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../page_post_redirect_plugin.php:
|
263 |
msgid "ADD TO Quick Redirects"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../page_post_redirect_plugin.php:
|
267 |
msgid "Select Quick Redirects file to import:"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../page_post_redirect_plugin.php:
|
271 |
msgid ""
|
272 |
"The import file should be a text file with one rediect per line, PIPE "
|
273 |
"separated, in this format:"
|
274 |
msgstr ""
|
275 |
|
276 |
# these are column titles.
|
277 |
-
#: ../page_post_redirect_plugin.php:
|
278 |
msgid "redirect|destination|newwindow|nofollow"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../page_post_redirect_plugin.php:
|
282 |
msgid "for Example:"
|
283 |
msgstr ""
|
284 |
|
285 |
# translate this to same as source
|
286 |
-
#: ../page_post_redirect_plugin.php:
|
287 |
msgid "/old-location.htm|http://some.com/new-destination/|0|1"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../page_post_redirect_plugin.php:
|
291 |
msgid "/dontate/|http://example.com/destination/|1|1"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../page_post_redirect_plugin.php:
|
295 |
msgid "IMPORTANT:"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../page_post_redirect_plugin.php:
|
299 |
msgid ""
|
300 |
"Make Sure any destination URLs that have a PIPE in the querystring data are "
|
301 |
"URL encoded before adding them!"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: ../page_post_redirect_plugin.php:
|
305 |
msgid "ADD TO Current Quick Redirects"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: ../page_post_redirect_plugin.php:
|
309 |
msgid "All Quick Redirects deleted from database."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: ../page_post_redirect_plugin.php:
|
313 |
-
msgid "All
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ../page_post_redirect_plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
msgid "Quick Page Post Redirect Options"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: ../page_post_redirect_plugin.php:
|
321 |
msgid "Basic Settings"
|
322 |
msgstr ""
|
323 |
|
324 |
# Custom Post Types text here should match WordPress' name for Custom Post Types.
|
325 |
-
#: ../page_post_redirect_plugin.php:
|
326 |
msgid "Use with Custom Post Types?"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: ../page_post_redirect_plugin.php:
|
330 |
msgid "Hide"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ../page_post_redirect_plugin.php:
|
334 |
msgid "meta box for following Post Types:"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ../page_post_redirect_plugin.php:
|
338 |
msgid "Show Column Headers?"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../page_post_redirect_plugin.php:
|
342 |
msgid "Show Columns on list pages for set up redirects."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ../page_post_redirect_plugin.php:
|
346 |
msgid "Use jQuery?"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: ../page_post_redirect_plugin.php:
|
350 |
msgid ""
|
351 |
"Increases effectiveness of plugin. If you have a jQuery conflict, try "
|
352 |
"turning this off."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../page_post_redirect_plugin.php:
|
356 |
msgid "Uses jQuery to add the \"New Window\" and \"No Follow\" attributes to links."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../page_post_redirect_plugin.php:
|
360 |
msgid "Meta Refresh Time (in seconds):"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../page_post_redirect_plugin.php:
|
364 |
msgid "Only needed for Meta Refresh. 0=default (instant)"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ../page_post_redirect_plugin.php:
|
368 |
msgid "Meta Refresh Message:"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../page_post_redirect_plugin.php:
|
372 |
msgid "Default is blank. Message to display while waiting for refresh."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../page_post_redirect_plugin.php:
|
376 |
msgid "Master Override Options"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../page_post_redirect_plugin.php:
|
380 |
msgid ""
|
381 |
"<strong>NOTE: </strong>The below settings will override all individual "
|
382 |
"settings."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: ../page_post_redirect_plugin.php:
|
386 |
msgid "Turn OFF all Redirects?"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: ../page_post_redirect_plugin.php:
|
390 |
msgid "Basically the same as having no redirects set up."
|
391 |
msgstr ""
|
392 |
|
393 |
# keep code text untranslated.
|
394 |
-
#: ../page_post_redirect_plugin.php:
|
395 |
msgid "Make ALL Redirects have <code>rel=\"nofollow\"</code>?"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ../page_post_redirect_plugin.php:
|
399 |
msgid "Requires \"use jQuery\" option to work with Quick Redirects."
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: ../page_post_redirect_plugin.php:
|
403 |
msgid "Make ALL Redirects open in a New Window?"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: ../page_post_redirect_plugin.php:
|
407 |
msgid "Make ALL Redirects this type:"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../page_post_redirect_plugin.php:
|
411 |
msgid "Use Individual Settings"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: ../page_post_redirect_plugin.php:
|
415 |
msgid "Permanant Redirect"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../page_post_redirect_plugin.php:
|
419 |
msgid "Temporary Redirect"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../page_post_redirect_plugin.php:
|
423 |
msgid "Meta Refresh Redirect"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../page_post_redirect_plugin.php:
|
427 |
msgid "(Quick 301 Redirects will always be 301)"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: ../page_post_redirect_plugin.php:
|
431 |
msgid "Make ALL redirects Case Sensitive?"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../page_post_redirect_plugin.php:
|
435 |
msgid "Makes URLs CaSe SensiTivE - i.e., /somepage/ DOES NOT EQUAL /SoMEpaGe/"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../page_post_redirect_plugin.php:
|
439 |
msgid "Make ALL Redirects go to this URL:"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: ../page_post_redirect_plugin.php:
|
443 |
msgid "Use full URL including <code>http://</code>."
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ../page_post_redirect_plugin.php:
|
447 |
msgid "Rewrite ALL Redirects URLs to Show in LINK?"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ../page_post_redirect_plugin.php:
|
451 |
msgid ""
|
452 |
"Makes link show redirect URL instead of the original URL. Will not work on "
|
453 |
"Quick Redirects at this time."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../page_post_redirect_plugin.php:
|
457 |
msgid "Plugin Clean Up"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../page_post_redirect_plugin.php:
|
461 |
msgid ""
|
462 |
"<strong>NOTE: </strong>This will DELETE all redirects - so be careful with "
|
463 |
"this."
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ../page_post_redirect_plugin.php:
|
467 |
msgid "Delete Redirects?"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: ../page_post_redirect_plugin.php:
|
471 |
msgid "Delete All Individual Redirects"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: ../page_post_redirect_plugin.php:
|
475 |
-
msgid "Are you sure you want to PERMANENTLY Delets ALL Regular Redirects?"
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: ../page_post_redirect_plugin.php:948
|
479 |
msgid "Delete all Quick Redirects"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ../page_post_redirect_plugin.php:
|
483 |
-
msgid "Are you sure you want to PERMANENTLY Delets ALL Quick Redirects?"
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
-
#: ../page_post_redirect_plugin.php:948
|
487 |
msgid ""
|
488 |
"Individual Redirects are redirects set up on individual pages or posts when "
|
489 |
"in the editing screen. The Quick Redirects are set up on the Quick Redirects "
|
490 |
"page."
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../page_post_redirect_plugin.php:
|
494 |
msgid "Save Changes"
|
495 |
msgstr "Guardar Cambios"
|
496 |
|
497 |
-
#: ../page_post_redirect_plugin.php:
|
498 |
msgid "Examples"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../page_post_redirect_plugin.php:
|
502 |
msgid "Troubleshooting"
|
503 |
msgstr "Solución De Problemas"
|
504 |
|
505 |
-
#: ../page_post_redirect_plugin.php:
|
506 |
msgid "IMPORTANT TROUBLESHOOTING NOTES:"
|
507 |
msgstr "NOTAS IMPORTANTES PROBLEMAS:"
|
508 |
|
509 |
-
#: ../page_post_redirect_plugin.php:
|
510 |
msgid ""
|
511 |
"At this time the New Window (NW) and No Follow (NF) features will not work "
|
512 |
"for Quick Redirects."
|
@@ -514,7 +520,7 @@ msgstr ""
|
|
514 |
"En este momento la ventana Nuevo (NW) y no seguir (NF) características no "
|
515 |
"funcionarán para redirecciones rápidos."
|
516 |
|
517 |
-
#: ../page_post_redirect_plugin.php:
|
518 |
msgid ""
|
519 |
"It is recommended that the <b>Request URL</b> be relative to the ROOT "
|
520 |
"directory and contain the <code>/</code> at the beginning."
|
@@ -522,7 +528,7 @@ msgstr ""
|
|
522 |
"Se recomienda que el <b> Solicitud URL </ b> ser relativa al directorio raíz "
|
523 |
"y contendrá el <code> / </ code> al principio."
|
524 |
|
525 |
-
#: ../page_post_redirect_plugin.php:
|
526 |
msgid ""
|
527 |
"If you do use the domain name in the Request URL field, make sure it matches "
|
528 |
"your site's domain style and protocol. For example, if your site uses \"www\" "
|
@@ -537,7 +543,7 @@ msgstr ""
|
|
537 |
"utilizan como protocolo. Nuestra mejor estimación es que su dominio y "
|
538 |
"protocolo son"
|
539 |
|
540 |
-
#: ../page_post_redirect_plugin.php:
|
541 |
msgid ""
|
542 |
"If you are having issues with the link not redirecting on a SSL site with "
|
543 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
@@ -547,7 +553,7 @@ msgstr ""
|
|
547 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
548 |
"redirects, one with and one without the SSL protocol."
|
549 |
|
550 |
-
#: ../page_post_redirect_plugin.php:
|
551 |
msgid ""
|
552 |
"The <b>Destination</b> field can be any valid URL or relative path (from "
|
553 |
"root), for example"
|
@@ -555,23 +561,23 @@ msgstr ""
|
|
555 |
"El <b> Destino </ b> puede ser cualquier URL válida o ruta relativa (de "
|
556 |
"raíz), por ejemplo"
|
557 |
|
558 |
-
#: ../page_post_redirect_plugin.php:
|
559 |
msgid ""
|
560 |
"In order for NW (open in a new window) or NF (rel=\"nofollow\") options to "
|
561 |
"work with Quick Redirects, you need to have:"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: ../page_post_redirect_plugin.php:
|
565 |
msgid "\"Use jQuery?\" option selected in the settings page"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../page_post_redirect_plugin.php:
|
569 |
msgid ""
|
570 |
"A link that uses the request url SOMEWHERE in your site page - i.e., in a "
|
571 |
"menu, content, sidebar, etc."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../page_post_redirect_plugin.php:
|
575 |
msgid ""
|
576 |
"The open in a new window or nofollow settings will not happen if someone "
|
577 |
"just types the old link in the URL or if they come from a bookmark or link "
|
@@ -581,15 +587,15 @@ msgid ""
|
|
581 |
"work."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../page_post_redirect_plugin.php:
|
585 |
msgid "You can export redirects in two formats - Encoded or Delimited."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../page_post_redirect_plugin.php:
|
589 |
msgid "Quick Redirects (301 Redirects)"
|
590 |
msgstr "Redirecciones Rápida (301 redirecciones)"
|
591 |
|
592 |
-
#: ../page_post_redirect_plugin.php:
|
593 |
msgid ""
|
594 |
"The <code>Use jQuery?</code> option is turned off in the settings.<br/>In "
|
595 |
"order to use <strong>NW</strong> (open in a new window) or "
|
@@ -597,11 +603,11 @@ msgid ""
|
|
597 |
"must have it enabled."
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: ../page_post_redirect_plugin.php:
|
601 |
msgid "hide this message"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../page_post_redirect_plugin.php:
|
605 |
msgid ""
|
606 |
"To use the <strong>NW</strong> (open in a new window) <strong>NF</strong> "
|
607 |
"(nofollow) options, check the appropriate option and update when adding "
|
@@ -610,7 +616,7 @@ msgid ""
|
|
610 |
"enabled in the plugin settings."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../page_post_redirect_plugin.php:
|
614 |
msgid ""
|
615 |
"Quick Redirects are useful when you have links from an old site that now "
|
616 |
"come up 404 Not Found, and you need to have them redirect to a new location "
|
@@ -627,7 +633,7 @@ msgstr ""
|
|
627 |
"crear una página o post sólo para utilizar la página de opción individual / "
|
628 |
"Publicar Remitir."
|
629 |
|
630 |
-
#: ../page_post_redirect_plugin.php:
|
631 |
msgid ""
|
632 |
"To add Quick Redirects, put the URL for the redirect in the <strong>Request "
|
633 |
"URL</strong> field, and the URL it should be redirected to in the "
|
@@ -641,7 +647,7 @@ msgstr ""
|
|
641 |
"clic en el bote de basura al final de la fila. Para editar una redirección, "
|
642 |
"haga clic en el icono del lápiz de edición."
|
643 |
|
644 |
-
#: ../page_post_redirect_plugin.php:
|
645 |
msgid ""
|
646 |
"See 'HELP' in the upper right corner, for troubleshooting problems and "
|
647 |
"example redirects."
|
@@ -649,180 +655,172 @@ msgstr ""
|
|
649 |
"Ver 'HELP' en la esquina superior derecha, para la resolución de problemas y "
|
650 |
"el ejemplo redirecciones."
|
651 |
|
652 |
-
#: ../page_post_redirect_plugin.php:
|
653 |
msgid "Add New Redirects"
|
654 |
msgstr "Añadir nuevas redirecciones"
|
655 |
|
656 |
-
#: ../page_post_redirect_plugin.php:
|
657 |
msgid "Request URL"
|
658 |
msgstr "Solicitud URL"
|
659 |
|
660 |
-
#: ../page_post_redirect_plugin.php:
|
661 |
msgid "Destination URL"
|
662 |
msgstr "Destination URL"
|
663 |
|
664 |
# Stands for 'New Window'
|
665 |
-
#: ../page_post_redirect_plugin.php:
|
666 |
msgid "NW"
|
667 |
msgstr "NW"
|
668 |
|
669 |
# Stands for 'No Follow'
|
670 |
-
#: ../page_post_redirect_plugin.php:
|
671 |
msgid "NF"
|
672 |
msgstr "NF"
|
673 |
|
674 |
-
#: ../page_post_redirect_plugin.php:
|
675 |
-
#: page_post_redirect_plugin.php:
|
676 |
msgid "open in a New Window"
|
677 |
msgstr "se abre en una nueva ventana"
|
678 |
|
679 |
-
#: ../page_post_redirect_plugin.php:
|
680 |
-
#: page_post_redirect_plugin.php:
|
681 |
msgid "add No Follow"
|
682 |
msgstr "Sin añadir Siga"
|
683 |
|
684 |
-
#: ../page_post_redirect_plugin.php:
|
685 |
msgid ""
|
686 |
"New Window(NW) and NoFollow(NF) functionality not available unless \"Use with "
|
687 |
"jQuery\" is set in the options."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: ../page_post_redirect_plugin.php:
|
691 |
msgid "Existing Redirects"
|
692 |
msgstr "Redirecciones existentes"
|
693 |
|
694 |
-
#: ../page_post_redirect_plugin.php:
|
695 |
msgid "Save"
|
696 |
msgstr "Guardar"
|
697 |
|
698 |
-
#: ../page_post_redirect_plugin.php:
|
699 |
msgid "Cancel"
|
700 |
msgstr "Cancelar"
|
701 |
|
702 |
-
#: ../page_post_redirect_plugin.php:
|
703 |
msgid "Edit"
|
704 |
msgstr "Editar"
|
705 |
|
706 |
-
#: ../page_post_redirect_plugin.php:
|
707 |
msgid "Delete"
|
708 |
msgstr "Dorrar"
|
709 |
|
710 |
-
#: ../page_post_redirect_plugin.php:
|
711 |
-
msgid "
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: ../page_post_redirect_plugin.php:
|
715 |
-
msgid "Quick Page/Post Redirect Plugin - Export"
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: ../page_post_redirect_plugin.php:1328
|
719 |
-
msgid "Quick Page/Post Redirect Plugin - Import"
|
720 |
-
msgstr ""
|
721 |
-
|
722 |
-
#: ../page_post_redirect_plugin.php:1370
|
723 |
msgid ""
|
724 |
"An error occured during the file upload. Please fix your server "
|
725 |
"configuration and retry."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: ../page_post_redirect_plugin.php:
|
729 |
msgid "SERVER ERROR - Could Not Load"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: ../page_post_redirect_plugin.php:
|
733 |
msgid ""
|
734 |
"This does not look like a Quick Page Post Redirect file - it is possibly "
|
735 |
"damaged or corrupt."
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../page_post_redirect_plugin.php:
|
739 |
-
#: page_post_redirect_plugin.php:
|
740 |
msgid "ERROR - Not a valid File"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: ../page_post_redirect_plugin.php:
|
744 |
msgid ""
|
745 |
"An error occured during the file upload. It might me that the file is too "
|
746 |
"large or you do not have the premissions to write to the temporary upload "
|
747 |
"directory. Please fix your server configuration and retry."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: ../page_post_redirect_plugin.php:
|
751 |
msgid ""
|
752 |
"This does not look like the file is in the correct format - it is possibly "
|
753 |
"damaged or corrupt.<br/>Be sure the redirects are 1 per line and the "
|
754 |
"redirect and destination are seperated by a PIPE (|), COMMA (,) or a TAB."
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../page_post_redirect_plugin.php:
|
758 |
msgid ""
|
759 |
"It does not look like there are any valid items to import - check the file "
|
760 |
"and try again."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../page_post_redirect_plugin.php:
|
764 |
msgid "ERROR - No Valid items to add."
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../page_post_redirect_plugin.php:
|
768 |
msgid "Donate"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../page_post_redirect_plugin.php:
|
772 |
msgid "Quick Redirects"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../page_post_redirect_plugin.php:
|
776 |
msgid "FAQ"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../page_post_redirect_plugin.php:
|
780 |
msgid "Make Redirect <strong>Active</strong>."
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../page_post_redirect_plugin.php:
|
784 |
msgid "Open redirect link in a <strong>new window.</strong>"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../page_post_redirect_plugin.php:
|
788 |
msgid "Add <strong>rel=\"nofollow\"</strong> to redirect link."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../page_post_redirect_plugin.php:
|
792 |
msgid "<strong>Show</strong> the Redirect URL instead of original URL."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../page_post_redirect_plugin.php:
|
796 |
msgid "Redirect URL:"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../page_post_redirect_plugin.php:
|
800 |
msgid "Type of Redirect:"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../page_post_redirect_plugin.php:
|
804 |
msgid "Permanent"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../page_post_redirect_plugin.php:
|
808 |
msgid "Temporary"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../page_post_redirect_plugin.php:
|
812 |
msgid "Meta Redirect"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../page_post_redirect_plugin.php:
|
816 |
msgid "Default is 302 (Temporary Redirect)."
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../page_post_redirect_plugin.php:
|
820 |
msgid ""
|
821 |
"<strong>NOTE:</strong> For a Page or Post (or Custom Post) Redirect to work, "
|
822 |
"it may need to be published first and then saved again as a Draft. If you do "
|
823 |
"not already have a page/post created you can add a 'Quick' redirect using the"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../page_post_redirect_plugin.php:
|
827 |
msgid "method."
|
828 |
msgstr ""
|
3 |
"Project-Id-Version: Quick Page/Post Redirect Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: Fri Jun 19 2015 23:42:16 GMT-0400 (Eastern Daylight Time)\n"
|
6 |
+
"PO-Revision-Date: Sun Jul 12 2015 13:41:17 GMT-0400 (Eastern Daylight Time)\n"
|
7 |
"Last-Translator: dfischer <admin@fischercreativemedia.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: Spanish (Mexico)\n"
|
22 |
"X-Loco-Target-Locale: es_MX\n"
|
23 |
"X-Generator: Loco - https://localise.biz/"
|
24 |
|
25 |
+
#: ../page_post_redirect_plugin.php:182
|
26 |
msgid "New Layout of Existing Redirects"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../page_post_redirect_plugin.php:183
|
30 |
msgid ""
|
31 |
"The existing <strong>Quick Redirects</strong> are now laid out in a list "
|
32 |
"format instead of form fields. When you have a lot of Redirects, this helps "
|
34 |
"saving correctly."
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../page_post_redirect_plugin.php:184
|
38 |
msgid "To edit an exisitng redirect, click the pencil icon"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../page_post_redirect_plugin.php:184
|
42 |
msgid "and the row will become editable. Click the trash can icon"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../page_post_redirect_plugin.php:184
|
46 |
msgid "and the redirect will be deleted. Click the trash can icon"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../page_post_redirect_plugin.php:196
|
50 |
msgid "New Option to Use jQuery"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../page_post_redirect_plugin.php:197
|
54 |
msgid ""
|
55 |
"To increase the effectiveness of the plugin's ability to add new window and "
|
56 |
"nofollow functionality, you can use the jQuery option."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: ../page_post_redirect_plugin.php:198
|
60 |
msgid ""
|
61 |
"This adds JavaScript/jQuery scripting to check the links in the output HTML "
|
62 |
"of the page and add the correct functionality if needed."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../page_post_redirect_plugin.php:199
|
66 |
msgid "If you experience JavaScript/jQuery conflicts, try turning this option off."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../page_post_redirect_plugin.php:300
|
70 |
msgid "Quick Redirects Updated."
|
71 |
msgstr "Redirecciones Quick Actualización.\n"
|
72 |
|
73 |
+
#: ../page_post_redirect_plugin.php:405
|
74 |
msgid "Redirect"
|
75 |
msgstr "Redirigir"
|
76 |
|
77 |
# Plugin Name
|
78 |
+
#: ../page_post_redirect_plugin.php:467
|
79 |
msgid "Quick Page/Post Redirect"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../page_post_redirect_plugin.php:479
|
83 |
+
msgid "Are you sure you want to PERMANENTLY Delets ALL Quick Redirects?"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: ../page_post_redirect_plugin.php:479
|
87 |
+
msgid "Are you sure you want to PERMANENTLY Delets ALL Individual Redirects?"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: ../page_post_redirect_plugin.php:479
|
91 |
msgid ""
|
92 |
"Redirect could not be saved as a redirect already exists with the same "
|
93 |
"Request URL."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: ../page_post_redirect_plugin.php:479
|
97 |
msgid "Are you sure you want to delete this redirect?"
|
98 |
msgstr ""
|
99 |
|
100 |
# JavaScript message
|
101 |
+
#: ../page_post_redirect_plugin.php:479
|
102 |
msgid "Error Saving Redirect\\nTry refreshing the page and trying again."
|
103 |
msgstr ""
|
104 |
|
105 |
# JavaScript Message
|
106 |
+
#: ../page_post_redirect_plugin.php:479
|
107 |
msgid "File type not allowed,\\nAllowed file type: *.txt"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../page_post_redirect_plugin.php:479
|
111 |
msgid "Please add at least one redirect before submitting form"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: ../page_post_redirect_plugin.php:548
|
115 |
msgid "Quick Page/Post Redirect FAQs/Help"
|
116 |
msgstr ""
|
117 |
"Quick Page/Post Redirect \n"
|
118 |
"Preguntas Frecuentes/Ayuda"
|
119 |
|
120 |
+
#: ../page_post_redirect_plugin.php:549
|
121 |
msgid ""
|
122 |
"The FAQS are now on a feed that can be updated on the fly. If you have a "
|
123 |
"question and don't see an answer, please send an email to <a href=\"mailto:"
|
129 |
"working correctly for you. THANKS!"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: ../page_post_redirect_plugin.php:567
|
133 |
msgid "Table of Contents"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: ../page_post_redirect_plugin.php:571
|
137 |
msgid "Questions/Answers"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../page_post_redirect_plugin.php:581
|
141 |
msgid "Quick Page Post Redirect Summary"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../page_post_redirect_plugin.php:582
|
145 |
msgid "This is a summary of Individual & Quick 301 Redirects."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../page_post_redirect_plugin.php:590
|
149 |
msgid "Summary"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ../page_post_redirect_plugin.php:593
|
153 |
msgid "Acitve Override is on - All Redirects are OFF!"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../page_post_redirect_plugin.php:594
|
157 |
msgid "No Follow Override is on!"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../page_post_redirect_plugin.php:595
|
161 |
msgid "New Window Override is on!"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../page_post_redirect_plugin.php:596
|
165 |
msgid "Rewrite Override is on!"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../page_post_redirect_plugin.php:600
|
169 |
msgid "ID"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../page_post_redirect_plugin.php:601
|
173 |
msgid "post type"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../page_post_redirect_plugin.php:602
|
177 |
msgid "active"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../page_post_redirect_plugin.php:603
|
181 |
msgid "no follow"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: ../page_post_redirect_plugin.php:604
|
185 |
msgid "new window"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: ../page_post_redirect_plugin.php:605
|
189 |
msgid "type"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ../page_post_redirect_plugin.php:606
|
193 |
msgid "rewrite"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: ../page_post_redirect_plugin.php:607
|
197 |
msgid "original URL"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../page_post_redirect_plugin.php:608
|
201 |
msgid "redirect to URL"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../page_post_redirect_plugin.php:701 ../page_post_redirect_plugin.php:795
|
205 |
msgid "Quick Redirects Imported & Replaced."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: ../page_post_redirect_plugin.php:702 ../page_post_redirect_plugin.php:796
|
209 |
msgid "Quick Redirects Imported & Added to Existing Redirects."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../page_post_redirect_plugin.php:705
|
213 |
msgid "Import/Export Redirects"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: ../page_post_redirect_plugin.php:721 ../page_post_redirect_plugin.php:819
|
217 |
msgid ""
|
218 |
"If you enjoy or find any of our plugins useful, please donate a few dollars "
|
219 |
"to help with future development and updates. We thank you in advance."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../page_post_redirect_plugin.php:727 ../page_post_redirect_plugin.php:999
|
223 |
msgid "Export Redirects"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../page_post_redirect_plugin.php:728
|
227 |
msgid ""
|
228 |
"You should back-up your redirect regularly in case something happens to the "
|
229 |
"database."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../page_post_redirect_plugin.php:729
|
233 |
msgid ""
|
234 |
"Please use the below buttons to make a back-up as either encoded "
|
235 |
"(unreadable) or pipe separated"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../page_post_redirect_plugin.php:730
|
239 |
msgid "EXPORT all Quick Redirects (Encoded)"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../page_post_redirect_plugin.php:731 ../page_post_redirect_plugin.php:744
|
243 |
msgid "OR"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../page_post_redirect_plugin.php:732
|
247 |
msgid "EXPORT all Quick Redirects (PIPE Separated)"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../page_post_redirect_plugin.php:739 ../page_post_redirect_plugin.php:1004
|
251 |
msgid "Import Redirects"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../page_post_redirect_plugin.php:740
|
255 |
msgid ""
|
256 |
"If you want to replace or restore redirects from a file, use the \"Restore\" "
|
257 |
"option."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../page_post_redirect_plugin.php:741
|
261 |
msgid ""
|
262 |
"To add new redirects in bulk use the \"Add To\" option - NOTE: to Add To "
|
263 |
"redirects, the file must be pipe dilimited "
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../page_post_redirect_plugin.php:743
|
267 |
msgid "RESTORE Saved Quick Redirects"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../page_post_redirect_plugin.php:745
|
271 |
msgid "ADD TO Quick Redirects"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../page_post_redirect_plugin.php:749 ../page_post_redirect_plugin.php:770
|
275 |
msgid "Select Quick Redirects file to import:"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../page_post_redirect_plugin.php:760
|
279 |
msgid ""
|
280 |
"The import file should be a text file with one rediect per line, PIPE "
|
281 |
"separated, in this format:"
|
282 |
msgstr ""
|
283 |
|
284 |
# these are column titles.
|
285 |
+
#: ../page_post_redirect_plugin.php:762
|
286 |
msgid "redirect|destination|newwindow|nofollow"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../page_post_redirect_plugin.php:763
|
290 |
msgid "for Example:"
|
291 |
msgstr ""
|
292 |
|
293 |
# translate this to same as source
|
294 |
+
#: ../page_post_redirect_plugin.php:765
|
295 |
msgid "/old-location.htm|http://some.com/new-destination/|0|1"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ../page_post_redirect_plugin.php:766
|
299 |
msgid "/dontate/|http://example.com/destination/|1|1"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../page_post_redirect_plugin.php:768
|
303 |
msgid "IMPORTANT:"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../page_post_redirect_plugin.php:768
|
307 |
msgid ""
|
308 |
"Make Sure any destination URLs that have a PIPE in the querystring data are "
|
309 |
"URL encoded before adding them!"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../page_post_redirect_plugin.php:775
|
313 |
msgid "ADD TO Current Quick Redirects"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ../page_post_redirect_plugin.php:793
|
317 |
msgid "All Quick Redirects deleted from database."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: ../page_post_redirect_plugin.php:794
|
321 |
+
msgid "All Individual Redirects deleted from database."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ../page_post_redirect_plugin.php:797
|
325 |
+
msgid ""
|
326 |
+
"There was an problem with your last request. Please reload the page and try "
|
327 |
+
"again."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: ../page_post_redirect_plugin.php:801
|
331 |
msgid "Quick Page Post Redirect Options"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ../page_post_redirect_plugin.php:830
|
335 |
msgid "Basic Settings"
|
336 |
msgstr ""
|
337 |
|
338 |
# Custom Post Types text here should match WordPress' name for Custom Post Types.
|
339 |
+
#: ../page_post_redirect_plugin.php:833
|
340 |
msgid "Use with Custom Post Types?"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../page_post_redirect_plugin.php:837
|
344 |
msgid "Hide"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../page_post_redirect_plugin.php:837
|
348 |
msgid "meta box for following Post Types:"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../page_post_redirect_plugin.php:859
|
352 |
msgid "Show Column Headers?"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ../page_post_redirect_plugin.php:860
|
356 |
msgid "Show Columns on list pages for set up redirects."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../page_post_redirect_plugin.php:863
|
360 |
msgid "Use jQuery?"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../page_post_redirect_plugin.php:864
|
364 |
msgid ""
|
365 |
"Increases effectiveness of plugin. If you have a jQuery conflict, try "
|
366 |
"turning this off."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../page_post_redirect_plugin.php:864
|
370 |
msgid "Uses jQuery to add the \"New Window\" and \"No Follow\" attributes to links."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../page_post_redirect_plugin.php:867
|
374 |
msgid "Meta Refresh Time (in seconds):"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../page_post_redirect_plugin.php:868
|
378 |
msgid "Only needed for Meta Refresh. 0=default (instant)"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ../page_post_redirect_plugin.php:871
|
382 |
msgid "Meta Refresh Message:"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../page_post_redirect_plugin.php:872
|
386 |
msgid "Default is blank. Message to display while waiting for refresh."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../page_post_redirect_plugin.php:878
|
390 |
msgid "Master Override Options"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../page_post_redirect_plugin.php:878
|
394 |
msgid ""
|
395 |
"<strong>NOTE: </strong>The below settings will override all individual "
|
396 |
"settings."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ../page_post_redirect_plugin.php:881
|
400 |
msgid "Turn OFF all Redirects?"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../page_post_redirect_plugin.php:882
|
404 |
msgid "Basically the same as having no redirects set up."
|
405 |
msgstr ""
|
406 |
|
407 |
# keep code text untranslated.
|
408 |
+
#: ../page_post_redirect_plugin.php:885
|
409 |
msgid "Make ALL Redirects have <code>rel=\"nofollow\"</code>?"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../page_post_redirect_plugin.php:886 ../page_post_redirect_plugin.php:890
|
413 |
msgid "Requires \"use jQuery\" option to work with Quick Redirects."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../page_post_redirect_plugin.php:889
|
417 |
msgid "Make ALL Redirects open in a New Window?"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../page_post_redirect_plugin.php:893
|
421 |
msgid "Make ALL Redirects this type:"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../page_post_redirect_plugin.php:895
|
425 |
msgid "Use Individual Settings"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../page_post_redirect_plugin.php:896
|
429 |
msgid "Permanant Redirect"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../page_post_redirect_plugin.php:897 ../page_post_redirect_plugin.php:898
|
433 |
msgid "Temporary Redirect"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../page_post_redirect_plugin.php:899
|
437 |
msgid "Meta Refresh Redirect"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../page_post_redirect_plugin.php:901
|
441 |
msgid "(Quick 301 Redirects will always be 301)"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../page_post_redirect_plugin.php:905
|
445 |
msgid "Make ALL redirects Case Sensitive?"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../page_post_redirect_plugin.php:906
|
449 |
msgid "Makes URLs CaSe SensiTivE - i.e., /somepage/ DOES NOT EQUAL /SoMEpaGe/"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../page_post_redirect_plugin.php:909
|
453 |
msgid "Make ALL Redirects go to this URL:"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../page_post_redirect_plugin.php:910
|
457 |
msgid "Use full URL including <code>http://</code>."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../page_post_redirect_plugin.php:913
|
461 |
msgid "Rewrite ALL Redirects URLs to Show in LINK?"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../page_post_redirect_plugin.php:914
|
465 |
msgid ""
|
466 |
"Makes link show redirect URL instead of the original URL. Will not work on "
|
467 |
"Quick Redirects at this time."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: ../page_post_redirect_plugin.php:920
|
471 |
msgid "Plugin Clean Up"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: ../page_post_redirect_plugin.php:920
|
475 |
msgid ""
|
476 |
"<strong>NOTE: </strong>This will DELETE all redirects - so be careful with "
|
477 |
"this."
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../page_post_redirect_plugin.php:923
|
481 |
msgid "Delete Redirects?"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../page_post_redirect_plugin.php:925
|
485 |
msgid "Delete All Individual Redirects"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: ../page_post_redirect_plugin.php:926
|
|
|
|
|
|
|
|
|
489 |
msgid "Delete all Quick Redirects"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ../page_post_redirect_plugin.php:927
|
|
|
|
|
|
|
|
|
493 |
msgid ""
|
494 |
"Individual Redirects are redirects set up on individual pages or posts when "
|
495 |
"in the editing screen. The Quick Redirects are set up on the Quick Redirects "
|
496 |
"page."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: ../page_post_redirect_plugin.php:931
|
500 |
msgid "Save Changes"
|
501 |
msgstr "Guardar Cambios"
|
502 |
|
503 |
+
#: ../page_post_redirect_plugin.php:971
|
504 |
msgid "Examples"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: ../page_post_redirect_plugin.php:976
|
508 |
msgid "Troubleshooting"
|
509 |
msgstr "Solución De Problemas"
|
510 |
|
511 |
+
#: ../page_post_redirect_plugin.php:979
|
512 |
msgid "IMPORTANT TROUBLESHOOTING NOTES:"
|
513 |
msgstr "NOTAS IMPORTANTES PROBLEMAS:"
|
514 |
|
515 |
+
#: ../page_post_redirect_plugin.php:981
|
516 |
msgid ""
|
517 |
"At this time the New Window (NW) and No Follow (NF) features will not work "
|
518 |
"for Quick Redirects."
|
520 |
"En este momento la ventana Nuevo (NW) y no seguir (NF) características no "
|
521 |
"funcionarán para redirecciones rápidos."
|
522 |
|
523 |
+
#: ../page_post_redirect_plugin.php:982
|
524 |
msgid ""
|
525 |
"It is recommended that the <b>Request URL</b> be relative to the ROOT "
|
526 |
"directory and contain the <code>/</code> at the beginning."
|
528 |
"Se recomienda que el <b> Solicitud URL </ b> ser relativa al directorio raíz "
|
529 |
"y contendrá el <code> / </ code> al principio."
|
530 |
|
531 |
+
#: ../page_post_redirect_plugin.php:983
|
532 |
msgid ""
|
533 |
"If you do use the domain name in the Request URL field, make sure it matches "
|
534 |
"your site's domain style and protocol. For example, if your site uses \"www\" "
|
543 |
"utilizan como protocolo. Nuestra mejor estimación es que su dominio y "
|
544 |
"protocolo son"
|
545 |
|
546 |
+
#: ../page_post_redirect_plugin.php:984
|
547 |
msgid ""
|
548 |
"If you are having issues with the link not redirecting on a SSL site with "
|
549 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
553 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
554 |
"redirects, one with and one without the SSL protocol."
|
555 |
|
556 |
+
#: ../page_post_redirect_plugin.php:985
|
557 |
msgid ""
|
558 |
"The <b>Destination</b> field can be any valid URL or relative path (from "
|
559 |
"root), for example"
|
561 |
"El <b> Destino </ b> puede ser cualquier URL válida o ruta relativa (de "
|
562 |
"raíz), por ejemplo"
|
563 |
|
564 |
+
#: ../page_post_redirect_plugin.php:986
|
565 |
msgid ""
|
566 |
"In order for NW (open in a new window) or NF (rel=\"nofollow\") options to "
|
567 |
"work with Quick Redirects, you need to have:"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../page_post_redirect_plugin.php:988
|
571 |
msgid "\"Use jQuery?\" option selected in the settings page"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../page_post_redirect_plugin.php:989
|
575 |
msgid ""
|
576 |
"A link that uses the request url SOMEWHERE in your site page - i.e., in a "
|
577 |
"menu, content, sidebar, etc."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../page_post_redirect_plugin.php:990
|
581 |
msgid ""
|
582 |
"The open in a new window or nofollow settings will not happen if someone "
|
583 |
"just types the old link in the URL or if they come from a bookmark or link "
|
587 |
"work."
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: ../page_post_redirect_plugin.php:1000
|
591 |
msgid "You can export redirects in two formats - Encoded or Delimited."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: ../page_post_redirect_plugin.php:1013
|
595 |
msgid "Quick Redirects (301 Redirects)"
|
596 |
msgstr "Redirecciones Rápida (301 redirecciones)"
|
597 |
|
598 |
+
#: ../page_post_redirect_plugin.php:1024
|
599 |
msgid ""
|
600 |
"The <code>Use jQuery?</code> option is turned off in the settings.<br/>In "
|
601 |
"order to use <strong>NW</strong> (open in a new window) or "
|
603 |
"must have it enabled."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: ../page_post_redirect_plugin.php:1025 ../page_post_redirect_plugin.php:1030
|
607 |
msgid "hide this message"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: ../page_post_redirect_plugin.php:1029
|
611 |
msgid ""
|
612 |
"To use the <strong>NW</strong> (open in a new window) <strong>NF</strong> "
|
613 |
"(nofollow) options, check the appropriate option and update when adding "
|
616 |
"enabled in the plugin settings."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: ../page_post_redirect_plugin.php:1033
|
620 |
msgid ""
|
621 |
"Quick Redirects are useful when you have links from an old site that now "
|
622 |
"come up 404 Not Found, and you need to have them redirect to a new location "
|
633 |
"crear una página o post sólo para utilizar la página de opción individual / "
|
634 |
"Publicar Remitir."
|
635 |
|
636 |
+
#: ../page_post_redirect_plugin.php:1034
|
637 |
msgid ""
|
638 |
"To add Quick Redirects, put the URL for the redirect in the <strong>Request "
|
639 |
"URL</strong> field, and the URL it should be redirected to in the "
|
647 |
"clic en el bote de basura al final de la fila. Para editar una redirección, "
|
648 |
"haga clic en el icono del lápiz de edición."
|
649 |
|
650 |
+
#: ../page_post_redirect_plugin.php:1035
|
651 |
msgid ""
|
652 |
"See 'HELP' in the upper right corner, for troubleshooting problems and "
|
653 |
"example redirects."
|
655 |
"Ver 'HELP' en la esquina superior derecha, para la resolución de problemas y "
|
656 |
"el ejemplo redirecciones."
|
657 |
|
658 |
+
#: ../page_post_redirect_plugin.php:1041 ../page_post_redirect_plugin.php:1084
|
659 |
msgid "Add New Redirects"
|
660 |
msgstr "Añadir nuevas redirecciones"
|
661 |
|
662 |
+
#: ../page_post_redirect_plugin.php:1044 ../page_post_redirect_plugin.php:1093
|
663 |
msgid "Request URL"
|
664 |
msgstr "Solicitud URL"
|
665 |
|
666 |
+
#: ../page_post_redirect_plugin.php:1046 ../page_post_redirect_plugin.php:1095
|
667 |
msgid "Destination URL"
|
668 |
msgstr "Destination URL"
|
669 |
|
670 |
# Stands for 'New Window'
|
671 |
+
#: ../page_post_redirect_plugin.php:1047 ../page_post_redirect_plugin.php:1096
|
672 |
msgid "NW"
|
673 |
msgstr "NW"
|
674 |
|
675 |
# Stands for 'No Follow'
|
676 |
+
#: ../page_post_redirect_plugin.php:1048 ../page_post_redirect_plugin.php:1097
|
677 |
msgid "NF"
|
678 |
msgstr "NF"
|
679 |
|
680 |
+
#: ../page_post_redirect_plugin.php:1056 ../page_post_redirect_plugin.php:1065 ..
|
681 |
+
#: page_post_redirect_plugin.php:1074 ../page_post_redirect_plugin.php:1106
|
682 |
msgid "open in a New Window"
|
683 |
msgstr "se abre en una nueva ventana"
|
684 |
|
685 |
+
#: ../page_post_redirect_plugin.php:1057 ../page_post_redirect_plugin.php:1066 ..
|
686 |
+
#: page_post_redirect_plugin.php:1075 ../page_post_redirect_plugin.php:1107
|
687 |
msgid "add No Follow"
|
688 |
msgstr "Sin añadir Siga"
|
689 |
|
690 |
+
#: ../page_post_redirect_plugin.php:1080
|
691 |
msgid ""
|
692 |
"New Window(NW) and NoFollow(NF) functionality not available unless \"Use with "
|
693 |
"jQuery\" is set in the options."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../page_post_redirect_plugin.php:1090
|
697 |
msgid "Existing Redirects"
|
698 |
msgstr "Redirecciones existentes"
|
699 |
|
700 |
+
#: ../page_post_redirect_plugin.php:1108
|
701 |
msgid "Save"
|
702 |
msgstr "Guardar"
|
703 |
|
704 |
+
#: ../page_post_redirect_plugin.php:1109
|
705 |
msgid "Cancel"
|
706 |
msgstr "Cancelar"
|
707 |
|
708 |
+
#: ../page_post_redirect_plugin.php:1152
|
709 |
msgid "Edit"
|
710 |
msgstr "Editar"
|
711 |
|
712 |
+
#: ../page_post_redirect_plugin.php:1153
|
713 |
msgid "Delete"
|
714 |
msgstr "Dorrar"
|
715 |
|
716 |
+
#: ../page_post_redirect_plugin.php:1161
|
717 |
+
msgid "No Quick Redirects."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../page_post_redirect_plugin.php:1336
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
721 |
msgid ""
|
722 |
"An error occured during the file upload. Please fix your server "
|
723 |
"configuration and retry."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: ../page_post_redirect_plugin.php:1336 ../page_post_redirect_plugin.php:1398
|
727 |
msgid "SERVER ERROR - Could Not Load"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: ../page_post_redirect_plugin.php:1378 ../page_post_redirect_plugin.php:1384
|
731 |
msgid ""
|
732 |
"This does not look like a Quick Page Post Redirect file - it is possibly "
|
733 |
"damaged or corrupt."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../page_post_redirect_plugin.php:1378 ../page_post_redirect_plugin.php:1384 ..
|
737 |
+
#: page_post_redirect_plugin.php:1412
|
738 |
msgid "ERROR - Not a valid File"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../page_post_redirect_plugin.php:1398
|
742 |
msgid ""
|
743 |
"An error occured during the file upload. It might me that the file is too "
|
744 |
"large or you do not have the premissions to write to the temporary upload "
|
745 |
"directory. Please fix your server configuration and retry."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../page_post_redirect_plugin.php:1412
|
749 |
msgid ""
|
750 |
"This does not look like the file is in the correct format - it is possibly "
|
751 |
"damaged or corrupt.<br/>Be sure the redirects are 1 per line and the "
|
752 |
"redirect and destination are seperated by a PIPE (|), COMMA (,) or a TAB."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: ../page_post_redirect_plugin.php:1447
|
756 |
msgid ""
|
757 |
"It does not look like there are any valid items to import - check the file "
|
758 |
"and try again."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../page_post_redirect_plugin.php:1447
|
762 |
msgid "ERROR - No Valid items to add."
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../page_post_redirect_plugin.php:1493 ../page_post_redirect_plugin.php:1501
|
766 |
msgid "Donate"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../page_post_redirect_plugin.php:1499 ../page_post_redirect_plugin.php:1554
|
770 |
msgid "Quick Redirects"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../page_post_redirect_plugin.php:1500
|
774 |
msgid "FAQ"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../page_post_redirect_plugin.php:1519
|
778 |
msgid "Make Redirect <strong>Active</strong>."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../page_post_redirect_plugin.php:1520
|
782 |
msgid "Open redirect link in a <strong>new window.</strong>"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../page_post_redirect_plugin.php:1521
|
786 |
msgid "Add <strong>rel=\"nofollow\"</strong> to redirect link."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../page_post_redirect_plugin.php:1522
|
790 |
msgid "<strong>Show</strong> the Redirect URL instead of original URL."
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../page_post_redirect_plugin.php:1524
|
794 |
msgid "Redirect URL:"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../page_post_redirect_plugin.php:1526
|
798 |
msgid "Type of Redirect:"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../page_post_redirect_plugin.php:1548
|
802 |
msgid "Permanent"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../page_post_redirect_plugin.php:1549 ../page_post_redirect_plugin.php:1550
|
806 |
msgid "Temporary"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../page_post_redirect_plugin.php:1551
|
810 |
msgid "Meta Redirect"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: ../page_post_redirect_plugin.php:1552
|
814 |
msgid "Default is 302 (Temporary Redirect)."
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: ../page_post_redirect_plugin.php:1554
|
818 |
msgid ""
|
819 |
"<strong>NOTE:</strong> For a Page or Post (or Custom Post) Redirect to work, "
|
820 |
"it may need to be published first and then saved again as a Draft. If you do "
|
821 |
"not already have a page/post created you can add a 'Quick' redirect using the"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: ../page_post_redirect_plugin.php:1554
|
825 |
msgid "method."
|
826 |
msgstr ""
|
lang/quick-pagepost-redirect-plugin.pot
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Quick Page/Post Redirect Plugin\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: Fri Jun 19 2015 23:42:16 GMT-0400 (Eastern Daylight Time)\n"
|
8 |
-
"POT-Revision-Date: Sun Jul
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: dfischer <admin2@fischercreativemedia.com>\n"
|
11 |
"Language-Team: \n"
|
@@ -25,11 +25,11 @@ msgstr ""
|
|
25 |
"X-Loco-Target-Locale: en_US\n"
|
26 |
"X-Generator: Loco - https://localise.biz/"
|
27 |
|
28 |
-
#: ../page_post_redirect_plugin.php:
|
29 |
msgid "New Layout of Existing Redirects"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: ../page_post_redirect_plugin.php:
|
33 |
msgid ""
|
34 |
"The existing <strong>Quick Redirects</strong> are now laid out in a list "
|
35 |
"format instead of form fields. When you have a lot of Redirects, this helps "
|
@@ -37,80 +37,88 @@ msgid ""
|
|
37 |
"saving correctly."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ../page_post_redirect_plugin.php:
|
41 |
msgid "To edit an exisitng redirect, click the pencil icon"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: ../page_post_redirect_plugin.php:
|
45 |
msgid "and the row will become editable. Click the trash can icon"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../page_post_redirect_plugin.php:
|
49 |
msgid "and the redirect will be deleted. Click the trash can icon"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../page_post_redirect_plugin.php:
|
53 |
msgid "New Option to Use jQuery"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../page_post_redirect_plugin.php:
|
57 |
msgid ""
|
58 |
"To increase the effectiveness of the plugin's ability to add new window and "
|
59 |
"nofollow functionality, you can use the jQuery option."
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../page_post_redirect_plugin.php:
|
63 |
msgid ""
|
64 |
"This adds JavaScript/jQuery scripting to check the links in the output HTML "
|
65 |
"of the page and add the correct functionality if needed."
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../page_post_redirect_plugin.php:
|
69 |
msgid "If you experience JavaScript/jQuery conflicts, try turning this option off."
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../page_post_redirect_plugin.php:
|
73 |
msgid "Quick Redirects Updated."
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: ../page_post_redirect_plugin.php:
|
77 |
msgid "Redirect"
|
78 |
msgstr ""
|
79 |
|
80 |
# Plugin Name
|
81 |
-
#: ../page_post_redirect_plugin.php:
|
82 |
msgid "Quick Page/Post Redirect"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../page_post_redirect_plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid ""
|
87 |
"Redirect could not be saved as a redirect already exists with the same "
|
88 |
"Request URL."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../page_post_redirect_plugin.php:
|
92 |
msgid "Are you sure you want to delete this redirect?"
|
93 |
msgstr ""
|
94 |
|
95 |
# JavaScript message
|
96 |
-
#: ../page_post_redirect_plugin.php:
|
97 |
msgid "Error Saving Redirect\\nTry refreshing the page and trying again."
|
98 |
msgstr ""
|
99 |
|
100 |
# JavaScript Message
|
101 |
-
#: ../page_post_redirect_plugin.php:
|
102 |
msgid "File type not allowed,\\nAllowed file type: *.txt"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: ../page_post_redirect_plugin.php:
|
106 |
msgid "Please add at least one redirect before submitting form"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../page_post_redirect_plugin.php:
|
110 |
msgid "Quick Page/Post Redirect FAQs/Help"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: ../page_post_redirect_plugin.php:
|
114 |
msgid ""
|
115 |
"The FAQS are now on a feed that can be updated on the fly. If you have a "
|
116 |
"question and don't see an answer, please send an email to <a href=\"mailto:"
|
@@ -122,404 +130,402 @@ msgid ""
|
|
122 |
"working correctly for you. THANKS!"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: ../page_post_redirect_plugin.php:
|
126 |
msgid "Table of Contents"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ../page_post_redirect_plugin.php:
|
130 |
msgid "Questions/Answers"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../page_post_redirect_plugin.php:
|
134 |
msgid "Quick Page Post Redirect Summary"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../page_post_redirect_plugin.php:
|
138 |
msgid "This is a summary of Individual & Quick 301 Redirects."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../page_post_redirect_plugin.php:
|
142 |
msgid "Summary"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../page_post_redirect_plugin.php:
|
146 |
msgid "Acitve Override is on - All Redirects are OFF!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../page_post_redirect_plugin.php:
|
150 |
msgid "No Follow Override is on!"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../page_post_redirect_plugin.php:
|
154 |
msgid "New Window Override is on!"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../page_post_redirect_plugin.php:
|
158 |
msgid "Rewrite Override is on!"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../page_post_redirect_plugin.php:
|
162 |
msgid "ID"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../page_post_redirect_plugin.php:
|
166 |
msgid "post type"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../page_post_redirect_plugin.php:
|
170 |
msgid "active"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../page_post_redirect_plugin.php:
|
174 |
msgid "no follow"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../page_post_redirect_plugin.php:
|
178 |
msgid "new window"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../page_post_redirect_plugin.php:
|
182 |
msgid "type"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../page_post_redirect_plugin.php:
|
186 |
msgid "rewrite"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../page_post_redirect_plugin.php:
|
190 |
msgid "original URL"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../page_post_redirect_plugin.php:
|
194 |
msgid "redirect to URL"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../page_post_redirect_plugin.php:
|
198 |
msgid "Quick Redirects Imported & Replaced."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../page_post_redirect_plugin.php:
|
202 |
msgid "Quick Redirects Imported & Added to Existing Redirects."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../page_post_redirect_plugin.php:
|
206 |
msgid "Import/Export Redirects"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../page_post_redirect_plugin.php:
|
210 |
msgid ""
|
211 |
"If you enjoy or find any of our plugins useful, please donate a few dollars "
|
212 |
"to help with future development and updates. We thank you in advance."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../page_post_redirect_plugin.php:
|
216 |
msgid "Export Redirects"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../page_post_redirect_plugin.php:
|
220 |
msgid ""
|
221 |
"You should back-up your redirect regularly in case something happens to the "
|
222 |
"database."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: ../page_post_redirect_plugin.php:
|
226 |
msgid ""
|
227 |
"Please use the below buttons to make a back-up as either encoded "
|
228 |
"(unreadable) or pipe separated"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../page_post_redirect_plugin.php:
|
232 |
msgid "EXPORT all Quick Redirects (Encoded)"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../page_post_redirect_plugin.php:
|
236 |
msgid "OR"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../page_post_redirect_plugin.php:
|
240 |
msgid "EXPORT all Quick Redirects (PIPE Separated)"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../page_post_redirect_plugin.php:
|
244 |
msgid "Import Redirects"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../page_post_redirect_plugin.php:
|
248 |
msgid ""
|
249 |
"If you want to replace or restore redirects from a file, use the \"Restore\" "
|
250 |
"option."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: ../page_post_redirect_plugin.php:
|
254 |
msgid ""
|
255 |
"To add new redirects in bulk use the \"Add To\" option - NOTE: to Add To "
|
256 |
"redirects, the file must be pipe dilimited "
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../page_post_redirect_plugin.php:
|
260 |
msgid "RESTORE Saved Quick Redirects"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../page_post_redirect_plugin.php:
|
264 |
msgid "ADD TO Quick Redirects"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../page_post_redirect_plugin.php:
|
268 |
msgid "Select Quick Redirects file to import:"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../page_post_redirect_plugin.php:
|
272 |
msgid ""
|
273 |
"The import file should be a text file with one rediect per line, PIPE "
|
274 |
"separated, in this format:"
|
275 |
msgstr ""
|
276 |
|
277 |
# these are column titles.
|
278 |
-
#: ../page_post_redirect_plugin.php:
|
279 |
msgid "redirect|destination|newwindow|nofollow"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../page_post_redirect_plugin.php:
|
283 |
msgid "for Example:"
|
284 |
msgstr ""
|
285 |
|
286 |
# translate this to same as source
|
287 |
-
#: ../page_post_redirect_plugin.php:
|
288 |
msgid "/old-location.htm|http://some.com/new-destination/|0|1"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../page_post_redirect_plugin.php:
|
292 |
msgid "/dontate/|http://example.com/destination/|1|1"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../page_post_redirect_plugin.php:
|
296 |
msgid "IMPORTANT:"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../page_post_redirect_plugin.php:
|
300 |
msgid ""
|
301 |
"Make Sure any destination URLs that have a PIPE in the querystring data are "
|
302 |
"URL encoded before adding them!"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../page_post_redirect_plugin.php:
|
306 |
msgid "ADD TO Current Quick Redirects"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../page_post_redirect_plugin.php:
|
310 |
msgid "All Quick Redirects deleted from database."
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: ../page_post_redirect_plugin.php:
|
314 |
-
msgid "All
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ../page_post_redirect_plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
msgid "Quick Page Post Redirect Options"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: ../page_post_redirect_plugin.php:
|
322 |
msgid "Basic Settings"
|
323 |
msgstr ""
|
324 |
|
325 |
# Custom Post Types text here should match WordPress' name for Custom Post Types.
|
326 |
-
#: ../page_post_redirect_plugin.php:
|
327 |
msgid "Use with Custom Post Types?"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: ../page_post_redirect_plugin.php:
|
331 |
msgid "Hide"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ../page_post_redirect_plugin.php:
|
335 |
msgid "meta box for following Post Types:"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../page_post_redirect_plugin.php:
|
339 |
msgid "Show Column Headers?"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ../page_post_redirect_plugin.php:
|
343 |
msgid "Show Columns on list pages for set up redirects."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../page_post_redirect_plugin.php:
|
347 |
msgid "Use jQuery?"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: ../page_post_redirect_plugin.php:
|
351 |
msgid ""
|
352 |
"Increases effectiveness of plugin. If you have a jQuery conflict, try "
|
353 |
"turning this off."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ../page_post_redirect_plugin.php:
|
357 |
msgid "Uses jQuery to add the \"New Window\" and \"No Follow\" attributes to links."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ../page_post_redirect_plugin.php:
|
361 |
msgid "Meta Refresh Time (in seconds):"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: ../page_post_redirect_plugin.php:
|
365 |
msgid "Only needed for Meta Refresh. 0=default (instant)"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../page_post_redirect_plugin.php:
|
369 |
msgid "Meta Refresh Message:"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../page_post_redirect_plugin.php:
|
373 |
msgid "Default is blank. Message to display while waiting for refresh."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ../page_post_redirect_plugin.php:
|
377 |
msgid "Master Override Options"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: ../page_post_redirect_plugin.php:
|
381 |
msgid ""
|
382 |
"<strong>NOTE: </strong>The below settings will override all individual "
|
383 |
"settings."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ../page_post_redirect_plugin.php:
|
387 |
msgid "Turn OFF all Redirects?"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ../page_post_redirect_plugin.php:
|
391 |
msgid "Basically the same as having no redirects set up."
|
392 |
msgstr ""
|
393 |
|
394 |
# keep code text untranslated.
|
395 |
-
#: ../page_post_redirect_plugin.php:
|
396 |
msgid "Make ALL Redirects have <code>rel=\"nofollow\"</code>?"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../page_post_redirect_plugin.php:
|
400 |
msgid "Requires \"use jQuery\" option to work with Quick Redirects."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ../page_post_redirect_plugin.php:
|
404 |
msgid "Make ALL Redirects open in a New Window?"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: ../page_post_redirect_plugin.php:
|
408 |
msgid "Make ALL Redirects this type:"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../page_post_redirect_plugin.php:
|
412 |
msgid "Use Individual Settings"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../page_post_redirect_plugin.php:
|
416 |
msgid "Permanant Redirect"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../page_post_redirect_plugin.php:
|
420 |
msgid "Temporary Redirect"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../page_post_redirect_plugin.php:
|
424 |
msgid "Meta Refresh Redirect"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../page_post_redirect_plugin.php:
|
428 |
msgid "(Quick 301 Redirects will always be 301)"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../page_post_redirect_plugin.php:
|
432 |
msgid "Make ALL redirects Case Sensitive?"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../page_post_redirect_plugin.php:
|
436 |
msgid "Makes URLs CaSe SensiTivE - i.e., /somepage/ DOES NOT EQUAL /SoMEpaGe/"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../page_post_redirect_plugin.php:
|
440 |
msgid "Make ALL Redirects go to this URL:"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: ../page_post_redirect_plugin.php:
|
444 |
msgid "Use full URL including <code>http://</code>."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../page_post_redirect_plugin.php:
|
448 |
msgid "Rewrite ALL Redirects URLs to Show in LINK?"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: ../page_post_redirect_plugin.php:
|
452 |
msgid ""
|
453 |
"Makes link show redirect URL instead of the original URL. Will not work on "
|
454 |
"Quick Redirects at this time."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../page_post_redirect_plugin.php:
|
458 |
msgid "Plugin Clean Up"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../page_post_redirect_plugin.php:
|
462 |
msgid ""
|
463 |
"<strong>NOTE: </strong>This will DELETE all redirects - so be careful with "
|
464 |
"this."
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../page_post_redirect_plugin.php:
|
468 |
msgid "Delete Redirects?"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../page_post_redirect_plugin.php:
|
472 |
msgid "Delete All Individual Redirects"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../page_post_redirect_plugin.php:
|
476 |
-
msgid "Are you sure you want to PERMANENTLY Delets ALL Regular Redirects?"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: ../page_post_redirect_plugin.php:948
|
480 |
msgid "Delete all Quick Redirects"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../page_post_redirect_plugin.php:
|
484 |
-
msgid "Are you sure you want to PERMANENTLY Delets ALL Quick Redirects?"
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: ../page_post_redirect_plugin.php:948
|
488 |
msgid ""
|
489 |
"Individual Redirects are redirects set up on individual pages or posts when "
|
490 |
"in the editing screen. The Quick Redirects are set up on the Quick Redirects "
|
491 |
"page."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: ../page_post_redirect_plugin.php:
|
495 |
msgid "Save Changes"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: ../page_post_redirect_plugin.php:
|
499 |
msgid "Examples"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../page_post_redirect_plugin.php:
|
503 |
msgid "Troubleshooting"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: ../page_post_redirect_plugin.php:
|
507 |
msgid "IMPORTANT TROUBLESHOOTING NOTES:"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: ../page_post_redirect_plugin.php:
|
511 |
msgid ""
|
512 |
"At this time the New Window (NW) and No Follow (NF) features will not work "
|
513 |
"for Quick Redirects."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../page_post_redirect_plugin.php:
|
517 |
msgid ""
|
518 |
"It is recommended that the <b>Request URL</b> be relative to the ROOT "
|
519 |
"directory and contain the <code>/</code> at the beginning."
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ../page_post_redirect_plugin.php:
|
523 |
msgid ""
|
524 |
"If you do use the domain name in the Request URL field, make sure it matches "
|
525 |
"your site's domain style and protocol. For example, if your site uses \"www\" "
|
@@ -528,36 +534,36 @@ msgid ""
|
|
528 |
"domain and protocol are"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../page_post_redirect_plugin.php:
|
532 |
msgid ""
|
533 |
"If you are having issues with the link not redirecting on a SSL site with "
|
534 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
535 |
"redirects, one with and one without the SSL protocol."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../page_post_redirect_plugin.php:
|
539 |
msgid ""
|
540 |
"The <b>Destination</b> field can be any valid URL or relative path (from "
|
541 |
"root), for example"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: ../page_post_redirect_plugin.php:
|
545 |
msgid ""
|
546 |
"In order for NW (open in a new window) or NF (rel=\"nofollow\") options to "
|
547 |
"work with Quick Redirects, you need to have:"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../page_post_redirect_plugin.php:
|
551 |
msgid "\"Use jQuery?\" option selected in the settings page"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../page_post_redirect_plugin.php:
|
555 |
msgid ""
|
556 |
"A link that uses the request url SOMEWHERE in your site page - i.e., in a "
|
557 |
"menu, content, sidebar, etc."
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../page_post_redirect_plugin.php:
|
561 |
msgid ""
|
562 |
"The open in a new window or nofollow settings will not happen if someone "
|
563 |
"just types the old link in the URL or if they come from a bookmark or link "
|
@@ -567,15 +573,15 @@ msgid ""
|
|
567 |
"work."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../page_post_redirect_plugin.php:
|
571 |
msgid "You can export redirects in two formats - Encoded or Delimited."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../page_post_redirect_plugin.php:
|
575 |
msgid "Quick Redirects (301 Redirects)"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: ../page_post_redirect_plugin.php:
|
579 |
msgid ""
|
580 |
"The <code>Use jQuery?</code> option is turned off in the settings.<br/>In "
|
581 |
"order to use <strong>NW</strong> (open in a new window) or "
|
@@ -583,11 +589,11 @@ msgid ""
|
|
583 |
"must have it enabled."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: ../page_post_redirect_plugin.php:
|
587 |
msgid "hide this message"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: ../page_post_redirect_plugin.php:
|
591 |
msgid ""
|
592 |
"To use the <strong>NW</strong> (open in a new window) <strong>NF</strong> "
|
593 |
"(nofollow) options, check the appropriate option and update when adding "
|
@@ -596,7 +602,7 @@ msgid ""
|
|
596 |
"enabled in the plugin settings."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../page_post_redirect_plugin.php:
|
600 |
msgid ""
|
601 |
"Quick Redirects are useful when you have links from an old site that now "
|
602 |
"come up 404 Not Found, and you need to have them redirect to a new location "
|
@@ -606,7 +612,7 @@ msgid ""
|
|
606 |
"just to use the individual Page/Post Redirect option."
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../page_post_redirect_plugin.php:
|
610 |
msgid ""
|
611 |
"To add Quick Redirects, put the URL for the redirect in the <strong>Request "
|
612 |
"URL</strong> field, and the URL it should be redirected to in the "
|
@@ -615,186 +621,178 @@ msgid ""
|
|
615 |
"icon."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../page_post_redirect_plugin.php:
|
619 |
msgid ""
|
620 |
"See 'HELP' in the upper right corner, for troubleshooting problems and "
|
621 |
"example redirects."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../page_post_redirect_plugin.php:
|
625 |
msgid "Add New Redirects"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../page_post_redirect_plugin.php:
|
629 |
msgid "Request URL"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../page_post_redirect_plugin.php:
|
633 |
msgid "Destination URL"
|
634 |
msgstr ""
|
635 |
|
636 |
# Stands for 'New Window'
|
637 |
-
#: ../page_post_redirect_plugin.php:
|
638 |
msgid "NW"
|
639 |
msgstr ""
|
640 |
|
641 |
# Stands for 'No Follow'
|
642 |
-
#: ../page_post_redirect_plugin.php:
|
643 |
msgid "NF"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: ../page_post_redirect_plugin.php:
|
647 |
-
#: /page_post_redirect_plugin.php:
|
648 |
msgid "open in a New Window"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: ../page_post_redirect_plugin.php:
|
652 |
-
#: /page_post_redirect_plugin.php:
|
653 |
msgid "add No Follow"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../page_post_redirect_plugin.php:
|
657 |
msgid ""
|
658 |
"New Window(NW) and NoFollow(NF) functionality not available unless \"Use with "
|
659 |
"jQuery\" is set in the options."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: ../page_post_redirect_plugin.php:
|
663 |
msgid "Existing Redirects"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: ../page_post_redirect_plugin.php:
|
667 |
msgid "Save"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: ../page_post_redirect_plugin.php:
|
671 |
msgid "Cancel"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: ../page_post_redirect_plugin.php:
|
675 |
msgid "Edit"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: ../page_post_redirect_plugin.php:
|
679 |
msgid "Delete"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: ../page_post_redirect_plugin.php:
|
683 |
-
msgid "
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../page_post_redirect_plugin.php:
|
687 |
-
msgid "Quick Page/Post Redirect Plugin - Export"
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
#: ../page_post_redirect_plugin.php:1328
|
691 |
-
msgid "Quick Page/Post Redirect Plugin - Import"
|
692 |
-
msgstr ""
|
693 |
-
|
694 |
-
#: ../page_post_redirect_plugin.php:1370
|
695 |
msgid ""
|
696 |
"An error occured during the file upload. Please fix your server "
|
697 |
"configuration and retry."
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../page_post_redirect_plugin.php:
|
701 |
msgid "SERVER ERROR - Could Not Load"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../page_post_redirect_plugin.php:
|
705 |
msgid ""
|
706 |
"This does not look like a Quick Page Post Redirect file - it is possibly "
|
707 |
"damaged or corrupt."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: ../page_post_redirect_plugin.php:
|
711 |
-
#: /page_post_redirect_plugin.php:
|
712 |
msgid "ERROR - Not a valid File"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: ../page_post_redirect_plugin.php:
|
716 |
msgid ""
|
717 |
"An error occured during the file upload. It might me that the file is too "
|
718 |
"large or you do not have the premissions to write to the temporary upload "
|
719 |
"directory. Please fix your server configuration and retry."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: ../page_post_redirect_plugin.php:
|
723 |
msgid ""
|
724 |
"This does not look like the file is in the correct format - it is possibly "
|
725 |
"damaged or corrupt.<br/>Be sure the redirects are 1 per line and the "
|
726 |
"redirect and destination are seperated by a PIPE (|), COMMA (,) or a TAB."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../page_post_redirect_plugin.php:
|
730 |
msgid ""
|
731 |
"It does not look like there are any valid items to import - check the file "
|
732 |
"and try again."
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: ../page_post_redirect_plugin.php:
|
736 |
msgid "ERROR - No Valid items to add."
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: ../page_post_redirect_plugin.php:
|
740 |
msgid "Donate"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: ../page_post_redirect_plugin.php:
|
744 |
msgid "Quick Redirects"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: ../page_post_redirect_plugin.php:
|
748 |
msgid "FAQ"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../page_post_redirect_plugin.php:
|
752 |
msgid "Make Redirect <strong>Active</strong>."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: ../page_post_redirect_plugin.php:
|
756 |
msgid "Open redirect link in a <strong>new window.</strong>"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../page_post_redirect_plugin.php:
|
760 |
msgid "Add <strong>rel=\"nofollow\"</strong> to redirect link."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../page_post_redirect_plugin.php:
|
764 |
msgid "<strong>Show</strong> the Redirect URL instead of original URL."
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../page_post_redirect_plugin.php:
|
768 |
msgid "Redirect URL:"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../page_post_redirect_plugin.php:
|
772 |
msgid "Type of Redirect:"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../page_post_redirect_plugin.php:
|
776 |
msgid "Permanent"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../page_post_redirect_plugin.php:
|
780 |
msgid "Temporary"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../page_post_redirect_plugin.php:
|
784 |
msgid "Meta Redirect"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../page_post_redirect_plugin.php:
|
788 |
msgid "Default is 302 (Temporary Redirect)."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../page_post_redirect_plugin.php:
|
792 |
msgid ""
|
793 |
"<strong>NOTE:</strong> For a Page or Post (or Custom Post) Redirect to work, "
|
794 |
"it may need to be published first and then saved again as a Draft. If you do "
|
795 |
"not already have a page/post created you can add a 'Quick' redirect using the"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../page_post_redirect_plugin.php:
|
799 |
msgid "method."
|
800 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Page/Post Redirect Plugin\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: Fri Jun 19 2015 23:42:16 GMT-0400 (Eastern Daylight Time)\n"
|
8 |
+
"POT-Revision-Date: Sun Jul 12 2015 13:40:25 GMT-0400 (Eastern Daylight Time)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: dfischer <admin2@fischercreativemedia.com>\n"
|
11 |
"Language-Team: \n"
|
25 |
"X-Loco-Target-Locale: en_US\n"
|
26 |
"X-Generator: Loco - https://localise.biz/"
|
27 |
|
28 |
+
#: ../page_post_redirect_plugin.php:182
|
29 |
msgid "New Layout of Existing Redirects"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: ../page_post_redirect_plugin.php:183
|
33 |
msgid ""
|
34 |
"The existing <strong>Quick Redirects</strong> are now laid out in a list "
|
35 |
"format instead of form fields. When you have a lot of Redirects, this helps "
|
37 |
"saving correctly."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../page_post_redirect_plugin.php:184
|
41 |
msgid "To edit an exisitng redirect, click the pencil icon"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: ../page_post_redirect_plugin.php:184
|
45 |
msgid "and the row will become editable. Click the trash can icon"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../page_post_redirect_plugin.php:184
|
49 |
msgid "and the redirect will be deleted. Click the trash can icon"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../page_post_redirect_plugin.php:196
|
53 |
msgid "New Option to Use jQuery"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../page_post_redirect_plugin.php:197
|
57 |
msgid ""
|
58 |
"To increase the effectiveness of the plugin's ability to add new window and "
|
59 |
"nofollow functionality, you can use the jQuery option."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../page_post_redirect_plugin.php:198
|
63 |
msgid ""
|
64 |
"This adds JavaScript/jQuery scripting to check the links in the output HTML "
|
65 |
"of the page and add the correct functionality if needed."
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../page_post_redirect_plugin.php:199
|
69 |
msgid "If you experience JavaScript/jQuery conflicts, try turning this option off."
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: ../page_post_redirect_plugin.php:300
|
73 |
msgid "Quick Redirects Updated."
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../page_post_redirect_plugin.php:405
|
77 |
msgid "Redirect"
|
78 |
msgstr ""
|
79 |
|
80 |
# Plugin Name
|
81 |
+
#: ../page_post_redirect_plugin.php:467
|
82 |
msgid "Quick Page/Post Redirect"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../page_post_redirect_plugin.php:479
|
86 |
+
msgid "Are you sure you want to PERMANENTLY Delets ALL Quick Redirects?"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../page_post_redirect_plugin.php:479
|
90 |
+
msgid "Are you sure you want to PERMANENTLY Delets ALL Individual Redirects?"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: ../page_post_redirect_plugin.php:479
|
94 |
msgid ""
|
95 |
"Redirect could not be saved as a redirect already exists with the same "
|
96 |
"Request URL."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../page_post_redirect_plugin.php:479
|
100 |
msgid "Are you sure you want to delete this redirect?"
|
101 |
msgstr ""
|
102 |
|
103 |
# JavaScript message
|
104 |
+
#: ../page_post_redirect_plugin.php:479
|
105 |
msgid "Error Saving Redirect\\nTry refreshing the page and trying again."
|
106 |
msgstr ""
|
107 |
|
108 |
# JavaScript Message
|
109 |
+
#: ../page_post_redirect_plugin.php:479
|
110 |
msgid "File type not allowed,\\nAllowed file type: *.txt"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../page_post_redirect_plugin.php:479
|
114 |
msgid "Please add at least one redirect before submitting form"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../page_post_redirect_plugin.php:548
|
118 |
msgid "Quick Page/Post Redirect FAQs/Help"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../page_post_redirect_plugin.php:549
|
122 |
msgid ""
|
123 |
"The FAQS are now on a feed that can be updated on the fly. If you have a "
|
124 |
"question and don't see an answer, please send an email to <a href=\"mailto:"
|
130 |
"working correctly for you. THANKS!"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../page_post_redirect_plugin.php:567
|
134 |
msgid "Table of Contents"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ../page_post_redirect_plugin.php:571
|
138 |
msgid "Questions/Answers"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../page_post_redirect_plugin.php:581
|
142 |
msgid "Quick Page Post Redirect Summary"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: ../page_post_redirect_plugin.php:582
|
146 |
msgid "This is a summary of Individual & Quick 301 Redirects."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../page_post_redirect_plugin.php:590
|
150 |
msgid "Summary"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../page_post_redirect_plugin.php:593
|
154 |
msgid "Acitve Override is on - All Redirects are OFF!"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../page_post_redirect_plugin.php:594
|
158 |
msgid "No Follow Override is on!"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../page_post_redirect_plugin.php:595
|
162 |
msgid "New Window Override is on!"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ../page_post_redirect_plugin.php:596
|
166 |
msgid "Rewrite Override is on!"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../page_post_redirect_plugin.php:600
|
170 |
msgid "ID"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../page_post_redirect_plugin.php:601
|
174 |
msgid "post type"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../page_post_redirect_plugin.php:602
|
178 |
msgid "active"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../page_post_redirect_plugin.php:603
|
182 |
msgid "no follow"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../page_post_redirect_plugin.php:604
|
186 |
msgid "new window"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../page_post_redirect_plugin.php:605
|
190 |
msgid "type"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../page_post_redirect_plugin.php:606
|
194 |
msgid "rewrite"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../page_post_redirect_plugin.php:607
|
198 |
msgid "original URL"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../page_post_redirect_plugin.php:608
|
202 |
msgid "redirect to URL"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../page_post_redirect_plugin.php:701 ../page_post_redirect_plugin.php:795
|
206 |
msgid "Quick Redirects Imported & Replaced."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../page_post_redirect_plugin.php:702 ../page_post_redirect_plugin.php:796
|
210 |
msgid "Quick Redirects Imported & Added to Existing Redirects."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ../page_post_redirect_plugin.php:705
|
214 |
msgid "Import/Export Redirects"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: ../page_post_redirect_plugin.php:721 ../page_post_redirect_plugin.php:819
|
218 |
msgid ""
|
219 |
"If you enjoy or find any of our plugins useful, please donate a few dollars "
|
220 |
"to help with future development and updates. We thank you in advance."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../page_post_redirect_plugin.php:727 ../page_post_redirect_plugin.php:999
|
224 |
msgid "Export Redirects"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ../page_post_redirect_plugin.php:728
|
228 |
msgid ""
|
229 |
"You should back-up your redirect regularly in case something happens to the "
|
230 |
"database."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../page_post_redirect_plugin.php:729
|
234 |
msgid ""
|
235 |
"Please use the below buttons to make a back-up as either encoded "
|
236 |
"(unreadable) or pipe separated"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../page_post_redirect_plugin.php:730
|
240 |
msgid "EXPORT all Quick Redirects (Encoded)"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../page_post_redirect_plugin.php:731 ../page_post_redirect_plugin.php:744
|
244 |
msgid "OR"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../page_post_redirect_plugin.php:732
|
248 |
msgid "EXPORT all Quick Redirects (PIPE Separated)"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../page_post_redirect_plugin.php:739 ../page_post_redirect_plugin.php:1004
|
252 |
msgid "Import Redirects"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../page_post_redirect_plugin.php:740
|
256 |
msgid ""
|
257 |
"If you want to replace or restore redirects from a file, use the \"Restore\" "
|
258 |
"option."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../page_post_redirect_plugin.php:741
|
262 |
msgid ""
|
263 |
"To add new redirects in bulk use the \"Add To\" option - NOTE: to Add To "
|
264 |
"redirects, the file must be pipe dilimited "
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../page_post_redirect_plugin.php:743
|
268 |
msgid "RESTORE Saved Quick Redirects"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../page_post_redirect_plugin.php:745
|
272 |
msgid "ADD TO Quick Redirects"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../page_post_redirect_plugin.php:749 ../page_post_redirect_plugin.php:770
|
276 |
msgid "Select Quick Redirects file to import:"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../page_post_redirect_plugin.php:760
|
280 |
msgid ""
|
281 |
"The import file should be a text file with one rediect per line, PIPE "
|
282 |
"separated, in this format:"
|
283 |
msgstr ""
|
284 |
|
285 |
# these are column titles.
|
286 |
+
#: ../page_post_redirect_plugin.php:762
|
287 |
msgid "redirect|destination|newwindow|nofollow"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ../page_post_redirect_plugin.php:763
|
291 |
msgid "for Example:"
|
292 |
msgstr ""
|
293 |
|
294 |
# translate this to same as source
|
295 |
+
#: ../page_post_redirect_plugin.php:765
|
296 |
msgid "/old-location.htm|http://some.com/new-destination/|0|1"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../page_post_redirect_plugin.php:766
|
300 |
msgid "/dontate/|http://example.com/destination/|1|1"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../page_post_redirect_plugin.php:768
|
304 |
msgid "IMPORTANT:"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../page_post_redirect_plugin.php:768
|
308 |
msgid ""
|
309 |
"Make Sure any destination URLs that have a PIPE in the querystring data are "
|
310 |
"URL encoded before adding them!"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ../page_post_redirect_plugin.php:775
|
314 |
msgid "ADD TO Current Quick Redirects"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: ../page_post_redirect_plugin.php:793
|
318 |
msgid "All Quick Redirects deleted from database."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: ../page_post_redirect_plugin.php:794
|
322 |
+
msgid "All Individual Redirects deleted from database."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: ../page_post_redirect_plugin.php:797
|
326 |
+
msgid ""
|
327 |
+
"There was an problem with your last request. Please reload the page and try "
|
328 |
+
"again."
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: ../page_post_redirect_plugin.php:801
|
332 |
msgid "Quick Page Post Redirect Options"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../page_post_redirect_plugin.php:830
|
336 |
msgid "Basic Settings"
|
337 |
msgstr ""
|
338 |
|
339 |
# Custom Post Types text here should match WordPress' name for Custom Post Types.
|
340 |
+
#: ../page_post_redirect_plugin.php:833
|
341 |
msgid "Use with Custom Post Types?"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../page_post_redirect_plugin.php:837
|
345 |
msgid "Hide"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../page_post_redirect_plugin.php:837
|
349 |
msgid "meta box for following Post Types:"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../page_post_redirect_plugin.php:859
|
353 |
msgid "Show Column Headers?"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ../page_post_redirect_plugin.php:860
|
357 |
msgid "Show Columns on list pages for set up redirects."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../page_post_redirect_plugin.php:863
|
361 |
msgid "Use jQuery?"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../page_post_redirect_plugin.php:864
|
365 |
msgid ""
|
366 |
"Increases effectiveness of plugin. If you have a jQuery conflict, try "
|
367 |
"turning this off."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../page_post_redirect_plugin.php:864
|
371 |
msgid "Uses jQuery to add the \"New Window\" and \"No Follow\" attributes to links."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: ../page_post_redirect_plugin.php:867
|
375 |
msgid "Meta Refresh Time (in seconds):"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: ../page_post_redirect_plugin.php:868
|
379 |
msgid "Only needed for Meta Refresh. 0=default (instant)"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: ../page_post_redirect_plugin.php:871
|
383 |
msgid "Meta Refresh Message:"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../page_post_redirect_plugin.php:872
|
387 |
msgid "Default is blank. Message to display while waiting for refresh."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ../page_post_redirect_plugin.php:878
|
391 |
msgid "Master Override Options"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ../page_post_redirect_plugin.php:878
|
395 |
msgid ""
|
396 |
"<strong>NOTE: </strong>The below settings will override all individual "
|
397 |
"settings."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../page_post_redirect_plugin.php:881
|
401 |
msgid "Turn OFF all Redirects?"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../page_post_redirect_plugin.php:882
|
405 |
msgid "Basically the same as having no redirects set up."
|
406 |
msgstr ""
|
407 |
|
408 |
# keep code text untranslated.
|
409 |
+
#: ../page_post_redirect_plugin.php:885
|
410 |
msgid "Make ALL Redirects have <code>rel=\"nofollow\"</code>?"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../page_post_redirect_plugin.php:886 ../page_post_redirect_plugin.php:890
|
414 |
msgid "Requires \"use jQuery\" option to work with Quick Redirects."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../page_post_redirect_plugin.php:889
|
418 |
msgid "Make ALL Redirects open in a New Window?"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../page_post_redirect_plugin.php:893
|
422 |
msgid "Make ALL Redirects this type:"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../page_post_redirect_plugin.php:895
|
426 |
msgid "Use Individual Settings"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../page_post_redirect_plugin.php:896
|
430 |
msgid "Permanant Redirect"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../page_post_redirect_plugin.php:897 ../page_post_redirect_plugin.php:898
|
434 |
msgid "Temporary Redirect"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../page_post_redirect_plugin.php:899
|
438 |
msgid "Meta Refresh Redirect"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../page_post_redirect_plugin.php:901
|
442 |
msgid "(Quick 301 Redirects will always be 301)"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../page_post_redirect_plugin.php:905
|
446 |
msgid "Make ALL redirects Case Sensitive?"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../page_post_redirect_plugin.php:906
|
450 |
msgid "Makes URLs CaSe SensiTivE - i.e., /somepage/ DOES NOT EQUAL /SoMEpaGe/"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../page_post_redirect_plugin.php:909
|
454 |
msgid "Make ALL Redirects go to this URL:"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../page_post_redirect_plugin.php:910
|
458 |
msgid "Use full URL including <code>http://</code>."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../page_post_redirect_plugin.php:913
|
462 |
msgid "Rewrite ALL Redirects URLs to Show in LINK?"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../page_post_redirect_plugin.php:914
|
466 |
msgid ""
|
467 |
"Makes link show redirect URL instead of the original URL. Will not work on "
|
468 |
"Quick Redirects at this time."
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ../page_post_redirect_plugin.php:920
|
472 |
msgid "Plugin Clean Up"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ../page_post_redirect_plugin.php:920
|
476 |
msgid ""
|
477 |
"<strong>NOTE: </strong>This will DELETE all redirects - so be careful with "
|
478 |
"this."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../page_post_redirect_plugin.php:923
|
482 |
msgid "Delete Redirects?"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../page_post_redirect_plugin.php:925
|
486 |
msgid "Delete All Individual Redirects"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../page_post_redirect_plugin.php:926
|
|
|
|
|
|
|
|
|
490 |
msgid "Delete all Quick Redirects"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../page_post_redirect_plugin.php:927
|
|
|
|
|
|
|
|
|
494 |
msgid ""
|
495 |
"Individual Redirects are redirects set up on individual pages or posts when "
|
496 |
"in the editing screen. The Quick Redirects are set up on the Quick Redirects "
|
497 |
"page."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: ../page_post_redirect_plugin.php:931
|
501 |
msgid "Save Changes"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: ../page_post_redirect_plugin.php:971
|
505 |
msgid "Examples"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ../page_post_redirect_plugin.php:976
|
509 |
msgid "Troubleshooting"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../page_post_redirect_plugin.php:979
|
513 |
msgid "IMPORTANT TROUBLESHOOTING NOTES:"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../page_post_redirect_plugin.php:981
|
517 |
msgid ""
|
518 |
"At this time the New Window (NW) and No Follow (NF) features will not work "
|
519 |
"for Quick Redirects."
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: ../page_post_redirect_plugin.php:982
|
523 |
msgid ""
|
524 |
"It is recommended that the <b>Request URL</b> be relative to the ROOT "
|
525 |
"directory and contain the <code>/</code> at the beginning."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../page_post_redirect_plugin.php:983
|
529 |
msgid ""
|
530 |
"If you do use the domain name in the Request URL field, make sure it matches "
|
531 |
"your site's domain style and protocol. For example, if your site uses \"www\" "
|
534 |
"domain and protocol are"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../page_post_redirect_plugin.php:984
|
538 |
msgid ""
|
539 |
"If you are having issues with the link not redirecting on a SSL site with "
|
540 |
"mixed SSL (meaning links can be either SSL or non SSL), try adding two "
|
541 |
"redirects, one with and one without the SSL protocol."
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../page_post_redirect_plugin.php:985
|
545 |
msgid ""
|
546 |
"The <b>Destination</b> field can be any valid URL or relative path (from "
|
547 |
"root), for example"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: ../page_post_redirect_plugin.php:986
|
551 |
msgid ""
|
552 |
"In order for NW (open in a new window) or NF (rel=\"nofollow\") options to "
|
553 |
"work with Quick Redirects, you need to have:"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../page_post_redirect_plugin.php:988
|
557 |
msgid "\"Use jQuery?\" option selected in the settings page"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../page_post_redirect_plugin.php:989
|
561 |
msgid ""
|
562 |
"A link that uses the request url SOMEWHERE in your site page - i.e., in a "
|
563 |
"menu, content, sidebar, etc."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: ../page_post_redirect_plugin.php:990
|
567 |
msgid ""
|
568 |
"The open in a new window or nofollow settings will not happen if someone "
|
569 |
"just types the old link in the URL or if they come from a bookmark or link "
|
573 |
"work."
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../page_post_redirect_plugin.php:1000
|
577 |
msgid "You can export redirects in two formats - Encoded or Delimited."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../page_post_redirect_plugin.php:1013
|
581 |
msgid "Quick Redirects (301 Redirects)"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../page_post_redirect_plugin.php:1024
|
585 |
msgid ""
|
586 |
"The <code>Use jQuery?</code> option is turned off in the settings.<br/>In "
|
587 |
"order to use <strong>NW</strong> (open in a new window) or "
|
589 |
"must have it enabled."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../page_post_redirect_plugin.php:1025 ../page_post_redirect_plugin.php:1030
|
593 |
msgid "hide this message"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../page_post_redirect_plugin.php:1029
|
597 |
msgid ""
|
598 |
"To use the <strong>NW</strong> (open in a new window) <strong>NF</strong> "
|
599 |
"(nofollow) options, check the appropriate option and update when adding "
|
602 |
"enabled in the plugin settings."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../page_post_redirect_plugin.php:1033
|
606 |
msgid ""
|
607 |
"Quick Redirects are useful when you have links from an old site that now "
|
608 |
"come up 404 Not Found, and you need to have them redirect to a new location "
|
612 |
"just to use the individual Page/Post Redirect option."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: ../page_post_redirect_plugin.php:1034
|
616 |
msgid ""
|
617 |
"To add Quick Redirects, put the URL for the redirect in the <strong>Request "
|
618 |
"URL</strong> field, and the URL it should be redirected to in the "
|
621 |
"icon."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../page_post_redirect_plugin.php:1035
|
625 |
msgid ""
|
626 |
"See 'HELP' in the upper right corner, for troubleshooting problems and "
|
627 |
"example redirects."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: ../page_post_redirect_plugin.php:1041 ../page_post_redirect_plugin.php:1084
|
631 |
msgid "Add New Redirects"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../page_post_redirect_plugin.php:1044 ../page_post_redirect_plugin.php:1093
|
635 |
msgid "Request URL"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: ../page_post_redirect_plugin.php:1046 ../page_post_redirect_plugin.php:1095
|
639 |
msgid "Destination URL"
|
640 |
msgstr ""
|
641 |
|
642 |
# Stands for 'New Window'
|
643 |
+
#: ../page_post_redirect_plugin.php:1047 ../page_post_redirect_plugin.php:1096
|
644 |
msgid "NW"
|
645 |
msgstr ""
|
646 |
|
647 |
# Stands for 'No Follow'
|
648 |
+
#: ../page_post_redirect_plugin.php:1048 ../page_post_redirect_plugin.php:1097
|
649 |
msgid "NF"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../page_post_redirect_plugin.php:1056 ../page_post_redirect_plugin.php:1065 ..
|
653 |
+
#: /page_post_redirect_plugin.php:1074 ../page_post_redirect_plugin.php:1106
|
654 |
msgid "open in a New Window"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../page_post_redirect_plugin.php:1057 ../page_post_redirect_plugin.php:1066 ..
|
658 |
+
#: /page_post_redirect_plugin.php:1075 ../page_post_redirect_plugin.php:1107
|
659 |
msgid "add No Follow"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: ../page_post_redirect_plugin.php:1080
|
663 |
msgid ""
|
664 |
"New Window(NW) and NoFollow(NF) functionality not available unless \"Use with "
|
665 |
"jQuery\" is set in the options."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../page_post_redirect_plugin.php:1090
|
669 |
msgid "Existing Redirects"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../page_post_redirect_plugin.php:1108
|
673 |
msgid "Save"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../page_post_redirect_plugin.php:1109
|
677 |
msgid "Cancel"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../page_post_redirect_plugin.php:1152
|
681 |
msgid "Edit"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: ../page_post_redirect_plugin.php:1153
|
685 |
msgid "Delete"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../page_post_redirect_plugin.php:1161
|
689 |
+
msgid "No Quick Redirects."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: ../page_post_redirect_plugin.php:1336
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
693 |
msgid ""
|
694 |
"An error occured during the file upload. Please fix your server "
|
695 |
"configuration and retry."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../page_post_redirect_plugin.php:1336 ../page_post_redirect_plugin.php:1398
|
699 |
msgid "SERVER ERROR - Could Not Load"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: ../page_post_redirect_plugin.php:1378 ../page_post_redirect_plugin.php:1384
|
703 |
msgid ""
|
704 |
"This does not look like a Quick Page Post Redirect file - it is possibly "
|
705 |
"damaged or corrupt."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: ../page_post_redirect_plugin.php:1378 ../page_post_redirect_plugin.php:1384 ..
|
709 |
+
#: /page_post_redirect_plugin.php:1412
|
710 |
msgid "ERROR - Not a valid File"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../page_post_redirect_plugin.php:1398
|
714 |
msgid ""
|
715 |
"An error occured during the file upload. It might me that the file is too "
|
716 |
"large or you do not have the premissions to write to the temporary upload "
|
717 |
"directory. Please fix your server configuration and retry."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../page_post_redirect_plugin.php:1412
|
721 |
msgid ""
|
722 |
"This does not look like the file is in the correct format - it is possibly "
|
723 |
"damaged or corrupt.<br/>Be sure the redirects are 1 per line and the "
|
724 |
"redirect and destination are seperated by a PIPE (|), COMMA (,) or a TAB."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../page_post_redirect_plugin.php:1447
|
728 |
msgid ""
|
729 |
"It does not look like there are any valid items to import - check the file "
|
730 |
"and try again."
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../page_post_redirect_plugin.php:1447
|
734 |
msgid "ERROR - No Valid items to add."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../page_post_redirect_plugin.php:1493 ../page_post_redirect_plugin.php:1501
|
738 |
msgid "Donate"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../page_post_redirect_plugin.php:1499 ../page_post_redirect_plugin.php:1554
|
742 |
msgid "Quick Redirects"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../page_post_redirect_plugin.php:1500
|
746 |
msgid "FAQ"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../page_post_redirect_plugin.php:1519
|
750 |
msgid "Make Redirect <strong>Active</strong>."
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../page_post_redirect_plugin.php:1520
|
754 |
msgid "Open redirect link in a <strong>new window.</strong>"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../page_post_redirect_plugin.php:1521
|
758 |
msgid "Add <strong>rel=\"nofollow\"</strong> to redirect link."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../page_post_redirect_plugin.php:1522
|
762 |
msgid "<strong>Show</strong> the Redirect URL instead of original URL."
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../page_post_redirect_plugin.php:1524
|
766 |
msgid "Redirect URL:"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../page_post_redirect_plugin.php:1526
|
770 |
msgid "Type of Redirect:"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../page_post_redirect_plugin.php:1548
|
774 |
msgid "Permanent"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../page_post_redirect_plugin.php:1549 ../page_post_redirect_plugin.php:1550
|
778 |
msgid "Temporary"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../page_post_redirect_plugin.php:1551
|
782 |
msgid "Meta Redirect"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../page_post_redirect_plugin.php:1552
|
786 |
msgid "Default is 302 (Temporary Redirect)."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../page_post_redirect_plugin.php:1554
|
790 |
msgid ""
|
791 |
"<strong>NOTE:</strong> For a Page or Post (or Custom Post) Redirect to work, "
|
792 |
"it may need to be published first and then saved again as a Draft. If you do "
|
793 |
"not already have a page/post created you can add a 'Quick' redirect using the"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: ../page_post_redirect_plugin.php:1554
|
797 |
msgid "method."
|
798 |
msgstr ""
|
page_post_redirect_plugin.php
CHANGED
@@ -6,7 +6,7 @@ Description: Redirect Pages, Posts or Custom Post Types to another location quic
|
|
6 |
Author: Don Fischer
|
7 |
Author URI: http://www.fischercreativemedia.com/
|
8 |
Donate link: http://www.fischercreativemedia.com/donations/
|
9 |
-
Version: 5.0
|
10 |
Text Domain: quick-pagepost-redirect-plugin
|
11 |
Domain Path: /lang
|
12 |
License: GPLv2 or later
|
@@ -71,7 +71,7 @@ class quick_page_post_reds {
|
|
71 |
public $pprptypes_ok;
|
72 |
|
73 |
function __construct() {
|
74 |
-
$this->ppr_curr_version = '5.0
|
75 |
$this->ppr_nofollow = array();
|
76 |
$this->ppr_newindow = array();
|
77 |
$this->ppr_url = array();
|
@@ -109,11 +109,13 @@ class quick_page_post_reds {
|
|
109 |
add_filter( 'plugin_row_meta', array( $this, 'ppr_filter_plugin_links' ), 10, 2 ); // adds links to plugin list page
|
110 |
add_filter( 'query_vars', array( $this, 'ppr_queryhook' ) ); // parse out some form submissions (mainly for import and export)
|
111 |
add_action( 'admin_enqueue_scripts' , array( $this, 'qppr_admin_scripts' ) ); // admin scripts & styles
|
112 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'qppr_pointer_load' ), 1000 ); // for new features pointers -
|
113 |
-
add_action( 'wp_enqueue_scripts' , array( $this, 'qppr_frontend_scripts' ) ); // front end scripts -
|
114 |
-
add_action( '
|
115 |
-
add_action( '
|
116 |
-
add_action( '
|
|
|
|
|
117 |
add_filter( 'qppr_admin_pointers-toplevel_page_redirect-updates', array( $this, 'qppr_register_pointer_existing' ) ); // add pointers filter
|
118 |
add_filter( 'qppr_admin_pointers-quick-redirects_page_redirect-options', array( $this, 'qppr_register_pointer_use_jquery' ) ); // add pointers filter
|
119 |
//add_filter( 'wp_feed_cache_transient_lifetime',array($this,'ppr_wp_feed_options',10, 2)); // for testing FAQ page only
|
@@ -133,6 +135,22 @@ class quick_page_post_reds {
|
|
133 |
add_filter( 'pre_get_posts', array( $this,'add_custom_columns' ) ); // add custom columns
|
134 |
}
|
135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
function qppr_pointer_load( $hook_suffix ) {
|
137 |
if ( get_bloginfo( 'version' ) < '3.3' )
|
138 |
return;
|
@@ -454,10 +472,11 @@ class quick_page_post_reds {
|
|
454 |
function qppr_admin_scripts($hook){
|
455 |
if(in_array( $hook, array( 'post-new.php', 'edit.php', 'post.php', 'toplevel_page_redirect-updates', 'quick-redirects_page_redirect-options', 'quick-redirects_page_redirect-summary', 'quick-redirects_page_redirect-faqs', 'quick-redirects_page_redirect-import-export' ) ) ){
|
456 |
$ajax_add_nonce = wp_create_nonce( 'qppr_ajax_verify' );
|
|
|
457 |
$protocols = apply_filters( 'qppr_allowed_protocols', array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp'));
|
458 |
-
wp_enqueue_style( 'qppr_admin_meta_style', plugins_url( '/css/qppr_admin_style.css', __FILE__ ) , null , '5.0
|
459 |
-
wp_enqueue_script( 'qppr_admin_meta_script', plugins_url( '/js/qppr_admin_script.js', __FILE__ ) , array('jquery'), '5.0
|
460 |
-
wp_localize_script( 'qppr_admin_meta_script', 'qpprData', array( 'protocols' => $protocols, 'msgDuplicate' => __( 'Redirect could not be saved as a redirect already exists with the same Request URL.', 'quick-pagepost-redirect-plugin' ) , 'msgDeleteConfirm' => __( 'Are you sure you want to delete this redirect?', 'quick-pagepost-redirect-plugin' ) , 'msgErrorSave' => __( 'Error Saving Redirect\nTry refreshing the page and trying again.', 'quick-pagepost-redirect-plugin' ) , 'msgSelect' => 'select a file', 'msgFileType' => __( 'File type not allowed,\nAllowed file type: *.txt', 'quick-pagepost-redirect-plugin' ) , 'adminURL' => admin_url('admin.php'),'ajaxurl'=> admin_url('admin-ajax.php'), 'security' => $ajax_add_nonce, 'error' => __('Please add at least one redirect before submitting form', 'quick-pagepost-redirect-plugin')));
|
461 |
}
|
462 |
return;
|
463 |
}
|
@@ -495,7 +514,7 @@ class quick_page_post_reds {
|
|
495 |
$linkData[$redURL] = array( $newWin, $noFoll );
|
496 |
}
|
497 |
}
|
498 |
-
wp_enqueue_script( 'qppr_frontend_scripts', plugins_url( '/js/qppr_frontend_script.js', __FILE__ ) , array('jquery'), '5.0
|
499 |
wp_localize_script( 'qppr_frontend_scripts', 'qpprFrontData', array( 'linkData' => $linkData, 'siteURL' => site_url(), 'siteURLq' => $this->getQAddress() ) );
|
500 |
}
|
501 |
|
@@ -770,16 +789,17 @@ class quick_page_post_reds {
|
|
770 |
}
|
771 |
|
772 |
function ppr_settings_page() {
|
773 |
-
if(isset($_GET['update'])){
|
774 |
-
if($_GET['update']=='3'){$this->updatemsg =
|
775 |
-
if($_GET['update']=='2'){$this->updatemsg =
|
776 |
-
if($_GET['update']=='4'){$this->updatemsg =
|
777 |
-
if($_GET['update']=='5'){$this->updatemsg =
|
|
|
778 |
}
|
779 |
?>
|
780 |
<div class="wrap" style="position:relative;">
|
781 |
<h2><?php echo __( 'Quick Page Post Redirect Options', 'quick-pagepost-redirect-plugin' );?></h2>
|
782 |
-
<?php if($this->updatemsg!=''){?>
|
783 |
<div class="updated" id="setting-error-settings_updated">
|
784 |
<p><strong><?php echo $this->updatemsg;?></strong></p>
|
785 |
</div>
|
@@ -901,7 +921,11 @@ class quick_page_post_reds {
|
|
901 |
</tr>
|
902 |
<tr>
|
903 |
<th scope="row"><label><?php echo __( 'Delete Redirects?', 'quick-pagepost-redirect-plugin' );?> </label></th>
|
904 |
-
<td
|
|
|
|
|
|
|
|
|
905 |
</tr>
|
906 |
</table>
|
907 |
<p class="submit"><input type="submit" class="button-primary" value="<?php echo __( 'Save Changes', 'quick-pagepost-redirect-plugin' );?>" /></p>
|
@@ -1131,6 +1155,12 @@ class quick_page_post_reds {
|
|
1131 |
';
|
1132 |
$ww++;
|
1133 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1134 |
}
|
1135 |
return $output;
|
1136 |
}
|
@@ -1257,8 +1287,6 @@ class quick_page_post_reds {
|
|
1257 |
}
|
1258 |
|
1259 |
function ppr_queryhook($vars) {
|
1260 |
-
$vars[] = 'qppr-delete-regular';
|
1261 |
-
$vars[] = 'qppr-delete-quick';
|
1262 |
$vars[] = 'qppr-file-type';
|
1263 |
return $vars;
|
1264 |
}
|
@@ -1266,25 +1294,7 @@ class quick_page_post_reds {
|
|
1266 |
global $wp, $wpdb;
|
1267 |
$this->ppr_all_redir_array = $this->get_main_array();
|
1268 |
$this->pprptypes_ok = get_option( 'ppr_qpprptypeok', array() );
|
1269 |
-
if
|
1270 |
-
if( (int) $_GET['qppr-delete-regular'] == 1 ){
|
1271 |
-
global $wpdb;
|
1272 |
-
$wpdb->query( "DELETE FROM $wpdb->postmeta WHERE `meta_key` = '_pprredirect_active' OR `meta_key` = '_pprredirect_rewritelink' OR `meta_key` = '_pprredirect_newwindow' OR `meta_key` = '_pprredirect_relnofollow' OR `meta_key` = '_pprredirect_type' OR `meta_key` = '_pprredirect_url';");
|
1273 |
-
wp_redirect( admin_url( 'admin.php?page=redirect-options&update=2&settings-updated=true' ) );
|
1274 |
-
exit;
|
1275 |
-
}elseif( (int) $_GET['qppr-delete-quick'] == 1 ){
|
1276 |
-
delete_option( 'quickppr_redirects' );
|
1277 |
-
delete_option( 'quickppr_redirects_meta' );
|
1278 |
-
wp_redirect( admin_url( 'admin.php?page=redirect-options&update=3&settings-updated=true' ) );
|
1279 |
-
exit;
|
1280 |
-
}elseif( (int) $_GET['qppr-export-quick-redirects'] == 1 ){
|
1281 |
-
wp_die( __( 'This option is not available at this time.', 'quick-pagepost-redirect-plugin' ), __( 'Quick Page/Post Redirect Plugin - Export', 'quick-pagepost-redirect-plugin' ), array( 'back_link' => true ) );
|
1282 |
-
exit;
|
1283 |
-
}elseif( (int) $_GET['qppr-import-quick-redirects'] == 1 ){
|
1284 |
-
wp_die( __( 'This option is not available at this time.', 'quick-pagepost-redirect-plugin' ), __( 'Quick Page/Post Redirect Plugin - Import', 'quick-pagepost-redirect-plugin' ), array( 'back_link' => true ) );
|
1285 |
-
exit;
|
1286 |
-
}
|
1287 |
-
}elseif ( isset( $_GET['action'] ) && $_GET['action'] == 'export-quick-redirects-file' ) {
|
1288 |
$newQPPR_Array = array();
|
1289 |
check_admin_referer( 'export-redirects-qppr' );
|
1290 |
$type = isset( $_GET['qppr-file-type'] ) && sanitize_text_field( $_GET['qppr-file-type'] ) == 'encoded' ? 'encoded' : 'pipe' ; // can be 'encoded' or 'pipe';
|
@@ -1758,7 +1768,6 @@ class quick_page_post_reds {
|
|
1758 |
$getQAddress = $this->getQAddress( $homeURL ); // gets just the protocol and domain (host) of the request.
|
1759 |
|
1760 |
//get the query string if there is one so that it can be preserved
|
1761 |
-
|
1762 |
// patch submitted for version 5.0.7 by Romulo De Lazzari <romulodelazzari@gmail.com> - THANKS!
|
1763 |
$finalQS = (filter_input(INPUT_SERVER, 'QUERY_STRING'));
|
1764 |
if ($finalQS === null || $finalQS === false || $finalQS === '') {
|
@@ -1768,22 +1777,7 @@ class quick_page_post_reds {
|
|
1768 |
}
|
1769 |
$userrequest = str_replace( $homeURL, '', $getAddress );
|
1770 |
$userrequest = preg_replace('/\?.*/', '', $userrequest);
|
1771 |
-
// end patch
|
1772 |
-
|
1773 |
-
/* OLD finalQS up to version 5.0.6 - remove after testing complete
|
1774 |
-
$finalQS = '';
|
1775 |
-
if(isset($_GET)){
|
1776 |
-
$useURLQS = array();
|
1777 |
-
if( count($_GET) >= 1){
|
1778 |
-
foreach($_GET as $key => $value){
|
1779 |
-
$useURLQS[] = $key.'='.$value;
|
1780 |
-
}
|
1781 |
-
$finalQS = '?'.implode('&',$useURLQS);
|
1782 |
-
$userrequest = preg_replace('/\?.*'.'/', '', $userrequest);
|
1783 |
-
}
|
1784 |
-
}
|
1785 |
-
*/
|
1786 |
-
|
1787 |
//end QS preservation
|
1788 |
|
1789 |
$needle = $this->pproverride_casesensitive ? $userrequest : strtolower($userrequest);
|
6 |
Author: Don Fischer
|
7 |
Author URI: http://www.fischercreativemedia.com/
|
8 |
Donate link: http://www.fischercreativemedia.com/donations/
|
9 |
+
Version: 5.1.0
|
10 |
Text Domain: quick-pagepost-redirect-plugin
|
11 |
Domain Path: /lang
|
12 |
License: GPLv2 or later
|
71 |
public $pprptypes_ok;
|
72 |
|
73 |
function __construct() {
|
74 |
+
$this->ppr_curr_version = '5.1.0';
|
75 |
$this->ppr_nofollow = array();
|
76 |
$this->ppr_newindow = array();
|
77 |
$this->ppr_url = array();
|
109 |
add_filter( 'plugin_row_meta', array( $this, 'ppr_filter_plugin_links' ), 10, 2 ); // adds links to plugin list page
|
110 |
add_filter( 'query_vars', array( $this, 'ppr_queryhook' ) ); // parse out some form submissions (mainly for import and export)
|
111 |
add_action( 'admin_enqueue_scripts' , array( $this, 'qppr_admin_scripts' ) ); // admin scripts & styles
|
112 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'qppr_pointer_load' ), 1000 ); // for new features pointers - 5.0.7
|
113 |
+
add_action( 'wp_enqueue_scripts' , array( $this, 'qppr_frontend_scripts' ) ); // front end scripts - 5.0.7
|
114 |
+
add_action( 'wp_ajax_qppr_delete_all_iredirects', array( $this, 'qppr_delete_all_ireds_ajax' ) ); // register ajax delete ALL Individual Redirects - 5.1.0
|
115 |
+
add_action( 'wp_ajax_qppr_delete_all_qredirects', array( $this, 'qppr_delete_all_qreds_ajax' ) ); // register ajax delete ALL Quick Redirects - 5.1.0
|
116 |
+
add_action( 'wp_ajax_qppr_delete_quick_redirect', array( $this, 'qppr_delete_quick_redirect_ajax' ) ); // register ajax delete quick redirect - 5.0.7
|
117 |
+
add_action( 'wp_ajax_qppr_save_quick_redirect', array( $this, 'qppr_save_quick_redirect_ajax' ) ); // register ajax save quick redirect - 5.0.7
|
118 |
+
add_action( 'wp_ajax_qppr_pprhidemessage_ajax', array( $this, 'qppr_pprhidemessage_ajax' ) ); // register ajax messages quick redirect - 5.0.7
|
119 |
add_filter( 'qppr_admin_pointers-toplevel_page_redirect-updates', array( $this, 'qppr_register_pointer_existing' ) ); // add pointers filter
|
120 |
add_filter( 'qppr_admin_pointers-quick-redirects_page_redirect-options', array( $this, 'qppr_register_pointer_use_jquery' ) ); // add pointers filter
|
121 |
//add_filter( 'wp_feed_cache_transient_lifetime',array($this,'ppr_wp_feed_options',10, 2)); // for testing FAQ page only
|
135 |
add_filter( 'pre_get_posts', array( $this,'add_custom_columns' ) ); // add custom columns
|
136 |
}
|
137 |
|
138 |
+
function qppr_delete_all_ireds_ajax(){
|
139 |
+
check_ajax_referer( 'qppr_ajax_delete_ALL_verify', 'security', true );
|
140 |
+
global $wpdb;
|
141 |
+
$sql = "DELETE FROM {$wpdb->postmeta} WHERE `meta_key` = '_pprredirect_active' OR `meta_key` = '_pprredirect_rewritelink' OR `meta_key` = '_pprredirect_newwindow' OR `meta_key` = '_pprredirect_relnofollow' OR `meta_key` = '_pprredirect_type' OR `meta_key` = '_pprredirect_url';";
|
142 |
+
echo 'success';
|
143 |
+
exit;
|
144 |
+
}
|
145 |
+
|
146 |
+
function qppr_delete_all_qreds_ajax(){
|
147 |
+
check_ajax_referer( 'qppr_ajax_delete_ALL_verify', 'security', true );
|
148 |
+
delete_option( 'quickppr_redirects' );
|
149 |
+
delete_option( 'quickppr_redirects_meta' );
|
150 |
+
echo 'success';
|
151 |
+
exit;
|
152 |
+
}
|
153 |
+
|
154 |
function qppr_pointer_load( $hook_suffix ) {
|
155 |
if ( get_bloginfo( 'version' ) < '3.3' )
|
156 |
return;
|
472 |
function qppr_admin_scripts($hook){
|
473 |
if(in_array( $hook, array( 'post-new.php', 'edit.php', 'post.php', 'toplevel_page_redirect-updates', 'quick-redirects_page_redirect-options', 'quick-redirects_page_redirect-summary', 'quick-redirects_page_redirect-faqs', 'quick-redirects_page_redirect-import-export' ) ) ){
|
474 |
$ajax_add_nonce = wp_create_nonce( 'qppr_ajax_verify' );
|
475 |
+
$secDeleteNonce = wp_create_nonce( 'qppr_ajax_delete_ALL_verify' );
|
476 |
$protocols = apply_filters( 'qppr_allowed_protocols', array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp'));
|
477 |
+
wp_enqueue_style( 'qppr_admin_meta_style', plugins_url( '/css/qppr_admin_style.css', __FILE__ ) , null , '5.1.0' );
|
478 |
+
wp_enqueue_script( 'qppr_admin_meta_script', plugins_url( '/js/qppr_admin_script.js', __FILE__ ) , array('jquery'), '5.1.0');
|
479 |
+
wp_localize_script( 'qppr_admin_meta_script', 'qpprData', array( 'msgQuickDeleteConfirm' => __( 'Are you sure you want to PERMANENTLY Delets ALL Quick Redirects?', 'quick-pagepost-redirect-plugin' ), 'msgIndividualDeleteConfirm' => __( 'Are you sure you want to PERMANENTLY Delets ALL Individual Redirects?', 'quick-pagepost-redirect-plugin' ), 'securityDelete' => $secDeleteNonce, 'protocols' => $protocols, 'msgDuplicate' => __( 'Redirect could not be saved as a redirect already exists with the same Request URL.', 'quick-pagepost-redirect-plugin' ) , 'msgDeleteConfirm' => __( 'Are you sure you want to delete this redirect?', 'quick-pagepost-redirect-plugin' ) , 'msgErrorSave' => __( 'Error Saving Redirect\nTry refreshing the page and trying again.', 'quick-pagepost-redirect-plugin' ) , 'msgSelect' => 'select a file', 'msgFileType' => __( 'File type not allowed,\nAllowed file type: *.txt', 'quick-pagepost-redirect-plugin' ) , 'adminURL' => admin_url('admin.php'),'ajaxurl'=> admin_url('admin-ajax.php'), 'security' => $ajax_add_nonce, 'error' => __('Please add at least one redirect before submitting form', 'quick-pagepost-redirect-plugin')));
|
480 |
}
|
481 |
return;
|
482 |
}
|
514 |
$linkData[$redURL] = array( $newWin, $noFoll );
|
515 |
}
|
516 |
}
|
517 |
+
wp_enqueue_script( 'qppr_frontend_scripts', plugins_url( '/js/qppr_frontend_script.js', __FILE__ ) , array('jquery'), '5.1.0', true );
|
518 |
wp_localize_script( 'qppr_frontend_scripts', 'qpprFrontData', array( 'linkData' => $linkData, 'siteURL' => site_url(), 'siteURLq' => $this->getQAddress() ) );
|
519 |
}
|
520 |
|
789 |
}
|
790 |
|
791 |
function ppr_settings_page() {
|
792 |
+
if( isset( $_GET['update'] ) && $_GET['update'] != '' ){
|
793 |
+
if( $_GET['update'] == '3' ){ $this->updatemsg = __( 'All Quick Redirects deleted from database.', 'quick-pagepost-redirect-plugin' );}
|
794 |
+
if( $_GET['update'] == '2' ){ $this->updatemsg = __( 'All Individual Redirects deleted from database.', 'quick-pagepost-redirect-plugin' );}
|
795 |
+
if( $_GET['update'] == '4' ){ $this->updatemsg = __( 'Quick Redirects Imported & Replaced.', 'quick-pagepost-redirect-plugin' );}
|
796 |
+
if( $_GET['update'] == '5' ){ $this->updatemsg = __( 'Quick Redirects Imported & Added to Existing Redirects.', 'quick-pagepost-redirect-plugin' );}
|
797 |
+
if( $_GET['update'] == '0' ){ $this->updatemsg = __( 'There was an problem with your last request. Please reload the page and try again.', 'quick-pagepost-redirect-plugin' );}
|
798 |
}
|
799 |
?>
|
800 |
<div class="wrap" style="position:relative;">
|
801 |
<h2><?php echo __( 'Quick Page Post Redirect Options', 'quick-pagepost-redirect-plugin' );?></h2>
|
802 |
+
<?php if($this->updatemsg != ''){?>
|
803 |
<div class="updated" id="setting-error-settings_updated">
|
804 |
<p><strong><?php echo $this->updatemsg;?></strong></p>
|
805 |
</div>
|
921 |
</tr>
|
922 |
<tr>
|
923 |
<th scope="row"><label><?php echo __( 'Delete Redirects?', 'quick-pagepost-redirect-plugin' );?> </label></th>
|
924 |
+
<td>
|
925 |
+
<input class="button-secondary qppr-delete-regular" type="button" name="qppr-delete-regular" value="<?php echo __( 'Delete All Individual Redirects', 'quick-pagepost-redirect-plugin' );?>" />
|
926 |
+
<input class="button-secondary qppr-delete-quick" type="button" name="qppr-delete-quick" value="<?php echo __( 'Delete all Quick Redirects', 'quick-pagepost-redirect-plugin' );?>" />
|
927 |
+
<br /><span><?php echo __( 'Individual Redirects are redirects set up on individual pages or posts when in the editing screen. The Quick Redirects are set up on the Quick Redirects page.', 'quick-pagepost-redirect-plugin' );?></span>
|
928 |
+
</td>
|
929 |
</tr>
|
930 |
</table>
|
931 |
<p class="submit"><input type="submit" class="button-primary" value="<?php echo __( 'Save Changes', 'quick-pagepost-redirect-plugin' );?>" /></p>
|
1155 |
';
|
1156 |
$ww++;
|
1157 |
}
|
1158 |
+
}else{
|
1159 |
+
$output .= '
|
1160 |
+
<tr >
|
1161 |
+
<td colspan="8">' . __( 'No Quick Redirects.', 'quick-pagepost-redirect-plugin' ) . '</td>
|
1162 |
+
</tr>
|
1163 |
+
';
|
1164 |
}
|
1165 |
return $output;
|
1166 |
}
|
1287 |
}
|
1288 |
|
1289 |
function ppr_queryhook($vars) {
|
|
|
|
|
1290 |
$vars[] = 'qppr-file-type';
|
1291 |
return $vars;
|
1292 |
}
|
1294 |
global $wp, $wpdb;
|
1295 |
$this->ppr_all_redir_array = $this->get_main_array();
|
1296 |
$this->pprptypes_ok = get_option( 'ppr_qpprptypeok', array() );
|
1297 |
+
if ( isset( $_GET['action'] ) && $_GET['action'] == 'export-quick-redirects-file' ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1298 |
$newQPPR_Array = array();
|
1299 |
check_admin_referer( 'export-redirects-qppr' );
|
1300 |
$type = isset( $_GET['qppr-file-type'] ) && sanitize_text_field( $_GET['qppr-file-type'] ) == 'encoded' ? 'encoded' : 'pipe' ; // can be 'encoded' or 'pipe';
|
1768 |
$getQAddress = $this->getQAddress( $homeURL ); // gets just the protocol and domain (host) of the request.
|
1769 |
|
1770 |
//get the query string if there is one so that it can be preserved
|
|
|
1771 |
// patch submitted for version 5.0.7 by Romulo De Lazzari <romulodelazzari@gmail.com> - THANKS!
|
1772 |
$finalQS = (filter_input(INPUT_SERVER, 'QUERY_STRING'));
|
1773 |
if ($finalQS === null || $finalQS === false || $finalQS === '') {
|
1777 |
}
|
1778 |
$userrequest = str_replace( $homeURL, '', $getAddress );
|
1779 |
$userrequest = preg_replace('/\?.*/', '', $userrequest);
|
1780 |
+
// end patch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1781 |
//end QS preservation
|
1782 |
|
1783 |
$needle = $this->pproverride_casesensitive ? $userrequest : strtolower($userrequest);
|
readme.txt
CHANGED
@@ -11,9 +11,9 @@ Stable tag: trunk
|
|
11 |
Easily redirect pages/posts or custom post types to another page/post or external URL by specifying the redirect URL and type (301, 302, 307, meta).
|
12 |
|
13 |
== Description ==
|
14 |
-
Current Version 5.0
|
15 |
|
16 |
-
This plugin has two redirect functionalities - "Quick Redirects" and "Individual Redirects"
|
17 |
|
18 |
= QUICK REDIRECTS (301 Redirects) =
|
19 |
Quick Redirects are designed to be quick and simple to add. You do not need to have an existing page or post set up to add one. You just put the Request URL and the Destination URL and the plugin will redirect it. This type of redirect is great for fixing typos when a page was created, redirecting old URLs to a new URL so there is no 404, and to redirect links from an old site that has been converted to WordPress.
|
@@ -145,6 +145,11 @@ NO it isn't! Check the plugin FAQs/Help page for a more up to date list of Frequ
|
|
145 |
6. New Redirect Column (optional) for pages/posts and custom post types. Easily see if a page has a redirect and where it goes. Turn off in settings.
|
146 |
|
147 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
148 |
= 5.0.7 =
|
149 |
* Added textdomain for future translations. English Complete.
|
150 |
* Change Quick Redirects page to use ajax to save and edit existing redirects, instead of all redirects in post fields. This is to eliminate the 'max_input_vars' setting in php from stopping large numbers of redirects from saving.
|
@@ -282,7 +287,5 @@ NO it isn't! Check the plugin FAQs/Help page for a more up to date list of Frequ
|
|
282 |
* Initial Plugin creation (7/1/2009)
|
283 |
|
284 |
== Upgrade Notice ==
|
285 |
-
= 5.0
|
286 |
-
* Fix
|
287 |
-
* New Enhancements.
|
288 |
-
* Bug Fixes.
|
11 |
Easily redirect pages/posts or custom post types to another page/post or external URL by specifying the redirect URL and type (301, 302, 307, meta).
|
12 |
|
13 |
== Description ==
|
14 |
+
Current Version 5.1.0
|
15 |
|
16 |
+
This plugin has two redirect functionalities - **"Quick Redirects"** and **"Individual Redirects"**:
|
17 |
|
18 |
= QUICK REDIRECTS (301 Redirects) =
|
19 |
Quick Redirects are designed to be quick and simple to add. You do not need to have an existing page or post set up to add one. You just put the Request URL and the Destination URL and the plugin will redirect it. This type of redirect is great for fixing typos when a page was created, redirecting old URLs to a new URL so there is no 404, and to redirect links from an old site that has been converted to WordPress.
|
145 |
6. New Redirect Column (optional) for pages/posts and custom post types. Easily see if a page has a redirect and where it goes. Turn off in settings.
|
146 |
|
147 |
== Changelog ==
|
148 |
+
= 5.1.0 =
|
149 |
+
* Fix security issue for deleting ALL Quick and Individual Redirects.
|
150 |
+
* Update POT and English Translation file.
|
151 |
+
* Added 'No Quick Redirects' message when there are no Quick Redirects.
|
152 |
+
|
153 |
= 5.0.7 =
|
154 |
* Added textdomain for future translations. English Complete.
|
155 |
* Change Quick Redirects page to use ajax to save and edit existing redirects, instead of all redirects in post fields. This is to eliminate the 'max_input_vars' setting in php from stopping large numbers of redirects from saving.
|
287 |
* Initial Plugin creation (7/1/2009)
|
288 |
|
289 |
== Upgrade Notice ==
|
290 |
+
= 5.1.0 =
|
291 |
+
* Fix Security Issue in Deleting All Redirects in Admin.
|
|
|
|