Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.3.2 |
Comparing to | |
See all releases |
Code changes from version 7.3.1 to 7.3.2
- modules/opengraph/opengraph.php +7 -9
- plugin/class.seo-ultimate.php +1 -1
- readme.txt +5 -2
- seo-ultimate.php +4 -4
- translations/seo-ultimate.pot +48 -48
modules/opengraph/opengraph.php
CHANGED
@@ -98,9 +98,7 @@ class SU_OpenGraph extends SU_Module {
|
|
98 |
|
99 |
$tags['article:published_time'] = get_the_date('Y-m-d');
|
100 |
$tags['article:modified_time'] = get_the_modified_date('Y-m-d');
|
101 |
-
|
102 |
-
global $authordata;
|
103 |
-
$tags['article:author'] = get_author_posts_url($authordata->ID, $authordata->user_nicename);
|
104 |
|
105 |
$taxonomy_names = suwp::get_taxonomy_names();
|
106 |
foreach ($taxonomy_names as $taxonomy_name) {
|
@@ -158,7 +156,7 @@ class SU_OpenGraph extends SU_Module {
|
|
158 |
if ((!isset($tags['og:image']) || !$tags['og:image']) && $tags['og:image'] !== false) {
|
159 |
$tags['og:image'] = $this->jlsuggest_value_to_url($this->get_setting('default_og_image'), true);
|
160 |
if (!$tags['og:image'] && $tags['og:url'])
|
161 |
-
$tags['og:image'] = 'http://
|
162 |
}
|
163 |
|
164 |
//Site Name
|
@@ -252,7 +250,7 @@ class SU_OpenGraph extends SU_Module {
|
|
252 |
$this->admin_subheader(__('Default Image', 'seo-ultimate'));
|
253 |
$this->admin_form_table_start();
|
254 |
|
255 |
-
$this->textblock(__('In the box below, you can specify an image URL or an image from your media library to use as a default image in the event that there is no image otherwise specified for a given webpage on your site. If you do not specify a default image in the box below, then dynamically-generated thumbnails from
|
256 |
|
257 |
$this->jlsuggest_box('default_og_image', __('Default Image', 'seo-ultimate'), 'types=posttype_attachment&post_mime_type=image/*');
|
258 |
|
@@ -269,10 +267,10 @@ class SU_OpenGraph extends SU_Module {
|
|
269 |
|
270 |
function postmeta_fields($fields) {
|
271 |
|
272 |
-
$fields['opengraph'][10]['
|
273 |
-
$fields['opengraph'][20]['
|
274 |
-
$fields['opengraph'][30]['
|
275 |
-
$fields['opengraph'][40]['
|
276 |
|
277 |
return $fields;
|
278 |
}
|
98 |
|
99 |
$tags['article:published_time'] = get_the_date('Y-m-d');
|
100 |
$tags['article:modified_time'] = get_the_modified_date('Y-m-d');
|
101 |
+
$tags['article:author'] = get_author_posts_url($post->post_author);
|
|
|
|
|
102 |
|
103 |
$taxonomy_names = suwp::get_taxonomy_names();
|
104 |
foreach ($taxonomy_names as $taxonomy_name) {
|
156 |
if ((!isset($tags['og:image']) || !$tags['og:image']) && $tags['og:image'] !== false) {
|
157 |
$tags['og:image'] = $this->jlsuggest_value_to_url($this->get_setting('default_og_image'), true);
|
158 |
if (!$tags['og:image'] && $tags['og:url'])
|
159 |
+
$tags['og:image'] = 'http://s.wordpress.com/mshots/v1/'.urlencode($tags['og:url']);
|
160 |
}
|
161 |
|
162 |
//Site Name
|
250 |
$this->admin_subheader(__('Default Image', 'seo-ultimate'));
|
251 |
$this->admin_form_table_start();
|
252 |
|
253 |
+
$this->textblock(__('In the box below, you can specify an image URL or an image from your media library to use as a default image in the event that there is no image otherwise specified for a given webpage on your site. If you do not specify a default image in the box below, then dynamically-generated thumbnails from the WordPress.com mShots service will be used instead.', 'seo-ultimate'));
|
254 |
|
255 |
$this->jlsuggest_box('default_og_image', __('Default Image', 'seo-ultimate'), 'types=posttype_attachment&post_mime_type=image/*');
|
256 |
|
267 |
|
268 |
function postmeta_fields($fields) {
|
269 |
|
270 |
+
$fields['opengraph'][10]['og_title'] = $this->get_postmeta_textbox('og_title', __('Title:', 'seo-ultimate'));
|
271 |
+
$fields['opengraph'][20]['og_description'] = $this->get_postmeta_textarea('og_description', __('Description:', 'seo-ultimate'));
|
272 |
+
$fields['opengraph'][30]['og_image'] = $this->get_postmeta_jlsuggest_box('og_image', __('Image:', 'seo-ultimate'), 'types=posttype_attachment&post_mime_type=image/*');
|
273 |
+
$fields['opengraph'][40]['og_type'] = $this->get_postmeta_dropdown('og_type', array_merge(array(__('Use default', 'seo-ultimate')), $this->get_type_options()), __('Type:', 'seo-ultimate'));
|
274 |
|
275 |
return $fields;
|
276 |
}
|
plugin/class.seo-ultimate.php
CHANGED
@@ -1489,7 +1489,7 @@ class SEO_Ultimate {
|
|
1489 |
function get_postmeta_tabs() {
|
1490 |
return array(
|
1491 |
'serp' => __('Search Engine Listing', 'seo-ultimate')
|
1492 |
-
, 'opengraph' => __('
|
1493 |
, 'links' => __('Links', 'seo-ultimate')
|
1494 |
, 'misc' => __('Miscellaneous', 'seo-ultimate')
|
1495 |
);
|
1489 |
function get_postmeta_tabs() {
|
1490 |
return array(
|
1491 |
'serp' => __('Search Engine Listing', 'seo-ultimate')
|
1492 |
+
, 'opengraph' => __('Social Networks Listing', 'seo-ultimate')
|
1493 |
, 'links' => __('Links', 'seo-ultimate')
|
1494 |
, 'misc' => __('Miscellaneous', 'seo-ultimate')
|
1495 |
);
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.4.1
|
6 |
-
Stable tag: 7.3.
|
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 |
|
@@ -131,7 +131,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
131 |
* Keep tabs on the SEO-friendliness of your site's settings with a dashboard of green/yellow/red indicators
|
132 |
|
133 |
* **Open Graph Integrator** -- NEW in Version 7.3
|
134 |
-
* Out-of-the-box functionality autogenerates Open Graph data for your homepage and
|
135 |
* Fine-grained controls allow you to customize the Open Graph title, image, and content type for every single post, page, attachment, and custom post type object on your site
|
136 |
* Mass-editors let you specify Open Graph data for multiple posts and pages at a time
|
137 |
|
@@ -268,6 +268,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
268 |
|
269 |
== Changelog ==
|
270 |
|
|
|
|
|
|
|
271 |
= Version 7.3.1 (August 6, 2012) =
|
272 |
* Bugfix: Fixed broken autogenerated Open Graph image URLs (bug introduced in 7.3)
|
273 |
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.4.1
|
6 |
+
Stable tag: 7.3.2
|
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 |
|
131 |
* Keep tabs on the SEO-friendliness of your site's settings with a dashboard of green/yellow/red indicators
|
132 |
|
133 |
* **Open Graph Integrator** -- NEW in Version 7.3
|
134 |
+
* Out-of-the-box functionality autogenerates Open Graph data for your homepage, posts, pages, attachments, custom post type objects, and user profile pages
|
135 |
* Fine-grained controls allow you to customize the Open Graph title, image, and content type for every single post, page, attachment, and custom post type object on your site
|
136 |
* Mass-editors let you specify Open Graph data for multiple posts and pages at a time
|
137 |
|
268 |
|
269 |
== Changelog ==
|
270 |
|
271 |
+
= Version 7.3.2 (August 6, 2012) =
|
272 |
+
* Bugfix: Fixed broken Open Graph author elements on posts with the "article" type (bug introduced in 7.3)
|
273 |
+
|
274 |
= Version 7.3.1 (August 6, 2012) =
|
275 |
* Bugfix: Fixed broken autogenerated Open Graph image URLs (bug introduced in 7.3)
|
276 |
|
seo-ultimate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
-
Version: 7.3.
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 7.3.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.2');
|
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
-
define('SU_VERSION', '7.3.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/7.3.
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
+
Version: 7.3.2
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
+
* @version 7.3.2
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
+
define('SU_VERSION', '7.3.2');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.3.2');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
translations/seo-ultimate.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEO Ultimate 7.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2012-08-07
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -810,7 +810,7 @@ msgid "A Deleted Term"
|
|
810 |
msgstr ""
|
811 |
|
812 |
#: modules/class.su-module.php:2741 modules/meta/meta-descriptions.php:31
|
813 |
-
#: modules/meta/meta-keywords.php:41 modules/opengraph/opengraph.php:
|
814 |
#: plugin/class.seo-ultimate.php:1775
|
815 |
msgid "Blog Homepage"
|
816 |
msgstr ""
|
@@ -1378,12 +1378,12 @@ msgid "Meta Keywords"
|
|
1378 |
msgstr ""
|
1379 |
|
1380 |
#: modules/meta/meta-keywords.php:39 modules/meta/meta-robots.php:22
|
1381 |
-
#: modules/opengraph/opengraph.php:
|
1382 |
msgid "Sitewide Values"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
#: modules/meta/meta-keywords.php:40 modules/noindex/noindex.php:50
|
1386 |
-
#: modules/opengraph/opengraph.php:
|
1387 |
msgid "Default Values"
|
1388 |
msgstr ""
|
1389 |
|
@@ -1821,7 +1821,7 @@ msgid "Noindex"
|
|
1821 |
msgstr ""
|
1822 |
|
1823 |
#: modules/noindex/noindex.php:69 modules/noindex/noindex.php:80
|
1824 |
-
#: modules/opengraph/opengraph.php:
|
1825 |
msgid "Use default"
|
1826 |
msgstr ""
|
1827 |
|
@@ -1911,150 +1911,150 @@ msgstr ""
|
|
1911 |
msgid "Open Graph"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: modules/opengraph/opengraph.php:
|
1915 |
msgid "Type"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: modules/opengraph/opengraph.php:
|
1919 |
msgid "Title"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: modules/opengraph/opengraph.php:
|
1923 |
msgid "Description"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: modules/opengraph/opengraph.php:
|
1927 |
msgid "Image"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: modules/opengraph/opengraph.php:
|
1931 |
msgid "Site Name"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: modules/opengraph/opengraph.php:
|
1935 |
msgid "Facebook App ID"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: modules/opengraph/opengraph.php:
|
1939 |
msgid "Default Types"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: modules/opengraph/opengraph.php:
|
1943 |
msgid "Default Image"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: modules/opengraph/opengraph.php:
|
1947 |
msgid ""
|
1948 |
"In the box below, you can specify an image URL or an image from your media "
|
1949 |
"library to use as a default image in the event that there is no image "
|
1950 |
"otherwise specified for a given webpage on your site. If you do not specify "
|
1951 |
"a default image in the box below, then dynamically-generated thumbnails from "
|
1952 |
-
"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: modules/opengraph/opengraph.php:
|
1956 |
msgid "Blog Homepage Title"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: modules/opengraph/opengraph.php:
|
1960 |
msgid "Blog Homepage Description"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: modules/opengraph/opengraph.php:
|
1964 |
msgid "Blog Homepage Image"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: modules/opengraph/opengraph.php:
|
1968 |
-
msgid "Type:"
|
1969 |
-
msgstr ""
|
1970 |
-
|
1971 |
-
#: modules/opengraph/opengraph.php:273 modules/widgets/widgets.php:136
|
1972 |
msgid "Title:"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: modules/opengraph/opengraph.php:
|
1976 |
msgid "Description:"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: modules/opengraph/opengraph.php:
|
1980 |
msgid "Image:"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: modules/opengraph/opengraph.php:
|
|
|
|
|
|
|
|
|
1984 |
msgid "Featured Image: %s"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: modules/opengraph/opengraph.php:
|
1988 |
#: modules/rich-snippets/rich-snippets.php:228
|
1989 |
#: modules/rich-snippets/rich-snippets.php:237
|
1990 |
msgid "None"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: modules/opengraph/opengraph.php:
|
1994 |
msgid "Internet"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: modules/opengraph/opengraph.php:
|
1998 |
msgid "Article"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: modules/opengraph/opengraph.php:
|
2002 |
msgid "Blog"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: modules/opengraph/opengraph.php:
|
2006 |
msgid "Profile"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: modules/opengraph/opengraph.php:
|
2010 |
msgid "Website"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: modules/opengraph/opengraph.php:
|
2014 |
msgid "Products"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: modules/opengraph/opengraph.php:
|
2018 |
msgid "Book"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#: modules/opengraph/opengraph.php:
|
2022 |
msgid "Music"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: modules/opengraph/opengraph.php:
|
2026 |
msgid "Album"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: modules/opengraph/opengraph.php:
|
2030 |
msgid "Playlist"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: modules/opengraph/opengraph.php:
|
2034 |
msgid "Radio Station"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: modules/opengraph/opengraph.php:
|
2038 |
msgid "Song"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: modules/opengraph/opengraph.php:
|
2042 |
msgid "Videos"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: modules/opengraph/opengraph.php:
|
2046 |
msgid "Movie"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: modules/opengraph/opengraph.php:
|
2050 |
msgid "TV Episode"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: modules/opengraph/opengraph.php:
|
2054 |
msgid "TV Show"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: modules/opengraph/opengraph.php:
|
2058 |
msgid "Video"
|
2059 |
msgstr ""
|
2060 |
|
@@ -2277,7 +2277,7 @@ msgstr ""
|
|
2277 |
msgid "SEO Design Solutions Whitepapers"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.3) #-#-#-#-#
|
2281 |
#. Author of the plugin/theme
|
2282 |
#: modules/sds-blog/sds-blog.php:49
|
2283 |
msgid "SEO Design Solutions"
|
@@ -2593,7 +2593,7 @@ msgstr ""
|
|
2593 |
msgid "SEO Ultimate Plugin Settings"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.3) #-#-#-#-#
|
2597 |
#. Plugin Name of the plugin/theme
|
2598 |
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:861
|
2599 |
msgid "SEO Ultimate"
|
@@ -3502,7 +3502,7 @@ msgid "Search Engine Listing"
|
|
3502 |
msgstr ""
|
3503 |
|
3504 |
#: plugin/class.seo-ultimate.php:1492
|
3505 |
-
msgid "
|
3506 |
msgstr ""
|
3507 |
|
3508 |
#: plugin/class.seo-ultimate.php:1493
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEO Ultimate 7.3.2\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2012-08-07 04:20: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"
|
810 |
msgstr ""
|
811 |
|
812 |
#: modules/class.su-module.php:2741 modules/meta/meta-descriptions.php:31
|
813 |
+
#: modules/meta/meta-keywords.php:41 modules/opengraph/opengraph.php:228
|
814 |
#: plugin/class.seo-ultimate.php:1775
|
815 |
msgid "Blog Homepage"
|
816 |
msgstr ""
|
1378 |
msgstr ""
|
1379 |
|
1380 |
#: modules/meta/meta-keywords.php:39 modules/meta/meta-robots.php:22
|
1381 |
+
#: modules/opengraph/opengraph.php:226
|
1382 |
msgid "Sitewide Values"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
#: modules/meta/meta-keywords.php:40 modules/noindex/noindex.php:50
|
1386 |
+
#: modules/opengraph/opengraph.php:227
|
1387 |
msgid "Default Values"
|
1388 |
msgstr ""
|
1389 |
|
1821 |
msgstr ""
|
1822 |
|
1823 |
#: modules/noindex/noindex.php:69 modules/noindex/noindex.php:80
|
1824 |
+
#: modules/opengraph/opengraph.php:197 modules/opengraph/opengraph.php:273
|
1825 |
msgid "Use default"
|
1826 |
msgstr ""
|
1827 |
|
1911 |
msgid "Open Graph"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: modules/opengraph/opengraph.php:199
|
1915 |
msgid "Type"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: modules/opengraph/opengraph.php:204
|
1919 |
msgid "Title"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: modules/opengraph/opengraph.php:209
|
1923 |
msgid "Description"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: modules/opengraph/opengraph.php:214
|
1927 |
msgid "Image"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: modules/opengraph/opengraph.php:236
|
1931 |
msgid "Site Name"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: modules/opengraph/opengraph.php:237
|
1935 |
msgid "Facebook App ID"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: modules/opengraph/opengraph.php:244
|
1939 |
msgid "Default Types"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: modules/opengraph/opengraph.php:250 modules/opengraph/opengraph.php:255
|
1943 |
msgid "Default Image"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: modules/opengraph/opengraph.php:253
|
1947 |
msgid ""
|
1948 |
"In the box below, you can specify an image URL or an image from your media "
|
1949 |
"library to use as a default image in the event that there is no image "
|
1950 |
"otherwise specified for a given webpage on your site. If you do not specify "
|
1951 |
"a default image in the box below, then dynamically-generated thumbnails from "
|
1952 |
+
"the WordPress.com mShots service will be used instead."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: modules/opengraph/opengraph.php:262 modules/titles/titles.php:91
|
1956 |
msgid "Blog Homepage Title"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: modules/opengraph/opengraph.php:263
|
1960 |
msgid "Blog Homepage Description"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: modules/opengraph/opengraph.php:264
|
1964 |
msgid "Blog Homepage Image"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: modules/opengraph/opengraph.php:270 modules/widgets/widgets.php:136
|
|
|
|
|
|
|
|
|
1968 |
msgid "Title:"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: modules/opengraph/opengraph.php:271
|
1972 |
msgid "Description:"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: modules/opengraph/opengraph.php:272
|
1976 |
msgid "Image:"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: modules/opengraph/opengraph.php:273
|
1980 |
+
msgid "Type:"
|
1981 |
+
msgstr ""
|
1982 |
+
|
1983 |
+
#: modules/opengraph/opengraph.php:298
|
1984 |
msgid "Featured Image: %s"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: modules/opengraph/opengraph.php:306
|
1988 |
#: modules/rich-snippets/rich-snippets.php:228
|
1989 |
#: modules/rich-snippets/rich-snippets.php:237
|
1990 |
msgid "None"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: modules/opengraph/opengraph.php:307
|
1994 |
msgid "Internet"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: modules/opengraph/opengraph.php:308
|
1998 |
msgid "Article"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: modules/opengraph/opengraph.php:309
|
2002 |
msgid "Blog"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: modules/opengraph/opengraph.php:310
|
2006 |
msgid "Profile"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: modules/opengraph/opengraph.php:311
|
2010 |
msgid "Website"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: modules/opengraph/opengraph.php:312
|
2014 |
msgid "Products"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: modules/opengraph/opengraph.php:313
|
2018 |
msgid "Book"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: modules/opengraph/opengraph.php:314
|
2022 |
msgid "Music"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: modules/opengraph/opengraph.php:315
|
2026 |
msgid "Album"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: modules/opengraph/opengraph.php:316
|
2030 |
msgid "Playlist"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: modules/opengraph/opengraph.php:317
|
2034 |
msgid "Radio Station"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: modules/opengraph/opengraph.php:318
|
2038 |
msgid "Song"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: modules/opengraph/opengraph.php:319
|
2042 |
msgid "Videos"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: modules/opengraph/opengraph.php:320
|
2046 |
msgid "Movie"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: modules/opengraph/opengraph.php:321
|
2050 |
msgid "TV Episode"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
+
#: modules/opengraph/opengraph.php:322
|
2054 |
msgid "TV Show"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: modules/opengraph/opengraph.php:323
|
2058 |
msgid "Video"
|
2059 |
msgstr ""
|
2060 |
|
2277 |
msgid "SEO Design Solutions Whitepapers"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.3.2) #-#-#-#-#
|
2281 |
#. Author of the plugin/theme
|
2282 |
#: modules/sds-blog/sds-blog.php:49
|
2283 |
msgid "SEO Design Solutions"
|
2593 |
msgid "SEO Ultimate Plugin Settings"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.3.2) #-#-#-#-#
|
2597 |
#. Plugin Name of the plugin/theme
|
2598 |
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:861
|
2599 |
msgid "SEO Ultimate"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
#: plugin/class.seo-ultimate.php:1492
|
3505 |
+
msgid "Social Networks Listing"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
#: plugin/class.seo-ultimate.php:1493
|