Version Description
Download this release
Release Info
Developer | SEO Design Solutions |
Plugin | SEO Ultimate |
Version | 4.7 |
Comparing to | |
See all releases |
Code changes from version 4.6 to 4.7
- includes/backcompat.php +19 -0
- modules/internal-link-aliases/internal-link-aliases.php +108 -0
- modules/more-links/more-links.php +4 -1
- readme.txt +24 -11
- seo-ultimate.php +6 -5
- seo-ultimate.pot +874 -851
includes/backcompat.php
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if (!function_exists('array_combine')) :
|
3 |
+
|
4 |
+
//PHP4 function from:
|
5 |
+
//http://www.php.net/manual/en/function.array-combine.php#82244
|
6 |
+
function array_combine($arr1, $arr2) {
|
7 |
+
$out = array();
|
8 |
+
|
9 |
+
$arr1 = array_values($arr1);
|
10 |
+
$arr2 = array_values($arr2);
|
11 |
+
|
12 |
+
foreach($arr1 as $key1 => $value1) {
|
13 |
+
$out[(string)$value1] = $arr2[$key1];
|
14 |
+
}
|
15 |
+
|
16 |
+
return $out;
|
17 |
+
}
|
18 |
+
|
19 |
+
endif;
|
modules/internal-link-aliases/internal-link-aliases.php
ADDED
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class SU_InternalLinkAliases extends SU_Module {
|
4 |
+
|
5 |
+
function init() {
|
6 |
+
add_filter('su_custom_update_postmeta-aliases', array(&$this, 'save_post_aliases'), 10, 4);
|
7 |
+
add_filter('the_content', array(&$this, 'apply_aliases'));
|
8 |
+
add_action('template_redirect', array(&$this, 'redirect_aliases'));
|
9 |
+
add_action('do_robotstxt', array(&$this, 'block_aliases_dir'));
|
10 |
+
add_action('su_do_robotstxt', array(&$this, 'block_aliases_dir'));
|
11 |
+
}
|
12 |
+
|
13 |
+
function get_module_title() { return __('Link Mask Generator', 'seo-ultimate'); }
|
14 |
+
function get_menu_title() { return false; }
|
15 |
+
|
16 |
+
function postmeta_fields($fields) {
|
17 |
+
|
18 |
+
$post = get_post(suwp::get_post_id());
|
19 |
+
if (!$post) return;
|
20 |
+
$content = $post->post_content;
|
21 |
+
|
22 |
+
if ($content && preg_match_all('@ href=["\']([^"\']+)["\']@', $content, $matches)) {
|
23 |
+
$urls = $matches[1];
|
24 |
+
|
25 |
+
$html = "<tr valign='top'>\n<th scope='row'>".__('Link Masks', 'seo-ultimate')."</th>\n<td>\n";
|
26 |
+
|
27 |
+
$html .= "<table class='widefat'><thead>\n";
|
28 |
+
$headers = array(__('URL', 'seo-ultimate'), '', __('Mask URL', 'seo-ultimate'));
|
29 |
+
foreach ($headers as $header) $html .= "<th>$header</th>\n";
|
30 |
+
$html .= "</thead>\n<tbody>";
|
31 |
+
|
32 |
+
$aliases = $this->get_setting('aliases', array());
|
33 |
+
$post_aliases = array();
|
34 |
+
foreach ($aliases as $alias) {
|
35 |
+
if (in_array($post->ID, $alias['posts']))
|
36 |
+
$post_aliases[$alias['from']] = $alias['to'];
|
37 |
+
}
|
38 |
+
|
39 |
+
foreach ($urls as $url) {
|
40 |
+
$a_url = esc_attr($url);
|
41 |
+
$ht_url = esc_html(sustr::truncate($url, 30));
|
42 |
+
$a_alias = esc_attr($post_aliases[$url]);
|
43 |
+
$html .= "<tr><td><a href='$a_url' title='$a_url' target='_blank'>$ht_url</a></td>\n<td>⇒</td><td>/go/<input type='text' name='_su_aliases[$a_url]' value='$a_alias' /></td></tr>\n";
|
44 |
+
}
|
45 |
+
|
46 |
+
$html .= "</tbody>\n</table>\n";
|
47 |
+
|
48 |
+
$html .= '<p><small>' . __('You can stop search engines from following a link by typing in a mask for its URL.', 'seo-ultimate') . "</small></p>\n";
|
49 |
+
|
50 |
+
$html .= "</td>\n</tr>\n";
|
51 |
+
|
52 |
+
$fields['70|aliases'] = $html;
|
53 |
+
}
|
54 |
+
|
55 |
+
return $fields;
|
56 |
+
}
|
57 |
+
|
58 |
+
function save_post_aliases($false, $saved_aliases, $metakey, $post) {
|
59 |
+
if ($post->post_type == 'revision' || !is_array($saved_aliases)) return true;
|
60 |
+
|
61 |
+
$all_aliases = $this->get_setting('aliases', array());
|
62 |
+
|
63 |
+
$posts = array($post->ID);
|
64 |
+
$new_aliases = array();
|
65 |
+
foreach ($saved_aliases as $from => $to)
|
66 |
+
$new_aliases[] = compact('from', 'to', 'posts');
|
67 |
+
|
68 |
+
$all_aliases = array_merge($all_aliases, $new_aliases);
|
69 |
+
$this->update_setting('aliases', $all_aliases);
|
70 |
+
|
71 |
+
return true;
|
72 |
+
}
|
73 |
+
|
74 |
+
function apply_aliases($content) {
|
75 |
+
$id = suwp::get_post_id();
|
76 |
+
$aliases = $this->get_setting('aliases', array());
|
77 |
+
foreach ($aliases as $alias) {
|
78 |
+
$from = $alias['from'];
|
79 |
+
$to = $alias['to'];
|
80 |
+
|
81 |
+
if (in_array($id, $alias['posts']) && $to) {
|
82 |
+
$to = get_bloginfo('url') . "/go/$to/";
|
83 |
+
$content = str_replace(array(" href='$from'", " href=\"$from\""), array(" href='$to'", " href=\"$to\""), $content);
|
84 |
+
}
|
85 |
+
}
|
86 |
+
return $content;
|
87 |
+
}
|
88 |
+
|
89 |
+
function redirect_aliases() {
|
90 |
+
$aliases = $this->get_setting('aliases', array());
|
91 |
+
foreach ($aliases as $alias)
|
92 |
+
if ($to = $alias['to'])
|
93 |
+
if (suurl::current() == get_bloginfo('url') . "/go/$to/")
|
94 |
+
wp_redirect($alias['from']);
|
95 |
+
}
|
96 |
+
|
97 |
+
function block_aliases_dir() {
|
98 |
+
echo '# ';
|
99 |
+
_e('Added by Link Alias Generator module', 'seo-ultimate');
|
100 |
+
echo "\n";
|
101 |
+
|
102 |
+
$urlinfo = parse_url(get_bloginfo('url'));
|
103 |
+
$path = $urlinfo['path'];
|
104 |
+
echo "User-agent: *\n";
|
105 |
+
echo "Disallow: $path/go/\n\n";
|
106 |
+
}
|
107 |
+
|
108 |
+
}
|
modules/more-links/more-links.php
CHANGED
@@ -28,7 +28,10 @@ class SU_MoreLinks extends SU_Module {
|
|
28 |
$this->admin_form_end();
|
29 |
}
|
30 |
|
31 |
-
function more_link_filter($link, $text) {
|
|
|
|
|
|
|
32 |
$default = $this->get_setting('default');
|
33 |
|
34 |
if (strlen($newtext = trim($this->get_postmeta('morelinktext'))) || strlen(trim($newtext = $default))) {
|
28 |
$this->admin_form_end();
|
29 |
}
|
30 |
|
31 |
+
function more_link_filter($link, $text=false) {
|
32 |
+
|
33 |
+
if ($text === false) return $link; //Can't do it without $text parameter
|
34 |
+
|
35 |
$default = $this->get_setting('default');
|
36 |
|
37 |
if (strlen($newtext = trim($this->get_postmeta('morelinktext'))) || strlen(trim($newtext = $default))) {
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== SEO Ultimate ===
|
2 |
Contributors: SEO Design Solutions
|
3 |
-
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 4.
|
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,17 +11,17 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
|
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
|
|
14 |
* Version 4.6 adds a meta keywords mass-editor
|
15 |
* Version 4.5 adds bugfixes
|
16 |
* Version 4.4 adds a new field for entering sitewide meta keywords
|
17 |
* Version 4.3 adds the ability to use the post's excerpt as its default meta description
|
18 |
-
* Version 4.2 adds the option to exclude specific posts/pages from being autolinked
|
19 |
|
20 |
= Features =
|
21 |
|
22 |
SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin with these powerful features:
|
23 |
|
24 |
-
* **Title Tag Rewriter**
|
25 |
* Out-of-the-box functionality puts your post titles at the beginning of the `<title>` tag for improved keyword SEO.
|
26 |
* Easily override the entire `<title>` tag contents for any individual post, page, attachment, category, or post tag on your blog. Also supports custom post types.
|
27 |
* Customize your homepage's `<title>` tag.
|
@@ -37,7 +37,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
37 |
* Easily specify global keywords that are applied across the entire site.
|
38 |
* Go back and edit old posts' keywords with the mass-editor.
|
39 |
|
40 |
-
* **Meta Robot Tags Editor**
|
41 |
* Add the `<meta name="robots" content="noindex,follow" />` tag to archives, comment feeds, the login page, and more.
|
42 |
* Set meta robots tags (index/noindex and follow/nofollow) for each individual post/page.
|
43 |
* Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
|
@@ -63,6 +63,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
63 |
|
64 |
* **Slug Optimizer**
|
65 |
* Increase in-URL keyword potency by removing "filler words" (like "the," "with," "and," etc.) from post/page URLs.
|
|
|
66 |
|
67 |
* **Competition Researcher**
|
68 |
* Investigate multiple keywords or URLs with quick access to search engine tools. Competition Researcher does this without illicit scraping/automation methods.
|
@@ -81,7 +82,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
81 |
* Determine which of your webpages Google most strongly associates with the keywords you specify.
|
82 |
* Use the information to determine ideal targets for incoming links or ideal sources of outgoing links.
|
83 |
|
84 |
-
* **Deeplink Juggernaut**
|
85 |
* Automatically link phrases in your posts/pages to other posts/pages or to custom URLs.
|
86 |
* Exclude specific posts/pages from having links added to them, if desired (e.g. contact pages, the homepage, etc.).
|
87 |
* Use the power of anchor text to boost your internal ranking SEO paradigm.
|
@@ -107,8 +108,14 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
107 |
* Choose from either the ShareThis or the AddThis button.
|
108 |
* Unlike the official ShareThis plugin, SEO Ultimate doesn't require you to register at the ShareThis website before enabling the button -- just enable and go.
|
109 |
|
110 |
-
* **Webmaster Verification Assistant**
|
111 |
* Enter verification codes in the provided fields to access search engine webmaster tools.
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
|
113 |
* **Settings Manager**
|
114 |
* Export your SEO Ultimate settings to a file and re-import later if desired.
|
@@ -127,10 +134,8 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
127 |
* Includes an uninstaller that can delete the plugin's files and database entries if desired.
|
128 |
* Lets you upgrade/downgrade the plugin to versions of your choosing (starting with 2.5).
|
129 |
|
130 |
-
* **Features
|
131 |
-
|
132 |
-
* Nofollow options
|
133 |
-
* ...And much, much more! Install SEO Ultimate today and use WordPress's automatic plugin updater to get new features as they're released.
|
134 |
|
135 |
[**Download**](http://downloads.wordpress.org/plugin/seo-ultimate.zip) **your free copy of SEO Ultimate today.**
|
136 |
|
@@ -167,6 +172,9 @@ To install the plugin manually:
|
|
167 |
* **Where's the documentation?**
|
168 |
SEO Ultimate's documentation is built into the plugin itself. Whenever you're viewing an SEO Ultimate page in your WordPress admin, you can click the "Help" tab in the upper-right-hand corner to view documentation for the area you're viewing.
|
169 |
|
|
|
|
|
|
|
170 |
* **How do I uninstall SEO Ultimate?**
|
171 |
1. Go to the `Settings > SEO Ultimate` admin page and click the "Uninstall" tab.
|
172 |
2. Click the "Uninstall Now" button and click "Yes" to confirm. SEO Ultimate's files and database entries will be deleted.
|
@@ -216,6 +224,11 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
216 |
|
217 |
== Changelog ==
|
218 |
|
|
|
|
|
|
|
|
|
|
|
219 |
= Version 4.6 (December 23, 2010) =
|
220 |
* Feature: Added meta keywords mass-editor for posts, pages, attachments, and custom post types
|
221 |
|
1 |
=== SEO Ultimate ===
|
2 |
Contributors: SEO Design Solutions
|
3 |
+
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 4.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 |
|
12 |
= Recent Releases =
|
13 |
|
14 |
+
* Version 4.7 adds the Link Mask Generator module
|
15 |
* Version 4.6 adds a meta keywords mass-editor
|
16 |
* Version 4.5 adds bugfixes
|
17 |
* Version 4.4 adds a new field for entering sitewide meta keywords
|
18 |
* Version 4.3 adds the ability to use the post's excerpt as its default meta description
|
|
|
19 |
|
20 |
= Features =
|
21 |
|
22 |
SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin with these powerful features:
|
23 |
|
24 |
+
* **Title Tag Rewriter**
|
25 |
* Out-of-the-box functionality puts your post titles at the beginning of the `<title>` tag for improved keyword SEO.
|
26 |
* Easily override the entire `<title>` tag contents for any individual post, page, attachment, category, or post tag on your blog. Also supports custom post types.
|
27 |
* Customize your homepage's `<title>` tag.
|
37 |
* Easily specify global keywords that are applied across the entire site.
|
38 |
* Go back and edit old posts' keywords with the mass-editor.
|
39 |
|
40 |
+
* **Meta Robot Tags Editor**
|
41 |
* Add the `<meta name="robots" content="noindex,follow" />` tag to archives, comment feeds, the login page, and more.
|
42 |
* Set meta robots tags (index/noindex and follow/nofollow) for each individual post/page.
|
43 |
* Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
|
63 |
|
64 |
* **Slug Optimizer**
|
65 |
* Increase in-URL keyword potency by removing "filler words" (like "the," "with," "and," etc.) from post/page URLs.
|
66 |
+
* Lets you customize the "filler words" list as desired.
|
67 |
|
68 |
* **Competition Researcher**
|
69 |
* Investigate multiple keywords or URLs with quick access to search engine tools. Competition Researcher does this without illicit scraping/automation methods.
|
82 |
* Determine which of your webpages Google most strongly associates with the keywords you specify.
|
83 |
* Use the information to determine ideal targets for incoming links or ideal sources of outgoing links.
|
84 |
|
85 |
+
* **Deeplink Juggernaut**
|
86 |
* Automatically link phrases in your posts/pages to other posts/pages or to custom URLs.
|
87 |
* Exclude specific posts/pages from having links added to them, if desired (e.g. contact pages, the homepage, etc.).
|
88 |
* Use the power of anchor text to boost your internal ranking SEO paradigm.
|
108 |
* Choose from either the ShareThis or the AddThis button.
|
109 |
* Unlike the official ShareThis plugin, SEO Ultimate doesn't require you to register at the ShareThis website before enabling the button -- just enable and go.
|
110 |
|
111 |
+
* **Webmaster Verification Assistant**
|
112 |
* Enter verification codes in the provided fields to access search engine webmaster tools.
|
113 |
+
|
114 |
+
* **Link Mask Generator**
|
115 |
+
* Lets you generate robots.txt-blocked "link masks" (e.g. `www.example.com/go/google/`) that pass-through to an external URL.
|
116 |
+
* Lets you mask links on a per-link, per-post basis so you can exert fine-tuned control over your posts' linkflow.
|
117 |
+
* Link masks provide a modern replacement for the deprecated, nofollow-based "PageRank Sculpting" technique.
|
118 |
+
* Perfect for affiliate marketers and SEO-savvy bloggers.
|
119 |
|
120 |
* **Settings Manager**
|
121 |
* Export your SEO Ultimate settings to a file and re-import later if desired.
|
134 |
* Includes an uninstaller that can delete the plugin's files and database entries if desired.
|
135 |
* Lets you upgrade/downgrade the plugin to versions of your choosing (starting with 2.5).
|
136 |
|
137 |
+
* **More Features In the Works**
|
138 |
+
There are many additional features in development. Install SEO Ultimate today and use WordPress's automatic plugin updater to get new features as they're released.
|
|
|
|
|
139 |
|
140 |
[**Download**](http://downloads.wordpress.org/plugin/seo-ultimate.zip) **your free copy of SEO Ultimate today.**
|
141 |
|
172 |
* **Where's the documentation?**
|
173 |
SEO Ultimate's documentation is built into the plugin itself. Whenever you're viewing an SEO Ultimate page in your WordPress admin, you can click the "Help" tab in the upper-right-hand corner to view documentation for the area you're viewing.
|
174 |
|
175 |
+
* **How do I disable the attribution link?**
|
176 |
+
The attribution link is disabled by default. It only appears if you enable it. You can re-disable it the same place you enabled it: under `Settings > SEO Ultimate`.
|
177 |
+
|
178 |
* **How do I uninstall SEO Ultimate?**
|
179 |
1. Go to the `Settings > SEO Ultimate` admin page and click the "Uninstall" tab.
|
180 |
2. Click the "Uninstall Now" button and click "Yes" to confirm. SEO Ultimate's files and database entries will be deleted.
|
224 |
|
225 |
== Changelog ==
|
226 |
|
227 |
+
= Version 4.7 (December 28, 2010) =
|
228 |
+
* Feature: Added the Link Mask Generator module
|
229 |
+
* Bugfix: More Link Customizer now fails silently if only 1 parameter is passed to the `the_content_more_link` filter.
|
230 |
+
* Bugfix: Fixed array_combine() errors by adding PHP4 back-compatibility function
|
231 |
+
|
232 |
= Version 4.6 (December 23, 2010) =
|
233 |
* Feature: Added meta keywords mass-editor for posts, pages, attachments, and custom post types
|
234 |
|
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: 4.
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,12 +12,12 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 4.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
19 |
/*
|
20 |
-
Copyright (c) 2009-
|
21 |
|
22 |
This program is free software; you can redistribute it and/or modify
|
23 |
it under the terms of the GNU General Public License as published by
|
@@ -47,14 +47,15 @@ define('SU_MINIMUM_WP_VER', '2.8');
|
|
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', '4.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/4.
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
57 |
//Libraries
|
|
|
58 |
include 'includes/jlfunctions/jlfunctions.php';
|
59 |
include 'includes/jlwp/jlwp.php';
|
60 |
|
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: 4.7
|
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 4.7
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
19 |
/*
|
20 |
+
Copyright (c) 2009-2011 John Lamansky
|
21 |
|
22 |
This program is free software; you can redistribute it and/or modify
|
23 |
it under the terms of the GNU General Public License as published by
|
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', '4.7');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/4.7');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
57 |
//Libraries
|
58 |
+
include 'includes/backcompat.php';
|
59 |
include 'includes/jlfunctions/jlfunctions.php';
|
60 |
include 'includes/jlwp/jlwp.php';
|
61 |
|
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 4.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2010-12-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,98 +12,14 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: seo-ultimate.php:
|
16 |
msgid ""
|
17 |
"SEO Ultimate requires WordPress %s or above. Please upgrade to the latest "
|
18 |
"version of WordPress to enable SEO Ultimate on your blog, or deactivate SEO "
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
-
|
23 |
-
msgid "Package not available."
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
#: plugin/class.su-installer.php:12
|
27 |
-
msgid "Removing the current version of the plugin…"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: plugin/class.su-installer.php:13
|
31 |
-
msgid "Could not remove the current version of the plugin."
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: plugin/class.su-installer.php:17
|
35 |
-
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: plugin/class.su-installer.php:18
|
39 |
-
msgid "Unpacking the downgrade…"
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: plugin/class.su-installer.php:19
|
43 |
-
msgid "Installing the downgrade…"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: plugin/class.su-installer.php:20
|
47 |
-
msgid "Plugin downgrade failed."
|
48 |
-
msgstr ""
|
49 |
-
|
50 |
-
#: plugin/class.su-installer.php:21
|
51 |
-
msgid "Plugin downgraded successfully."
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
#: plugin/class.su-installer.php:24
|
55 |
-
msgid "Downloading from <span class=\"code\">%s</span>…"
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
#: plugin/class.su-installer.php:25
|
59 |
-
msgid "Unpacking the reinstall…"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: plugin/class.su-installer.php:26
|
63 |
-
msgid "Reinstalling the current version…"
|
64 |
-
msgstr ""
|
65 |
-
|
66 |
-
#: plugin/class.su-installer.php:27
|
67 |
-
msgid "Plugin reinstallation failed."
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: plugin/class.su-installer.php:28
|
71 |
-
msgid "Plugin reinstalled successfully."
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#: plugin/class.su-installer.php:32
|
75 |
-
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: plugin/class.su-installer.php:33
|
79 |
-
msgid "Unpacking the upgrade…"
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: plugin/class.su-installer.php:34
|
83 |
-
msgid "Installing the upgrade…"
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: plugin/class.su-installer.php:35
|
87 |
-
msgid "Plugin upgrade failed."
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: plugin/class.su-installer.php:36
|
91 |
-
msgid "Plugin upgraded successfully."
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: plugin/su-functions.php:77 includes/jlfunctions/str.php:94
|
95 |
-
msgid "%s and %s"
|
96 |
-
msgstr ""
|
97 |
-
|
98 |
-
#: plugin/su-functions.php:80 includes/jlfunctions/str.php:97
|
99 |
-
msgid ", "
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: plugin/su-functions.php:81 includes/jlfunctions/str.php:98
|
103 |
-
msgid "%s, and %s"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 4.5.4) #-#-#-#-#
|
107 |
#. Plugin Name of the plugin/theme
|
108 |
#: plugin/class.seo-ultimate.php:756 modules/settings/settings.php:14
|
109 |
msgid "SEO Ultimate"
|
@@ -195,184 +111,299 @@ msgstr ""
|
|
195 |
msgid "SEO Settings"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/
|
199 |
-
msgid "
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/
|
203 |
-
msgid "
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/
|
207 |
-
msgid "
|
208 |
msgstr ""
|
209 |
|
210 |
-
#:
|
211 |
-
msgid "
|
212 |
msgstr ""
|
213 |
|
214 |
-
#:
|
215 |
-
msgid "
|
216 |
msgstr ""
|
217 |
|
218 |
-
#:
|
219 |
-
msgid "
|
220 |
msgstr ""
|
221 |
|
222 |
-
#:
|
223 |
-
msgid "
|
224 |
msgstr ""
|
225 |
|
226 |
-
#:
|
227 |
-
msgid "
|
228 |
msgstr ""
|
229 |
|
230 |
-
#:
|
231 |
-
msgid "
|
232 |
msgstr ""
|
233 |
|
234 |
-
#:
|
235 |
-
msgid "
|
236 |
msgstr ""
|
237 |
|
238 |
-
#:
|
239 |
-
msgid "
|
240 |
msgstr ""
|
241 |
|
242 |
-
#:
|
243 |
-
msgid "
|
244 |
msgstr ""
|
245 |
|
246 |
-
#:
|
247 |
-
msgid "
|
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 |
-
msgid "
|
268 |
msgstr ""
|
269 |
|
270 |
-
#:
|
271 |
-
msgid "
|
272 |
msgstr ""
|
273 |
|
274 |
-
#:
|
275 |
-
msgid "
|
276 |
msgstr ""
|
277 |
|
278 |
-
#:
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: modules/
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: modules/
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: modules/
|
291 |
-
msgid "
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: modules/
|
295 |
-
msgid "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: modules/
|
299 |
-
msgid "
|
300 |
msgstr ""
|
301 |
|
302 |
-
|
303 |
-
|
|
|
|
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: modules/
|
307 |
-
msgid "
|
|
|
|
|
|
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: modules/
|
311 |
-
msgid "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: modules/
|
315 |
-
msgid ""
|
316 |
-
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
317 |
-
"Settings tab."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: modules/
|
321 |
-
msgid "
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: modules/
|
325 |
-
msgid "
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: modules/
|
329 |
-
msgid "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: modules/
|
333 |
-
msgid "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: modules/
|
337 |
-
msgid "
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: modules/
|
341 |
-
msgid "
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: modules/
|
345 |
-
msgid "
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: modules/
|
349 |
-
msgid "
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: modules/
|
353 |
-
msgid "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: modules/
|
357 |
-
msgid "
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: modules/
|
361 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: modules/
|
365 |
-
msgid "
|
|
|
|
|
|
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: modules/
|
369 |
-
msgid "
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: modules/
|
373 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
374 |
msgstr ""
|
375 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
#: modules/titles/titles.php:12
|
377 |
msgid "Title Tag Rewriter"
|
378 |
msgstr ""
|
@@ -381,6 +412,10 @@ msgstr ""
|
|
381 |
msgid "Default Formats"
|
382 |
msgstr ""
|
383 |
|
|
|
|
|
|
|
|
|
384 |
#: modules/titles/titles.php:30
|
385 |
msgid "Title Tag"
|
386 |
msgstr ""
|
@@ -502,361 +537,578 @@ msgid ""
|
|
502 |
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: modules/
|
506 |
-
msgid "
|
|
|
|
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: modules/
|
510 |
-
msgid "
|
511 |
msgstr ""
|
512 |
|
513 |
-
|
514 |
-
|
515 |
-
#: modules/sds-blog/sds-blog.php:49
|
516 |
-
msgid "SEO Design Solutions"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: modules/
|
520 |
-
msgid ""
|
521 |
-
"The search engine optimization articles below are loaded from the website of "
|
522 |
-
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
523 |
-
"an article’s title to read it."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: modules/
|
527 |
-
msgid "
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: modules/
|
531 |
-
msgid ""
|
532 |
-
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
533 |
-
"once the file permissions are corrected."
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: modules/
|
537 |
-
msgid ""
|
538 |
-
"WordPress won’t be able to display your robots.txt file because the "
|
539 |
-
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
540 |
-
"structure</a> is in use."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: modules/
|
544 |
-
msgid "
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: modules/
|
548 |
-
msgid "
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: modules/
|
552 |
-
msgid "
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: modules/
|
556 |
-
msgid "
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: modules/
|
560 |
-
msgid ""
|
561 |
-
"Please realize that incorrectly editing your robots.txt file could block "
|
562 |
-
"search engines from your site."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: modules/
|
566 |
-
msgid ".
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: modules/
|
570 |
-
msgid ""
|
571 |
-
"Also, incorrectly editing your .htaccess file could disable your entire "
|
572 |
-
"website. Edit with caution!"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: modules/
|
576 |
msgid ""
|
577 |
-
"
|
578 |
-
"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: modules/
|
582 |
-
msgid "
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: modules/
|
586 |
-
msgid "
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: modules/
|
590 |
-
msgid "
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: modules/
|
594 |
-
msgid "
|
|
|
|
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: modules/
|
598 |
-
msgid "
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: modules/
|
602 |
-
msgid "
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: modules/
|
606 |
-
msgid "
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: modules/
|
610 |
-
msgid ""
|
611 |
-
"(Note: This translated documentation was designed for an older version of "
|
612 |
-
"SEO Ultimate and may be outdated.)"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: modules/
|
616 |
-
msgid "
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: modules/
|
620 |
-
msgid "
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: modules/
|
624 |
-
msgid "
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: modules/
|
628 |
-
msgid "
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: modules/
|
632 |
-
msgid "
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: modules/
|
636 |
-
msgid "
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: modules/
|
640 |
-
msgid "
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: modules/
|
644 |
-
msgid "
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: modules/
|
648 |
-
msgid "
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: modules/
|
652 |
-
msgid "
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: modules/
|
656 |
-
msgid "
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: modules/
|
660 |
-
msgid "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
664 |
msgid ""
|
665 |
-
"
|
666 |
-
"
|
|
|
|
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: modules/
|
670 |
-
msgid "
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: modules/
|
674 |
-
msgid "
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: modules/
|
678 |
-
msgid "
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: modules/
|
682 |
-
msgid "
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: modules/
|
686 |
-
msgid "
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: modules/
|
690 |
-
msgid "
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: modules/
|
694 |
-
msgid "
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: modules/
|
698 |
-
msgid "
|
|
|
|
|
|
|
|
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: modules/
|
702 |
-
msgid "
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: modules/
|
706 |
-
msgid "
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: modules/
|
710 |
-
msgid "
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
714 |
msgid ""
|
715 |
-
"
|
716 |
-
"files."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: modules/
|
720 |
msgid ""
|
721 |
-
"
|
722 |
-
"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: modules/
|
726 |
-
msgid "
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: modules/
|
730 |
-
msgid "
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: modules/
|
734 |
-
msgid "
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: modules/
|
738 |
-
msgid "
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: modules/
|
742 |
-
msgid "
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: modules/
|
746 |
-
msgid "
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: modules/
|
750 |
-
msgid "
|
|
|
|
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: modules/
|
754 |
-
msgid "
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: modules/
|
758 |
-
msgid "
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: modules/
|
762 |
-
msgid "
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: modules/
|
766 |
-
msgid "
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: modules/
|
|
|
|
|
|
|
|
|
770 |
msgid ""
|
771 |
-
"
|
772 |
-
"Then click the “Upgrade” button at the bottom of the screen."
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: modules/
|
776 |
-
msgid "
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: modules/
|
780 |
-
msgid ""
|
781 |
-
"There was an error retrieving the list of available versions. Please try "
|
782 |
-
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
783 |
-
"using the WordPress plugin upgrader."
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: modules/
|
|
|
|
|
|
|
|
|
787 |
msgid ""
|
788 |
-
"
|
789 |
-
"supported. Although unlikely, you may lose data in the downgrading process. "
|
790 |
-
"It is your responsibility to backup your database before proceeding."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
794 |
msgid ""
|
795 |
-
"
|
796 |
-
"
|
797 |
-
"the screen."
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: modules/
|
801 |
-
msgid "
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
805 |
msgid ""
|
806 |
-
"
|
807 |
-
"
|
|
|
|
|
|
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: modules/
|
811 |
msgid ""
|
812 |
-
"
|
813 |
-
"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: modules/
|
817 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: modules/
|
821 |
-
msgid "
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: modules/
|
825 |
-
msgid ""
|
826 |
-
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
827 |
-
"blog."
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: modules/
|
831 |
-
msgid "
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: modules/
|
835 |
-
msgid "
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: modules/
|
839 |
-
msgid "
|
|
|
|
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: modules/
|
843 |
-
msgid "
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: modules/
|
847 |
-
msgid "
|
|
|
|
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: modules/
|
851 |
-
msgid "
|
|
|
|
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: modules/settings/
|
855 |
-
msgid "
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: modules/settings/
|
859 |
-
msgid "
|
860 |
msgstr ""
|
861 |
|
862 |
#: modules/settings/settings-data.php:16
|
@@ -1027,481 +1279,326 @@ msgstr ""
|
|
1027 |
msgid "Restore Default Settings"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: modules/
|
1031 |
-
msgid "
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: modules/competition-queries/competition-queries.php:13
|
1035 |
-
msgid "Comp. Researcher"
|
1036 |
-
msgstr ""
|
1037 |
-
|
1038 |
-
#: modules/competition-queries/competition-queries.php:17
|
1039 |
-
msgid ""
|
1040 |
-
"The Competition Researcher provides you with easy access to various search "
|
1041 |
-
"engine tools which you can use to research multiple search queries or URLs."
|
1042 |
-
msgstr ""
|
1043 |
-
|
1044 |
-
#: modules/competition-queries/competition-queries.php:21
|
1045 |
-
msgid "Step 1: Choose Your Research Tool"
|
1046 |
-
msgstr ""
|
1047 |
-
|
1048 |
-
#: modules/competition-queries/competition-queries.php:25
|
1049 |
-
msgid "Keywords"
|
1050 |
-
msgstr ""
|
1051 |
-
|
1052 |
-
#: modules/competition-queries/competition-queries.php:25
|
1053 |
-
msgid "Normal Search"
|
1054 |
-
msgstr ""
|
1055 |
-
|
1056 |
-
#: modules/competition-queries/competition-queries.php:25
|
1057 |
-
msgid "Find out how many pages contain the words in each query"
|
1058 |
-
msgstr ""
|
1059 |
-
|
1060 |
-
#: modules/competition-queries/competition-queries.php:26
|
1061 |
-
msgid "Phrase Match"
|
1062 |
-
msgstr ""
|
1063 |
-
|
1064 |
-
#: modules/competition-queries/competition-queries.php:26
|
1065 |
-
msgid ""
|
1066 |
-
"Find out how many “actual” pages are competing for each query"
|
1067 |
-
msgstr ""
|
1068 |
-
|
1069 |
-
#: modules/competition-queries/competition-queries.php:27
|
1070 |
-
msgid "Allinanchor"
|
1071 |
-
msgstr ""
|
1072 |
-
|
1073 |
-
#: modules/competition-queries/competition-queries.php:27
|
1074 |
-
msgid "Find out which sites have the most links for each query"
|
1075 |
-
msgstr ""
|
1076 |
-
|
1077 |
-
#: modules/competition-queries/competition-queries.php:28
|
1078 |
-
msgid "Allintitle"
|
1079 |
-
msgstr ""
|
1080 |
-
|
1081 |
-
#: modules/competition-queries/competition-queries.php:28
|
1082 |
-
msgid ""
|
1083 |
-
"Find out which sites have the highest relevance in the title for each query"
|
1084 |
-
msgstr ""
|
1085 |
-
|
1086 |
-
#: modules/competition-queries/competition-queries.php:29
|
1087 |
-
msgid "Allintext"
|
1088 |
-
msgstr ""
|
1089 |
-
|
1090 |
-
#: modules/competition-queries/competition-queries.php:29
|
1091 |
-
msgid "Find out which sites have the most relevant content/text on their pages"
|
1092 |
-
msgstr ""
|
1093 |
-
|
1094 |
-
#: modules/competition-queries/competition-queries.php:30
|
1095 |
-
msgid "Allinurl"
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
#: modules/competition-queries/competition-queries.php:30
|
1099 |
-
msgid ""
|
1100 |
-
"Find out which sites have the most relevant naming conventions for each "
|
1101 |
-
"keyword"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: modules/competition-queries/competition-queries.php:32
|
1105 |
-
msgid "URLs"
|
1106 |
-
msgstr ""
|
1107 |
-
|
1108 |
-
#: modules/competition-queries/competition-queries.php:32
|
1109 |
-
msgid "Site"
|
1110 |
-
msgstr ""
|
1111 |
-
|
1112 |
-
#: modules/competition-queries/competition-queries.php:32
|
1113 |
-
msgid "Find out how many pages are indexed for each domain"
|
1114 |
-
msgstr ""
|
1115 |
-
|
1116 |
-
#: modules/competition-queries/competition-queries.php:33
|
1117 |
-
#: modules/competition-queries/competition-queries.php:38
|
1118 |
-
msgid "Inbound Links"
|
1119 |
-
msgstr ""
|
1120 |
-
|
1121 |
-
#: modules/competition-queries/competition-queries.php:33
|
1122 |
-
msgid "Find out how many sites link to the domains"
|
1123 |
-
msgstr ""
|
1124 |
-
|
1125 |
-
#: modules/competition-queries/competition-queries.php:34
|
1126 |
-
#: modules/competition-queries/competition-queries.php:38
|
1127 |
-
msgid "Outbound Links"
|
1128 |
-
msgstr ""
|
1129 |
-
|
1130 |
-
#: modules/competition-queries/competition-queries.php:34
|
1131 |
-
msgid "Find out how many sites the domains link to"
|
1132 |
-
msgstr ""
|
1133 |
-
|
1134 |
-
#: modules/competition-queries/competition-queries.php:56
|
1135 |
-
msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: modules/competition-queries/competition-queries.php:58
|
1139 |
-
msgid "(Type in one per line)"
|
1140 |
-
msgstr ""
|
1141 |
-
|
1142 |
-
#: modules/competition-queries/competition-queries.php:60
|
1143 |
-
msgid "Step 3: Set Options and Submit"
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: modules/competition-queries/competition-queries.php:62
|
1147 |
-
#: modules/site-keyword-queries/site-keyword-queries.php:28
|
1148 |
-
msgid "Show 100 results per page"
|
1149 |
-
msgstr ""
|
1150 |
-
|
1151 |
-
#: modules/competition-queries/competition-queries.php:64
|
1152 |
-
#: modules/site-keyword-queries/site-keyword-queries.php:30
|
1153 |
-
msgid "Use Google’s minimal mode"
|
1154 |
-
msgstr ""
|
1155 |
-
|
1156 |
-
#: modules/competition-queries/competition-queries.php:70
|
1157 |
-
#: modules/site-keyword-queries/site-keyword-queries.php:33
|
1158 |
-
msgid "Submit"
|
1159 |
-
msgstr ""
|
1160 |
-
|
1161 |
-
#: modules/meta/meta-robots.php:12
|
1162 |
-
msgid "Meta Robot Tags Editor"
|
1163 |
-
msgstr ""
|
1164 |
-
|
1165 |
-
#: modules/meta/meta-robots.php:13
|
1166 |
-
msgid "Meta Robot Tags"
|
1167 |
-
msgstr ""
|
1168 |
-
|
1169 |
-
#: modules/meta/meta-robots.php:21
|
1170 |
-
msgid "Spider Instructions"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: modules/
|
1174 |
msgid ""
|
1175 |
-
"
|
|
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: modules/
|
1179 |
msgid ""
|
1180 |
-
"
|
1181 |
-
"
|
1182 |
-
msgstr ""
|
1183 |
-
|
1184 |
-
#: modules/meta/meta-robots.php:29
|
1185 |
-
msgid "Don’t cache or archive this site."
|
1186 |
-
msgstr ""
|
1187 |
-
|
1188 |
-
#: modules/meta/meta-descriptions.php:12
|
1189 |
-
msgid "Meta Description Editor"
|
1190 |
-
msgstr ""
|
1191 |
-
|
1192 |
-
#: modules/meta/meta-descriptions.php:13
|
1193 |
-
msgid "Meta Descriptions"
|
1194 |
-
msgstr ""
|
1195 |
-
|
1196 |
-
#: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:24
|
1197 |
-
msgid "Blog Homepage"
|
1198 |
-
msgstr ""
|
1199 |
-
|
1200 |
-
#: modules/meta/meta-descriptions.php:31
|
1201 |
-
msgid "Meta Description"
|
1202 |
-
msgstr ""
|
1203 |
-
|
1204 |
-
#: modules/meta/meta-descriptions.php:46
|
1205 |
-
msgid "Post Description Format"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: modules/
|
1209 |
-
msgid "
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: modules/
|
1213 |
-
msgid "
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: modules/
|
1217 |
-
msgid "
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: modules/
|
1221 |
-
msgid "
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: modules/
|
1225 |
-
msgid "
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: modules/
|
1229 |
-
msgid ""
|
1230 |
-
"<strong>Description</strong> — The value of the meta description tag. "
|
1231 |
-
"The description will often appear underneath the title in search engine "
|
1232 |
-
"results. Writing an accurate, attention-grabbing description for every post "
|
1233 |
-
"is important to ensuring a good search results clickthrough rate."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: modules/
|
1237 |
-
msgid "
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: modules/
|
1241 |
-
msgid "
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: modules/
|
1245 |
-
msgid "
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: modules/
|
1249 |
-
msgid "
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: modules/
|
1253 |
-
msgid "
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: modules/
|
1257 |
-
msgid "
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: modules/
|
1261 |
-
msgid "
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: modules/
|
1265 |
-
msgid "
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: modules/
|
1269 |
-
msgid "
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: modules/
|
1273 |
-
msgid "
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: modules/
|
1277 |
-
msgid "
|
|
|
|
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: modules/
|
1281 |
-
msgid "
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: modules/
|
1285 |
msgid ""
|
1286 |
-
"
|
1287 |
-
"
|
1288 |
-
"
|
1289 |
-
"three</samp>."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: modules/
|
1293 |
-
msgid "
|
|
|
|
|
|
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: modules/
|
1297 |
-
msgid "
|
|
|
|
|
|
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: modules/
|
1301 |
-
msgid "
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: modules/
|
1305 |
-
msgid "
|
|
|
|
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: modules/
|
1309 |
-
msgid "
|
|
|
|
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: modules/
|
1313 |
-
msgid ""
|
1314 |
-
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1315 |
-
"block indexing of the entire site, regardless of which options are set below."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: modules/
|
1319 |
-
msgid "
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: modules/
|
1323 |
-
msgid "
|
|
|
|
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: modules/
|
1327 |
-
msgid "
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: modules/
|
1331 |
-
msgid "
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: modules/
|
1335 |
-
msgid "
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: modules/
|
1339 |
-
msgid "
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: modules/
|
1343 |
-
msgid "
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: modules/
|
1347 |
-
msgid "
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: modules/
|
1351 |
-
msgid "
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: modules/
|
1355 |
-
msgid "
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: modules/
|
1359 |
-
msgid "
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: modules/
|
1363 |
-
msgid "
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: modules/
|
1367 |
-
msgid "
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: modules/
|
1371 |
-
msgid "
|
|
|
|
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: modules/
|
1375 |
-
msgid "
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: modules/
|
1379 |
-
msgid "
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: modules/
|
1383 |
-
msgid "
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: modules/
|
1387 |
-
msgid "
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: modules/
|
1391 |
-
msgid "
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: modules/
|
1395 |
-
msgid "
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: modules/
|
1399 |
-
msgid "
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: modules/
|
1403 |
-
msgid "
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: modules/
|
1407 |
-
msgid "
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: modules/
|
1411 |
-
msgid ""
|
1412 |
-
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
1413 |
-
"a certain word or phrase in your post/page content to a URL you specify."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: modules/
|
1417 |
-
msgid "
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: modules/
|
1421 |
-
msgid "
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: modules/
|
1425 |
-
msgid "
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: modules/
|
1429 |
-
msgid "
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: modules/
|
1433 |
-
msgid "
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: modules/
|
1437 |
-
msgid "
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: modules/
|
1441 |
-
msgid "
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: modules/
|
1445 |
-
msgid "
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: modules/
|
1449 |
-
msgid "
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: modules/
|
1453 |
-
msgid "
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: modules/
|
1457 |
-
msgid "
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: modules/
|
1461 |
-
msgid "
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: modules/
|
1465 |
-
msgid "
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: modules/
|
1469 |
-
msgid "
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: modules/
|
1473 |
-
msgid "
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: modules/
|
1477 |
-
msgid "
|
|
|
|
|
|
|
|
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: modules/
|
1481 |
-
msgid ""
|
1482 |
-
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
1483 |
-
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
1484 |
-
"other posts and link it to this post. For example, if the post you’re "
|
1485 |
-
"editing is about “blue widgets,” you could type “blue "
|
1486 |
-
"widgets” into the “Incoming Autolink Anchors” box and "
|
1487 |
-
"Deeplink Juggernaut will automatically build internal links to this post "
|
1488 |
-
"with that anchor text (assuming other posts contain that text)."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: modules/
|
1492 |
-
|
|
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: modules/
|
1496 |
-
msgid "
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: modules/
|
1500 |
-
msgid "
|
|
|
|
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: modules/
|
1504 |
-
msgid "
|
1505 |
msgstr ""
|
1506 |
|
1507 |
#: modules/rich-snippets/rich-snippets.php:12
|
@@ -1604,235 +1701,161 @@ msgstr ""
|
|
1604 |
msgid "Star Rating for Reviewed Item:"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: modules/
|
1608 |
-
msgid "
|
1609 |
-
msgstr ""
|
1610 |
-
|
1611 |
-
#: modules/more-links/more-links.php:27
|
1612 |
-
msgid "Default More Link Text"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: modules/
|
1616 |
-
msgid "
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: modules/
|
1620 |
-
msgid "
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: modules/
|
1624 |
-
msgid "
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: modules/
|
1628 |
-
msgid ""
|
1629 |
-
"SEO Ultimate’s features are located in groups called “modules."
|
1630 |
-
"” By default, most of these modules are listed in the “"
|
1631 |
-
"SEO” menu on the left. Whenever you’re working with a module, "
|
1632 |
-
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1633 |
-
"corner of your administration screen."
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: modules/
|
1637 |
-
msgid ""
|
1638 |
-
"The Module Manager lets you disable or hide modules you don’t use. "
|
1639 |
-
"You can also silence modules from displaying bubble alerts on the menu."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: modules/
|
1643 |
-
msgid "
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: modules/
|
1647 |
-
msgid "
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: modules/
|
1651 |
-
msgid "
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: modules/
|
1655 |
-
msgid "
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: modules/
|
1659 |
-
msgid "
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: modules/
|
1663 |
-
msgid "
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: modules/
|
1667 |
-
msgid "
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: modules/
|
1671 |
msgid ""
|
1672 |
-
"
|
1673 |
-
"
|
1674 |
-
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
1675 |
-
"Ultimate."
|
1676 |
-
msgstr ""
|
1677 |
-
|
1678 |
-
#: modules/class.su-importmodule.php:53
|
1679 |
-
msgid "Conflict Resolution Mode"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: modules/
|
1683 |
-
msgid ""
|
1684 |
-
"What should the import tool do if it tries to move over a post’s %s "
|
1685 |
-
"data, but different data already exists in the corresponding SEO Ultimate "
|
1686 |
-
"fields?"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: modules/
|
1690 |
-
msgid "
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: modules/
|
1694 |
-
msgid "
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: modules/
|
1698 |
-
msgid "
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: modules/
|
1702 |
-
msgid "
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: modules/
|
1706 |
-
msgid ""
|
1707 |
-
"When the migration tool successfully copies a post’s %1$s data over to "
|
1708 |
-
"SEO Ultimate, what should it do with the old %1$s data?"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: modules/
|
1712 |
-
msgid "
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: modules/
|
1716 |
-
msgid "
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: modules/
|
1720 |
-
msgid "
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: modules/
|
1724 |
-
msgid ""
|
1725 |
-
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
1726 |
-
"target=\"_blank\">backup your database</a> before proceeding!"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: modules/
|
1730 |
-
msgid "
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: modules/
|
1734 |
-
msgid "
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: modules/
|
1738 |
-
msgid "
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: modules/
|
1742 |
-
msgid "
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: modules/
|
1746 |
-
msgid "
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: modules/
|
1750 |
-
msgid "Imported a total of %d fields for one post/page/revision."
|
1751 |
-
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
1752 |
-
msgstr[0] ""
|
1753 |
-
msgstr[1] ""
|
1754 |
-
|
1755 |
-
#: modules/class.su-importmodule.php:180
|
1756 |
-
msgid "Skipped one post with disabled %2$s data."
|
1757 |
-
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
1758 |
-
msgstr[0] ""
|
1759 |
-
msgstr[1] ""
|
1760 |
-
|
1761 |
-
#: modules/class.su-importmodule.php:186
|
1762 |
msgid ""
|
1763 |
-
"
|
1764 |
-
"
|
1765 |
-
|
1766 |
-
"
|
1767 |
-
"
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
#: modules/class.su-importmodule.php:192
|
1772 |
-
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
1773 |
-
msgid_plural ""
|
1774 |
-
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
1775 |
-
msgstr[0] ""
|
1776 |
-
msgstr[1] ""
|
1777 |
-
|
1778 |
-
#: modules/site-keyword-queries/site-keyword-queries.php:12
|
1779 |
-
msgid "Internal Relevance Researcher"
|
1780 |
-
msgstr ""
|
1781 |
-
|
1782 |
-
#: modules/site-keyword-queries/site-keyword-queries.php:13
|
1783 |
-
msgid "Int. Rel. Researcher"
|
1784 |
-
msgstr ""
|
1785 |
-
|
1786 |
-
#: modules/site-keyword-queries/site-keyword-queries.php:21
|
1787 |
-
msgid "Step 1: Enter Keywords"
|
1788 |
-
msgstr ""
|
1789 |
-
|
1790 |
-
#: modules/site-keyword-queries/site-keyword-queries.php:23
|
1791 |
-
msgid "(Type one keyword per line)"
|
1792 |
-
msgstr ""
|
1793 |
-
|
1794 |
-
#: modules/site-keyword-queries/site-keyword-queries.php:25
|
1795 |
-
msgid "Step 2: Set Options and Submit"
|
1796 |
-
msgstr ""
|
1797 |
-
|
1798 |
-
#: modules/site-keyword-queries/site-keyword-queries.php:27
|
1799 |
-
msgid "Put keywords in quotes"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#:
|
1803 |
-
msgid "
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#:
|
1807 |
-
msgid "
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#:
|
1811 |
-
msgid "
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#:
|
1815 |
-
msgid "
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#:
|
1819 |
-
msgid "
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#:
|
1823 |
-
msgid ""
|
1824 |
-
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
1825 |
-
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
1826 |
-
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
1827 |
-
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
1828 |
-
"to be currently installed or activated for the import to take place."
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#:
|
1832 |
-
msgid ""
|
1833 |
-
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
1834 |
-
"you use an older version of AIOSP, you should update to the latest version "
|
1835 |
-
"first and run AIOSP’s upgrade process."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#. Plugin URI of the plugin/theme
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEO Ultimate 4.7\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2010-12-28 18:13:25+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: seo-ultimate.php:90
|
16 |
msgid ""
|
17 |
"SEO Ultimate requires WordPress %s or above. Please upgrade to the latest "
|
18 |
"version of WordPress to enable SEO Ultimate on your blog, or deactivate SEO "
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 4.7) #-#-#-#-#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
#. Plugin Name of the plugin/theme
|
24 |
#: plugin/class.seo-ultimate.php:756 modules/settings/settings.php:14
|
25 |
msgid "SEO Ultimate"
|
111 |
msgid "SEO Settings"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: plugin/su-functions.php:77 includes/jlfunctions/str.php:94
|
115 |
+
msgid "%s and %s"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: plugin/su-functions.php:80 includes/jlfunctions/str.php:97
|
119 |
+
msgid ", "
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: plugin/su-functions.php:81 includes/jlfunctions/str.php:98
|
123 |
+
msgid "%s, and %s"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: plugin/class.su-installer.php:9
|
127 |
+
msgid "Package not available."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: plugin/class.su-installer.php:12
|
131 |
+
msgid "Removing the current version of the plugin…"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: plugin/class.su-installer.php:13
|
135 |
+
msgid "Could not remove the current version of the plugin."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: plugin/class.su-installer.php:17
|
139 |
+
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: plugin/class.su-installer.php:18
|
143 |
+
msgid "Unpacking the downgrade…"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: plugin/class.su-installer.php:19
|
147 |
+
msgid "Installing the downgrade…"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: plugin/class.su-installer.php:20
|
151 |
+
msgid "Plugin downgrade failed."
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: plugin/class.su-installer.php:21
|
155 |
+
msgid "Plugin downgraded successfully."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: plugin/class.su-installer.php:24
|
159 |
+
msgid "Downloading from <span class=\"code\">%s</span>…"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: plugin/class.su-installer.php:25
|
163 |
+
msgid "Unpacking the reinstall…"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: plugin/class.su-installer.php:26
|
167 |
+
msgid "Reinstalling the current version…"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: plugin/class.su-installer.php:27
|
171 |
+
msgid "Plugin reinstallation failed."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: plugin/class.su-installer.php:28
|
175 |
+
msgid "Plugin reinstalled successfully."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: plugin/class.su-installer.php:32
|
179 |
+
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: plugin/class.su-installer.php:33
|
183 |
+
msgid "Unpacking the upgrade…"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: plugin/class.su-installer.php:34
|
187 |
+
msgid "Installing the upgrade…"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: plugin/class.su-installer.php:35
|
191 |
+
msgid "Plugin upgrade failed."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: plugin/class.su-installer.php:36
|
195 |
+
msgid "Plugin upgraded successfully."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: modules/more-links/more-links.php:12
|
199 |
+
msgid "More Link Customizer"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: modules/more-links/more-links.php:27
|
203 |
+
msgid "Default More Link Text"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: modules/more-links/more-links.php:48
|
207 |
+
msgid "More Link Text:"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: modules/sds-blog/sds-blog.php:12
|
211 |
+
msgid "Whitepapers"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: modules/sds-blog/sds-blog.php:13
|
215 |
+
msgid "SEO Design Solutions Whitepapers"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 4.7) #-#-#-#-#
|
219 |
+
#. Author of the plugin/theme
|
220 |
+
#: modules/sds-blog/sds-blog.php:49
|
221 |
+
msgid "SEO Design Solutions"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: modules/sds-blog/sds-blog.php:50
|
225 |
+
msgid ""
|
226 |
+
"The search engine optimization articles below are loaded from the website of "
|
227 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
228 |
+
"an article’s title to read it."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: modules/linkbox/linkbox.php:12
|
232 |
+
msgid "Linkbox Inserter"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: modules/linkbox/linkbox.php:18
|
236 |
+
msgid "Link to this post!"
|
|
|
|
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: modules/linkbox/linkbox.php:45
|
240 |
+
msgid "At the end of posts"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: modules/linkbox/linkbox.php:46
|
244 |
+
msgid "At the end of pages"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: modules/linkbox/linkbox.php:47
|
248 |
+
msgid "When called by the su_linkbox hook"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: modules/linkbox/linkbox.php:48
|
252 |
+
msgid "Display linkboxes..."
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: modules/linkbox/linkbox.php:49
|
256 |
+
msgid "Linkbox HTML"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
260 |
+
msgid "Import from All in One SEO Pack"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
264 |
+
msgid "AIOSP Import"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
268 |
+
msgid "All in One SEO Pack"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: modules/import-aiosp/import-aiosp.php:16
|
272 |
+
msgid "AIOSP"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: modules/import-aiosp/import-aiosp.php:17
|
276 |
+
msgid "Import post data (custom title tags and meta tags)."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: modules/import-aiosp/import-aiosp.php:21
|
280 |
+
msgid ""
|
281 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
282 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
283 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
284 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
285 |
+
"to be currently installed or activated for the import to take place."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: modules/import-aiosp/import-aiosp.php:23
|
289 |
+
msgid ""
|
290 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
291 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
292 |
+
"first and run AIOSP’s upgrade process."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: modules/class.su-importmodule.php:49
|
296 |
+
msgid "Import Post Fields"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: modules/class.su-importmodule.php:50
|
300 |
+
msgid ""
|
301 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
302 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
303 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
304 |
+
"Ultimate."
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: modules/class.su-importmodule.php:53
|
308 |
+
msgid "Conflict Resolution Mode"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: modules/class.su-importmodule.php:54
|
312 |
+
msgid ""
|
313 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
314 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
315 |
+
"fields?"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: modules/class.su-importmodule.php:56
|
319 |
+
msgid "Skip that post and leave all data as-is (default)."
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: modules/class.su-importmodule.php:57
|
323 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: modules/class.su-importmodule.php:58
|
327 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: modules/class.su-importmodule.php:61
|
331 |
+
msgid "Deletion Preference"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: modules/class.su-importmodule.php:62
|
335 |
+
msgid ""
|
336 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
337 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: modules/class.su-importmodule.php:64
|
341 |
+
msgid "Delete the %s data."
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: modules/class.su-importmodule.php:65
|
345 |
+
msgid "Leave behind the duplicate %s data (default)."
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: modules/class.su-importmodule.php:72
|
349 |
+
msgid "Import Now"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: modules/class.su-importmodule.php:75
|
353 |
+
msgid ""
|
354 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
355 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: modules/class.su-importmodule.php:84
|
359 |
+
msgid "Import complete."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: modules/class.su-importmodule.php:90
|
363 |
+
msgid "Return to import page"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: modules/class.su-importmodule.php:93
|
367 |
+
msgid "Return to settings page"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: modules/class.su-importmodule.php:96
|
371 |
+
msgid "Return to SEO page"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: modules/class.su-importmodule.php:116
|
375 |
+
msgid "Deactivated %s."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: modules/class.su-importmodule.php:174
|
379 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
380 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
381 |
+
msgstr[0] ""
|
382 |
+
msgstr[1] ""
|
383 |
+
|
384 |
+
#: modules/class.su-importmodule.php:180
|
385 |
+
msgid "Skipped one post with disabled %2$s data."
|
386 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
387 |
+
msgstr[0] ""
|
388 |
+
msgstr[1] ""
|
389 |
+
|
390 |
+
#: modules/class.su-importmodule.php:186
|
391 |
+
msgid ""
|
392 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
393 |
+
"settings you chose."
|
394 |
+
msgid_plural ""
|
395 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
396 |
+
"settings you chose."
|
397 |
+
msgstr[0] ""
|
398 |
+
msgstr[1] ""
|
399 |
+
|
400 |
+
#: modules/class.su-importmodule.php:192
|
401 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
402 |
+
msgid_plural ""
|
403 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
404 |
+
msgstr[0] ""
|
405 |
+
msgstr[1] ""
|
406 |
+
|
407 |
#: modules/titles/titles.php:12
|
408 |
msgid "Title Tag Rewriter"
|
409 |
msgstr ""
|
412 |
msgid "Default Formats"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: modules/titles/titles.php:24 modules/404s/fofs-settings.php:17
|
416 |
+
msgid "Settings"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
#: modules/titles/titles.php:30
|
420 |
msgid "Title Tag"
|
421 |
msgstr ""
|
537 |
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: modules/class.su-module.php:368
|
541 |
+
msgid ""
|
542 |
+
"(Note: This translated documentation was designed for an older version of "
|
543 |
+
"SEO Ultimate and may be outdated.)"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: modules/class.su-module.php:1010
|
547 |
+
msgid "%s %s|Dropdown Title"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: modules/class.su-module.php:1038
|
551 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
|
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: modules/class.su-module.php:1095
|
555 |
+
msgid "Name"
|
|
|
|
|
|
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: modules/class.su-module.php:1106
|
559 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: modules/class.su-module.php:1190
|
563 |
+
msgid "«"
|
|
|
|
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: modules/class.su-module.php:1191
|
567 |
+
msgid "»"
|
|
|
|
|
|
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: modules/class.su-module.php:1198
|
571 |
+
msgid "Displaying %s–%s of %s"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: modules/class.su-module.php:1211 modules/404s/fofs-log.php:115
|
575 |
+
msgid "Actions"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: modules/class.su-module.php:1212
|
579 |
+
msgid "ID"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: modules/class.su-module.php:1245
|
583 |
+
msgid "View"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: modules/class.su-module.php:1245
|
587 |
+
msgid "Edit"
|
|
|
|
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: modules/class.su-module.php:1400
|
591 |
+
msgid "Settings updated."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: modules/class.su-module.php:1424
|
595 |
+
msgid "Save Changes"
|
|
|
|
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: modules/class.su-module.php:1912
|
599 |
msgid ""
|
600 |
+
"Are you sure you want to replace the textbox contents with this default "
|
601 |
+
"value?"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: modules/class.su-module.php:1927 modules/settings/settings-data.php:23
|
605 |
+
msgid "Reset"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: modules/noindex/noindex.php:12
|
609 |
+
msgid "Noindex Manager"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: modules/noindex/noindex.php:13
|
613 |
+
msgid "Noindex"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: modules/noindex/noindex.php:44
|
617 |
+
msgid ""
|
618 |
+
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
619 |
+
"block indexing of the entire site, regardless of which options are set below."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: modules/noindex/noindex.php:47
|
623 |
+
msgid "Prevent indexing of..."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: modules/noindex/noindex.php:48
|
627 |
+
msgid "Administration back-end pages"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: modules/noindex/noindex.php:49
|
631 |
+
msgid "Author archives"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: modules/noindex/noindex.php:50
|
635 |
+
msgid "Blog search pages"
|
|
|
|
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: modules/noindex/noindex.php:51
|
639 |
+
msgid "Category archives"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: modules/noindex/noindex.php:52
|
643 |
+
msgid "Comment feeds"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: modules/noindex/noindex.php:53
|
647 |
+
msgid "Comment subpages"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: modules/noindex/noindex.php:54
|
651 |
+
msgid "Date-based archives"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: modules/noindex/noindex.php:55
|
655 |
+
msgid "Subpages of the homepage"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: modules/noindex/noindex.php:56
|
659 |
+
msgid "Tag archives"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: modules/noindex/noindex.php:57
|
663 |
+
msgid "User login/registration pages"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: modules/noindex/noindex.php:110
|
667 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: modules/noindex/noindex.php:111
|
671 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: modules/noindex/noindex.php:112
|
675 |
+
msgid "Meta Robots Tag:"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: modules/meta/meta-descriptions.php:12
|
679 |
+
msgid "Meta Description Editor"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: modules/meta/meta-descriptions.php:13
|
683 |
+
msgid "Meta Descriptions"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:25
|
687 |
+
msgid "Blog Homepage"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: modules/meta/meta-descriptions.php:31
|
691 |
+
msgid "Meta Description"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: modules/meta/meta-descriptions.php:46
|
695 |
+
msgid "Post Description Format"
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: modules/meta/meta-descriptions.php:53
|
699 |
+
msgid "Blog Homepage Meta Description"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: modules/meta/meta-descriptions.php:55
|
703 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: modules/meta/meta-descriptions.php:56
|
707 |
+
msgid "Default Value"
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#: modules/meta/meta-descriptions.php:95
|
711 |
+
msgid "Meta Description:"
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: modules/meta/meta-descriptions.php:98
|
715 |
+
msgid "You’ve entered %s characters. Most search engines use up to 160."
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: modules/meta/meta-descriptions.php:106
|
719 |
msgid ""
|
720 |
+
"<strong>Description</strong> — The value of the meta description tag. "
|
721 |
+
"The description will often appear underneath the title in search engine "
|
722 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
723 |
+
"is important to ensuring a good search results clickthrough rate."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: modules/meta/meta-keywords.php:12
|
727 |
+
msgid "Meta Keywords Editor"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:31
|
731 |
+
msgid "Meta Keywords"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: modules/meta/meta-keywords.php:24
|
735 |
+
msgid "Default Values"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: modules/meta/meta-keywords.php:38
|
739 |
+
msgid "Sitewide Keywords"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: modules/meta/meta-keywords.php:38
|
743 |
+
msgid "(Separate with commas)"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: modules/meta/meta-keywords.php:44
|
747 |
+
msgid "Blog Homepage Meta Keywords"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: modules/meta/meta-keywords.php:87
|
751 |
+
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: modules/meta/meta-keywords.php:92
|
755 |
+
msgid ""
|
756 |
+
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
757 |
+
"keywords list gives search engines a hint as to what this post/page is "
|
758 |
+
"about. Be sure to separate keywords with commas, like so: <samp>one,two,"
|
759 |
+
"three</samp>."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: modules/meta/webmaster-verify.php:12
|
763 |
+
msgid "Webmaster Verification Assistant"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: modules/meta/webmaster-verify.php:13
|
767 |
+
msgid "W.M. Verification"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: modules/meta/webmaster-verify.php:45
|
771 |
+
msgid "Google Webmaster Tools"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: modules/meta/webmaster-verify.php:46
|
775 |
+
msgid "Yahoo! Site Explorer"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: modules/meta/webmaster-verify.php:47
|
779 |
+
msgid "Bing Webmaster Center"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: modules/meta/meta-robots.php:12
|
783 |
+
msgid "Meta Robot Tags Editor"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: modules/meta/meta-robots.php:13
|
787 |
+
msgid "Meta Robot Tags"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: modules/meta/meta-robots.php:21
|
791 |
+
msgid "Spider Instructions"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: modules/meta/meta-robots.php:27
|
795 |
msgid ""
|
796 |
+
"Don’t use this site’s Open Directory description in search results."
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: modules/meta/meta-robots.php:28
|
800 |
msgid ""
|
801 |
+
"Don’t use this site’s Yahoo! Directory description in search "
|
802 |
+
"results."
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: modules/meta/meta-robots.php:29
|
806 |
+
msgid "Don’t cache or archive this site."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: modules/canonical/canonical.php:12
|
810 |
+
msgid "Canonicalizer"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: modules/canonical/canonical.php:33
|
814 |
+
msgid "Generate <code><link rel="canonical" /></code> tags."
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: modules/canonical/canonical.php:34
|
818 |
+
msgid "Redirect requests for nonexistent pagination."
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: modules/competition-queries/competition-queries.php:12
|
822 |
+
msgid "Competition Researcher"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: modules/competition-queries/competition-queries.php:13
|
826 |
+
msgid "Comp. Researcher"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: modules/competition-queries/competition-queries.php:17
|
830 |
+
msgid ""
|
831 |
+
"The Competition Researcher provides you with easy access to various search "
|
832 |
+
"engine tools which you can use to research multiple search queries or URLs."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: modules/competition-queries/competition-queries.php:21
|
836 |
+
msgid "Step 1: Choose Your Research Tool"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: modules/competition-queries/competition-queries.php:25
|
840 |
+
msgid "Keywords"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: modules/competition-queries/competition-queries.php:25
|
844 |
+
msgid "Normal Search"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: modules/competition-queries/competition-queries.php:25
|
848 |
+
msgid "Find out how many pages contain the words in each query"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: modules/competition-queries/competition-queries.php:26
|
852 |
+
msgid "Phrase Match"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: modules/competition-queries/competition-queries.php:26
|
856 |
msgid ""
|
857 |
+
"Find out how many “actual” pages are competing for each query"
|
|
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: modules/competition-queries/competition-queries.php:27
|
861 |
+
msgid "Allinanchor"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: modules/competition-queries/competition-queries.php:27
|
865 |
+
msgid "Find out which sites have the most links for each query"
|
|
|
|
|
|
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: modules/competition-queries/competition-queries.php:28
|
869 |
+
msgid "Allintitle"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: modules/competition-queries/competition-queries.php:28
|
873 |
msgid ""
|
874 |
+
"Find out which sites have the highest relevance in the title for each query"
|
|
|
|
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: modules/competition-queries/competition-queries.php:29
|
878 |
+
msgid "Allintext"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: modules/competition-queries/competition-queries.php:29
|
882 |
+
msgid "Find out which sites have the most relevant content/text on their pages"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: modules/competition-queries/competition-queries.php:30
|
886 |
+
msgid "Allinurl"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: modules/competition-queries/competition-queries.php:30
|
890 |
msgid ""
|
891 |
+
"Find out which sites have the most relevant naming conventions for each "
|
892 |
+
"keyword"
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: modules/competition-queries/competition-queries.php:32
|
896 |
+
msgid "URLs"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: modules/competition-queries/competition-queries.php:32
|
900 |
+
msgid "Site"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
#: modules/competition-queries/competition-queries.php:32
|
904 |
+
msgid "Find out how many pages are indexed for each domain"
|
905 |
+
msgstr ""
|
906 |
+
|
907 |
+
#: modules/competition-queries/competition-queries.php:33
|
908 |
+
#: modules/competition-queries/competition-queries.php:38
|
909 |
+
msgid "Inbound Links"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: modules/competition-queries/competition-queries.php:33
|
913 |
+
msgid "Find out how many sites link to the domains"
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: modules/competition-queries/competition-queries.php:34
|
917 |
+
#: modules/competition-queries/competition-queries.php:38
|
918 |
+
msgid "Outbound Links"
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#: modules/competition-queries/competition-queries.php:34
|
922 |
+
msgid "Find out how many sites the domains link to"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: modules/competition-queries/competition-queries.php:56
|
926 |
+
msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#: modules/competition-queries/competition-queries.php:58
|
930 |
+
msgid "(Type in one per line)"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: modules/competition-queries/competition-queries.php:60
|
934 |
+
msgid "Step 3: Set Options and Submit"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: modules/competition-queries/competition-queries.php:62
|
938 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:28
|
939 |
+
msgid "Show 100 results per page"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: modules/competition-queries/competition-queries.php:64
|
943 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:30
|
944 |
+
msgid "Use Google’s minimal mode"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: modules/competition-queries/competition-queries.php:70
|
948 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:33
|
949 |
+
msgid "Submit"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:12
|
953 |
+
msgid "Internal Relevance Researcher"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:13
|
957 |
+
msgid "Int. Rel. Researcher"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:21
|
961 |
+
msgid "Step 1: Enter Keywords"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:23
|
965 |
+
msgid "(Type one keyword per line)"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:25
|
969 |
+
msgid "Step 2: Set Options and Submit"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:27
|
973 |
+
msgid "Put keywords in quotes"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: modules/user-code/user-code.php:12
|
977 |
+
msgid "Code Inserter"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: modules/user-code/user-code.php:27
|
981 |
+
msgid "Everywhere"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: modules/user-code/user-code.php:34
|
985 |
+
msgid "<head> Tag"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: modules/user-code/user-code.php:35
|
989 |
+
msgid "Before Item Content"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: modules/user-code/user-code.php:36
|
993 |
+
msgid "After Item Content"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: modules/user-code/user-code.php:37
|
997 |
+
msgid "Footer"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: modules/user-code/user-code.php:51
|
1001 |
+
msgid "Code Inserter module"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: modules/modules/modules.php:12
|
1005 |
+
msgid "Module Manager"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: modules/modules/modules.php:13
|
1009 |
+
msgid "Modules"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: modules/modules/modules.php:33
|
1013 |
msgid ""
|
1014 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
1015 |
+
"” By default, most of these modules are listed in the “"
|
1016 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
1017 |
+
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1018 |
+
"corner of your administration screen."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: modules/modules/modules.php:35
|
1022 |
msgid ""
|
1023 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
1024 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: modules/modules/modules.php:41
|
1028 |
+
msgid "Status"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: modules/modules/modules.php:42
|
1032 |
+
msgid "Module"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: modules/modules/modules.php:55
|
1036 |
+
msgid "Enabled"
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: modules/modules/modules.php:56
|
1040 |
+
msgid "Silenced"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: modules/modules/modules.php:57
|
1044 |
+
msgid "Hidden"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: modules/modules/modules.php:58
|
1048 |
+
msgid "Disabled"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: modules/files/files.php:14
|
1052 |
+
msgid "File Editor"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: modules/files/files.php:53
|
1056 |
+
msgid ""
|
1057 |
+
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
1058 |
+
"once the file permissions are corrected."
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: modules/files/files.php:59
|
1062 |
+
msgid ""
|
1063 |
+
"WordPress won’t be able to display your robots.txt file because the "
|
1064 |
+
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
1065 |
+
"structure</a> is in use."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: modules/files/files.php:66
|
1069 |
+
msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: modules/files/files.php:70
|
1073 |
+
msgid "Enable this custom robots.txt file and disable the default file"
|
|
|
|
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: modules/files/files.php:71
|
1077 |
+
msgid "Let other plugins add rules to my custom robots.txt file"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: modules/files/files.php:72
|
1081 |
+
msgid "robots.txt Settings"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: modules/files/files.php:75
|
1085 |
+
msgid ""
|
1086 |
+
"Please realize that incorrectly editing your robots.txt file could block "
|
1087 |
+
"search engines from your site."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: modules/files/files.php:79
|
1091 |
+
msgid ".htaccess"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: modules/files/files.php:82
|
1095 |
+
msgid ""
|
1096 |
+
"Also, incorrectly editing your .htaccess file could disable your entire "
|
1097 |
+
"website. Edit with caution!"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: modules/files/files.php:134
|
1101 |
+
msgid ""
|
1102 |
+
"Please note that your privacy settings won’t have any effect on your "
|
1103 |
+
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: modules/settings/settings.php:12
|
1107 |
+
msgid "Plugin Settings"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: modules/settings/settings.php:13
|
1111 |
+
msgid "SEO Ultimate Plugin Settings"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
#: modules/settings/settings-data.php:16
|
1279 |
msgid "Restore Default Settings"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: modules/settings/uninstall.php:17
|
1283 |
+
msgid "Uninstaller"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: modules/settings/uninstall.php:27
|
1287 |
msgid ""
|
1288 |
+
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
1289 |
+
"files."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: modules/settings/uninstall.php:30
|
1293 |
msgid ""
|
1294 |
+
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
1295 |
+
"your SEO Ultimate settings and cannot be undone."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: modules/settings/uninstall.php:31
|
1299 |
+
msgid "Uninstall Now"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
|
1303 |
+
msgid "Uninstall SEO Ultimate"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: modules/settings/uninstall.php:46
|
1307 |
+
msgid "Deleted settings."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: modules/settings/uninstall.php:53
|
1311 |
+
msgid "An error occurred while deleting files."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: modules/settings/uninstall.php:55
|
1315 |
+
msgid "Deleted files."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: modules/settings/uninstall.php:56
|
1319 |
+
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
|
|
|
|
|
|
|
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: modules/settings/global-settings.php:18
|
1323 |
+
msgid "Global Settings"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: modules/settings/global-settings.php:40
|
1327 |
+
msgid "Enable nofollow’d attribution link"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: modules/settings/global-settings.php:41
|
1331 |
+
msgid "Enable attribution link CSS styling"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: modules/settings/global-settings.php:42
|
1335 |
+
msgid "Notify me about unnecessary active plugins"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: modules/settings/global-settings.php:43
|
1339 |
+
msgid "Insert comments around HTML code insertions"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: modules/settings/install.php:18
|
1343 |
+
msgid "Upgrade/Downgrade/Reinstall"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: modules/settings/install.php:19
|
1347 |
+
msgid "Installer"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: modules/settings/install.php:23 modules/settings/install.php:48
|
1351 |
+
msgid "Upgrade"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: modules/settings/install.php:24 modules/settings/install.php:71
|
1355 |
+
msgid "Downgrade"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: modules/settings/install.php:25 modules/settings/install.php:86
|
1359 |
+
msgid "Reinstall"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: modules/settings/install.php:42
|
1363 |
+
msgid ""
|
1364 |
+
"From the list below, select the version to which you would like to upgrade. "
|
1365 |
+
"Then click the “Upgrade” button at the bottom of the screen."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: modules/settings/install.php:51
|
1369 |
+
msgid "You are already running the latest version."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: modules/settings/install.php:53
|
1373 |
msgid ""
|
1374 |
+
"There was an error retrieving the list of available versions. Please try "
|
1375 |
+
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
1376 |
+
"using the WordPress plugin upgrader."
|
|
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: modules/settings/install.php:62
|
1380 |
+
msgid ""
|
1381 |
+
"Downgrading is provided as a convenience only and is not officially "
|
1382 |
+
"supported. Although unlikely, you may lose data in the downgrading process. "
|
1383 |
+
"It is your responsibility to backup your database before proceeding."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: modules/settings/install.php:65
|
1387 |
+
msgid ""
|
1388 |
+
"From the list below, select the version to which you would like to "
|
1389 |
+
"downgrade. Then click the “Downgrade” button at the bottom of "
|
1390 |
+
"the screen."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: modules/settings/install.php:74
|
1394 |
+
msgid "Downgrading to versions earlier than %s is not supported."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: modules/settings/install.php:76
|
1398 |
+
msgid ""
|
1399 |
+
"There was an error retrieving the list of available versions. Please try "
|
1400 |
+
"again later."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: modules/settings/install.php:81
|
1404 |
+
msgid ""
|
1405 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
1406 |
+
"currently using, click the “Reinstall” button below."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: modules/settings/install.php:108
|
1410 |
+
msgid "Your Current Version"
|
|
|
|
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: modules/settings/install.php:110
|
1414 |
+
msgid "Latest Version"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: modules/settings/install.php:130
|
1418 |
+
msgid ""
|
1419 |
+
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
1420 |
+
"blog."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: modules/settings/install.php:140
|
1424 |
+
msgid "Downgrade to SEO Ultimate %s"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: modules/settings/install.php:143
|
1428 |
+
msgid "Reinstall SEO Ultimate %s"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: modules/settings/install.php:146
|
1432 |
+
msgid "Upgrade to SEO Ultimate %s"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: modules/404s/fofs.php:11
|
1436 |
+
msgid "404 Monitor"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: modules/404s/fofs-log.php:16
|
1440 |
+
msgid "404 Monitor Log"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: modules/404s/fofs-log.php:17
|
1444 |
+
msgid "Log"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: modules/404s/fofs-log.php:116
|
1448 |
+
msgid "Hits"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: modules/404s/fofs-log.php:117
|
1452 |
+
msgid "URL with 404 Error"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: modules/404s/fofs-log.php:118
|
1456 |
+
msgid "Date of Most Recent Hit"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: modules/404s/fofs-log.php:119
|
1460 |
+
msgid "Referers"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: modules/404s/fofs-log.php:120 modules/404s/fofs-log.php:223
|
1464 |
+
msgid "User Agents"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: modules/404s/fofs-log.php:136
|
1468 |
+
msgid ""
|
1469 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
1470 |
+
"Settings tab."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: modules/404s/fofs-log.php:143
|
1474 |
+
msgid "The log entry was successfully deleted."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: modules/404s/fofs-log.php:145
|
1478 |
+
msgid "This log entry has already been deleted."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: modules/404s/fofs-log.php:154
|
1482 |
+
msgid "The log was successfully cleared."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: modules/404s/fofs-log.php:158
|
1486 |
+
msgid "No 404 errors in the log."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: modules/404s/fofs-log.php:182
|
1490 |
+
msgid "Open URL in new window (will not be logged)"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: modules/404s/fofs-log.php:183
|
1494 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: modules/404s/fofs-log.php:184
|
1498 |
+
msgid "Remove this URL from the log"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: modules/404s/fofs-log.php:187
|
1502 |
+
msgid "%s at %s"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: modules/404s/fofs-log.php:191
|
1506 |
+
msgid "View list of referring URLs"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: modules/404s/fofs-log.php:192
|
1510 |
+
msgid "View list of user agents"
|
|
|
|
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: modules/404s/fofs-log.php:202
|
1514 |
+
msgid "Referring URLs"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: modules/404s/fofs-log.php:203 modules/404s/fofs-log.php:224
|
1518 |
+
msgid "Hide list"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: modules/404s/fofs-log.php:254
|
1522 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: modules/404s/fofs-log.php:256
|
1526 |
+
msgid "Clear Log"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: modules/404s/fofs-settings.php:16
|
1530 |
+
msgid "404 Monitor Settings"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: modules/404s/fofs-settings.php:33
|
1534 |
+
msgid "Continue monitoring for new 404 errors"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: modules/404s/fofs-settings.php:33
|
1538 |
+
msgid "Monitoring Settings"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: modules/404s/fofs-settings.php:35
|
1542 |
+
msgid "Only log these types of 404 errors:"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: modules/404s/fofs-settings.php:36
|
1546 |
+
msgid "404s generated by search engine spiders"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: modules/404s/fofs-settings.php:37
|
1550 |
+
msgid "404s with referring URLs"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: modules/404s/fofs-settings.php:38
|
1554 |
+
msgid "Log Restrictions"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: modules/404s/fofs-settings.php:39
|
1558 |
+
msgid "Maximum Log Entries"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: modules/404s/fofs-settings.php:40
|
1562 |
+
msgid "URLs to Ignore"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: modules/404s/fofs-settings.php:40
|
1566 |
+
msgid "(Use * as wildcard)"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: modules/slugs/slugs.php:12
|
1570 |
+
msgid "Slug Optimizer"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: modules/slugs/slugs.php:16
|
1574 |
+
msgid "Words to Remove"
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:13
|
1578 |
+
msgid "Link Mask Generator"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:25
|
1582 |
+
msgid "Link Masks"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:28
|
1586 |
+
#: modules/autolinks/content-autolinks.php:192
|
1587 |
+
msgid "URL"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:28
|
1591 |
+
msgid "Mask URL"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:48
|
1595 |
+
msgid ""
|
1596 |
+
"You can stop search engines from following a link by typing in a mask for "
|
1597 |
+
"its URL."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:99
|
1601 |
+
msgid "Added by Link Alias Generator module"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
#: modules/rich-snippets/rich-snippets.php:12
|
1701 |
msgid "Star Rating for Reviewed Item:"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
1705 |
+
msgid "Sharing Facilitator"
|
|
|
|
|
|
|
|
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: modules/sharing-buttons/sharing-buttons.php:22
|
1709 |
+
msgid "Bookmark and Share"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: modules/sharing-buttons/sharing-buttons.php:28
|
1713 |
+
msgid "Providers"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: modules/sharing-buttons/sharing-buttons.php:34
|
1717 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: modules/sharing-buttons/sharing-buttons.php:36
|
1721 |
+
msgid "None; disable sharing buttons"
|
|
|
|
|
|
|
|
|
|
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: modules/sharing-buttons/sharing-buttons.php:37
|
1725 |
+
msgid "Use the ShareThis button"
|
|
|
|
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: modules/sharing-buttons/sharing-buttons.php:38
|
1729 |
+
msgid "Use the AddThis button"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: modules/autolinks/autolinks.php:11
|
1733 |
+
msgid "Deeplink Juggernaut"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
1737 |
+
msgid "Content Deeplink Juggernaut Settings"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
1741 |
+
msgid "Content Link Settings"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: modules/autolinks/content-autolinks-settings.php:21
|
1745 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: modules/autolinks/content-autolinks.php:16
|
1749 |
+
msgid "Content Deeplink Juggernaut"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: modules/autolinks/content-autolinks.php:17
|
1753 |
+
msgid "Content Links"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: modules/autolinks/content-autolinks.php:96
|
1757 |
msgid ""
|
1758 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
1759 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
|
|
|
|
|
|
|
|
|
|
|
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: modules/autolinks/content-autolinks.php:132
|
1763 |
+
msgid "Edit Existing Links"
|
|
|
|
|
|
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: modules/autolinks/content-autolinks.php:136
|
1767 |
+
msgid "Add a New Link"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: modules/autolinks/content-autolinks.php:144
|
1771 |
+
msgid "Anchor Text"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: modules/autolinks/content-autolinks.php:145
|
1775 |
+
msgid "Destination Type"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: modules/autolinks/content-autolinks.php:146
|
1779 |
+
msgid "Destination"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: modules/autolinks/content-autolinks.php:147
|
1783 |
+
msgid "Title Attribute"
|
|
|
|
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: modules/autolinks/content-autolinks.php:148
|
1787 |
+
msgid "Options"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: modules/autolinks/content-autolinks.php:150
|
1791 |
+
msgid "Delete"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: modules/autolinks/content-autolinks.php:192
|
1795 |
+
msgid "Custom"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: modules/autolinks/content-autolinks.php:193
|
1799 |
+
msgid "Content Items"
|
|
|
|
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: modules/autolinks/content-autolinks.php:200
|
1803 |
+
msgid "Nofollow"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: modules/autolinks/content-autolinks.php:201
|
1807 |
+
msgid "New window"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: modules/autolinks/content-autolinks.php:265
|
1811 |
+
msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: modules/autolinks/content-autolinks.php:266
|
1815 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: modules/autolinks/content-autolinks.php:266
|
1819 |
+
msgid "Autolink Exclusion:"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: modules/autolinks/content-autolinks.php:271
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1823 |
msgid ""
|
1824 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
1825 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
1826 |
+
"other posts and link it to this post. For example, if the post you’re "
|
1827 |
+
"editing is about “blue widgets,” you could type “blue "
|
1828 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
1829 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
1830 |
+
"with that anchor text (assuming other posts contain that text)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: includes/jlwp/functions.php:56
|
1834 |
+
msgid "Posts"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: includes/jlwp/functions.php:56
|
1838 |
+
msgid "Post"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: includes/jlwp/functions.php:57
|
1842 |
+
msgid "Pages"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: includes/jlwp/functions.php:57
|
1846 |
+
msgid "Page"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: includes/jlwp/functions.php:58
|
1850 |
+
msgid "Attachments"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: includes/jlwp/functions.php:58
|
1854 |
+
msgid "Attachment"
|
|
|
|
|
|
|
|
|
|
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: includes/jlwp/functions.php:129
|
1858 |
+
msgid "backup your database"
|
|
|
|
|
|
|
1859 |
msgstr ""
|
1860 |
|
1861 |
#. Plugin URI of the plugin/theme
|