Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.1 |
Comparing to | |
See all releases |
Code changes from version 7.0 to 7.1
- includes/encoder.js +236 -0
- includes/jlsuggest/jlsuggest.js +3 -3
- modules/autolinks/footer-autolinks.php +0 -4
- modules/class.su-module.php +27 -2
- modules/internal-link-aliases/internal-link-aliases.css +35 -0
- modules/internal-link-aliases/internal-link-aliases.php +152 -21
- plugin/class.seo-ultimate.php +30 -0
- readme.txt +17 -8
- seo-ultimate.php +4 -4
- seo-ultimate.pot +1547 -1665
includes/encoder.js
ADDED
@@ -0,0 +1,236 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* A Javascript object to encode and/or decode html characters using HTML or Numeric entities that handles double or partial encoding
|
3 |
+
* Author: R Reid
|
4 |
+
* source: http://www.strictly-software.com/htmlencode
|
5 |
+
* Licences: GPL, The MIT License (MIT)
|
6 |
+
* Copyright: (c) 2011 Robert Reid - Strictly-Software.com
|
7 |
+
*
|
8 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
9 |
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
10 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
11 |
+
*
|
12 |
+
* Revision:
|
13 |
+
* 2011-07-14, Jacques-Yves Bleau:
|
14 |
+
* - fixed conversion error with capitalized accentuated characters
|
15 |
+
* + converted arr1 and arr2 to object property to remove redundancy
|
16 |
+
*
|
17 |
+
* Revision:
|
18 |
+
* 2011-11-10, Ce-Yi Hio:
|
19 |
+
* - fixed conversion error with a number of capitalized entity characters
|
20 |
+
*
|
21 |
+
* Revision:
|
22 |
+
* 2011-11-10, Rob Reid:
|
23 |
+
* - changed array format
|
24 |
+
*/
|
25 |
+
|
26 |
+
Encoder = {
|
27 |
+
|
28 |
+
// When encoding do we convert characters into html or numerical entities
|
29 |
+
EncodeType : "entity", // entity OR numerical
|
30 |
+
|
31 |
+
isEmpty : function(val){
|
32 |
+
if(val){
|
33 |
+
return ((val===null) || val.length==0 || /^\s+$/.test(val));
|
34 |
+
}else{
|
35 |
+
return true;
|
36 |
+
}
|
37 |
+
},
|
38 |
+
|
39 |
+
// arrays for conversion from HTML Entities to Numerical values
|
40 |
+
arr1: [' ','¡','¢','£','¤','¥','¦','§','¨','©','ª','«','¬','­','®','¯','°','±','²','³','´','µ','¶','·','¸','¹','º','»','¼','½','¾','¿','À','Á','Â','Ã','Ä','Å','Æ','Ç','È','É','Ê','Ë','Ì','Í','Î','Ï','Ð','Ñ','Ò','Ó','Ô','Õ','Ö','×','Ø','Ù','Ú','Û','Ü','Ý','Þ','ß','à','á','â','ã','ä','å','æ','ç','è','é','ê','ë','ì','í','î','ï','ð','ñ','ò','ó','ô','õ','ö','÷','ø','ù','ú','û','ü','ý','þ','ÿ','"','&','<','>','Œ','œ','Š','š','Ÿ','ˆ','˜',' ',' ',' ','‌','‍','‎','‏','–','—','‘','’','‚','“','”','„','†','‡','‰','‹','›','€','ƒ','Α','Β','Γ','Δ','Ε','Ζ','Η','Θ','Ι','Κ','Λ','Μ','Ν','Ξ','Ο','Π','Ρ','Σ','Τ','Υ','Φ','Χ','Ψ','Ω','α','β','γ','δ','ε','ζ','η','θ','ι','κ','λ','μ','ν','ξ','ο','π','ρ','ς','σ','τ','υ','φ','χ','ψ','ω','ϑ','ϒ','ϖ','•','…','′','″','‾','⁄','℘','ℑ','ℜ','™','ℵ','←','↑','→','↓','↔','↵','⇐','⇑','⇒','⇓','⇔','∀','∂','∃','∅','∇','∈','∉','∋','∏','∑','−','∗','√','∝','∞','∠','∧','∨','∩','∪','∫','∴','∼','≅','≈','≠','≡','≤','≥','⊂','⊃','⊄','⊆','⊇','⊕','⊗','⊥','⋅','⌈','⌉','⌊','⌋','⟨','⟩','◊','♠','♣','♥','♦'],
|
41 |
+
arr2: [' ','¡','¢','£','¤','¥','¦','§','¨','©','ª','«','¬','­','®','¯','°','±','²','³','´','µ','¶','·','¸','¹','º','»','¼','½','¾','¿','À','Á','Â','Ã','Ä','Å','Æ','Ç','È','É','Ê','Ë','Ì','Í','Î','Ï','Ð','Ñ','Ò','Ó','Ô','Õ','Ö','×','Ø','Ù','Ú','Û','Ü','Ý','Þ','ß','à','á','â','ã','ä','å','æ','ç','è','é','ê','ë','ì','í','î','ï','ð','ñ','ò','ó','ô','õ','ö','÷','ø','ù','ú','û','ü','ý','þ','ÿ','"','&','<','>','Œ','œ','Š','š','Ÿ','ˆ','˜',' ',' ',' ','‌','‍','‎','‏','–','—','‘','’','‚','“','”','„','†','‡','‰','‹','›','€','ƒ','Α','Β','Γ','Δ','Ε','Ζ','Η','Θ','Ι','Κ','Λ','Μ','Ν','Ξ','Ο','Π','Ρ','Σ','Τ','Υ','Φ','Χ','Ψ','Ω','α','β','γ','δ','ε','ζ','η','θ','ι','κ','λ','μ','ν','ξ','ο','π','ρ','ς','σ','τ','υ','φ','χ','ψ','ω','ϑ','ϒ','ϖ','•','…','′','″','‾','⁄','℘','ℑ','ℜ','™','ℵ','←','↑','→','↓','↔','↵','⇐','⇑','⇒','⇓','⇔','∀','∂','∃','∅','∇','∈','∉','∋','∏','∑','−','∗','√','∝','∞','∠','∧','∨','∩','∪','∫','∴','∼','≅','≈','≠','≡','≤','≥','⊂','⊃','⊄','⊆','⊇','⊕','⊗','⊥','⋅','⌈','⌉','⌊','⌋','〈','〉','◊','♠','♣','♥','♦'],
|
42 |
+
|
43 |
+
// Convert HTML entities into numerical entities
|
44 |
+
HTML2Numerical : function(s){
|
45 |
+
return this.swapArrayVals(s,this.arr1,this.arr2);
|
46 |
+
},
|
47 |
+
|
48 |
+
// Convert Numerical entities into HTML entities
|
49 |
+
NumericalToHTML : function(s){
|
50 |
+
return this.swapArrayVals(s,this.arr2,this.arr1);
|
51 |
+
},
|
52 |
+
|
53 |
+
|
54 |
+
// Numerically encodes all unicode characters
|
55 |
+
numEncode : function(s){
|
56 |
+
|
57 |
+
if(this.isEmpty(s)) return "";
|
58 |
+
|
59 |
+
var e = "";
|
60 |
+
for (var i = 0; i < s.length; i++)
|
61 |
+
{
|
62 |
+
var c = s.charAt(i);
|
63 |
+
if (c < " " || c > "~")
|
64 |
+
{
|
65 |
+
c = "&#" + c.charCodeAt() + ";";
|
66 |
+
}
|
67 |
+
e += c;
|
68 |
+
}
|
69 |
+
return e;
|
70 |
+
},
|
71 |
+
|
72 |
+
// HTML Decode numerical and HTML entities back to original values
|
73 |
+
htmlDecode : function(s){
|
74 |
+
|
75 |
+
var c,m,d = s;
|
76 |
+
|
77 |
+
if(this.isEmpty(d)) return "";
|
78 |
+
|
79 |
+
// convert HTML entites back to numerical entites first
|
80 |
+
d = this.HTML2Numerical(d);
|
81 |
+
|
82 |
+
// look for numerical entities "
|
83 |
+
arr=d.match(/&#[0-9]{1,5};/g);
|
84 |
+
|
85 |
+
// if no matches found in string then skip
|
86 |
+
if(arr!=null){
|
87 |
+
for(var x=0;x<arr.length;x++){
|
88 |
+
m = arr[x];
|
89 |
+
c = m.substring(2,m.length-1); //get numeric part which is refernce to unicode character
|
90 |
+
// if its a valid number we can decode
|
91 |
+
if(c >= -32768 && c <= 65535){
|
92 |
+
// decode every single match within string
|
93 |
+
d = d.replace(m, String.fromCharCode(c));
|
94 |
+
}else{
|
95 |
+
d = d.replace(m, ""); //invalid so replace with nada
|
96 |
+
}
|
97 |
+
}
|
98 |
+
}
|
99 |
+
|
100 |
+
return d;
|
101 |
+
},
|
102 |
+
|
103 |
+
// encode an input string into either numerical or HTML entities
|
104 |
+
htmlEncode : function(s,dbl){
|
105 |
+
|
106 |
+
if(this.isEmpty(s)) return "";
|
107 |
+
|
108 |
+
// do we allow double encoding? E.g will & be turned into &amp;
|
109 |
+
dbl = dbl || false; //default to prevent double encoding
|
110 |
+
|
111 |
+
// if allowing double encoding we do ampersands first
|
112 |
+
if(dbl){
|
113 |
+
if(this.EncodeType=="numerical"){
|
114 |
+
s = s.replace(/&/g, "&");
|
115 |
+
}else{
|
116 |
+
s = s.replace(/&/g, "&");
|
117 |
+
}
|
118 |
+
}
|
119 |
+
|
120 |
+
// convert the xss chars to numerical entities ' " < >
|
121 |
+
s = this.XSSEncode(s,false);
|
122 |
+
|
123 |
+
if(this.EncodeType=="numerical" || !dbl){
|
124 |
+
// Now call function that will convert any HTML entities to numerical codes
|
125 |
+
s = this.HTML2Numerical(s);
|
126 |
+
}
|
127 |
+
|
128 |
+
// Now encode all chars above 127 e.g unicode
|
129 |
+
s = this.numEncode(s);
|
130 |
+
|
131 |
+
// now we know anything that needs to be encoded has been converted to numerical entities we
|
132 |
+
// can encode any ampersands & that are not part of encoded entities
|
133 |
+
// to handle the fact that I need to do a negative check and handle multiple ampersands &&&
|
134 |
+
// I am going to use a placeholder
|
135 |
+
|
136 |
+
// if we don't want double encoded entities we ignore the & in existing entities
|
137 |
+
if(!dbl){
|
138 |
+
s = s.replace(/&#/g,"##AMPHASH##");
|
139 |
+
|
140 |
+
if(this.EncodeType=="numerical"){
|
141 |
+
s = s.replace(/&/g, "&");
|
142 |
+
}else{
|
143 |
+
s = s.replace(/&/g, "&");
|
144 |
+
}
|
145 |
+
|
146 |
+
s = s.replace(/##AMPHASH##/g,"&#");
|
147 |
+
}
|
148 |
+
|
149 |
+
// replace any malformed entities
|
150 |
+
s = s.replace(/&#\d*([^\d;]|$)/g, "$1");
|
151 |
+
|
152 |
+
if(!dbl){
|
153 |
+
// safety check to correct any double encoded &
|
154 |
+
s = this.correctEncoding(s);
|
155 |
+
}
|
156 |
+
|
157 |
+
// now do we need to convert our numerical encoded string into entities
|
158 |
+
if(this.EncodeType=="entity"){
|
159 |
+
s = this.NumericalToHTML(s);
|
160 |
+
}
|
161 |
+
|
162 |
+
return s;
|
163 |
+
},
|
164 |
+
|
165 |
+
// Encodes the basic 4 characters used to malform HTML in XSS hacks
|
166 |
+
XSSEncode : function(s,en){
|
167 |
+
if(!this.isEmpty(s)){
|
168 |
+
en = en || true;
|
169 |
+
// do we convert to numerical or html entity?
|
170 |
+
if(en){
|
171 |
+
s = s.replace(/\'/g,"'"); //no HTML equivalent as &apos is not cross browser supported
|
172 |
+
s = s.replace(/\"/g,""");
|
173 |
+
s = s.replace(/</g,"<");
|
174 |
+
s = s.replace(/>/g,">");
|
175 |
+
}else{
|
176 |
+
s = s.replace(/\'/g,"'"); //no HTML equivalent as &apos is not cross browser supported
|
177 |
+
s = s.replace(/\"/g,""");
|
178 |
+
s = s.replace(/</g,"<");
|
179 |
+
s = s.replace(/>/g,">");
|
180 |
+
}
|
181 |
+
return s;
|
182 |
+
}else{
|
183 |
+
return "";
|
184 |
+
}
|
185 |
+
},
|
186 |
+
|
187 |
+
// returns true if a string contains html or numerical encoded entities
|
188 |
+
hasEncoded : function(s){
|
189 |
+
if(/&#[0-9]{1,5};/g.test(s)){
|
190 |
+
return true;
|
191 |
+
}else if(/&[A-Z]{2,6};/gi.test(s)){
|
192 |
+
return true;
|
193 |
+
}else{
|
194 |
+
return false;
|
195 |
+
}
|
196 |
+
},
|
197 |
+
|
198 |
+
// will remove any unicode characters
|
199 |
+
stripUnicode : function(s){
|
200 |
+
return s.replace(/[^\x20-\x7E]/g,"");
|
201 |
+
|
202 |
+
},
|
203 |
+
|
204 |
+
// corrects any double encoded & entities e.g &amp;
|
205 |
+
correctEncoding : function(s){
|
206 |
+
return s.replace(/(&)(amp;)+/,"$1");
|
207 |
+
},
|
208 |
+
|
209 |
+
|
210 |
+
// Function to loop through an array swaping each item with the value from another array e.g swap HTML entities with Numericals
|
211 |
+
swapArrayVals : function(s,arr1,arr2){
|
212 |
+
if(this.isEmpty(s)) return "";
|
213 |
+
var re;
|
214 |
+
if(arr1 && arr2){
|
215 |
+
//ShowDebug("in swapArrayVals arr1.length = " + arr1.length + " arr2.length = " + arr2.length)
|
216 |
+
// array lengths must match
|
217 |
+
if(arr1.length == arr2.length){
|
218 |
+
for(var x=0,i=arr1.length;x<i;x++){
|
219 |
+
re = new RegExp(arr1[x], 'g');
|
220 |
+
s = s.replace(re,arr2[x]); //swap arr1 item with matching item from arr2
|
221 |
+
}
|
222 |
+
}
|
223 |
+
}
|
224 |
+
return s;
|
225 |
+
},
|
226 |
+
|
227 |
+
inArray : function( item, arr ) {
|
228 |
+
for ( var i = 0, x = arr.length; i < x; i++ ){
|
229 |
+
if ( arr[i] === item ){
|
230 |
+
return i;
|
231 |
+
}
|
232 |
+
}
|
233 |
+
return -1;
|
234 |
+
}
|
235 |
+
|
236 |
+
}
|
includes/jlsuggest/jlsuggest.js
CHANGED
@@ -252,9 +252,9 @@ jQuery(document).ready( function($) {
|
|
252 |
function(q) { return '<span class="' + options.matchClass + '">' + q + '</span>' }
|
253 |
);
|
254 |
html = '<li'
|
255 |
-
+ ' class="' +
|
256 |
-
+ ' su:value="' +
|
257 |
-
+ ' su:selectedtext="' +
|
258 |
+ '>' + html + '</li>';
|
259 |
}
|
260 |
lis[lis.length] = html;
|
252 |
function(q) { return '<span class="' + options.matchClass + '">' + q + '</span>' }
|
253 |
);
|
254 |
html = '<li'
|
255 |
+
+ ' class="' + Encoder.htmlEncode(options.itemClass, true) + '"'
|
256 |
+
+ ' su:value="' + Encoder.htmlEncode(item.value || '', true) + '"'
|
257 |
+
+ ' su:selectedtext="' + Encoder.htmlEncode(item.selectedtext || '', true) + '"'
|
258 |
+ '>' + html + '</li>';
|
259 |
}
|
260 |
lis[lis.length] = html;
|
modules/autolinks/footer-autolinks.php
CHANGED
@@ -125,10 +125,6 @@ class SU_FooterAutolinks extends SU_Module {
|
|
125 |
|
126 |
function admin_page_contents() {
|
127 |
|
128 |
-
echo "\n<p>";
|
129 |
-
_e('The Content Links section of Deeplink Juggernaut lets you automatically link a certain word or phrase in your post/page content to a URL you specify.', 'seo-ultimate');
|
130 |
-
echo "</p>\n";
|
131 |
-
|
132 |
$links = $this->get_setting('footer_links', array());
|
133 |
$num_links = count($links);
|
134 |
|
125 |
|
126 |
function admin_page_contents() {
|
127 |
|
|
|
|
|
|
|
|
|
128 |
$links = $this->get_setting('footer_links', array());
|
129 |
$num_links = count($links);
|
130 |
|
modules/class.su-module.php
CHANGED
@@ -880,7 +880,7 @@ class SU_Module {
|
|
880 |
* @uses get_admin_url()
|
881 |
* @uses SEO_Ultimate::plugin_dir_url
|
882 |
*
|
883 |
-
* @param array $tabs
|
884 |
* @param bool $table Whether or not the tab contents should be wrapped in a form table.
|
885 |
*/
|
886 |
function admin_page_tabs($tabs = array(), $table=false) {
|
@@ -2465,6 +2465,7 @@ class SU_Module {
|
|
2465 |
*/
|
2466 |
function jlsuggest_init() {
|
2467 |
add_action('admin_xml_ns', array(&$this, 'jlsuggest_xml_ns'));
|
|
|
2468 |
$this->plugin->queue_js ('includes/jlsuggest', 'jlsuggest');
|
2469 |
$this->plugin->queue_css('includes/jlsuggest', 'jlsuggest');
|
2470 |
}
|
@@ -2547,6 +2548,19 @@ class SU_Module {
|
|
2547 |
case 'author':
|
2548 |
$selected_author = get_userdata($to_id);
|
2549 |
$text_dest = $selected_author->user_login . '<span class="type"> — '.__('Author', 'seo-ultimate').'</span>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2550 |
}
|
2551 |
|
2552 |
$is_url = (('url' == $to_genus) && !$text_dest);
|
@@ -2578,7 +2592,7 @@ class SU_Module {
|
|
2578 |
$html .= '<div class="jls_text_dest_text">';
|
2579 |
$html .= $text_dest;
|
2580 |
$html .= '</div>';
|
2581 |
-
$html .= '<div><a href="#" onclick="javascript:return false;" class="jls_text_dest_close" title="'.__('Remove this
|
2582 |
$html .= '</div>';
|
2583 |
|
2584 |
return $html;
|
@@ -2612,6 +2626,17 @@ class SU_Module {
|
|
2612 |
case 'author':
|
2613 |
$to_id = (int)$to_id;
|
2614 |
return get_author_posts_url($to_id); break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2615 |
}
|
2616 |
|
2617 |
return false;
|
880 |
* @uses get_admin_url()
|
881 |
* @uses SEO_Ultimate::plugin_dir_url
|
882 |
*
|
883 |
+
* @param array $tabs Array (id => __, title => __, callback => __)
|
884 |
* @param bool $table Whether or not the tab contents should be wrapped in a form table.
|
885 |
*/
|
886 |
function admin_page_tabs($tabs = array(), $table=false) {
|
2465 |
*/
|
2466 |
function jlsuggest_init() {
|
2467 |
add_action('admin_xml_ns', array(&$this, 'jlsuggest_xml_ns'));
|
2468 |
+
$this->plugin->queue_js ('includes', 'encoder');
|
2469 |
$this->plugin->queue_js ('includes/jlsuggest', 'jlsuggest');
|
2470 |
$this->plugin->queue_css('includes/jlsuggest', 'jlsuggest');
|
2471 |
}
|
2548 |
case 'author':
|
2549 |
$selected_author = get_userdata($to_id);
|
2550 |
$text_dest = $selected_author->user_login . '<span class="type"> — '.__('Author', 'seo-ultimate').'</span>';
|
2551 |
+
break;
|
2552 |
+
case 'internal-link-alias':
|
2553 |
+
$alias_dir = $this->get_setting('alias_dir', 'go', 'internal-link-aliases');
|
2554 |
+
$aliases = $this->get_setting('aliases', array(), 'internal-link-aliases');
|
2555 |
+
|
2556 |
+
if (isset($aliases[$to_id]['to'])) {
|
2557 |
+
$h_alias_to = su_esc_html($aliases[$to_id]['to']);
|
2558 |
+
$text_dest = "/$alias_dir/$h_alias_to/" . '<span class="type"> — '.__('Link Mask', 'seo-ultimate').'</span>';
|
2559 |
+
} else {
|
2560 |
+
$to_genus = 'url';
|
2561 |
+
$to_id = '';
|
2562 |
+
}
|
2563 |
+
break;
|
2564 |
}
|
2565 |
|
2566 |
$is_url = (('url' == $to_genus) && !$text_dest);
|
2592 |
$html .= '<div class="jls_text_dest_text">';
|
2593 |
$html .= $text_dest;
|
2594 |
$html .= '</div>';
|
2595 |
+
$html .= '<div><a href="#" onclick="javascript:return false;" class="jls_text_dest_close" title="'.__('Remove this location from this textbox', 'seo-ultimate').'">'.__('X', 'seo-ultimate').'</a></div>';
|
2596 |
$html .= '</div>';
|
2597 |
|
2598 |
return $html;
|
2626 |
case 'author':
|
2627 |
$to_id = (int)$to_id;
|
2628 |
return get_author_posts_url($to_id); break;
|
2629 |
+
case 'internal-link-alias':
|
2630 |
+
$alias_dir = $this->get_setting('alias_dir', 'go', 'internal-link-aliases');
|
2631 |
+
$aliases = $this->get_setting('aliases', array(),'internal-link-aliases');
|
2632 |
+
|
2633 |
+
if (isset($aliases[$to_id]['to'])) {
|
2634 |
+
$u_alias_to = urlencode($aliases[$to_id]['to']);
|
2635 |
+
return get_bloginfo('url') . "/$alias_dir/$u_alias_to/";
|
2636 |
+
}
|
2637 |
+
|
2638 |
+
return false;
|
2639 |
+
break;
|
2640 |
}
|
2641 |
|
2642 |
return false;
|
modules/internal-link-aliases/internal-link-aliases.css
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#su-internal-link-aliases table.widefat,
|
2 |
+
#su-internal-link-aliases table.widefat input.textbox {
|
3 |
+
width: 100%;
|
4 |
+
}
|
5 |
+
|
6 |
+
#su-internal-link-aliases table.widefat td {
|
7 |
+
vertical-align: middle;
|
8 |
+
}
|
9 |
+
|
10 |
+
#su-internal-link-aliases table.widefat td.su-alias-to {
|
11 |
+
width: 15em;
|
12 |
+
}
|
13 |
+
|
14 |
+
#su-internal-link-aliases table.widefat td.su-alias-to-test {
|
15 |
+
font-size: 0.8em;
|
16 |
+
}
|
17 |
+
|
18 |
+
#su-internal-link-aliases table.widefat td.su-alias-delete {
|
19 |
+
width: 3em;
|
20 |
+
text-align: center;
|
21 |
+
}
|
22 |
+
|
23 |
+
#su-internal-link-aliases table.widefat td.su-alias-to table,
|
24 |
+
#su-internal-link-aliases table.widefat td.su-alias-to table tr,
|
25 |
+
#su-internal-link-aliases table.widefat td.su-alias-to table tr td {
|
26 |
+
border-collapse: 0;
|
27 |
+
padding: 0;
|
28 |
+
margin: 0;
|
29 |
+
border: 0 none;
|
30 |
+
background: transparent;
|
31 |
+
}
|
32 |
+
|
33 |
+
#su-internal-link-aliases table.widefat td.su-alias-to table tr td input.textbox {
|
34 |
+
width: 98%;
|
35 |
+
}
|
modules/internal-link-aliases/internal-link-aliases.php
CHANGED
@@ -17,17 +17,129 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
17 |
add_filter('su_get_setting-internal-link-aliases-alias_dir', array(&$this, 'filter_alias_dir'));
|
18 |
}
|
19 |
|
|
|
|
|
|
|
|
|
20 |
function get_module_title() { return __('Link Mask Generator', 'seo-ultimate'); }
|
21 |
|
22 |
-
function get_parent_module() { return 'misc'; }
|
23 |
function get_settings_key() { return 'internal-link-aliases'; }
|
24 |
|
25 |
-
function
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
$this->textbox('alias_dir', __('Alias Directory', 'seo-ultimate'), $this->get_default_setting('alias_dir'));
|
28 |
if ($this->plugin->module_exists('link-nofollow'))
|
29 |
$this->checkbox('nofollow_aliased_links', __('Nofollow aliased links', 'seo-ultimate'), __('Link Attributes', 'seo-ultimate'));
|
30 |
-
$this->
|
31 |
}
|
32 |
|
33 |
function filter_alias_dir($alias_dir) {
|
@@ -36,15 +148,18 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
36 |
|
37 |
function postmeta_fields($fields) {
|
38 |
|
|
|
|
|
|
|
39 |
$post_id = suwp::get_post_id();
|
40 |
$post = get_post($post_id);
|
41 |
-
if (!$post) return;
|
42 |
$content = $post->post_content;
|
43 |
|
44 |
$alias_dir = $this->get_setting('alias_dir', 'go');
|
45 |
|
46 |
if ($content && preg_match_all('@ href=["\']([^"\']+)["\']@', $content, $matches)) {
|
47 |
-
$urls = $matches[1];
|
48 |
|
49 |
$html = "<tr valign='top'>\n<th scope='row' class='su'>".__('Link Masks:', 'seo-ultimate')."</th>\n<td>\n";
|
50 |
|
@@ -55,9 +170,9 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
55 |
|
56 |
$aliases = $this->get_setting('aliases', array());
|
57 |
$post_aliases = array();
|
58 |
-
foreach ($aliases as $alias) {
|
59 |
-
if (in_array($post->ID, $alias['posts']))
|
60 |
-
$post_aliases[$alias['from']] = $alias['to'];
|
61 |
}
|
62 |
|
63 |
foreach ($urls as $url) {
|
@@ -66,15 +181,21 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
66 |
$ht_url = esc_html(sustr::truncate($url, 30));
|
67 |
|
68 |
if (isset($post_aliases[$url]))
|
69 |
-
$
|
70 |
elseif (isset($post_aliases[$un_h_url]))
|
71 |
-
$
|
72 |
else
|
73 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
$a_alias_to = esc_attr($alias_to);
|
76 |
|
77 |
-
$alias_id = md5($url . serialize(array($post_id)));
|
78 |
$html .= "<tr><td><a href='$a_url' title='$a_url' target='_blank'>$ht_url</a><input type='hidden' name='_su_aliases[$alias_id][from]' value='$a_url' /></td>\n<td>⇒</td><td>/$alias_dir/<input type='text' name='_su_aliases[$alias_id][to]' value='$a_alias_to' /></td></tr>\n";
|
79 |
}
|
80 |
|
@@ -95,10 +216,20 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
95 |
|
96 |
$aliases = $this->get_setting('aliases', array());
|
97 |
|
98 |
-
foreach ($saved_aliases as $
|
99 |
-
|
100 |
-
$aliases[$
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
}
|
103 |
|
104 |
$this->update_setting('aliases', $aliases);
|
@@ -123,9 +254,9 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
123 |
$new_url = $old_url = $matches[3];
|
124 |
|
125 |
foreach ($aliases as $alias) {
|
126 |
-
$to = $alias['to'];
|
127 |
|
128 |
-
if (in_array($id, $alias['posts']) && $to) {
|
129 |
$from = $alias['from'];
|
130 |
$h_from = esc_html($from);
|
131 |
$to = get_bloginfo('url') . "/$alias_dir/$to/";
|
@@ -157,7 +288,7 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
157 |
|
158 |
function block_aliases_dir() {
|
159 |
echo '# ';
|
160 |
-
_e(
|
161 |
echo "\n";
|
162 |
|
163 |
$urlinfo = parse_url(get_bloginfo('url'));
|
@@ -168,7 +299,7 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
168 |
echo "Disallow: $path/$alias_dir/\n";
|
169 |
|
170 |
echo '# ';
|
171 |
-
_e('End
|
172 |
echo "\n\n";
|
173 |
}
|
174 |
|
17 |
add_filter('su_get_setting-internal-link-aliases-alias_dir', array(&$this, 'filter_alias_dir'));
|
18 |
}
|
19 |
|
20 |
+
function admin_page_init() {
|
21 |
+
$this->jlsuggest_init();
|
22 |
+
}
|
23 |
+
|
24 |
function get_module_title() { return __('Link Mask Generator', 'seo-ultimate'); }
|
25 |
|
|
|
26 |
function get_settings_key() { return 'internal-link-aliases'; }
|
27 |
|
28 |
+
function get_admin_page_tabs() {
|
29 |
+
return array(
|
30 |
+
array('id' => 'aliases', 'title' => __('Aliases', 'seo-ultimate'), 'callback' => 'editor_tab')
|
31 |
+
, array('id' => 'settings', 'title' => __('Settings', 'seo-ultimate'), 'callback' => 'settings_tab')
|
32 |
+
);
|
33 |
+
}
|
34 |
+
|
35 |
+
function remove_empty_aliases($alias) {
|
36 |
+
return !empty($alias['to']);
|
37 |
+
}
|
38 |
+
|
39 |
+
function editor_tab() {
|
40 |
+
|
41 |
+
$aliases = $this->get_setting('aliases', array());
|
42 |
+
$aliases = array_map('unserialize', array_unique(array_map('serialize', $aliases)));
|
43 |
+
$aliases = array_filter($aliases, array(&$this, 'remove_empty_aliases'));
|
44 |
+
$num_aliases = count($aliases);
|
45 |
+
|
46 |
+
if ($this->is_action('update')) {
|
47 |
+
|
48 |
+
$aliases = array();
|
49 |
+
|
50 |
+
for ($i=0; $i <= $num_aliases; $i++) {
|
51 |
+
|
52 |
+
$id = stripslashes($_POST["alias_{$i}_id"]);
|
53 |
+
$from = stripslashes($_POST["alias_{$i}_from"]);
|
54 |
+
$to = stripslashes($_POST["alias_{$i}_to"]);
|
55 |
+
|
56 |
+
$jls_post = stripslashes($_POST["alias_{$i}_posts"]);
|
57 |
+
if ($jls_post) {
|
58 |
+
$jls_post = $this->jlsuggest_value_explode($jls_post);
|
59 |
+
$posts = array($jls_post[2]);
|
60 |
+
} else {
|
61 |
+
$posts = array();
|
62 |
+
}
|
63 |
+
|
64 |
+
$delete = isset($_POST["alias_{$i}_delete"]) ? (intval($_POST["alias_{$i}_delete"]) == 1) : false;
|
65 |
+
|
66 |
+
if (!$delete && $from && $to)
|
67 |
+
$aliases[$id] = compact('from', 'to', 'posts');
|
68 |
+
}
|
69 |
+
$this->update_setting('aliases', $aliases);
|
70 |
+
|
71 |
+
$num_aliases = count($aliases);
|
72 |
+
}
|
73 |
+
|
74 |
+
if ($num_aliases > 0) {
|
75 |
+
$this->admin_subheader(__('Edit Existing Aliases', 'seo-ultimate'));
|
76 |
+
$this->aliases_form(0, $aliases);
|
77 |
+
}
|
78 |
+
|
79 |
+
$this->admin_subheader(__('Add a New Alias', 'seo-ultimate'));
|
80 |
+
$this->aliases_form($num_aliases, array(array()), false);
|
81 |
+
}
|
82 |
+
|
83 |
+
function aliases_form($start_id = 0, $aliases, $delete_option = true) {
|
84 |
+
|
85 |
+
//Set headers
|
86 |
+
$headers = array(
|
87 |
+
'alias-from' => __('Actual URL', 'seo-ultimate')
|
88 |
+
, 'alias-to' => __('Alias URL', 'seo-ultimate')
|
89 |
+
, 'alias-posts' => __('Only on This Post… (optional)', 'seo-ultimate')
|
90 |
+
);
|
91 |
+
if ($delete_option) $headers['alias-delete'] = __('Delete', 'seo-ultimate');
|
92 |
+
|
93 |
+
//Begin table; output headers
|
94 |
+
$this->admin_wftable_start($headers);
|
95 |
+
|
96 |
+
//Cycle through links
|
97 |
+
$i = $start_id;
|
98 |
+
foreach ($aliases as $id => $alias) {
|
99 |
+
|
100 |
+
if (!is_string($id)) $id = uniqid($i, true);
|
101 |
+
|
102 |
+
if (!isset($alias['from'])) $alias['from'] = '';
|
103 |
+
if (!isset($alias['to'])) $alias['to'] = '';
|
104 |
+
$u_alias_to = urlencode($alias['to']);
|
105 |
+
|
106 |
+
if (isset($alias['posts'][0]))
|
107 |
+
$jlsuggest_value = 'obj_posttype_' . get_post_type($alias['posts'][0]) . '/' . $alias['posts'][0];
|
108 |
+
else
|
109 |
+
$jlsuggest_value = '';
|
110 |
+
|
111 |
+
$alias_dir = $this->get_setting('alias_dir', 'go', null, true);
|
112 |
+
$alias_url = get_bloginfo('url') . "/$alias_dir/$u_alias_to/";
|
113 |
+
|
114 |
+
$cells = array(
|
115 |
+
'alias-from' =>
|
116 |
+
$this->get_input_element('hidden', "alias_{$i}_id", $id)
|
117 |
+
. $this->get_input_element('textbox', "alias_{$i}_from", $alias['from'])
|
118 |
+
, 'alias-to' => "
|
119 |
+
<table><tr>
|
120 |
+
<td class='su-alias-to-dir'>/$alias_dir/</td>
|
121 |
+
<td class='su-alias-to-slug'>" . $this->get_input_element('textbox', "alias_{$i}_to", $alias['to']) . "</td>
|
122 |
+
<td class='su-alias-to-test'>[<a href='$alias_url' target='_blank'>" . __('Test', 'seo-ultimate') . "</a>]</td>
|
123 |
+
</tr></table>"
|
124 |
+
, 'alias-posts' => $this->get_jlsuggest_box("alias_{$i}_posts", $jlsuggest_value, 'types=post')
|
125 |
+
);
|
126 |
+
if ($delete_option)
|
127 |
+
$cells['alias-delete'] = $this->get_input_element('checkbox', "alias_{$i}_delete");
|
128 |
+
|
129 |
+
$this->table_row($cells, $i, 'alias');
|
130 |
+
|
131 |
+
$i++;
|
132 |
+
}
|
133 |
+
|
134 |
+
$this->admin_wftable_end();
|
135 |
+
}
|
136 |
+
|
137 |
+
function settings_tab() {
|
138 |
+
$this->admin_form_table_start();
|
139 |
$this->textbox('alias_dir', __('Alias Directory', 'seo-ultimate'), $this->get_default_setting('alias_dir'));
|
140 |
if ($this->plugin->module_exists('link-nofollow'))
|
141 |
$this->checkbox('nofollow_aliased_links', __('Nofollow aliased links', 'seo-ultimate'), __('Link Attributes', 'seo-ultimate'));
|
142 |
+
$this->admin_form_table_end();
|
143 |
}
|
144 |
|
145 |
function filter_alias_dir($alias_dir) {
|
148 |
|
149 |
function postmeta_fields($fields) {
|
150 |
|
151 |
+
if (!current_user_can('manage_options'))
|
152 |
+
return $fields;
|
153 |
+
|
154 |
$post_id = suwp::get_post_id();
|
155 |
$post = get_post($post_id);
|
156 |
+
if (!$post) return $fields;
|
157 |
$content = $post->post_content;
|
158 |
|
159 |
$alias_dir = $this->get_setting('alias_dir', 'go');
|
160 |
|
161 |
if ($content && preg_match_all('@ href=["\']([^"\']+)["\']@', $content, $matches)) {
|
162 |
+
$urls = array_unique($matches[1]);
|
163 |
|
164 |
$html = "<tr valign='top'>\n<th scope='row' class='su'>".__('Link Masks:', 'seo-ultimate')."</th>\n<td>\n";
|
165 |
|
170 |
|
171 |
$aliases = $this->get_setting('aliases', array());
|
172 |
$post_aliases = array();
|
173 |
+
foreach ($aliases as $id => $alias) {
|
174 |
+
if (empty($alias['posts']) || in_array($post->ID, $alias['posts']))
|
175 |
+
$post_aliases[$alias['from']] = array('id' => $id, 'to' => $alias['to']);
|
176 |
}
|
177 |
|
178 |
foreach ($urls as $url) {
|
181 |
$ht_url = esc_html(sustr::truncate($url, 30));
|
182 |
|
183 |
if (isset($post_aliases[$url]))
|
184 |
+
$url_key = $url;
|
185 |
elseif (isset($post_aliases[$un_h_url]))
|
186 |
+
$url_key = $un_h_url;
|
187 |
else
|
188 |
+
$url_key = false;
|
189 |
+
|
190 |
+
$alias_to = '';
|
191 |
+
$alias_id = uniqid('', true);
|
192 |
+
if ($url_key) {
|
193 |
+
if (isset($post_aliases[$url_key]['to'])) $alias_to = $post_aliases[$url_key]['to'];
|
194 |
+
if (isset($post_aliases[$url_key]['id'])) $alias_id = $post_aliases[$url_key]['id'];
|
195 |
+
}
|
196 |
|
197 |
$a_alias_to = esc_attr($alias_to);
|
198 |
|
|
|
199 |
$html .= "<tr><td><a href='$a_url' title='$a_url' target='_blank'>$ht_url</a><input type='hidden' name='_su_aliases[$alias_id][from]' value='$a_url' /></td>\n<td>⇒</td><td>/$alias_dir/<input type='text' name='_su_aliases[$alias_id][to]' value='$a_alias_to' /></td></tr>\n";
|
200 |
}
|
201 |
|
216 |
|
217 |
$aliases = $this->get_setting('aliases', array());
|
218 |
|
219 |
+
foreach ($saved_aliases as $saved_id => $saved_data) {
|
220 |
+
|
221 |
+
if (isset($aliases[$saved_id])) {
|
222 |
+
|
223 |
+
if ($saved_data['to'])
|
224 |
+
$aliases[$saved_id]['to'] = $saved_data['to'];
|
225 |
+
else
|
226 |
+
unset($aliases[$saved_id]);
|
227 |
+
|
228 |
+
} elseif ($saved_data['to']) {
|
229 |
+
$aliases[$saved_id]['from'] = $saved_data['from'];
|
230 |
+
$aliases[$saved_id]['to'] = $saved_data['to'];
|
231 |
+
$aliases[$saved_id]['posts'] = array($post->ID);
|
232 |
+
}
|
233 |
}
|
234 |
|
235 |
$this->update_setting('aliases', $aliases);
|
254 |
$new_url = $old_url = $matches[3];
|
255 |
|
256 |
foreach ($aliases as $alias) {
|
257 |
+
$to = urlencode($alias['to']);
|
258 |
|
259 |
+
if ((empty($alias['posts']) || in_array($id, $alias['posts'])) && $to) {
|
260 |
$from = $alias['from'];
|
261 |
$h_from = esc_html($from);
|
262 |
$to = get_bloginfo('url') . "/$alias_dir/$to/";
|
288 |
|
289 |
function block_aliases_dir() {
|
290 |
echo '# ';
|
291 |
+
_e("Added by SEO Ultimate's Link Mask Generator module", 'seo-ultimate');
|
292 |
echo "\n";
|
293 |
|
294 |
$urlinfo = parse_url(get_bloginfo('url'));
|
299 |
echo "Disallow: $path/$alias_dir/\n";
|
300 |
|
301 |
echo '# ';
|
302 |
+
_e('End Link Mask Generator output', 'seo-ultimate');
|
303 |
echo "\n\n";
|
304 |
}
|
305 |
|
plugin/class.seo-ultimate.php
CHANGED
@@ -1747,6 +1747,36 @@ class SEO_Ultimate {
|
|
1747 |
}
|
1748 |
}
|
1749 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1750 |
echo json_encode($items);
|
1751 |
die();
|
1752 |
}
|
1747 |
}
|
1748 |
}
|
1749 |
|
1750 |
+
if (!$include || in_array('internal-link-aliases', $include)) {
|
1751 |
+
|
1752 |
+
$aliases = $this->get_setting('aliases', array(), 'internal-link-aliases');
|
1753 |
+
$alias_dir = $this->get_setting('alias_dir', 'go', 'internal-link-aliases');
|
1754 |
+
|
1755 |
+
if (is_array($aliases) && count($aliases)) {
|
1756 |
+
|
1757 |
+
$header_outputted = false;
|
1758 |
+
foreach ($aliases as $alias_id => $alias) {
|
1759 |
+
$h_alias_to = su_esc_html($alias['to']);
|
1760 |
+
$to_rel_url = "/$alias_dir/$h_alias_to/";
|
1761 |
+
|
1762 |
+
if ((strpos($alias['from'], $_GET['q']) !== false) || (strpos($to_rel_url, $_GET['q']) !== false)) {
|
1763 |
+
|
1764 |
+
if (!$header_outputted) {
|
1765 |
+
$items[] = array('text' => __('Link Masks', 'seo-ultimate'), 'isheader' => true);
|
1766 |
+
$header_outputted = true;
|
1767 |
+
}
|
1768 |
+
|
1769 |
+
$items[] = array(
|
1770 |
+
'text' => $to_rel_url
|
1771 |
+
, 'value' => 'obj_internal-link-alias/' . $alias_id
|
1772 |
+
, 'selectedtext' => $to_rel_url . '<span class="type"> — '.__('Link Mask', 'seo-ultimate').'</span>'
|
1773 |
+
);
|
1774 |
+
|
1775 |
+
}
|
1776 |
+
}
|
1777 |
+
}
|
1778 |
+
}
|
1779 |
+
|
1780 |
echo json_encode($items);
|
1781 |
die();
|
1782 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.3
|
6 |
-
Stable tag: 7.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
|
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
|
|
14 |
* Version 7.0 adds meta description pagination and WP 3.3 compatibility
|
15 |
* Version 6.9 adds the Settings Monitor module
|
16 |
* Version 6.8 adds rewrite method selection for Title Tag Rewriter
|
17 |
* Version 6.7 adds 3 more features to Deeplink Juggernaut
|
18 |
-
* Version 6.6 adds the SEO Ultimate Widgets module
|
19 |
|
20 |
= Features =
|
21 |
|
@@ -97,7 +97,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
97 |
* **Rich Snippet Creator**
|
98 |
* Easily add rich snippet code to your review posts.
|
99 |
* Attract more search traffic with eye-catching supplementary SERP data.
|
100 |
-
*
|
101 |
|
102 |
* **Sharing Facilitator**
|
103 |
* Adds buttons that make it easy for visitors to share your content on social networking sites (thus building links to your site).
|
@@ -107,10 +107,11 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
107 |
* **Webmaster Verification Assistant**
|
108 |
* Enter verification codes in the provided fields to access search engine webmaster tools.
|
109 |
|
110 |
-
* **Link Mask Generator**
|
111 |
-
*
|
112 |
-
*
|
113 |
-
*
|
|
|
114 |
* Link masks provide a modern replacement for the deprecated, nofollow-based "PageRank Sculpting" technique.
|
115 |
* Perfect for affiliate marketers and SEO-savvy bloggers.
|
116 |
|
@@ -120,7 +121,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
120 |
* **Permalink Tweaker**
|
121 |
* Lets you remove the permalink base for categories, tags, and/or custom taxonomies. For example, enable category base removal to convert `http://example.com/category/example` into `http://example.com/example`, and then pair that with a `/%category%/%postname%/` permalink to enable some serious SEO siloing action.
|
122 |
|
123 |
-
* **SEO Ultimate Widgets**
|
124 |
* Lets you output your Deeplink Juggernaut Footer Links in a widget
|
125 |
* The Siloed Categories widget makes it drag-and-drop-easy to construct siloed navigation on your site
|
126 |
|
@@ -258,6 +259,14 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
258 |
|
259 |
== Changelog ==
|
260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
= Version 7.0 (December 19, 2011) =
|
262 |
* Compatibility: SEO Ultimate now supports and requires WordPress 3.3
|
263 |
* Improvement: SEO Ultimate now uses the new help tabs system of WordPress 3.3
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.3
|
6 |
+
Stable tag: 7.1
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
14 |
+
* Version 7.1 adds new Link Mask Generator features
|
15 |
* Version 7.0 adds meta description pagination and WP 3.3 compatibility
|
16 |
* Version 6.9 adds the Settings Monitor module
|
17 |
* Version 6.8 adds rewrite method selection for Title Tag Rewriter
|
18 |
* Version 6.7 adds 3 more features to Deeplink Juggernaut
|
|
|
19 |
|
20 |
= Features =
|
21 |
|
97 |
* **Rich Snippet Creator**
|
98 |
* Easily add rich snippet code to your review posts.
|
99 |
* Attract more search traffic with eye-catching supplementary SERP data.
|
100 |
+
* Add code to old review posts automatically.
|
101 |
|
102 |
* **Sharing Facilitator**
|
103 |
* Adds buttons that make it easy for visitors to share your content on social networking sites (thus building links to your site).
|
107 |
* **Webmaster Verification Assistant**
|
108 |
* Enter verification codes in the provided fields to access search engine webmaster tools.
|
109 |
|
110 |
+
* **Link Mask Generator** -- UPDATED in Version 7.1
|
111 |
+
* Generate robots.txt-blocked "link masks" (e.g. `www.example.com/go/google/`) that pass-through to an external URL.
|
112 |
+
* Mask links on a per-link, per-post basis so you can exert fine-tuned control over your posts' linkflow.
|
113 |
+
* Create global link masks that apply across your entire site.
|
114 |
+
* Change `/go/` to a directory of your choosing.
|
115 |
* Link masks provide a modern replacement for the deprecated, nofollow-based "PageRank Sculpting" technique.
|
116 |
* Perfect for affiliate marketers and SEO-savvy bloggers.
|
117 |
|
121 |
* **Permalink Tweaker**
|
122 |
* Lets you remove the permalink base for categories, tags, and/or custom taxonomies. For example, enable category base removal to convert `http://example.com/category/example` into `http://example.com/example`, and then pair that with a `/%category%/%postname%/` permalink to enable some serious SEO siloing action.
|
123 |
|
124 |
+
* **SEO Ultimate Widgets**
|
125 |
* Lets you output your Deeplink Juggernaut Footer Links in a widget
|
126 |
* The Siloed Categories widget makes it drag-and-drop-easy to construct siloed navigation on your site
|
127 |
|
259 |
|
260 |
== Changelog ==
|
261 |
|
262 |
+
= Version 7.1 (December 21, 2011) =
|
263 |
+
* Feature: Link Mask Generator now lets you edit all your link masks from a new interface on its admin page
|
264 |
+
* Feature: You can now create link masks that apply across your entire site instead of just to one post
|
265 |
+
* Feature: You can now use link masks as autolink destinations in Deeplink Juggernaut
|
266 |
+
* Security Fix: Link Mask Generator now properly escapes link mask URLs
|
267 |
+
* Bugfix: The "SEO Settings" box's "Link Masks" section no longer lists a URL more than once if it's in the post more than once
|
268 |
+
* Change: Link mask creation now requires the manage_options user capability
|
269 |
+
|
270 |
= Version 7.0 (December 19, 2011) =
|
271 |
* Compatibility: SEO Ultimate now supports and requires WordPress 3.3
|
272 |
* Improvement: SEO Ultimate now uses the new help tabs system of WordPress 3.3
|
seo-ultimate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
-
Version: 7.
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 7.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.1.3');
|
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
-
define('SU_VERSION', '7.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/7.
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
+
Version: 7.1
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
+
* @version 7.1
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
+
define('SU_VERSION', '7.1');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.1');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
seo-ultimate.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEO Ultimate 7.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2011-12-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -19,473 +19,552 @@ msgid ""
|
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: modules/class.su-module.php:969
|
29 |
-
msgid "%1$s | %2$s %3$s by %4$s"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
-
msgid "
|
34 |
msgstr ""
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
|
|
|
|
38 |
msgstr ""
|
39 |
|
40 |
-
#:
|
41 |
-
msgid "
|
42 |
msgstr ""
|
43 |
|
44 |
-
#:
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#:
|
49 |
-
msgid "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#:
|
53 |
-
msgid "
|
|
|
|
|
54 |
msgstr ""
|
55 |
|
56 |
-
#:
|
57 |
-
msgid "
|
58 |
msgstr ""
|
59 |
|
60 |
-
#:
|
61 |
-
msgid "
|
62 |
msgstr ""
|
63 |
|
64 |
-
#:
|
65 |
-
msgid "
|
66 |
msgstr ""
|
67 |
|
68 |
-
#:
|
69 |
-
msgid "
|
70 |
msgstr ""
|
71 |
|
72 |
-
#:
|
73 |
-
msgid ""
|
74 |
-
"Are you sure you want to replace the textbox contents with this default "
|
75 |
-
"value?"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#:
|
79 |
-
msgid "
|
80 |
msgstr ""
|
81 |
|
82 |
-
#:
|
83 |
-
|
84 |
-
msgid "Blog Homepage"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#:
|
88 |
-
msgid "
|
89 |
msgstr ""
|
90 |
|
91 |
-
#:
|
92 |
-
msgid "
|
93 |
msgstr ""
|
94 |
|
95 |
-
#:
|
96 |
-
msgid "
|
97 |
msgstr ""
|
98 |
|
99 |
-
#:
|
100 |
-
msgid "
|
101 |
msgstr ""
|
102 |
|
103 |
-
#:
|
104 |
-
msgid "
|
105 |
msgstr ""
|
106 |
|
107 |
-
#:
|
108 |
-
msgid ""
|
109 |
-
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
110 |
-
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
111 |
-
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
112 |
-
"Ultimate."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#:
|
116 |
-
msgid "
|
117 |
msgstr ""
|
118 |
|
119 |
-
#:
|
120 |
-
msgid ""
|
121 |
-
"What should the import tool do if it tries to move over a post’s %s "
|
122 |
-
"data, but different data already exists in the corresponding SEO Ultimate "
|
123 |
-
"fields?"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#:
|
127 |
-
msgid "
|
128 |
msgstr ""
|
129 |
|
130 |
-
#:
|
131 |
-
msgid "
|
132 |
msgstr ""
|
133 |
|
134 |
-
#:
|
135 |
-
msgid "
|
136 |
msgstr ""
|
137 |
|
138 |
-
#:
|
139 |
-
msgid "
|
140 |
msgstr ""
|
141 |
|
142 |
-
#:
|
143 |
msgid ""
|
144 |
-
"
|
145 |
-
"
|
|
|
|
|
146 |
msgstr ""
|
147 |
|
148 |
-
#:
|
149 |
-
msgid "
|
150 |
msgstr ""
|
151 |
|
152 |
-
#:
|
153 |
-
msgid "
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: modules/class.su-
|
157 |
-
|
|
|
158 |
msgstr ""
|
159 |
|
160 |
-
#:
|
161 |
-
msgid ""
|
162 |
-
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
163 |
-
"target=\"_blank\">backup your database</a> before proceeding!"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: modules/class.su-
|
167 |
-
msgid "
|
168 |
msgstr ""
|
169 |
|
170 |
-
#:
|
171 |
-
msgid "
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: modules/class.su-
|
175 |
-
msgid "
|
176 |
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
-
msgid "
|
180 |
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
-
msgid "
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
msgid "
|
188 |
-
|
189 |
-
msgstr[0] ""
|
190 |
-
msgstr[1] ""
|
191 |
-
|
192 |
-
#: modules/class.su-importmodule.php:180
|
193 |
-
msgid "Skipped one post with disabled %2$s data."
|
194 |
-
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
195 |
-
msgstr[0] ""
|
196 |
-
msgstr[1] ""
|
197 |
-
|
198 |
-
#: modules/class.su-importmodule.php:186
|
199 |
-
msgid ""
|
200 |
-
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
201 |
-
"settings you chose."
|
202 |
-
msgid_plural ""
|
203 |
-
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
204 |
-
"settings you chose."
|
205 |
-
msgstr[0] ""
|
206 |
-
msgstr[1] ""
|
207 |
-
|
208 |
-
#: modules/class.su-importmodule.php:192
|
209 |
-
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
210 |
-
msgid_plural ""
|
211 |
-
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
212 |
-
msgstr[0] ""
|
213 |
-
msgstr[1] ""
|
214 |
|
215 |
-
#:
|
216 |
-
msgid "
|
217 |
msgstr ""
|
218 |
|
219 |
-
#:
|
220 |
-
msgid ""
|
221 |
-
"Reviews\n"
|
222 |
-
"Review"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#:
|
226 |
-
msgid "
|
227 |
msgstr ""
|
228 |
|
229 |
-
#:
|
230 |
-
msgid "
|
231 |
msgstr ""
|
232 |
|
233 |
-
#:
|
234 |
-
msgid "
|
235 |
msgstr ""
|
236 |
|
237 |
-
#:
|
238 |
-
msgid "
|
239 |
msgstr ""
|
240 |
|
241 |
-
#:
|
242 |
-
msgid "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#:
|
246 |
-
|
247 |
-
msgid "Review"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#:
|
251 |
-
msgid "
|
252 |
msgstr ""
|
253 |
|
254 |
-
#:
|
255 |
-
msgid "
|
256 |
msgstr ""
|
257 |
|
258 |
-
#:
|
259 |
-
msgid "
|
260 |
msgstr ""
|
261 |
|
262 |
-
#:
|
263 |
-
msgid "
|
264 |
msgstr ""
|
265 |
|
266 |
-
#:
|
267 |
-
|
268 |
-
msgid "None"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#:
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
-
#:
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#:
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
-
#:
|
284 |
-
msgid "
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: modules/rich-snippets/rich-snippets.php:236
|
288 |
-
msgid "1.5 stars"
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: modules/rich-snippets/rich-snippets.php:237
|
292 |
-
msgid "2 stars"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: modules/rich-snippets/rich-snippets.php:238
|
296 |
-
msgid "2.5 stars"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#:
|
300 |
-
msgid "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: modules/
|
304 |
-
msgid "
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: modules/
|
308 |
-
msgid "
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: modules/
|
312 |
-
msgid "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: modules/
|
316 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: modules/
|
320 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: modules/
|
|
|
|
|
|
|
|
|
324 |
#: modules/link-nofollow/link-nofollow.php:130
|
325 |
-
#: modules/
|
326 |
-
#: modules/
|
327 |
-
#: modules/slugs/slugs.php:76 modules/
|
328 |
-
#: modules/linkbox/linkbox.php:91 modules/more-links/more-links.php:104
|
329 |
-
#: modules/more-links/more-links.php:111 modules/files/files.php:144
|
330 |
-
#: modules/canonical/canonical.php:201 modules/user-code/user-code.php:70
|
331 |
-
#: modules/settings/settings.php:22
|
332 |
#: modules/sharing-buttons/sharing-buttons.php:72
|
333 |
msgid "Overview"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: modules/
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
"(known as <a href='http://www.google.com/support/webmasters/bin/topic.py?"
|
343 |
-
"hl=en&topic=219' target='_blank'>Rich Snippets</a>) in search results for "
|
344 |
-
"certain types of content. For example, if you’ve written a product "
|
345 |
-
"review, you can use Rich Snippet Creator to ask Google to display the star "
|
346 |
-
"rating that you gave the product in your review next to your review webpage "
|
347 |
-
"when it appears in search results.</li>\r\n"
|
348 |
-
"\t<li><strong>Why it helps:</strong> Rich Snippet Creator enhances the "
|
349 |
-
"search engine results for your content by asking Google to add extra, eye-"
|
350 |
-
"catching info that could help draw in more search engine visitors.</li>\r\n"
|
351 |
-
"\t<li><p><strong>How it works:</strong> When editing one of your posts or "
|
352 |
-
"pages, see if your content fits one of the available rich snippet types (for "
|
353 |
-
"example, a review). If so, select that type from the “Rich Snippet "
|
354 |
-
"Type” dropdown box. Once you select the applicable type, additional "
|
355 |
-
"options will appear that vary based on the type selected. For example, a "
|
356 |
-
"“Star Rating” field will appear if you select the “"
|
357 |
-
"Review” type.</p><p>Once you save the post/page, Rich Snippet Creator "
|
358 |
-
"will add the special code to it. You can remove this code at any time by "
|
359 |
-
"selecting “None” from the “Rich Snippet Type” "
|
360 |
-
"dropdown and resaving the post/page.</p></li>\r\n"
|
361 |
-
"</ul>\r\n"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: modules/
|
365 |
-
|
366 |
-
#: modules/meta/meta-descriptions.php:185 modules/404s/fofs.php:45
|
367 |
-
#: modules/linkbox/linkbox.php:102
|
368 |
-
msgid "Settings Help"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: modules/
|
372 |
msgid ""
|
373 |
-
"
|
374 |
-
"
|
375 |
-
"\t<li><strong>Data Format</strong> — This lets you select the “"
|
376 |
-
"language” that Rich Snippet Creator uses to communicate the rich "
|
377 |
-
"snippet data to Google. Google supports all three options. We recommend "
|
378 |
-
"“Microformats” because it’s compatible with the greatest "
|
379 |
-
"number of HTML/XHTML variants. This option will likely be of interest only "
|
380 |
-
"to advanced users.</li>\r\n"
|
381 |
-
"\t<li><strong>Categories/Tags That Indicate Reviews</strong> — If you "
|
382 |
-
"haven’t set the “Rich Snippet Type” setting for an old "
|
383 |
-
"post or page, then Rich Snippet Creator will automatically set its default "
|
384 |
-
"type to “Review” (instead of “None”) if it has a "
|
385 |
-
"category or tag whose name is in this list (the default list is “"
|
386 |
-
"Reviews” and “Review”). Put one category/tag name per line."
|
387 |
-
"</li>\r\n"
|
388 |
-
"</ul>\r\n"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: modules/
|
392 |
-
|
393 |
-
#: modules/meta/meta-descriptions.php:206 modules/slugs/slugs.php:107
|
394 |
-
#: modules/404s/fofs.php:74 modules/files/files.php:165
|
395 |
-
#: modules/user-code/user-code.php:84
|
396 |
-
msgid "Troubleshooting"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: modules/
|
400 |
-
msgid ""
|
401 |
-
"\r\n"
|
402 |
-
"<ul>\r\n"
|
403 |
-
"\t<li><p><strong>Why aren’t rich snippets showing up in Google search "
|
404 |
-
"results for my site?</strong><br />Enter the URL of your post/page into <a "
|
405 |
-
"href='http://www.google.com/webmasters/tools/richsnippets' "
|
406 |
-
"target='_blank'>Google’s testing tool</a> to make sure Google can find "
|
407 |
-
"the rich snippet code on your site. If no code is found, check and make sure "
|
408 |
-
"you've enabled rich snippets for that particular post/page.</p><p>Note that "
|
409 |
-
"having the code on a post/page doesn’t guarantee that Google will "
|
410 |
-
"actually use it to create a rich snippet. If Google is able to read your "
|
411 |
-
"code but isn’t using it to generate rich snippets, you can ask Google "
|
412 |
-
"to do so using <a href='http://www.google.com/support/webmasters/bin/request."
|
413 |
-
"py?contact_type=rich_snippets_feedback' target='_blank'>this form</a>.</p></"
|
414 |
-
"li>\r\n"
|
415 |
-
"</ul>\r\n"
|
416 |
msgstr ""
|
417 |
|
418 |
-
|
419 |
-
|
|
|
|
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: modules/
|
423 |
-
msgid "
|
|
|
|
|
|
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: modules/
|
427 |
-
msgid "
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: modules/
|
431 |
-
msgid "
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: modules/
|
435 |
-
msgid "
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: modules/
|
439 |
-
msgid "
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: modules/
|
443 |
-
|
444 |
-
msgid "Show 100 results per page"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: modules/
|
448 |
-
|
449 |
-
msgid "Use Google’s minimal mode"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: modules/
|
453 |
-
|
454 |
-
msgid "Submit"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: modules/
|
458 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: modules/
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: modules/
|
469 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: modules/
|
473 |
-
msgid "
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: modules/
|
477 |
-
msgid "
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: modules/
|
481 |
-
msgid "
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: modules/
|
485 |
-
msgid "
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
489 |
msgid "Taxonomy:"
|
490 |
msgstr ""
|
491 |
|
@@ -512,48 +591,154 @@ msgstr ""
|
|
512 |
msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: modules/
|
516 |
-
msgid "
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: modules/
|
520 |
-
msgid "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: modules/
|
524 |
-
msgid "
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: modules/
|
528 |
-
msgid "
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: modules/
|
532 |
-
msgid "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: modules/
|
536 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: modules/
|
540 |
-
msgid "
|
|
|
|
|
|
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: modules/
|
|
|
|
|
|
|
|
|
544 |
msgid ""
|
545 |
-
"
|
546 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: modules/
|
550 |
-
msgid "
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: modules/
|
554 |
-
msgid "
|
555 |
msgstr ""
|
556 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
#: modules/titles/titles.php:12
|
558 |
msgid "Title Tag Rewriter"
|
559 |
msgstr ""
|
@@ -563,6 +748,7 @@ msgid "Default Formats"
|
|
563 |
msgstr ""
|
564 |
|
565 |
#: modules/titles/titles.php:34 modules/404s/fofs-settings.php:17
|
|
|
566 |
msgid "Settings"
|
567 |
msgstr ""
|
568 |
|
@@ -887,14 +1073,6 @@ msgid ""
|
|
887 |
"</ul>\r\n"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: modules/titles/titles.php:442 modules/meta/meta-keywords.php:183
|
891 |
-
#: modules/meta/meta-descriptions.php:197 modules/modules/modules.php:174
|
892 |
-
#: modules/slugs/slugs.php:87 modules/more-links/more-links.php:105
|
893 |
-
#: modules/more-links/more-links.php:116 modules/files/files.php:155
|
894 |
-
#: modules/settings/settings.php:41
|
895 |
-
msgid "FAQ"
|
896 |
-
msgstr ""
|
897 |
-
|
898 |
#: modules/titles/titles.php:443
|
899 |
msgid ""
|
900 |
"\r\n"
|
@@ -918,6 +1096,14 @@ msgid ""
|
|
918 |
"</ul>\r\n"
|
919 |
msgstr ""
|
920 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
921 |
#: modules/titles/titles.php:454
|
922 |
msgid ""
|
923 |
"\r\n"
|
@@ -935,202 +1121,314 @@ msgid ""
|
|
935 |
"</ul>\r\n"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: modules/
|
939 |
-
msgid "
|
|
|
|
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: modules/
|
943 |
-
msgid "
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: modules/
|
947 |
-
msgid ""
|
948 |
-
"The Competition Researcher provides you with easy access to various search "
|
949 |
-
"engine tools which you can use to research multiple search queries or URLs."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: modules/
|
953 |
-
msgid "
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: modules/
|
957 |
-
msgid "
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: modules/
|
961 |
-
msgid "
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: modules/
|
965 |
-
msgid "
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: modules/
|
969 |
-
msgid "
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: modules/
|
973 |
-
msgid ""
|
974 |
-
"Find out how many “actual” pages are competing for each query"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: modules/
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: modules/
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: modules/
|
986 |
-
msgid "
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: modules/
|
990 |
msgid ""
|
991 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: modules/
|
995 |
-
msgid "
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: modules/
|
999 |
-
msgid "
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: modules/
|
1003 |
-
msgid "
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: modules/
|
1007 |
msgid ""
|
1008 |
-
"
|
1009 |
-
"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: modules/
|
1013 |
-
msgid "
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: modules/
|
1017 |
-
msgid "
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: modules/
|
1021 |
-
msgid "
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: modules/
|
1025 |
-
|
1026 |
-
msgid "Inbound Links"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: modules/
|
1030 |
-
msgid "
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: modules/
|
1034 |
-
|
1035 |
-
msgid "Outbound Links"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: modules/
|
1039 |
-
msgid "
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: modules/
|
1043 |
-
msgid "
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: modules/
|
1047 |
-
msgid "
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: modules/
|
1051 |
-
msgid "
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: modules/
|
1055 |
-
msgid "
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: modules/
|
1059 |
-
msgid "
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: modules/
|
1063 |
-
msgid "
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: modules/
|
1067 |
-
msgid "
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: modules/
|
1071 |
-
msgid "
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: modules/
|
1075 |
-
msgid "
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: modules/
|
1079 |
-
msgid "
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: modules/
|
1083 |
-
msgid "
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: modules/
|
1087 |
-
msgid "
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: modules/
|
1091 |
-
msgid "
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: modules/
|
1095 |
-
msgid "
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: modules/
|
1099 |
-
msgid "
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: modules/
|
1103 |
-
msgid "
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: modules/
|
1107 |
-
msgid "
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: modules/
|
1111 |
-
msgid "
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: modules/
|
1115 |
-
msgid "
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: modules/
|
1119 |
-
msgid "
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1123 |
msgid ""
|
1124 |
"\r\n"
|
1125 |
-
"<
|
1126 |
-
"
|
1127 |
-
"
|
1128 |
-
"
|
1129 |
-
"
|
1130 |
-
"
|
1131 |
-
"
|
1132 |
-
"
|
1133 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1134 |
msgstr ""
|
1135 |
|
1136 |
#: modules/meta/meta-keywords.php:12
|
@@ -1141,10 +1439,6 @@ msgstr ""
|
|
1141 |
msgid "Meta Keywords"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: modules/meta/meta-keywords.php:33 modules/noindex/noindex.php:43
|
1145 |
-
msgid "Default Values"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
#: modules/meta/meta-keywords.php:56
|
1149 |
msgid "The %d most commonly-used words"
|
1150 |
msgstr ""
|
@@ -1221,28 +1515,6 @@ msgid ""
|
|
1221 |
"</ul>\r\n"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: modules/meta/meta-keywords.php:197 modules/meta/meta-robots.php:104
|
1225 |
-
#: modules/meta/meta-descriptions.php:207
|
1226 |
-
msgid ""
|
1227 |
-
"\r\n"
|
1228 |
-
"<ul>\r\n"
|
1229 |
-
"\t<li>\r\n"
|
1230 |
-
"\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
|
1231 |
-
">First, try removing your theme’s built-in meta tags if it has them. "
|
1232 |
-
"Go to <a href='theme-editor.php' target='_blank'>Appearance ⇒ Editor</"
|
1233 |
-
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
1234 |
-
"meta></code> tags.</p>\r\n"
|
1235 |
-
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
1236 |
-
"generating meta tags.</p>\r\n"
|
1237 |
-
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
1238 |
-
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Insert "
|
1239 |
-
"comments around HTML code insertions” option. This will mark SEO "
|
1240 |
-
"Ultimate’s meta tags with comments, allowing you to see which meta "
|
1241 |
-
"tags are generated by SEO Ultimate and which aren’t.</p>\r\n"
|
1242 |
-
"\t</li>\r\n"
|
1243 |
-
"</ul>\r\n"
|
1244 |
-
msgstr ""
|
1245 |
-
|
1246 |
#: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:58
|
1247 |
msgid "Webmaster Verification Assistant"
|
1248 |
msgstr ""
|
@@ -1402,745 +1674,303 @@ msgid ""
|
|
1402 |
"\t\t\t<li><strong>Noindex</strong> — Checking this for an item will "
|
1403 |
"ask search engines to remove that item’s webpage from their indices. "
|
1404 |
"Use this to remove pages that you don’t want showing up in search "
|
1405 |
-
"results (such as a Privacy Policy page, for example).</li>\r\n"
|
1406 |
-
"\t\t\t<li><strong>Nofollow</strong> — Checking this for an item will "
|
1407 |
-
"tell search engines to ignore the links to other webpages that are on that "
|
1408 |
-
"item’s webpage. Note: this is page-level “meta nofollow,” "
|
1409 |
-
"not to be confused with link-level “rel nofollow.”</li>\r\n"
|
1410 |
-
"\t\t</ul>\r\n"
|
1411 |
-
"\t</li>\r\n"
|
1412 |
-
"</ul>\r\n"
|
1413 |
-
msgstr ""
|
1414 |
-
|
1415 |
-
#: modules/meta/meta-descriptions.php:12
|
1416 |
-
msgid "Meta Description Editor"
|
1417 |
-
msgstr ""
|
1418 |
-
|
1419 |
-
#: modules/meta/meta-descriptions.php:13
|
1420 |
-
msgid "Meta Descriptions"
|
1421 |
-
msgstr ""
|
1422 |
-
|
1423 |
-
#: modules/meta/meta-descriptions.php:31
|
1424 |
-
msgid "Meta Description"
|
1425 |
-
msgstr ""
|
1426 |
-
|
1427 |
-
#: modules/meta/meta-descriptions.php:50
|
1428 |
-
msgid "Post Description Format"
|
1429 |
-
msgstr ""
|
1430 |
-
|
1431 |
-
#: modules/meta/meta-descriptions.php:51
|
1432 |
-
msgid "Page Description Format"
|
1433 |
-
msgstr ""
|
1434 |
-
|
1435 |
-
#: modules/meta/meta-descriptions.php:52
|
1436 |
-
msgid "Category Description Format"
|
1437 |
-
msgstr ""
|
1438 |
-
|
1439 |
-
#: modules/meta/meta-descriptions.php:53
|
1440 |
-
msgid "Post Tag Description Format"
|
1441 |
-
msgstr ""
|
1442 |
-
|
1443 |
-
#: modules/meta/meta-descriptions.php:54
|
1444 |
-
msgid "Pagination Description Format"
|
1445 |
-
msgstr ""
|
1446 |
-
|
1447 |
-
#: modules/meta/meta-descriptions.php:62
|
1448 |
-
msgid "Blog Homepage Meta Description"
|
1449 |
-
msgstr ""
|
1450 |
-
|
1451 |
-
#: modules/meta/meta-descriptions.php:64
|
1452 |
-
msgid "Use this blog’s tagline as the default homepage description."
|
1453 |
-
msgstr ""
|
1454 |
-
|
1455 |
-
#: modules/meta/meta-descriptions.php:65
|
1456 |
-
msgid "Default Value"
|
1457 |
-
msgstr ""
|
1458 |
-
|
1459 |
-
#: modules/meta/meta-descriptions.php:155
|
1460 |
-
msgid "Meta Description:"
|
1461 |
-
msgstr ""
|
1462 |
-
|
1463 |
-
#: modules/meta/meta-descriptions.php:158
|
1464 |
-
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
1465 |
-
msgstr ""
|
1466 |
-
|
1467 |
-
#: modules/meta/meta-descriptions.php:166
|
1468 |
-
msgid ""
|
1469 |
-
"<strong>Description</strong> — The value of the meta description tag. "
|
1470 |
-
"The description will often appear underneath the title in search engine "
|
1471 |
-
"results. Writing an accurate, attention-grabbing description for every post "
|
1472 |
-
"is important to ensuring a good search results clickthrough rate."
|
1473 |
-
msgstr ""
|
1474 |
-
|
1475 |
-
#: modules/meta/meta-descriptions.php:175
|
1476 |
-
msgid ""
|
1477 |
-
"\r\n"
|
1478 |
-
"<ul>\r\n"
|
1479 |
-
"\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
|
1480 |
-
"customize the text that you want to appear under your webpages’ titles "
|
1481 |
-
"in search results.</li>\r\n"
|
1482 |
-
"\t<li><strong>Why it helps:</strong> Getting ranked isn’t enough; once "
|
1483 |
-
"you're ranked, you need visitors to click on your site in the results. "
|
1484 |
-
"That’s where meta descriptions can help. When you provide text that "
|
1485 |
-
"makes searchers want to visit your site, you can increase your SERP "
|
1486 |
-
"clickthrough rate and thus increase search traffic.</li>\r\n"
|
1487 |
-
"\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
|
1488 |
-
"homepage, posts, pages, etc. as desired, and then click Save Changes. You "
|
1489 |
-
"can also customize the meta data of an individual post or page by using the "
|
1490 |
-
"textboxes that Meta Editor adds to the post/page editors.</li>\r\n"
|
1491 |
-
"</ul>\r\n"
|
1492 |
-
msgstr ""
|
1493 |
-
|
1494 |
-
#: modules/meta/meta-descriptions.php:186
|
1495 |
-
msgid ""
|
1496 |
-
"\r\n"
|
1497 |
-
"<p>Here’s information on the various settings:</p>\r\n"
|
1498 |
-
"\r\n"
|
1499 |
-
"<ul>\r\n"
|
1500 |
-
"\t<li><strong>Blog Homepage Meta Description</strong> — When your blog "
|
1501 |
-
"homepage appears in search results, it’ll have a title and a "
|
1502 |
-
"description. When you insert content into the description field below, the "
|
1503 |
-
"Meta Editor will add code to your blog homepage (the <code><meta "
|
1504 |
-
"name="description" /></code> tag) that asks search engines to "
|
1505 |
-
"use what you’ve entered as the homepage’s search results "
|
1506 |
-
"description.</li>\r\n"
|
1507 |
-
"\t<li><strong>Use this blog’s tagline as the default homepage "
|
1508 |
-
"description.</strong> — If this box is checked and if the Blog "
|
1509 |
-
"Homepage Meta Description field is empty, Meta Editor will use your "
|
1510 |
-
"blog’s tagline as the meta description. You can edit the blog’s "
|
1511 |
-
"tagline under <a href='options-general.php'>Settings ⇒ General</a>.</li>"
|
1512 |
-
"\r\n"
|
1513 |
-
"</ul>\r\n"
|
1514 |
-
msgstr ""
|
1515 |
-
|
1516 |
-
#: modules/meta/meta-descriptions.php:198
|
1517 |
-
msgid ""
|
1518 |
-
"\r\n"
|
1519 |
-
"<ul>\r\n"
|
1520 |
-
"\t<li><strong>How do I edit the meta description of my homepage?</"
|
1521 |
-
"strong><br />If you are using a “blog homepage” (the default "
|
1522 |
-
"option of showing your blog posts on your homepage), just use the Blog "
|
1523 |
-
"Homepage field. If you have configured your <a href='options-reading."
|
1524 |
-
"php'>Settings ⇒ Reading</a> section to use a “frontpage” (i."
|
1525 |
-
"e. a Page as your homepage), just edit that Page’s meta description on "
|
1526 |
-
"the “Pages” tab.</li>\r\n"
|
1527 |
-
"</ul>\r\n"
|
1528 |
-
msgstr ""
|
1529 |
-
|
1530 |
-
#: modules/import-aiosp/import-aiosp.php:12
|
1531 |
-
msgid "Import from All in One SEO Pack"
|
1532 |
-
msgstr ""
|
1533 |
-
|
1534 |
-
#: modules/import-aiosp/import-aiosp.php:13
|
1535 |
-
msgid "AIOSP Import"
|
1536 |
-
msgstr ""
|
1537 |
-
|
1538 |
-
#: modules/import-aiosp/import-aiosp.php:15
|
1539 |
-
msgid "All in One SEO Pack"
|
1540 |
-
msgstr ""
|
1541 |
-
|
1542 |
-
#: modules/import-aiosp/import-aiosp.php:16
|
1543 |
-
msgid "AIOSP"
|
1544 |
-
msgstr ""
|
1545 |
-
|
1546 |
-
#: modules/import-aiosp/import-aiosp.php:17
|
1547 |
-
msgid "Import post data (custom title tags and meta tags)."
|
1548 |
-
msgstr ""
|
1549 |
-
|
1550 |
-
#: modules/import-aiosp/import-aiosp.php:21
|
1551 |
-
msgid ""
|
1552 |
-
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
1553 |
-
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
1554 |
-
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
1555 |
-
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
1556 |
-
"to be currently installed or activated for the import to take place."
|
1557 |
-
msgstr ""
|
1558 |
-
|
1559 |
-
#: modules/import-aiosp/import-aiosp.php:23
|
1560 |
-
msgid ""
|
1561 |
-
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
1562 |
-
"you use an older version of AIOSP, you should update to the latest version "
|
1563 |
-
"first and run AIOSP’s upgrade process."
|
1564 |
-
msgstr ""
|
1565 |
-
|
1566 |
-
#: modules/sds-blog/sds-blog.php:12
|
1567 |
-
msgid "Whitepapers"
|
1568 |
-
msgstr ""
|
1569 |
-
|
1570 |
-
#: modules/sds-blog/sds-blog.php:13
|
1571 |
-
msgid "SEO Design Solutions Whitepapers"
|
1572 |
-
msgstr ""
|
1573 |
-
|
1574 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.0) #-#-#-#-#
|
1575 |
-
#. Author of the plugin/theme
|
1576 |
-
#: modules/sds-blog/sds-blog.php:49
|
1577 |
-
msgid "SEO Design Solutions"
|
1578 |
-
msgstr ""
|
1579 |
-
|
1580 |
-
#: modules/sds-blog/sds-blog.php:50
|
1581 |
-
msgid ""
|
1582 |
-
"The search engine optimization articles below are loaded from the website of "
|
1583 |
-
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
1584 |
-
"an article’s title to read it."
|
1585 |
-
msgstr ""
|
1586 |
-
|
1587 |
-
#: modules/modules/modules.php:12
|
1588 |
-
msgid "Module Manager"
|
1589 |
-
msgstr ""
|
1590 |
-
|
1591 |
-
#: modules/modules/modules.php:13
|
1592 |
-
msgid "Modules"
|
1593 |
-
msgstr ""
|
1594 |
-
|
1595 |
-
#: modules/modules/modules.php:41
|
1596 |
-
msgid ""
|
1597 |
-
"SEO Ultimate’s features are located in groups called “modules."
|
1598 |
-
"” By default, most of these modules are listed in the “"
|
1599 |
-
"SEO” menu on the left. Whenever you’re working with a module, "
|
1600 |
-
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1601 |
-
"corner of your administration screen."
|
1602 |
-
msgstr ""
|
1603 |
-
|
1604 |
-
#: modules/modules/modules.php:43
|
1605 |
-
msgid ""
|
1606 |
-
"The Module Manager lets you disable or hide modules you don’t use. "
|
1607 |
-
"You can also silence modules from displaying bubble alerts on the menu."
|
1608 |
-
msgstr ""
|
1609 |
-
|
1610 |
-
#: modules/modules/modules.php:47
|
1611 |
-
msgid "Modules updated."
|
1612 |
-
msgstr ""
|
1613 |
-
|
1614 |
-
#: modules/modules/modules.php:52
|
1615 |
-
msgid "Status"
|
1616 |
-
msgstr ""
|
1617 |
-
|
1618 |
-
#: modules/modules/modules.php:53
|
1619 |
-
msgid "Module"
|
1620 |
-
msgstr ""
|
1621 |
-
|
1622 |
-
#: modules/modules/modules.php:66
|
1623 |
-
msgid "Enabled"
|
1624 |
-
msgstr ""
|
1625 |
-
|
1626 |
-
#: modules/modules/modules.php:67
|
1627 |
-
msgid "Silenced"
|
1628 |
-
msgstr ""
|
1629 |
-
|
1630 |
-
#: modules/modules/modules.php:68
|
1631 |
-
msgid "Hidden"
|
1632 |
-
msgstr ""
|
1633 |
-
|
1634 |
-
#: modules/modules/modules.php:69
|
1635 |
-
msgid "Disabled"
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: modules/modules/modules.php:161
|
1639 |
-
msgid "Options Help"
|
1640 |
-
msgstr ""
|
1641 |
-
|
1642 |
-
#: modules/modules/modules.php:162
|
1643 |
-
msgid ""
|
1644 |
-
"\r\n"
|
1645 |
-
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
1646 |
-
"each module; here are the options available:</p>\r\n"
|
1647 |
-
"<ul>\r\n"
|
1648 |
-
"\t<li><strong>Enabled</strong> — The default option. The module will "
|
1649 |
-
"be fully enabled and accessible.</li>\r\n"
|
1650 |
-
"\t<li><strong>Silenced</strong> — The module will be enabled and "
|
1651 |
-
"accessible, but it won't be allowed to display numeric bubble alerts on the "
|
1652 |
-
"menu.</li>\r\n"
|
1653 |
-
"\t<li><strong>Hidden</strong> — The module's functionality will be "
|
1654 |
-
"enabled, but the module won't be visible on the SEO menu. You will still be "
|
1655 |
-
"able to access the module's admin page by clicking on its title in the "
|
1656 |
-
"Module Manager table.</li>\r\n"
|
1657 |
-
"\t<li><strong>Disabled</strong> — The module will be completely "
|
1658 |
-
"disabled and inaccessible.</li>\r\n"
|
1659 |
-
"</ul>\r\n"
|
1660 |
-
msgstr ""
|
1661 |
-
|
1662 |
-
#: modules/modules/modules.php:175
|
1663 |
-
msgid ""
|
1664 |
-
"\r\n"
|
1665 |
-
"<ul>\r\n"
|
1666 |
-
"\t<li><strong>What are modules?</strong><br />SEO Ultimate’s features "
|
1667 |
-
"are divided into groups called “modules.” SEO Ultimate’s "
|
1668 |
-
"“Module Manager” lets you enable or disable each of these groups "
|
1669 |
-
"of features. This way, you can pick-and-choose which SEO Ultimate features "
|
1670 |
-
"you want.</li>\r\n"
|
1671 |
-
"\t<li><strong>Can I access a module again after I’ve hidden it?</"
|
1672 |
-
"strong><br />Yes. Just go to the Module Manager and click the module’s "
|
1673 |
-
"title to open its admin page. If you’d like to put the module back in "
|
1674 |
-
"the “SEO” menu, just re-enable the module in the Module Manager "
|
1675 |
-
"and click “Save Changes.”</li>\r\n"
|
1676 |
-
"\t<li><strong>How do I disable the number bubbles on the “SEO” "
|
1677 |
-
"menu?</strong><br />Just go to the Module Manager and select the “"
|
1678 |
-
"Silenced” option for any modules generating number bubbles. Then click "
|
1679 |
-
"“Save Changes.”</li>\r\n"
|
1680 |
-
"</ul>\r\n"
|
1681 |
-
msgstr ""
|
1682 |
-
|
1683 |
-
#: modules/slugs/slugs.php:12
|
1684 |
-
msgid "Slug Optimizer"
|
1685 |
-
msgstr ""
|
1686 |
-
|
1687 |
-
#: modules/slugs/slugs.php:16
|
1688 |
-
msgid "Words to Remove"
|
1689 |
-
msgstr ""
|
1690 |
-
|
1691 |
-
#: modules/slugs/slugs.php:77
|
1692 |
-
msgid ""
|
1693 |
-
"\r\n"
|
1694 |
-
"<ul>\r\n"
|
1695 |
-
"\t<li><strong>What it does:</strong> Slug Optimizer removes common words "
|
1696 |
-
"from the portion of a post’s or Page’s URL that is based on its "
|
1697 |
-
"title. (This portion is also known as the “slug.”)</li>\r\n"
|
1698 |
-
"\t<li><strong>Why it helps:</strong> Slug Optimizer increases keyword "
|
1699 |
-
"potency because there are fewer words in your URLs competing for relevance.</"
|
1700 |
-
"li>\r\n"
|
1701 |
-
"\t<li><strong>How to use it:</strong> Slug Optimizer works without any "
|
1702 |
-
"action required on your part. When you add a new post in your WordPress "
|
1703 |
-
"admin and specify a title for it, WordPress will generate a slug and the new "
|
1704 |
-
"post’s future URL will appear below the title box. While WordPress is "
|
1705 |
-
"generating the slug, Slug Optimizer takes common words out of it. You can "
|
1706 |
-
"use the textbox on Slug Optimizer’s admin page to specify which common "
|
1707 |
-
"words are removed.</li>\r\n"
|
1708 |
-
"</ul>\r\n"
|
1709 |
-
msgstr ""
|
1710 |
-
|
1711 |
-
#: modules/slugs/slugs.php:88
|
1712 |
-
msgid ""
|
1713 |
-
"\r\n"
|
1714 |
-
"<ul>\r\n"
|
1715 |
-
"\t<li><strong>What’s a slug?</strong><br />The slug of a post or page "
|
1716 |
-
"is the portion of its URL that is based on its title. When you edit a post "
|
1717 |
-
"or Page in WordPress, the slug is the yellow-highlighted portion of the "
|
1718 |
-
"Permalink beneath the Title textbox.</li>\r\n"
|
1719 |
-
"\t<li><strong>Does the Slug Optimizer change my existing URLs?</strong><br /"
|
1720 |
-
">No. Slug Optimizer will not relocate your content by changing existing "
|
1721 |
-
"URLs. Slug Optimizer only takes effect on new posts and pages.</li>\r\n"
|
1722 |
-
"\t<li>\r\n"
|
1723 |
-
"\t\t<p><strong>How do I see Slug Optimizer in action?</strong><br />Follow "
|
1724 |
-
"these steps:</p>\r\n"
|
1725 |
-
"\t\t<ol>\r\n"
|
1726 |
-
"\t\t\t<li>Create a new post/Page in WordPress.</li>\r\n"
|
1727 |
-
"\t\t\t<li>Type in a title containing some common and uncommon words.</li>\r\n"
|
1728 |
-
"\t\t\t<li>Click outside the Title box. WordPress will insert a URL labeled "
|
1729 |
-
"“Permalink” below the Title textbox. The Slug Optimizer will "
|
1730 |
-
"have removed the common words from the URL.</li>\r\n"
|
1731 |
-
"\t\t</ol>\r\n"
|
1732 |
-
"\t</li>\r\n"
|
1733 |
-
"\t<li><strong>What if I want to include a common word in my slug?</"
|
1734 |
-
"strong><br />When editing the post or page in question, just click the "
|
1735 |
-
"“Edit” button next to the permalink and change the slug as "
|
1736 |
-
"desired. The Slug Optimizer won’t remove words from a manually-edited "
|
1737 |
-
"slug.</li>\r\n"
|
1738 |
-
"\t<li><strong>If I edit the optimized slug but then change my mind, how do I "
|
1739 |
-
"revert back to the optimized slug?</strong><br />When editing the post or "
|
1740 |
-
"page in question, just click the “Edit” button next to the "
|
1741 |
-
"permalink; a “Save” button will appear in its place. Next erase "
|
1742 |
-
"the contents of the textbox, and then click the aforementioned “"
|
1743 |
-
"Save” button.</li>\r\n"
|
1744 |
-
"</ul>\r\n"
|
1745 |
-
msgstr ""
|
1746 |
-
|
1747 |
-
#: modules/slugs/slugs.php:108
|
1748 |
-
msgid ""
|
1749 |
-
"\r\n"
|
1750 |
-
"<ul>\r\n"
|
1751 |
-
"\t<li><strong>Why didn’t the Slug Optimizer remove common words from "
|
1752 |
-
"my slug?</strong><br />It’s possible that every word in your post "
|
1753 |
-
"title is in the list of words to remove. In this case, Slug Optimizer "
|
1754 |
-
"doesn’t remove the words, because if it did, you’d end up with a "
|
1755 |
-
"blank slug.</li>\r\n"
|
1756 |
-
"</ul>\r\n"
|
1757 |
-
msgstr ""
|
1758 |
-
|
1759 |
-
#: modules/404s/fofs.php:11
|
1760 |
-
msgid "404 Monitor"
|
1761 |
-
msgstr ""
|
1762 |
-
|
1763 |
-
#: modules/404s/fofs.php:20
|
1764 |
-
msgid ""
|
1765 |
-
"\r\n"
|
1766 |
-
"<ul>\r\n"
|
1767 |
-
"\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
|
1768 |
-
"existent URLs that generated 404 errors. 404 errors are when a search engine "
|
1769 |
-
"or visitor comes to a URL on your site but nothing exists at that URL.</li>"
|
1770 |
-
"\r\n"
|
1771 |
-
"\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
|
1772 |
-
"errors; then you can take steps to correct them to reduce link-juice loss "
|
1773 |
-
"from broken links.</li>\r\n"
|
1774 |
-
"\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
|
1775 |
-
"errors. (A numeric bubble will appear next to the “404 Monitor” "
|
1776 |
-
"item on the menu if there are any newly-logged URLs that you haven't seen "
|
1777 |
-
"yet. These new URLs will also be highlighted green in the table.) If a 404 "
|
1778 |
-
"error's referring URL is located on your site, try locating and fixing the "
|
1779 |
-
"broken URL. If moved content was previously located at the requested URL, "
|
1780 |
-
"try using a redirection plugin to point the old URL to the new one.</li>\r\n"
|
1781 |
-
"</ul>\r\n"
|
1782 |
-
"\r\n"
|
1783 |
-
"<p>If there are no 404 errors in the log, this is good and means there's no "
|
1784 |
-
"action required on your part.</p>\r\n"
|
1785 |
-
msgstr ""
|
1786 |
-
|
1787 |
-
#: modules/404s/fofs.php:32
|
1788 |
-
msgid "Log Help"
|
1789 |
-
msgstr ""
|
1790 |
-
|
1791 |
-
#: modules/404s/fofs.php:33
|
1792 |
-
msgid ""
|
1793 |
-
"\r\n"
|
1794 |
-
"<p>You can perform the following actions on each entry in the log:</p>\r\n"
|
1795 |
-
"\r\n"
|
1796 |
-
"<ul>\r\n"
|
1797 |
-
"\t<li>The “View” button will open the URL in a new window. This "
|
1798 |
-
"is useful for testing whether or not a redirect is working.</li>\r\n"
|
1799 |
-
"\t<li>The “Google Cache” button will open Google's archived "
|
1800 |
-
"version of the URL in a new window. This is useful for determining what "
|
1801 |
-
"content, if any, used to be located at that URL.</li>\r\n"
|
1802 |
-
"\t<li>Once you've taken care of a 404 error, you can click the “"
|
1803 |
-
"Remove” button to remove it from the list. The URL will reappear on "
|
1804 |
-
"the list if it triggers a 404 error in the future.</li>\r\n"
|
1805 |
-
"</ul>\r\n"
|
1806 |
-
msgstr ""
|
1807 |
-
|
1808 |
-
#: modules/404s/fofs.php:46
|
1809 |
-
msgid ""
|
1810 |
-
"\r\n"
|
1811 |
-
"<p>The following options are available on the Settings tab:</p>\r\n"
|
1812 |
-
"\r\n"
|
1813 |
-
"<ul>\r\n"
|
1814 |
-
"\t<li>\r\n"
|
1815 |
-
"\t\t<strong>Monitoring Settings</strong>\r\n"
|
1816 |
-
"\t\t<ul>\r\n"
|
1817 |
-
"\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> — If "
|
1818 |
-
"disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
|
1819 |
-
"any new ones.</li>\r\n"
|
1820 |
-
"\t\t</ul>\r\n"
|
1821 |
-
"\t</li>\r\n"
|
1822 |
-
"\t<li>\r\n"
|
1823 |
-
"\t\t<strong>Log Restrictions</strong>\r\n"
|
1824 |
-
"\t\t<ul>\r\n"
|
1825 |
-
"\t\t\t<li><strong>Only log these types of 404 errors</strong> — Check "
|
1826 |
-
"this option to log a 404 error <em>only</em> if it meets at least one of the "
|
1827 |
-
"criteria you specify. If you don't enable any criteria, no 404 errors will "
|
1828 |
-
"be logged.\r\n"
|
1829 |
-
"\t\t\t\t<ul>\r\n"
|
1830 |
-
"\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
|
1831 |
-
"— When logging restriction is enabled, this option will make an "
|
1832 |
-
"exception for 404 errors generated by one of the top search engines (Google, "
|
1833 |
-
"Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\r\n"
|
1834 |
-
"\t\t\t\t\t<li><strong>404s with referring URLs</strong> — When logging "
|
1835 |
-
"restriction is enabled, this option will make an exception for 404 errors "
|
1836 |
-
"generated by users who click a link on your site or another site first "
|
1837 |
-
"before ending up at a 404 page on your site.</li>\r\n"
|
1838 |
-
"\t\t\t\t</ul>\r\n"
|
1839 |
-
"\t\t\t</li>\r\n"
|
1840 |
"\t\t</ul>\r\n"
|
1841 |
"\t</li>\r\n"
|
1842 |
-
"\t<li><strong>Maximum Log Entries</strong> — Here you can set the "
|
1843 |
-
"maximum number of log entries that 404 Monitor will keep at a time. Setting "
|
1844 |
-
"this to a reasonable number will help keep database usage under control. If "
|
1845 |
-
"you change this setting, it will take effect the next time a 404 is logged.</"
|
1846 |
-
"li>\r\n"
|
1847 |
-
"\t<li><strong>URLs to Ignore</strong> — URLs entered here will be "
|
1848 |
-
"ignored whenever they generate 404 errors in the future. You can use "
|
1849 |
-
"asterisks (*) as wildcards.</li>\r\n"
|
1850 |
-
"</ul>\r\n"
|
1851 |
-
msgstr ""
|
1852 |
-
|
1853 |
-
#: modules/404s/fofs.php:75
|
1854 |
-
msgid ""
|
1855 |
-
"\r\n"
|
1856 |
-
"<p>404 Monitor doesn't appear to work? Take these notes into consideration:</"
|
1857 |
-
"p>\r\n"
|
1858 |
-
"\r\n"
|
1859 |
-
"<ul>\r\n"
|
1860 |
-
"\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
|
1861 |
-
"</li>\r\n"
|
1862 |
-
"\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
|
1863 |
-
"default permalinks enabled under <a href='options-permalink.php' "
|
1864 |
-
"target='_blank'>Settings ⇒ Permalinks</a>.</li>\r\n"
|
1865 |
-
"\t<li>Some parts of your website may not be under WordPress's control; the "
|
1866 |
-
"404 Monitor can't track 404 errors on non-WordPress website areas.</li>\r\n"
|
1867 |
"</ul>\r\n"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: modules/
|
1871 |
-
msgid "
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: modules/
|
1875 |
-
msgid "
|
|
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: modules/
|
1879 |
-
msgid "
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: modules/
|
1883 |
-
msgid "
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: modules/
|
1887 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: modules/
|
1891 |
-
msgid "
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: modules/
|
1895 |
-
msgid "
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: modules/
|
1899 |
-
msgid "
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: modules/
|
1903 |
-
msgid "
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: modules/
|
1907 |
-
msgid "
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: modules/
|
1911 |
-
msgid "
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: modules/
|
1915 |
-
msgid "
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: modules/
|
1919 |
-
msgid "
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: modules/
|
1923 |
-
msgid "
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: modules/
|
1927 |
-
msgid "
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: modules/
|
1931 |
-
msgid "
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: modules/
|
1935 |
-
msgid "
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: modules/
|
1939 |
-
msgid ""
|
1940 |
-
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
1941 |
-
"Settings tab."
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: modules/
|
1945 |
-
msgid "
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: modules/
|
1949 |
-
msgid "
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: modules/
|
1953 |
-
msgid "
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: modules/
|
1957 |
-
msgid "
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: modules/
|
1961 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: modules/
|
1965 |
-
msgid "
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: modules/
|
1969 |
-
msgid "
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: modules/
|
1973 |
-
msgid "
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: modules/
|
1977 |
-
msgid "
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: modules/
|
1981 |
-
msgid "
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: modules/
|
1985 |
-
msgid "
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: modules/
|
1989 |
-
msgid "
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: modules/
|
1993 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: modules/
|
1997 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: modules/
|
2001 |
-
msgid "
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: modules/
|
2005 |
-
msgid "
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: modules/
|
2009 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: modules/
|
2013 |
-
msgid "
|
|
|
|
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: modules/
|
2017 |
-
msgid "
|
2018 |
msgstr ""
|
2019 |
-
|
2020 |
-
#: modules/
|
2021 |
-
msgid "
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: modules/
|
2025 |
-
msgid "
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: modules/
|
2029 |
-
msgid ""
|
2030 |
-
"\r\n"
|
2031 |
-
"<ul>\r\n"
|
2032 |
-
"\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
|
2033 |
-
"your posts/pages.</li>\r\n"
|
2034 |
-
"\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
|
2035 |
-
"visitors can use to link to your site. This is a great way to encourage SEO-"
|
2036 |
-
"beneficial linking activity.</li>\r\n"
|
2037 |
-
"\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
|
2038 |
-
"Linkbox Inserter in various areas of your site. Customize the HTML if "
|
2039 |
-
"desired. Click “Save Changes” when finished.</li>\r\n"
|
2040 |
-
"</ul>\r\n"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: modules/
|
2044 |
-
msgid ""
|
2045 |
-
"\r\n"
|
2046 |
-
"<p>Here’s information on the various settings:</p>\r\n"
|
2047 |
-
"\r\n"
|
2048 |
-
"<ul>\r\n"
|
2049 |
-
"\t<li>\r\n"
|
2050 |
-
"\t\t<strong>Display linkboxes...</strong>\r\n"
|
2051 |
-
"\t\t<ul>\r\n"
|
2052 |
-
"\t\t\t<li><strong>At the end of posts</strong> — Adds the linkbox HTML "
|
2053 |
-
"to the end of all posts (whether they're displayed on the blog homepage, in "
|
2054 |
-
"archives, or by themselves).</li>\r\n"
|
2055 |
-
"\t\t\t<li><strong>At the end of pages</strong> — Adds the linkbox HTML "
|
2056 |
-
"to the end of all Pages.</li>\r\n"
|
2057 |
-
"\t\t\t<li><strong>When called by the su_linkbox hook</strong> — For "
|
2058 |
-
"more fine-tuned control over where linkboxes appear, enable this option and "
|
2059 |
-
"add <code><?php do_action('su_linkbox'); ?></code> to your theme. You "
|
2060 |
-
"can also add an ID parameter to display the linkbox of a particular post/"
|
2061 |
-
"page; for example: <code><?php do_action('su_linkbox', 123); ?></code>."
|
2062 |
-
"</li>\r\n"
|
2063 |
-
"\t\t</ul>\r\n"
|
2064 |
-
"\t</li>\r\n"
|
2065 |
-
"\t<li>\r\n"
|
2066 |
-
"\t\t<strong>HTML</strong> — The HTML that will be outputted to display "
|
2067 |
-
"the linkboxes. The HTML field supports these variables:\r\n"
|
2068 |
-
"\t\t<ul>\r\n"
|
2069 |
-
"\t\t\t<li>{id} — The ID of the current post/page, or the ID passed to "
|
2070 |
-
"the action hook call.</li>\r\n"
|
2071 |
-
"\t\t\t<li>{url} — The permalink URL of the post/page.</li>\r\n"
|
2072 |
-
"\t\t\t<li>{title} — The title of the post/page.</li>\r\n"
|
2073 |
-
"\t\t</ul>\r\n"
|
2074 |
-
"\t</li>\r\n"
|
2075 |
-
"</ul>\r\n"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: modules/
|
2079 |
-
msgid "
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: modules/
|
2083 |
-
msgid "
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: modules/
|
2087 |
-
msgid "
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: modules/
|
2091 |
msgid ""
|
2092 |
"\r\n"
|
|
|
|
|
2093 |
"<ul>\r\n"
|
2094 |
-
"\t<li><strong>
|
2095 |
-
"
|
2096 |
-
"
|
2097 |
-
"
|
2098 |
-
"\
|
2099 |
-
"
|
2100 |
-
"
|
2101 |
-
"
|
2102 |
-
"
|
2103 |
-
"
|
2104 |
-
"
|
2105 |
-
"\t<li><strong>How to use it:</strong> On this page you can set the anchor "
|
2106 |
-
"text you’d like to use by default. The <code>{post}</code> variable "
|
2107 |
-
"will be replaced with the post’s title. HTML and encoded entities are "
|
2108 |
-
"supported. If instead you decide that you’d like to use the default "
|
2109 |
-
"anchor text specified by your currently-active theme, just erase the "
|
2110 |
-
"contents of the textbox. The anchor text can be overridden on a per-post "
|
2111 |
-
"basis via the “More Link Text” box in the “SEO "
|
2112 |
-
"Settings” section of the WordPress post editor.</li>\r\n"
|
2113 |
"</ul>\r\n"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: modules/
|
2117 |
msgid ""
|
2118 |
"\r\n"
|
2119 |
"<ul>\r\n"
|
2120 |
-
"\t<li
|
2121 |
-
"
|
2122 |
-
"
|
2123 |
-
"
|
2124 |
-
"
|
2125 |
-
"
|
2126 |
-
"
|
2127 |
-
"
|
2128 |
-
"
|
2129 |
-
"
|
2130 |
-
"
|
2131 |
-
"
|
2132 |
-
"
|
2133 |
-
"\
|
2134 |
-
"strips these out.</li>\r\n"
|
2135 |
-
"\t\t\t<li>MLC’s functionality is much more prominent than "
|
2136 |
-
"WordPress’s unintuitive, barely-documented approach.</li>\r\n"
|
2137 |
-
"\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
|
2138 |
-
"HTML editor.</li>\r\n"
|
2139 |
-
"\t\t</ul>\r\n"
|
2140 |
-
"\t\t<p>If you’ve already specified custom anchors via WordPress’"
|
2141 |
-
"s method, SEO Ultimate will import those anchors automatically into the More "
|
2142 |
-
"Link Customizer.</p>\r\n"
|
2143 |
-
"\t</li>\r\n"
|
2144 |
"</ul>\r\n"
|
2145 |
msgstr ""
|
2146 |
|
@@ -2162,16 +1992,6 @@ msgstr ""
|
|
2162 |
msgid "Remove the URL bases of..."
|
2163 |
msgstr ""
|
2164 |
|
2165 |
-
#: modules/misc/misc.php:11
|
2166 |
-
msgid "Miscellaneous"
|
2167 |
-
msgstr ""
|
2168 |
-
|
2169 |
-
#: modules/misc/misc.php:14
|
2170 |
-
msgid ""
|
2171 |
-
"The Miscellaneous page contains modules that don’t have enough "
|
2172 |
-
"settings to warrant their own separate admin pages."
|
2173 |
-
msgstr ""
|
2174 |
-
|
2175 |
#: modules/files/files.php:14
|
2176 |
msgid "File Editor"
|
2177 |
msgstr ""
|
@@ -2279,115 +2099,61 @@ msgid ""
|
|
2279 |
"</ul>\r\n"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: modules/
|
2283 |
-
msgid "
|
2284 |
-
msgstr ""
|
2285 |
-
|
2286 |
-
#: modules/canonical/canonical.php:39
|
2287 |
-
msgid ""
|
2288 |
-
"Generate <code><link rel="canonical" /></code> meta tags."
|
2289 |
-
msgstr ""
|
2290 |
-
|
2291 |
-
#: modules/canonical/canonical.php:40
|
2292 |
-
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: modules/
|
2296 |
-
msgid "
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: modules/
|
2300 |
msgid ""
|
2301 |
"\r\n"
|
2302 |
-
"<
|
2303 |
-
"
|
2304 |
-
"\t\t<p><strong>What it does:</strong> Canonicalizer improves on two "
|
2305 |
-
"WordPress features to minimize possible exact-content duplication penalties. "
|
2306 |
-
"The <code><link rel="canonical" /></code> tags setting "
|
2307 |
-
"improves on the canonical tags feature of WordPress 2.9 and above by "
|
2308 |
-
"encompassing much more of your site than just your posts and Pages.</p>\r\n"
|
2309 |
-
"\t\t<p>The nonexistent pagination redirect feature fills a gap in "
|
2310 |
-
"WordPress's built-in canonicalization functionality: for example, if a URL "
|
2311 |
-
"request is made for page 6 of a category archive, and that category doesn't "
|
2312 |
-
"have a page 6, then by default, depending on the context, WordPress will "
|
2313 |
-
"display a blank page, or it will display the content of the closest page "
|
2314 |
-
"number available, without issuing a 404 error or a 301 redirect (thus "
|
2315 |
-
"creating two or more identical webpages). This duplicate-content situation "
|
2316 |
-
"can happen when you, for example, remove many posts from a category, thus "
|
2317 |
-
"reducing the amount of pagination needed in the category's archive. The "
|
2318 |
-
"Canonicalizer's feature fixes that behavior by issuing 301 redirects to page "
|
2319 |
-
"1 of the paginated section in question.</p>\r\n"
|
2320 |
-
"\t</li>\r\n"
|
2321 |
-
"\t<li><strong>Why it helps:</strong> These features will point Google to the "
|
2322 |
-
"correct URL for your homepage and each of your posts, Pages, categories, "
|
2323 |
-
"tags, date archives, and author archives. That way, if Google comes across "
|
2324 |
-
"an alternate URL by which one of those items can be accessed, it will be "
|
2325 |
-
"able to find the correct URL and won't penalize you for having two identical "
|
2326 |
-
"pages on your site.</li>\r\n"
|
2327 |
-
"\t<li><strong>How to use it:</strong> Just check all three checkboxes and "
|
2328 |
-
"click Save Changes. SEO Ultimate will do the rest.</li>\r\n"
|
2329 |
-
"</ul>\r\n"
|
2330 |
-
msgstr ""
|
2331 |
-
|
2332 |
-
#: modules/user-code/user-code.php:12
|
2333 |
-
msgid "Code Inserter"
|
2334 |
-
msgstr ""
|
2335 |
-
|
2336 |
-
#: modules/user-code/user-code.php:27
|
2337 |
-
msgid "Everywhere"
|
2338 |
-
msgstr ""
|
2339 |
-
|
2340 |
-
#: modules/user-code/user-code.php:34
|
2341 |
-
msgid "<head> Tag"
|
2342 |
-
msgstr ""
|
2343 |
-
|
2344 |
-
#: modules/user-code/user-code.php:35
|
2345 |
-
msgid "Before Item Content"
|
2346 |
-
msgstr ""
|
2347 |
-
|
2348 |
-
#: modules/user-code/user-code.php:36
|
2349 |
-
msgid "After Item Content"
|
2350 |
-
msgstr ""
|
2351 |
-
|
2352 |
-
#: modules/user-code/user-code.php:37
|
2353 |
-
msgid "Footer"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: modules/
|
2357 |
-
msgid "
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: modules/
|
2361 |
msgid ""
|
2362 |
"\r\n"
|
|
|
2363 |
"<ul>\r\n"
|
2364 |
-
"\t<li><strong>
|
2365 |
-
"
|
2366 |
-
"\t<li
|
2367 |
-
"
|
2368 |
-
"
|
2369 |
-
"
|
2370 |
-
"
|
2371 |
-
"
|
2372 |
-
"
|
2373 |
-
"
|
2374 |
-
"
|
2375 |
-
"\t</li>\r\n"
|
2376 |
-
"\t<li><strong>How to use it:</strong> Just paste the desired HTML code into "
|
2377 |
-
"the appropriate fields and then click Save Changes.</li>\r\n"
|
2378 |
"</ul>\r\n"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: modules/
|
2382 |
msgid ""
|
2383 |
"\r\n"
|
2384 |
"<ul>\r\n"
|
2385 |
-
"\t<li
|
2386 |
-
"
|
2387 |
-
"
|
2388 |
-
"
|
2389 |
-
"
|
2390 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2391 |
"</ul>\r\n"
|
2392 |
msgstr ""
|
2393 |
|
@@ -2559,94 +2325,10 @@ msgstr ""
|
|
2559 |
msgid "Restore Default Settings"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: modules/settings/global-settings.php:18 modules/settings/settings.php:29
|
2563 |
-
msgid "Global Settings"
|
2564 |
-
msgstr ""
|
2565 |
-
|
2566 |
-
#: modules/settings/global-settings.php:40
|
2567 |
-
msgid "Enable nofollow’d attribution link"
|
2568 |
-
msgstr ""
|
2569 |
-
|
2570 |
-
#: modules/settings/global-settings.php:41
|
2571 |
-
msgid "Enable attribution link CSS styling"
|
2572 |
-
msgstr ""
|
2573 |
-
|
2574 |
-
#: modules/settings/global-settings.php:42
|
2575 |
-
msgid "Notify me about unnecessary active plugins"
|
2576 |
-
msgstr ""
|
2577 |
-
|
2578 |
-
#: modules/settings/global-settings.php:43
|
2579 |
-
msgid "Insert comments around HTML code insertions"
|
2580 |
-
msgstr ""
|
2581 |
-
|
2582 |
-
#: modules/settings/settings.php:12
|
2583 |
-
msgid "Plugin Settings"
|
2584 |
-
msgstr ""
|
2585 |
-
|
2586 |
-
#: modules/settings/settings.php:13
|
2587 |
-
msgid "SEO Ultimate Plugin Settings"
|
2588 |
-
msgstr ""
|
2589 |
-
|
2590 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.0) #-#-#-#-#
|
2591 |
-
#. Plugin Name of the plugin/theme
|
2592 |
-
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:791
|
2593 |
-
msgid "SEO Ultimate"
|
2594 |
-
msgstr ""
|
2595 |
-
|
2596 |
-
#: modules/settings/settings.php:23
|
2597 |
-
msgid ""
|
2598 |
-
"\r\n"
|
2599 |
-
"<p>The Settings module lets you manage settings related to the SEO Ultimate "
|
2600 |
-
"plugin as a whole.</p>\r\n"
|
2601 |
-
msgstr ""
|
2602 |
-
|
2603 |
-
#: modules/settings/settings.php:30
|
2604 |
-
msgid ""
|
2605 |
-
"\r\n"
|
2606 |
-
"<p>Here’s information on some of the settings:</p>\r\n"
|
2607 |
-
"<ul>\r\n"
|
2608 |
-
"\t<li><strong>Enable nofollow’d attribution link</strong> — If "
|
2609 |
-
"enabled, the plugin will display an attribution link on your site.</li>\r\n"
|
2610 |
-
"\t<li><strong>Notify me about unnecessary active plugins</strong> — If "
|
2611 |
-
"enabled, SEO Ultimate will add notices to your “Plugins” "
|
2612 |
-
"administration page if you have any other plugins installed whose "
|
2613 |
-
"functionality SEO Ultimate replaces.</li>\r\n"
|
2614 |
-
"\t<li><strong>Insert comments around HTML code insertions</strong> — "
|
2615 |
-
"If enabled, SEO Ultimate will use HTML comments to identify all code it "
|
2616 |
-
"inserts into your <code><head></code> tag. This is useful if you’"
|
2617 |
-
"re trying to figure out whether or not SEO Ultimate is inserting a certain "
|
2618 |
-
"piece of header code.</li>\r\n"
|
2619 |
-
"</ul>\r\n"
|
2620 |
-
msgstr ""
|
2621 |
-
|
2622 |
-
#: modules/settings/settings.php:42
|
2623 |
-
msgid ""
|
2624 |
-
"\r\n"
|
2625 |
-
"<ul>\r\n"
|
2626 |
-
"\t<li>\r\n"
|
2627 |
-
"\t\t<p><strong>Why doesn’t the settings exporter include all my data "
|
2628 |
-
"in an export?</strong><br />The settings export/import system is designed to "
|
2629 |
-
"facilitate moving settings between sites. It is NOT a replacement for "
|
2630 |
-
"keeping your database backed up. The settings exporter doesn’t include "
|
2631 |
-
"data that is specific to your site. For example, logged 404 errors are not "
|
2632 |
-
"included because those 404 errors only apply to your site, not another site. "
|
2633 |
-
"Also, post/page titles/meta are not included because the site into which you "
|
2634 |
-
"import the file could have totally different posts/pages located under the "
|
2635 |
-
"same ID numbers.</p>\r\n"
|
2636 |
-
"\t\t<p>If you’re moving a site to a different server or restoring a "
|
2637 |
-
"crashed site, you should do so with database backup/restore.</p>\r\n"
|
2638 |
-
"\t</li>\r\n"
|
2639 |
-
"</ul>\r\n"
|
2640 |
-
msgstr ""
|
2641 |
-
|
2642 |
#: modules/settings/uninstall.php:17
|
2643 |
msgid "Uninstaller"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1278
|
2647 |
-
msgid "Uninstall"
|
2648 |
-
msgstr ""
|
2649 |
-
|
2650 |
#: modules/settings/uninstall.php:27
|
2651 |
msgid ""
|
2652 |
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
@@ -2683,6 +2365,22 @@ msgstr ""
|
|
2683 |
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
2684 |
msgstr ""
|
2685 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2686 |
#: modules/settings/install.php:18
|
2687 |
msgid "Upgrade/Downgrade/Reinstall"
|
2688 |
msgstr ""
|
@@ -2734,448 +2432,657 @@ msgid ""
|
|
2734 |
"the screen."
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#: modules/settings/install.php:74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2738 |
msgid ""
|
2739 |
-
"
|
2740 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: modules/
|
2744 |
-
msgid ""
|
2745 |
-
"There was an error retrieving the list of available versions. Please try "
|
2746 |
-
"again later."
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#: modules/
|
2750 |
-
msgid ""
|
2751 |
-
"To download and install a fresh copy of the SEO Ultimate version you are "
|
2752 |
-
"currently using, click the “Reinstall” button below."
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: modules/
|
2756 |
-
msgid "
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#: modules/
|
2760 |
-
msgid "
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#: modules/
|
2764 |
-
msgid ""
|
2765 |
-
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
2766 |
-
"blog."
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: modules/
|
2770 |
-
msgid "
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: modules/
|
2774 |
-
msgid "
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: modules/
|
2778 |
-
msgid "
|
|
|
|
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: modules/
|
2782 |
-
|
2783 |
-
msgid "Sharing Facilitator"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: modules/
|
2787 |
-
msgid "
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: modules/
|
2791 |
-
msgid "
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: modules/
|
2795 |
-
msgid "
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: modules/
|
2799 |
-
msgid "
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: modules/
|
2803 |
-
msgid "
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: modules/
|
2807 |
-
msgid ""
|
2808 |
-
"\r\n"
|
2809 |
-
"<ul>\r\n"
|
2810 |
-
"\t<li><strong>What it does:</strong> Sharing Facilitator adds buttons to "
|
2811 |
-
"your posts/pages that make it easy for visitors to share your content.</li>"
|
2812 |
-
"\r\n"
|
2813 |
-
"\t<li><strong>Why it helps:</strong> When visitors share your content on "
|
2814 |
-
"social networking sites, this can build links to your site. Sharing "
|
2815 |
-
"Facilitator makes it easy for visitors to do this.</li>\r\n"
|
2816 |
-
"\t<li><strong>How to use it:</strong> Pick which button type you’d "
|
2817 |
-
"like to use (ShareThis or AddThis) and click Save Changes. Try enabling each "
|
2818 |
-
"button on your site and see which one you like better.</li>\r\n"
|
2819 |
-
"</ul>\r\n"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: modules/
|
2823 |
-
msgid "
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: modules/
|
2827 |
-
msgid "
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: modules/
|
2831 |
-
msgid "
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: modules/
|
2835 |
-
msgid "
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: modules/
|
2839 |
-
msgid "
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: modules/
|
2843 |
-
msgid ""
|
2844 |
-
"WordPress is configured to block search engines. This will nullify your "
|
2845 |
-
"site’s SEO and should be resolved immediately."
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: modules/
|
2849 |
-
msgid "
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: modules/
|
2853 |
-
msgid ""
|
2854 |
-
"It is highly recommended that you use a non-default and non-numeric "
|
2855 |
-
"permalink structure."
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: modules/
|
2859 |
-
msgid "
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: modules/
|
2863 |
-
msgid ""
|
2864 |
-
"Pathinfo permalinks add a keyword-less “index.php” prefix. This "
|
2865 |
-
"is not ideal, but it may be beyond your control (since it’s likely "
|
2866 |
-
"caused by your site’s web hosting setup)."
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: modules/
|
2870 |
-
msgid "
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: modules/
|
2874 |
-
msgid ""
|
2875 |
-
"Including a version of the post’s title helps provide keyword-rich "
|
2876 |
-
"URLs."
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: modules/
|
2880 |
-
msgid "
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: modules/
|
2884 |
-
msgid ""
|
2885 |
-
"It is highly recommended that you include the %postname% variable in the "
|
2886 |
-
"permalink structure."
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: modules/
|
2890 |
-
msgid ""
|
2891 |
-
"Settings Monitor analyzes your blog’s settings and notifies you of any "
|
2892 |
-
"problems. If any issues are found, they will show up in red or yellow below."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: modules/
|
2896 |
-
msgid "
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: modules/
|
2900 |
-
msgid "
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: modules/
|
2904 |
-
|
2905 |
-
msgid "Noindex"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
-
#: modules/
|
2909 |
-
|
2910 |
-
#: modules/autolinks/footer-autolinks.php:214
|
2911 |
-
msgid "Nofollow"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: modules/
|
2915 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: modules/
|
2919 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: modules/
|
2923 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: modules/
|
2927 |
-
msgid "
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: modules/
|
2931 |
-
msgid "
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: modules/
|
2935 |
-
msgid ""
|
2936 |
-
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
2937 |
-
"block indexing of the entire site, regardless of which options are set below."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: modules/
|
2941 |
-
msgid "
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: modules/
|
2945 |
-
msgid "
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: modules/
|
2949 |
-
msgid "
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: modules/
|
2953 |
-
msgid "
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: modules/
|
2957 |
-
|
|
|
|
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: modules/
|
2961 |
-
msgid "
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: modules/
|
2965 |
-
msgid "
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#: modules/
|
2969 |
-
msgid "
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: modules/
|
2973 |
-
msgid "
|
2974 |
msgstr ""
|
2975 |
|
2976 |
-
#: modules/
|
2977 |
-
msgid "
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
#: modules/
|
2981 |
-
msgid "
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: modules/
|
2985 |
-
msgid "
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: modules/
|
2989 |
-
msgid "
|
|
|
|
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: modules/
|
2993 |
-
msgid "
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: modules/
|
2997 |
-
msgid "
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: modules/
|
3001 |
-
msgid ""
|
3002 |
-
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
3003 |
-
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
3004 |
-
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
3005 |
-
"webhost. In the meantime, you can return to an older version of Deeplink "
|
3006 |
-
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
3007 |
-
"a> to SEO Ultimate 5.9."
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: modules/
|
3011 |
-
msgid "
|
|
|
|
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: modules/
|
3015 |
-
msgid "
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: modules/
|
3019 |
-
|
3020 |
-
msgid ""
|
3021 |
-
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
3022 |
-
"a certain word or phrase in your post/page content to a URL you specify."
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: modules/
|
3026 |
-
|
3027 |
-
msgid "Edit Existing Links"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: modules/
|
3031 |
-
|
3032 |
-
msgid "Add a New Link"
|
3033 |
msgstr ""
|
3034 |
|
3035 |
-
#: modules/
|
3036 |
-
|
3037 |
-
msgid "Anchor Text"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: modules/
|
3041 |
-
#: modules/
|
3042 |
-
msgid "
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: modules/
|
3046 |
-
|
3047 |
-
msgid "Title Attribute"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: modules/
|
3051 |
-
msgid "
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: modules/
|
3055 |
-
|
3056 |
-
msgid "Options"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#: modules/
|
3060 |
-
|
3061 |
-
msgid "Delete"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#: modules/
|
3065 |
-
#: modules/
|
3066 |
-
msgid "
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: modules/
|
3070 |
-
msgid "
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: modules/
|
3074 |
-
msgid "
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: modules/
|
3078 |
-
msgid "
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: modules/
|
3082 |
-
msgid ""
|
3083 |
-
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
3084 |
-
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
3085 |
-
"other posts and link it to this post. For example, if the post you’re "
|
3086 |
-
"editing is about “blue widgets,” you could type “blue "
|
3087 |
-
"widgets” into the “Incoming Autolink Anchors” box and "
|
3088 |
-
"Deeplink Juggernaut will automatically build internal links to this post "
|
3089 |
-
"with that anchor text (assuming other posts contain that text)."
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: modules/
|
3093 |
-
msgid "
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: modules/
|
3097 |
-
msgid "
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: modules/
|
3101 |
-
msgid "
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: modules/
|
3105 |
-
msgid "
|
3106 |
msgstr ""
|
3107 |
|
3108 |
-
#: modules/
|
3109 |
-
msgid ""
|
3110 |
-
"Allow posts to link to the URL by which the visitor is accessing the post."
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: modules/
|
3114 |
-
msgid "
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: modules/
|
3118 |
-
msgid "
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: modules/
|
3122 |
-
msgid "
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: modules/
|
3126 |
-
msgid ""
|
3127 |
-
"Don’t link the same anchor text any more than %d times per post/page/"
|
3128 |
-
"etc."
|
3129 |
msgstr ""
|
3130 |
|
3131 |
-
#: modules/
|
3132 |
msgid ""
|
3133 |
-
"
|
3134 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: modules/
|
3138 |
msgid ""
|
3139 |
-
"
|
3140 |
-
"
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3145 |
msgstr ""
|
3146 |
|
3147 |
-
#: modules/
|
3148 |
msgid ""
|
3149 |
-
"
|
3150 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: modules/
|
3154 |
-
|
|
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: modules/
|
3158 |
-
msgid "
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: modules/
|
3162 |
-
msgid "
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: modules/
|
3166 |
-
msgid "
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: modules/
|
3170 |
-
msgid "
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: modules/
|
3174 |
-
msgid "
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#: modules/
|
3178 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3179 |
msgstr ""
|
3180 |
|
3181 |
#: modules/autolinks/footer-autolinks-settings.php:16
|
@@ -3202,208 +3109,183 @@ msgstr ""
|
|
3202 |
msgid "Link Separator"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#:
|
3206 |
-
msgid "
|
3207 |
-
msgstr ""
|
3208 |
-
|
3209 |
-
#: plugin/class.su-installer.php:12
|
3210 |
-
msgid "Removing the current version of the plugin…"
|
3211 |
-
msgstr ""
|
3212 |
-
|
3213 |
-
#: plugin/class.su-installer.php:13
|
3214 |
-
msgid "Could not remove the current version of the plugin."
|
3215 |
-
msgstr ""
|
3216 |
-
|
3217 |
-
#: plugin/class.su-installer.php:17
|
3218 |
-
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
3219 |
-
msgstr ""
|
3220 |
-
|
3221 |
-
#: plugin/class.su-installer.php:18
|
3222 |
-
msgid "Unpacking the downgrade…"
|
3223 |
-
msgstr ""
|
3224 |
-
|
3225 |
-
#: plugin/class.su-installer.php:19
|
3226 |
-
msgid "Installing the downgrade…"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#:
|
3230 |
-
|
|
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#:
|
3234 |
-
|
|
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#:
|
3238 |
-
msgid "
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#:
|
3242 |
-
|
|
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#:
|
3246 |
-
|
|
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#:
|
3250 |
-
|
|
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#:
|
3254 |
-
|
|
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#:
|
3258 |
-
msgid "
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#:
|
3262 |
-
msgid "
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#:
|
3266 |
-
|
|
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#:
|
3270 |
-
msgid "
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#:
|
3274 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#:
|
3278 |
-
msgid "
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#:
|
3282 |
-
msgid "
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#:
|
3286 |
-
msgid "
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#:
|
3290 |
-
msgid "
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#:
|
3294 |
msgid ""
|
3295 |
-
"
|
3296 |
-
"If you leave before saving, those changes will be lost."
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#:
|
3300 |
-
msgid "
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#:
|
3304 |
-
msgid "
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#:
|
3308 |
-
msgid "
|
3309 |
msgstr ""
|
3310 |
|
3311 |
-
#:
|
3312 |
msgid ""
|
3313 |
-
"
|
3314 |
-
"
|
3315 |
-
msgstr ""
|
3316 |
-
|
3317 |
-
#: plugin/class.seo-ultimate.php:1177
|
3318 |
-
msgid "new module"
|
3319 |
-
msgstr ""
|
3320 |
-
|
3321 |
-
#: plugin/class.seo-ultimate.php:1177
|
3322 |
-
msgid "new modules"
|
3323 |
-
msgstr ""
|
3324 |
-
|
3325 |
-
#: plugin/class.seo-ultimate.php:1178
|
3326 |
-
msgid "new feature"
|
3327 |
-
msgstr ""
|
3328 |
-
|
3329 |
-
#: plugin/class.seo-ultimate.php:1178
|
3330 |
-
msgid "new features"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#:
|
3334 |
-
msgid "
|
|
|
|
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#:
|
3338 |
-
msgid "
|
|
|
|
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#:
|
3342 |
-
msgid "
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#:
|
3346 |
-
msgid "
|
|
|
|
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#:
|
3350 |
-
msgid "
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#:
|
3354 |
-
msgid "
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#:
|
3358 |
-
msgid "
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#:
|
3362 |
-
msgid "
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#:
|
3366 |
-
msgid "
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#:
|
3370 |
-
msgid "
|
|
|
|
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#:
|
3374 |
-
msgid "
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#:
|
3378 |
-
msgid "
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#:
|
3382 |
-
msgid "
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#:
|
3386 |
-
msgid "
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#:
|
3390 |
msgid ""
|
3391 |
-
"<strong>
|
3392 |
-
"search
|
3393 |
-
"
|
3394 |
-
"
|
3395 |
-
|
3396 |
-
|
3397 |
-
|
3398 |
-
msgid "SEO Settings"
|
3399 |
-
msgstr ""
|
3400 |
-
|
3401 |
-
#: plugin/class.seo-ultimate.php:1670
|
3402 |
-
msgid "Home"
|
3403 |
-
msgstr ""
|
3404 |
-
|
3405 |
-
#: plugin/class.seo-ultimate.php:1739
|
3406 |
-
msgid "Author Archives"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
#: includes/jlwp/functions.php:65
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEO Ultimate 7.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2011-12-21 18:35:07+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.1) #-#-#-#-#
|
23 |
+
#. Plugin Name of the plugin/theme
|
24 |
+
#: plugin/class.seo-ultimate.php:791 modules/settings/settings.php:14
|
25 |
+
msgid "SEO Ultimate"
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: plugin/class.seo-ultimate.php:791
|
29 |
+
msgid "SEO"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: plugin/class.seo-ultimate.php:980
|
33 |
+
msgid ""
|
34 |
+
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
35 |
+
"If you leave before saving, those changes will be lost."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: plugin/class.seo-ultimate.php:1074
|
39 |
+
msgid "SEO Settings Help"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: plugin/class.seo-ultimate.php:1076
|
43 |
+
msgid "The SEO Settings box lets you customize these settings:"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: plugin/class.seo-ultimate.php:1078
|
47 |
+
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: plugin/class.seo-ultimate.php:1133
|
51 |
+
msgid ""
|
52 |
+
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
53 |
+
"1$s to avoid plugin conflicts."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: plugin/class.seo-ultimate.php:1177
|
57 |
+
msgid "new module"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: plugin/class.seo-ultimate.php:1177
|
61 |
+
msgid "new modules"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: plugin/class.seo-ultimate.php:1178
|
65 |
+
msgid "new feature"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: plugin/class.seo-ultimate.php:1178
|
69 |
+
msgid "new features"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: plugin/class.seo-ultimate.php:1179
|
73 |
+
msgid "bugfix"
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: plugin/class.seo-ultimate.php:1179
|
77 |
+
msgid "bugfixes"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: plugin/class.seo-ultimate.php:1180
|
81 |
+
msgid "improvement"
|
|
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: plugin/class.seo-ultimate.php:1180
|
85 |
+
msgid "improvements"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: plugin/class.seo-ultimate.php:1181
|
89 |
+
msgid "security fix"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: plugin/class.seo-ultimate.php:1181
|
93 |
+
msgid "security fixes"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: plugin/class.seo-ultimate.php:1182
|
97 |
+
msgid "new language pack"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: plugin/class.seo-ultimate.php:1182
|
101 |
+
msgid "new language packs"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: plugin/class.seo-ultimate.php:1183
|
105 |
+
msgid "language pack update"
|
|
|
|
|
|
|
|
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: plugin/class.seo-ultimate.php:1183
|
109 |
+
msgid "language pack updates"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: plugin/class.seo-ultimate.php:1214
|
113 |
+
msgid "%d %s"
|
|
|
|
|
|
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: plugin/class.seo-ultimate.php:1220
|
117 |
+
msgid "Upgrade now to get %s. %s."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: plugin/class.seo-ultimate.php:1222
|
121 |
+
msgid "View changelog"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: plugin/class.seo-ultimate.php:1278 modules/settings/uninstall.php:18
|
125 |
+
msgid "Uninstall"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: plugin/class.seo-ultimate.php:1298
|
129 |
+
msgid "Active Modules: "
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: plugin/class.seo-ultimate.php:1359
|
133 |
msgid ""
|
134 |
+
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
135 |
+
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
136 |
+
"target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
|
137 |
+
"to everyone."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: plugin/class.seo-ultimate.php:1481
|
141 |
+
msgid "SEO Settings"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: plugin/class.seo-ultimate.php:1670
|
145 |
+
msgid "Home"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: plugin/class.seo-ultimate.php:1671 modules/class.su-module.php:2546
|
149 |
+
#: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:34
|
150 |
+
msgid "Blog Homepage"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: plugin/class.seo-ultimate.php:1739
|
154 |
+
msgid "Author Archives"
|
|
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: plugin/class.seo-ultimate.php:1745 modules/class.su-module.php:2550
|
158 |
+
msgid "Author"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: plugin/class.seo-ultimate.php:1765
|
162 |
+
msgid "Link Masks"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: plugin/class.seo-ultimate.php:1772 modules/class.su-module.php:2558
|
166 |
+
msgid "Link Mask"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
|
170 |
+
msgid "%s and %s"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
|
174 |
+
msgid ", "
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
|
178 |
+
msgid "%s, and %s"
|
179 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
|
181 |
+
#: plugin/class.su-installer.php:9
|
182 |
+
msgid "Package not available."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: plugin/class.su-installer.php:12
|
186 |
+
msgid "Removing the current version of the plugin…"
|
|
|
|
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: plugin/class.su-installer.php:13
|
190 |
+
msgid "Could not remove the current version of the plugin."
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: plugin/class.su-installer.php:17
|
194 |
+
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: plugin/class.su-installer.php:18
|
198 |
+
msgid "Unpacking the downgrade…"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: plugin/class.su-installer.php:19
|
202 |
+
msgid "Installing the downgrade…"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: plugin/class.su-installer.php:20
|
206 |
+
msgid "Plugin downgrade failed."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: plugin/class.su-installer.php:21
|
210 |
+
msgid "Plugin downgraded successfully."
|
|
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: plugin/class.su-installer.php:24
|
214 |
+
msgid "Downloading from <span class=\"code\">%s</span>…"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: plugin/class.su-installer.php:25
|
218 |
+
msgid "Unpacking the reinstall…"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: plugin/class.su-installer.php:26
|
222 |
+
msgid "Reinstalling the current version…"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: plugin/class.su-installer.php:27
|
226 |
+
msgid "Plugin reinstallation failed."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: plugin/class.su-installer.php:28
|
230 |
+
msgid "Plugin reinstalled successfully."
|
|
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: plugin/class.su-installer.php:32
|
234 |
+
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: plugin/class.su-installer.php:33
|
238 |
+
msgid "Unpacking the upgrade…"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: plugin/class.su-installer.php:34
|
242 |
+
msgid "Installing the upgrade…"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: plugin/class.su-installer.php:35
|
246 |
+
msgid "Plugin upgrade failed."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: plugin/class.su-installer.php:36
|
250 |
+
msgid "Plugin upgraded successfully."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: modules/more-links/more-links.php:12 modules/more-links/more-links.php:102
|
254 |
+
msgid "More Link Customizer"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: modules/more-links/more-links.php:30
|
258 |
+
msgid "Default More Link Text"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: modules/more-links/more-links.php:51
|
262 |
+
msgid "More Link Text:"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: modules/more-links/more-links.php:75
|
266 |
+
msgid ""
|
267 |
+
"\r\n"
|
268 |
+
"<ul>\r\n"
|
269 |
+
"\t<li><strong>What it does:</strong> More Link Customizer lets you modify "
|
270 |
+
"the anchor text of your posts’ <a href='http://codex.wordpress.org/"
|
271 |
+
"Customizing_the_Read_More' target='_blank'>“more” links</a>.</li>"
|
272 |
+
"\r\n"
|
273 |
+
"\t<li><strong>Why it helps:</strong> On the typical WordPress setup, the "
|
274 |
+
"“more link” always has the same anchor text (e.g. “Read "
|
275 |
+
"more of this entry”). Since internal anchor text conveys web page "
|
276 |
+
"topicality to search engines, the “read more” phrase isn’t "
|
277 |
+
"a desirable anchor phrase. More Link Customizer lets you replace the "
|
278 |
+
"boilerplate text with a new anchor that, by default, integrates your post "
|
279 |
+
"titles (which will ideally be keyword-oriented).</li>\r\n"
|
280 |
+
"\t<li><strong>How to use it:</strong> On this page you can set the anchor "
|
281 |
+
"text you’d like to use by default. The <code>{post}</code> variable "
|
282 |
+
"will be replaced with the post’s title. HTML and encoded entities are "
|
283 |
+
"supported. If instead you decide that you’d like to use the default "
|
284 |
+
"anchor text specified by your currently-active theme, just erase the "
|
285 |
+
"contents of the textbox. The anchor text can be overridden on a per-post "
|
286 |
+
"basis via the “More Link Text” box in the “SEO "
|
287 |
+
"Settings” section of the WordPress post editor.</li>\r\n"
|
288 |
+
"</ul>\r\n"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: modules/more-links/more-links.php:83
|
292 |
+
msgid ""
|
293 |
+
"\r\n"
|
294 |
+
"<ul>\r\n"
|
295 |
+
"\t<li>\r\n"
|
296 |
+
"\t\t<p><strong>Why is the More Link Customizer an improvement over "
|
297 |
+
"WordPress’s built-in functionality?</strong><br />Although WordPress "
|
298 |
+
"does allow basic <a href='http://codex.wordpress.org/"
|
299 |
+
"Customizing_the_Read_More#Having_a_custom_text_for_each_post' "
|
300 |
+
"target='_blank'>custom “more” anchors</a>, the SEO Ultimate "
|
301 |
+
"approach has several benefits:</p>\r\n"
|
302 |
+
"\t\t<ul>\r\n"
|
303 |
+
"\t\t\t<li>More Link Customizer (MLC) lets you set a custom default anchor "
|
304 |
+
"text. WordPress, on the other hand, leaves this up to the currently-active "
|
305 |
+
"theme.</li>\r\n"
|
306 |
+
"\t\t\t<li>MLC lets you dynamically incorporate the post’s title into "
|
307 |
+
"the anchor text.</li>\r\n"
|
308 |
+
"\t\t\t<li>MLC lets you include HTML tags in your anchor, whereas WordPress "
|
309 |
+
"strips these out.</li>\r\n"
|
310 |
+
"\t\t\t<li>MLC’s functionality is much more prominent than "
|
311 |
+
"WordPress’s unintuitive, barely-documented approach.</li>\r\n"
|
312 |
+
"\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
|
313 |
+
"HTML editor.</li>\r\n"
|
314 |
+
"\t\t</ul>\r\n"
|
315 |
+
"\t\t<p>If you’ve already specified custom anchors via WordPress’"
|
316 |
+
"s method, SEO Ultimate will import those anchors automatically into the More "
|
317 |
+
"Link Customizer.</p>\r\n"
|
318 |
+
"\t</li>\r\n"
|
319 |
+
"</ul>\r\n"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: modules/more-links/more-links.php:104 modules/more-links/more-links.php:111
|
323 |
+
#: modules/linkbox/linkbox.php:91 modules/titles/titles.php:341
|
324 |
+
#: modules/meta/meta-descriptions.php:174 modules/meta/meta-keywords.php:166
|
325 |
+
#: modules/meta/webmaster-verify.php:58 modules/meta/meta-robots.php:53
|
326 |
+
#: modules/canonical/canonical.php:201
|
327 |
#: modules/link-nofollow/link-nofollow.php:130
|
328 |
+
#: modules/user-code/user-code.php:70 modules/files/files.php:144
|
329 |
+
#: modules/settings/settings.php:22 modules/404s/fofs.php:19
|
330 |
+
#: modules/slugs/slugs.php:76 modules/rich-snippets/rich-snippets.php:254
|
|
|
|
|
|
|
|
|
331 |
#: modules/sharing-buttons/sharing-buttons.php:72
|
332 |
msgid "Overview"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
|
336 |
+
#: modules/titles/titles.php:442 modules/meta/meta-descriptions.php:197
|
337 |
+
#: modules/meta/meta-keywords.php:183 modules/modules/modules.php:174
|
338 |
+
#: modules/files/files.php:155 modules/settings/settings.php:41
|
339 |
+
#: modules/slugs/slugs.php:87
|
340 |
+
msgid "FAQ"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: modules/misc/misc.php:11
|
344 |
+
msgid "Miscellaneous"
|
|
|
|
|
|
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: modules/misc/misc.php:14
|
348 |
msgid ""
|
349 |
+
"The Miscellaneous page contains modules that don’t have enough "
|
350 |
+
"settings to warrant their own separate admin pages."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: modules/sds-blog/sds-blog.php:12
|
354 |
+
msgid "Whitepapers"
|
|
|
|
|
|
|
|
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: modules/sds-blog/sds-blog.php:13
|
358 |
+
msgid "SEO Design Solutions Whitepapers"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
msgstr ""
|
360 |
|
361 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.1) #-#-#-#-#
|
362 |
+
#. Author of the plugin/theme
|
363 |
+
#: modules/sds-blog/sds-blog.php:49
|
364 |
+
msgid "SEO Design Solutions"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: modules/sds-blog/sds-blog.php:50
|
368 |
+
msgid ""
|
369 |
+
"The search engine optimization articles below are loaded from the website of "
|
370 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
371 |
+
"an article’s title to read it."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: modules/linkbox/linkbox.php:12
|
375 |
+
msgid "Linkbox Inserter"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: modules/linkbox/linkbox.php:18
|
379 |
+
msgid "Link to this post!"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: modules/linkbox/linkbox.php:45
|
383 |
+
msgid "At the end of posts"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: modules/linkbox/linkbox.php:46
|
387 |
+
msgid "At the end of pages"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: modules/linkbox/linkbox.php:47
|
391 |
+
msgid "When called by the su_linkbox hook"
|
|
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: modules/linkbox/linkbox.php:48
|
395 |
+
msgid "Display linkboxes..."
|
|
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: modules/linkbox/linkbox.php:49
|
399 |
+
msgid "Linkbox HTML"
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: modules/linkbox/linkbox.php:92
|
403 |
+
msgid ""
|
404 |
+
"\r\n"
|
405 |
+
"<ul>\r\n"
|
406 |
+
"\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
|
407 |
+
"your posts/pages.</li>\r\n"
|
408 |
+
"\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
|
409 |
+
"visitors can use to link to your site. This is a great way to encourage SEO-"
|
410 |
+
"beneficial linking activity.</li>\r\n"
|
411 |
+
"\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
|
412 |
+
"Linkbox Inserter in various areas of your site. Customize the HTML if "
|
413 |
+
"desired. Click “Save Changes” when finished.</li>\r\n"
|
414 |
+
"</ul>\r\n"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: modules/linkbox/linkbox.php:102 modules/titles/titles.php:415
|
418 |
+
#: modules/meta/meta-descriptions.php:185 modules/meta/meta-keywords.php:173
|
419 |
+
#: modules/meta/meta-robots.php:64 modules/404s/fofs.php:45
|
420 |
+
#: modules/rich-snippets/rich-snippets.php:265
|
421 |
+
msgid "Settings Help"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: modules/linkbox/linkbox.php:103
|
425 |
+
msgid ""
|
426 |
+
"\r\n"
|
427 |
+
"<p>Here’s information on the various settings:</p>\r\n"
|
428 |
+
"\r\n"
|
429 |
+
"<ul>\r\n"
|
430 |
+
"\t<li>\r\n"
|
431 |
+
"\t\t<strong>Display linkboxes...</strong>\r\n"
|
432 |
+
"\t\t<ul>\r\n"
|
433 |
+
"\t\t\t<li><strong>At the end of posts</strong> — Adds the linkbox HTML "
|
434 |
+
"to the end of all posts (whether they're displayed on the blog homepage, in "
|
435 |
+
"archives, or by themselves).</li>\r\n"
|
436 |
+
"\t\t\t<li><strong>At the end of pages</strong> — Adds the linkbox HTML "
|
437 |
+
"to the end of all Pages.</li>\r\n"
|
438 |
+
"\t\t\t<li><strong>When called by the su_linkbox hook</strong> — For "
|
439 |
+
"more fine-tuned control over where linkboxes appear, enable this option and "
|
440 |
+
"add <code><?php do_action('su_linkbox'); ?></code> to your theme. You "
|
441 |
+
"can also add an ID parameter to display the linkbox of a particular post/"
|
442 |
+
"page; for example: <code><?php do_action('su_linkbox', 123); ?></code>."
|
443 |
+
"</li>\r\n"
|
444 |
+
"\t\t</ul>\r\n"
|
445 |
+
"\t</li>\r\n"
|
446 |
+
"\t<li>\r\n"
|
447 |
+
"\t\t<strong>HTML</strong> — The HTML that will be outputted to display "
|
448 |
+
"the linkboxes. The HTML field supports these variables:\r\n"
|
449 |
+
"\t\t<ul>\r\n"
|
450 |
+
"\t\t\t<li>{id} — The ID of the current post/page, or the ID passed to "
|
451 |
+
"the action hook call.</li>\r\n"
|
452 |
+
"\t\t\t<li>{url} — The permalink URL of the post/page.</li>\r\n"
|
453 |
+
"\t\t\t<li>{title} — The title of the post/page.</li>\r\n"
|
454 |
+
"\t\t</ul>\r\n"
|
455 |
+
"\t</li>\r\n"
|
456 |
+
"</ul>\r\n"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: modules/wp-settings/wp-settings.php:14
|
460 |
+
msgid "Settings Monitor (Beta)"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: modules/wp-settings/wp-settings.php:15
|
464 |
+
msgid "Settings Monitor"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: modules/wp-settings/wp-settings.php:30
|
468 |
+
msgid "Blog is visible to search engines"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: modules/wp-settings/wp-settings.php:31
|
472 |
+
msgid "WordPress will allow search engines to visit your site."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: modules/wp-settings/wp-settings.php:33
|
476 |
+
msgid "Blog is hidden from search engines"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: modules/wp-settings/wp-settings.php:34
|
480 |
+
msgid ""
|
481 |
+
"WordPress is configured to block search engines. This will nullify your "
|
482 |
+
"site’s SEO and should be resolved immediately."
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: modules/wp-settings/wp-settings.php:38
|
486 |
+
msgid "Query-string permalinks enabled"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: modules/wp-settings/wp-settings.php:39
|
490 |
+
msgid ""
|
491 |
+
"It is highly recommended that you use a non-default and non-numeric "
|
492 |
+
"permalink structure."
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: modules/wp-settings/wp-settings.php:43
|
496 |
+
msgid "Pathinfo permalinks enabled"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: modules/wp-settings/wp-settings.php:44
|
500 |
+
msgid ""
|
501 |
+
"Pathinfo permalinks add a keyword-less “index.php” prefix. This "
|
502 |
+
"is not ideal, but it may be beyond your control (since it’s likely "
|
503 |
+
"caused by your site’s web hosting setup)."
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: modules/wp-settings/wp-settings.php:49
|
507 |
+
msgid "Permalinks include the post slug"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: modules/wp-settings/wp-settings.php:50
|
511 |
+
msgid ""
|
512 |
+
"Including a version of the post’s title helps provide keyword-rich "
|
513 |
+
"URLs."
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: modules/wp-settings/wp-settings.php:52
|
517 |
+
msgid "Permalinks do not include the post slug"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: modules/wp-settings/wp-settings.php:53
|
521 |
+
msgid ""
|
522 |
+
"It is highly recommended that you include the %postname% variable in the "
|
523 |
+
"permalink structure."
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: modules/wp-settings/wp-settings.php:63
|
527 |
+
msgid ""
|
528 |
+
"Settings Monitor analyzes your blog’s settings and notifies you of any "
|
529 |
+
"problems. If any issues are found, they will show up in red or yellow below."
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: modules/wp-settings/wp-settings.php:75
|
533 |
+
msgid "Go to setting »"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: modules/widgets/widgets.php:12
|
537 |
+
msgid "SEO Ultimate Widgets"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: modules/widgets/widgets.php:36
|
541 |
+
msgid ""
|
542 |
+
"On category archives, displays a list of child categories and/or posts in "
|
543 |
+
"the category. Displays a list of top-level categories everywhere else. "
|
544 |
+
"Powered by the SEO Ultimate plugin."
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: modules/widgets/widgets.php:37
|
548 |
+
msgid "Siloed Categories"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: modules/widgets/widgets.php:51
|
552 |
+
msgid "Tags"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: modules/widgets/widgets.php:130
|
556 |
+
msgid "Title:"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: modules/widgets/widgets.php:134
|
560 |
+
msgid "Show post counts"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: modules/widgets/widgets.php:136
|
564 |
+
msgid "Use term descriptions in title attributes"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: modules/widgets/widgets.php:138
|
568 |
msgid "Taxonomy:"
|
569 |
msgstr ""
|
570 |
|
591 |
msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
595 |
+
msgid "Import from All in One SEO Pack"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
599 |
+
msgid "AIOSP Import"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
603 |
+
msgid "All in One SEO Pack"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: modules/import-aiosp/import-aiosp.php:16
|
607 |
+
msgid "AIOSP"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: modules/import-aiosp/import-aiosp.php:17
|
611 |
+
msgid "Import post data (custom title tags and meta tags)."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: modules/import-aiosp/import-aiosp.php:21
|
615 |
+
msgid ""
|
616 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
617 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
618 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
619 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
620 |
+
"to be currently installed or activated for the import to take place."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: modules/import-aiosp/import-aiosp.php:23
|
624 |
+
msgid ""
|
625 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
626 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
627 |
+
"first and run AIOSP’s upgrade process."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: modules/class.su-importmodule.php:49
|
631 |
+
msgid "Import Post Fields"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: modules/class.su-importmodule.php:50
|
635 |
msgid ""
|
636 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
637 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
638 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
639 |
+
"Ultimate."
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: modules/class.su-importmodule.php:53
|
643 |
+
msgid "Conflict Resolution Mode"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: modules/class.su-importmodule.php:54
|
647 |
+
msgid ""
|
648 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
649 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
650 |
+
"fields?"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: modules/class.su-importmodule.php:56
|
654 |
+
msgid "Skip that post and leave all data as-is (default)."
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: modules/class.su-importmodule.php:57
|
658 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: modules/class.su-importmodule.php:58
|
662 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: modules/class.su-importmodule.php:61
|
666 |
+
msgid "Deletion Preference"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: modules/class.su-importmodule.php:62
|
670 |
+
msgid ""
|
671 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
672 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: modules/class.su-importmodule.php:64
|
676 |
+
msgid "Delete the %s data."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: modules/class.su-importmodule.php:65
|
680 |
+
msgid "Leave behind the duplicate %s data (default)."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: modules/class.su-importmodule.php:72
|
684 |
+
msgid "Import Now"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: modules/class.su-importmodule.php:75
|
688 |
+
msgid ""
|
689 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
690 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: modules/class.su-importmodule.php:84
|
694 |
+
msgid "Import complete."
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: modules/class.su-importmodule.php:90
|
698 |
+
msgid "Return to import page"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: modules/class.su-importmodule.php:93
|
702 |
+
msgid "Return to settings page"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: modules/class.su-importmodule.php:96
|
706 |
+
msgid "Return to SEO page"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: modules/class.su-importmodule.php:116
|
710 |
+
msgid "Deactivated %s."
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: modules/class.su-importmodule.php:174
|
714 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
715 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
716 |
+
msgstr[0] ""
|
717 |
+
msgstr[1] ""
|
718 |
+
|
719 |
+
#: modules/class.su-importmodule.php:180
|
720 |
+
msgid "Skipped one post with disabled %2$s data."
|
721 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
722 |
+
msgstr[0] ""
|
723 |
+
msgstr[1] ""
|
724 |
+
|
725 |
+
#: modules/class.su-importmodule.php:186
|
726 |
+
msgid ""
|
727 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
728 |
+
"settings you chose."
|
729 |
+
msgid_plural ""
|
730 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
731 |
+
"settings you chose."
|
732 |
+
msgstr[0] ""
|
733 |
+
msgstr[1] ""
|
734 |
+
|
735 |
+
#: modules/class.su-importmodule.php:192
|
736 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
737 |
+
msgid_plural ""
|
738 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
739 |
+
msgstr[0] ""
|
740 |
+
msgstr[1] ""
|
741 |
+
|
742 |
#: modules/titles/titles.php:12
|
743 |
msgid "Title Tag Rewriter"
|
744 |
msgstr ""
|
748 |
msgstr ""
|
749 |
|
750 |
#: modules/titles/titles.php:34 modules/404s/fofs-settings.php:17
|
751 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:31
|
752 |
msgid "Settings"
|
753 |
msgstr ""
|
754 |
|
1073 |
"</ul>\r\n"
|
1074 |
msgstr ""
|
1075 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1076 |
#: modules/titles/titles.php:443
|
1077 |
msgid ""
|
1078 |
"\r\n"
|
1096 |
"</ul>\r\n"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: modules/titles/titles.php:453 modules/meta/meta-descriptions.php:206
|
1100 |
+
#: modules/meta/meta-keywords.php:196 modules/meta/meta-robots.php:103
|
1101 |
+
#: modules/user-code/user-code.php:84 modules/files/files.php:165
|
1102 |
+
#: modules/404s/fofs.php:74 modules/slugs/slugs.php:107
|
1103 |
+
#: modules/rich-snippets/rich-snippets.php:275
|
1104 |
+
msgid "Troubleshooting"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
#: modules/titles/titles.php:454
|
1108 |
msgid ""
|
1109 |
"\r\n"
|
1121 |
"</ul>\r\n"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: modules/class.su-module.php:620
|
1125 |
+
msgid ""
|
1126 |
+
"All the modules on this page have been disabled. You can re-enable them "
|
1127 |
+
"using the <a href=\"%s\">Module Manager</a>."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: modules/class.su-module.php:969
|
1131 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: modules/class.su-module.php:1048
|
1135 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
|
|
|
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: modules/class.su-module.php:1134
|
1139 |
+
msgid "«"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: modules/class.su-module.php:1135
|
1143 |
+
msgid "»"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: modules/class.su-module.php:1142
|
1147 |
+
msgid "Displaying %s–%s of %s"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: modules/class.su-module.php:1155 modules/404s/fofs-log.php:113
|
1151 |
+
msgid "Actions"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: modules/class.su-module.php:1156
|
1155 |
+
msgid "ID"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: modules/class.su-module.php:1190
|
1159 |
+
msgid "View"
|
|
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: modules/class.su-module.php:1192
|
1163 |
+
msgid "Edit"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: modules/class.su-module.php:1356
|
1167 |
+
msgid "Settings updated."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: modules/class.su-module.php:1377
|
1171 |
+
msgid "Save Changes"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: modules/class.su-module.php:1907
|
1175 |
msgid ""
|
1176 |
+
"Are you sure you want to replace the textbox contents with this default "
|
1177 |
+
"value?"
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: modules/class.su-module.php:1926 modules/settings/settings-data.php:23
|
1181 |
+
msgid "Reset"
|
1182 |
+
msgstr ""
|
1183 |
+
|
1184 |
+
#: modules/class.su-module.php:2583
|
1185 |
+
msgid "Type a URL or start typing the name of the item you want to link to"
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: modules/class.su-module.php:2595
|
1189 |
+
msgid "Remove this location from this textbox"
|
1190 |
+
msgstr ""
|
1191 |
+
|
1192 |
+
#: modules/class.su-module.php:2595
|
1193 |
+
msgid "X"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: modules/noindex/noindex.php:12
|
1197 |
+
msgid "Noindex Manager"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
|
1201 |
+
#: modules/noindex/noindex.php:67
|
1202 |
+
msgid "Noindex"
|
1203 |
+
msgstr ""
|
1204 |
+
|
1205 |
+
#: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:33
|
1206 |
+
msgid "Default Values"
|
1207 |
+
msgstr ""
|
1208 |
+
|
1209 |
+
#: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
|
1210 |
+
#: modules/autolinks/footer-autolinks.php:210
|
1211 |
+
#: modules/autolinks/content-autolinks.php:394
|
1212 |
+
msgid "Nofollow"
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
|
1216 |
+
msgid "Use default"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: modules/noindex/noindex.php:63
|
1220 |
+
msgid "noindex"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: modules/noindex/noindex.php:64
|
1224 |
+
msgid "index"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: modules/noindex/noindex.php:74
|
1228 |
+
msgid "nofollow"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: modules/noindex/noindex.php:75
|
1232 |
+
msgid "follow"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: modules/noindex/noindex.php:89
|
1236 |
msgid ""
|
1237 |
+
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1238 |
+
"block indexing of the entire site, regardless of which options are set below."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: modules/noindex/noindex.php:92
|
1242 |
+
msgid "Prevent indexing of..."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: modules/noindex/noindex.php:93
|
1246 |
+
msgid "Administration back-end pages"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: modules/noindex/noindex.php:94
|
1250 |
+
msgid "Author archives"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: modules/noindex/noindex.php:95
|
1254 |
+
msgid "Blog search pages"
|
|
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: modules/noindex/noindex.php:96
|
1258 |
+
msgid "Category archives"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: modules/noindex/noindex.php:97
|
1262 |
+
msgid "Comment feeds"
|
|
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: modules/noindex/noindex.php:98
|
1266 |
+
msgid "Comment subpages"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: modules/noindex/noindex.php:99
|
1270 |
+
msgid "Date-based archives"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: modules/noindex/noindex.php:100
|
1274 |
+
msgid "Subpages of the homepage"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: modules/noindex/noindex.php:101
|
1278 |
+
msgid "Tag archives"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: modules/noindex/noindex.php:102
|
1282 |
+
msgid "User login/registration pages"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: modules/noindex/noindex.php:165
|
1286 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: modules/noindex/noindex.php:166
|
1290 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: modules/noindex/noindex.php:167
|
1294 |
+
msgid "Meta Robots Tag:"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: modules/meta/meta-descriptions.php:12
|
1298 |
+
msgid "Meta Description Editor"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: modules/meta/meta-descriptions.php:13
|
1302 |
+
msgid "Meta Descriptions"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: modules/meta/meta-descriptions.php:31
|
1306 |
+
msgid "Meta Description"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: modules/meta/meta-descriptions.php:50
|
1310 |
+
msgid "Post Description Format"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: modules/meta/meta-descriptions.php:51
|
1314 |
+
msgid "Page Description Format"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: modules/meta/meta-descriptions.php:52
|
1318 |
+
msgid "Category Description Format"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: modules/meta/meta-descriptions.php:53
|
1322 |
+
msgid "Post Tag Description Format"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: modules/meta/meta-descriptions.php:54
|
1326 |
+
msgid "Pagination Description Format"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: modules/meta/meta-descriptions.php:62
|
1330 |
+
msgid "Blog Homepage Meta Description"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: modules/meta/meta-descriptions.php:64
|
1334 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: modules/meta/meta-descriptions.php:65
|
1338 |
+
msgid "Default Value"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: modules/meta/meta-descriptions.php:155
|
1342 |
+
msgid "Meta Description:"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: modules/meta/meta-descriptions.php:158
|
1346 |
+
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: modules/meta/meta-descriptions.php:166
|
1350 |
+
msgid ""
|
1351 |
+
"<strong>Description</strong> — The value of the meta description tag. "
|
1352 |
+
"The description will often appear underneath the title in search engine "
|
1353 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
1354 |
+
"is important to ensuring a good search results clickthrough rate."
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: modules/meta/meta-descriptions.php:175
|
1358 |
msgid ""
|
1359 |
"\r\n"
|
1360 |
+
"<ul>\r\n"
|
1361 |
+
"\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
|
1362 |
+
"customize the text that you want to appear under your webpages’ titles "
|
1363 |
+
"in search results.</li>\r\n"
|
1364 |
+
"\t<li><strong>Why it helps:</strong> Getting ranked isn’t enough; once "
|
1365 |
+
"you're ranked, you need visitors to click on your site in the results. "
|
1366 |
+
"That’s where meta descriptions can help. When you provide text that "
|
1367 |
+
"makes searchers want to visit your site, you can increase your SERP "
|
1368 |
+
"clickthrough rate and thus increase search traffic.</li>\r\n"
|
1369 |
+
"\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
|
1370 |
+
"homepage, posts, pages, etc. as desired, and then click Save Changes. You "
|
1371 |
+
"can also customize the meta data of an individual post or page by using the "
|
1372 |
+
"textboxes that Meta Editor adds to the post/page editors.</li>\r\n"
|
1373 |
+
"</ul>\r\n"
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: modules/meta/meta-descriptions.php:186
|
1377 |
+
msgid ""
|
1378 |
+
"\r\n"
|
1379 |
+
"<p>Here’s information on the various settings:</p>\r\n"
|
1380 |
+
"\r\n"
|
1381 |
+
"<ul>\r\n"
|
1382 |
+
"\t<li><strong>Blog Homepage Meta Description</strong> — When your blog "
|
1383 |
+
"homepage appears in search results, it’ll have a title and a "
|
1384 |
+
"description. When you insert content into the description field below, the "
|
1385 |
+
"Meta Editor will add code to your blog homepage (the <code><meta "
|
1386 |
+
"name="description" /></code> tag) that asks search engines to "
|
1387 |
+
"use what you’ve entered as the homepage’s search results "
|
1388 |
+
"description.</li>\r\n"
|
1389 |
+
"\t<li><strong>Use this blog’s tagline as the default homepage "
|
1390 |
+
"description.</strong> — If this box is checked and if the Blog "
|
1391 |
+
"Homepage Meta Description field is empty, Meta Editor will use your "
|
1392 |
+
"blog’s tagline as the meta description. You can edit the blog’s "
|
1393 |
+
"tagline under <a href='options-general.php'>Settings ⇒ General</a>.</li>"
|
1394 |
+
"\r\n"
|
1395 |
+
"</ul>\r\n"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: modules/meta/meta-descriptions.php:198
|
1399 |
+
msgid ""
|
1400 |
+
"\r\n"
|
1401 |
+
"<ul>\r\n"
|
1402 |
+
"\t<li><strong>How do I edit the meta description of my homepage?</"
|
1403 |
+
"strong><br />If you are using a “blog homepage” (the default "
|
1404 |
+
"option of showing your blog posts on your homepage), just use the Blog "
|
1405 |
+
"Homepage field. If you have configured your <a href='options-reading."
|
1406 |
+
"php'>Settings ⇒ Reading</a> section to use a “frontpage” (i."
|
1407 |
+
"e. a Page as your homepage), just edit that Page’s meta description on "
|
1408 |
+
"the “Pages” tab.</li>\r\n"
|
1409 |
+
"</ul>\r\n"
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: modules/meta/meta-descriptions.php:207 modules/meta/meta-keywords.php:197
|
1413 |
+
#: modules/meta/meta-robots.php:104
|
1414 |
+
msgid ""
|
1415 |
+
"\r\n"
|
1416 |
+
"<ul>\r\n"
|
1417 |
+
"\t<li>\r\n"
|
1418 |
+
"\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
|
1419 |
+
">First, try removing your theme’s built-in meta tags if it has them. "
|
1420 |
+
"Go to <a href='theme-editor.php' target='_blank'>Appearance ⇒ Editor</"
|
1421 |
+
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
1422 |
+
"meta></code> tags.</p>\r\n"
|
1423 |
+
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
1424 |
+
"generating meta tags.</p>\r\n"
|
1425 |
+
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
1426 |
+
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Insert "
|
1427 |
+
"comments around HTML code insertions” option. This will mark SEO "
|
1428 |
+
"Ultimate’s meta tags with comments, allowing you to see which meta "
|
1429 |
+
"tags are generated by SEO Ultimate and which aren’t.</p>\r\n"
|
1430 |
+
"\t</li>\r\n"
|
1431 |
+
"</ul>\r\n"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
#: modules/meta/meta-keywords.php:12
|
1439 |
msgid "Meta Keywords"
|
1440 |
msgstr ""
|
1441 |
|
|
|
|
|
|
|
|
|
1442 |
#: modules/meta/meta-keywords.php:56
|
1443 |
msgid "The %d most commonly-used words"
|
1444 |
msgstr ""
|
1515 |
"</ul>\r\n"
|
1516 |
msgstr ""
|
1517 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1518 |
#: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:58
|
1519 |
msgid "Webmaster Verification Assistant"
|
1520 |
msgstr ""
|
1674 |
"\t\t\t<li><strong>Noindex</strong> — Checking this for an item will "
|
1675 |
"ask search engines to remove that item’s webpage from their indices. "
|
1676 |
"Use this to remove pages that you don’t want showing up in search "
|
1677 |
+
"results (such as a Privacy Policy page, for example).</li>\r\n"
|
1678 |
+
"\t\t\t<li><strong>Nofollow</strong> — Checking this for an item will "
|
1679 |
+
"tell search engines to ignore the links to other webpages that are on that "
|
1680 |
+
"item’s webpage. Note: this is page-level “meta nofollow,” "
|
1681 |
+
"not to be confused with link-level “rel nofollow.”</li>\r\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1682 |
"\t\t</ul>\r\n"
|
1683 |
"\t</li>\r\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1684 |
"</ul>\r\n"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: modules/canonical/canonical.php:12 modules/canonical/canonical.php:201
|
1688 |
+
msgid "Canonicalizer"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: modules/canonical/canonical.php:39
|
1692 |
+
msgid ""
|
1693 |
+
"Generate <code><link rel="canonical" /></code> meta tags."
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: modules/canonical/canonical.php:40
|
1697 |
+
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: modules/canonical/canonical.php:41
|
1701 |
+
msgid "Redirect requests for nonexistent pagination."
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: modules/canonical/canonical.php:202
|
1705 |
+
msgid ""
|
1706 |
+
"\r\n"
|
1707 |
+
"<ul>\r\n"
|
1708 |
+
"\t<li>\r\n"
|
1709 |
+
"\t\t<p><strong>What it does:</strong> Canonicalizer improves on two "
|
1710 |
+
"WordPress features to minimize possible exact-content duplication penalties. "
|
1711 |
+
"The <code><link rel="canonical" /></code> tags setting "
|
1712 |
+
"improves on the canonical tags feature of WordPress 2.9 and above by "
|
1713 |
+
"encompassing much more of your site than just your posts and Pages.</p>\r\n"
|
1714 |
+
"\t\t<p>The nonexistent pagination redirect feature fills a gap in "
|
1715 |
+
"WordPress's built-in canonicalization functionality: for example, if a URL "
|
1716 |
+
"request is made for page 6 of a category archive, and that category doesn't "
|
1717 |
+
"have a page 6, then by default, depending on the context, WordPress will "
|
1718 |
+
"display a blank page, or it will display the content of the closest page "
|
1719 |
+
"number available, without issuing a 404 error or a 301 redirect (thus "
|
1720 |
+
"creating two or more identical webpages). This duplicate-content situation "
|
1721 |
+
"can happen when you, for example, remove many posts from a category, thus "
|
1722 |
+
"reducing the amount of pagination needed in the category's archive. The "
|
1723 |
+
"Canonicalizer's feature fixes that behavior by issuing 301 redirects to page "
|
1724 |
+
"1 of the paginated section in question.</p>\r\n"
|
1725 |
+
"\t</li>\r\n"
|
1726 |
+
"\t<li><strong>Why it helps:</strong> These features will point Google to the "
|
1727 |
+
"correct URL for your homepage and each of your posts, Pages, categories, "
|
1728 |
+
"tags, date archives, and author archives. That way, if Google comes across "
|
1729 |
+
"an alternate URL by which one of those items can be accessed, it will be "
|
1730 |
+
"able to find the correct URL and won't penalize you for having two identical "
|
1731 |
+
"pages on your site.</li>\r\n"
|
1732 |
+
"\t<li><strong>How to use it:</strong> Just check all three checkboxes and "
|
1733 |
+
"click Save Changes. SEO Ultimate will do the rest.</li>\r\n"
|
1734 |
+
"</ul>\r\n"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
1738 |
+
msgid "Nofollow Manager"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: modules/link-nofollow/link-nofollow.php:53
|
1742 |
+
msgid "Add the nofollow attribute to..."
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: modules/link-nofollow/link-nofollow.php:55
|
1746 |
+
msgid "Adjacent post links"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: modules/link-nofollow/link-nofollow.php:56
|
1750 |
+
msgid "Category links (after posts)"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
1754 |
+
msgid "Category links (in lists)"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
1758 |
+
msgid "Comment anchor links"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
1762 |
+
msgid "Comment feed links"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
1766 |
+
msgid "Date-based archive links"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
1770 |
+
msgid "Pagination navigation links (all)"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
1774 |
+
msgid "Pagination navigation links (on blog home only)"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
1778 |
+
msgid "“Read more” links"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
1782 |
+
msgid "Registration link"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
1786 |
+
msgid "Login link"
|
|
|
|
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
1790 |
+
msgid "Tag links (after posts)"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
1794 |
+
msgid "Tag links (in lists and clouds)"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
1798 |
+
msgid "When displaying page lists, nofollow links to this page"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
1802 |
+
msgid "Nofollow:"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: modules/link-nofollow/link-nofollow.php:131
|
1806 |
+
msgid ""
|
1807 |
+
"\r\n"
|
1808 |
+
"<p>Nofollow Manager adds the <code>rel="nofollow"</code> attribute "
|
1809 |
+
"to types of links that you specify. The <code>rel="nofollow"</"
|
1810 |
+
"code> attribute prevents a link from passing PageRank.</p>\r\n"
|
1811 |
+
"<p>If you’re migrating to SEO Ultimate from another plugin, Nofollow "
|
1812 |
+
"Manager can help you maintain your existing settings (as part of an “"
|
1813 |
+
"if it ain’t broke don’t fix it” strategy). In other cases, "
|
1814 |
+
"however, we recommend not using the Nofollow Manager because in 2008 Google "
|
1815 |
+
"disabled the ability to use the <code>rel="nofollow"</code> "
|
1816 |
+
"attribute for PageRank sculpting.</p>\r\n"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: modules/user-code/user-code.php:12
|
1820 |
+
msgid "Code Inserter"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: modules/user-code/user-code.php:27
|
1824 |
+
msgid "Everywhere"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: modules/user-code/user-code.php:34
|
1828 |
+
msgid "<head> Tag"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: modules/user-code/user-code.php:35
|
1832 |
+
msgid "Before Item Content"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: modules/user-code/user-code.php:36
|
1836 |
+
msgid "After Item Content"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: modules/user-code/user-code.php:37
|
1840 |
+
msgid "Footer"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: modules/user-code/user-code.php:51
|
1844 |
+
msgid "Code Inserter module"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: modules/user-code/user-code.php:71
|
1848 |
+
msgid ""
|
1849 |
+
"\r\n"
|
1850 |
+
"<ul>\r\n"
|
1851 |
+
"\t<li><strong>What it does:</strong> Code Inserter can add custom HTML code "
|
1852 |
+
"to various parts of your site.</li>\r\n"
|
1853 |
+
"\t<li>\r\n"
|
1854 |
+
"\t\t<p><strong>Why it helps:</strong> Code Inserter is useful for inserting "
|
1855 |
+
"third-party code that can improve the SEO or user experience of your site. "
|
1856 |
+
"For example, you can use Code Inserter to add Google Analytics code to your "
|
1857 |
+
"footer, Feedburner FeedFlares or social media widgets after your posts, or "
|
1858 |
+
"Google AdSense section targeting code before/after your content.</p>\r\n"
|
1859 |
+
"\t\t<p>Using Code Inserter is easier than editing your theme manually "
|
1860 |
+
"because your custom code is stored in one convenient location and will be "
|
1861 |
+
"added to your site even if you change your site’s theme.</p>\r\n"
|
1862 |
+
"\t</li>\r\n"
|
1863 |
+
"\t<li><strong>How to use it:</strong> Just paste the desired HTML code into "
|
1864 |
+
"the appropriate fields and then click Save Changes.</li>\r\n"
|
1865 |
+
"</ul>\r\n"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: modules/user-code/user-code.php:85
|
1869 |
+
msgid ""
|
1870 |
+
"\r\n"
|
1871 |
+
"<ul>\r\n"
|
1872 |
+
"\t<li><strong>Why doesn't my code appear on my site?</strong><br />It’"
|
1873 |
+
"s possible that your theme doesn't have the proper “hooks,” "
|
1874 |
+
"which are pieces of code that let WordPress plugins insert custom HTML into "
|
1875 |
+
"your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
|
1876 |
+
"target='_blank'>Click here</a> for information on how to check your theme "
|
1877 |
+
"and add the hooks if needed.</li>\r\n"
|
1878 |
+
"</ul>\r\n"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: modules/modules/modules.php:12
|
1882 |
+
msgid "Module Manager"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: modules/modules/modules.php:13
|
1886 |
+
msgid "Modules"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: modules/modules/modules.php:41
|
1890 |
+
msgid ""
|
1891 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
1892 |
+
"” By default, most of these modules are listed in the “"
|
1893 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
1894 |
+
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1895 |
+
"corner of your administration screen."
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: modules/modules/modules.php:43
|
1899 |
+
msgid ""
|
1900 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
1901 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: modules/modules/modules.php:47
|
1905 |
+
msgid "Modules updated."
|
1906 |
msgstr ""
|
1907 |
+
|
1908 |
+
#: modules/modules/modules.php:52
|
1909 |
+
msgid "Status"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: modules/modules/modules.php:53
|
1913 |
+
msgid "Module"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: modules/modules/modules.php:66
|
1917 |
+
msgid "Enabled"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: modules/modules/modules.php:67
|
1921 |
+
msgid "Silenced"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: modules/modules/modules.php:68
|
1925 |
+
msgid "Hidden"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: modules/modules/modules.php:69
|
1929 |
+
msgid "Disabled"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: modules/modules/modules.php:161
|
1933 |
+
msgid "Options Help"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: modules/modules/modules.php:162
|
1937 |
msgid ""
|
1938 |
"\r\n"
|
1939 |
+
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
1940 |
+
"each module; here are the options available:</p>\r\n"
|
1941 |
"<ul>\r\n"
|
1942 |
+
"\t<li><strong>Enabled</strong> — The default option. The module will "
|
1943 |
+
"be fully enabled and accessible.</li>\r\n"
|
1944 |
+
"\t<li><strong>Silenced</strong> — The module will be enabled and "
|
1945 |
+
"accessible, but it won't be allowed to display numeric bubble alerts on the "
|
1946 |
+
"menu.</li>\r\n"
|
1947 |
+
"\t<li><strong>Hidden</strong> — The module's functionality will be "
|
1948 |
+
"enabled, but the module won't be visible on the SEO menu. You will still be "
|
1949 |
+
"able to access the module's admin page by clicking on its title in the "
|
1950 |
+
"Module Manager table.</li>\r\n"
|
1951 |
+
"\t<li><strong>Disabled</strong> — The module will be completely "
|
1952 |
+
"disabled and inaccessible.</li>\r\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1953 |
"</ul>\r\n"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: modules/modules/modules.php:175
|
1957 |
msgid ""
|
1958 |
"\r\n"
|
1959 |
"<ul>\r\n"
|
1960 |
+
"\t<li><strong>What are modules?</strong><br />SEO Ultimate’s features "
|
1961 |
+
"are divided into groups called “modules.” SEO Ultimate’s "
|
1962 |
+
"“Module Manager” lets you enable or disable each of these groups "
|
1963 |
+
"of features. This way, you can pick-and-choose which SEO Ultimate features "
|
1964 |
+
"you want.</li>\r\n"
|
1965 |
+
"\t<li><strong>Can I access a module again after I’ve hidden it?</"
|
1966 |
+
"strong><br />Yes. Just go to the Module Manager and click the module’s "
|
1967 |
+
"title to open its admin page. If you’d like to put the module back in "
|
1968 |
+
"the “SEO” menu, just re-enable the module in the Module Manager "
|
1969 |
+
"and click “Save Changes.”</li>\r\n"
|
1970 |
+
"\t<li><strong>How do I disable the number bubbles on the “SEO” "
|
1971 |
+
"menu?</strong><br />Just go to the Module Manager and select the “"
|
1972 |
+
"Silenced” option for any modules generating number bubbles. Then click "
|
1973 |
+
"“Save Changes.”</li>\r\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1974 |
"</ul>\r\n"
|
1975 |
msgstr ""
|
1976 |
|
1992 |
msgid "Remove the URL bases of..."
|
1993 |
msgstr ""
|
1994 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1995 |
#: modules/files/files.php:14
|
1996 |
msgid "File Editor"
|
1997 |
msgstr ""
|
2099 |
"</ul>\r\n"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: modules/settings/settings.php:12
|
2103 |
+
msgid "Plugin Settings"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: modules/settings/settings.php:13
|
2107 |
+
msgid "SEO Ultimate Plugin Settings"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: modules/settings/settings.php:23
|
2111 |
msgid ""
|
2112 |
"\r\n"
|
2113 |
+
"<p>The Settings module lets you manage settings related to the SEO Ultimate "
|
2114 |
+
"plugin as a whole.</p>\r\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: modules/settings/settings.php:29 modules/settings/global-settings.php:18
|
2118 |
+
msgid "Global Settings"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: modules/settings/settings.php:30
|
2122 |
msgid ""
|
2123 |
"\r\n"
|
2124 |
+
"<p>Here’s information on some of the settings:</p>\r\n"
|
2125 |
"<ul>\r\n"
|
2126 |
+
"\t<li><strong>Enable nofollow’d attribution link</strong> — If "
|
2127 |
+
"enabled, the plugin will display an attribution link on your site.</li>\r\n"
|
2128 |
+
"\t<li><strong>Notify me about unnecessary active plugins</strong> — If "
|
2129 |
+
"enabled, SEO Ultimate will add notices to your “Plugins” "
|
2130 |
+
"administration page if you have any other plugins installed whose "
|
2131 |
+
"functionality SEO Ultimate replaces.</li>\r\n"
|
2132 |
+
"\t<li><strong>Insert comments around HTML code insertions</strong> — "
|
2133 |
+
"If enabled, SEO Ultimate will use HTML comments to identify all code it "
|
2134 |
+
"inserts into your <code><head></code> tag. This is useful if you’"
|
2135 |
+
"re trying to figure out whether or not SEO Ultimate is inserting a certain "
|
2136 |
+
"piece of header code.</li>\r\n"
|
|
|
|
|
|
|
2137 |
"</ul>\r\n"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: modules/settings/settings.php:42
|
2141 |
msgid ""
|
2142 |
"\r\n"
|
2143 |
"<ul>\r\n"
|
2144 |
+
"\t<li>\r\n"
|
2145 |
+
"\t\t<p><strong>Why doesn’t the settings exporter include all my data "
|
2146 |
+
"in an export?</strong><br />The settings export/import system is designed to "
|
2147 |
+
"facilitate moving settings between sites. It is NOT a replacement for "
|
2148 |
+
"keeping your database backed up. The settings exporter doesn’t include "
|
2149 |
+
"data that is specific to your site. For example, logged 404 errors are not "
|
2150 |
+
"included because those 404 errors only apply to your site, not another site. "
|
2151 |
+
"Also, post/page titles/meta are not included because the site into which you "
|
2152 |
+
"import the file could have totally different posts/pages located under the "
|
2153 |
+
"same ID numbers.</p>\r\n"
|
2154 |
+
"\t\t<p>If you’re moving a site to a different server or restoring a "
|
2155 |
+
"crashed site, you should do so with database backup/restore.</p>\r\n"
|
2156 |
+
"\t</li>\r\n"
|
2157 |
"</ul>\r\n"
|
2158 |
msgstr ""
|
2159 |
|
2325 |
msgid "Restore Default Settings"
|
2326 |
msgstr ""
|
2327 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2328 |
#: modules/settings/uninstall.php:17
|
2329 |
msgid "Uninstaller"
|
2330 |
msgstr ""
|
2331 |
|
|
|
|
|
|
|
|
|
2332 |
#: modules/settings/uninstall.php:27
|
2333 |
msgid ""
|
2334 |
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
2365 |
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: modules/settings/global-settings.php:40
|
2369 |
+
msgid "Enable nofollow’d attribution link"
|
2370 |
+
msgstr ""
|
2371 |
+
|
2372 |
+
#: modules/settings/global-settings.php:41
|
2373 |
+
msgid "Enable attribution link CSS styling"
|
2374 |
+
msgstr ""
|
2375 |
+
|
2376 |
+
#: modules/settings/global-settings.php:42
|
2377 |
+
msgid "Notify me about unnecessary active plugins"
|
2378 |
+
msgstr ""
|
2379 |
+
|
2380 |
+
#: modules/settings/global-settings.php:43
|
2381 |
+
msgid "Insert comments around HTML code insertions"
|
2382 |
+
msgstr ""
|
2383 |
+
|
2384 |
#: modules/settings/install.php:18
|
2385 |
msgid "Upgrade/Downgrade/Reinstall"
|
2386 |
msgstr ""
|
2432 |
"the screen."
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: modules/settings/install.php:74
|
2436 |
+
msgid ""
|
2437 |
+
"Downgrading to versions earlier than %s is not supported because doing so "
|
2438 |
+
"will result in data loss."
|
2439 |
+
msgstr ""
|
2440 |
+
|
2441 |
+
#: modules/settings/install.php:76
|
2442 |
+
msgid ""
|
2443 |
+
"There was an error retrieving the list of available versions. Please try "
|
2444 |
+
"again later."
|
2445 |
+
msgstr ""
|
2446 |
+
|
2447 |
+
#: modules/settings/install.php:81
|
2448 |
+
msgid ""
|
2449 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
2450 |
+
"currently using, click the “Reinstall” button below."
|
2451 |
+
msgstr ""
|
2452 |
+
|
2453 |
+
#: modules/settings/install.php:108
|
2454 |
+
msgid "Your Current Version"
|
2455 |
+
msgstr ""
|
2456 |
+
|
2457 |
+
#: modules/settings/install.php:110
|
2458 |
+
msgid "Latest Version"
|
2459 |
+
msgstr ""
|
2460 |
+
|
2461 |
+
#: modules/settings/install.php:130
|
2462 |
+
msgid ""
|
2463 |
+
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
2464 |
+
"blog."
|
2465 |
+
msgstr ""
|
2466 |
+
|
2467 |
+
#: modules/settings/install.php:140
|
2468 |
+
msgid "Downgrade to SEO Ultimate %s"
|
2469 |
+
msgstr ""
|
2470 |
+
|
2471 |
+
#: modules/settings/install.php:143
|
2472 |
+
msgid "Reinstall SEO Ultimate %s"
|
2473 |
+
msgstr ""
|
2474 |
+
|
2475 |
+
#: modules/settings/install.php:146
|
2476 |
+
msgid "Upgrade to SEO Ultimate %s"
|
2477 |
+
msgstr ""
|
2478 |
+
|
2479 |
+
#: modules/404s/fofs.php:11
|
2480 |
+
msgid "404 Monitor"
|
2481 |
+
msgstr ""
|
2482 |
+
|
2483 |
+
#: modules/404s/fofs.php:20
|
2484 |
+
msgid ""
|
2485 |
+
"\r\n"
|
2486 |
+
"<ul>\r\n"
|
2487 |
+
"\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
|
2488 |
+
"existent URLs that generated 404 errors. 404 errors are when a search engine "
|
2489 |
+
"or visitor comes to a URL on your site but nothing exists at that URL.</li>"
|
2490 |
+
"\r\n"
|
2491 |
+
"\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
|
2492 |
+
"errors; then you can take steps to correct them to reduce link-juice loss "
|
2493 |
+
"from broken links.</li>\r\n"
|
2494 |
+
"\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
|
2495 |
+
"errors. (A numeric bubble will appear next to the “404 Monitor” "
|
2496 |
+
"item on the menu if there are any newly-logged URLs that you haven't seen "
|
2497 |
+
"yet. These new URLs will also be highlighted green in the table.) If a 404 "
|
2498 |
+
"error's referring URL is located on your site, try locating and fixing the "
|
2499 |
+
"broken URL. If moved content was previously located at the requested URL, "
|
2500 |
+
"try using a redirection plugin to point the old URL to the new one.</li>\r\n"
|
2501 |
+
"</ul>\r\n"
|
2502 |
+
"\r\n"
|
2503 |
+
"<p>If there are no 404 errors in the log, this is good and means there's no "
|
2504 |
+
"action required on your part.</p>\r\n"
|
2505 |
+
msgstr ""
|
2506 |
+
|
2507 |
+
#: modules/404s/fofs.php:32
|
2508 |
+
msgid "Log Help"
|
2509 |
+
msgstr ""
|
2510 |
+
|
2511 |
+
#: modules/404s/fofs.php:33
|
2512 |
+
msgid ""
|
2513 |
+
"\r\n"
|
2514 |
+
"<p>You can perform the following actions on each entry in the log:</p>\r\n"
|
2515 |
+
"\r\n"
|
2516 |
+
"<ul>\r\n"
|
2517 |
+
"\t<li>The “View” button will open the URL in a new window. This "
|
2518 |
+
"is useful for testing whether or not a redirect is working.</li>\r\n"
|
2519 |
+
"\t<li>The “Google Cache” button will open Google's archived "
|
2520 |
+
"version of the URL in a new window. This is useful for determining what "
|
2521 |
+
"content, if any, used to be located at that URL.</li>\r\n"
|
2522 |
+
"\t<li>Once you've taken care of a 404 error, you can click the “"
|
2523 |
+
"Remove” button to remove it from the list. The URL will reappear on "
|
2524 |
+
"the list if it triggers a 404 error in the future.</li>\r\n"
|
2525 |
+
"</ul>\r\n"
|
2526 |
+
msgstr ""
|
2527 |
+
|
2528 |
+
#: modules/404s/fofs.php:46
|
2529 |
+
msgid ""
|
2530 |
+
"\r\n"
|
2531 |
+
"<p>The following options are available on the Settings tab:</p>\r\n"
|
2532 |
+
"\r\n"
|
2533 |
+
"<ul>\r\n"
|
2534 |
+
"\t<li>\r\n"
|
2535 |
+
"\t\t<strong>Monitoring Settings</strong>\r\n"
|
2536 |
+
"\t\t<ul>\r\n"
|
2537 |
+
"\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> — If "
|
2538 |
+
"disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
|
2539 |
+
"any new ones.</li>\r\n"
|
2540 |
+
"\t\t</ul>\r\n"
|
2541 |
+
"\t</li>\r\n"
|
2542 |
+
"\t<li>\r\n"
|
2543 |
+
"\t\t<strong>Log Restrictions</strong>\r\n"
|
2544 |
+
"\t\t<ul>\r\n"
|
2545 |
+
"\t\t\t<li><strong>Only log these types of 404 errors</strong> — Check "
|
2546 |
+
"this option to log a 404 error <em>only</em> if it meets at least one of the "
|
2547 |
+
"criteria you specify. If you don't enable any criteria, no 404 errors will "
|
2548 |
+
"be logged.\r\n"
|
2549 |
+
"\t\t\t\t<ul>\r\n"
|
2550 |
+
"\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
|
2551 |
+
"— When logging restriction is enabled, this option will make an "
|
2552 |
+
"exception for 404 errors generated by one of the top search engines (Google, "
|
2553 |
+
"Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\r\n"
|
2554 |
+
"\t\t\t\t\t<li><strong>404s with referring URLs</strong> — When logging "
|
2555 |
+
"restriction is enabled, this option will make an exception for 404 errors "
|
2556 |
+
"generated by users who click a link on your site or another site first "
|
2557 |
+
"before ending up at a 404 page on your site.</li>\r\n"
|
2558 |
+
"\t\t\t\t</ul>\r\n"
|
2559 |
+
"\t\t\t</li>\r\n"
|
2560 |
+
"\t\t</ul>\r\n"
|
2561 |
+
"\t</li>\r\n"
|
2562 |
+
"\t<li><strong>Maximum Log Entries</strong> — Here you can set the "
|
2563 |
+
"maximum number of log entries that 404 Monitor will keep at a time. Setting "
|
2564 |
+
"this to a reasonable number will help keep database usage under control. If "
|
2565 |
+
"you change this setting, it will take effect the next time a 404 is logged.</"
|
2566 |
+
"li>\r\n"
|
2567 |
+
"\t<li><strong>URLs to Ignore</strong> — URLs entered here will be "
|
2568 |
+
"ignored whenever they generate 404 errors in the future. You can use "
|
2569 |
+
"asterisks (*) as wildcards.</li>\r\n"
|
2570 |
+
"</ul>\r\n"
|
2571 |
+
msgstr ""
|
2572 |
+
|
2573 |
+
#: modules/404s/fofs.php:75
|
2574 |
msgid ""
|
2575 |
+
"\r\n"
|
2576 |
+
"<p>404 Monitor doesn't appear to work? Take these notes into consideration:</"
|
2577 |
+
"p>\r\n"
|
2578 |
+
"\r\n"
|
2579 |
+
"<ul>\r\n"
|
2580 |
+
"\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
|
2581 |
+
"</li>\r\n"
|
2582 |
+
"\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
|
2583 |
+
"default permalinks enabled under <a href='options-permalink.php' "
|
2584 |
+
"target='_blank'>Settings ⇒ Permalinks</a>.</li>\r\n"
|
2585 |
+
"\t<li>Some parts of your website may not be under WordPress's control; the "
|
2586 |
+
"404 Monitor can't track 404 errors on non-WordPress website areas.</li>\r\n"
|
2587 |
+
"</ul>\r\n"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: modules/404s/fofs-log.php:16
|
2591 |
+
msgid "404 Monitor Log"
|
|
|
|
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: modules/404s/fofs-log.php:17
|
2595 |
+
msgid "Log"
|
|
|
|
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: modules/404s/fofs-log.php:114
|
2599 |
+
msgid "Hits"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: modules/404s/fofs-log.php:115
|
2603 |
+
msgid "URL with 404 Error"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: modules/404s/fofs-log.php:116
|
2607 |
+
msgid "Date of Most Recent Hit"
|
|
|
|
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: modules/404s/fofs-log.php:117
|
2611 |
+
msgid "Referers"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
|
2615 |
+
msgid "User Agents"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: modules/404s/fofs-log.php:134
|
2619 |
+
msgid ""
|
2620 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
2621 |
+
"Settings tab."
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: modules/404s/fofs-log.php:141
|
2625 |
+
msgid "The log entry was successfully deleted."
|
|
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: modules/404s/fofs-log.php:143
|
2629 |
+
msgid "This log entry has already been deleted."
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: modules/404s/fofs-log.php:152
|
2633 |
+
msgid "The log was successfully cleared."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: modules/404s/fofs-log.php:156
|
2637 |
+
msgid "No 404 errors in the log."
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: modules/404s/fofs-log.php:180
|
2641 |
+
msgid "Open URL in new window (will not be logged)"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: modules/404s/fofs-log.php:181
|
2645 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: modules/404s/fofs-log.php:182
|
2649 |
+
msgid "Remove this URL from the log"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: modules/404s/fofs-log.php:185
|
2653 |
+
msgid "%s at %s"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: modules/404s/fofs-log.php:189
|
2657 |
+
msgid "View list of referring URLs"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: modules/404s/fofs-log.php:190
|
2661 |
+
msgid "View list of user agents"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: modules/404s/fofs-log.php:200
|
2665 |
+
msgid "Referring URLs"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
|
2669 |
+
msgid "Hide list"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: modules/404s/fofs-log.php:252
|
2673 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
|
|
|
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: modules/404s/fofs-log.php:254
|
2677 |
+
msgid "Clear Log"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: modules/404s/fofs-settings.php:16
|
2681 |
+
msgid "404 Monitor Settings"
|
|
|
|
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: modules/404s/fofs-settings.php:37
|
2685 |
+
msgid "Continue monitoring for new 404 errors"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: modules/404s/fofs-settings.php:37
|
2689 |
+
msgid "Monitoring Settings"
|
|
|
|
|
|
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: modules/404s/fofs-settings.php:39
|
2693 |
+
msgid "Only log these types of 404 errors:"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: modules/404s/fofs-settings.php:40
|
2697 |
+
msgid "404s generated by search engine spiders"
|
|
|
|
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: modules/404s/fofs-settings.php:41
|
2701 |
+
msgid "404s with referring URLs"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: modules/404s/fofs-settings.php:42
|
2705 |
+
msgid "Log Restrictions"
|
|
|
|
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: modules/404s/fofs-settings.php:43
|
2709 |
+
msgid "Maximum Log Entries"
|
|
|
|
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: modules/404s/fofs-settings.php:44
|
2713 |
+
msgid "URLs to Ignore"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: modules/404s/fofs-settings.php:44
|
2717 |
+
msgid "(Use * as wildcard)"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: modules/slugs/slugs.php:12
|
2721 |
+
msgid "Slug Optimizer"
|
|
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: modules/slugs/slugs.php:16
|
2725 |
+
msgid "Words to Remove"
|
|
|
|
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: modules/slugs/slugs.php:77
|
2729 |
+
msgid ""
|
2730 |
+
"\r\n"
|
2731 |
+
"<ul>\r\n"
|
2732 |
+
"\t<li><strong>What it does:</strong> Slug Optimizer removes common words "
|
2733 |
+
"from the portion of a post’s or Page’s URL that is based on its "
|
2734 |
+
"title. (This portion is also known as the “slug.”)</li>\r\n"
|
2735 |
+
"\t<li><strong>Why it helps:</strong> Slug Optimizer increases keyword "
|
2736 |
+
"potency because there are fewer words in your URLs competing for relevance.</"
|
2737 |
+
"li>\r\n"
|
2738 |
+
"\t<li><strong>How to use it:</strong> Slug Optimizer works without any "
|
2739 |
+
"action required on your part. When you add a new post in your WordPress "
|
2740 |
+
"admin and specify a title for it, WordPress will generate a slug and the new "
|
2741 |
+
"post’s future URL will appear below the title box. While WordPress is "
|
2742 |
+
"generating the slug, Slug Optimizer takes common words out of it. You can "
|
2743 |
+
"use the textbox on Slug Optimizer’s admin page to specify which common "
|
2744 |
+
"words are removed.</li>\r\n"
|
2745 |
+
"</ul>\r\n"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: modules/slugs/slugs.php:88
|
2749 |
+
msgid ""
|
2750 |
+
"\r\n"
|
2751 |
+
"<ul>\r\n"
|
2752 |
+
"\t<li><strong>What’s a slug?</strong><br />The slug of a post or page "
|
2753 |
+
"is the portion of its URL that is based on its title. When you edit a post "
|
2754 |
+
"or Page in WordPress, the slug is the yellow-highlighted portion of the "
|
2755 |
+
"Permalink beneath the Title textbox.</li>\r\n"
|
2756 |
+
"\t<li><strong>Does the Slug Optimizer change my existing URLs?</strong><br /"
|
2757 |
+
">No. Slug Optimizer will not relocate your content by changing existing "
|
2758 |
+
"URLs. Slug Optimizer only takes effect on new posts and pages.</li>\r\n"
|
2759 |
+
"\t<li>\r\n"
|
2760 |
+
"\t\t<p><strong>How do I see Slug Optimizer in action?</strong><br />Follow "
|
2761 |
+
"these steps:</p>\r\n"
|
2762 |
+
"\t\t<ol>\r\n"
|
2763 |
+
"\t\t\t<li>Create a new post/Page in WordPress.</li>\r\n"
|
2764 |
+
"\t\t\t<li>Type in a title containing some common and uncommon words.</li>\r\n"
|
2765 |
+
"\t\t\t<li>Click outside the Title box. WordPress will insert a URL labeled "
|
2766 |
+
"“Permalink” below the Title textbox. The Slug Optimizer will "
|
2767 |
+
"have removed the common words from the URL.</li>\r\n"
|
2768 |
+
"\t\t</ol>\r\n"
|
2769 |
+
"\t</li>\r\n"
|
2770 |
+
"\t<li><strong>What if I want to include a common word in my slug?</"
|
2771 |
+
"strong><br />When editing the post or page in question, just click the "
|
2772 |
+
"“Edit” button next to the permalink and change the slug as "
|
2773 |
+
"desired. The Slug Optimizer won’t remove words from a manually-edited "
|
2774 |
+
"slug.</li>\r\n"
|
2775 |
+
"\t<li><strong>If I edit the optimized slug but then change my mind, how do I "
|
2776 |
+
"revert back to the optimized slug?</strong><br />When editing the post or "
|
2777 |
+
"page in question, just click the “Edit” button next to the "
|
2778 |
+
"permalink; a “Save” button will appear in its place. Next erase "
|
2779 |
+
"the contents of the textbox, and then click the aforementioned “"
|
2780 |
+
"Save” button.</li>\r\n"
|
2781 |
+
"</ul>\r\n"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: modules/slugs/slugs.php:108
|
2785 |
+
msgid ""
|
2786 |
+
"\r\n"
|
2787 |
+
"<ul>\r\n"
|
2788 |
+
"\t<li><strong>Why didn’t the Slug Optimizer remove common words from "
|
2789 |
+
"my slug?</strong><br />It’s possible that every word in your post "
|
2790 |
+
"title is in the list of words to remove. In this case, Slug Optimizer "
|
2791 |
+
"doesn’t remove the words, because if it did, you’d end up with a "
|
2792 |
+
"blank slug.</li>\r\n"
|
2793 |
+
"</ul>\r\n"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:24
|
2797 |
+
msgid "Link Mask Generator"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:30
|
2801 |
+
msgid "Aliases"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:70
|
2805 |
+
msgid "Edit Existing Aliases"
|
|
|
|
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:74
|
2809 |
+
msgid "Add a New Alias"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:82
|
2813 |
+
msgid "Actual URL"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:83
|
2817 |
+
msgid "Alias URL"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:84
|
2821 |
+
msgid "Only on This Post… (optional)"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:86
|
2825 |
+
#: modules/autolinks/footer-autolinks.php:176
|
2826 |
+
#: modules/autolinks/content-autolinks.php:359
|
2827 |
+
msgid "Delete"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:117
|
2831 |
+
msgid "Test"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:134
|
2835 |
+
msgid "Alias Directory"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:136
|
2839 |
+
msgid "Nofollow aliased links"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:136
|
2843 |
+
msgid "Link Attributes"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:159
|
2847 |
+
msgid "Link Masks:"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:162
|
2851 |
+
msgid "URL"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:162
|
2855 |
+
msgid "Mask URL"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:199
|
2859 |
+
msgid ""
|
2860 |
+
"You can stop search engines from following a link by typing in a mask for "
|
2861 |
+
"its URL."
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:281
|
2865 |
+
msgid "Added by SEO Ultimate's Link Mask Generator module"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:292
|
2869 |
+
msgid "End Link Mask Generator output"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: modules/rich-snippets/rich-snippets.php:12
|
2873 |
+
msgid "Rich Snippet Creator"
|
|
|
|
|
|
|
|
|
|
|
|
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: modules/rich-snippets/rich-snippets.php:17
|
2877 |
+
msgid ""
|
2878 |
+
"Reviews\n"
|
2879 |
+
"Review"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: modules/rich-snippets/rich-snippets.php:28
|
2883 |
+
msgid "Data Format"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: modules/rich-snippets/rich-snippets.php:29
|
2887 |
+
msgid "Categories/Tags That Indicate Reviews"
|
|
|
|
|
|
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: modules/rich-snippets/rich-snippets.php:37
|
2891 |
+
msgid "Microformats (recommended)"
|
|
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: modules/rich-snippets/rich-snippets.php:43
|
2895 |
+
msgid "HTML5 Microdata"
|
|
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: modules/rich-snippets/rich-snippets.php:49
|
2899 |
+
msgid "RDFa"
|
|
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: modules/rich-snippets/rich-snippets.php:62
|
2903 |
+
#: modules/rich-snippets/rich-snippets.php:225
|
2904 |
+
msgid "Review"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: modules/rich-snippets/rich-snippets.php:70
|
2908 |
+
msgid "Item Reviewed"
|
|
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: modules/rich-snippets/rich-snippets.php:78
|
2912 |
+
msgid "Star Rating"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: modules/rich-snippets/rich-snippets.php:83
|
2916 |
+
msgid "Review Author"
|
|
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: modules/rich-snippets/rich-snippets.php:89
|
2920 |
+
msgid "Date Reviewed"
|
|
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: modules/rich-snippets/rich-snippets.php:224
|
2924 |
+
#: modules/rich-snippets/rich-snippets.php:233
|
2925 |
+
msgid "None"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: modules/rich-snippets/rich-snippets.php:226
|
2929 |
+
msgid "Rich Snippet Type:"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: modules/rich-snippets/rich-snippets.php:230
|
2933 |
+
msgid "Name of Reviewed Item:"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: modules/rich-snippets/rich-snippets.php:234
|
2937 |
+
msgid "0.5 stars"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: modules/rich-snippets/rich-snippets.php:235
|
2941 |
+
msgid "1 star"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: modules/rich-snippets/rich-snippets.php:236
|
2945 |
+
msgid "1.5 stars"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: modules/rich-snippets/rich-snippets.php:237
|
2949 |
+
msgid "2 stars"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: modules/rich-snippets/rich-snippets.php:238
|
2953 |
+
msgid "2.5 stars"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: modules/rich-snippets/rich-snippets.php:239
|
2957 |
+
msgid "3 stars"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: modules/rich-snippets/rich-snippets.php:240
|
2961 |
+
msgid "3.5 stars"
|
|
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: modules/rich-snippets/rich-snippets.php:241
|
2965 |
+
msgid "4 stars"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: modules/rich-snippets/rich-snippets.php:242
|
2969 |
+
msgid "4.5 stars"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: modules/rich-snippets/rich-snippets.php:243
|
2973 |
+
msgid "5 stars"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: modules/rich-snippets/rich-snippets.php:244
|
2977 |
+
msgid "Star Rating for Reviewed Item:"
|
|
|
|
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: modules/rich-snippets/rich-snippets.php:255
|
2981 |
msgid ""
|
2982 |
+
"\r\n"
|
2983 |
+
"<ul>\r\n"
|
2984 |
+
"\t<li><strong>What it does:</strong> Rich Snippet Creator adds special code "
|
2985 |
+
"to your posts that asks Google to display special pertinent information "
|
2986 |
+
"(known as <a href='http://www.google.com/support/webmasters/bin/topic.py?"
|
2987 |
+
"hl=en&topic=219' target='_blank'>Rich Snippets</a>) in search results for "
|
2988 |
+
"certain types of content. For example, if you’ve written a product "
|
2989 |
+
"review, you can use Rich Snippet Creator to ask Google to display the star "
|
2990 |
+
"rating that you gave the product in your review next to your review webpage "
|
2991 |
+
"when it appears in search results.</li>\r\n"
|
2992 |
+
"\t<li><strong>Why it helps:</strong> Rich Snippet Creator enhances the "
|
2993 |
+
"search engine results for your content by asking Google to add extra, eye-"
|
2994 |
+
"catching info that could help draw in more search engine visitors.</li>\r\n"
|
2995 |
+
"\t<li><p><strong>How it works:</strong> When editing one of your posts or "
|
2996 |
+
"pages, see if your content fits one of the available rich snippet types (for "
|
2997 |
+
"example, a review). If so, select that type from the “Rich Snippet "
|
2998 |
+
"Type” dropdown box. Once you select the applicable type, additional "
|
2999 |
+
"options will appear that vary based on the type selected. For example, a "
|
3000 |
+
"“Star Rating” field will appear if you select the “"
|
3001 |
+
"Review” type.</p><p>Once you save the post/page, Rich Snippet Creator "
|
3002 |
+
"will add the special code to it. You can remove this code at any time by "
|
3003 |
+
"selecting “None” from the “Rich Snippet Type” "
|
3004 |
+
"dropdown and resaving the post/page.</p></li>\r\n"
|
3005 |
+
"</ul>\r\n"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: modules/rich-snippets/rich-snippets.php:266
|
3009 |
msgid ""
|
3010 |
+
"\r\n"
|
3011 |
+
"<ul>\r\n"
|
3012 |
+
"\t<li><strong>Data Format</strong> — This lets you select the “"
|
3013 |
+
"language” that Rich Snippet Creator uses to communicate the rich "
|
3014 |
+
"snippet data to Google. Google supports all three options. We recommend "
|
3015 |
+
"“Microformats” because it’s compatible with the greatest "
|
3016 |
+
"number of HTML/XHTML variants. This option will likely be of interest only "
|
3017 |
+
"to advanced users.</li>\r\n"
|
3018 |
+
"\t<li><strong>Categories/Tags That Indicate Reviews</strong> — If you "
|
3019 |
+
"haven’t set the “Rich Snippet Type” setting for an old "
|
3020 |
+
"post or page, then Rich Snippet Creator will automatically set its default "
|
3021 |
+
"type to “Review” (instead of “None”) if it has a "
|
3022 |
+
"category or tag whose name is in this list (the default list is “"
|
3023 |
+
"Reviews” and “Review”). Put one category/tag name per line."
|
3024 |
+
"</li>\r\n"
|
3025 |
+
"</ul>\r\n"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: modules/rich-snippets/rich-snippets.php:276
|
3029 |
msgid ""
|
3030 |
+
"\r\n"
|
3031 |
+
"<ul>\r\n"
|
3032 |
+
"\t<li><p><strong>Why aren’t rich snippets showing up in Google search "
|
3033 |
+
"results for my site?</strong><br />Enter the URL of your post/page into <a "
|
3034 |
+
"href='http://www.google.com/webmasters/tools/richsnippets' "
|
3035 |
+
"target='_blank'>Google’s testing tool</a> to make sure Google can find "
|
3036 |
+
"the rich snippet code on your site. If no code is found, check and make sure "
|
3037 |
+
"you've enabled rich snippets for that particular post/page.</p><p>Note that "
|
3038 |
+
"having the code on a post/page doesn’t guarantee that Google will "
|
3039 |
+
"actually use it to create a rich snippet. If Google is able to read your "
|
3040 |
+
"code but isn’t using it to generate rich snippets, you can ask Google "
|
3041 |
+
"to do so using <a href='http://www.google.com/support/webmasters/bin/request."
|
3042 |
+
"py?contact_type=rich_snippets_feedback' target='_blank'>this form</a>.</p></"
|
3043 |
+
"li>\r\n"
|
3044 |
+
"</ul>\r\n"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
3048 |
+
#: modules/sharing-buttons/sharing-buttons.php:72
|
3049 |
+
msgid "Sharing Facilitator"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
3053 |
+
msgid "Bookmark and Share"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: modules/sharing-buttons/sharing-buttons.php:39
|
3057 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
3061 |
+
msgid "None; disable sharing buttons"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
3065 |
+
msgid "Use the ShareThis button"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
3069 |
+
msgid "Use the AddThis button"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: modules/sharing-buttons/sharing-buttons.php:73
|
3073 |
+
msgid ""
|
3074 |
+
"\r\n"
|
3075 |
+
"<ul>\r\n"
|
3076 |
+
"\t<li><strong>What it does:</strong> Sharing Facilitator adds buttons to "
|
3077 |
+
"your posts/pages that make it easy for visitors to share your content.</li>"
|
3078 |
+
"\r\n"
|
3079 |
+
"\t<li><strong>Why it helps:</strong> When visitors share your content on "
|
3080 |
+
"social networking sites, this can build links to your site. Sharing "
|
3081 |
+
"Facilitator makes it easy for visitors to do this.</li>\r\n"
|
3082 |
+
"\t<li><strong>How to use it:</strong> Pick which button type you’d "
|
3083 |
+
"like to use (ShareThis or AddThis) and click Save Changes. Try enabling each "
|
3084 |
+
"button on your site and see which one you like better.</li>\r\n"
|
3085 |
+
"</ul>\r\n"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
#: modules/autolinks/footer-autolinks-settings.php:16
|
3109 |
msgid "Link Separator"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: modules/autolinks/footer-autolinks.php:16
|
3113 |
+
msgid "Footer Deeplink Juggernaut"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: modules/autolinks/footer-autolinks.php:157
|
3117 |
+
#: modules/autolinks/content-autolinks.php:337
|
3118 |
+
msgid "Edit Existing Links"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
+
#: modules/autolinks/footer-autolinks.php:161
|
3122 |
+
#: modules/autolinks/content-autolinks.php:341
|
3123 |
+
msgid "Add a New Link"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: modules/autolinks/footer-autolinks.php:169
|
3127 |
+
msgid "Link Location (optional)"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: modules/autolinks/footer-autolinks.php:171
|
3131 |
+
#: modules/autolinks/content-autolinks.php:352
|
3132 |
+
msgid "Anchor Text"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: modules/autolinks/footer-autolinks.php:172
|
3136 |
+
#: modules/autolinks/content-autolinks.php:353
|
3137 |
+
msgid "Destination"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: modules/autolinks/footer-autolinks.php:173
|
3141 |
+
#: modules/autolinks/content-autolinks.php:354
|
3142 |
+
msgid "Title Attribute"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: modules/autolinks/footer-autolinks.php:174
|
3146 |
+
#: modules/autolinks/content-autolinks.php:357
|
3147 |
+
msgid "Options"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: modules/autolinks/footer-autolinks.php:197
|
3151 |
+
msgid "Match child content"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: modules/autolinks/footer-autolinks.php:199
|
3155 |
+
msgid "Negative match"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: modules/autolinks/footer-autolinks.php:212
|
3159 |
+
#: modules/autolinks/content-autolinks.php:396
|
3160 |
+
msgid "New window"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: modules/autolinks/autolinks.php:11
|
3164 |
+
msgid "Deeplink Juggernaut"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: modules/autolinks/autolinks.php:18
|
3168 |
+
msgid ""
|
3169 |
+
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
3170 |
+
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
3171 |
+
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
3172 |
+
"webhost. In the meantime, you can return to an older version of Deeplink "
|
3173 |
+
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
3174 |
+
"a> to SEO Ultimate 5.9."
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
3178 |
+
msgid "Content Deeplink Juggernaut Settings"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
3182 |
+
msgid "Content Link Settings"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: modules/autolinks/content-autolinks-settings.php:40
|
3186 |
+
msgid "Add Autolinks to..."
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: modules/autolinks/content-autolinks-settings.php:43
|
3190 |
+
msgid "Allow posts to link to themselves."
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: modules/autolinks/content-autolinks-settings.php:44
|
3194 |
msgid ""
|
3195 |
+
"Allow posts to link to the URL by which the visitor is accessing the post."
|
|
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: modules/autolinks/content-autolinks-settings.php:45
|
3199 |
+
msgid "Self-Linking"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: modules/autolinks/content-autolinks-settings.php:48
|
3203 |
+
msgid "Enable per-link customization of quantity limits."
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: modules/autolinks/content-autolinks-settings.php:49
|
3207 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: modules/autolinks/content-autolinks-settings.php:50
|
3211 |
msgid ""
|
3212 |
+
"Don’t link the same anchor text any more than %d times per post/page/"
|
3213 |
+
"etc."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: modules/autolinks/content-autolinks-settings.php:51
|
3217 |
+
msgid ""
|
3218 |
+
"Don’t link the same anchor text any more than %d times across my "
|
3219 |
+
"entire site."
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: modules/autolinks/content-autolinks-settings.php:52
|
3223 |
+
msgid ""
|
3224 |
+
"Don’t link to the same destination any more than %d times per post/"
|
3225 |
+
"page/etc."
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: modules/autolinks/content-autolinks-settings.php:53
|
3229 |
+
msgid "Quantity Restrictions"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: modules/autolinks/content-autolinks-settings.php:55
|
3233 |
+
msgid ""
|
3234 |
+
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
3235 |
+
"commas)</em>:"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: modules/autolinks/content-autolinks-settings.php:55
|
3239 |
+
msgid "Tag Restrictions"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: modules/autolinks/content-autolinks-settings.php:63
|
3243 |
+
msgid "%s can only link to internal destinations that share at least one..."
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: modules/autolinks/content-autolinks-settings.php:76
|
3247 |
+
msgid "Siloing"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: modules/autolinks/content-autolinks.php:16
|
3251 |
+
msgid "Content Deeplink Juggernaut"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: modules/autolinks/content-autolinks.php:17
|
3255 |
+
msgid "Content Links"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: modules/autolinks/content-autolinks.php:281
|
3259 |
+
msgid ""
|
3260 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
3261 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: modules/autolinks/content-autolinks.php:356
|
3265 |
+
msgid "Site Cap"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: modules/autolinks/content-autolinks.php:461
|
3269 |
+
msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: modules/autolinks/content-autolinks.php:464
|
3273 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: modules/autolinks/content-autolinks.php:464
|
3277 |
+
msgid "Autolink Exclusion:"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: modules/autolinks/content-autolinks.php:470
|
3281 |
msgid ""
|
3282 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
3283 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
3284 |
+
"other posts and link it to this post. For example, if the post you’re "
|
3285 |
+
"editing is about “blue widgets,” you could type “blue "
|
3286 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
3287 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
3288 |
+
"with that anchor text (assuming other posts contain that text)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3289 |
msgstr ""
|
3290 |
|
3291 |
#: includes/jlwp/functions.php:65
|