Version Description
Download this release
Release Info
| Developer | pbaylies |
| Plugin | |
| Version | 2.2.5 |
| Comparing to | |
| See all releases | |
Code changes from version 2.2.4.2 to 2.2.5
- aioseop_class.php +70 -41
- aioseop_functions.php +0 -3
- aioseop_module.css +1 -0
- aioseop_module.js +20 -0
- aioseop_module_class.php +7 -5
- aioseop_opengraph.php +44 -22
- all_in_one_seo_pack-zh_CN.mo +0 -0
- all_in_one_seo_pack.php +14 -11
- all_in_one_seo_pack.pot +868 -875
- readme.txt +1 -1
aioseop_class.php
CHANGED
|
@@ -196,12 +196,14 @@ class All_in_One_SEO_Pack extends All_in_One_SEO_Pack_Module {
|
|
| 196 |
"archive_author_noindex"=> __( "Check this to ask search engines not to index Author Archives. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
| 197 |
"tags_noindex" => __( "Check this to ask search engines not to index Tag Archives. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
| 198 |
"search_noindex" => __( "Check this to ask search engines not to index the Search page. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
|
|
|
| 199 |
"paginated_noindex" => __( "Check this to ask search engines not to index paginated pages/posts. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
| 200 |
"paginated_nofollow" => __( "Check this to ask search engines not to follow links from paginated pages/posts. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
| 201 |
'noodp' => __( 'Check this box to ask search engines not to use descriptions from the Open Directory Project for your entire site.', 'all_in_one_seo_pack' ),
|
| 202 |
'cpostnoodp' => __( "Set the default noodp setting for each Post Type.", 'all_in_one_seo_pack' ),
|
| 203 |
'noydir' => __( 'Check this box to ask Yahoo! not to use descriptions from the Yahoo! directory for your entire site.', 'all_in_one_seo_pack' ),
|
| 204 |
'cpostnoydir' => __( "Set the default noydir setting for each Post Type.", 'all_in_one_seo_pack' ),
|
|
|
|
| 205 |
"generate_descriptions" => __( "Check this and your Meta Descriptions will be auto-generated from your excerpt or content.", 'all_in_one_seo_pack' ),
|
| 206 |
"run_shortcodes" => __( "Check this and shortcodes will get executed for descriptions auto-generated from content.", 'all_in_one_seo_pack' ),
|
| 207 |
"hide_paginated_descriptions"=> __( "Check this and your Meta Descriptions will be removed from page 2 or later of paginated content.", 'all_in_one_seo_pack' ),
|
|
@@ -305,10 +307,12 @@ class All_in_One_SEO_Pack extends All_in_One_SEO_Pack_Module {
|
|
| 305 |
'name' => __( 'I enjoy this plugin and have made a donation:', 'all_in_one_seo_pack' ) ),
|
| 306 |
"home_title"=> Array(
|
| 307 |
'name' => __( 'Home Title:', 'all_in_one_seo_pack' ),
|
| 308 |
-
'default' => null, 'type' => 'textarea', 'sanitize' => 'text'
|
|
|
|
| 309 |
"home_description"=> Array(
|
| 310 |
'name' => __( 'Home Description:', 'all_in_one_seo_pack' ),
|
| 311 |
-
'default' => '', 'type' => 'textarea', 'sanitize' => 'text'
|
|
|
|
| 312 |
"togglekeywords" => Array(
|
| 313 |
'name' => __( 'Use Keywords:', 'all_in_one_seo_pack' ),
|
| 314 |
'default' => 0,
|
|
@@ -583,6 +587,9 @@ class All_in_One_SEO_Pack extends All_in_One_SEO_Pack_Module {
|
|
| 583 |
"search_noindex"=> Array(
|
| 584 |
'name' => __( 'Use noindex for the Search page:', 'all_in_one_seo_pack' ),
|
| 585 |
'default' => 0),
|
|
|
|
|
|
|
|
|
|
| 586 |
"paginated_noindex" => Array(
|
| 587 |
'name' => __( 'Use noindex for paginated pages/posts:', 'all_in_one_seo_pack' ),
|
| 588 |
'default' => 0),
|
|
@@ -595,6 +602,9 @@ class All_in_One_SEO_Pack extends All_in_One_SEO_Pack_Module {
|
|
| 595 |
"noydir"=> Array(
|
| 596 |
'name' => __( 'Exclude site from Yahoo! Directory:', 'all_in_one_seo_pack' ),
|
| 597 |
'default' => 0),
|
|
|
|
|
|
|
|
|
|
| 598 |
"generate_descriptions"=> Array(
|
| 599 |
'name' => __( 'Autogenerate Descriptions:', 'all_in_one_seo_pack' ),
|
| 600 |
'default' => 1),
|
|
@@ -650,10 +660,10 @@ class All_in_One_SEO_Pack extends All_in_One_SEO_Pack_Module {
|
|
| 650 |
<script>
|
| 651 |
jQuery(document).ready(function() {
|
| 652 |
jQuery("#aiosp_title_wrapper").bind("input", function() {
|
| 653 |
-
jQuery("#aioseop_snippet_title").text(jQuery("#aiosp_title_wrapper input").val());
|
| 654 |
});
|
| 655 |
jQuery("#aiosp_description_wrapper").bind("input", function() {
|
| 656 |
-
jQuery("#aioseop_snippet_description").text(jQuery("#aiosp_description_wrapper textarea").val());
|
| 657 |
});
|
| 658 |
});
|
| 659 |
</script>
|
|
@@ -725,12 +735,12 @@ class All_in_One_SEO_Pack extends All_in_One_SEO_Pack_Module {
|
|
| 725 |
'noindex' => Array(
|
| 726 |
'name' => __( 'Noindex Settings', 'all_in_one_seo_pack' ),
|
| 727 |
'help_link' => 'http://semperplugins.com/documentation/noindex-settings/',
|
| 728 |
-
'options' => Array( 'cpostnoindex', 'cpostnofollow', 'cpostnoodp', 'cpostnoydir', 'category_noindex', 'archive_date_noindex', 'archive_author_noindex', 'tags_noindex', 'search_noindex', 'paginated_noindex', 'paginated_nofollow', 'noodp', 'noydir' )
|
| 729 |
),
|
| 730 |
'advanced' => Array(
|
| 731 |
'name' => __( 'Advanced Settings', 'all_in_one_seo_pack' ),
|
| 732 |
'help_link' => 'http://semperplugins.com/documentation/advanced-settings/',
|
| 733 |
-
'options' => Array( 'generate_descriptions', 'run_shortcodes', 'hide_paginated_descriptions', 'dont_truncate_descriptions', 'unprotect_meta', 'ex_pages', 'post_meta_tags', 'page_meta_tags', 'front_meta_tags', 'home_meta_tags' )
|
| 734 |
)
|
| 735 |
);
|
| 736 |
|
|
@@ -1559,7 +1569,9 @@ class All_in_One_SEO_Pack extends All_in_One_SEO_Pack_Module {
|
|
| 1559 |
$nofollow = "follow";
|
| 1560 |
if ( ( is_category() && !empty( $aioseop_options['aiosp_category_noindex'] ) ) || ( !is_category() && is_archive() && !is_tag() && !is_tax()
|
| 1561 |
&& ( ( is_date() && !empty( $aioseop_options['aiosp_archive_date_noindex'] ) ) || ( is_author() && !empty( $aioseop_options['aiosp_archive_author_noindex'] ) ) ) )
|
| 1562 |
-
|| ( is_tag() && !empty( $aioseop_options['aiosp_tags_noindex'] ) )
|
|
|
|
|
|
|
| 1563 |
$noindex = 'noindex';
|
| 1564 |
} elseif ( ( is_single() || is_page() || $this->is_static_posts_page() || is_attachment() || ( $page > 1 ) ) ) {
|
| 1565 |
$post_type = get_post_type();
|
|
@@ -1607,7 +1619,7 @@ class All_in_One_SEO_Pack extends All_in_One_SEO_Pack_Module {
|
|
| 1607 |
} else if ( is_single() || is_page() || is_attachment() || is_home() || $this->is_static_posts_page() ) {
|
| 1608 |
$description = $this->get_aioseop_description( $post );
|
| 1609 |
} else if ( ( is_category() || is_tag() || is_tax() ) && $this->show_page_description() ) {
|
| 1610 |
-
|
| 1611 |
if ( empty( $description ) ) $description = term_description();
|
| 1612 |
$description = $this->internationalize( $description );
|
| 1613 |
}
|
|
@@ -2366,7 +2378,8 @@ EOF;
|
|
| 2366 |
|
| 2367 |
$description = trim( stripslashes( $this->internationalize( get_post_meta( $post->ID, "_aioseop_description", true ) ) ) );
|
| 2368 |
if ( !$description ) {
|
| 2369 |
-
|
|
|
|
| 2370 |
if ( !$description && $aioseop_options["aiosp_generate_descriptions"] ) {
|
| 2371 |
$content = $post->post_content;
|
| 2372 |
if ( !empty( $aioseop_options["aiosp_run_shortcodes"] ) ) $content = do_shortcode( $content );
|
|
@@ -2743,7 +2756,9 @@ EOF;
|
|
| 2743 |
$tag = str_replace('-', ' ', $tag);
|
| 2744 |
} else {
|
| 2745 |
if ( empty( $tag ) ) $tag = $this->get_original_title( '', false );
|
|
|
|
| 2746 |
$tag = $this->internationalize( $tag );
|
|
|
|
| 2747 |
}
|
| 2748 |
if ( $tag ) {
|
| 2749 |
if ( !empty( $aioseop_options['aiosp_cap_titles'] ) )
|
|
@@ -2752,8 +2767,8 @@ EOF;
|
|
| 2752 |
$title = str_replace( '%blog_title%', $this->internationalize( get_bloginfo('name') ), $title_format );
|
| 2753 |
if ( strpos( $title, '%blog_description%' ) !== false ) $title = str_replace( '%blog_description%', $this->internationalize( get_bloginfo( 'description') ), $title );
|
| 2754 |
if ( strpos( $title, '%tag%' ) !== false ) $title = str_replace( '%tag%', $tag, $title );
|
| 2755 |
-
if ( strpos( $title, '%tag_description%' ) !== false ) $title = str_replace( '%tag_description%', tag_description
|
| 2756 |
-
if ( strpos( $title, '%taxonomy_description%' ) !== false ) $title = str_replace( '%taxonomy_description%', tag_description
|
| 2757 |
$title = trim( wp_strip_all_tags( $title ) );
|
| 2758 |
$title = str_replace( Array( '"', "\r\n", "\n" ), Array( '"', ' ', ' ' ), $title );
|
| 2759 |
$title = $this->paged_title( $title );
|
|
@@ -2916,6 +2931,36 @@ EOF;
|
|
| 2916 |
return $traverse;
|
| 2917 |
}
|
| 2918 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2919 |
/**
|
| 2920 |
* @return comma-separated list of unique keywords
|
| 2921 |
*/
|
|
@@ -2944,7 +2989,7 @@ EOF;
|
|
| 2944 |
foreach ( $post_arr as $p ) {
|
| 2945 |
if ( $p ) {
|
| 2946 |
$id = $p->ID;
|
| 2947 |
-
if ( $postcount
|
| 2948 |
// custom field keywords
|
| 2949 |
$keywords_i = null;
|
| 2950 |
$keywords_i = stripslashes( $this->internationalize( get_post_meta( $id, "_aioseop_keywords", true ) ) );
|
|
@@ -2953,31 +2998,13 @@ EOF;
|
|
| 2953 |
if ( empty( $keywords_i ) )
|
| 2954 |
$keywords_i = stripslashes( $this->internationalize( get_post_meta( $id, "_aioseop_keywords", true ) ) );
|
| 2955 |
}
|
| 2956 |
-
|
| 2957 |
$traverse = $this->keyword_string_to_list( $keywords_i );
|
| 2958 |
if ( !empty( $traverse ) )
|
| 2959 |
foreach ( $traverse as $keyword ) $keywords[] = $keyword;
|
| 2960 |
}
|
| 2961 |
|
| 2962 |
if ( !empty( $aioseop_options['aiosp_use_tags_as_keywords'] ) ) {
|
| 2963 |
-
$
|
| 2964 |
-
if ( $tags && is_array( $tags) )
|
| 2965 |
-
foreach ( $tags as $tag )
|
| 2966 |
-
$keywords[] = $this->internationalize( $tag->name );
|
| 2967 |
-
|
| 2968 |
-
// Ultimate Tag Warrior integration
|
| 2969 |
-
global $utw;
|
| 2970 |
-
if ( $utw ) {
|
| 2971 |
-
$tags = $utw->GetTagsForPost( $p );
|
| 2972 |
-
if ( is_array( $tags ) )
|
| 2973 |
-
foreach ( $tags as $tag ) {
|
| 2974 |
-
$tag = $tag->tag;
|
| 2975 |
-
$tag = str_replace( '_', ' ', $tag );
|
| 2976 |
-
$tag = str_replace( '-', ' ', $tag );
|
| 2977 |
-
$tag = stripslashes( $tag );
|
| 2978 |
-
$keywords[] = $tag;
|
| 2979 |
-
}
|
| 2980 |
-
}
|
| 2981 |
}
|
| 2982 |
// autometa
|
| 2983 |
$autometa = stripslashes( get_post_meta( $id, 'autometa', true ) );
|
|
@@ -2988,23 +3015,25 @@ EOF;
|
|
| 2988 |
}
|
| 2989 |
|
| 2990 |
if ( $aioseop_options['aiosp_use_categories'] && !is_page() ) {
|
| 2991 |
-
|
| 2992 |
-
foreach ( $categories as $category )
|
| 2993 |
-
$keywords[] = $this->internationalize( $category->cat_name );
|
| 2994 |
}
|
| 2995 |
}
|
| 2996 |
}
|
| 2997 |
}
|
| 2998 |
-
return $this->get_unique_keywords($keywords);
|
| 2999 |
}
|
| 3000 |
|
| 3001 |
-
function
|
| 3002 |
$small_keywords = array();
|
| 3003 |
-
|
| 3004 |
-
|
| 3005 |
-
|
| 3006 |
-
|
| 3007 |
-
return
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3008 |
}
|
| 3009 |
|
| 3010 |
function log( $message ) {
|
| 196 |
"archive_author_noindex"=> __( "Check this to ask search engines not to index Author Archives. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
| 197 |
"tags_noindex" => __( "Check this to ask search engines not to index Tag Archives. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
| 198 |
"search_noindex" => __( "Check this to ask search engines not to index the Search page. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
| 199 |
+
"404_noindex" => __( "Check this to ask search engines not to index the 404 page.", 'all_in_one_seo_pack' ),
|
| 200 |
"paginated_noindex" => __( "Check this to ask search engines not to index paginated pages/posts. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
| 201 |
"paginated_nofollow" => __( "Check this to ask search engines not to follow links from paginated pages/posts. Useful for avoiding duplicate content.", 'all_in_one_seo_pack' ),
|
| 202 |
'noodp' => __( 'Check this box to ask search engines not to use descriptions from the Open Directory Project for your entire site.', 'all_in_one_seo_pack' ),
|
| 203 |
'cpostnoodp' => __( "Set the default noodp setting for each Post Type.", 'all_in_one_seo_pack' ),
|
| 204 |
'noydir' => __( 'Check this box to ask Yahoo! not to use descriptions from the Yahoo! directory for your entire site.', 'all_in_one_seo_pack' ),
|
| 205 |
'cpostnoydir' => __( "Set the default noydir setting for each Post Type.", 'all_in_one_seo_pack' ),
|
| 206 |
+
"skip_excerpt" => __( "Check this and your Meta Descriptions won't be generated from the excerpt.", 'all_in_one_seo_pack' ),
|
| 207 |
"generate_descriptions" => __( "Check this and your Meta Descriptions will be auto-generated from your excerpt or content.", 'all_in_one_seo_pack' ),
|
| 208 |
"run_shortcodes" => __( "Check this and shortcodes will get executed for descriptions auto-generated from content.", 'all_in_one_seo_pack' ),
|
| 209 |
"hide_paginated_descriptions"=> __( "Check this and your Meta Descriptions will be removed from page 2 or later of paginated content.", 'all_in_one_seo_pack' ),
|
| 307 |
'name' => __( 'I enjoy this plugin and have made a donation:', 'all_in_one_seo_pack' ) ),
|
| 308 |
"home_title"=> Array(
|
| 309 |
'name' => __( 'Home Title:', 'all_in_one_seo_pack' ),
|
| 310 |
+
'default' => null, 'type' => 'textarea', 'sanitize' => 'text',
|
| 311 |
+
'count' => true, 'rows' => 1, 'cols' => 60 ),
|
| 312 |
"home_description"=> Array(
|
| 313 |
'name' => __( 'Home Description:', 'all_in_one_seo_pack' ),
|
| 314 |
+
'default' => '', 'type' => 'textarea', 'sanitize' => 'text',
|
| 315 |
+
'count' => true, 'cols' => 80, 'rows' => 2 ),
|
| 316 |
"togglekeywords" => Array(
|
| 317 |
'name' => __( 'Use Keywords:', 'all_in_one_seo_pack' ),
|
| 318 |
'default' => 0,
|
| 587 |
"search_noindex"=> Array(
|
| 588 |
'name' => __( 'Use noindex for the Search page:', 'all_in_one_seo_pack' ),
|
| 589 |
'default' => 0),
|
| 590 |
+
"404_noindex"=> Array(
|
| 591 |
+
'name' => __( 'Use noindex for the 404 page:', 'all_in_one_seo_pack' ),
|
| 592 |
+
'default' => 0),
|
| 593 |
"paginated_noindex" => Array(
|
| 594 |
'name' => __( 'Use noindex for paginated pages/posts:', 'all_in_one_seo_pack' ),
|
| 595 |
'default' => 0),
|
| 602 |
"noydir"=> Array(
|
| 603 |
'name' => __( 'Exclude site from Yahoo! Directory:', 'all_in_one_seo_pack' ),
|
| 604 |
'default' => 0),
|
| 605 |
+
"skip_excerpt"=> Array(
|
| 606 |
+
'name' => __( 'Avoid Using The Excerpt In Descriptions:', 'all_in_one_seo_pack' ),
|
| 607 |
+
'default' => 0 ),
|
| 608 |
"generate_descriptions"=> Array(
|
| 609 |
'name' => __( 'Autogenerate Descriptions:', 'all_in_one_seo_pack' ),
|
| 610 |
'default' => 1),
|
| 660 |
<script>
|
| 661 |
jQuery(document).ready(function() {
|
| 662 |
jQuery("#aiosp_title_wrapper").bind("input", function() {
|
| 663 |
+
jQuery("#aioseop_snippet_title").text(jQuery("#aiosp_title_wrapper input").val().replace(/<(?:.|\n)*?>/gm, ""));
|
| 664 |
});
|
| 665 |
jQuery("#aiosp_description_wrapper").bind("input", function() {
|
| 666 |
+
jQuery("#aioseop_snippet_description").text(jQuery("#aiosp_description_wrapper textarea").val().replace(/<(?:.|\n)*?>/gm, ""));
|
| 667 |
});
|
| 668 |
});
|
| 669 |
</script>
|
| 735 |
'noindex' => Array(
|
| 736 |
'name' => __( 'Noindex Settings', 'all_in_one_seo_pack' ),
|
| 737 |
'help_link' => 'http://semperplugins.com/documentation/noindex-settings/',
|
| 738 |
+
'options' => Array( 'cpostnoindex', 'cpostnofollow', 'cpostnoodp', 'cpostnoydir', 'category_noindex', 'archive_date_noindex', 'archive_author_noindex', 'tags_noindex', 'search_noindex', '404_noindex', 'paginated_noindex', 'paginated_nofollow', 'noodp', 'noydir' )
|
| 739 |
),
|
| 740 |
'advanced' => Array(
|
| 741 |
'name' => __( 'Advanced Settings', 'all_in_one_seo_pack' ),
|
| 742 |
'help_link' => 'http://semperplugins.com/documentation/advanced-settings/',
|
| 743 |
+
'options' => Array( 'generate_descriptions', 'skip_excerpt', 'run_shortcodes', 'hide_paginated_descriptions', 'dont_truncate_descriptions', 'unprotect_meta', 'ex_pages', 'post_meta_tags', 'page_meta_tags', 'front_meta_tags', 'home_meta_tags' )
|
| 744 |
)
|
| 745 |
);
|
| 746 |
|
| 1569 |
$nofollow = "follow";
|
| 1570 |
if ( ( is_category() && !empty( $aioseop_options['aiosp_category_noindex'] ) ) || ( !is_category() && is_archive() && !is_tag() && !is_tax()
|
| 1571 |
&& ( ( is_date() && !empty( $aioseop_options['aiosp_archive_date_noindex'] ) ) || ( is_author() && !empty( $aioseop_options['aiosp_archive_author_noindex'] ) ) ) )
|
| 1572 |
+
|| ( is_tag() && !empty( $aioseop_options['aiosp_tags_noindex'] ) )
|
| 1573 |
+
|| ( is_search() && !empty( $aioseop_options['aiosp_search_noindex'] ) )
|
| 1574 |
+
|| ( is_404() && !empty( $aioseop_options['aiosp_404_noindex'] ) ) ) {
|
| 1575 |
$noindex = 'noindex';
|
| 1576 |
} elseif ( ( is_single() || is_page() || $this->is_static_posts_page() || is_attachment() || ( $page > 1 ) ) ) {
|
| 1577 |
$post_type = get_post_type();
|
| 1619 |
} else if ( is_single() || is_page() || is_attachment() || is_home() || $this->is_static_posts_page() ) {
|
| 1620 |
$description = $this->get_aioseop_description( $post );
|
| 1621 |
} else if ( ( is_category() || is_tag() || is_tax() ) && $this->show_page_description() ) {
|
| 1622 |
+
// if ( !empty( $opts ) ) $description = $opts['aiosp_description'];
|
| 1623 |
if ( empty( $description ) ) $description = term_description();
|
| 1624 |
$description = $this->internationalize( $description );
|
| 1625 |
}
|
| 2378 |
|
| 2379 |
$description = trim( stripslashes( $this->internationalize( get_post_meta( $post->ID, "_aioseop_description", true ) ) ) );
|
| 2380 |
if ( !$description ) {
|
| 2381 |
+
if ( empty( $aioseop_options["aiosp_skip_excerpt"] ) )
|
| 2382 |
+
$description = $this->trim_excerpt_without_filters_full_length( $this->internationalize( $post->post_excerpt ) );
|
| 2383 |
if ( !$description && $aioseop_options["aiosp_generate_descriptions"] ) {
|
| 2384 |
$content = $post->post_content;
|
| 2385 |
if ( !empty( $aioseop_options["aiosp_run_shortcodes"] ) ) $content = do_shortcode( $content );
|
| 2756 |
$tag = str_replace('-', ' ', $tag);
|
| 2757 |
} else {
|
| 2758 |
if ( empty( $tag ) ) $tag = $this->get_original_title( '', false );
|
| 2759 |
+
if ( empty( $tag_description ) ) $tag_description = tag_description();
|
| 2760 |
$tag = $this->internationalize( $tag );
|
| 2761 |
+
$tag_description = $this->internationalize( $tag_description );
|
| 2762 |
}
|
| 2763 |
if ( $tag ) {
|
| 2764 |
if ( !empty( $aioseop_options['aiosp_cap_titles'] ) )
|
| 2767 |
$title = str_replace( '%blog_title%', $this->internationalize( get_bloginfo('name') ), $title_format );
|
| 2768 |
if ( strpos( $title, '%blog_description%' ) !== false ) $title = str_replace( '%blog_description%', $this->internationalize( get_bloginfo( 'description') ), $title );
|
| 2769 |
if ( strpos( $title, '%tag%' ) !== false ) $title = str_replace( '%tag%', $tag, $title );
|
| 2770 |
+
if ( strpos( $title, '%tag_description%' ) !== false ) $title = str_replace( '%tag_description%', $tag_description, $title );
|
| 2771 |
+
if ( strpos( $title, '%taxonomy_description%' ) !== false ) $title = str_replace( '%taxonomy_description%', $tag_description, $title );
|
| 2772 |
$title = trim( wp_strip_all_tags( $title ) );
|
| 2773 |
$title = str_replace( Array( '"', "\r\n", "\n" ), Array( '"', ' ', ' ' ), $title );
|
| 2774 |
$title = $this->paged_title( $title );
|
| 2931 |
return $traverse;
|
| 2932 |
}
|
| 2933 |
|
| 2934 |
+
function get_all_categories( $id = 0 ) {
|
| 2935 |
+
$keywords = Array();
|
| 2936 |
+
$categories = get_the_category( $id );
|
| 2937 |
+
foreach ( $categories as $category )
|
| 2938 |
+
$keywords[] = $this->internationalize( $category->cat_name );
|
| 2939 |
+
return $keywords;
|
| 2940 |
+
}
|
| 2941 |
+
|
| 2942 |
+
function get_all_tags( $id = 0 ) {
|
| 2943 |
+
$keywords = Array();
|
| 2944 |
+
$tags = get_the_tags( $id );
|
| 2945 |
+
if ( $tags && is_array( $tags) )
|
| 2946 |
+
foreach ( $tags as $tag )
|
| 2947 |
+
$keywords[] = $this->internationalize( $tag->name );
|
| 2948 |
+
// Ultimate Tag Warrior integration
|
| 2949 |
+
global $utw;
|
| 2950 |
+
if ( $utw ) {
|
| 2951 |
+
$tags = $utw->GetTagsForPost( $p );
|
| 2952 |
+
if ( is_array( $tags ) )
|
| 2953 |
+
foreach ( $tags as $tag ) {
|
| 2954 |
+
$tag = $tag->tag;
|
| 2955 |
+
$tag = str_replace( '_', ' ', $tag );
|
| 2956 |
+
$tag = str_replace( '-', ' ', $tag );
|
| 2957 |
+
$tag = stripslashes( $tag );
|
| 2958 |
+
$keywords[] = $tag;
|
| 2959 |
+
}
|
| 2960 |
+
}
|
| 2961 |
+
return $keywords;
|
| 2962 |
+
}
|
| 2963 |
+
|
| 2964 |
/**
|
| 2965 |
* @return comma-separated list of unique keywords
|
| 2966 |
*/
|
| 2989 |
foreach ( $post_arr as $p ) {
|
| 2990 |
if ( $p ) {
|
| 2991 |
$id = $p->ID;
|
| 2992 |
+
if ( $postcount == 1 || !empty( $aioseop_options['aiosp_dynamic_postspage_keywords'] ) ) {
|
| 2993 |
// custom field keywords
|
| 2994 |
$keywords_i = null;
|
| 2995 |
$keywords_i = stripslashes( $this->internationalize( get_post_meta( $id, "_aioseop_keywords", true ) ) );
|
| 2998 |
if ( empty( $keywords_i ) )
|
| 2999 |
$keywords_i = stripslashes( $this->internationalize( get_post_meta( $id, "_aioseop_keywords", true ) ) );
|
| 3000 |
}
|
|
|
|
| 3001 |
$traverse = $this->keyword_string_to_list( $keywords_i );
|
| 3002 |
if ( !empty( $traverse ) )
|
| 3003 |
foreach ( $traverse as $keyword ) $keywords[] = $keyword;
|
| 3004 |
}
|
| 3005 |
|
| 3006 |
if ( !empty( $aioseop_options['aiosp_use_tags_as_keywords'] ) ) {
|
| 3007 |
+
$keywords = array_merge( $keywords, $this->get_all_tags( $id ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3008 |
}
|
| 3009 |
// autometa
|
| 3010 |
$autometa = stripslashes( get_post_meta( $id, 'autometa', true ) );
|
| 3015 |
}
|
| 3016 |
|
| 3017 |
if ( $aioseop_options['aiosp_use_categories'] && !is_page() ) {
|
| 3018 |
+
$keywords = array_merge( $keywords, $this->get_all_categories( $id ) );
|
|
|
|
|
|
|
| 3019 |
}
|
| 3020 |
}
|
| 3021 |
}
|
| 3022 |
}
|
| 3023 |
+
return $this->get_unique_keywords( $keywords );
|
| 3024 |
}
|
| 3025 |
|
| 3026 |
+
function clean_keyword_list( $keywords ) {
|
| 3027 |
$small_keywords = array();
|
| 3028 |
+
if ( !empty( $keywords ) )
|
| 3029 |
+
foreach ( $keywords as $word ) {
|
| 3030 |
+
$small_keywords[] = trim( $this->strtolower( $word ) );
|
| 3031 |
+
}
|
| 3032 |
+
return array_unique( $small_keywords );
|
| 3033 |
+
}
|
| 3034 |
+
|
| 3035 |
+
function get_unique_keywords($keywords) {
|
| 3036 |
+
return implode( ',', $this->clean_keyword_list( $keywords ) );
|
| 3037 |
}
|
| 3038 |
|
| 3039 |
function log( $message ) {
|
aioseop_functions.php
CHANGED
|
@@ -354,9 +354,6 @@ if ( !function_exists( 'aioseop_ajax_scan_header' ) ) {
|
|
| 354 |
do_action('wp');
|
| 355 |
global $aioseop_modules;
|
| 356 |
$module = $aioseop_modules->return_module( "All_in_One_SEO_Pack_Opengraph" );
|
| 357 |
-
if ( !empty( $module ) )
|
| 358 |
-
if ( $module->option_isset( 'disable_jetpack' ) )
|
| 359 |
-
remove_action( 'wp_head', 'jetpack_og_tags' );
|
| 360 |
wp_head();
|
| 361 |
$output = ob_get_clean();
|
| 362 |
global $aiosp;
|
| 354 |
do_action('wp');
|
| 355 |
global $aioseop_modules;
|
| 356 |
$module = $aioseop_modules->return_module( "All_in_One_SEO_Pack_Opengraph" );
|
|
|
|
|
|
|
|
|
|
| 357 |
wp_head();
|
| 358 |
$output = ob_get_clean();
|
| 359 |
global $aiosp;
|
aioseop_module.css
CHANGED
|
@@ -607,6 +607,7 @@ div#aioseop_snippet {
|
|
| 607 |
}
|
| 608 |
div#aioseop_snippet > h3 {
|
| 609 |
font-size: 16px;
|
|
|
|
| 610 |
border: 0px;
|
| 611 |
background: inherit;
|
| 612 |
}
|
| 607 |
}
|
| 608 |
div#aioseop_snippet > h3 {
|
| 609 |
font-size: 16px;
|
| 610 |
+
padding: 8px 0;
|
| 611 |
border: 0px;
|
| 612 |
background: inherit;
|
| 613 |
}
|
aioseop_module.js
CHANGED
|
@@ -25,10 +25,30 @@ function toggleVisibility(id) {
|
|
| 25 |
|
| 26 |
function countChars(field,cntfield) {
|
| 27 |
var extra = 0;
|
|
|
|
| 28 |
if ( ( field.name == 'aiosp_title' ) && ( typeof aiosp_title_extra !== 'undefined' ) ) {
|
| 29 |
extra = aiosp_title_extra;
|
| 30 |
}
|
|
|
|
| 31 |
cntfield.value = field.value.length + extra;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
}
|
| 33 |
|
| 34 |
function aioseop_get_field_value( field ) {
|
| 25 |
|
| 26 |
function countChars(field,cntfield) {
|
| 27 |
var extra = 0;
|
| 28 |
+
var field_size;
|
| 29 |
if ( ( field.name == 'aiosp_title' ) && ( typeof aiosp_title_extra !== 'undefined' ) ) {
|
| 30 |
extra = aiosp_title_extra;
|
| 31 |
}
|
| 32 |
+
|
| 33 |
cntfield.value = field.value.length + extra;
|
| 34 |
+
if ( typeof field.size != 'undefined' ) {
|
| 35 |
+
field_size = field.size;
|
| 36 |
+
} else {
|
| 37 |
+
field_size = field.rows * field.cols;
|
| 38 |
+
}
|
| 39 |
+
if ( field_size < 10 ) return;
|
| 40 |
+
if ( cntfield.value > field_size ) {
|
| 41 |
+
cntfield.style.color = "#fff";
|
| 42 |
+
cntfield.style.backgroundColor = "#f00";
|
| 43 |
+
} else {
|
| 44 |
+
if ( cntfield.value > ( field_size - 6 ) ) {
|
| 45 |
+
cntfield.style.color = "#515151";
|
| 46 |
+
cntfield.style.backgroundColor = "#ff0";
|
| 47 |
+
} else {
|
| 48 |
+
cntfield.style.color = "#515151";
|
| 49 |
+
cntfield.style.backgroundColor = "#eee";
|
| 50 |
+
}
|
| 51 |
+
}
|
| 52 |
}
|
| 53 |
|
| 54 |
function aioseop_get_field_value( field ) {
|
aioseop_module_class.php
CHANGED
|
@@ -31,7 +31,7 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Module' ) ) {
|
|
| 31 |
protected $script_data = null; // used for passing data to JavaScript
|
| 32 |
protected $plugin_path = null;
|
| 33 |
protected $pointers = Array();
|
| 34 |
-
protected $form = '
|
| 35 |
|
| 36 |
/**
|
| 37 |
* Handles calls to display_settings_page_{$location}, does error checking.
|
|
@@ -944,7 +944,7 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Module' ) ) {
|
|
| 944 |
$ht = $this->help_text[$o];
|
| 945 |
elseif ( !empty( $default_options[$o]["help_text"] ) )
|
| 946 |
$ht = $default_options[$o]["help_text"];
|
| 947 |
-
if ( $ht ) {
|
| 948 |
$ha = '';
|
| 949 |
$hl = $help_link;
|
| 950 |
if ( strpos( $o, 'ga_' ) === 0 ) { // special case -- pdb
|
|
@@ -955,8 +955,9 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Module' ) ) {
|
|
| 955 |
$hl = substr( $hl, 0, $pos );
|
| 956 |
}
|
| 957 |
if ( ( !empty( $ha ) && ( $ha[0] == 'h' ) ) ) $hl = '';
|
| 958 |
-
if ( !empty( $ha ) || !isset( $this->help_anchors[$o] ) )
|
| 959 |
-
$ht .= "<br /><a href='" . $hl . $ha . "' target='_blank'>" . __( "Click here for documentation on this setting", 'all_in_one_seo_pack' ) . "</a>";
|
|
|
|
| 960 |
$default_options[$o]['help_text'] = $ht;
|
| 961 |
}
|
| 962 |
}
|
|
@@ -989,6 +990,7 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Module' ) ) {
|
|
| 989 |
$prefix = $this->get_prefix();
|
| 990 |
$bail = apply_filters( $prefix . 'bail_on_enqueue', $bail, $screen );
|
| 991 |
if ( $bail ) return;
|
|
|
|
| 992 |
if ( $screen->base == 'edit-tags' ) $this->form = 'edittag';
|
| 993 |
if ( $screen->base == 'toplevel_page_shopp-products' ) $this->form = 'product';
|
| 994 |
$this->form = apply_filters( $prefix . 'set_form_on_enqueue', $this->form, $screen );
|
|
@@ -1331,7 +1333,7 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Module' ) ) {
|
|
| 1331 |
else
|
| 1332 |
$count_desc = __( ' characters. Most search engines use a maximum of %s chars for the %s.', 'all_in_one_seo_pack' );
|
| 1333 |
$buf .= "<br /><input readonly type='text' name='{$prefix}length$n' size='3' maxlength='3' style='width:53px;height:23px;margin:0px;padding:0px 0px 0px 10px;' value='" . $this->strlen($value) . "' />"
|
| 1334 |
-
. sprintf( $count_desc, $size, $this->strtolower( $options['name'] ) );
|
| 1335 |
if ( !empty( $onload ) ) $buf .= "<script>jQuery( document ).ready(function() { {$onload} });</script>";
|
| 1336 |
}
|
| 1337 |
return $buf;
|
| 31 |
protected $script_data = null; // used for passing data to JavaScript
|
| 32 |
protected $plugin_path = null;
|
| 33 |
protected $pointers = Array();
|
| 34 |
+
protected $form = 'dofollow';
|
| 35 |
|
| 36 |
/**
|
| 37 |
* Handles calls to display_settings_page_{$location}, does error checking.
|
| 944 |
$ht = $this->help_text[$o];
|
| 945 |
elseif ( !empty( $default_options[$o]["help_text"] ) )
|
| 946 |
$ht = $default_options[$o]["help_text"];
|
| 947 |
+
if ( $ht && !is_array( $ht ) ) {
|
| 948 |
$ha = '';
|
| 949 |
$hl = $help_link;
|
| 950 |
if ( strpos( $o, 'ga_' ) === 0 ) { // special case -- pdb
|
| 955 |
$hl = substr( $hl, 0, $pos );
|
| 956 |
}
|
| 957 |
if ( ( !empty( $ha ) && ( $ha[0] == 'h' ) ) ) $hl = '';
|
| 958 |
+
if ( !empty( $ha ) || !isset( $this->help_anchors[$o] ) ) {
|
| 959 |
+
$ht .= "<br /><a href='" . $hl . $ha . "' target='_blank'>" . __( "Click here for documentation on this setting", 'all_in_one_seo_pack' ) . "</a>";
|
| 960 |
+
}
|
| 961 |
$default_options[$o]['help_text'] = $ht;
|
| 962 |
}
|
| 963 |
}
|
| 990 |
$prefix = $this->get_prefix();
|
| 991 |
$bail = apply_filters( $prefix . 'bail_on_enqueue', $bail, $screen );
|
| 992 |
if ( $bail ) return;
|
| 993 |
+
$this->form = 'post';
|
| 994 |
if ( $screen->base == 'edit-tags' ) $this->form = 'edittag';
|
| 995 |
if ( $screen->base == 'toplevel_page_shopp-products' ) $this->form = 'product';
|
| 996 |
$this->form = apply_filters( $prefix . 'set_form_on_enqueue', $this->form, $screen );
|
| 1333 |
else
|
| 1334 |
$count_desc = __( ' characters. Most search engines use a maximum of %s chars for the %s.', 'all_in_one_seo_pack' );
|
| 1335 |
$buf .= "<br /><input readonly type='text' name='{$prefix}length$n' size='3' maxlength='3' style='width:53px;height:23px;margin:0px;padding:0px 0px 0px 10px;' value='" . $this->strlen($value) . "' />"
|
| 1336 |
+
. sprintf( $count_desc, $size, trim( $this->strtolower( $options['name'] ), ':' ) );
|
| 1337 |
if ( !empty( $onload ) ) $buf .= "<script>jQuery( document ).ready(function() { {$onload} });</script>";
|
| 1338 |
}
|
| 1339 |
return $buf;
|
aioseop_opengraph.php
CHANGED
|
@@ -96,12 +96,15 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 96 |
"video" => __( "This option lets you specify a link to the Open Graph video used on this Page or Post.", 'all_in_one_seo_pack' ),
|
| 97 |
"videowidth" => __( "Enter the width for your Open Graph video in pixels (i.e. 600).", 'all_in_one_seo_pack' ),
|
| 98 |
"videoheight" => __( "Enter the height for your Open Graph video in pixels (i.e. 600).", 'all_in_one_seo_pack' ),
|
| 99 |
-
|
| 100 |
"defcard" => __( "Select the default type of Twitter card to display.", 'all_in_one_seo_pack' ),
|
| 101 |
"setcard" => __( "Select the default type of Twitter card to display.", 'all_in_one_seo_pack' ),
|
| 102 |
"twitter_site" => __( "Enter the Twitter username associated with your website here.", 'all_in_one_seo_pack' ),
|
| 103 |
"twitter_creator" => __( "Allows your authors to be identified by their Twitter usernames as content creators on the Twitter cards for their posts.", 'all_in_one_seo_pack' ),
|
| 104 |
"twitter_domain" => __( "Enter the name of your website here.", 'all_in_one_seo_pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
| 105 |
"types" => __( "Select which Post Types you want to use All in One SEO Pack to set Open Graph meta values for.", 'all_in_one_seo_pack' ),
|
| 106 |
"title" => __( "This is the Open Graph title of this Page or Post.", 'all_in_one_seo_pack' ),
|
| 107 |
"desc" => __( "This is the Open Graph description of this Page or Post.", 'all_in_one_seo_pack' ),
|
|
@@ -109,7 +112,7 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 109 |
"section" => __( "This Open Graph meta allows you to add a general section name that best describes this content.", 'all_in_one_seo_pack' ),
|
| 110 |
"tag" => __( "This Open Graph meta allows you to add a list of keywords that best describe this content.", 'all_in_one_seo_pack' ),
|
| 111 |
"facebook_publisher" => __( "Link articles to the Facebook page associated with your website.", 'all_in_one_seo_pack' ),
|
| 112 |
-
"facebook_author" => __( "Allows your authors to be identified by their Facebook pages as content authors on the Opengraph meta for their articles.", 'all_in_one_seo_pack' ),
|
| 113 |
);
|
| 114 |
|
| 115 |
$this->help_anchors = Array(
|
|
@@ -180,6 +183,10 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 180 |
'twitter_creator'=>Array( 'name' => __( 'Show Twitter Author', 'all_in_one_seo_pack' ) ),
|
| 181 |
'twitter_domain'=> Array( 'name' => __( 'Twitter Domain', 'all_in_one_seo_pack' ),
|
| 182 |
'type' => 'text', 'default' => '' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
| 183 |
'types' => Array( 'name' => __( 'Enable Facebook Meta for', 'all_in_one_seo_pack'),
|
| 184 |
'type' => 'multicheckbox', 'initial_options' => $this->get_post_type_titles( Array( '_builtin' => false ) ),
|
| 185 |
'default' => Array( 'post' => 'post', 'page' => 'page' ) ),
|
|
@@ -198,7 +205,6 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 198 |
'type' => 'text', 'default' => '', 'condshow' => Array( 'aioseop_opengraph_settings_category' => 'article' ) ),
|
| 199 |
'facebook_publisher'=>Array('name' => __( 'Show Facebook Publisher on Articles', 'all_in_one_seo_pack' ), 'type' => 'text', 'default' => '' ),
|
| 200 |
'facebook_author'=>Array( 'name' => __( 'Show Facebook Author on Articles', 'all_in_one_seo_pack' ) ),
|
| 201 |
-
|
| 202 |
);
|
| 203 |
|
| 204 |
// load initial options / set defaults
|
|
@@ -209,7 +215,9 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 209 |
|
| 210 |
$this->locations = array(
|
| 211 |
'opengraph' => Array( 'name' => $this->name, 'prefix' => 'aiosp_', 'type' => 'settings',
|
| 212 |
-
'options' => Array('scan_header', 'setmeta', 'key', 'sitename', 'hometitle', 'description', 'homeimage', 'hometag', 'generate_descriptions', 'defimg',
|
|
|
|
|
|
|
| 213 |
'settings' => Array( 'name' => __('Social Settings', 'all_in_one_seo_pack'),
|
| 214 |
'type' => 'metabox', 'help_link' => 'http://semperplugins.com/documentation/social-meta-module/#pagepost_settings',
|
| 215 |
'options' => Array( 'title', 'desc', 'image', 'customimg', 'imagewidth', 'imageheight', 'video', 'videowidth', 'videoheight', 'category', 'section', 'tag', 'setcard' ),
|
|
@@ -236,14 +244,13 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 236 |
'facebook' => Array(
|
| 237 |
'name' => __( 'Facebook Settings', 'all_in_one_seo_pack' ),
|
| 238 |
'help_link' => 'http://semperplugins.com/documentation/social-meta-module/',
|
| 239 |
-
'options' => Array( 'key', 'types', 'categories', 'facebook_publisher', 'facebook_author' )
|
| 240 |
),
|
| 241 |
'twitter' => Array(
|
| 242 |
'name' => __( 'Twitter Settings', 'all_in_one_seo_pack' ),
|
| 243 |
'help_link' => 'http://semperplugins.com/documentation/social-meta-module/',
|
| 244 |
'options' => Array( 'defcard', 'setcard', 'twitter_site', 'twitter_creator', 'twitter_domain' )
|
| 245 |
),
|
| 246 |
-
|
| 247 |
'scan_meta' => Array(
|
| 248 |
'name' => __( 'Scan Social Meta', 'all_in_one_seo_pack' ),
|
| 249 |
'help_link' => 'http://semperplugins.com/documentation/social-meta-module/#scan_meta',
|
|
@@ -475,14 +482,16 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 475 |
&& is_array( $this->options['aiosp_opengraph_types'] )
|
| 476 |
&& in_array( $current_post_type, $this->options['aiosp_opengraph_types'] ) ) {
|
| 477 |
|
| 478 |
-
if ( $type == 'article'
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
|
| 482 |
-
|
| 483 |
-
|
| 484 |
-
|
| 485 |
-
|
|
|
|
|
|
|
| 486 |
}
|
| 487 |
|
| 488 |
if ( !empty( $this->options['aiosp_opengraph_twitter_domain'] ) )
|
|
@@ -500,7 +509,6 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 500 |
$modified_time = date( 'Y-m-d\TH:i:s\Z', mysql2date( 'U', $post->post_modified ) );
|
| 501 |
}
|
| 502 |
|
| 503 |
-
|
| 504 |
$image = $metabox['aioseop_opengraph_settings_image'];
|
| 505 |
$video = $metabox['aioseop_opengraph_settings_video'];
|
| 506 |
$title = $metabox['aioseop_opengraph_settings_title'];
|
|
@@ -520,13 +528,27 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 520 |
if ( empty( $type ) ) $type = 'article';
|
| 521 |
} else return;
|
| 522 |
|
| 523 |
-
if ( $type == 'article'
|
| 524 |
-
|
| 525 |
-
|
| 526 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 527 |
}
|
|
|
|
|
|
|
| 528 |
}
|
| 529 |
-
|
| 530 |
if ( !empty( $description ) )
|
| 531 |
$description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( preg_replace( '/\s+/', ' ', $description ) ), 1000 );
|
| 532 |
|
|
@@ -710,9 +732,9 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 710 |
}
|
| 711 |
|
| 712 |
function type_setup() {
|
| 713 |
-
global $aiosp;
|
| 714 |
$this->type = '';
|
| 715 |
-
if ( is_front_page
|
| 716 |
if ( !empty( $this->options ) && !empty( $this->options['aiosp_opengraph_categories'] ) )
|
| 717 |
$this->type = $this->options['aiosp_opengraph_categories'];
|
| 718 |
} elseif ( is_singular() && $this->option_isset('types') ) {
|
| 96 |
"video" => __( "This option lets you specify a link to the Open Graph video used on this Page or Post.", 'all_in_one_seo_pack' ),
|
| 97 |
"videowidth" => __( "Enter the width for your Open Graph video in pixels (i.e. 600).", 'all_in_one_seo_pack' ),
|
| 98 |
"videoheight" => __( "Enter the height for your Open Graph video in pixels (i.e. 600).", 'all_in_one_seo_pack' ),
|
|
|
|
| 99 |
"defcard" => __( "Select the default type of Twitter card to display.", 'all_in_one_seo_pack' ),
|
| 100 |
"setcard" => __( "Select the default type of Twitter card to display.", 'all_in_one_seo_pack' ),
|
| 101 |
"twitter_site" => __( "Enter the Twitter username associated with your website here.", 'all_in_one_seo_pack' ),
|
| 102 |
"twitter_creator" => __( "Allows your authors to be identified by their Twitter usernames as content creators on the Twitter cards for their posts.", 'all_in_one_seo_pack' ),
|
| 103 |
"twitter_domain" => __( "Enter the name of your website here.", 'all_in_one_seo_pack' ),
|
| 104 |
+
"gen_tags" => __( "Automatically generate article tags for Facebook type article when not provided.", 'all_in_one_seo_pack' ),
|
| 105 |
+
"gen_keywords" => __( "Use keywords in generated article tags.", 'all_in_one_seo_pack' ),
|
| 106 |
+
"gen_categories" => __( "Use catergories in generated article tags.", 'all_in_one_seo_pack' ),
|
| 107 |
+
"gen_post_tags" => __( "Use post tags in generated article tags.", 'all_in_one_seo_pack' ),
|
| 108 |
"types" => __( "Select which Post Types you want to use All in One SEO Pack to set Open Graph meta values for.", 'all_in_one_seo_pack' ),
|
| 109 |
"title" => __( "This is the Open Graph title of this Page or Post.", 'all_in_one_seo_pack' ),
|
| 110 |
"desc" => __( "This is the Open Graph description of this Page or Post.", 'all_in_one_seo_pack' ),
|
| 112 |
"section" => __( "This Open Graph meta allows you to add a general section name that best describes this content.", 'all_in_one_seo_pack' ),
|
| 113 |
"tag" => __( "This Open Graph meta allows you to add a list of keywords that best describe this content.", 'all_in_one_seo_pack' ),
|
| 114 |
"facebook_publisher" => __( "Link articles to the Facebook page associated with your website.", 'all_in_one_seo_pack' ),
|
| 115 |
+
"facebook_author" => __( "Allows your authors to be identified by their Facebook pages as content authors on the Opengraph meta for their articles.", 'all_in_one_seo_pack' ),
|
| 116 |
);
|
| 117 |
|
| 118 |
$this->help_anchors = Array(
|
| 183 |
'twitter_creator'=>Array( 'name' => __( 'Show Twitter Author', 'all_in_one_seo_pack' ) ),
|
| 184 |
'twitter_domain'=> Array( 'name' => __( 'Twitter Domain', 'all_in_one_seo_pack' ),
|
| 185 |
'type' => 'text', 'default' => '' ),
|
| 186 |
+
'gen_tags' => Array( 'name' => __( 'Automatically Generate Article Tags', 'all_in_one_seo_pack' ) ),
|
| 187 |
+
'gen_keywords' => Array( 'name' => __( 'Use Keywords In Article Tags', 'all_in_one_seo_pack' ), 'default' => 'on', 'condshow' => Array( 'aiosp_opengraph_gen_tags' => 'on' ) ),
|
| 188 |
+
'gen_categories'=> Array( 'name' => __( 'Use Categories In Article Tags', 'all_in_one_seo_pack' ), 'default' => 'on', 'condshow' => Array( 'aiosp_opengraph_gen_tags' => 'on' ) ),
|
| 189 |
+
'gen_post_tags' => Array( 'name' => __( 'Use Post Tags In Article Tags', 'all_in_one_seo_pack' ), 'default' => 'on', 'condshow' => Array( 'aiosp_opengraph_gen_tags' => 'on' ) ),
|
| 190 |
'types' => Array( 'name' => __( 'Enable Facebook Meta for', 'all_in_one_seo_pack'),
|
| 191 |
'type' => 'multicheckbox', 'initial_options' => $this->get_post_type_titles( Array( '_builtin' => false ) ),
|
| 192 |
'default' => Array( 'post' => 'post', 'page' => 'page' ) ),
|
| 205 |
'type' => 'text', 'default' => '', 'condshow' => Array( 'aioseop_opengraph_settings_category' => 'article' ) ),
|
| 206 |
'facebook_publisher'=>Array('name' => __( 'Show Facebook Publisher on Articles', 'all_in_one_seo_pack' ), 'type' => 'text', 'default' => '' ),
|
| 207 |
'facebook_author'=>Array( 'name' => __( 'Show Facebook Author on Articles', 'all_in_one_seo_pack' ) ),
|
|
|
|
| 208 |
);
|
| 209 |
|
| 210 |
// load initial options / set defaults
|
| 215 |
|
| 216 |
$this->locations = array(
|
| 217 |
'opengraph' => Array( 'name' => $this->name, 'prefix' => 'aiosp_', 'type' => 'settings',
|
| 218 |
+
'options' => Array('scan_header', 'setmeta', 'key', 'sitename', 'hometitle', 'description', 'homeimage', 'hometag', 'generate_descriptions', 'defimg',
|
| 219 |
+
'fallback', 'dimg', 'meta_key', 'categories', 'defcard', 'twitter_site', 'twitter_creator', 'twitter_domain', 'gen_tags', 'gen_keywords', 'gen_categories',
|
| 220 |
+
'gen_post_tags', 'types', 'facebook_publisher', 'facebook_author' ) ),
|
| 221 |
'settings' => Array( 'name' => __('Social Settings', 'all_in_one_seo_pack'),
|
| 222 |
'type' => 'metabox', 'help_link' => 'http://semperplugins.com/documentation/social-meta-module/#pagepost_settings',
|
| 223 |
'options' => Array( 'title', 'desc', 'image', 'customimg', 'imagewidth', 'imageheight', 'video', 'videowidth', 'videoheight', 'category', 'section', 'tag', 'setcard' ),
|
| 244 |
'facebook' => Array(
|
| 245 |
'name' => __( 'Facebook Settings', 'all_in_one_seo_pack' ),
|
| 246 |
'help_link' => 'http://semperplugins.com/documentation/social-meta-module/',
|
| 247 |
+
'options' => Array( 'key', 'types', 'gen_tags', 'gen_keywords', 'gen_categories', 'gen_post_tags', 'categories', 'facebook_publisher', 'facebook_author' )
|
| 248 |
),
|
| 249 |
'twitter' => Array(
|
| 250 |
'name' => __( 'Twitter Settings', 'all_in_one_seo_pack' ),
|
| 251 |
'help_link' => 'http://semperplugins.com/documentation/social-meta-module/',
|
| 252 |
'options' => Array( 'defcard', 'setcard', 'twitter_site', 'twitter_creator', 'twitter_domain' )
|
| 253 |
),
|
|
|
|
| 254 |
'scan_meta' => Array(
|
| 255 |
'name' => __( 'Scan Social Meta', 'all_in_one_seo_pack' ),
|
| 256 |
'help_link' => 'http://semperplugins.com/documentation/social-meta-module/#scan_meta',
|
| 482 |
&& is_array( $this->options['aiosp_opengraph_types'] )
|
| 483 |
&& in_array( $current_post_type, $this->options['aiosp_opengraph_types'] ) ) {
|
| 484 |
|
| 485 |
+
if ( $type == 'article' ) {
|
| 486 |
+
if ( !empty( $metabox['aioseop_opengraph_settings_section'] ) ) {
|
| 487 |
+
$section = $metabox['aioseop_opengraph_settings_section'];
|
| 488 |
+
}
|
| 489 |
+
if ( !empty( $metabox['aioseop_opengraph_settings_tag'] ) ) {
|
| 490 |
+
$tag = $metabox['aioseop_opengraph_settings_tag'];
|
| 491 |
+
}
|
| 492 |
+
if ( !empty( $this->options['aiosp_opengraph_facebook_publisher'] ) ) {
|
| 493 |
+
$publisher = $this->options['aiosp_opengraph_facebook_publisher'];
|
| 494 |
+
}
|
| 495 |
}
|
| 496 |
|
| 497 |
if ( !empty( $this->options['aiosp_opengraph_twitter_domain'] ) )
|
| 509 |
$modified_time = date( 'Y-m-d\TH:i:s\Z', mysql2date( 'U', $post->post_modified ) );
|
| 510 |
}
|
| 511 |
|
|
|
|
| 512 |
$image = $metabox['aioseop_opengraph_settings_image'];
|
| 513 |
$video = $metabox['aioseop_opengraph_settings_video'];
|
| 514 |
$title = $metabox['aioseop_opengraph_settings_title'];
|
| 528 |
if ( empty( $type ) ) $type = 'article';
|
| 529 |
} else return;
|
| 530 |
|
| 531 |
+
if ( $type == 'article' ) {
|
| 532 |
+
if ( !empty( $this->options['aiosp_opengraph_gen_tags'] ) ) {
|
| 533 |
+
if ( !empty( $this->options['aiosp_opengraph_gen_keywords'] ) ) {
|
| 534 |
+
$keywords = $aiosp->get_main_keywords();
|
| 535 |
+
$keywords = $this->apply_cf_fields( $keywords );
|
| 536 |
+
$keywords = apply_filters( 'aioseop_keywords', $keywords );
|
| 537 |
+
if ( !empty( $keywords ) && !empty( $tag ) ) {
|
| 538 |
+
$tag .= ',' . $keywords;
|
| 539 |
+
} elseif ( empty( $tag ) ) {
|
| 540 |
+
$tag = $keywords;
|
| 541 |
+
}
|
| 542 |
+
}
|
| 543 |
+
$tag = $aiosp->keyword_string_to_list( $tag );
|
| 544 |
+
if ( !empty( $this->options['aiosp_opengraph_gen_categories'] ) )
|
| 545 |
+
$tag = array_merge( $tag, $aiosp->get_all_categories( $post->ID ) );
|
| 546 |
+
if ( !empty( $this->options['aiosp_opengraph_gen_post_tags'] ) )
|
| 547 |
+
$tag = array_merge( $tag, $aiosp->get_all_tags( $post->ID ) );
|
| 548 |
}
|
| 549 |
+
if ( !empty( $tag ) )
|
| 550 |
+
$tag = $aiosp->clean_keyword_list( $tag );
|
| 551 |
}
|
|
|
|
| 552 |
if ( !empty( $description ) )
|
| 553 |
$description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( preg_replace( '/\s+/', ' ', $description ) ), 1000 );
|
| 554 |
|
| 732 |
}
|
| 733 |
|
| 734 |
function type_setup() {
|
| 735 |
+
global $aiosp, $wp_query;
|
| 736 |
$this->type = '';
|
| 737 |
+
if ( $wp_query->is_front_page ) {
|
| 738 |
if ( !empty( $this->options ) && !empty( $this->options['aiosp_opengraph_categories'] ) )
|
| 739 |
$this->type = $this->options['aiosp_opengraph_categories'];
|
| 740 |
} elseif ( is_singular() && $this->option_isset('types') ) {
|
all_in_one_seo_pack-zh_CN.mo
CHANGED
|
Binary file
|
all_in_one_seo_pack.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: All In One SEO Pack
|
| 4 |
Plugin URI: http://semperfiwebdesign.com
|
| 5 |
Description: Out-of-the-box SEO for your WordPress blog. <a href="admin.php?page=all-in-one-seo-pack/aioseop_class.php">Options configuration panel</a> | <a href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/?loc=plugins" target="_blank">Upgrade to Pro Version</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperplugins.com/support/" >Support</a> | <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a>
|
| 6 |
-
Version: 2.2.
|
| 7 |
Author: Michael Torbert
|
| 8 |
Author URI: http://michaeltorbert.com
|
| 9 |
*/
|
|
@@ -30,7 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
| 30 |
|
| 31 |
/**
|
| 32 |
* @package All-in-One-SEO-Pack
|
| 33 |
-
* @version 2.2.
|
| 34 |
*/
|
| 35 |
|
| 36 |
global $aioseop_plugin_name;
|
|
@@ -39,7 +39,7 @@ if ( ! defined( 'AIOSEOP_PLUGIN_NAME' ) )
|
|
| 39 |
define( 'AIOSEOP_PLUGIN_NAME', $aioseop_plugin_name );
|
| 40 |
|
| 41 |
if ( ! defined( 'AIOSEOP_VERSION' ) )
|
| 42 |
-
define( 'AIOSEOP_VERSION', '2.2.
|
| 43 |
|
| 44 |
if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
|
| 45 |
define( 'AIOSEOP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
|
@@ -85,15 +85,18 @@ $aioseop_mem_limit = @ini_get( 'memory_limit' );
|
|
| 85 |
|
| 86 |
if ( !function_exists( 'aioseop_convert_bytestring' ) ) {
|
| 87 |
function aioseop_convert_bytestring( $byteString ) {
|
|
|
|
| 88 |
preg_match( '/^\s*([0-9.]+)\s*([KMGTPE])B?\s*$/i', $byteString, $matches );
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
|
|
|
|
|
|
| 97 |
}
|
| 98 |
return intval( $num );
|
| 99 |
}
|
| 3 |
Plugin Name: All In One SEO Pack
|
| 4 |
Plugin URI: http://semperfiwebdesign.com
|
| 5 |
Description: Out-of-the-box SEO for your WordPress blog. <a href="admin.php?page=all-in-one-seo-pack/aioseop_class.php">Options configuration panel</a> | <a href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/?loc=plugins" target="_blank">Upgrade to Pro Version</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperplugins.com/support/" >Support</a> | <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a>
|
| 6 |
+
Version: 2.2.5
|
| 7 |
Author: Michael Torbert
|
| 8 |
Author URI: http://michaeltorbert.com
|
| 9 |
*/
|
| 30 |
|
| 31 |
/**
|
| 32 |
* @package All-in-One-SEO-Pack
|
| 33 |
+
* @version 2.2.5
|
| 34 |
*/
|
| 35 |
|
| 36 |
global $aioseop_plugin_name;
|
| 39 |
define( 'AIOSEOP_PLUGIN_NAME', $aioseop_plugin_name );
|
| 40 |
|
| 41 |
if ( ! defined( 'AIOSEOP_VERSION' ) )
|
| 42 |
+
define( 'AIOSEOP_VERSION', '2.2.5' );
|
| 43 |
|
| 44 |
if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
|
| 45 |
define( 'AIOSEOP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
| 85 |
|
| 86 |
if ( !function_exists( 'aioseop_convert_bytestring' ) ) {
|
| 87 |
function aioseop_convert_bytestring( $byteString ) {
|
| 88 |
+
$num = 0;
|
| 89 |
preg_match( '/^\s*([0-9.]+)\s*([KMGTPE])B?\s*$/i', $byteString, $matches );
|
| 90 |
+
if ( !empty( $matches ) ) {
|
| 91 |
+
$num = ( float )$matches[1];
|
| 92 |
+
switch ( strtoupper( $matches[2] ) ) {
|
| 93 |
+
case 'E': $num = $num * 1024;
|
| 94 |
+
case 'P': $num = $num * 1024;
|
| 95 |
+
case 'T': $num = $num * 1024;
|
| 96 |
+
case 'G': $num = $num * 1024;
|
| 97 |
+
case 'M': $num = $num * 1024;
|
| 98 |
+
case 'K': $num = $num * 1024;
|
| 99 |
+
}
|
| 100 |
}
|
| 101 |
return intval( $num );
|
| 102 |
}
|
all_in_one_seo_pack.pot
CHANGED
|
@@ -1,35 +1,31 @@
|
|
| 1 |
-
# Copyright (C)
|
| 2 |
# This file is distributed under the same license as the All In One SEO Pack package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: All In One SEO Pack 2.2.2\n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/all-in-one-seo-"
|
| 7 |
"pack\n"
|
| 8 |
-
"POT-Creation-Date:
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
-
"PO-Revision-Date:
|
| 13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 15 |
|
| 16 |
#: aioseop_class.php:62
|
| 17 |
-
msgid "All in One SEO Pack"
|
| 18 |
-
msgstr ""
|
| 19 |
-
|
| 20 |
-
#: aioseop_class.php:65
|
| 21 |
msgid "%s Plugin Options"
|
| 22 |
msgstr ""
|
| 23 |
|
| 24 |
-
#: aioseop_class.php:
|
| 25 |
msgid "General Settings"
|
| 26 |
msgstr ""
|
| 27 |
|
| 28 |
-
#: aioseop_class.php:
|
| 29 |
msgid "All donations support continued development of this free software."
|
| 30 |
msgstr ""
|
| 31 |
|
| 32 |
-
#: aioseop_class.php:
|
| 33 |
msgid ""
|
| 34 |
"This option will automatically generate Canonical URLs for your entire "
|
| 35 |
"WordPress installation. This will help to prevent duplicate content "
|
|
@@ -37,90 +33,85 @@ msgid ""
|
|
| 37 |
"specify-your-canonical.html\\' target=\\'_blank\\'>Google</a>."
|
| 38 |
msgstr ""
|
| 39 |
|
| 40 |
-
#: aioseop_class.php:
|
| 41 |
msgid ""
|
| 42 |
"Checking this option will set the Canonical URL for all paginated content to "
|
| 43 |
"the first page."
|
| 44 |
msgstr ""
|
| 45 |
|
| 46 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
msgid ""
|
| 48 |
"Use wp_title to set the title; disable this option if you run into conflicts "
|
| 49 |
-
"with the title being set by your theme or another plugin
|
| 50 |
-
"href='http://semperplugins.com/documentation/general-settings/' "
|
| 51 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 52 |
msgstr ""
|
| 53 |
|
| 54 |
-
#: aioseop_class.php:
|
| 55 |
msgid ""
|
| 56 |
"Check this and All in One SEO Pack will create a log of important events "
|
| 57 |
"(all_in_one_seo_pack.log) in its plugin directory which might help "
|
| 58 |
-
"debugging. Make sure this directory is writable
|
| 59 |
-
"semperplugins.com/documentation/general-settings/' target='_blank'>Click "
|
| 60 |
-
"here for documentation on this setting</a>"
|
| 61 |
msgstr ""
|
| 62 |
|
| 63 |
-
#: aioseop_class.php:
|
| 64 |
msgid ""
|
| 65 |
"As the name implies, this will be the Meta Title of your homepage. This is "
|
| 66 |
"independent of any other option. If not set, the default Site Title (found "
|
| 67 |
-
"in WordPress under Settings, General, Site Title) will be used
|
| 68 |
-
"href='http://semperplugins.com/documentation/home-page-settings/' "
|
| 69 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 70 |
msgstr ""
|
| 71 |
|
| 72 |
-
#: aioseop_class.php:
|
| 73 |
msgid ""
|
| 74 |
"This will be the Meta Description for your homepage. This is independent of "
|
| 75 |
"any other option. The default is no Meta Description at all if this is not "
|
| 76 |
-
"set
|
| 77 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 78 |
msgstr ""
|
| 79 |
|
| 80 |
-
#: aioseop_class.php:
|
| 81 |
msgid ""
|
| 82 |
"Enter a comma separated list of your most important keywords for your site "
|
| 83 |
"that will be written as Meta Keywords on your homepage. Don\\'t stuff "
|
| 84 |
-
"everything in here
|
| 85 |
-
"home-page-settings/' target='_blank'>Click here for documentation on this "
|
| 86 |
-
"setting</a>"
|
| 87 |
msgstr ""
|
| 88 |
|
| 89 |
-
#: aioseop_class.php:
|
| 90 |
msgid ""
|
| 91 |
"This option allows you to toggle the use of Meta Keywords throughout the "
|
| 92 |
-
"whole of the site
|
| 93 |
-
"keyword-settings/' target='_blank'>Click here for documentation on this "
|
| 94 |
-
"setting</a>"
|
| 95 |
msgstr ""
|
| 96 |
|
| 97 |
-
#: aioseop_class.php:
|
| 98 |
msgid ""
|
| 99 |
"Check this if you want your categories for a given post used as the Meta "
|
| 100 |
"Keywords for this post (in addition to any keywords you specify on the Edit "
|
| 101 |
-
"Post screen)
|
| 102 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
-
#: aioseop_class.php:
|
| 106 |
msgid ""
|
| 107 |
"Check this if you want your tags for a given post used as the Meta Keywords "
|
| 108 |
"for this post (in addition to any keywords you specify on the Edit Post "
|
| 109 |
-
"screen)
|
| 110 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 111 |
msgstr ""
|
| 112 |
|
| 113 |
-
#: aioseop_class.php:
|
| 114 |
msgid ""
|
| 115 |
"Check this if you want your keywords on your Posts page (set in WordPress "
|
| 116 |
"under Settings, Reading, Front Page Displays) to be dynamically generated "
|
| 117 |
"from the keywords of the posts showing on that page. If unchecked, it will "
|
| 118 |
-
"use the keywords set in the edit page screen for the posts page
|
| 119 |
-
"href='http://semperplugins.com/documentation/keyword-settings/' "
|
| 120 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 121 |
msgstr ""
|
| 122 |
|
| 123 |
-
#: aioseop_class.php:
|
| 124 |
msgid ""
|
| 125 |
"Note that this is all about the title tag. This is what you see in your "
|
| 126 |
"browser's window title bar. This is NOT visible on a page, only in the title "
|
|
@@ -129,313 +120,271 @@ msgid ""
|
|
| 129 |
"them. For example: Using the default post title format below, Rewrite Titles "
|
| 130 |
"will write all post titles as 'Post Title | Blog Name'. If you have manually "
|
| 131 |
"defined a title using All in One SEO Pack, this will become the title of "
|
| 132 |
-
"your post in the format string
|
| 133 |
-
"documentation/title-settings/' target='_blank'>Click here for documentation "
|
| 134 |
-
"on this setting</a>"
|
| 135 |
msgstr ""
|
| 136 |
|
| 137 |
-
#: aioseop_class.php:
|
| 138 |
msgid ""
|
| 139 |
"Check this and Search Page Titles and Tag Page Titles will have the first "
|
| 140 |
-
"letter of each word capitalized
|
| 141 |
-
"documentation/title-settings/' target='_blank'>Click here for documentation "
|
| 142 |
-
"on this setting</a>"
|
| 143 |
msgstr ""
|
| 144 |
|
| 145 |
-
#: aioseop_class.php:
|
| 146 |
msgid ""
|
| 147 |
"Check this and Category Titles will have the first letter of each word "
|
| 148 |
-
"capitalized
|
| 149 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 150 |
msgstr ""
|
| 151 |
|
| 152 |
-
#: aioseop_class.php:
|
| 153 |
msgid ""
|
| 154 |
-
"This controls the format of the title tag for Pages.<br
|
| 155 |
-
"
|
| 156 |
-
"for documentation on this setting</a><br />The following macros are "
|
| 157 |
-
"supported:"
|
| 158 |
msgstr ""
|
| 159 |
|
| 160 |
-
#: aioseop_class.php:
|
| 161 |
-
#: aioseop_class.php:
|
| 162 |
-
#: aioseop_class.php:
|
| 163 |
-
#: aioseop_class.php:
|
| 164 |
msgid "%blog_title% - Your blog title"
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
-
#: aioseop_class.php:
|
| 168 |
-
#: aioseop_class.php:
|
| 169 |
-
#: aioseop_class.php:
|
| 170 |
-
#: aioseop_class.php:
|
| 171 |
msgid "%blog_description% - Your blog description"
|
| 172 |
msgstr ""
|
| 173 |
|
| 174 |
-
#: aioseop_class.php:
|
| 175 |
msgid "%page_title% - The original title of the page"
|
| 176 |
msgstr ""
|
| 177 |
|
| 178 |
-
#: aioseop_class.php:
|
| 179 |
msgid "%category_title% - The (main) category of the page"
|
| 180 |
msgstr ""
|
| 181 |
|
| 182 |
-
#: aioseop_class.php:
|
| 183 |
msgid "%category% - Alias for %category_title%"
|
| 184 |
msgstr ""
|
| 185 |
|
| 186 |
-
#: aioseop_class.php:
|
| 187 |
msgid "%page_author_login% - This page's author' login"
|
| 188 |
msgstr ""
|
| 189 |
|
| 190 |
-
#: aioseop_class.php:
|
| 191 |
msgid "%page_author_nicename% - This page's author' nicename"
|
| 192 |
msgstr ""
|
| 193 |
|
| 194 |
-
#: aioseop_class.php:
|
| 195 |
msgid "%page_author_firstname% - This page's author' first name (capitalized)"
|
| 196 |
msgstr ""
|
| 197 |
|
| 198 |
-
#: aioseop_class.php:
|
| 199 |
msgid "%page_author_lastname% - This page's author' last name (capitalized)"
|
| 200 |
msgstr ""
|
| 201 |
|
| 202 |
-
#: aioseop_class.php:
|
| 203 |
msgid ""
|
| 204 |
-
"This controls the format of the title tag for Posts.<br
|
| 205 |
-
"
|
| 206 |
-
"for documentation on this setting</a><br />The following macros are "
|
| 207 |
-
"supported:"
|
| 208 |
msgstr ""
|
| 209 |
|
| 210 |
-
#: aioseop_class.php:
|
| 211 |
msgid "%post_title% - The original title of the post"
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
-
#: aioseop_class.php:
|
| 215 |
msgid "%category_title% - The (main) category of the post"
|
| 216 |
msgstr ""
|
| 217 |
|
| 218 |
-
#: aioseop_class.php:
|
| 219 |
msgid "%post_author_login% - This post's author' login"
|
| 220 |
msgstr ""
|
| 221 |
|
| 222 |
-
#: aioseop_class.php:
|
| 223 |
msgid "%post_author_nicename% - This post's author' nicename"
|
| 224 |
msgstr ""
|
| 225 |
|
| 226 |
-
#: aioseop_class.php:
|
| 227 |
msgid "%post_author_firstname% - This post's author' first name (capitalized)"
|
| 228 |
msgstr ""
|
| 229 |
|
| 230 |
-
#: aioseop_class.php:
|
| 231 |
msgid "%post_author_lastname% - This post's author' last name (capitalized)"
|
| 232 |
msgstr ""
|
| 233 |
|
| 234 |
-
#: aioseop_class.php:
|
| 235 |
msgid ""
|
| 236 |
-
"This controls the format of the title tag for Category Archives.<br
|
| 237 |
-
"href='http://semperplugins.com/documentation/title-settings/' "
|
| 238 |
-
"target='_blank'>Click here for documentation on this setting</a><br />The "
|
| 239 |
"following macros are supported:"
|
| 240 |
msgstr ""
|
| 241 |
|
| 242 |
-
#: aioseop_class.php:
|
| 243 |
msgid "%category_title% - The original title of the category"
|
| 244 |
msgstr ""
|
| 245 |
|
| 246 |
-
#: aioseop_class.php:
|
| 247 |
msgid "%category_description% - The description of the category"
|
| 248 |
msgstr ""
|
| 249 |
|
| 250 |
-
#: aioseop_class.php:
|
| 251 |
msgid ""
|
| 252 |
-
"This controls the format of the title tag for Custom Post Archives.<br
|
| 253 |
-
"href='http://semperplugins.com/documentation/title-settings/' "
|
| 254 |
-
"target='_blank'>Click here for documentation on this setting</a><br />The "
|
| 255 |
"following macros are supported:"
|
| 256 |
msgstr ""
|
| 257 |
|
| 258 |
-
#: aioseop_class.php:
|
| 259 |
msgid "%archive_title - The original archive title given by wordpress"
|
| 260 |
msgstr ""
|
| 261 |
|
| 262 |
-
#: aioseop_class.php:
|
| 263 |
msgid ""
|
| 264 |
-
"This controls the format of the title tag for Date Archives.<br
|
| 265 |
-
"href='http://semperplugins.com/documentation/title-settings/' "
|
| 266 |
-
"target='_blank'>Click here for documentation on this setting</a><br />The "
|
| 267 |
"following macros are supported:"
|
| 268 |
msgstr ""
|
| 269 |
|
| 270 |
-
#: aioseop_class.php:
|
| 271 |
msgid ""
|
| 272 |
"%date% - The original archive title given by wordpress, e.g. \"2007\" or "
|
| 273 |
"\"2007 August\""
|
| 274 |
msgstr ""
|
| 275 |
|
| 276 |
-
#: aioseop_class.php:
|
| 277 |
msgid "%day% - The original archive day given by wordpress, e.g. \"17\""
|
| 278 |
msgstr ""
|
| 279 |
|
| 280 |
-
#: aioseop_class.php:
|
| 281 |
msgid ""
|
| 282 |
"%month% - The original archive month given by wordpress, e.g. \"August\""
|
| 283 |
msgstr ""
|
| 284 |
|
| 285 |
-
#: aioseop_class.php:
|
| 286 |
msgid "%year% - The original archive year given by wordpress, e.g. \"2007\""
|
| 287 |
msgstr ""
|
| 288 |
|
| 289 |
-
#: aioseop_class.php:
|
| 290 |
msgid ""
|
| 291 |
-
"This controls the format of the title tag for Author Archives.<br
|
| 292 |
-
"href='http://semperplugins.com/documentation/title-settings/' "
|
| 293 |
-
"target='_blank'>Click here for documentation on this setting</a><br />The "
|
| 294 |
"following macros are supported:"
|
| 295 |
msgstr ""
|
| 296 |
|
| 297 |
-
#: aioseop_class.php:
|
| 298 |
msgid ""
|
| 299 |
"%author% - The original archive title given by wordpress, e.g. \"Steve\" or "
|
| 300 |
"\"John Smith\""
|
| 301 |
msgstr ""
|
| 302 |
|
| 303 |
-
#: aioseop_class.php:
|
| 304 |
msgid ""
|
| 305 |
-
"This controls the format of the title tag for Tag Archives.<br
|
| 306 |
-
"href='http://semperplugins.com/documentation/title-settings/' "
|
| 307 |
-
"target='_blank'>Click here for documentation on this setting</a><br />The "
|
| 308 |
"following macros are supported:"
|
| 309 |
msgstr ""
|
| 310 |
|
| 311 |
-
#: aioseop_class.php:
|
| 312 |
msgid "%tag% - The name of the tag"
|
| 313 |
msgstr ""
|
| 314 |
|
| 315 |
-
#: aioseop_class.php:
|
| 316 |
msgid ""
|
| 317 |
-
"This controls the format of the title tag for the Search page.<br
|
| 318 |
-
"href='http://semperplugins.com/documentation/title-settings/' "
|
| 319 |
-
"target='_blank'>Click here for documentation on this setting</a><br />The "
|
| 320 |
"following macros are supported:"
|
| 321 |
msgstr ""
|
| 322 |
|
| 323 |
-
#: aioseop_class.php:
|
| 324 |
msgid "%search% - What was searched for"
|
| 325 |
msgstr ""
|
| 326 |
|
| 327 |
-
#: aioseop_class.php:
|
| 328 |
msgid ""
|
| 329 |
-
"This controls the format of Meta Descriptions
|
| 330 |
-
"semperplugins.com/documentation/title-settings/' target='_blank'>Click here "
|
| 331 |
-
"for documentation on this setting</a><br />The following macros are "
|
| 332 |
"supported:"
|
| 333 |
msgstr ""
|
| 334 |
|
| 335 |
-
#: aioseop_class.php:
|
| 336 |
msgid ""
|
| 337 |
"%description% - The original description as determined by the plugin, e.g. "
|
| 338 |
"the excerpt if one is set or an auto-generated one if that option is set"
|
| 339 |
msgstr ""
|
| 340 |
|
| 341 |
-
#: aioseop_class.php:
|
| 342 |
msgid "%wp_title% - The original wordpress title, e.g. post_title for posts"
|
| 343 |
msgstr ""
|
| 344 |
|
| 345 |
-
#: aioseop_class.php:
|
| 346 |
msgid ""
|
| 347 |
-
"This controls the format of the title tag for the 404 page.<br
|
| 348 |
-
"href='http://semperplugins.com/documentation/title-settings/' "
|
| 349 |
-
"target='_blank'>Click here for documentation on this setting</a><br />The "
|
| 350 |
"following macros are supported:"
|
| 351 |
msgstr ""
|
| 352 |
|
| 353 |
-
#: aioseop_class.php:
|
| 354 |
msgid ""
|
| 355 |
"%request_url% - The original URL path, like \"/url-that-does-not-exist/\""
|
| 356 |
msgstr ""
|
| 357 |
|
| 358 |
-
#: aioseop_class.php:
|
| 359 |
msgid ""
|
| 360 |
"%request_words% - The URL path in human readable form, like \"Url That Does "
|
| 361 |
"Not Exist\""
|
| 362 |
msgstr ""
|
| 363 |
|
| 364 |
-
#: aioseop_class.php:
|
| 365 |
msgid "%404_title% - Additional 404 title input\""
|
| 366 |
msgstr ""
|
| 367 |
|
| 368 |
-
#: aioseop_class.php:
|
| 369 |
msgid ""
|
| 370 |
"This string gets appended/prepended to titles of paged index pages (like "
|
| 371 |
-
"home or archive pages)
|
| 372 |
-
"title-settings/' target='_blank'>Click here for documentation on this "
|
| 373 |
-
"setting</a>"
|
| 374 |
msgstr ""
|
| 375 |
|
| 376 |
-
#: aioseop_class.php:
|
| 377 |
msgid "The following macros are supported:"
|
| 378 |
msgstr ""
|
| 379 |
|
| 380 |
-
#: aioseop_class.php:
|
| 381 |
msgid "%page% - The page number"
|
| 382 |
msgstr ""
|
| 383 |
|
| 384 |
-
#: aioseop_class.php:
|
| 385 |
msgid ""
|
| 386 |
"Check this if you want to use All in One SEO Pack with any Custom Post Types "
|
| 387 |
-
"on this site
|
| 388 |
-
"post-type-settings/' target='_blank'>Click here for documentation on this "
|
| 389 |
-
"setting</a>"
|
| 390 |
msgstr ""
|
| 391 |
|
| 392 |
-
#: aioseop_class.php:
|
| 393 |
msgid ""
|
| 394 |
"This will show or hide the advanced options for SEO for Custom Post Types."
|
| 395 |
-
"<br /><a href='http://semperplugins.com/documentation/custom-post-type-"
|
| 396 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 397 |
msgstr ""
|
| 398 |
|
| 399 |
-
#: aioseop_class.php:
|
| 400 |
msgid ""
|
| 401 |
"Use these checkboxes to select which Post Types you want to use All in One "
|
| 402 |
-
"SEO Pack with
|
| 403 |
-
"post-type-settings/' target='_blank'>Click here for documentation on this "
|
| 404 |
-
"setting</a>"
|
| 405 |
msgstr ""
|
| 406 |
|
| 407 |
-
#: aioseop_class.php:
|
| 408 |
-
msgid ""
|
| 409 |
-
"This allows you to set the title tags for each Custom Post Type.<br /><a "
|
| 410 |
-
"href='http://semperplugins.com/documentation/custom-post-type-settings/' "
|
| 411 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 412 |
msgstr ""
|
| 413 |
|
| 414 |
-
#: aioseop_class.php:
|
| 415 |
msgid ""
|
| 416 |
"This lets you select which screens display the SEO Title, SEO Keywords and "
|
| 417 |
-
"SEO Description columns
|
| 418 |
-
"documentation/display-settings/' target='_blank'>Click here for "
|
| 419 |
-
"documentation on this setting</a>"
|
| 420 |
msgstr ""
|
| 421 |
|
| 422 |
-
#: aioseop_class.php:
|
| 423 |
msgid ""
|
| 424 |
"Check this to add All in One SEO Pack to the Admin Bar for easy access to "
|
| 425 |
-
"your SEO settings
|
| 426 |
-
"display-settings/' target='_blank'>Click here for documentation on this "
|
| 427 |
-
"setting</a>"
|
| 428 |
msgstr ""
|
| 429 |
|
| 430 |
-
#: aioseop_class.php:
|
| 431 |
msgid ""
|
| 432 |
"Check this to move the All in One SEO Pack menu item to the top of your "
|
| 433 |
-
"WordPress Dashboard menu
|
| 434 |
-
"documentation/display-settings/' target='_blank'>Click here for "
|
| 435 |
-
"documentation on this setting</a>"
|
| 436 |
msgstr ""
|
| 437 |
|
| 438 |
-
#: aioseop_class.php:
|
| 439 |
msgid ""
|
| 440 |
"Enter your verification code here to verify your site with Google Webmaster "
|
| 441 |
"Tools.<br /><a href='http://semperplugins.com/documentation/google-webmaster-"
|
|
@@ -443,7 +392,7 @@ msgid ""
|
|
| 443 |
"setting</a>"
|
| 444 |
msgstr ""
|
| 445 |
|
| 446 |
-
#: aioseop_class.php:
|
| 447 |
msgid ""
|
| 448 |
"Enter your verification code here to verify your site with Bing Webmaster "
|
| 449 |
"Tools.<br /><a href='http://semperplugins.com/documentation/bing-webmaster-"
|
|
@@ -451,7 +400,7 @@ msgid ""
|
|
| 451 |
"a>"
|
| 452 |
msgstr ""
|
| 453 |
|
| 454 |
-
#: aioseop_class.php:
|
| 455 |
msgid ""
|
| 456 |
"Enter your verification code here to verify your site with Pinterest.<br /"
|
| 457 |
"><a href='http://semperplugins.com/documentation/pinterest-site-"
|
|
@@ -459,58 +408,52 @@ msgid ""
|
|
| 459 |
"a>"
|
| 460 |
msgstr ""
|
| 461 |
|
| 462 |
-
#: aioseop_class.php:
|
| 463 |
msgid ""
|
| 464 |
"Enter your Google+ Profile URL here to add the rel=“author” tag to your site "
|
| 465 |
"for Google authorship. It is recommended that the URL you enter here should "
|
| 466 |
"be your personal Google+ profile. Use the Advanced Authorship Options below "
|
| 467 |
-
"if you want greater control over the use of authorship
|
| 468 |
-
"semperplugins.com/documentation/google-settings/' target='_blank'>Click here "
|
| 469 |
-
"for documentation on this setting</a>"
|
| 470 |
msgstr ""
|
| 471 |
|
| 472 |
-
#: aioseop_class.php:
|
| 473 |
msgid ""
|
| 474 |
-
"Check this to remove the Google Plus field from the user profile screen
|
| 475 |
-
"><a href='http://semperplugins.com/documentation/google-settings/' "
|
| 476 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 477 |
msgstr ""
|
| 478 |
|
| 479 |
-
#: aioseop_class.php:
|
| 480 |
msgid ""
|
| 481 |
"Enable this to display advanced options for controlling Google Plus "
|
| 482 |
-
"authorship information on your website
|
| 483 |
-
"com/documentation/google-settings/' target='_blank'>Click here for "
|
| 484 |
-
"documentation on this setting</a>"
|
| 485 |
msgstr ""
|
| 486 |
|
| 487 |
-
#: aioseop_class.php:
|
| 488 |
msgid ""
|
| 489 |
"This option allows you to control which types of pages you want to display "
|
| 490 |
"rel=\"author\" on for Google authorship. The options include the Front Page "
|
| 491 |
"(the homepage of your site), Posts, Pages, and any Custom Post Types. The "
|
| 492 |
"Everywhere Else option includes 404, search, categories, tags, custom "
|
| 493 |
-
"taxonomies, date archives, author archives and any other page template
|
| 494 |
-
"><a href='http://semperplugins.com/documentation/google-settings/' "
|
| 495 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 496 |
msgstr ""
|
| 497 |
|
| 498 |
-
#: aioseop_class.php:
|
| 499 |
msgid ""
|
| 500 |
"This option allows you to control whether rel=\"publisher\" is displayed on "
|
| 501 |
"the homepage of your site. Google recommends using this if the site is a "
|
| 502 |
-
"business website
|
| 503 |
-
"google-settings/' target='_blank'>Click here for documentation on this "
|
| 504 |
-
"setting</a>"
|
| 505 |
msgstr ""
|
| 506 |
|
| 507 |
-
#: aioseop_class.php:
|
| 508 |
msgid ""
|
| 509 |
"The Google+ profile you enter here will appear on your homepage only as the "
|
| 510 |
"rel=\"publisher\" tag. It is recommended that the URL you enter here should "
|
| 511 |
-
"be the Google+ profile for your business
|
| 512 |
-
|
| 513 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 514 |
msgstr ""
|
| 515 |
|
| 516 |
#: aioseop_class.php:179
|
|
@@ -523,160 +466,164 @@ msgstr ""
|
|
| 523 |
#: aioseop_class.php:180
|
| 524 |
msgid ""
|
| 525 |
"Enter your Google Analytics ID here to track visitor behavior on your site "
|
| 526 |
-
"using Google Analytics
|
| 527 |
-
"google-analytics/' target='_blank'>Click here for documentation on this "
|
| 528 |
-
"setting</a>"
|
| 529 |
msgstr ""
|
| 530 |
|
| 531 |
#: aioseop_class.php:181
|
| 532 |
-
msgid ""
|
| 533 |
-
"Use the new Universal Analytics tracking code for Google Analytics; do this "
|
| 534 |
-
"for new analytics accounts."
|
| 535 |
msgstr ""
|
| 536 |
|
| 537 |
#: aioseop_class.php:182
|
| 538 |
-
msgid ""
|
| 539 |
-
"Enter your domain name if you have enabled tracking of Subdomains in Google "
|
| 540 |
-
"Analytics.<br /><a href='http://semperplugins.com/documentation/google-"
|
| 541 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 542 |
msgstr ""
|
| 543 |
|
| 544 |
#: aioseop_class.php:183
|
| 545 |
-
msgid ""
|
| 546 |
-
"Check this if you have enabled tracking of Multiple top-level domains in "
|
| 547 |
-
"Google Analytics.<br /><a href='http://semperplugins.com/documentation/"
|
| 548 |
-
"google-settings/' target='_blank'>Click here for documentation on this "
|
| 549 |
-
"setting</a>"
|
| 550 |
msgstr ""
|
| 551 |
|
| 552 |
#: aioseop_class.php:184
|
| 553 |
-
msgid "
|
| 554 |
msgstr ""
|
| 555 |
|
| 556 |
#: aioseop_class.php:185
|
| 557 |
-
msgid "
|
|
|
|
|
|
|
| 558 |
msgstr ""
|
| 559 |
|
| 560 |
#: aioseop_class.php:186
|
| 561 |
-
msgid "
|
| 562 |
msgstr ""
|
| 563 |
|
| 564 |
#: aioseop_class.php:187
|
| 565 |
msgid ""
|
| 566 |
-
"
|
| 567 |
-
"><a href='http://semperplugins.com/documentation/google-settings/' "
|
| 568 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 569 |
msgstr ""
|
| 570 |
|
| 571 |
#: aioseop_class.php:188
|
| 572 |
-
msgid ""
|
| 573 |
-
"Set the default NOINDEX setting for each Post Type.<br /><a href='http://"
|
| 574 |
-
"semperplugins.com/documentation/noindex-settings/' target='_blank'>Click "
|
| 575 |
-
"here for documentation on this setting</a>"
|
| 576 |
msgstr ""
|
| 577 |
|
| 578 |
#: aioseop_class.php:189
|
| 579 |
-
msgid ""
|
| 580 |
-
"Set the default NOFOLLOW setting for each Post Type.<br /><a href='http://"
|
| 581 |
-
"semperplugins.com/documentation/noindex-settings/' target='_blank'>Click "
|
| 582 |
-
"here for documentation on this setting</a>"
|
| 583 |
msgstr ""
|
| 584 |
|
| 585 |
#: aioseop_class.php:190
|
| 586 |
msgid ""
|
| 587 |
-
"
|
| 588 |
-
"avoiding duplicate content.<br /><a href='http://semperplugins.com/"
|
| 589 |
-
"documentation/noindex-settings/' target='_blank'>Click here for "
|
| 590 |
-
"documentation on this setting</a>"
|
| 591 |
msgstr ""
|
| 592 |
|
| 593 |
#: aioseop_class.php:191
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 594 |
msgid ""
|
| 595 |
"Check this to ask search engines not to index Date Archives. Useful for "
|
| 596 |
-
"avoiding duplicate content
|
| 597 |
-
"documentation/noindex-settings/' target='_blank'>Click here for "
|
| 598 |
-
"documentation on this setting</a>"
|
| 599 |
msgstr ""
|
| 600 |
|
| 601 |
-
#: aioseop_class.php:
|
| 602 |
msgid ""
|
| 603 |
"Check this to ask search engines not to index Author Archives. Useful for "
|
| 604 |
-
"avoiding duplicate content
|
| 605 |
-
"documentation/noindex-settings/' target='_blank'>Click here for "
|
| 606 |
-
"documentation on this setting</a>"
|
| 607 |
msgstr ""
|
| 608 |
|
| 609 |
-
#: aioseop_class.php:
|
| 610 |
msgid ""
|
| 611 |
"Check this to ask search engines not to index Tag Archives. Useful for "
|
| 612 |
-
"avoiding duplicate content
|
| 613 |
-
"documentation/noindex-settings/' target='_blank'>Click here for "
|
| 614 |
-
"documentation on this setting</a>"
|
| 615 |
msgstr ""
|
| 616 |
|
| 617 |
-
#: aioseop_class.php:
|
| 618 |
msgid ""
|
| 619 |
"Check this to ask search engines not to index the Search page. Useful for "
|
| 620 |
-
"avoiding duplicate content
|
| 621 |
-
"documentation/noindex-settings/' target='_blank'>Click here for "
|
| 622 |
-
"documentation on this setting</a>"
|
| 623 |
msgstr ""
|
| 624 |
|
| 625 |
-
#: aioseop_class.php:
|
| 626 |
msgid ""
|
| 627 |
"Check this to ask search engines not to index paginated pages/posts. Useful "
|
| 628 |
-
"for avoiding duplicate content
|
| 629 |
-
"documentation/noindex-settings/' target='_blank'>Click here for "
|
| 630 |
-
"documentation on this setting</a>"
|
| 631 |
msgstr ""
|
| 632 |
|
| 633 |
-
#: aioseop_class.php:
|
| 634 |
msgid ""
|
| 635 |
"Check this to ask search engines not to follow links from paginated pages/"
|
| 636 |
-
"posts. Useful for avoiding duplicate content
|
| 637 |
-
"semperplugins.com/documentation/noindex-settings/' target='_blank'>Click "
|
| 638 |
-
"here for documentation on this setting</a>"
|
| 639 |
msgstr ""
|
| 640 |
|
| 641 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 642 |
msgid ""
|
| 643 |
"Check this and your Meta Descriptions will be auto-generated from your "
|
| 644 |
-
"excerpt or content
|
| 645 |
-
"advanced-settings/' target='_blank'>Click here for documentation on this "
|
| 646 |
-
"setting</a>"
|
| 647 |
msgstr ""
|
| 648 |
|
| 649 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 650 |
msgid ""
|
| 651 |
"Check this and your Meta Descriptions will be removed from page 2 or later "
|
| 652 |
-
"of paginated content
|
| 653 |
-
"advanced-settings/' target='_blank'>Click here for documentation on this "
|
| 654 |
-
"setting</a>"
|
| 655 |
msgstr ""
|
| 656 |
|
| 657 |
-
#: aioseop_class.php:
|
| 658 |
msgid ""
|
| 659 |
"Check this to prevent your Description from being truncated regardless of "
|
| 660 |
-
"its length
|
| 661 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 662 |
msgstr ""
|
| 663 |
|
| 664 |
-
#: aioseop_class.php:
|
| 665 |
msgid ""
|
| 666 |
"Check this to support Schema.org markup, i.e., itemprop on supported "
|
| 667 |
-
"metadata
|
| 668 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 669 |
msgstr ""
|
| 670 |
|
| 671 |
-
#: aioseop_class.php:
|
| 672 |
msgid ""
|
| 673 |
"Check this to unprotect internal postmeta fields for use with XMLRPC. If you "
|
| 674 |
-
"don't know what that is, leave it unchecked
|
| 675 |
-
"semperplugins.com/documentation/advanced-settings/' target='_blank'>Click "
|
| 676 |
-
"here for documentation on this setting</a>"
|
| 677 |
msgstr ""
|
| 678 |
|
| 679 |
-
#: aioseop_class.php:
|
| 680 |
msgid ""
|
| 681 |
"Enter a comma separated list of pages here to be excluded by All in One SEO "
|
| 682 |
"Pack. This is helpful when using plugins which generate their own non-"
|
|
@@ -684,525 +631,587 @@ msgid ""
|
|
| 684 |
"you want to exclude the virtual pages generated by a forum plugin, all you "
|
| 685 |
"have to do is add forum or /forum or /forum/ or and any URL with the word "
|
| 686 |
"\"forum\" in it, such as http://mysite.com/forum or http://mysite.com/forum/"
|
| 687 |
-
"someforumpage here and it will be excluded from All in One SEO Pack
|
| 688 |
-
"href='http://semperplugins.com/documentation/advanced-settings/' "
|
| 689 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 690 |
msgstr ""
|
| 691 |
|
| 692 |
-
#: aioseop_class.php:
|
| 693 |
msgid ""
|
| 694 |
"What you enter here will be copied verbatim to the header of all Posts. You "
|
| 695 |
"can enter whatever additional headers you want here, even references to "
|
| 696 |
-
"stylesheets
|
| 697 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 698 |
msgstr ""
|
| 699 |
|
| 700 |
-
#: aioseop_class.php:
|
| 701 |
msgid ""
|
| 702 |
"What you enter here will be copied verbatim to the header of all Pages. You "
|
| 703 |
"can enter whatever additional headers you want here, even references to "
|
| 704 |
-
"stylesheets
|
| 705 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 706 |
msgstr ""
|
| 707 |
|
| 708 |
-
#: aioseop_class.php:
|
| 709 |
msgid ""
|
| 710 |
"What you enter here will be copied verbatim to the header of the front page "
|
| 711 |
"if you have set a static page in Settings, Reading, Front Page Displays. You "
|
| 712 |
"can enter whatever additional headers you want here, even references to "
|
| 713 |
"stylesheets. This will fall back to using Additional Page Headers if you "
|
| 714 |
-
"have them set and nothing is entered here
|
| 715 |
-
"semperplugins.com/documentation/advanced-settings/' target='_blank'>Click "
|
| 716 |
-
"here for documentation on this setting</a>"
|
| 717 |
msgstr ""
|
| 718 |
|
| 719 |
-
#: aioseop_class.php:
|
| 720 |
msgid ""
|
| 721 |
"What you enter here will be copied verbatim to the header of the home page "
|
| 722 |
"if you have Front page displays your latest posts selected in Settings, "
|
| 723 |
"Reading. It will also be copied verbatim to the header on the Posts page if "
|
| 724 |
"you have one set in Settings, Reading. You can enter whatever additional "
|
| 725 |
-
"headers you want here, even references to stylesheets
|
| 726 |
-
"semperplugins.com/documentation/advanced-settings/' target='_blank'>Click "
|
| 727 |
-
"here for documentation on this setting</a>"
|
| 728 |
msgstr ""
|
| 729 |
|
| 730 |
-
#: aioseop_class.php:
|
| 731 |
msgid "A preview of what this page might look like in search engine results."
|
| 732 |
msgstr ""
|
| 733 |
|
| 734 |
-
#: aioseop_class.php:
|
| 735 |
msgid "A custom title that shows up in the title tag for this page."
|
| 736 |
msgstr ""
|
| 737 |
|
| 738 |
-
#: aioseop_class.php:
|
| 739 |
msgid ""
|
| 740 |
"The META description for this page. This will override any autogenerated "
|
| 741 |
"descriptions."
|
| 742 |
msgstr ""
|
| 743 |
|
| 744 |
-
#: aioseop_class.php:
|
| 745 |
msgid ""
|
| 746 |
"A comma separated list of your most important keywords for this page that "
|
| 747 |
"will be written as META keywords."
|
| 748 |
msgstr ""
|
| 749 |
|
| 750 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 751 |
msgid "Check this box to ask search engines not to index this page."
|
| 752 |
msgstr ""
|
| 753 |
|
| 754 |
-
#: aioseop_class.php:
|
| 755 |
msgid ""
|
| 756 |
"Check this box to ask search engines not to follow links from this page."
|
| 757 |
msgstr ""
|
| 758 |
|
| 759 |
-
#: aioseop_class.php:
|
| 760 |
msgid ""
|
| 761 |
"Check this box to ask search engines not to use descriptions from the Open "
|
| 762 |
"Directory Project for this page."
|
| 763 |
msgstr ""
|
| 764 |
|
| 765 |
-
#: aioseop_class.php:
|
| 766 |
msgid ""
|
| 767 |
"Check this box to ask Yahoo! not to use descriptions from the Yahoo! "
|
| 768 |
"directory for this page."
|
| 769 |
msgstr ""
|
| 770 |
|
| 771 |
-
#: aioseop_class.php:
|
| 772 |
msgid "Set the title attribute for menu links."
|
| 773 |
msgstr ""
|
| 774 |
|
| 775 |
-
#: aioseop_class.php:
|
| 776 |
msgid "Set the label for this page menu item."
|
| 777 |
msgstr ""
|
| 778 |
|
| 779 |
-
#: aioseop_class.php:
|
| 780 |
msgid "Don't display this page in the sitemap."
|
| 781 |
msgstr ""
|
| 782 |
|
| 783 |
-
#: aioseop_class.php:
|
| 784 |
msgid "Disable SEO on this page."
|
| 785 |
msgstr ""
|
| 786 |
|
| 787 |
-
#: aioseop_class.php:
|
| 788 |
msgid "Disable Google Analytics on this page."
|
| 789 |
msgstr ""
|
| 790 |
|
| 791 |
-
#: aioseop_class.php:
|
| 792 |
msgid "I enjoy this plugin and have made a donation:"
|
| 793 |
msgstr ""
|
| 794 |
|
| 795 |
-
#: aioseop_class.php:
|
| 796 |
msgid "Home Title:"
|
| 797 |
msgstr ""
|
| 798 |
|
| 799 |
-
#: aioseop_class.php:
|
| 800 |
msgid "Home Description:"
|
| 801 |
msgstr ""
|
| 802 |
|
| 803 |
-
#: aioseop_class.php:
|
| 804 |
msgid "Use Keywords:"
|
| 805 |
msgstr ""
|
| 806 |
|
| 807 |
-
#: aioseop_class.php:
|
| 808 |
-
#: aioseop_class.php:
|
| 809 |
-
#: aioseop_class.php:
|
|
|
|
| 810 |
msgid "Enabled"
|
| 811 |
msgstr ""
|
| 812 |
|
| 813 |
-
#: aioseop_class.php:
|
| 814 |
-
#: aioseop_class.php:
|
| 815 |
-
#: aioseop_class.php:
|
|
|
|
| 816 |
msgid "Disabled"
|
| 817 |
msgstr ""
|
| 818 |
|
| 819 |
-
#: aioseop_class.php:
|
| 820 |
msgid "Home Keywords (comma separated):"
|
| 821 |
msgstr ""
|
| 822 |
|
| 823 |
-
#: aioseop_class.php:
|
| 824 |
msgid "Canonical URLs:"
|
| 825 |
msgstr ""
|
| 826 |
|
| 827 |
-
#: aioseop_class.php:
|
| 828 |
msgid "No Pagination for Canonical URLs:"
|
| 829 |
msgstr ""
|
| 830 |
|
| 831 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 832 |
msgid "Rewrite Titles:"
|
| 833 |
msgstr ""
|
| 834 |
|
| 835 |
-
#: aioseop_class.php:
|
| 836 |
msgid "Force Rewrites:"
|
| 837 |
msgstr ""
|
| 838 |
|
| 839 |
-
#: aioseop_class.php:
|
| 840 |
msgid "Use Original Title:"
|
| 841 |
msgstr ""
|
| 842 |
|
| 843 |
-
#: aioseop_class.php:
|
| 844 |
msgid "Capitalize Titles:"
|
| 845 |
msgstr ""
|
| 846 |
|
| 847 |
-
#: aioseop_class.php:
|
| 848 |
msgid "Capitalize Category Titles:"
|
| 849 |
msgstr ""
|
| 850 |
|
| 851 |
-
#: aioseop_class.php:
|
| 852 |
msgid "Page Title Format:"
|
| 853 |
msgstr ""
|
| 854 |
|
| 855 |
-
#: aioseop_class.php:
|
| 856 |
msgid "Post Title Format:"
|
| 857 |
msgstr ""
|
| 858 |
|
| 859 |
-
#: aioseop_class.php:
|
| 860 |
msgid "Category Title Format:"
|
| 861 |
msgstr ""
|
| 862 |
|
| 863 |
-
#: aioseop_class.php:
|
| 864 |
msgid "Archive Title Format:"
|
| 865 |
msgstr ""
|
| 866 |
|
| 867 |
-
#: aioseop_class.php:
|
| 868 |
msgid "Date Archive Title Format:"
|
| 869 |
msgstr ""
|
| 870 |
|
| 871 |
-
#: aioseop_class.php:
|
| 872 |
msgid "Author Archive Title Format:"
|
| 873 |
msgstr ""
|
| 874 |
|
| 875 |
-
#: aioseop_class.php:
|
| 876 |
msgid "Tag Title Format:"
|
| 877 |
msgstr ""
|
| 878 |
|
| 879 |
-
#: aioseop_class.php:
|
| 880 |
msgid "Search Title Format:"
|
| 881 |
msgstr ""
|
| 882 |
|
| 883 |
-
#: aioseop_class.php:
|
| 884 |
msgid "Description Format"
|
| 885 |
msgstr ""
|
| 886 |
|
| 887 |
-
#: aioseop_class.php:
|
| 888 |
msgid "404 Title Format:"
|
| 889 |
msgstr ""
|
| 890 |
|
| 891 |
-
#: aioseop_class.php:
|
| 892 |
msgid "Paged Format:"
|
| 893 |
msgstr ""
|
| 894 |
|
| 895 |
-
#: aioseop_class.php:
|
| 896 |
msgid "SEO for Custom Post Types:"
|
| 897 |
msgstr ""
|
| 898 |
|
| 899 |
-
#: aioseop_class.php:
|
| 900 |
msgid "Enable Advanced Options:"
|
| 901 |
msgstr ""
|
| 902 |
|
| 903 |
-
#: aioseop_class.php:
|
| 904 |
msgid "SEO on only these post types:"
|
| 905 |
msgstr ""
|
| 906 |
|
| 907 |
-
#: aioseop_class.php:
|
| 908 |
msgid "Default to NOINDEX:"
|
| 909 |
msgstr ""
|
| 910 |
|
| 911 |
-
#: aioseop_class.php:
|
| 912 |
msgid "Default to NOFOLLOW:"
|
| 913 |
msgstr ""
|
| 914 |
|
| 915 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 916 |
msgid "Custom titles:"
|
| 917 |
msgstr ""
|
| 918 |
|
| 919 |
-
#: aioseop_class.php:
|
| 920 |
msgid "Show Column Labels for Custom Post Types:"
|
| 921 |
msgstr ""
|
| 922 |
|
| 923 |
-
#: aioseop_class.php:
|
| 924 |
msgid "Display Menu In Admin Bar:"
|
| 925 |
msgstr ""
|
| 926 |
|
| 927 |
-
#: aioseop_class.php:
|
| 928 |
msgid "Display Menu At The Top:"
|
| 929 |
msgstr ""
|
| 930 |
|
| 931 |
-
#: aioseop_class.php:
|
| 932 |
msgid "Google Webmaster Tools:"
|
| 933 |
msgstr ""
|
| 934 |
|
| 935 |
-
#: aioseop_class.php:
|
| 936 |
msgid "Bing Webmaster Center:"
|
| 937 |
msgstr ""
|
| 938 |
|
| 939 |
-
#: aioseop_class.php:
|
| 940 |
msgid "Pinterest Site Verification:"
|
| 941 |
msgstr ""
|
| 942 |
|
| 943 |
-
#: aioseop_class.php:
|
| 944 |
msgid "Google Plus Default Profile:"
|
| 945 |
msgstr ""
|
| 946 |
|
| 947 |
-
#: aioseop_class.php:
|
| 948 |
msgid "Disable Google Plus Profile:"
|
| 949 |
msgstr ""
|
| 950 |
|
| 951 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 952 |
msgid "Advanced Authorship Options:"
|
| 953 |
msgstr ""
|
| 954 |
|
| 955 |
-
#: aioseop_class.php:
|
| 956 |
msgid "Display Google Authorship:"
|
| 957 |
msgstr ""
|
| 958 |
|
| 959 |
-
#: aioseop_class.php:
|
| 960 |
msgid "Display Publisher Meta on Front Page:"
|
| 961 |
msgstr ""
|
| 962 |
|
| 963 |
-
#: aioseop_class.php:
|
| 964 |
msgid "Specify Publisher URL:"
|
| 965 |
msgstr ""
|
| 966 |
|
| 967 |
-
#: aioseop_class.php:
|
| 968 |
msgid "Connect With Google Analytics"
|
| 969 |
msgstr ""
|
| 970 |
|
| 971 |
-
#: aioseop_class.php:
|
| 972 |
msgid "Google Analytics ID:"
|
| 973 |
msgstr ""
|
| 974 |
|
| 975 |
-
#: aioseop_class.php:
|
| 976 |
msgid "Use Universal Analytics:"
|
| 977 |
msgstr ""
|
| 978 |
|
| 979 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 980 |
msgid "Tracking Domain:"
|
| 981 |
msgstr ""
|
| 982 |
|
| 983 |
-
#: aioseop_class.php:
|
| 984 |
msgid "Track Multiple Domains:"
|
| 985 |
msgstr ""
|
| 986 |
|
| 987 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 988 |
msgid "Anonymize IP Addresses:"
|
| 989 |
msgstr ""
|
| 990 |
|
| 991 |
-
#: aioseop_class.php:
|
| 992 |
-
msgid "
|
| 993 |
msgstr ""
|
| 994 |
|
| 995 |
-
#: aioseop_class.php:
|
| 996 |
msgid "Exclude Users From Tracking:"
|
| 997 |
msgstr ""
|
| 998 |
|
| 999 |
-
#: aioseop_class.php:
|
| 1000 |
msgid "Track Outbound Links:"
|
| 1001 |
msgstr ""
|
| 1002 |
|
| 1003 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1004 |
msgid "Use Categories for META keywords:"
|
| 1005 |
msgstr ""
|
| 1006 |
|
| 1007 |
-
#: aioseop_class.php:
|
| 1008 |
msgid "Use Tags for META keywords:"
|
| 1009 |
msgstr ""
|
| 1010 |
|
| 1011 |
-
#: aioseop_class.php:
|
| 1012 |
msgid "Dynamically Generate Keywords for Posts Page:"
|
| 1013 |
msgstr ""
|
| 1014 |
|
| 1015 |
-
#: aioseop_class.php:
|
| 1016 |
msgid "Use noindex for Categories:"
|
| 1017 |
msgstr ""
|
| 1018 |
|
| 1019 |
-
#: aioseop_class.php:
|
| 1020 |
msgid "Use noindex for Date Archives:"
|
| 1021 |
msgstr ""
|
| 1022 |
|
| 1023 |
-
#: aioseop_class.php:
|
| 1024 |
msgid "Use noindex for Author Archives:"
|
| 1025 |
msgstr ""
|
| 1026 |
|
| 1027 |
-
#: aioseop_class.php:
|
| 1028 |
msgid "Use noindex for Tag Archives:"
|
| 1029 |
msgstr ""
|
| 1030 |
|
| 1031 |
-
#: aioseop_class.php:
|
| 1032 |
msgid "Use noindex for the Search page:"
|
| 1033 |
msgstr ""
|
| 1034 |
|
| 1035 |
-
#: aioseop_class.php:
|
| 1036 |
msgid "Use noindex for paginated pages/posts:"
|
| 1037 |
msgstr ""
|
| 1038 |
|
| 1039 |
-
#: aioseop_class.php:
|
| 1040 |
msgid "Use nofollow for paginated pages/posts:"
|
| 1041 |
msgstr ""
|
| 1042 |
|
| 1043 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1044 |
msgid "Autogenerate Descriptions:"
|
| 1045 |
msgstr ""
|
| 1046 |
|
| 1047 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1048 |
msgid "Remove Descriptions For Paginated Pages:"
|
| 1049 |
msgstr ""
|
| 1050 |
|
| 1051 |
-
#: aioseop_class.php:
|
| 1052 |
msgid "Never Shorten Long Descriptions:"
|
| 1053 |
msgstr ""
|
| 1054 |
|
| 1055 |
-
#: aioseop_class.php:
|
| 1056 |
msgid "Use Schema.org Markup"
|
| 1057 |
msgstr ""
|
| 1058 |
|
| 1059 |
-
#: aioseop_class.php:
|
| 1060 |
msgid "Unprotect Post Meta Fields:"
|
| 1061 |
msgstr ""
|
| 1062 |
|
| 1063 |
-
#: aioseop_class.php:
|
| 1064 |
msgid "Exclude Pages:"
|
| 1065 |
msgstr ""
|
| 1066 |
|
| 1067 |
-
#: aioseop_class.php:
|
| 1068 |
msgid "Additional Post Headers:"
|
| 1069 |
msgstr ""
|
| 1070 |
|
| 1071 |
-
#: aioseop_class.php:
|
| 1072 |
msgid "Additional Page Headers:"
|
| 1073 |
msgstr ""
|
| 1074 |
|
| 1075 |
-
#: aioseop_class.php:
|
| 1076 |
msgid "Additional Front Page Headers:"
|
| 1077 |
msgstr ""
|
| 1078 |
|
| 1079 |
-
#: aioseop_class.php:
|
| 1080 |
msgid "Additional Blog Page Headers:"
|
| 1081 |
msgstr ""
|
| 1082 |
|
| 1083 |
-
#: aioseop_class.php:
|
| 1084 |
msgid "Log important events:"
|
| 1085 |
msgstr ""
|
| 1086 |
|
| 1087 |
-
#: aioseop_class.php:
|
| 1088 |
msgid "Upgrade to All in One SEO Pack Pro Version"
|
| 1089 |
msgstr ""
|
| 1090 |
|
| 1091 |
-
#: aioseop_class.php:
|
| 1092 |
msgid "Preview Snippet"
|
| 1093 |
msgstr ""
|
| 1094 |
|
| 1095 |
-
#: aioseop_class.php:
|
| 1096 |
msgid "Title"
|
| 1097 |
msgstr ""
|
| 1098 |
|
| 1099 |
-
#: aioseop_class.php:
|
| 1100 |
msgid "Description"
|
| 1101 |
msgstr ""
|
| 1102 |
|
| 1103 |
-
#: aioseop_class.php:
|
| 1104 |
msgid "Keywords (comma separated)"
|
| 1105 |
msgstr ""
|
| 1106 |
|
| 1107 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1108 |
msgid "Robots Meta NOINDEX"
|
| 1109 |
msgstr ""
|
| 1110 |
|
| 1111 |
-
#: aioseop_class.php:
|
| 1112 |
msgid "Robots Meta NOFOLLOW"
|
| 1113 |
msgstr ""
|
| 1114 |
|
| 1115 |
-
#: aioseop_class.php:
|
| 1116 |
msgid "Robots Meta NOODP"
|
| 1117 |
msgstr ""
|
| 1118 |
|
| 1119 |
-
#: aioseop_class.php:
|
| 1120 |
msgid "Robots Meta NOYDIR"
|
| 1121 |
msgstr ""
|
| 1122 |
|
| 1123 |
-
#: aioseop_class.php:
|
| 1124 |
msgid "Title Attribute"
|
| 1125 |
msgstr ""
|
| 1126 |
|
| 1127 |
-
#: aioseop_class.php:
|
| 1128 |
msgid "Menu Label"
|
| 1129 |
msgstr ""
|
| 1130 |
|
| 1131 |
-
#: aioseop_class.php:
|
| 1132 |
msgid "Exclude From Sitemap"
|
| 1133 |
msgstr ""
|
| 1134 |
|
| 1135 |
-
#: aioseop_class.php:
|
| 1136 |
msgid "Disable on this page/post"
|
| 1137 |
msgstr ""
|
| 1138 |
|
| 1139 |
-
#: aioseop_class.php:
|
| 1140 |
msgid "Disable Google Analytics"
|
| 1141 |
msgstr ""
|
| 1142 |
|
| 1143 |
-
#: aioseop_class.php:
|
| 1144 |
msgid "Home Page Settings"
|
| 1145 |
msgstr ""
|
| 1146 |
|
| 1147 |
-
#: aioseop_class.php:
|
| 1148 |
msgid "Keyword Settings"
|
| 1149 |
msgstr ""
|
| 1150 |
|
| 1151 |
-
#: aioseop_class.php:
|
| 1152 |
msgid "Title Settings"
|
| 1153 |
msgstr ""
|
| 1154 |
|
| 1155 |
-
#: aioseop_class.php:
|
| 1156 |
msgid "Custom Post Type Settings"
|
| 1157 |
msgstr ""
|
| 1158 |
|
| 1159 |
-
#: aioseop_class.php:
|
| 1160 |
msgid "Display Settings"
|
| 1161 |
msgstr ""
|
| 1162 |
|
| 1163 |
-
#: aioseop_class.php:
|
| 1164 |
msgid "Webmaster Verification"
|
| 1165 |
msgstr ""
|
| 1166 |
|
| 1167 |
-
#: aioseop_class.php:
|
| 1168 |
msgid "Google Settings"
|
| 1169 |
msgstr ""
|
| 1170 |
|
| 1171 |
-
#: aioseop_class.php:
|
| 1172 |
msgid "Noindex Settings"
|
| 1173 |
msgstr ""
|
| 1174 |
|
| 1175 |
-
#: aioseop_class.php:
|
| 1176 |
msgid "Advanced Settings"
|
| 1177 |
msgstr ""
|
| 1178 |
|
| 1179 |
-
#: aioseop_class.php:
|
| 1180 |
msgid "Front Page"
|
| 1181 |
msgstr ""
|
| 1182 |
|
| 1183 |
-
#: aioseop_class.php:
|
| 1184 |
msgid "Everywhere Else"
|
| 1185 |
msgstr ""
|
| 1186 |
|
| 1187 |
-
#: aioseop_class.php:
|
| 1188 |
msgid "Title Format:"
|
| 1189 |
msgstr ""
|
| 1190 |
|
| 1191 |
-
#: aioseop_class.php:
|
| 1192 |
msgid "Welcome to Version %s!"
|
| 1193 |
msgstr ""
|
| 1194 |
|
| 1195 |
-
#: aioseop_class.php:
|
| 1196 |
msgid ""
|
| 1197 |
"Thank you for running the latest and greatest All in One SEO Pack ever! "
|
| 1198 |
"Please review your settings, as we're always adding new features for you!"
|
| 1199 |
msgstr ""
|
| 1200 |
|
| 1201 |
-
#: aioseop_class.php:
|
| 1202 |
msgid "Review Your Settings"
|
| 1203 |
msgstr ""
|
| 1204 |
|
| 1205 |
-
#: aioseop_class.php:
|
| 1206 |
msgid ""
|
| 1207 |
"Thank you for running the latest and greatest All in One SEO Pack ever! New "
|
| 1208 |
"since 2.2: Control who accesses your site with the new Robots.txt Editor and "
|
|
@@ -1210,152 +1219,194 @@ msgid ""
|
|
| 1210 |
"review your settings, we have added some new ones!"
|
| 1211 |
msgstr ""
|
| 1212 |
|
| 1213 |
-
#: aioseop_class.php:
|
| 1214 |
msgid "Reset General Settings to Defaults"
|
| 1215 |
msgstr ""
|
| 1216 |
|
| 1217 |
-
#: aioseop_class.php:
|
| 1218 |
msgid "Reset ALL Settings to Defaults"
|
| 1219 |
msgstr ""
|
| 1220 |
|
| 1221 |
-
#: aioseop_class.php:
|
| 1222 |
msgid "Default - noindex"
|
| 1223 |
msgstr ""
|
| 1224 |
|
| 1225 |
-
#: aioseop_class.php:
|
| 1226 |
msgid "index"
|
| 1227 |
msgstr ""
|
| 1228 |
|
| 1229 |
-
#: aioseop_class.php:
|
| 1230 |
msgid "noindex"
|
| 1231 |
msgstr ""
|
| 1232 |
|
| 1233 |
-
#: aioseop_class.php:
|
| 1234 |
msgid "Default - nofollow"
|
| 1235 |
msgstr ""
|
| 1236 |
|
| 1237 |
-
#: aioseop_class.php:
|
| 1238 |
msgid "follow"
|
| 1239 |
msgstr ""
|
| 1240 |
|
| 1241 |
-
#: aioseop_class.php:
|
| 1242 |
msgid "nofollow"
|
| 1243 |
msgstr ""
|
| 1244 |
|
| 1245 |
-
#: aioseop_class.php:
|
| 1246 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1247 |
msgstr ""
|
| 1248 |
|
| 1249 |
-
#: aioseop_class.php:
|
| 1250 |
-
msgid "
|
| 1251 |
msgstr ""
|
| 1252 |
|
| 1253 |
-
#: aioseop_class.php:
|
| 1254 |
-
msgid "
|
| 1255 |
msgstr ""
|
| 1256 |
|
| 1257 |
-
#: aioseop_class.php:
|
| 1258 |
-
msgid "
|
| 1259 |
msgstr ""
|
| 1260 |
|
| 1261 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1262 |
msgid "Pro Version"
|
| 1263 |
msgstr ""
|
| 1264 |
|
| 1265 |
-
#: aioseop_class.php:
|
| 1266 |
msgid "UPGRADE TO PRO VERSION"
|
| 1267 |
msgstr ""
|
| 1268 |
|
| 1269 |
-
#: aioseop_class.php:
|
| 1270 |
msgid "Donate"
|
| 1271 |
msgstr ""
|
| 1272 |
|
| 1273 |
-
#: aioseop_class.php:
|
| 1274 |
msgid "Donate with Paypal"
|
| 1275 |
msgstr ""
|
| 1276 |
|
| 1277 |
-
#: aioseop_class.php:
|
| 1278 |
msgid "My Amazon Wish List"
|
| 1279 |
msgstr ""
|
| 1280 |
|
| 1281 |
-
#: aioseop_class.php:
|
| 1282 |
msgid "Follow us on Facebook"
|
| 1283 |
msgstr ""
|
| 1284 |
|
| 1285 |
-
#: aioseop_class.php:
|
| 1286 |
msgid "Follow us on Twitter"
|
| 1287 |
msgstr ""
|
| 1288 |
|
| 1289 |
-
#: aioseop_class.php:
|
| 1290 |
msgid "Join our mailing list for tips, tricks, and WordPress secrets."
|
| 1291 |
msgstr ""
|
| 1292 |
|
| 1293 |
-
#: aioseop_class.php:
|
| 1294 |
msgid ""
|
| 1295 |
"Sign up today and receive a free copy of the e-book 5 SEO Tips for WordPress "
|
| 1296 |
"($39 value)."
|
| 1297 |
msgstr ""
|
| 1298 |
|
| 1299 |
-
#: aioseop_class.php:
|
| 1300 |
-
msgid ""
|
| 1301 |
-
|
| 1302 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1303 |
msgstr ""
|
| 1304 |
|
| 1305 |
-
#: aioseop_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1306 |
msgid ""
|
| 1307 |
"Debug Warning: All in One SEO Pack meta data was included again from %s "
|
| 1308 |
"filter. Called %s times!"
|
| 1309 |
msgstr ""
|
| 1310 |
|
| 1311 |
-
#: aioseop_class.php:
|
| 1312 |
msgid "Disconnect From Google Analytics"
|
| 1313 |
msgstr ""
|
| 1314 |
|
| 1315 |
-
#: aioseop_class.php:
|
| 1316 |
msgid "Remove Stored Credentials"
|
| 1317 |
msgstr ""
|
| 1318 |
|
| 1319 |
-
#: aioseop_class.php:
|
| 1320 |
msgid "Google Analytics"
|
| 1321 |
msgstr ""
|
| 1322 |
|
| 1323 |
-
#: aioseop_class.php:
|
| 1324 |
msgid "SEO"
|
| 1325 |
msgstr ""
|
| 1326 |
|
| 1327 |
-
#: aioseop_class.php:
|
| 1328 |
msgid "Edit SEO"
|
| 1329 |
msgstr ""
|
| 1330 |
|
| 1331 |
-
#: aioseop_class.php:
|
| 1332 |
msgid "Upgrade To Pro"
|
| 1333 |
msgstr ""
|
| 1334 |
|
| 1335 |
-
#: aioseop_class.php:
|
| 1336 |
msgid "All in One SEO"
|
| 1337 |
msgstr ""
|
| 1338 |
|
| 1339 |
-
#: aioseop_class.php:
|
| 1340 |
msgid "Thank you!"
|
| 1341 |
msgstr ""
|
| 1342 |
|
| 1343 |
-
#: aioseop_class.php:
|
| 1344 |
msgid ""
|
| 1345 |
"Thank you for your donation, it helps keep this plugin free and actively "
|
| 1346 |
"developed!"
|
| 1347 |
msgstr ""
|
| 1348 |
|
| 1349 |
-
#: aioseop_class.php:
|
| 1350 |
msgid "Join Our Mailing List"
|
| 1351 |
msgstr ""
|
| 1352 |
|
| 1353 |
-
#: aioseop_class.php:
|
| 1354 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1355 |
msgid "Help"
|
| 1356 |
msgstr ""
|
| 1357 |
|
| 1358 |
-
#: aioseop_class.php:
|
| 1359 |
msgid "Main Settings"
|
| 1360 |
msgstr ""
|
| 1361 |
|
|
@@ -1373,7 +1424,7 @@ msgid ""
|
|
| 1373 |
"Sitemap to Google, Bing/Yahoo and Ask.com."
|
| 1374 |
msgstr ""
|
| 1375 |
|
| 1376 |
-
#: aioseop_feature_manager.php:21 aioseop_opengraph.php:
|
| 1377 |
msgid "Social Meta"
|
| 1378 |
msgstr ""
|
| 1379 |
|
|
@@ -1470,78 +1521,78 @@ msgstr ""
|
|
| 1470 |
msgid "Update .htaccess"
|
| 1471 |
msgstr ""
|
| 1472 |
|
| 1473 |
-
#: aioseop_functions.php:
|
| 1474 |
msgid "SEO Title"
|
| 1475 |
msgstr ""
|
| 1476 |
|
| 1477 |
-
#: aioseop_functions.php:
|
| 1478 |
msgid "SEO Description"
|
| 1479 |
msgstr ""
|
| 1480 |
|
| 1481 |
-
#: aioseop_functions.php:
|
| 1482 |
msgid "SEO Keywords"
|
| 1483 |
msgstr ""
|
| 1484 |
|
| 1485 |
-
#: aioseop_functions.php:
|
| 1486 |
-
#: aioseop_functions.php:
|
| 1487 |
msgid "Edit"
|
| 1488 |
msgstr ""
|
| 1489 |
|
| 1490 |
-
#: aioseop_functions.php:
|
| 1491 |
msgid "Post"
|
| 1492 |
msgstr ""
|
| 1493 |
|
| 1494 |
-
#: aioseop_functions.php:
|
| 1495 |
msgid "Save"
|
| 1496 |
msgstr ""
|
| 1497 |
|
| 1498 |
-
#: aioseop_functions.php:
|
| 1499 |
msgid "Cancel"
|
| 1500 |
msgstr ""
|
| 1501 |
|
| 1502 |
-
#: aioseop_functions.php:
|
| 1503 |
msgid "Please wait..."
|
| 1504 |
msgstr ""
|
| 1505 |
|
| 1506 |
-
#: aioseop_functions.php:
|
| 1507 |
msgid "Slug may not be empty!"
|
| 1508 |
msgstr ""
|
| 1509 |
|
| 1510 |
-
#: aioseop_functions.php:
|
| 1511 |
msgid "Revisions"
|
| 1512 |
msgstr ""
|
| 1513 |
|
| 1514 |
-
#: aioseop_functions.php:
|
| 1515 |
msgid "Insert time"
|
| 1516 |
msgstr ""
|
| 1517 |
|
| 1518 |
-
#: aioseop_functions.php:
|
| 1519 |
-
#: aioseop_performance.php:
|
| 1520 |
-
#: aioseop_performance.php:
|
| 1521 |
msgid "No"
|
| 1522 |
msgstr ""
|
| 1523 |
|
| 1524 |
-
#: aioseop_functions.php:
|
| 1525 |
msgid "Unauthorized access; try reloading the page."
|
| 1526 |
msgstr ""
|
| 1527 |
|
| 1528 |
-
#: aioseop_functions.php:
|
| 1529 |
msgid "Row %s not found; no rows were deleted."
|
| 1530 |
msgstr ""
|
| 1531 |
|
| 1532 |
-
#: aioseop_functions.php:
|
| 1533 |
msgid "Duplicate %s Meta"
|
| 1534 |
msgstr ""
|
| 1535 |
|
| 1536 |
-
#: aioseop_functions.php:
|
| 1537 |
msgid "No duplicate meta tags found."
|
| 1538 |
msgstr ""
|
| 1539 |
|
| 1540 |
-
#: aioseop_functions.php:
|
| 1541 |
msgid "What Does This Mean?"
|
| 1542 |
msgstr ""
|
| 1543 |
|
| 1544 |
-
#: aioseop_functions.php:
|
| 1545 |
msgid ""
|
| 1546 |
"All in One SEO Pack has detected that a plugin(s) or theme is also "
|
| 1547 |
"outputting social meta tags on your site. You can view this social meta in "
|
|
@@ -1549,35 +1600,35 @@ msgid ""
|
|
| 1549 |
"how to view source code)."
|
| 1550 |
msgstr ""
|
| 1551 |
|
| 1552 |
-
#: aioseop_functions.php:
|
| 1553 |
msgid ""
|
| 1554 |
"You may prefer to use the social meta tags that are being output by the "
|
| 1555 |
"other plugin(s) or theme. If so, then you should deactivate this Social "
|
| 1556 |
"Meta feature in All in One SEO Pack Feature Manager."
|
| 1557 |
msgstr ""
|
| 1558 |
|
| 1559 |
-
#: aioseop_functions.php:
|
| 1560 |
msgid ""
|
| 1561 |
"You should avoid duplicate social meta tags. You can use these free tools "
|
| 1562 |
"from Facebook, Google and Twitter to validate your social meta and check for "
|
| 1563 |
"errors:"
|
| 1564 |
msgstr ""
|
| 1565 |
|
| 1566 |
-
#: aioseop_functions.php:
|
| 1567 |
msgid ""
|
| 1568 |
"Please refer to the document for each tool for help in using these to debug "
|
| 1569 |
"your social meta."
|
| 1570 |
msgstr ""
|
| 1571 |
|
| 1572 |
-
#: aioseop_functions.php:
|
| 1573 |
msgid "Google+"
|
| 1574 |
msgstr ""
|
| 1575 |
|
| 1576 |
-
#: aioseop_functions.php:
|
| 1577 |
msgid "Twitter"
|
| 1578 |
msgstr ""
|
| 1579 |
|
| 1580 |
-
#: aioseop_functions.php:
|
| 1581 |
msgid "Facebook"
|
| 1582 |
msgstr ""
|
| 1583 |
|
|
@@ -1649,597 +1700,575 @@ msgstr ""
|
|
| 1649 |
msgid "Settings export file for All in One SEO Pack"
|
| 1650 |
msgstr ""
|
| 1651 |
|
| 1652 |
-
#: aioseop_module_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1653 |
msgid " characters. Most search engines use a maximum of %s chars for the %s."
|
| 1654 |
msgstr ""
|
| 1655 |
|
| 1656 |
-
#: aioseop_module_class.php:
|
| 1657 |
msgid "Click for Help!"
|
| 1658 |
msgstr ""
|
| 1659 |
|
| 1660 |
-
#: aioseop_module_class.php:
|
| 1661 |
msgid ""
|
| 1662 |
"Security Check - If you receive this in error, log out and back in to "
|
| 1663 |
"WordPress"
|
| 1664 |
msgstr ""
|
| 1665 |
|
| 1666 |
-
#: aioseop_module_class.php:
|
| 1667 |
msgid "Options Reset."
|
| 1668 |
msgstr ""
|
| 1669 |
|
| 1670 |
-
#: aioseop_module_class.php:
|
| 1671 |
msgid "All in One SEO Options Updated."
|
| 1672 |
msgstr ""
|
| 1673 |
|
| 1674 |
-
#: aioseop_module_class.php:
|
| 1675 |
msgid "Update Options"
|
| 1676 |
msgstr ""
|
| 1677 |
|
| 1678 |
-
#: aioseop_opengraph.php:
|
| 1679 |
msgid "Activity"
|
| 1680 |
msgstr ""
|
| 1681 |
|
| 1682 |
-
#: aioseop_opengraph.php:
|
| 1683 |
msgid "Sport"
|
| 1684 |
msgstr ""
|
| 1685 |
|
| 1686 |
-
#: aioseop_opengraph.php:
|
| 1687 |
msgid "Bar"
|
| 1688 |
msgstr ""
|
| 1689 |
|
| 1690 |
-
#: aioseop_opengraph.php:
|
| 1691 |
msgid "Company"
|
| 1692 |
msgstr ""
|
| 1693 |
|
| 1694 |
-
#: aioseop_opengraph.php:
|
| 1695 |
msgid "Cafe"
|
| 1696 |
msgstr ""
|
| 1697 |
|
| 1698 |
-
#: aioseop_opengraph.php:
|
| 1699 |
msgid "Hotel"
|
| 1700 |
msgstr ""
|
| 1701 |
|
| 1702 |
-
#: aioseop_opengraph.php:
|
| 1703 |
msgid "Restaurant"
|
| 1704 |
msgstr ""
|
| 1705 |
|
| 1706 |
-
#: aioseop_opengraph.php:
|
| 1707 |
msgid "Cause"
|
| 1708 |
msgstr ""
|
| 1709 |
|
| 1710 |
-
#: aioseop_opengraph.php:
|
| 1711 |
msgid "Sports League"
|
| 1712 |
msgstr ""
|
| 1713 |
|
| 1714 |
-
#: aioseop_opengraph.php:
|
| 1715 |
msgid "Sports Team"
|
| 1716 |
msgstr ""
|
| 1717 |
|
| 1718 |
-
#: aioseop_opengraph.php:
|
| 1719 |
msgid "Band"
|
| 1720 |
msgstr ""
|
| 1721 |
|
| 1722 |
-
#: aioseop_opengraph.php:
|
| 1723 |
msgid "Government"
|
| 1724 |
msgstr ""
|
| 1725 |
|
| 1726 |
-
#: aioseop_opengraph.php:
|
| 1727 |
msgid "Non Profit"
|
| 1728 |
msgstr ""
|
| 1729 |
|
| 1730 |
-
#: aioseop_opengraph.php:
|
| 1731 |
msgid "School"
|
| 1732 |
msgstr ""
|
| 1733 |
|
| 1734 |
-
#: aioseop_opengraph.php:
|
| 1735 |
msgid "University"
|
| 1736 |
msgstr ""
|
| 1737 |
|
| 1738 |
-
#: aioseop_opengraph.php:
|
| 1739 |
msgid "Actor"
|
| 1740 |
msgstr ""
|
| 1741 |
|
| 1742 |
-
#: aioseop_opengraph.php:
|
| 1743 |
msgid "Athlete"
|
| 1744 |
msgstr ""
|
| 1745 |
|
| 1746 |
-
#: aioseop_opengraph.php:
|
| 1747 |
msgid "Author"
|
| 1748 |
msgstr ""
|
| 1749 |
|
| 1750 |
-
#: aioseop_opengraph.php:
|
| 1751 |
msgid "Director"
|
| 1752 |
msgstr ""
|
| 1753 |
|
| 1754 |
-
#: aioseop_opengraph.php:
|
| 1755 |
msgid "Musician"
|
| 1756 |
msgstr ""
|
| 1757 |
|
| 1758 |
-
#: aioseop_opengraph.php:
|
| 1759 |
msgid "Politician"
|
| 1760 |
msgstr ""
|
| 1761 |
|
| 1762 |
-
#: aioseop_opengraph.php:
|
| 1763 |
msgid "Profile"
|
| 1764 |
msgstr ""
|
| 1765 |
|
| 1766 |
-
#: aioseop_opengraph.php:
|
| 1767 |
msgid "Public Figure"
|
| 1768 |
msgstr ""
|
| 1769 |
|
| 1770 |
-
#: aioseop_opengraph.php:
|
| 1771 |
msgid "City"
|
| 1772 |
msgstr ""
|
| 1773 |
|
| 1774 |
-
#: aioseop_opengraph.php:
|
| 1775 |
msgid "Country"
|
| 1776 |
msgstr ""
|
| 1777 |
|
| 1778 |
-
#: aioseop_opengraph.php:
|
| 1779 |
msgid "Landmark"
|
| 1780 |
msgstr ""
|
| 1781 |
|
| 1782 |
-
#: aioseop_opengraph.php:
|
| 1783 |
msgid "State Province"
|
| 1784 |
msgstr ""
|
| 1785 |
|
| 1786 |
-
#: aioseop_opengraph.php:
|
| 1787 |
msgid "Album"
|
| 1788 |
msgstr ""
|
| 1789 |
|
| 1790 |
-
#: aioseop_opengraph.php:
|
| 1791 |
msgid "Book"
|
| 1792 |
msgstr ""
|
| 1793 |
|
| 1794 |
-
#: aioseop_opengraph.php:
|
| 1795 |
msgid "Drink"
|
| 1796 |
msgstr ""
|
| 1797 |
|
| 1798 |
-
#: aioseop_opengraph.php:
|
| 1799 |
msgid "Food"
|
| 1800 |
msgstr ""
|
| 1801 |
|
| 1802 |
-
#: aioseop_opengraph.php:
|
| 1803 |
msgid "Game"
|
| 1804 |
msgstr ""
|
| 1805 |
|
| 1806 |
-
#: aioseop_opengraph.php:
|
| 1807 |
msgid "Movie"
|
| 1808 |
msgstr ""
|
| 1809 |
|
| 1810 |
-
#: aioseop_opengraph.php:
|
| 1811 |
msgid "Product"
|
| 1812 |
msgstr ""
|
| 1813 |
|
| 1814 |
-
#: aioseop_opengraph.php:
|
| 1815 |
msgid "Song"
|
| 1816 |
msgstr ""
|
| 1817 |
|
| 1818 |
-
#: aioseop_opengraph.php:
|
| 1819 |
msgid "TV Show"
|
| 1820 |
msgstr ""
|
| 1821 |
|
| 1822 |
-
#: aioseop_opengraph.php:
|
| 1823 |
msgid "Episode"
|
| 1824 |
msgstr ""
|
| 1825 |
|
| 1826 |
-
#: aioseop_opengraph.php:
|
| 1827 |
msgid "Article"
|
| 1828 |
msgstr ""
|
| 1829 |
|
| 1830 |
-
#: aioseop_opengraph.php:
|
| 1831 |
msgid "Blog"
|
| 1832 |
msgstr ""
|
| 1833 |
|
| 1834 |
-
#: aioseop_opengraph.php:
|
| 1835 |
msgid "Website"
|
| 1836 |
msgstr ""
|
| 1837 |
|
| 1838 |
-
#: aioseop_opengraph.php:
|
| 1839 |
msgid ""
|
| 1840 |
"Checking this box will use the Home Title and Home Description set in All in "
|
| 1841 |
"One SEO Pack, General Settings as the Open Graph title and description for "
|
| 1842 |
-
"your home page
|
| 1843 |
-
"meta-module/' target='_blank'>Click here for documentation on this setting</"
|
| 1844 |
-
"a>"
|
| 1845 |
msgstr ""
|
| 1846 |
|
| 1847 |
-
#: aioseop_opengraph.php:
|
| 1848 |
msgid ""
|
| 1849 |
"Your Profile Admin ID is your Facebook profile ID. You can find out your "
|
| 1850 |
"Facebook ID using the lookup tool here: https://graph.facebook.com/"
|
| 1851 |
-
"yourusername
|
| 1852 |
-
"name.<br /><a href='http://semperplugins.com/documentation/social-meta-"
|
| 1853 |
-
"module/' target='_blank'>Click here for documentation on this setting</a>"
|
| 1854 |
-
msgstr ""
|
| 1855 |
-
|
| 1856 |
-
#: aioseop_opengraph.php:79
|
| 1857 |
-
msgid ""
|
| 1858 |
-
"The Site Name is the name that is used to identify your website.<br /><a "
|
| 1859 |
-
"href='http://semperplugins.com/documentation/social-meta-module/' "
|
| 1860 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1861 |
-
msgstr ""
|
| 1862 |
-
|
| 1863 |
-
#: aioseop_opengraph.php:80
|
| 1864 |
-
msgid ""
|
| 1865 |
-
"The Home Title is the Open Graph title for your home page.<br /><a "
|
| 1866 |
-
"href='http://semperplugins.com/documentation/social-meta-module/' "
|
| 1867 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1868 |
msgstr ""
|
| 1869 |
|
| 1870 |
#: aioseop_opengraph.php:81
|
| 1871 |
-
msgid ""
|
| 1872 |
-
"The Home Description is the Open Graph description for your home page.<br /"
|
| 1873 |
-
"><a href='http://semperplugins.com/documentation/social-meta-module/' "
|
| 1874 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1875 |
msgstr ""
|
| 1876 |
|
| 1877 |
#: aioseop_opengraph.php:82
|
| 1878 |
-
msgid ""
|
| 1879 |
-
"The Home Image is the Open Graph image for your home page.<br /><a "
|
| 1880 |
-
"href='http://semperplugins.com/documentation/social-meta-module/' "
|
| 1881 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1882 |
msgstr ""
|
| 1883 |
|
| 1884 |
#: aioseop_opengraph.php:83
|
| 1885 |
-
msgid ""
|
| 1886 |
-
"Check this and your Open Graph descriptions will be auto-generated from your "
|
| 1887 |
-
"content.<br /><a href='http://semperplugins.com/documentation/social-meta-"
|
| 1888 |
-
"module/' target='_blank'>Click here for documentation on this setting</a>"
|
| 1889 |
msgstr ""
|
| 1890 |
|
| 1891 |
#: aioseop_opengraph.php:84
|
| 1892 |
-
msgid ""
|
| 1893 |
-
"Check this box to disable the Open Graph meta output by the Jetpack plugin."
|
| 1894 |
-
"<br /><a href='http://semperplugins.com/documentation/social-meta-module/' "
|
| 1895 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1896 |
msgstr ""
|
| 1897 |
|
| 1898 |
#: aioseop_opengraph.php:85
|
| 1899 |
msgid ""
|
| 1900 |
-
"
|
| 1901 |
-
"
|
| 1902 |
-
"href='http://semperplugins.com/documentation/social-meta-module/' "
|
| 1903 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1904 |
msgstr ""
|
| 1905 |
|
| 1906 |
#: aioseop_opengraph.php:86
|
| 1907 |
msgid ""
|
| 1908 |
-
"
|
| 1909 |
-
"
|
| 1910 |
-
"meta-module/' target='_blank'>Click here for documentation on this setting</"
|
| 1911 |
-
"a>"
|
| 1912 |
msgstr ""
|
| 1913 |
|
| 1914 |
#: aioseop_opengraph.php:87
|
| 1915 |
msgid ""
|
| 1916 |
-
"This option
|
| 1917 |
-
"
|
| 1918 |
-
"the URL of an image here.<br /><a href='http://semperplugins.com/"
|
| 1919 |
-
"documentation/social-meta-module/' target='_blank'>Click here for "
|
| 1920 |
-
"documentation on this setting</a>"
|
| 1921 |
msgstr ""
|
| 1922 |
|
| 1923 |
#: aioseop_opengraph.php:88
|
| 1924 |
msgid ""
|
| 1925 |
-
"
|
| 1926 |
-
"
|
| 1927 |
-
"<br /><a href='http://semperplugins.com/documentation/social-meta-module/' "
|
| 1928 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1929 |
msgstr ""
|
| 1930 |
|
| 1931 |
#: aioseop_opengraph.php:89
|
| 1932 |
msgid ""
|
| 1933 |
-
"
|
| 1934 |
-
"
|
| 1935 |
-
"
|
| 1936 |
msgstr ""
|
| 1937 |
|
| 1938 |
#: aioseop_opengraph.php:90
|
| 1939 |
msgid ""
|
| 1940 |
-
"
|
| 1941 |
-
"
|
| 1942 |
-
"semperplugins.com/documentation/social-meta-module/' target='_blank'>Click "
|
| 1943 |
-
"here for documentation on this setting</a>"
|
| 1944 |
msgstr ""
|
| 1945 |
|
| 1946 |
#: aioseop_opengraph.php:91
|
| 1947 |
-
msgid ""
|
| 1948 |
-
"This option lets you upload an image to use as the Open Graph image for this "
|
| 1949 |
-
"Page or Post.<br /><a href='http://semperplugins.com/documentation/social-"
|
| 1950 |
-
"meta-module/' target='_blank'>Click here for documentation on this setting</"
|
| 1951 |
-
"a>"
|
| 1952 |
msgstr ""
|
| 1953 |
|
| 1954 |
#: aioseop_opengraph.php:92
|
| 1955 |
msgid ""
|
| 1956 |
-
"
|
| 1957 |
-
"
|
| 1958 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1959 |
msgstr ""
|
| 1960 |
|
| 1961 |
#: aioseop_opengraph.php:93
|
| 1962 |
msgid ""
|
| 1963 |
-
"
|
| 1964 |
-
"
|
| 1965 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1966 |
msgstr ""
|
| 1967 |
|
| 1968 |
-
#: aioseop_opengraph.php:94
|
| 1969 |
-
msgid ""
|
| 1970 |
-
|
| 1971 |
-
|
| 1972 |
-
|
|
|
|
| 1973 |
msgstr ""
|
| 1974 |
|
| 1975 |
#: aioseop_opengraph.php:96
|
| 1976 |
msgid ""
|
| 1977 |
-
"
|
| 1978 |
-
"
|
| 1979 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 1980 |
msgstr ""
|
| 1981 |
|
| 1982 |
#: aioseop_opengraph.php:97
|
| 1983 |
-
msgid ""
|
| 1984 |
-
"Allows your authors to be identified by their Twitter usernames as content "
|
| 1985 |
-
"creators on the Twitter cards for their posts.<br /><a href='http://"
|
| 1986 |
-
"semperplugins.com/documentation/social-meta-module/' target='_blank'>Click "
|
| 1987 |
-
"here for documentation on this setting</a>"
|
| 1988 |
msgstr ""
|
| 1989 |
|
| 1990 |
#: aioseop_opengraph.php:98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1991 |
msgid ""
|
| 1992 |
-
"
|
| 1993 |
-
"
|
| 1994 |
-
|
|
|
|
|
|
|
|
|
|
| 1995 |
msgstr ""
|
| 1996 |
|
| 1997 |
-
#: aioseop_opengraph.php:
|
| 1998 |
msgid ""
|
| 1999 |
"Select which Post Types you want to use All in One SEO Pack to set Open "
|
| 2000 |
-
"Graph meta values for
|
| 2001 |
-
"social-meta-module/' target='_blank'>Click here for documentation on this "
|
| 2002 |
-
"setting</a>"
|
| 2003 |
msgstr ""
|
| 2004 |
|
| 2005 |
-
#: aioseop_opengraph.php:
|
| 2006 |
-
msgid ""
|
| 2007 |
-
"This is the Open Graph title of this Page or Post.<br /><a href='http://"
|
| 2008 |
-
"semperplugins.com/documentation/social-meta-module/' target='_blank'>Click "
|
| 2009 |
-
"here for documentation on this setting</a>"
|
| 2010 |
msgstr ""
|
| 2011 |
|
| 2012 |
-
#: aioseop_opengraph.php:
|
| 2013 |
-
msgid ""
|
| 2014 |
-
"This is the Open Graph description of this Page or Post.<br /><a "
|
| 2015 |
-
"href='http://semperplugins.com/documentation/social-meta-module/' "
|
| 2016 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 2017 |
msgstr ""
|
| 2018 |
|
| 2019 |
-
#: aioseop_opengraph.php:
|
| 2020 |
msgid ""
|
| 2021 |
"Select the Open Graph type that best describes the content of this Page or "
|
| 2022 |
-
"Post
|
| 2023 |
-
"module/' target='_blank'>Click here for documentation on this setting</a>"
|
| 2024 |
msgstr ""
|
| 2025 |
|
| 2026 |
-
#: aioseop_opengraph.php:
|
| 2027 |
msgid ""
|
| 2028 |
-
"This Open Graph meta allows you to add a
|
| 2029 |
-
"this content
|
| 2030 |
-
"meta-module/' target='_blank'>Click here for documentation on this setting</"
|
| 2031 |
-
"a>"
|
| 2032 |
msgstr ""
|
| 2033 |
|
| 2034 |
-
#: aioseop_opengraph.php:
|
| 2035 |
msgid ""
|
| 2036 |
-
"
|
| 2037 |
-
"
|
| 2038 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 2039 |
msgstr ""
|
| 2040 |
|
| 2041 |
-
#: aioseop_opengraph.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2042 |
msgid ""
|
| 2043 |
"Allows your authors to be identified by their Facebook pages as content "
|
| 2044 |
-
"authors on the Opengraph meta for their articles
|
| 2045 |
-
"semperplugins.com/documentation/social-meta-module/' target='_blank'>Click "
|
| 2046 |
-
"here for documentation on this setting</a>"
|
| 2047 |
msgstr ""
|
| 2048 |
|
| 2049 |
-
#: aioseop_opengraph.php:
|
| 2050 |
msgid " characters. Open Graph allows up to a maximum of %s chars for the %s."
|
| 2051 |
msgstr ""
|
| 2052 |
|
| 2053 |
-
#: aioseop_opengraph.php:
|
| 2054 |
msgid "Scan Header"
|
| 2055 |
msgstr ""
|
| 2056 |
|
| 2057 |
-
#: aioseop_opengraph.php:
|
| 2058 |
msgid "Use AIOSEO Title and Description"
|
| 2059 |
msgstr ""
|
| 2060 |
|
| 2061 |
-
#: aioseop_opengraph.php:
|
| 2062 |
msgid "Profile Admins ID"
|
| 2063 |
msgstr ""
|
| 2064 |
|
| 2065 |
-
#: aioseop_opengraph.php:
|
| 2066 |
msgid "Site Name"
|
| 2067 |
msgstr ""
|
| 2068 |
|
| 2069 |
-
#: aioseop_opengraph.php:
|
| 2070 |
msgid "Home Title"
|
| 2071 |
msgstr ""
|
| 2072 |
|
| 2073 |
-
#: aioseop_opengraph.php:
|
| 2074 |
msgid "Home Description"
|
| 2075 |
msgstr ""
|
| 2076 |
|
| 2077 |
-
#: aioseop_opengraph.php:
|
| 2078 |
msgid "Home Image"
|
| 2079 |
msgstr ""
|
| 2080 |
|
| 2081 |
-
#: aioseop_opengraph.php:
|
| 2082 |
-
msgid "
|
| 2083 |
msgstr ""
|
| 2084 |
|
| 2085 |
-
#: aioseop_opengraph.php:
|
| 2086 |
-
msgid "
|
| 2087 |
msgstr ""
|
| 2088 |
|
| 2089 |
-
#: aioseop_opengraph.php:
|
| 2090 |
msgid "Select OG:Image Source"
|
| 2091 |
msgstr ""
|
| 2092 |
|
| 2093 |
-
#: aioseop_opengraph.php:
|
| 2094 |
msgid "Default Image"
|
| 2095 |
msgstr ""
|
| 2096 |
|
| 2097 |
-
#: aioseop_opengraph.php:
|
| 2098 |
msgid "Featured Image"
|
| 2099 |
msgstr ""
|
| 2100 |
|
| 2101 |
-
#: aioseop_opengraph.php:
|
| 2102 |
msgid "First Attached Image"
|
| 2103 |
msgstr ""
|
| 2104 |
|
| 2105 |
-
#: aioseop_opengraph.php:
|
| 2106 |
msgid "First Image In Content"
|
| 2107 |
msgstr ""
|
| 2108 |
|
| 2109 |
-
#: aioseop_opengraph.php:
|
| 2110 |
msgid "Image From Custom Field"
|
| 2111 |
msgstr ""
|
| 2112 |
|
| 2113 |
-
#: aioseop_opengraph.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2114 |
msgid "First Available Image"
|
| 2115 |
msgstr ""
|
| 2116 |
|
| 2117 |
-
#: aioseop_opengraph.php:
|
| 2118 |
msgid "Use Default If No Image Found"
|
| 2119 |
msgstr ""
|
| 2120 |
|
| 2121 |
-
#: aioseop_opengraph.php:
|
| 2122 |
msgid "Default OG:Image"
|
| 2123 |
msgstr ""
|
| 2124 |
|
| 2125 |
-
#: aioseop_opengraph.php:
|
| 2126 |
msgid "Use Custom Field For Image"
|
| 2127 |
msgstr ""
|
| 2128 |
|
| 2129 |
-
#: aioseop_opengraph.php:
|
| 2130 |
msgid "Facebook Object Type"
|
| 2131 |
msgstr ""
|
| 2132 |
|
| 2133 |
-
#: aioseop_opengraph.php:
|
| 2134 |
msgid "Image"
|
| 2135 |
msgstr ""
|
| 2136 |
|
| 2137 |
-
#: aioseop_opengraph.php:
|
| 2138 |
msgid "Custom Image"
|
| 2139 |
msgstr ""
|
| 2140 |
|
| 2141 |
-
#: aioseop_opengraph.php:
|
| 2142 |
msgid "Specify Image Width"
|
| 2143 |
msgstr ""
|
| 2144 |
|
| 2145 |
-
#: aioseop_opengraph.php:
|
| 2146 |
msgid "Specify Image Height"
|
| 2147 |
msgstr ""
|
| 2148 |
|
| 2149 |
-
#: aioseop_opengraph.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2150 |
msgid "Default Twitter Card"
|
| 2151 |
msgstr ""
|
| 2152 |
|
| 2153 |
-
#: aioseop_opengraph.php:
|
| 2154 |
msgid "Summary"
|
| 2155 |
msgstr ""
|
| 2156 |
|
| 2157 |
-
#: aioseop_opengraph.php:
|
| 2158 |
msgid "Summary Large Image"
|
| 2159 |
msgstr ""
|
| 2160 |
|
| 2161 |
-
#: aioseop_opengraph.php:
|
| 2162 |
msgid "Photo"
|
| 2163 |
msgstr ""
|
| 2164 |
|
| 2165 |
-
#: aioseop_opengraph.php:
|
| 2166 |
msgid "Twitter Card Type"
|
| 2167 |
msgstr ""
|
| 2168 |
|
| 2169 |
-
#: aioseop_opengraph.php:
|
| 2170 |
msgid "Twitter Site"
|
| 2171 |
msgstr ""
|
| 2172 |
|
| 2173 |
-
#: aioseop_opengraph.php:
|
| 2174 |
msgid "Show Twitter Author"
|
| 2175 |
msgstr ""
|
| 2176 |
|
| 2177 |
-
#: aioseop_opengraph.php:
|
| 2178 |
msgid "Twitter Domain"
|
| 2179 |
msgstr ""
|
| 2180 |
|
| 2181 |
-
#: aioseop_opengraph.php:
|
| 2182 |
msgid "Enable Facebook Meta for"
|
| 2183 |
msgstr ""
|
| 2184 |
|
| 2185 |
-
#: aioseop_opengraph.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2186 |
msgid "Article Tags"
|
| 2187 |
msgstr ""
|
| 2188 |
|
| 2189 |
-
#: aioseop_opengraph.php:
|
| 2190 |
msgid "Show Facebook Publisher on Articles"
|
| 2191 |
msgstr ""
|
| 2192 |
|
| 2193 |
-
#: aioseop_opengraph.php:
|
| 2194 |
msgid "Show Facebook Author on Articles"
|
| 2195 |
msgstr ""
|
| 2196 |
|
| 2197 |
-
#: aioseop_opengraph.php:
|
| 2198 |
msgid "Social Settings"
|
| 2199 |
msgstr ""
|
| 2200 |
|
| 2201 |
-
#: aioseop_opengraph.php:
|
| 2202 |
msgid "Image Settings"
|
| 2203 |
msgstr ""
|
| 2204 |
|
| 2205 |
-
#: aioseop_opengraph.php:
|
| 2206 |
msgid "Facebook Settings"
|
| 2207 |
msgstr ""
|
| 2208 |
|
| 2209 |
-
#: aioseop_opengraph.php:
|
| 2210 |
msgid "Twitter Settings"
|
| 2211 |
msgstr ""
|
| 2212 |
|
| 2213 |
-
#: aioseop_opengraph.php:
|
| 2214 |
msgid "Scan Social Meta"
|
| 2215 |
msgstr ""
|
| 2216 |
|
| 2217 |
-
#: aioseop_opengraph.php:
|
| 2218 |
msgid ""
|
| 2219 |
"Static front page detected, suggested Facebook Object Type is 'website'."
|
| 2220 |
msgstr ""
|
| 2221 |
|
| 2222 |
-
#: aioseop_opengraph.php:
|
| 2223 |
msgid "Blog on front page detected, suggested Facebook Object Type is 'blog'."
|
| 2224 |
msgstr ""
|
| 2225 |
|
| 2226 |
-
#: aioseop_opengraph.php:
|
| 2227 |
msgid "Default "
|
| 2228 |
msgstr ""
|
| 2229 |
|
| 2230 |
-
#: aioseop_opengraph.php:
|
| 2231 |
msgid "Scan Now"
|
| 2232 |
msgstr ""
|
| 2233 |
|
| 2234 |
-
#: aioseop_opengraph.php:
|
| 2235 |
msgid "Scan your site for duplicate social meta tags."
|
| 2236 |
msgstr ""
|
| 2237 |
|
| 2238 |
-
#: aioseop_opengraph.php:
|
| 2239 |
msgid "Object Type"
|
| 2240 |
msgstr ""
|
| 2241 |
|
| 2242 |
-
#: aioseop_opengraph.php:
|
| 2243 |
msgid ""
|
| 2244 |
"Choose a default value that best describes the content of your post type."
|
| 2245 |
msgstr ""
|
|
@@ -2248,25 +2277,20 @@ msgstr ""
|
|
| 2248 |
msgid ""
|
| 2249 |
"This setting allows you to raise your PHP memory limit to a reasonable "
|
| 2250 |
"value. Note: WordPress core and other WordPress plugins may also change the "
|
| 2251 |
-
"value of the memory limit
|
| 2252 |
-
"documentation/performance-settings/' target='_blank'>Click here for "
|
| 2253 |
-
"documentation on this setting</a>"
|
| 2254 |
msgstr ""
|
| 2255 |
|
| 2256 |
#: aioseop_performance.php:21
|
| 2257 |
msgid ""
|
| 2258 |
"This setting allows you to raise your PHP execution time to a reasonable "
|
| 2259 |
-
"value
|
| 2260 |
-
"settings/' target='_blank'>Click here for documentation on this setting</a>"
|
| 2261 |
msgstr ""
|
| 2262 |
|
| 2263 |
#: aioseop_performance.php:22
|
| 2264 |
msgid ""
|
| 2265 |
"Use output buffering to ensure that the title gets rewritten. Enable this "
|
| 2266 |
"option if you run into issues with the title tag being set by your theme or "
|
| 2267 |
-
"another plugin
|
| 2268 |
-
"performance-settings/' target='_blank'>Click here for documentation on this "
|
| 2269 |
-
"setting</a>"
|
| 2270 |
msgstr ""
|
| 2271 |
|
| 2272 |
#: aioseop_performance.php:26
|
|
@@ -2285,150 +2309,150 @@ msgstr ""
|
|
| 2285 |
msgid "No limit"
|
| 2286 |
msgstr ""
|
| 2287 |
|
| 2288 |
-
#: aioseop_performance.php:
|
| 2289 |
msgid "System Status"
|
| 2290 |
msgstr ""
|
| 2291 |
|
| 2292 |
-
#: aioseop_performance.php:
|
| 2293 |
msgid "Not set"
|
| 2294 |
msgstr ""
|
| 2295 |
|
| 2296 |
-
#: aioseop_performance.php:
|
| 2297 |
msgid "On"
|
| 2298 |
msgstr ""
|
| 2299 |
|
| 2300 |
-
#: aioseop_performance.php:
|
| 2301 |
msgid "Off"
|
| 2302 |
msgstr ""
|
| 2303 |
|
| 2304 |
-
#: aioseop_performance.php:141 aioseop_performance.php:143
|
| 2305 |
#: aioseop_performance.php:145 aioseop_performance.php:147
|
| 2306 |
-
#: aioseop_performance.php:149 aioseop_performance.php:
|
|
|
|
| 2307 |
msgid "N/A"
|
| 2308 |
msgstr ""
|
| 2309 |
|
| 2310 |
-
#: aioseop_performance.php:
|
| 2311 |
msgid " MByte"
|
| 2312 |
msgstr ""
|
| 2313 |
|
| 2314 |
-
#: aioseop_performance.php:
|
| 2315 |
-
#: aioseop_performance.php:
|
| 2316 |
msgid "Yes"
|
| 2317 |
msgstr ""
|
| 2318 |
|
| 2319 |
-
#: aioseop_performance.php:
|
| 2320 |
msgid "Operating System"
|
| 2321 |
msgstr ""
|
| 2322 |
|
| 2323 |
-
#: aioseop_performance.php:
|
| 2324 |
msgid "Server"
|
| 2325 |
msgstr ""
|
| 2326 |
|
| 2327 |
-
#: aioseop_performance.php:
|
| 2328 |
msgid "Memory usage"
|
| 2329 |
msgstr ""
|
| 2330 |
|
| 2331 |
-
#: aioseop_performance.php:
|
| 2332 |
msgid "MYSQL Version"
|
| 2333 |
msgstr ""
|
| 2334 |
|
| 2335 |
-
#: aioseop_performance.php:
|
| 2336 |
msgid "SQL Mode"
|
| 2337 |
msgstr ""
|
| 2338 |
|
| 2339 |
-
#: aioseop_performance.php:
|
| 2340 |
msgid "PHP Version"
|
| 2341 |
msgstr ""
|
| 2342 |
|
| 2343 |
-
#: aioseop_performance.php:
|
| 2344 |
msgid "PHP Safe Mode"
|
| 2345 |
msgstr ""
|
| 2346 |
|
| 2347 |
-
#: aioseop_performance.php:
|
| 2348 |
msgid "PHP Allow URL fopen"
|
| 2349 |
msgstr ""
|
| 2350 |
|
| 2351 |
-
#: aioseop_performance.php:
|
| 2352 |
msgid "PHP Memory Limit"
|
| 2353 |
msgstr ""
|
| 2354 |
|
| 2355 |
-
#: aioseop_performance.php:
|
| 2356 |
msgid "PHP Max Upload Size"
|
| 2357 |
msgstr ""
|
| 2358 |
|
| 2359 |
-
#: aioseop_performance.php:
|
| 2360 |
msgid "PHP Max Post Size"
|
| 2361 |
msgstr ""
|
| 2362 |
|
| 2363 |
-
#: aioseop_performance.php:
|
| 2364 |
msgid "PHP Max Script Execute Time"
|
| 2365 |
msgstr ""
|
| 2366 |
|
| 2367 |
-
#: aioseop_performance.php:
|
| 2368 |
msgid "PHP Exif support"
|
| 2369 |
msgstr ""
|
| 2370 |
|
| 2371 |
-
#: aioseop_performance.php:
|
| 2372 |
msgid "PHP IPTC support"
|
| 2373 |
msgstr ""
|
| 2374 |
|
| 2375 |
-
#: aioseop_performance.php:
|
| 2376 |
msgid "PHP XML support"
|
| 2377 |
msgstr ""
|
| 2378 |
|
| 2379 |
-
#: aioseop_performance.php:
|
| 2380 |
msgid "Site URL"
|
| 2381 |
msgstr ""
|
| 2382 |
|
| 2383 |
-
#: aioseop_performance.php:
|
| 2384 |
msgid "Home URL"
|
| 2385 |
msgstr ""
|
| 2386 |
|
| 2387 |
-
#: aioseop_performance.php:
|
| 2388 |
msgid "WordPress Version"
|
| 2389 |
msgstr ""
|
| 2390 |
|
| 2391 |
-
#: aioseop_performance.php:
|
| 2392 |
msgid "WordPress DB Version"
|
| 2393 |
msgstr ""
|
| 2394 |
|
| 2395 |
-
#: aioseop_performance.php:
|
| 2396 |
msgid "Multisite"
|
| 2397 |
msgstr ""
|
| 2398 |
|
| 2399 |
-
#: aioseop_performance.php:
|
| 2400 |
msgid "Active Theme"
|
| 2401 |
msgstr ""
|
| 2402 |
|
| 2403 |
-
#: aioseop_performance.php:
|
| 2404 |
msgid "All in One SEO Pack Pro Debug Info"
|
| 2405 |
msgstr ""
|
| 2406 |
|
| 2407 |
-
#: aioseop_performance.php:
|
| 2408 |
msgid "Form submission error: verification check failed."
|
| 2409 |
msgstr ""
|
| 2410 |
|
| 2411 |
-
#: aioseop_performance.php:
|
| 2412 |
msgid "SFWD Debug Mail From Site %s."
|
| 2413 |
msgstr ""
|
| 2414 |
|
| 2415 |
-
#: aioseop_performance.php:
|
| 2416 |
msgid "Sent to %s."
|
| 2417 |
msgstr ""
|
| 2418 |
|
| 2419 |
-
#: aioseop_performance.php:
|
| 2420 |
msgid "Failed to send to %s."
|
| 2421 |
msgstr ""
|
| 2422 |
|
| 2423 |
-
#: aioseop_performance.php:
|
| 2424 |
msgid "Error: please enter an e-mail address before submitting."
|
| 2425 |
msgstr ""
|
| 2426 |
|
| 2427 |
-
#: aioseop_performance.php:
|
| 2428 |
msgid "E-mail debug information"
|
| 2429 |
msgstr ""
|
| 2430 |
|
| 2431 |
-
#: aioseop_performance.php:
|
| 2432 |
msgid "Submit"
|
| 2433 |
msgstr ""
|
| 2434 |
|
|
@@ -2543,440 +2567,409 @@ msgstr ""
|
|
| 2543 |
|
| 2544 |
#: aioseop_sitemap.php:34
|
| 2545 |
msgid ""
|
| 2546 |
-
"Specifies the name of your sitemap file. This will default to 'sitemap'
|
| 2547 |
-
"><a href='http://semperplugins.com/documentation/xml-sitemaps-module/' "
|
| 2548 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 2549 |
msgstr ""
|
| 2550 |
|
| 2551 |
#: aioseop_sitemap.php:35
|
| 2552 |
-
msgid ""
|
| 2553 |
-
"Notify Google when you update your sitemap settings.<br /><a href='http://"
|
| 2554 |
-
"semperplugins.com/documentation/xml-sitemaps-module/' target='_blank'>Click "
|
| 2555 |
-
"here for documentation on this setting</a>"
|
| 2556 |
msgstr ""
|
| 2557 |
|
| 2558 |
#: aioseop_sitemap.php:36
|
| 2559 |
-
msgid ""
|
| 2560 |
-
"Notify Bing when you update your sitemap settings.<br /><a href='http://"
|
| 2561 |
-
"semperplugins.com/documentation/xml-sitemaps-module/' target='_blank'>Click "
|
| 2562 |
-
"here for documentation on this setting</a>"
|
| 2563 |
msgstr ""
|
| 2564 |
|
| 2565 |
#: aioseop_sitemap.php:37
|
| 2566 |
msgid ""
|
| 2567 |
"Organize sitemap entries into distinct files in your sitemap. Enable this "
|
| 2568 |
"only if your sitemap contains over 50,000 URLs or the file is over 5MB in "
|
| 2569 |
-
"size
|
| 2570 |
-
"module/' target='_blank'>Click here for documentation on this setting</a>"
|
| 2571 |
msgstr ""
|
| 2572 |
|
| 2573 |
#: aioseop_sitemap.php:38
|
| 2574 |
-
msgid ""
|
| 2575 |
-
"Split long sitemaps into separate files.<br /><a href='http://semperplugins."
|
| 2576 |
-
"com/documentation/xml-sitemaps-module/' target='_blank'>Click here for "
|
| 2577 |
-
"documentation on this setting</a>"
|
| 2578 |
msgstr ""
|
| 2579 |
|
| 2580 |
#: aioseop_sitemap.php:39
|
| 2581 |
msgid ""
|
| 2582 |
"Allows you to specify the maximum number of posts in a sitemap (up to "
|
| 2583 |
-
"50,000)
|
| 2584 |
-
"module/' target='_blank'>Click here for documentation on this setting</a>"
|
| 2585 |
msgstr ""
|
| 2586 |
|
| 2587 |
#: aioseop_sitemap.php:40
|
| 2588 |
-
msgid ""
|
| 2589 |
-
"Select which Post Types appear in your sitemap.<br /><a href='http://"
|
| 2590 |
-
"semperplugins.com/documentation/xml-sitemaps-module/' target='_blank'>Click "
|
| 2591 |
-
"here for documentation on this setting</a>"
|
| 2592 |
msgstr ""
|
| 2593 |
|
| 2594 |
#: aioseop_sitemap.php:41
|
| 2595 |
-
msgid ""
|
| 2596 |
-
"Select which taxonomy archives appear in your sitemap.<br /><a href='http://"
|
| 2597 |
-
"semperplugins.com/documentation/xml-sitemaps-module/' target='_blank'>Click "
|
| 2598 |
-
"here for documentation on this setting</a>"
|
| 2599 |
msgstr ""
|
| 2600 |
|
| 2601 |
#: aioseop_sitemap.php:42
|
| 2602 |
-
msgid ""
|
| 2603 |
-
"Include Date Archives in your sitemap.<br /><a href='http://semperplugins."
|
| 2604 |
-
"com/documentation/xml-sitemaps-module/' target='_blank'>Click here for "
|
| 2605 |
-
"documentation on this setting</a>"
|
| 2606 |
msgstr ""
|
| 2607 |
|
| 2608 |
#: aioseop_sitemap.php:43
|
| 2609 |
-
msgid ""
|
| 2610 |
-
"Include Author Archives in your sitemap.<br /><a href='http://semperplugins."
|
| 2611 |
-
"com/documentation/xml-sitemaps-module/' target='_blank'>Click here for "
|
| 2612 |
-
"documentation on this setting</a>"
|
| 2613 |
msgstr ""
|
| 2614 |
|
| 2615 |
#: aioseop_sitemap.php:44
|
| 2616 |
-
msgid ""
|
| 2617 |
-
"Create a compressed sitemap file in .xml.gz format.<br /><a href='http://"
|
| 2618 |
-
"semperplugins.com/documentation/xml-sitemaps-module/' target='_blank'>Click "
|
| 2619 |
-
"here for documentation on this setting</a>"
|
| 2620 |
msgstr ""
|
| 2621 |
|
| 2622 |
#: aioseop_sitemap.php:45
|
| 2623 |
-
msgid ""
|
| 2624 |
-
"Places a link to your Sitemap.xml into your virtual Robots.txt file.<br /><a "
|
| 2625 |
-
"href='http://semperplugins.com/documentation/xml-sitemaps-module/' "
|
| 2626 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 2627 |
msgstr ""
|
| 2628 |
|
| 2629 |
#: aioseop_sitemap.php:46
|
| 2630 |
msgid ""
|
| 2631 |
"Places a link to the sitemap file in your virtual Robots.txt file which "
|
| 2632 |
-
"WordPress creates
|
| 2633 |
-
"sitemaps-module/' target='_blank'>Click here for documentation on this "
|
| 2634 |
-
"setting</a>"
|
| 2635 |
msgstr ""
|
| 2636 |
|
| 2637 |
#: aioseop_sitemap.php:47
|
| 2638 |
-
msgid ""
|
| 2639 |
-
"Use rewrites to generate your sitemap on the fly. NOTE: This is required for "
|
| 2640 |
-
"WordPress Multisite.<br /><a href='http://semperplugins.com/documentation/"
|
| 2641 |
-
"xml-sitemaps-module/' target='_blank'>Click here for documentation on this "
|
| 2642 |
-
"setting</a>"
|
| 2643 |
msgstr ""
|
| 2644 |
|
| 2645 |
#: aioseop_sitemap.php:48
|
| 2646 |
-
msgid "
|
|
|
|
|
|
|
| 2647 |
msgstr ""
|
| 2648 |
|
| 2649 |
#: aioseop_sitemap.php:49
|
| 2650 |
-
msgid "
|
| 2651 |
msgstr ""
|
| 2652 |
|
| 2653 |
#: aioseop_sitemap.php:50
|
| 2654 |
-
msgid "The
|
| 2655 |
msgstr ""
|
| 2656 |
|
| 2657 |
#: aioseop_sitemap.php:51
|
| 2658 |
-
msgid "
|
| 2659 |
msgstr ""
|
| 2660 |
|
| 2661 |
#: aioseop_sitemap.php:52
|
| 2662 |
-
msgid ""
|
| 2663 |
-
"Entries from these categories will be excluded from the sitemap.<br /><a "
|
| 2664 |
-
"href='http://semperplugins.com/documentation/xml-sitemaps-module/' "
|
| 2665 |
-
"target='_blank'>Click here for documentation on this setting</a>"
|
| 2666 |
msgstr ""
|
| 2667 |
|
| 2668 |
#: aioseop_sitemap.php:53
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2669 |
msgid ""
|
| 2670 |
"Use page slugs or page IDs, seperated by commas, to exclude pages from the "
|
| 2671 |
-
"sitemap
|
| 2672 |
-
"module/' target='_blank'>Click here for documentation on this setting</a>"
|
| 2673 |
msgstr ""
|
| 2674 |
|
| 2675 |
-
#: aioseop_sitemap.php:
|
| 2676 |
msgid "Filename Prefix"
|
| 2677 |
msgstr ""
|
| 2678 |
|
| 2679 |
-
#: aioseop_sitemap.php:
|
| 2680 |
msgid "Notify Google"
|
| 2681 |
msgstr ""
|
| 2682 |
|
| 2683 |
-
#: aioseop_sitemap.php:
|
| 2684 |
msgid "Notify Bing"
|
| 2685 |
msgstr ""
|
| 2686 |
|
| 2687 |
-
#: aioseop_sitemap.php:
|
| 2688 |
msgid "Enable Sitemap Indexes"
|
| 2689 |
msgstr ""
|
| 2690 |
|
| 2691 |
-
#: aioseop_sitemap.php:
|
| 2692 |
msgid "Paginate Sitemap Indexes"
|
| 2693 |
msgstr ""
|
| 2694 |
|
| 2695 |
-
#: aioseop_sitemap.php:
|
| 2696 |
msgid "Maximum Posts Per Sitemap"
|
| 2697 |
msgstr ""
|
| 2698 |
|
| 2699 |
-
#: aioseop_sitemap.php:
|
| 2700 |
msgid "Post Types"
|
| 2701 |
msgstr ""
|
| 2702 |
|
| 2703 |
-
#: aioseop_sitemap.php:
|
| 2704 |
msgid "Taxonomies"
|
| 2705 |
msgstr ""
|
| 2706 |
|
| 2707 |
-
#: aioseop_sitemap.php:
|
| 2708 |
msgid "Include Date Archive Pages"
|
| 2709 |
msgstr ""
|
| 2710 |
|
| 2711 |
-
#: aioseop_sitemap.php:
|
| 2712 |
msgid "Include Author Pages"
|
| 2713 |
msgstr ""
|
| 2714 |
|
| 2715 |
-
#: aioseop_sitemap.php:
|
| 2716 |
msgid "Create Compressed Sitemap"
|
| 2717 |
msgstr ""
|
| 2718 |
|
| 2719 |
-
#: aioseop_sitemap.php:
|
| 2720 |
msgid "Link From Virtual Robots.txt"
|
| 2721 |
msgstr ""
|
| 2722 |
|
| 2723 |
-
#: aioseop_sitemap.php:
|
| 2724 |
msgid "Dynamically Generate Sitemap"
|
| 2725 |
msgstr ""
|
| 2726 |
|
| 2727 |
-
#: aioseop_sitemap.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2728 |
msgid "Debug Log"
|
| 2729 |
msgstr ""
|
| 2730 |
|
| 2731 |
-
#: aioseop_sitemap.php:
|
| 2732 |
msgid "Sitemap Status"
|
| 2733 |
msgstr ""
|
| 2734 |
|
| 2735 |
-
#: aioseop_sitemap.php:
|
| 2736 |
msgid "Do Not Override"
|
| 2737 |
msgstr ""
|
| 2738 |
|
| 2739 |
-
#: aioseop_sitemap.php:
|
| 2740 |
msgid "Select Individual"
|
| 2741 |
msgstr ""
|
| 2742 |
|
| 2743 |
-
#: aioseop_sitemap.php:
|
| 2744 |
msgid "priority"
|
| 2745 |
msgstr ""
|
| 2746 |
|
| 2747 |
-
#: aioseop_sitemap.php:
|
| 2748 |
msgid "frequency"
|
| 2749 |
msgstr ""
|
| 2750 |
|
| 2751 |
-
#: aioseop_sitemap.php:
|
| 2752 |
msgid "homepage"
|
| 2753 |
msgstr ""
|
| 2754 |
|
| 2755 |
-
#: aioseop_sitemap.php:
|
| 2756 |
msgid "posts"
|
| 2757 |
msgstr ""
|
| 2758 |
|
| 2759 |
-
#: aioseop_sitemap.php:
|
| 2760 |
msgid "taxonomies"
|
| 2761 |
msgstr ""
|
| 2762 |
|
| 2763 |
-
#: aioseop_sitemap.php:
|
| 2764 |
msgid "archive pages"
|
| 2765 |
msgstr ""
|
| 2766 |
|
| 2767 |
-
#: aioseop_sitemap.php:
|
| 2768 |
msgid "author pages"
|
| 2769 |
msgstr ""
|
| 2770 |
|
| 2771 |
-
#: aioseop_sitemap.php:
|
| 2772 |
msgid "Manually set the %s of your %s."
|
| 2773 |
msgstr ""
|
| 2774 |
|
| 2775 |
-
#: aioseop_sitemap.php:
|
| 2776 |
msgid ""
|
| 2777 |
"Enter information below for any additional links for your sitemap not "
|
| 2778 |
"already managed through WordPress."
|
| 2779 |
msgstr ""
|
| 2780 |
|
| 2781 |
-
#: aioseop_sitemap.php:
|
| 2782 |
msgid "Page URL"
|
| 2783 |
msgstr ""
|
| 2784 |
|
| 2785 |
-
#: aioseop_sitemap.php:
|
| 2786 |
msgid "Page Priority"
|
| 2787 |
msgstr ""
|
| 2788 |
|
| 2789 |
-
#: aioseop_sitemap.php:
|
| 2790 |
msgid "Page Frequency"
|
| 2791 |
msgstr ""
|
| 2792 |
|
| 2793 |
-
#: aioseop_sitemap.php:
|
| 2794 |
msgid "Last Modified"
|
| 2795 |
msgstr ""
|
| 2796 |
|
| 2797 |
-
#: aioseop_sitemap.php:
|
| 2798 |
msgid "Additional Pages"
|
| 2799 |
msgstr ""
|
| 2800 |
|
| 2801 |
-
#: aioseop_sitemap.php:
|
| 2802 |
msgid "Add URL"
|
| 2803 |
msgstr ""
|
| 2804 |
|
| 2805 |
-
#: aioseop_sitemap.php:
|
| 2806 |
msgid "Excluded Categories"
|
| 2807 |
msgstr ""
|
| 2808 |
|
| 2809 |
-
#: aioseop_sitemap.php:
|
| 2810 |
msgid "Excluded Pages"
|
| 2811 |
msgstr ""
|
| 2812 |
|
| 2813 |
-
#: aioseop_sitemap.php:
|
| 2814 |
msgid "Excluded Items"
|
| 2815 |
msgstr ""
|
| 2816 |
|
| 2817 |
-
#: aioseop_sitemap.php:
|
| 2818 |
msgid "Priorities"
|
| 2819 |
msgstr ""
|
| 2820 |
|
| 2821 |
-
#: aioseop_sitemap.php:
|
| 2822 |
msgid "Frequencies"
|
| 2823 |
msgstr ""
|
| 2824 |
|
| 2825 |
-
#: aioseop_sitemap.php:
|
| 2826 |
msgid "Media / Attachments"
|
| 2827 |
msgstr ""
|
| 2828 |
|
| 2829 |
-
#: aioseop_sitemap.php:
|
| 2830 |
msgid "All Post Types"
|
| 2831 |
msgstr ""
|
| 2832 |
|
| 2833 |
-
#: aioseop_sitemap.php:
|
| 2834 |
msgid "All Taxonomies"
|
| 2835 |
msgstr ""
|
| 2836 |
|
| 2837 |
-
#: aioseop_sitemap.php:
|
| 2838 |
msgid "Manually set the priority for the "
|
| 2839 |
msgstr ""
|
| 2840 |
|
| 2841 |
-
#: aioseop_sitemap.php:
|
| 2842 |
msgid "Manually set the frequency for the "
|
| 2843 |
msgstr ""
|
| 2844 |
|
| 2845 |
-
#: aioseop_sitemap.php:
|
| 2846 |
msgid " Post Type"
|
| 2847 |
msgstr ""
|
| 2848 |
|
| 2849 |
-
#: aioseop_sitemap.php:
|
| 2850 |
msgid " Taxonomy"
|
| 2851 |
msgstr ""
|
| 2852 |
|
| 2853 |
-
#: aioseop_sitemap.php:
|
| 2854 |
msgid "Update Sitemap"
|
| 2855 |
msgstr ""
|
| 2856 |
|
| 2857 |
-
#: aioseop_sitemap.php:
|
| 2858 |
msgid ""
|
| 2859 |
"Please review your settings below and click %s to build your sitemap; then, "
|
| 2860 |
"%s."
|
| 2861 |
msgstr ""
|
| 2862 |
|
| 2863 |
-
#: aioseop_sitemap.php:
|
| 2864 |
msgid "view your sitemap"
|
| 2865 |
msgstr ""
|
| 2866 |
|
| 2867 |
-
#: aioseop_sitemap.php:
|
| 2868 |
msgid ""
|
| 2869 |
"Note: you are using dynamic sitemap generation to keep your sitemap current; "
|
| 2870 |
"this will not generate a static sitemap file."
|
| 2871 |
msgstr ""
|
| 2872 |
|
| 2873 |
-
#: aioseop_sitemap.php:
|
| 2874 |
msgid ""
|
| 2875 |
"Dynamic sitemap generation appears to be using the correct rewrite rules."
|
| 2876 |
msgstr ""
|
| 2877 |
|
| 2878 |
-
#: aioseop_sitemap.php:
|
| 2879 |
msgid ""
|
| 2880 |
"Dynamic sitemap generation does not appear to be using the correct rewrite "
|
| 2881 |
"rules; please disable any other sitemap plugins or functionality on your "
|
| 2882 |
"site and reset your permalinks."
|
| 2883 |
msgstr ""
|
| 2884 |
|
| 2885 |
-
#: aioseop_sitemap.php:
|
| 2886 |
msgid "Reading Settings"
|
| 2887 |
msgstr ""
|
| 2888 |
|
| 2889 |
-
#: aioseop_sitemap.php:
|
| 2890 |
msgid "Privacy Settings"
|
| 2891 |
msgstr ""
|
| 2892 |
|
| 2893 |
-
#: aioseop_sitemap.php:
|
| 2894 |
msgid ""
|
| 2895 |
"Warning: your privacy settings are configured to ask search engines to not "
|
| 2896 |
"index your site; you can change this under %s for your blog."
|
| 2897 |
msgstr ""
|
| 2898 |
|
| 2899 |
-
#: aioseop_sitemap.php:
|
| 2900 |
msgid "Warning: dynamic sitemap generation must have permalinks enabled."
|
| 2901 |
msgstr ""
|
| 2902 |
|
| 2903 |
-
#: aioseop_sitemap.php:
|
| 2904 |
msgid "Deleted %s."
|
| 2905 |
msgstr ""
|
| 2906 |
|
| 2907 |
-
#: aioseop_sitemap.php:
|
| 2908 |
msgid "Couldn't rename file %s!"
|
| 2909 |
msgstr ""
|
| 2910 |
|
| 2911 |
-
#: aioseop_sitemap.php:
|
| 2912 |
msgid "Renamed %s to %s."
|
| 2913 |
msgstr ""
|
| 2914 |
|
| 2915 |
-
#: aioseop_sitemap.php:
|
| 2916 |
msgid "Couldn't find file %s!"
|
| 2917 |
msgstr ""
|
| 2918 |
|
| 2919 |
-
#: aioseop_sitemap.php:
|
| 2920 |
msgid ""
|
| 2921 |
"Warning: a static sitemap '%s' generated by All in One SEO Pack %s on %s "
|
| 2922 |
"already exists that may conflict with dynamic sitemap generation."
|
| 2923 |
msgstr ""
|
| 2924 |
|
| 2925 |
-
#: aioseop_sitemap.php:
|
| 2926 |
msgid "Potential conflict with unknown file %s."
|
| 2927 |
msgstr ""
|
| 2928 |
|
| 2929 |
-
#: aioseop_sitemap.php:
|
| 2930 |
msgid "Rename Conflicting Files"
|
| 2931 |
msgstr ""
|
| 2932 |
|
| 2933 |
-
#: aioseop_sitemap.php:
|
| 2934 |
msgid "Delete Conflicting Files"
|
| 2935 |
msgstr ""
|
| 2936 |
|
| 2937 |
-
#: aioseop_sitemap.php:
|
| 2938 |
msgid "compressed"
|
| 2939 |
msgstr ""
|
| 2940 |
|
| 2941 |
-
#: aioseop_sitemap.php:
|
| 2942 |
msgid "dynamic"
|
| 2943 |
msgstr ""
|
| 2944 |
|
| 2945 |
-
#: aioseop_sitemap.php:
|
| 2946 |
msgid "static"
|
| 2947 |
msgstr ""
|
| 2948 |
|
| 2949 |
-
#: aioseop_sitemap.php:
|
| 2950 |
msgid "dynamically"
|
| 2951 |
msgstr ""
|
| 2952 |
|
| 2953 |
-
#: aioseop_sitemap.php:
|
| 2954 |
msgid "Successfully notified %s about changes to your sitemap at %s."
|
| 2955 |
msgstr ""
|
| 2956 |
|
| 2957 |
-
#: aioseop_sitemap.php:
|
| 2958 |
msgid "Failed to notify %s about changes to your sitemap at %s, error code %s."
|
| 2959 |
msgstr ""
|
| 2960 |
|
| 2961 |
-
#: aioseop_sitemap.php:
|
| 2962 |
msgid ""
|
| 2963 |
"Failed to notify %s about changes to your sitemap at %s, unable to access "
|
| 2964 |
"via wp_remote_get()."
|
| 2965 |
msgstr ""
|
| 2966 |
|
| 2967 |
-
#: aioseop_sitemap.php:
|
| 2968 |
msgid "Did not notify %s about changes to your sitemap."
|
| 2969 |
msgstr ""
|
| 2970 |
|
| 2971 |
-
#: aioseop_sitemap.php:
|
| 2972 |
msgid "file '%s' statically"
|
| 2973 |
msgstr ""
|
| 2974 |
|
| 2975 |
-
#: aioseop_sitemap.php:
|
| 2976 |
msgid "Updated sitemap settings."
|
| 2977 |
msgstr ""
|
| 2978 |
|
| 2979 |
-
#: all_in_one_seo_pack.php:
|
| 2980 |
msgid "%s detected a conflict; please deactivate the plugin located in %s."
|
| 2981 |
msgstr ""
|
| 2982 |
|
| 1 |
+
# Copyright (C) 2015 All In One SEO Pack
|
| 2 |
# This file is distributed under the same license as the All In One SEO Pack package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: All In One SEO Pack 2.2.4.2\n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/all-in-one-seo-"
|
| 7 |
"pack\n"
|
| 8 |
+
"POT-Creation-Date: 2015-01-16 15:07:23+00:00\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
+
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
| 13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 15 |
|
| 16 |
#: aioseop_class.php:62
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
msgid "%s Plugin Options"
|
| 18 |
msgstr ""
|
| 19 |
|
| 20 |
+
#: aioseop_class.php:63 aioseop_class.php:683 aioseop_opengraph.php:222
|
| 21 |
msgid "General Settings"
|
| 22 |
msgstr ""
|
| 23 |
|
| 24 |
+
#: aioseop_class.php:72
|
| 25 |
msgid "All donations support continued development of this free software."
|
| 26 |
msgstr ""
|
| 27 |
|
| 28 |
+
#: aioseop_class.php:73
|
| 29 |
msgid ""
|
| 30 |
"This option will automatically generate Canonical URLs for your entire "
|
| 31 |
"WordPress installation. This will help to prevent duplicate content "
|
| 33 |
"specify-your-canonical.html\\' target=\\'_blank\\'>Google</a>."
|
| 34 |
msgstr ""
|
| 35 |
|
| 36 |
+
#: aioseop_class.php:74
|
| 37 |
msgid ""
|
| 38 |
"Checking this option will set the Canonical URL for all paginated content to "
|
| 39 |
"the first page."
|
| 40 |
msgstr ""
|
| 41 |
|
| 42 |
+
#: aioseop_class.php:75
|
| 43 |
+
msgid ""
|
| 44 |
+
"Checking this option will allow you to customize Canonical URLs for specific "
|
| 45 |
+
"posts."
|
| 46 |
+
msgstr ""
|
| 47 |
+
|
| 48 |
+
#: aioseop_class.php:76
|
| 49 |
+
msgid "Set protocol for canonical URLs."
|
| 50 |
+
msgstr ""
|
| 51 |
+
|
| 52 |
+
#: aioseop_class.php:77
|
| 53 |
msgid ""
|
| 54 |
"Use wp_title to set the title; disable this option if you run into conflicts "
|
| 55 |
+
"with the title being set by your theme or another plugin."
|
|
|
|
|
|
|
| 56 |
msgstr ""
|
| 57 |
|
| 58 |
+
#: aioseop_class.php:78
|
| 59 |
msgid ""
|
| 60 |
"Check this and All in One SEO Pack will create a log of important events "
|
| 61 |
"(all_in_one_seo_pack.log) in its plugin directory which might help "
|
| 62 |
+
"debugging. Make sure this directory is writable."
|
|
|
|
|
|
|
| 63 |
msgstr ""
|
| 64 |
|
| 65 |
+
#: aioseop_class.php:79
|
| 66 |
msgid ""
|
| 67 |
"As the name implies, this will be the Meta Title of your homepage. This is "
|
| 68 |
"independent of any other option. If not set, the default Site Title (found "
|
| 69 |
+
"in WordPress under Settings, General, Site Title) will be used."
|
|
|
|
|
|
|
| 70 |
msgstr ""
|
| 71 |
|
| 72 |
+
#: aioseop_class.php:80
|
| 73 |
msgid ""
|
| 74 |
"This will be the Meta Description for your homepage. This is independent of "
|
| 75 |
"any other option. The default is no Meta Description at all if this is not "
|
| 76 |
+
"set."
|
|
|
|
| 77 |
msgstr ""
|
| 78 |
|
| 79 |
+
#: aioseop_class.php:81
|
| 80 |
msgid ""
|
| 81 |
"Enter a comma separated list of your most important keywords for your site "
|
| 82 |
"that will be written as Meta Keywords on your homepage. Don\\'t stuff "
|
| 83 |
+
"everything in here."
|
|
|
|
|
|
|
| 84 |
msgstr ""
|
| 85 |
|
| 86 |
+
#: aioseop_class.php:82
|
| 87 |
msgid ""
|
| 88 |
"This option allows you to toggle the use of Meta Keywords throughout the "
|
| 89 |
+
"whole of the site."
|
|
|
|
|
|
|
| 90 |
msgstr ""
|
| 91 |
|
| 92 |
+
#: aioseop_class.php:83
|
| 93 |
msgid ""
|
| 94 |
"Check this if you want your categories for a given post used as the Meta "
|
| 95 |
"Keywords for this post (in addition to any keywords you specify on the Edit "
|
| 96 |
+
"Post screen)."
|
|
|
|
| 97 |
msgstr ""
|
| 98 |
|
| 99 |
+
#: aioseop_class.php:84
|
| 100 |
msgid ""
|
| 101 |
"Check this if you want your tags for a given post used as the Meta Keywords "
|
| 102 |
"for this post (in addition to any keywords you specify on the Edit Post "
|
| 103 |
+
"screen)."
|
|
|
|
| 104 |
msgstr ""
|
| 105 |
|
| 106 |
+
#: aioseop_class.php:85
|
| 107 |
msgid ""
|
| 108 |
"Check this if you want your keywords on your Posts page (set in WordPress "
|
| 109 |
"under Settings, Reading, Front Page Displays) to be dynamically generated "
|
| 110 |
"from the keywords of the posts showing on that page. If unchecked, it will "
|
| 111 |
+
"use the keywords set in the edit page screen for the posts page."
|
|
|
|
|
|
|
| 112 |
msgstr ""
|
| 113 |
|
| 114 |
+
#: aioseop_class.php:86
|
| 115 |
msgid ""
|
| 116 |
"Note that this is all about the title tag. This is what you see in your "
|
| 117 |
"browser's window title bar. This is NOT visible on a page, only in the title "
|
| 120 |
"them. For example: Using the default post title format below, Rewrite Titles "
|
| 121 |
"will write all post titles as 'Post Title | Blog Name'. If you have manually "
|
| 122 |
"defined a title using All in One SEO Pack, this will become the title of "
|
| 123 |
+
"your post in the format string."
|
|
|
|
|
|
|
| 124 |
msgstr ""
|
| 125 |
|
| 126 |
+
#: aioseop_class.php:87
|
| 127 |
msgid ""
|
| 128 |
"Check this and Search Page Titles and Tag Page Titles will have the first "
|
| 129 |
+
"letter of each word capitalized."
|
|
|
|
|
|
|
| 130 |
msgstr ""
|
| 131 |
|
| 132 |
+
#: aioseop_class.php:88
|
| 133 |
msgid ""
|
| 134 |
"Check this and Category Titles will have the first letter of each word "
|
| 135 |
+
"capitalized."
|
|
|
|
| 136 |
msgstr ""
|
| 137 |
|
| 138 |
+
#: aioseop_class.php:90
|
| 139 |
msgid ""
|
| 140 |
+
"This controls the format of the title tag for Pages.<br />The following "
|
| 141 |
+
"macros are supported:"
|
|
|
|
|
|
|
| 142 |
msgstr ""
|
| 143 |
|
| 144 |
+
#: aioseop_class.php:91 aioseop_class.php:103 aioseop_class.php:115
|
| 145 |
+
#: aioseop_class.php:121 aioseop_class.php:126 aioseop_class.php:134
|
| 146 |
+
#: aioseop_class.php:139 aioseop_class.php:144 aioseop_class.php:148
|
| 147 |
+
#: aioseop_class.php:154 aioseop_class.php:1023
|
| 148 |
msgid "%blog_title% - Your blog title"
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
+
#: aioseop_class.php:92 aioseop_class.php:104 aioseop_class.php:116
|
| 152 |
+
#: aioseop_class.php:122 aioseop_class.php:127 aioseop_class.php:135
|
| 153 |
+
#: aioseop_class.php:140 aioseop_class.php:145 aioseop_class.php:149
|
| 154 |
+
#: aioseop_class.php:155 aioseop_class.php:1024
|
| 155 |
msgid "%blog_description% - Your blog description"
|
| 156 |
msgstr ""
|
| 157 |
|
| 158 |
+
#: aioseop_class.php:93
|
| 159 |
msgid "%page_title% - The original title of the page"
|
| 160 |
msgstr ""
|
| 161 |
|
| 162 |
+
#: aioseop_class.php:94
|
| 163 |
msgid "%category_title% - The (main) category of the page"
|
| 164 |
msgstr ""
|
| 165 |
|
| 166 |
+
#: aioseop_class.php:95 aioseop_class.php:107 aioseop_class.php:1027
|
| 167 |
msgid "%category% - Alias for %category_title%"
|
| 168 |
msgstr ""
|
| 169 |
|
| 170 |
+
#: aioseop_class.php:96
|
| 171 |
msgid "%page_author_login% - This page's author' login"
|
| 172 |
msgstr ""
|
| 173 |
|
| 174 |
+
#: aioseop_class.php:97
|
| 175 |
msgid "%page_author_nicename% - This page's author' nicename"
|
| 176 |
msgstr ""
|
| 177 |
|
| 178 |
+
#: aioseop_class.php:98
|
| 179 |
msgid "%page_author_firstname% - This page's author' first name (capitalized)"
|
| 180 |
msgstr ""
|
| 181 |
|
| 182 |
+
#: aioseop_class.php:99
|
| 183 |
msgid "%page_author_lastname% - This page's author' last name (capitalized)"
|
| 184 |
msgstr ""
|
| 185 |
|
| 186 |
+
#: aioseop_class.php:102
|
| 187 |
msgid ""
|
| 188 |
+
"This controls the format of the title tag for Posts.<br />The following "
|
| 189 |
+
"macros are supported:"
|
|
|
|
|
|
|
| 190 |
msgstr ""
|
| 191 |
|
| 192 |
+
#: aioseop_class.php:105 aioseop_class.php:151 aioseop_class.php:1025
|
| 193 |
msgid "%post_title% - The original title of the post"
|
| 194 |
msgstr ""
|
| 195 |
|
| 196 |
+
#: aioseop_class.php:106 aioseop_class.php:1026
|
| 197 |
msgid "%category_title% - The (main) category of the post"
|
| 198 |
msgstr ""
|
| 199 |
|
| 200 |
+
#: aioseop_class.php:108 aioseop_class.php:1028
|
| 201 |
msgid "%post_author_login% - This post's author' login"
|
| 202 |
msgstr ""
|
| 203 |
|
| 204 |
+
#: aioseop_class.php:109 aioseop_class.php:1029
|
| 205 |
msgid "%post_author_nicename% - This post's author' nicename"
|
| 206 |
msgstr ""
|
| 207 |
|
| 208 |
+
#: aioseop_class.php:110 aioseop_class.php:1030
|
| 209 |
msgid "%post_author_firstname% - This post's author' first name (capitalized)"
|
| 210 |
msgstr ""
|
| 211 |
|
| 212 |
+
#: aioseop_class.php:111 aioseop_class.php:1031
|
| 213 |
msgid "%post_author_lastname% - This post's author' last name (capitalized)"
|
| 214 |
msgstr ""
|
| 215 |
|
| 216 |
+
#: aioseop_class.php:114
|
| 217 |
msgid ""
|
| 218 |
+
"This controls the format of the title tag for Category Archives.<br />The "
|
|
|
|
|
|
|
| 219 |
"following macros are supported:"
|
| 220 |
msgstr ""
|
| 221 |
|
| 222 |
+
#: aioseop_class.php:117
|
| 223 |
msgid "%category_title% - The original title of the category"
|
| 224 |
msgstr ""
|
| 225 |
|
| 226 |
+
#: aioseop_class.php:118
|
| 227 |
msgid "%category_description% - The description of the category"
|
| 228 |
msgstr ""
|
| 229 |
|
| 230 |
+
#: aioseop_class.php:120
|
| 231 |
msgid ""
|
| 232 |
+
"This controls the format of the title tag for Custom Post Archives.<br />The "
|
|
|
|
|
|
|
| 233 |
"following macros are supported:"
|
| 234 |
msgstr ""
|
| 235 |
|
| 236 |
+
#: aioseop_class.php:123
|
| 237 |
msgid "%archive_title - The original archive title given by wordpress"
|
| 238 |
msgstr ""
|
| 239 |
|
| 240 |
+
#: aioseop_class.php:125
|
| 241 |
msgid ""
|
| 242 |
+
"This controls the format of the title tag for Date Archives.<br />The "
|
|
|
|
|
|
|
| 243 |
"following macros are supported:"
|
| 244 |
msgstr ""
|
| 245 |
|
| 246 |
+
#: aioseop_class.php:128
|
| 247 |
msgid ""
|
| 248 |
"%date% - The original archive title given by wordpress, e.g. \"2007\" or "
|
| 249 |
"\"2007 August\""
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
+
#: aioseop_class.php:129
|
| 253 |
msgid "%day% - The original archive day given by wordpress, e.g. \"17\""
|
| 254 |
msgstr ""
|
| 255 |
|
| 256 |
+
#: aioseop_class.php:130
|
| 257 |
msgid ""
|
| 258 |
"%month% - The original archive month given by wordpress, e.g. \"August\""
|
| 259 |
msgstr ""
|
| 260 |
|
| 261 |
+
#: aioseop_class.php:131
|
| 262 |
msgid "%year% - The original archive year given by wordpress, e.g. \"2007\""
|
| 263 |
msgstr ""
|
| 264 |
|
| 265 |
+
#: aioseop_class.php:133
|
| 266 |
msgid ""
|
| 267 |
+
"This controls the format of the title tag for Author Archives.<br />The "
|
|
|
|
|
|
|
| 268 |
"following macros are supported:"
|
| 269 |
msgstr ""
|
| 270 |
|
| 271 |
+
#: aioseop_class.php:136
|
| 272 |
msgid ""
|
| 273 |
"%author% - The original archive title given by wordpress, e.g. \"Steve\" or "
|
| 274 |
"\"John Smith\""
|
| 275 |
msgstr ""
|
| 276 |
|
| 277 |
+
#: aioseop_class.php:138
|
| 278 |
msgid ""
|
| 279 |
+
"This controls the format of the title tag for Tag Archives.<br />The "
|
|
|
|
|
|
|
| 280 |
"following macros are supported:"
|
| 281 |
msgstr ""
|
| 282 |
|
| 283 |
+
#: aioseop_class.php:141
|
| 284 |
msgid "%tag% - The name of the tag"
|
| 285 |
msgstr ""
|
| 286 |
|
| 287 |
+
#: aioseop_class.php:143
|
| 288 |
msgid ""
|
| 289 |
+
"This controls the format of the title tag for the Search page.<br />The "
|
|
|
|
|
|
|
| 290 |
"following macros are supported:"
|
| 291 |
msgstr ""
|
| 292 |
|
| 293 |
+
#: aioseop_class.php:146
|
| 294 |
msgid "%search% - What was searched for"
|
| 295 |
msgstr ""
|
| 296 |
|
| 297 |
+
#: aioseop_class.php:147
|
| 298 |
msgid ""
|
| 299 |
+
"This controls the format of Meta Descriptions.The following macros are "
|
|
|
|
|
|
|
| 300 |
"supported:"
|
| 301 |
msgstr ""
|
| 302 |
|
| 303 |
+
#: aioseop_class.php:150
|
| 304 |
msgid ""
|
| 305 |
"%description% - The original description as determined by the plugin, e.g. "
|
| 306 |
"the excerpt if one is set or an auto-generated one if that option is set"
|
| 307 |
msgstr ""
|
| 308 |
|
| 309 |
+
#: aioseop_class.php:152
|
| 310 |
msgid "%wp_title% - The original wordpress title, e.g. post_title for posts"
|
| 311 |
msgstr ""
|
| 312 |
|
| 313 |
+
#: aioseop_class.php:153
|
| 314 |
msgid ""
|
| 315 |
+
"This controls the format of the title tag for the 404 page.<br />The "
|
|
|
|
|
|
|
| 316 |
"following macros are supported:"
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
+
#: aioseop_class.php:156
|
| 320 |
msgid ""
|
| 321 |
"%request_url% - The original URL path, like \"/url-that-does-not-exist/\""
|
| 322 |
msgstr ""
|
| 323 |
|
| 324 |
+
#: aioseop_class.php:157
|
| 325 |
msgid ""
|
| 326 |
"%request_words% - The URL path in human readable form, like \"Url That Does "
|
| 327 |
"Not Exist\""
|
| 328 |
msgstr ""
|
| 329 |
|
| 330 |
+
#: aioseop_class.php:158
|
| 331 |
msgid "%404_title% - Additional 404 title input\""
|
| 332 |
msgstr ""
|
| 333 |
|
| 334 |
+
#: aioseop_class.php:159
|
| 335 |
msgid ""
|
| 336 |
"This string gets appended/prepended to titles of paged index pages (like "
|
| 337 |
+
"home or archive pages)."
|
|
|
|
|
|
|
| 338 |
msgstr ""
|
| 339 |
|
| 340 |
+
#: aioseop_class.php:160 aioseop_class.php:1022
|
| 341 |
msgid "The following macros are supported:"
|
| 342 |
msgstr ""
|
| 343 |
|
| 344 |
+
#: aioseop_class.php:161
|
| 345 |
msgid "%page% - The page number"
|
| 346 |
msgstr ""
|
| 347 |
|
| 348 |
+
#: aioseop_class.php:162
|
| 349 |
msgid ""
|
| 350 |
"Check this if you want to use All in One SEO Pack with any Custom Post Types "
|
| 351 |
+
"on this site."
|
|
|
|
|
|
|
| 352 |
msgstr ""
|
| 353 |
|
| 354 |
+
#: aioseop_class.php:163
|
| 355 |
msgid ""
|
| 356 |
"This will show or hide the advanced options for SEO for Custom Post Types."
|
|
|
|
|
|
|
| 357 |
msgstr ""
|
| 358 |
|
| 359 |
+
#: aioseop_class.php:164
|
| 360 |
msgid ""
|
| 361 |
"Use these checkboxes to select which Post Types you want to use All in One "
|
| 362 |
+
"SEO Pack with."
|
|
|
|
|
|
|
| 363 |
msgstr ""
|
| 364 |
|
| 365 |
+
#: aioseop_class.php:165
|
| 366 |
+
msgid "This allows you to set the title tags for each Custom Post Type."
|
|
|
|
|
|
|
|
|
|
| 367 |
msgstr ""
|
| 368 |
|
| 369 |
+
#: aioseop_class.php:166
|
| 370 |
msgid ""
|
| 371 |
"This lets you select which screens display the SEO Title, SEO Keywords and "
|
| 372 |
+
"SEO Description columns."
|
|
|
|
|
|
|
| 373 |
msgstr ""
|
| 374 |
|
| 375 |
+
#: aioseop_class.php:167
|
| 376 |
msgid ""
|
| 377 |
"Check this to add All in One SEO Pack to the Admin Bar for easy access to "
|
| 378 |
+
"your SEO settings."
|
|
|
|
|
|
|
| 379 |
msgstr ""
|
| 380 |
|
| 381 |
+
#: aioseop_class.php:168
|
| 382 |
msgid ""
|
| 383 |
"Check this to move the All in One SEO Pack menu item to the top of your "
|
| 384 |
+
"WordPress Dashboard menu."
|
|
|
|
|
|
|
| 385 |
msgstr ""
|
| 386 |
|
| 387 |
+
#: aioseop_class.php:169
|
| 388 |
msgid ""
|
| 389 |
"Enter your verification code here to verify your site with Google Webmaster "
|
| 390 |
"Tools.<br /><a href='http://semperplugins.com/documentation/google-webmaster-"
|
| 392 |
"setting</a>"
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
+
#: aioseop_class.php:170
|
| 396 |
msgid ""
|
| 397 |
"Enter your verification code here to verify your site with Bing Webmaster "
|
| 398 |
"Tools.<br /><a href='http://semperplugins.com/documentation/bing-webmaster-"
|
| 400 |
"a>"
|
| 401 |
msgstr ""
|
| 402 |
|
| 403 |
+
#: aioseop_class.php:171
|
| 404 |
msgid ""
|
| 405 |
"Enter your verification code here to verify your site with Pinterest.<br /"
|
| 406 |
"><a href='http://semperplugins.com/documentation/pinterest-site-"
|
| 408 |
"a>"
|
| 409 |
msgstr ""
|
| 410 |
|
| 411 |
+
#: aioseop_class.php:172
|
| 412 |
msgid ""
|
| 413 |
"Enter your Google+ Profile URL here to add the rel=“author” tag to your site "
|
| 414 |
"for Google authorship. It is recommended that the URL you enter here should "
|
| 415 |
"be your personal Google+ profile. Use the Advanced Authorship Options below "
|
| 416 |
+
"if you want greater control over the use of authorship."
|
|
|
|
|
|
|
| 417 |
msgstr ""
|
| 418 |
|
| 419 |
+
#: aioseop_class.php:173
|
| 420 |
msgid ""
|
| 421 |
+
"Check this to remove the Google Plus field from the user profile screen."
|
|
|
|
|
|
|
| 422 |
msgstr ""
|
| 423 |
|
| 424 |
+
#: aioseop_class.php:174
|
| 425 |
msgid ""
|
| 426 |
"Enable this to display advanced options for controlling Google Plus "
|
| 427 |
+
"authorship information on your website."
|
|
|
|
|
|
|
| 428 |
msgstr ""
|
| 429 |
|
| 430 |
+
#: aioseop_class.php:175
|
| 431 |
msgid ""
|
| 432 |
"This option allows you to control which types of pages you want to display "
|
| 433 |
"rel=\"author\" on for Google authorship. The options include the Front Page "
|
| 434 |
"(the homepage of your site), Posts, Pages, and any Custom Post Types. The "
|
| 435 |
"Everywhere Else option includes 404, search, categories, tags, custom "
|
| 436 |
+
"taxonomies, date archives, author archives and any other page template."
|
|
|
|
|
|
|
| 437 |
msgstr ""
|
| 438 |
|
| 439 |
+
#: aioseop_class.php:176
|
| 440 |
msgid ""
|
| 441 |
"This option allows you to control whether rel=\"publisher\" is displayed on "
|
| 442 |
"the homepage of your site. Google recommends using this if the site is a "
|
| 443 |
+
"business website."
|
|
|
|
|
|
|
| 444 |
msgstr ""
|
| 445 |
|
| 446 |
+
#: aioseop_class.php:177
|
| 447 |
msgid ""
|
| 448 |
"The Google+ profile you enter here will appear on your homepage only as the "
|
| 449 |
"rel=\"publisher\" tag. It is recommended that the URL you enter here should "
|
| 450 |
+
"be the Google+ profile for your business."
|
| 451 |
+
msgstr ""
|
| 452 |
+
|
| 453 |
+
#: aioseop_class.php:178
|
| 454 |
+
msgid ""
|
| 455 |
+
"Add markup to display the Google Sitelinks Search Box next to your search "
|
| 456 |
+
"results in Google."
|
| 457 |
msgstr ""
|
| 458 |
|
| 459 |
#: aioseop_class.php:179
|
| 466 |
#: aioseop_class.php:180
|
| 467 |
msgid ""
|
| 468 |
"Enter your Google Analytics ID here to track visitor behavior on your site "
|
| 469 |
+
"using Google Analytics."
|
|
|
|
|
|
|
| 470 |
msgstr ""
|
| 471 |
|
| 472 |
#: aioseop_class.php:181
|
| 473 |
+
msgid "Use the new Universal Analytics tracking code for Google Analytics."
|
|
|
|
|
|
|
| 474 |
msgstr ""
|
| 475 |
|
| 476 |
#: aioseop_class.php:182
|
| 477 |
+
msgid "Check to use advanced Google Analytics options."
|
|
|
|
|
|
|
|
|
|
| 478 |
msgstr ""
|
| 479 |
|
| 480 |
#: aioseop_class.php:183
|
| 481 |
+
msgid "Enter your domain name without the http:// to set your cookie domain."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 482 |
msgstr ""
|
| 483 |
|
| 484 |
#: aioseop_class.php:184
|
| 485 |
+
msgid "Use this option to enable tracking of multiple or additional domains."
|
| 486 |
msgstr ""
|
| 487 |
|
| 488 |
#: aioseop_class.php:185
|
| 489 |
+
msgid ""
|
| 490 |
+
"Add a list of additional domains to track here. Enter one domain name per "
|
| 491 |
+
"line without the http://."
|
| 492 |
msgstr ""
|
| 493 |
|
| 494 |
#: aioseop_class.php:186
|
| 495 |
+
msgid "This enables support for IP Anonymization in Google Analytics."
|
| 496 |
msgstr ""
|
| 497 |
|
| 498 |
#: aioseop_class.php:187
|
| 499 |
msgid ""
|
| 500 |
+
"This enables support for the Display Advertiser Features in Google Analytics."
|
|
|
|
|
|
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
#: aioseop_class.php:188
|
| 504 |
+
msgid "Exclude logged-in users from Google Analytics tracking by role."
|
|
|
|
|
|
|
|
|
|
| 505 |
msgstr ""
|
| 506 |
|
| 507 |
#: aioseop_class.php:189
|
| 508 |
+
msgid "Check this if you want to track outbound links with Google Analytics."
|
|
|
|
|
|
|
|
|
|
| 509 |
msgstr ""
|
| 510 |
|
| 511 |
#: aioseop_class.php:190
|
| 512 |
msgid ""
|
| 513 |
+
"This enables support for the Enhanced Link Attribution in Google Analytics."
|
|
|
|
|
|
|
|
|
|
| 514 |
msgstr ""
|
| 515 |
|
| 516 |
#: aioseop_class.php:191
|
| 517 |
+
msgid "This enables support for the Enhanced Ecommerce in Google Analytics."
|
| 518 |
+
msgstr ""
|
| 519 |
+
|
| 520 |
+
#: aioseop_class.php:192
|
| 521 |
+
msgid "Set the default NOINDEX setting for each Post Type."
|
| 522 |
+
msgstr ""
|
| 523 |
+
|
| 524 |
+
#: aioseop_class.php:193
|
| 525 |
+
msgid "Set the default NOFOLLOW setting for each Post Type."
|
| 526 |
+
msgstr ""
|
| 527 |
+
|
| 528 |
+
#: aioseop_class.php:194
|
| 529 |
+
msgid ""
|
| 530 |
+
"Check this to ask search engines not to index Category Archives. Useful for "
|
| 531 |
+
"avoiding duplicate content."
|
| 532 |
+
msgstr ""
|
| 533 |
+
|
| 534 |
+
#: aioseop_class.php:195
|
| 535 |
msgid ""
|
| 536 |
"Check this to ask search engines not to index Date Archives. Useful for "
|
| 537 |
+
"avoiding duplicate content."
|
|
|
|
|
|
|
| 538 |
msgstr ""
|
| 539 |
|
| 540 |
+
#: aioseop_class.php:196
|
| 541 |
msgid ""
|
| 542 |
"Check this to ask search engines not to index Author Archives. Useful for "
|
| 543 |
+
"avoiding duplicate content."
|
|
|
|
|
|
|
| 544 |
msgstr ""
|
| 545 |
|
| 546 |
+
#: aioseop_class.php:197
|
| 547 |
msgid ""
|
| 548 |
"Check this to ask search engines not to index Tag Archives. Useful for "
|
| 549 |
+
"avoiding duplicate content."
|
|
|
|
|
|
|
| 550 |
msgstr ""
|
| 551 |
|
| 552 |
+
#: aioseop_class.php:198
|
| 553 |
msgid ""
|
| 554 |
"Check this to ask search engines not to index the Search page. Useful for "
|
| 555 |
+
"avoiding duplicate content."
|
|
|
|
|
|
|
| 556 |
msgstr ""
|
| 557 |
|
| 558 |
+
#: aioseop_class.php:199
|
| 559 |
msgid ""
|
| 560 |
"Check this to ask search engines not to index paginated pages/posts. Useful "
|
| 561 |
+
"for avoiding duplicate content."
|
|
|
|
|
|
|
| 562 |
msgstr ""
|
| 563 |
|
| 564 |
+
#: aioseop_class.php:200
|
| 565 |
msgid ""
|
| 566 |
"Check this to ask search engines not to follow links from paginated pages/"
|
| 567 |
+
"posts. Useful for avoiding duplicate content."
|
|
|
|
|
|
|
| 568 |
msgstr ""
|
| 569 |
|
| 570 |
+
#: aioseop_class.php:201
|
| 571 |
+
msgid ""
|
| 572 |
+
"Check this box to ask search engines not to use descriptions from the Open "
|
| 573 |
+
"Directory Project for your entire site."
|
| 574 |
+
msgstr ""
|
| 575 |
+
|
| 576 |
+
#: aioseop_class.php:202
|
| 577 |
+
msgid "Set the default noodp setting for each Post Type."
|
| 578 |
+
msgstr ""
|
| 579 |
+
|
| 580 |
+
#: aioseop_class.php:203
|
| 581 |
+
msgid ""
|
| 582 |
+
"Check this box to ask Yahoo! not to use descriptions from the Yahoo! "
|
| 583 |
+
"directory for your entire site."
|
| 584 |
+
msgstr ""
|
| 585 |
+
|
| 586 |
+
#: aioseop_class.php:204
|
| 587 |
+
msgid "Set the default noydir setting for each Post Type."
|
| 588 |
+
msgstr ""
|
| 589 |
+
|
| 590 |
+
#: aioseop_class.php:205
|
| 591 |
msgid ""
|
| 592 |
"Check this and your Meta Descriptions will be auto-generated from your "
|
| 593 |
+
"excerpt or content."
|
|
|
|
|
|
|
| 594 |
msgstr ""
|
| 595 |
|
| 596 |
+
#: aioseop_class.php:206
|
| 597 |
+
msgid ""
|
| 598 |
+
"Check this and shortcodes will get executed for descriptions auto-generated "
|
| 599 |
+
"from content."
|
| 600 |
+
msgstr ""
|
| 601 |
+
|
| 602 |
+
#: aioseop_class.php:207
|
| 603 |
msgid ""
|
| 604 |
"Check this and your Meta Descriptions will be removed from page 2 or later "
|
| 605 |
+
"of paginated content."
|
|
|
|
|
|
|
| 606 |
msgstr ""
|
| 607 |
|
| 608 |
+
#: aioseop_class.php:208
|
| 609 |
msgid ""
|
| 610 |
"Check this to prevent your Description from being truncated regardless of "
|
| 611 |
+
"its length."
|
|
|
|
| 612 |
msgstr ""
|
| 613 |
|
| 614 |
+
#: aioseop_class.php:209
|
| 615 |
msgid ""
|
| 616 |
"Check this to support Schema.org markup, i.e., itemprop on supported "
|
| 617 |
+
"metadata."
|
|
|
|
| 618 |
msgstr ""
|
| 619 |
|
| 620 |
+
#: aioseop_class.php:210
|
| 621 |
msgid ""
|
| 622 |
"Check this to unprotect internal postmeta fields for use with XMLRPC. If you "
|
| 623 |
+
"don't know what that is, leave it unchecked."
|
|
|
|
|
|
|
| 624 |
msgstr ""
|
| 625 |
|
| 626 |
+
#: aioseop_class.php:211
|
| 627 |
msgid ""
|
| 628 |
"Enter a comma separated list of pages here to be excluded by All in One SEO "
|
| 629 |
"Pack. This is helpful when using plugins which generate their own non-"
|
| 631 |
"you want to exclude the virtual pages generated by a forum plugin, all you "
|
| 632 |
"have to do is add forum or /forum or /forum/ or and any URL with the word "
|
| 633 |
"\"forum\" in it, such as http://mysite.com/forum or http://mysite.com/forum/"
|
| 634 |
+
"someforumpage here and it will be excluded from All in One SEO Pack."
|
|
|
|
|
|
|
| 635 |
msgstr ""
|
| 636 |
|
| 637 |
+
#: aioseop_class.php:212
|
| 638 |
msgid ""
|
| 639 |
"What you enter here will be copied verbatim to the header of all Posts. You "
|
| 640 |
"can enter whatever additional headers you want here, even references to "
|
| 641 |
+
"stylesheets."
|
|
|
|
| 642 |
msgstr ""
|
| 643 |
|
| 644 |
+
#: aioseop_class.php:213
|
| 645 |
msgid ""
|
| 646 |
"What you enter here will be copied verbatim to the header of all Pages. You "
|
| 647 |
"can enter whatever additional headers you want here, even references to "
|
| 648 |
+
"stylesheets."
|
|
|
|
| 649 |
msgstr ""
|
| 650 |
|
| 651 |
+
#: aioseop_class.php:214
|
| 652 |
msgid ""
|
| 653 |
"What you enter here will be copied verbatim to the header of the front page "
|
| 654 |
"if you have set a static page in Settings, Reading, Front Page Displays. You "
|
| 655 |
"can enter whatever additional headers you want here, even references to "
|
| 656 |
"stylesheets. This will fall back to using Additional Page Headers if you "
|
| 657 |
+
"have them set and nothing is entered here."
|
|
|
|
|
|
|
| 658 |
msgstr ""
|
| 659 |
|
| 660 |
+
#: aioseop_class.php:215
|
| 661 |
msgid ""
|
| 662 |
"What you enter here will be copied verbatim to the header of the home page "
|
| 663 |
"if you have Front page displays your latest posts selected in Settings, "
|
| 664 |
"Reading. It will also be copied verbatim to the header on the Posts page if "
|
| 665 |
"you have one set in Settings, Reading. You can enter whatever additional "
|
| 666 |
+
"headers you want here, even references to stylesheets."
|
|
|
|
|
|
|
| 667 |
msgstr ""
|
| 668 |
|
| 669 |
+
#: aioseop_class.php:287
|
| 670 |
msgid "A preview of what this page might look like in search engine results."
|
| 671 |
msgstr ""
|
| 672 |
|
| 673 |
+
#: aioseop_class.php:288
|
| 674 |
msgid "A custom title that shows up in the title tag for this page."
|
| 675 |
msgstr ""
|
| 676 |
|
| 677 |
+
#: aioseop_class.php:289
|
| 678 |
msgid ""
|
| 679 |
"The META description for this page. This will override any autogenerated "
|
| 680 |
"descriptions."
|
| 681 |
msgstr ""
|
| 682 |
|
| 683 |
+
#: aioseop_class.php:290
|
| 684 |
msgid ""
|
| 685 |
"A comma separated list of your most important keywords for this page that "
|
| 686 |
"will be written as META keywords."
|
| 687 |
msgstr ""
|
| 688 |
|
| 689 |
+
#: aioseop_class.php:291
|
| 690 |
+
msgid "Override the canonical URLs for this post."
|
| 691 |
+
msgstr ""
|
| 692 |
+
|
| 693 |
+
#: aioseop_class.php:292
|
| 694 |
msgid "Check this box to ask search engines not to index this page."
|
| 695 |
msgstr ""
|
| 696 |
|
| 697 |
+
#: aioseop_class.php:293
|
| 698 |
msgid ""
|
| 699 |
"Check this box to ask search engines not to follow links from this page."
|
| 700 |
msgstr ""
|
| 701 |
|
| 702 |
+
#: aioseop_class.php:294
|
| 703 |
msgid ""
|
| 704 |
"Check this box to ask search engines not to use descriptions from the Open "
|
| 705 |
"Directory Project for this page."
|
| 706 |
msgstr ""
|
| 707 |
|
| 708 |
+
#: aioseop_class.php:295
|
| 709 |
msgid ""
|
| 710 |
"Check this box to ask Yahoo! not to use descriptions from the Yahoo! "
|
| 711 |
"directory for this page."
|
| 712 |
msgstr ""
|
| 713 |
|
| 714 |
+
#: aioseop_class.php:296
|
| 715 |
msgid "Set the title attribute for menu links."
|
| 716 |
msgstr ""
|
| 717 |
|
| 718 |
+
#: aioseop_class.php:297
|
| 719 |
msgid "Set the label for this page menu item."
|
| 720 |
msgstr ""
|
| 721 |
|
| 722 |
+
#: aioseop_class.php:298
|
| 723 |
msgid "Don't display this page in the sitemap."
|
| 724 |
msgstr ""
|
| 725 |
|
| 726 |
+
#: aioseop_class.php:299
|
| 727 |
msgid "Disable SEO on this page."
|
| 728 |
msgstr ""
|
| 729 |
|
| 730 |
+
#: aioseop_class.php:300
|
| 731 |
msgid "Disable Google Analytics on this page."
|
| 732 |
msgstr ""
|
| 733 |
|
| 734 |
+
#: aioseop_class.php:305
|
| 735 |
msgid "I enjoy this plugin and have made a donation:"
|
| 736 |
msgstr ""
|
| 737 |
|
| 738 |
+
#: aioseop_class.php:307
|
| 739 |
msgid "Home Title:"
|
| 740 |
msgstr ""
|
| 741 |
|
| 742 |
+
#: aioseop_class.php:310
|
| 743 |
msgid "Home Description:"
|
| 744 |
msgstr ""
|
| 745 |
|
| 746 |
+
#: aioseop_class.php:313
|
| 747 |
msgid "Use Keywords:"
|
| 748 |
msgstr ""
|
| 749 |
|
| 750 |
+
#: aioseop_class.php:316 aioseop_class.php:347 aioseop_class.php:355
|
| 751 |
+
#: aioseop_class.php:362 aioseop_class.php:417 aioseop_class.php:423
|
| 752 |
+
#: aioseop_class.php:488 aioseop_class.php:499 aioseop_class.php:520
|
| 753 |
+
#: aioseop_performance.php:45
|
| 754 |
msgid "Enabled"
|
| 755 |
msgstr ""
|
| 756 |
|
| 757 |
+
#: aioseop_class.php:317 aioseop_class.php:348 aioseop_class.php:356
|
| 758 |
+
#: aioseop_class.php:363 aioseop_class.php:418 aioseop_class.php:424
|
| 759 |
+
#: aioseop_class.php:489 aioseop_class.php:500 aioseop_class.php:521
|
| 760 |
+
#: aioseop_performance.php:46
|
| 761 |
msgid "Disabled"
|
| 762 |
msgstr ""
|
| 763 |
|
| 764 |
+
#: aioseop_class.php:320
|
| 765 |
msgid "Home Keywords (comma separated):"
|
| 766 |
msgstr ""
|
| 767 |
|
| 768 |
+
#: aioseop_class.php:324
|
| 769 |
msgid "Canonical URLs:"
|
| 770 |
msgstr ""
|
| 771 |
|
| 772 |
+
#: aioseop_class.php:327
|
| 773 |
msgid "No Pagination for Canonical URLs:"
|
| 774 |
msgstr ""
|
| 775 |
|
| 776 |
+
#: aioseop_class.php:331
|
| 777 |
+
msgid "Enable Custom Canonical URLs:"
|
| 778 |
+
msgstr ""
|
| 779 |
+
|
| 780 |
+
#: aioseop_class.php:335
|
| 781 |
+
msgid "Set Protocol For Canonical URLs:"
|
| 782 |
+
msgstr ""
|
| 783 |
+
|
| 784 |
+
#: aioseop_class.php:338
|
| 785 |
+
msgid "Auto"
|
| 786 |
+
msgstr ""
|
| 787 |
+
|
| 788 |
+
#: aioseop_class.php:339
|
| 789 |
+
msgid "HTTP"
|
| 790 |
+
msgstr ""
|
| 791 |
+
|
| 792 |
+
#: aioseop_class.php:340
|
| 793 |
+
msgid "HTTPS"
|
| 794 |
+
msgstr ""
|
| 795 |
+
|
| 796 |
+
#: aioseop_class.php:344
|
| 797 |
msgid "Rewrite Titles:"
|
| 798 |
msgstr ""
|
| 799 |
|
| 800 |
+
#: aioseop_class.php:351 aioseop_performance.php:43
|
| 801 |
msgid "Force Rewrites:"
|
| 802 |
msgstr ""
|
| 803 |
|
| 804 |
+
#: aioseop_class.php:359
|
| 805 |
msgid "Use Original Title:"
|
| 806 |
msgstr ""
|
| 807 |
|
| 808 |
+
#: aioseop_class.php:366
|
| 809 |
msgid "Capitalize Titles:"
|
| 810 |
msgstr ""
|
| 811 |
|
| 812 |
+
#: aioseop_class.php:368
|
| 813 |
msgid "Capitalize Category Titles:"
|
| 814 |
msgstr ""
|
| 815 |
|
| 816 |
+
#: aioseop_class.php:370
|
| 817 |
msgid "Page Title Format:"
|
| 818 |
msgstr ""
|
| 819 |
|
| 820 |
+
#: aioseop_class.php:374
|
| 821 |
msgid "Post Title Format:"
|
| 822 |
msgstr ""
|
| 823 |
|
| 824 |
+
#: aioseop_class.php:378
|
| 825 |
msgid "Category Title Format:"
|
| 826 |
msgstr ""
|
| 827 |
|
| 828 |
+
#: aioseop_class.php:382
|
| 829 |
msgid "Archive Title Format:"
|
| 830 |
msgstr ""
|
| 831 |
|
| 832 |
+
#: aioseop_class.php:386
|
| 833 |
msgid "Date Archive Title Format:"
|
| 834 |
msgstr ""
|
| 835 |
|
| 836 |
+
#: aioseop_class.php:390
|
| 837 |
msgid "Author Archive Title Format:"
|
| 838 |
msgstr ""
|
| 839 |
|
| 840 |
+
#: aioseop_class.php:394
|
| 841 |
msgid "Tag Title Format:"
|
| 842 |
msgstr ""
|
| 843 |
|
| 844 |
+
#: aioseop_class.php:398
|
| 845 |
msgid "Search Title Format:"
|
| 846 |
msgstr ""
|
| 847 |
|
| 848 |
+
#: aioseop_class.php:402
|
| 849 |
msgid "Description Format"
|
| 850 |
msgstr ""
|
| 851 |
|
| 852 |
+
#: aioseop_class.php:406
|
| 853 |
msgid "404 Title Format:"
|
| 854 |
msgstr ""
|
| 855 |
|
| 856 |
+
#: aioseop_class.php:410
|
| 857 |
msgid "Paged Format:"
|
| 858 |
msgstr ""
|
| 859 |
|
| 860 |
+
#: aioseop_class.php:414
|
| 861 |
msgid "SEO for Custom Post Types:"
|
| 862 |
msgstr ""
|
| 863 |
|
| 864 |
+
#: aioseop_class.php:421
|
| 865 |
msgid "Enable Advanced Options:"
|
| 866 |
msgstr ""
|
| 867 |
|
| 868 |
+
#: aioseop_class.php:429
|
| 869 |
msgid "SEO on only these post types:"
|
| 870 |
msgstr ""
|
| 871 |
|
| 872 |
+
#: aioseop_class.php:434
|
| 873 |
msgid "Default to NOINDEX:"
|
| 874 |
msgstr ""
|
| 875 |
|
| 876 |
+
#: aioseop_class.php:439
|
| 877 |
msgid "Default to NOFOLLOW:"
|
| 878 |
msgstr ""
|
| 879 |
|
| 880 |
+
#: aioseop_class.php:444
|
| 881 |
+
msgid "Default to NOODP:"
|
| 882 |
+
msgstr ""
|
| 883 |
+
|
| 884 |
+
#: aioseop_class.php:449
|
| 885 |
+
msgid "Default to NOYDIR:"
|
| 886 |
+
msgstr ""
|
| 887 |
+
|
| 888 |
+
#: aioseop_class.php:454
|
| 889 |
msgid "Custom titles:"
|
| 890 |
msgstr ""
|
| 891 |
|
| 892 |
+
#: aioseop_class.php:459
|
| 893 |
msgid "Show Column Labels for Custom Post Types:"
|
| 894 |
msgstr ""
|
| 895 |
|
| 896 |
+
#: aioseop_class.php:462
|
| 897 |
msgid "Display Menu In Admin Bar:"
|
| 898 |
msgstr ""
|
| 899 |
|
| 900 |
+
#: aioseop_class.php:465
|
| 901 |
msgid "Display Menu At The Top:"
|
| 902 |
msgstr ""
|
| 903 |
|
| 904 |
+
#: aioseop_class.php:468
|
| 905 |
msgid "Google Webmaster Tools:"
|
| 906 |
msgstr ""
|
| 907 |
|
| 908 |
+
#: aioseop_class.php:471
|
| 909 |
msgid "Bing Webmaster Center:"
|
| 910 |
msgstr ""
|
| 911 |
|
| 912 |
+
#: aioseop_class.php:474
|
| 913 |
msgid "Pinterest Site Verification:"
|
| 914 |
msgstr ""
|
| 915 |
|
| 916 |
+
#: aioseop_class.php:477
|
| 917 |
msgid "Google Plus Default Profile:"
|
| 918 |
msgstr ""
|
| 919 |
|
| 920 |
+
#: aioseop_class.php:480
|
| 921 |
msgid "Disable Google Plus Profile:"
|
| 922 |
msgstr ""
|
| 923 |
|
| 924 |
+
#: aioseop_class.php:483
|
| 925 |
+
msgid "Display Sitelinks Search Box:"
|
| 926 |
+
msgstr ""
|
| 927 |
+
|
| 928 |
+
#: aioseop_class.php:486
|
| 929 |
msgid "Advanced Authorship Options:"
|
| 930 |
msgstr ""
|
| 931 |
|
| 932 |
+
#: aioseop_class.php:493
|
| 933 |
msgid "Display Google Authorship:"
|
| 934 |
msgstr ""
|
| 935 |
|
| 936 |
+
#: aioseop_class.php:497
|
| 937 |
msgid "Display Publisher Meta on Front Page:"
|
| 938 |
msgstr ""
|
| 939 |
|
| 940 |
+
#: aioseop_class.php:504
|
| 941 |
msgid "Specify Publisher URL:"
|
| 942 |
msgstr ""
|
| 943 |
|
| 944 |
+
#: aioseop_class.php:507 aioseop_class.php:1937
|
| 945 |
msgid "Connect With Google Analytics"
|
| 946 |
msgstr ""
|
| 947 |
|
| 948 |
+
#: aioseop_class.php:510
|
| 949 |
msgid "Google Analytics ID:"
|
| 950 |
msgstr ""
|
| 951 |
|
| 952 |
+
#: aioseop_class.php:513
|
| 953 |
msgid "Use Universal Analytics:"
|
| 954 |
msgstr ""
|
| 955 |
|
| 956 |
+
#: aioseop_class.php:517
|
| 957 |
+
msgid "Advanced Analytics Options:"
|
| 958 |
+
msgstr ""
|
| 959 |
+
|
| 960 |
+
#: aioseop_class.php:524
|
| 961 |
msgid "Tracking Domain:"
|
| 962 |
msgstr ""
|
| 963 |
|
| 964 |
+
#: aioseop_class.php:528
|
| 965 |
msgid "Track Multiple Domains:"
|
| 966 |
msgstr ""
|
| 967 |
|
| 968 |
+
#: aioseop_class.php:532
|
| 969 |
+
msgid "Additional Domains:"
|
| 970 |
+
msgstr ""
|
| 971 |
+
|
| 972 |
+
#: aioseop_class.php:536
|
| 973 |
msgid "Anonymize IP Addresses:"
|
| 974 |
msgstr ""
|
| 975 |
|
| 976 |
+
#: aioseop_class.php:540
|
| 977 |
+
msgid "Display Advertiser Tracking:"
|
| 978 |
msgstr ""
|
| 979 |
|
| 980 |
+
#: aioseop_class.php:544
|
| 981 |
msgid "Exclude Users From Tracking:"
|
| 982 |
msgstr ""
|
| 983 |
|
| 984 |
+
#: aioseop_class.php:548
|
| 985 |
msgid "Track Outbound Links:"
|
| 986 |
msgstr ""
|
| 987 |
|
| 988 |
+
#: aioseop_class.php:552
|
| 989 |
+
msgid "Enhanced Link Attribution:"
|
| 990 |
+
msgstr ""
|
| 991 |
+
|
| 992 |
+
#: aioseop_class.php:556
|
| 993 |
+
msgid "Enhanced Ecommerce:"
|
| 994 |
+
msgstr ""
|
| 995 |
+
|
| 996 |
+
#: aioseop_class.php:560
|
| 997 |
msgid "Use Categories for META keywords:"
|
| 998 |
msgstr ""
|
| 999 |
|
| 1000 |
+
#: aioseop_class.php:564
|
| 1001 |
msgid "Use Tags for META keywords:"
|
| 1002 |
msgstr ""
|
| 1003 |
|
| 1004 |
+
#: aioseop_class.php:568
|
| 1005 |
msgid "Dynamically Generate Keywords for Posts Page:"
|
| 1006 |
msgstr ""
|
| 1007 |
|
| 1008 |
+
#: aioseop_class.php:572
|
| 1009 |
msgid "Use noindex for Categories:"
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
+
#: aioseop_class.php:575
|
| 1013 |
msgid "Use noindex for Date Archives:"
|
| 1014 |
msgstr ""
|
| 1015 |
|
| 1016 |
+
#: aioseop_class.php:578
|
| 1017 |
msgid "Use noindex for Author Archives:"
|
| 1018 |
msgstr ""
|
| 1019 |
|
| 1020 |
+
#: aioseop_class.php:581
|
| 1021 |
msgid "Use noindex for Tag Archives:"
|
| 1022 |
msgstr ""
|
| 1023 |
|
| 1024 |
+
#: aioseop_class.php:584
|
| 1025 |
msgid "Use noindex for the Search page:"
|
| 1026 |
msgstr ""
|
| 1027 |
|
| 1028 |
+
#: aioseop_class.php:587
|
| 1029 |
msgid "Use noindex for paginated pages/posts:"
|
| 1030 |
msgstr ""
|
| 1031 |
|
| 1032 |
+
#: aioseop_class.php:590
|
| 1033 |
msgid "Use nofollow for paginated pages/posts:"
|
| 1034 |
msgstr ""
|
| 1035 |
|
| 1036 |
+
#: aioseop_class.php:593
|
| 1037 |
+
msgid "Exclude site from the Open Directory Project:"
|
| 1038 |
+
msgstr ""
|
| 1039 |
+
|
| 1040 |
+
#: aioseop_class.php:596
|
| 1041 |
+
msgid "Exclude site from Yahoo! Directory:"
|
| 1042 |
+
msgstr ""
|
| 1043 |
+
|
| 1044 |
+
#: aioseop_class.php:599
|
| 1045 |
msgid "Autogenerate Descriptions:"
|
| 1046 |
msgstr ""
|
| 1047 |
|
| 1048 |
+
#: aioseop_class.php:602
|
| 1049 |
+
msgid "Run Shortcodes In Autogenerated Descriptions:"
|
| 1050 |
+
msgstr ""
|
| 1051 |
+
|
| 1052 |
+
#: aioseop_class.php:606
|
| 1053 |
msgid "Remove Descriptions For Paginated Pages:"
|
| 1054 |
msgstr ""
|
| 1055 |
|
| 1056 |
+
#: aioseop_class.php:609
|
| 1057 |
msgid "Never Shorten Long Descriptions:"
|
| 1058 |
msgstr ""
|
| 1059 |
|
| 1060 |
+
#: aioseop_class.php:612
|
| 1061 |
msgid "Use Schema.org Markup"
|
| 1062 |
msgstr ""
|
| 1063 |
|
| 1064 |
+
#: aioseop_class.php:615
|
| 1065 |
msgid "Unprotect Post Meta Fields:"
|
| 1066 |
msgstr ""
|
| 1067 |
|
| 1068 |
+
#: aioseop_class.php:618
|
| 1069 |
msgid "Exclude Pages:"
|
| 1070 |
msgstr ""
|
| 1071 |
|
| 1072 |
+
#: aioseop_class.php:621
|
| 1073 |
msgid "Additional Post Headers:"
|
| 1074 |
msgstr ""
|
| 1075 |
|
| 1076 |
+
#: aioseop_class.php:624
|
| 1077 |
msgid "Additional Page Headers:"
|
| 1078 |
msgstr ""
|
| 1079 |
|
| 1080 |
+
#: aioseop_class.php:627
|
| 1081 |
msgid "Additional Front Page Headers:"
|
| 1082 |
msgstr ""
|
| 1083 |
|
| 1084 |
+
#: aioseop_class.php:630
|
| 1085 |
msgid "Additional Blog Page Headers:"
|
| 1086 |
msgstr ""
|
| 1087 |
|
| 1088 |
+
#: aioseop_class.php:633
|
| 1089 |
msgid "Log important events:"
|
| 1090 |
msgstr ""
|
| 1091 |
|
| 1092 |
+
#: aioseop_class.php:646
|
| 1093 |
msgid "Upgrade to All in One SEO Pack Pro Version"
|
| 1094 |
msgstr ""
|
| 1095 |
|
| 1096 |
+
#: aioseop_class.php:648
|
| 1097 |
msgid "Preview Snippet"
|
| 1098 |
msgstr ""
|
| 1099 |
|
| 1100 |
+
#: aioseop_class.php:661 aioseop_opengraph.php:186
|
| 1101 |
msgid "Title"
|
| 1102 |
msgstr ""
|
| 1103 |
|
| 1104 |
+
#: aioseop_class.php:662 aioseop_opengraph.php:188
|
| 1105 |
msgid "Description"
|
| 1106 |
msgstr ""
|
| 1107 |
|
| 1108 |
+
#: aioseop_class.php:663
|
| 1109 |
msgid "Keywords (comma separated)"
|
| 1110 |
msgstr ""
|
| 1111 |
|
| 1112 |
+
#: aioseop_class.php:664
|
| 1113 |
+
msgid "Custom Canonical URL"
|
| 1114 |
+
msgstr ""
|
| 1115 |
+
|
| 1116 |
+
#: aioseop_class.php:665
|
| 1117 |
msgid "Robots Meta NOINDEX"
|
| 1118 |
msgstr ""
|
| 1119 |
|
| 1120 |
+
#: aioseop_class.php:666
|
| 1121 |
msgid "Robots Meta NOFOLLOW"
|
| 1122 |
msgstr ""
|
| 1123 |
|
| 1124 |
+
#: aioseop_class.php:667
|
| 1125 |
msgid "Robots Meta NOODP"
|
| 1126 |
msgstr ""
|
| 1127 |
|
| 1128 |
+
#: aioseop_class.php:668
|
| 1129 |
msgid "Robots Meta NOYDIR"
|
| 1130 |
msgstr ""
|
| 1131 |
|
| 1132 |
+
#: aioseop_class.php:669
|
| 1133 |
msgid "Title Attribute"
|
| 1134 |
msgstr ""
|
| 1135 |
|
| 1136 |
+
#: aioseop_class.php:670
|
| 1137 |
msgid "Menu Label"
|
| 1138 |
msgstr ""
|
| 1139 |
|
| 1140 |
+
#: aioseop_class.php:671
|
| 1141 |
msgid "Exclude From Sitemap"
|
| 1142 |
msgstr ""
|
| 1143 |
|
| 1144 |
+
#: aioseop_class.php:672
|
| 1145 |
msgid "Disable on this page/post"
|
| 1146 |
msgstr ""
|
| 1147 |
|
| 1148 |
+
#: aioseop_class.php:673
|
| 1149 |
msgid "Disable Google Analytics"
|
| 1150 |
msgstr ""
|
| 1151 |
|
| 1152 |
+
#: aioseop_class.php:688 aioseop_opengraph.php:227
|
| 1153 |
msgid "Home Page Settings"
|
| 1154 |
msgstr ""
|
| 1155 |
|
| 1156 |
+
#: aioseop_class.php:693
|
| 1157 |
msgid "Keyword Settings"
|
| 1158 |
msgstr ""
|
| 1159 |
|
| 1160 |
+
#: aioseop_class.php:698
|
| 1161 |
msgid "Title Settings"
|
| 1162 |
msgstr ""
|
| 1163 |
|
| 1164 |
+
#: aioseop_class.php:704
|
| 1165 |
msgid "Custom Post Type Settings"
|
| 1166 |
msgstr ""
|
| 1167 |
|
| 1168 |
+
#: aioseop_class.php:709
|
| 1169 |
msgid "Display Settings"
|
| 1170 |
msgstr ""
|
| 1171 |
|
| 1172 |
+
#: aioseop_class.php:714
|
| 1173 |
msgid "Webmaster Verification"
|
| 1174 |
msgstr ""
|
| 1175 |
|
| 1176 |
+
#: aioseop_class.php:719
|
| 1177 |
msgid "Google Settings"
|
| 1178 |
msgstr ""
|
| 1179 |
|
| 1180 |
+
#: aioseop_class.php:726
|
| 1181 |
msgid "Noindex Settings"
|
| 1182 |
msgstr ""
|
| 1183 |
|
| 1184 |
+
#: aioseop_class.php:731
|
| 1185 |
msgid "Advanced Settings"
|
| 1186 |
msgstr ""
|
| 1187 |
|
| 1188 |
+
#: aioseop_class.php:1009
|
| 1189 |
msgid "Front Page"
|
| 1190 |
msgstr ""
|
| 1191 |
|
| 1192 |
+
#: aioseop_class.php:1009
|
| 1193 |
msgid "Everywhere Else"
|
| 1194 |
msgstr ""
|
| 1195 |
|
| 1196 |
+
#: aioseop_class.php:1017
|
| 1197 |
msgid "Title Format:"
|
| 1198 |
msgstr ""
|
| 1199 |
|
| 1200 |
+
#: aioseop_class.php:1053
|
| 1201 |
msgid "Welcome to Version %s!"
|
| 1202 |
msgstr ""
|
| 1203 |
|
| 1204 |
+
#: aioseop_class.php:1054
|
| 1205 |
msgid ""
|
| 1206 |
"Thank you for running the latest and greatest All in One SEO Pack ever! "
|
| 1207 |
"Please review your settings, as we're always adding new features for you!"
|
| 1208 |
msgstr ""
|
| 1209 |
|
| 1210 |
+
#: aioseop_class.php:1060
|
| 1211 |
msgid "Review Your Settings"
|
| 1212 |
msgstr ""
|
| 1213 |
|
| 1214 |
+
#: aioseop_class.php:1061
|
| 1215 |
msgid ""
|
| 1216 |
"Thank you for running the latest and greatest All in One SEO Pack ever! New "
|
| 1217 |
"since 2.2: Control who accesses your site with the new Robots.txt Editor and "
|
| 1219 |
"review your settings, we have added some new ones!"
|
| 1220 |
msgstr ""
|
| 1221 |
|
| 1222 |
+
#: aioseop_class.php:1080
|
| 1223 |
msgid "Reset General Settings to Defaults"
|
| 1224 |
msgstr ""
|
| 1225 |
|
| 1226 |
+
#: aioseop_class.php:1081
|
| 1227 |
msgid "Reset ALL Settings to Defaults"
|
| 1228 |
msgstr ""
|
| 1229 |
|
| 1230 |
+
#: aioseop_class.php:1142
|
| 1231 |
msgid "Default - noindex"
|
| 1232 |
msgstr ""
|
| 1233 |
|
| 1234 |
+
#: aioseop_class.php:1142
|
| 1235 |
msgid "index"
|
| 1236 |
msgstr ""
|
| 1237 |
|
| 1238 |
+
#: aioseop_class.php:1142
|
| 1239 |
msgid "noindex"
|
| 1240 |
msgstr ""
|
| 1241 |
|
| 1242 |
+
#: aioseop_class.php:1146
|
| 1243 |
msgid "Default - nofollow"
|
| 1244 |
msgstr ""
|
| 1245 |
|
| 1246 |
+
#: aioseop_class.php:1146
|
| 1247 |
msgid "follow"
|
| 1248 |
msgstr ""
|
| 1249 |
|
| 1250 |
+
#: aioseop_class.php:1146
|
| 1251 |
msgid "nofollow"
|
| 1252 |
msgstr ""
|
| 1253 |
|
| 1254 |
+
#: aioseop_class.php:1150
|
| 1255 |
+
msgid "Default - noodp"
|
| 1256 |
+
msgstr ""
|
| 1257 |
+
|
| 1258 |
+
#: aioseop_class.php:1150
|
| 1259 |
+
msgid "odp"
|
| 1260 |
+
msgstr ""
|
| 1261 |
+
|
| 1262 |
+
#: aioseop_class.php:1150
|
| 1263 |
+
msgid "noodp"
|
| 1264 |
msgstr ""
|
| 1265 |
|
| 1266 |
+
#: aioseop_class.php:1154
|
| 1267 |
+
msgid "Default - noydir"
|
| 1268 |
msgstr ""
|
| 1269 |
|
| 1270 |
+
#: aioseop_class.php:1154
|
| 1271 |
+
msgid "ydir"
|
| 1272 |
msgstr ""
|
| 1273 |
|
| 1274 |
+
#: aioseop_class.php:1154
|
| 1275 |
+
msgid "noydir"
|
| 1276 |
msgstr ""
|
| 1277 |
|
| 1278 |
+
#: aioseop_class.php:1229
|
| 1279 |
+
msgid "Reset Dismissed Notices"
|
| 1280 |
+
msgstr ""
|
| 1281 |
+
|
| 1282 |
+
#: aioseop_class.php:1233
|
| 1283 |
msgid "Pro Version"
|
| 1284 |
msgstr ""
|
| 1285 |
|
| 1286 |
+
#: aioseop_class.php:1235
|
| 1287 |
msgid "UPGRADE TO PRO VERSION"
|
| 1288 |
msgstr ""
|
| 1289 |
|
| 1290 |
+
#: aioseop_class.php:1250
|
| 1291 |
msgid "Donate"
|
| 1292 |
msgstr ""
|
| 1293 |
|
| 1294 |
+
#: aioseop_class.php:1252
|
| 1295 |
msgid "Donate with Paypal"
|
| 1296 |
msgstr ""
|
| 1297 |
|
| 1298 |
+
#: aioseop_class.php:1254
|
| 1299 |
msgid "My Amazon Wish List"
|
| 1300 |
msgstr ""
|
| 1301 |
|
| 1302 |
+
#: aioseop_class.php:1255
|
| 1303 |
msgid "Follow us on Facebook"
|
| 1304 |
msgstr ""
|
| 1305 |
|
| 1306 |
+
#: aioseop_class.php:1256
|
| 1307 |
msgid "Follow us on Twitter"
|
| 1308 |
msgstr ""
|
| 1309 |
|
| 1310 |
+
#: aioseop_class.php:1267
|
| 1311 |
msgid "Join our mailing list for tips, tricks, and WordPress secrets."
|
| 1312 |
msgstr ""
|
| 1313 |
|
| 1314 |
+
#: aioseop_class.php:1268
|
| 1315 |
msgid ""
|
| 1316 |
"Sign up today and receive a free copy of the e-book 5 SEO Tips for WordPress "
|
| 1317 |
"($39 value)."
|
| 1318 |
msgstr ""
|
| 1319 |
|
| 1320 |
+
#: aioseop_class.php:1277
|
| 1321 |
+
msgid "Read the All in One SEO Pack user guide"
|
| 1322 |
+
msgstr ""
|
| 1323 |
+
|
| 1324 |
+
#: aioseop_class.php:1278
|
| 1325 |
+
msgid "All in One SEO Pro Plugin Support Forum"
|
| 1326 |
+
msgstr ""
|
| 1327 |
+
|
| 1328 |
+
#: aioseop_class.php:1279
|
| 1329 |
+
msgid "Access our Premium Support Forums"
|
| 1330 |
+
msgstr ""
|
| 1331 |
+
|
| 1332 |
+
#: aioseop_class.php:1280
|
| 1333 |
+
msgid "All in One SEO Pro Plugin Changelog"
|
| 1334 |
msgstr ""
|
| 1335 |
|
| 1336 |
+
#: aioseop_class.php:1281
|
| 1337 |
+
msgid "View the Changelog"
|
| 1338 |
+
msgstr ""
|
| 1339 |
+
|
| 1340 |
+
#: aioseop_class.php:1282
|
| 1341 |
+
msgid "Watch video tutorials"
|
| 1342 |
+
msgstr ""
|
| 1343 |
+
|
| 1344 |
+
#: aioseop_class.php:1283
|
| 1345 |
+
msgid "Getting started? Read the Beginners Guide"
|
| 1346 |
+
msgstr ""
|
| 1347 |
+
|
| 1348 |
+
#: aioseop_class.php:1677
|
| 1349 |
msgid ""
|
| 1350 |
"Debug Warning: All in One SEO Pack meta data was included again from %s "
|
| 1351 |
"filter. Called %s times!"
|
| 1352 |
msgstr ""
|
| 1353 |
|
| 1354 |
+
#: aioseop_class.php:1929
|
| 1355 |
msgid "Disconnect From Google Analytics"
|
| 1356 |
msgstr ""
|
| 1357 |
|
| 1358 |
+
#: aioseop_class.php:1930
|
| 1359 |
msgid "Remove Stored Credentials"
|
| 1360 |
msgstr ""
|
| 1361 |
|
| 1362 |
+
#: aioseop_class.php:1952 aioseop_class.php:1970 aioseop_class.php:2002
|
| 1363 |
msgid "Google Analytics"
|
| 1364 |
msgstr ""
|
| 1365 |
|
| 1366 |
+
#: aioseop_class.php:3089
|
| 1367 |
msgid "SEO"
|
| 1368 |
msgstr ""
|
| 1369 |
|
| 1370 |
+
#: aioseop_class.php:3096
|
| 1371 |
msgid "Edit SEO"
|
| 1372 |
msgstr ""
|
| 1373 |
|
| 1374 |
+
#: aioseop_class.php:3103
|
| 1375 |
msgid "Upgrade To Pro"
|
| 1376 |
msgstr ""
|
| 1377 |
|
| 1378 |
+
#: aioseop_class.php:3112
|
| 1379 |
msgid "All in One SEO"
|
| 1380 |
msgstr ""
|
| 1381 |
|
| 1382 |
+
#: aioseop_class.php:3156
|
| 1383 |
msgid "Thank you!"
|
| 1384 |
msgstr ""
|
| 1385 |
|
| 1386 |
+
#: aioseop_class.php:3157
|
| 1387 |
msgid ""
|
| 1388 |
"Thank you for your donation, it helps keep this plugin free and actively "
|
| 1389 |
"developed!"
|
| 1390 |
msgstr ""
|
| 1391 |
|
| 1392 |
+
#: aioseop_class.php:3183
|
| 1393 |
msgid "Join Our Mailing List"
|
| 1394 |
msgstr ""
|
| 1395 |
|
| 1396 |
+
#: aioseop_class.php:3185
|
| 1397 |
+
msgid "Support"
|
| 1398 |
+
msgstr ""
|
| 1399 |
+
|
| 1400 |
+
#: aioseop_class.php:3185
|
| 1401 |
+
msgid "Version"
|
| 1402 |
+
msgstr ""
|
| 1403 |
+
|
| 1404 |
+
#: aioseop_class.php:3208 aioseop_class.php:3220 aioseop_module_class.php:1195
|
| 1405 |
+
#: aioseop_module_class.php:1385 aioseop_module_class.php:1580
|
| 1406 |
msgid "Help"
|
| 1407 |
msgstr ""
|
| 1408 |
|
| 1409 |
+
#: aioseop_class.php:3232
|
| 1410 |
msgid "Main Settings"
|
| 1411 |
msgstr ""
|
| 1412 |
|
| 1424 |
"Sitemap to Google, Bing/Yahoo and Ask.com."
|
| 1425 |
msgstr ""
|
| 1426 |
|
| 1427 |
+
#: aioseop_feature_manager.php:21 aioseop_opengraph.php:14
|
| 1428 |
msgid "Social Meta"
|
| 1429 |
msgstr ""
|
| 1430 |
|
| 1521 |
msgid "Update .htaccess"
|
| 1522 |
msgstr ""
|
| 1523 |
|
| 1524 |
+
#: aioseop_functions.php:145
|
| 1525 |
msgid "SEO Title"
|
| 1526 |
msgstr ""
|
| 1527 |
|
| 1528 |
+
#: aioseop_functions.php:146
|
| 1529 |
msgid "SEO Description"
|
| 1530 |
msgstr ""
|
| 1531 |
|
| 1532 |
+
#: aioseop_functions.php:148
|
| 1533 |
msgid "SEO Keywords"
|
| 1534 |
msgstr ""
|
| 1535 |
|
| 1536 |
+
#: aioseop_functions.php:185 aioseop_functions.php:262
|
| 1537 |
+
#: aioseop_functions.php:527
|
| 1538 |
msgid "Edit"
|
| 1539 |
msgstr ""
|
| 1540 |
|
| 1541 |
+
#: aioseop_functions.php:185
|
| 1542 |
msgid "Post"
|
| 1543 |
msgstr ""
|
| 1544 |
|
| 1545 |
+
#: aioseop_functions.php:185
|
| 1546 |
msgid "Save"
|
| 1547 |
msgstr ""
|
| 1548 |
|
| 1549 |
+
#: aioseop_functions.php:185
|
| 1550 |
msgid "Cancel"
|
| 1551 |
msgstr ""
|
| 1552 |
|
| 1553 |
+
#: aioseop_functions.php:186
|
| 1554 |
msgid "Please wait..."
|
| 1555 |
msgstr ""
|
| 1556 |
|
| 1557 |
+
#: aioseop_functions.php:186
|
| 1558 |
msgid "Slug may not be empty!"
|
| 1559 |
msgstr ""
|
| 1560 |
|
| 1561 |
+
#: aioseop_functions.php:187
|
| 1562 |
msgid "Revisions"
|
| 1563 |
msgstr ""
|
| 1564 |
|
| 1565 |
+
#: aioseop_functions.php:187
|
| 1566 |
msgid "Insert time"
|
| 1567 |
msgstr ""
|
| 1568 |
|
| 1569 |
+
#: aioseop_functions.php:258 aioseop_performance.php:155
|
| 1570 |
+
#: aioseop_performance.php:157 aioseop_performance.php:159
|
| 1571 |
+
#: aioseop_performance.php:172
|
| 1572 |
msgid "No"
|
| 1573 |
msgstr ""
|
| 1574 |
|
| 1575 |
+
#: aioseop_functions.php:277
|
| 1576 |
msgid "Unauthorized access; try reloading the page."
|
| 1577 |
msgstr ""
|
| 1578 |
|
| 1579 |
+
#: aioseop_functions.php:336
|
| 1580 |
msgid "Row %s not found; no rows were deleted."
|
| 1581 |
msgstr ""
|
| 1582 |
|
| 1583 |
+
#: aioseop_functions.php:401
|
| 1584 |
msgid "Duplicate %s Meta"
|
| 1585 |
msgstr ""
|
| 1586 |
|
| 1587 |
+
#: aioseop_functions.php:403
|
| 1588 |
msgid "No duplicate meta tags found."
|
| 1589 |
msgstr ""
|
| 1590 |
|
| 1591 |
+
#: aioseop_functions.php:406
|
| 1592 |
msgid "What Does This Mean?"
|
| 1593 |
msgstr ""
|
| 1594 |
|
| 1595 |
+
#: aioseop_functions.php:407
|
| 1596 |
msgid ""
|
| 1597 |
"All in One SEO Pack has detected that a plugin(s) or theme is also "
|
| 1598 |
"outputting social meta tags on your site. You can view this social meta in "
|
| 1600 |
"how to view source code)."
|
| 1601 |
msgstr ""
|
| 1602 |
|
| 1603 |
+
#: aioseop_functions.php:408
|
| 1604 |
msgid ""
|
| 1605 |
"You may prefer to use the social meta tags that are being output by the "
|
| 1606 |
"other plugin(s) or theme. If so, then you should deactivate this Social "
|
| 1607 |
"Meta feature in All in One SEO Pack Feature Manager."
|
| 1608 |
msgstr ""
|
| 1609 |
|
| 1610 |
+
#: aioseop_functions.php:409
|
| 1611 |
msgid ""
|
| 1612 |
"You should avoid duplicate social meta tags. You can use these free tools "
|
| 1613 |
"from Facebook, Google and Twitter to validate your social meta and check for "
|
| 1614 |
"errors:"
|
| 1615 |
msgstr ""
|
| 1616 |
|
| 1617 |
+
#: aioseop_functions.php:414
|
| 1618 |
msgid ""
|
| 1619 |
"Please refer to the document for each tool for help in using these to debug "
|
| 1620 |
"your social meta."
|
| 1621 |
msgstr ""
|
| 1622 |
|
| 1623 |
+
#: aioseop_functions.php:638
|
| 1624 |
msgid "Google+"
|
| 1625 |
msgstr ""
|
| 1626 |
|
| 1627 |
+
#: aioseop_functions.php:643
|
| 1628 |
msgid "Twitter"
|
| 1629 |
msgstr ""
|
| 1630 |
|
| 1631 |
+
#: aioseop_functions.php:645
|
| 1632 |
msgid "Facebook"
|
| 1633 |
msgstr ""
|
| 1634 |
|
| 1700 |
msgid "Settings export file for All in One SEO Pack"
|
| 1701 |
msgstr ""
|
| 1702 |
|
| 1703 |
+
#: aioseop_module_class.php:959
|
| 1704 |
+
msgid "Click here for documentation on this setting"
|
| 1705 |
+
msgstr ""
|
| 1706 |
+
|
| 1707 |
+
#: aioseop_module_class.php:1332
|
| 1708 |
msgid " characters. Most search engines use a maximum of %s chars for the %s."
|
| 1709 |
msgstr ""
|
| 1710 |
|
| 1711 |
+
#: aioseop_module_class.php:1358
|
| 1712 |
msgid "Click for Help!"
|
| 1713 |
msgstr ""
|
| 1714 |
|
| 1715 |
+
#: aioseop_module_class.php:1503 aioseop_sitemap.php:494
|
| 1716 |
msgid ""
|
| 1717 |
"Security Check - If you receive this in error, log out and back in to "
|
| 1718 |
"WordPress"
|
| 1719 |
msgstr ""
|
| 1720 |
|
| 1721 |
+
#: aioseop_module_class.php:1505
|
| 1722 |
msgid "Options Reset."
|
| 1723 |
msgstr ""
|
| 1724 |
|
| 1725 |
+
#: aioseop_module_class.php:1514
|
| 1726 |
msgid "All in One SEO Options Updated."
|
| 1727 |
msgstr ""
|
| 1728 |
|
| 1729 |
+
#: aioseop_module_class.php:1560
|
| 1730 |
msgid "Update Options"
|
| 1731 |
msgstr ""
|
| 1732 |
|
| 1733 |
+
#: aioseop_opengraph.php:19
|
| 1734 |
msgid "Activity"
|
| 1735 |
msgstr ""
|
| 1736 |
|
| 1737 |
+
#: aioseop_opengraph.php:20
|
| 1738 |
msgid "Sport"
|
| 1739 |
msgstr ""
|
| 1740 |
|
| 1741 |
+
#: aioseop_opengraph.php:23
|
| 1742 |
msgid "Bar"
|
| 1743 |
msgstr ""
|
| 1744 |
|
| 1745 |
+
#: aioseop_opengraph.php:24
|
| 1746 |
msgid "Company"
|
| 1747 |
msgstr ""
|
| 1748 |
|
| 1749 |
+
#: aioseop_opengraph.php:25
|
| 1750 |
msgid "Cafe"
|
| 1751 |
msgstr ""
|
| 1752 |
|
| 1753 |
+
#: aioseop_opengraph.php:26
|
| 1754 |
msgid "Hotel"
|
| 1755 |
msgstr ""
|
| 1756 |
|
| 1757 |
+
#: aioseop_opengraph.php:27
|
| 1758 |
msgid "Restaurant"
|
| 1759 |
msgstr ""
|
| 1760 |
|
| 1761 |
+
#: aioseop_opengraph.php:30
|
| 1762 |
msgid "Cause"
|
| 1763 |
msgstr ""
|
| 1764 |
|
| 1765 |
+
#: aioseop_opengraph.php:31
|
| 1766 |
msgid "Sports League"
|
| 1767 |
msgstr ""
|
| 1768 |
|
| 1769 |
+
#: aioseop_opengraph.php:32
|
| 1770 |
msgid "Sports Team"
|
| 1771 |
msgstr ""
|
| 1772 |
|
| 1773 |
+
#: aioseop_opengraph.php:35
|
| 1774 |
msgid "Band"
|
| 1775 |
msgstr ""
|
| 1776 |
|
| 1777 |
+
#: aioseop_opengraph.php:36
|
| 1778 |
msgid "Government"
|
| 1779 |
msgstr ""
|
| 1780 |
|
| 1781 |
+
#: aioseop_opengraph.php:37
|
| 1782 |
msgid "Non Profit"
|
| 1783 |
msgstr ""
|
| 1784 |
|
| 1785 |
+
#: aioseop_opengraph.php:38
|
| 1786 |
msgid "School"
|
| 1787 |
msgstr ""
|
| 1788 |
|
| 1789 |
+
#: aioseop_opengraph.php:39
|
| 1790 |
msgid "University"
|
| 1791 |
msgstr ""
|
| 1792 |
|
| 1793 |
+
#: aioseop_opengraph.php:42
|
| 1794 |
msgid "Actor"
|
| 1795 |
msgstr ""
|
| 1796 |
|
| 1797 |
+
#: aioseop_opengraph.php:43
|
| 1798 |
msgid "Athlete"
|
| 1799 |
msgstr ""
|
| 1800 |
|
| 1801 |
+
#: aioseop_opengraph.php:44
|
| 1802 |
msgid "Author"
|
| 1803 |
msgstr ""
|
| 1804 |
|
| 1805 |
+
#: aioseop_opengraph.php:45
|
| 1806 |
msgid "Director"
|
| 1807 |
msgstr ""
|
| 1808 |
|
| 1809 |
+
#: aioseop_opengraph.php:46
|
| 1810 |
msgid "Musician"
|
| 1811 |
msgstr ""
|
| 1812 |
|
| 1813 |
+
#: aioseop_opengraph.php:47
|
| 1814 |
msgid "Politician"
|
| 1815 |
msgstr ""
|
| 1816 |
|
| 1817 |
+
#: aioseop_opengraph.php:48
|
| 1818 |
msgid "Profile"
|
| 1819 |
msgstr ""
|
| 1820 |
|
| 1821 |
+
#: aioseop_opengraph.php:49
|
| 1822 |
msgid "Public Figure"
|
| 1823 |
msgstr ""
|
| 1824 |
|
| 1825 |
+
#: aioseop_opengraph.php:52
|
| 1826 |
msgid "City"
|
| 1827 |
msgstr ""
|
| 1828 |
|
| 1829 |
+
#: aioseop_opengraph.php:53
|
| 1830 |
msgid "Country"
|
| 1831 |
msgstr ""
|
| 1832 |
|
| 1833 |
+
#: aioseop_opengraph.php:54
|
| 1834 |
msgid "Landmark"
|
| 1835 |
msgstr ""
|
| 1836 |
|
| 1837 |
+
#: aioseop_opengraph.php:55
|
| 1838 |
msgid "State Province"
|
| 1839 |
msgstr ""
|
| 1840 |
|
| 1841 |
+
#: aioseop_opengraph.php:58
|
| 1842 |
msgid "Album"
|
| 1843 |
msgstr ""
|
| 1844 |
|
| 1845 |
+
#: aioseop_opengraph.php:59
|
| 1846 |
msgid "Book"
|
| 1847 |
msgstr ""
|
| 1848 |
|
| 1849 |
+
#: aioseop_opengraph.php:60
|
| 1850 |
msgid "Drink"
|
| 1851 |
msgstr ""
|
| 1852 |
|
| 1853 |
+
#: aioseop_opengraph.php:61
|
| 1854 |
msgid "Food"
|
| 1855 |
msgstr ""
|
| 1856 |
|
| 1857 |
+
#: aioseop_opengraph.php:62
|
| 1858 |
msgid "Game"
|
| 1859 |
msgstr ""
|
| 1860 |
|
| 1861 |
+
#: aioseop_opengraph.php:63
|
| 1862 |
msgid "Movie"
|
| 1863 |
msgstr ""
|
| 1864 |
|
| 1865 |
+
#: aioseop_opengraph.php:64
|
| 1866 |
msgid "Product"
|
| 1867 |
msgstr ""
|
| 1868 |
|
| 1869 |
+
#: aioseop_opengraph.php:65
|
| 1870 |
msgid "Song"
|
| 1871 |
msgstr ""
|
| 1872 |
|
| 1873 |
+
#: aioseop_opengraph.php:66
|
| 1874 |
msgid "TV Show"
|
| 1875 |
msgstr ""
|
| 1876 |
|
| 1877 |
+
#: aioseop_opengraph.php:67
|
| 1878 |
msgid "Episode"
|
| 1879 |
msgstr ""
|
| 1880 |
|
| 1881 |
+
#: aioseop_opengraph.php:69 aioseop_opengraph.php:76
|
| 1882 |
msgid "Article"
|
| 1883 |
msgstr ""
|
| 1884 |
|
| 1885 |
+
#: aioseop_opengraph.php:70 aioseop_opengraph.php:76
|
| 1886 |
msgid "Blog"
|
| 1887 |
msgstr ""
|
| 1888 |
|
| 1889 |
+
#: aioseop_opengraph.php:71 aioseop_opengraph.php:76
|
| 1890 |
msgid "Website"
|
| 1891 |
msgstr ""
|
| 1892 |
|
| 1893 |
+
#: aioseop_opengraph.php:79
|
| 1894 |
msgid ""
|
| 1895 |
"Checking this box will use the Home Title and Home Description set in All in "
|
| 1896 |
"One SEO Pack, General Settings as the Open Graph title and description for "
|
| 1897 |
+
"your home page."
|
|
|
|
|
|
|
| 1898 |
msgstr ""
|
| 1899 |
|
| 1900 |
+
#: aioseop_opengraph.php:80
|
| 1901 |
msgid ""
|
| 1902 |
"Your Profile Admin ID is your Facebook profile ID. You can find out your "
|
| 1903 |
"Facebook ID using the lookup tool here: https://graph.facebook.com/"
|
| 1904 |
+
"yourusername"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1905 |
msgstr ""
|
| 1906 |
|
| 1907 |
#: aioseop_opengraph.php:81
|
| 1908 |
+
msgid "The Site Name is the name that is used to identify your website."
|
|
|
|
|
|
|
|
|
|
| 1909 |
msgstr ""
|
| 1910 |
|
| 1911 |
#: aioseop_opengraph.php:82
|
| 1912 |
+
msgid "The Home Title is the Open Graph title for your home page."
|
|
|
|
|
|
|
|
|
|
| 1913 |
msgstr ""
|
| 1914 |
|
| 1915 |
#: aioseop_opengraph.php:83
|
| 1916 |
+
msgid "The Home Description is the Open Graph description for your home page."
|
|
|
|
|
|
|
|
|
|
| 1917 |
msgstr ""
|
| 1918 |
|
| 1919 |
#: aioseop_opengraph.php:84
|
| 1920 |
+
msgid "The Home Image is the Open Graph image for your home page."
|
|
|
|
|
|
|
|
|
|
| 1921 |
msgstr ""
|
| 1922 |
|
| 1923 |
#: aioseop_opengraph.php:85
|
| 1924 |
msgid ""
|
| 1925 |
+
"The Home Tag allows you to add a list of keywords that best describe your "
|
| 1926 |
+
"home page content."
|
|
|
|
|
|
|
| 1927 |
msgstr ""
|
| 1928 |
|
| 1929 |
#: aioseop_opengraph.php:86
|
| 1930 |
msgid ""
|
| 1931 |
+
"Check this and your Open Graph descriptions will be auto-generated from your "
|
| 1932 |
+
"content."
|
|
|
|
|
|
|
| 1933 |
msgstr ""
|
| 1934 |
|
| 1935 |
#: aioseop_opengraph.php:87
|
| 1936 |
msgid ""
|
| 1937 |
+
"This option lets you choose which image will be displayed by default for the "
|
| 1938 |
+
"Open Graph image. You may override this on individual posts."
|
|
|
|
|
|
|
|
|
|
| 1939 |
msgstr ""
|
| 1940 |
|
| 1941 |
#: aioseop_opengraph.php:88
|
| 1942 |
msgid ""
|
| 1943 |
+
"This option lets you fall back to the default image if no image could be "
|
| 1944 |
+
"found above."
|
|
|
|
|
|
|
| 1945 |
msgstr ""
|
| 1946 |
|
| 1947 |
#: aioseop_opengraph.php:89
|
| 1948 |
msgid ""
|
| 1949 |
+
"This option sets a default image that can be used for the Open Graph image. "
|
| 1950 |
+
"You can upload an image, select an image from your Media Library or paste "
|
| 1951 |
+
"the URL of an image here."
|
| 1952 |
msgstr ""
|
| 1953 |
|
| 1954 |
#: aioseop_opengraph.php:90
|
| 1955 |
msgid ""
|
| 1956 |
+
"Enter the name of a custom field (or multiple field names separated by "
|
| 1957 |
+
"commas) to use that field to specify the Open Graph image on Pages or Posts."
|
|
|
|
|
|
|
| 1958 |
msgstr ""
|
| 1959 |
|
| 1960 |
#: aioseop_opengraph.php:91
|
| 1961 |
+
msgid "Set the Open Graph type for your website as either a blog or a website."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1962 |
msgstr ""
|
| 1963 |
|
| 1964 |
#: aioseop_opengraph.php:92
|
| 1965 |
msgid ""
|
| 1966 |
+
"This option lets you select the Open Graph image that will be used for this "
|
| 1967 |
+
"Page or Post, overriding the default settings."
|
|
|
|
| 1968 |
msgstr ""
|
| 1969 |
|
| 1970 |
#: aioseop_opengraph.php:93
|
| 1971 |
msgid ""
|
| 1972 |
+
"This option lets you upload an image to use as the Open Graph image for this "
|
| 1973 |
+
"Page or Post."
|
|
|
|
| 1974 |
msgstr ""
|
| 1975 |
|
| 1976 |
+
#: aioseop_opengraph.php:94
|
| 1977 |
+
msgid "Enter the width for your Open Graph image in pixels (i.e. 600)."
|
| 1978 |
+
msgstr ""
|
| 1979 |
+
|
| 1980 |
+
#: aioseop_opengraph.php:95
|
| 1981 |
+
msgid "Enter the height for your Open Graph image in pixels (i.e. 600)."
|
| 1982 |
msgstr ""
|
| 1983 |
|
| 1984 |
#: aioseop_opengraph.php:96
|
| 1985 |
msgid ""
|
| 1986 |
+
"This option lets you specify a link to the Open Graph video used on this "
|
| 1987 |
+
"Page or Post."
|
|
|
|
| 1988 |
msgstr ""
|
| 1989 |
|
| 1990 |
#: aioseop_opengraph.php:97
|
| 1991 |
+
msgid "Enter the width for your Open Graph video in pixels (i.e. 600)."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1992 |
msgstr ""
|
| 1993 |
|
| 1994 |
#: aioseop_opengraph.php:98
|
| 1995 |
+
msgid "Enter the height for your Open Graph video in pixels (i.e. 600)."
|
| 1996 |
+
msgstr ""
|
| 1997 |
+
|
| 1998 |
+
#: aioseop_opengraph.php:100 aioseop_opengraph.php:101
|
| 1999 |
+
msgid "Select the default type of Twitter card to display."
|
| 2000 |
+
msgstr ""
|
| 2001 |
+
|
| 2002 |
+
#: aioseop_opengraph.php:102
|
| 2003 |
+
msgid "Enter the Twitter username associated with your website here."
|
| 2004 |
+
msgstr ""
|
| 2005 |
+
|
| 2006 |
+
#: aioseop_opengraph.php:103
|
| 2007 |
msgid ""
|
| 2008 |
+
"Allows your authors to be identified by their Twitter usernames as content "
|
| 2009 |
+
"creators on the Twitter cards for their posts."
|
| 2010 |
+
msgstr ""
|
| 2011 |
+
|
| 2012 |
+
#: aioseop_opengraph.php:104
|
| 2013 |
+
msgid "Enter the name of your website here."
|
| 2014 |
msgstr ""
|
| 2015 |
|
| 2016 |
+
#: aioseop_opengraph.php:105
|
| 2017 |
msgid ""
|
| 2018 |
"Select which Post Types you want to use All in One SEO Pack to set Open "
|
| 2019 |
+
"Graph meta values for."
|
|
|
|
|
|
|
| 2020 |
msgstr ""
|
| 2021 |
|
| 2022 |
+
#: aioseop_opengraph.php:106
|
| 2023 |
+
msgid "This is the Open Graph title of this Page or Post."
|
|
|
|
|
|
|
|
|
|
| 2024 |
msgstr ""
|
| 2025 |
|
| 2026 |
+
#: aioseop_opengraph.php:107
|
| 2027 |
+
msgid "This is the Open Graph description of this Page or Post."
|
|
|
|
|
|
|
|
|
|
| 2028 |
msgstr ""
|
| 2029 |
|
| 2030 |
+
#: aioseop_opengraph.php:108
|
| 2031 |
msgid ""
|
| 2032 |
"Select the Open Graph type that best describes the content of this Page or "
|
| 2033 |
+
"Post."
|
|
|
|
| 2034 |
msgstr ""
|
| 2035 |
|
| 2036 |
+
#: aioseop_opengraph.php:109
|
| 2037 |
msgid ""
|
| 2038 |
+
"This Open Graph meta allows you to add a general section name that best "
|
| 2039 |
+
"describes this content."
|
|
|
|
|
|
|
| 2040 |
msgstr ""
|
| 2041 |
|
| 2042 |
+
#: aioseop_opengraph.php:110
|
| 2043 |
msgid ""
|
| 2044 |
+
"This Open Graph meta allows you to add a list of keywords that best describe "
|
| 2045 |
+
"this content."
|
|
|
|
| 2046 |
msgstr ""
|
| 2047 |
|
| 2048 |
+
#: aioseop_opengraph.php:111
|
| 2049 |
+
msgid "Link articles to the Facebook page associated with your website."
|
| 2050 |
+
msgstr ""
|
| 2051 |
+
|
| 2052 |
+
#: aioseop_opengraph.php:112
|
| 2053 |
msgid ""
|
| 2054 |
"Allows your authors to be identified by their Facebook pages as content "
|
| 2055 |
+
"authors on the Opengraph meta for their articles."
|
|
|
|
|
|
|
| 2056 |
msgstr ""
|
| 2057 |
|
| 2058 |
+
#: aioseop_opengraph.php:139
|
| 2059 |
msgid " characters. Open Graph allows up to a maximum of %s chars for the %s."
|
| 2060 |
msgstr ""
|
| 2061 |
|
| 2062 |
+
#: aioseop_opengraph.php:141
|
| 2063 |
msgid "Scan Header"
|
| 2064 |
msgstr ""
|
| 2065 |
|
| 2066 |
+
#: aioseop_opengraph.php:142
|
| 2067 |
msgid "Use AIOSEO Title and Description"
|
| 2068 |
msgstr ""
|
| 2069 |
|
| 2070 |
+
#: aioseop_opengraph.php:143
|
| 2071 |
msgid "Profile Admins ID"
|
| 2072 |
msgstr ""
|
| 2073 |
|
| 2074 |
+
#: aioseop_opengraph.php:144
|
| 2075 |
msgid "Site Name"
|
| 2076 |
msgstr ""
|
| 2077 |
|
| 2078 |
+
#: aioseop_opengraph.php:145
|
| 2079 |
msgid "Home Title"
|
| 2080 |
msgstr ""
|
| 2081 |
|
| 2082 |
+
#: aioseop_opengraph.php:147
|
| 2083 |
msgid "Home Description"
|
| 2084 |
msgstr ""
|
| 2085 |
|
| 2086 |
+
#: aioseop_opengraph.php:149
|
| 2087 |
msgid "Home Image"
|
| 2088 |
msgstr ""
|
| 2089 |
|
| 2090 |
+
#: aioseop_opengraph.php:151
|
| 2091 |
+
msgid "Home Article Tags"
|
| 2092 |
msgstr ""
|
| 2093 |
|
| 2094 |
+
#: aioseop_opengraph.php:153
|
| 2095 |
+
msgid "Autogenerate OG Descriptions"
|
| 2096 |
msgstr ""
|
| 2097 |
|
| 2098 |
+
#: aioseop_opengraph.php:154
|
| 2099 |
msgid "Select OG:Image Source"
|
| 2100 |
msgstr ""
|
| 2101 |
|
| 2102 |
+
#: aioseop_opengraph.php:154
|
| 2103 |
msgid "Default Image"
|
| 2104 |
msgstr ""
|
| 2105 |
|
| 2106 |
+
#: aioseop_opengraph.php:154
|
| 2107 |
msgid "Featured Image"
|
| 2108 |
msgstr ""
|
| 2109 |
|
| 2110 |
+
#: aioseop_opengraph.php:154
|
| 2111 |
msgid "First Attached Image"
|
| 2112 |
msgstr ""
|
| 2113 |
|
| 2114 |
+
#: aioseop_opengraph.php:154
|
| 2115 |
msgid "First Image In Content"
|
| 2116 |
msgstr ""
|
| 2117 |
|
| 2118 |
+
#: aioseop_opengraph.php:154
|
| 2119 |
msgid "Image From Custom Field"
|
| 2120 |
msgstr ""
|
| 2121 |
|
| 2122 |
+
#: aioseop_opengraph.php:154
|
| 2123 |
+
msgid "Post Author Image"
|
| 2124 |
+
msgstr ""
|
| 2125 |
+
|
| 2126 |
+
#: aioseop_opengraph.php:154
|
| 2127 |
msgid "First Available Image"
|
| 2128 |
msgstr ""
|
| 2129 |
|
| 2130 |
+
#: aioseop_opengraph.php:155
|
| 2131 |
msgid "Use Default If No Image Found"
|
| 2132 |
msgstr ""
|
| 2133 |
|
| 2134 |
+
#: aioseop_opengraph.php:156
|
| 2135 |
msgid "Default OG:Image"
|
| 2136 |
msgstr ""
|
| 2137 |
|
| 2138 |
+
#: aioseop_opengraph.php:157
|
| 2139 |
msgid "Use Custom Field For Image"
|
| 2140 |
msgstr ""
|
| 2141 |
|
| 2142 |
+
#: aioseop_opengraph.php:158 aioseop_opengraph.php:190
|
| 2143 |
msgid "Facebook Object Type"
|
| 2144 |
msgstr ""
|
| 2145 |
|
| 2146 |
+
#: aioseop_opengraph.php:160
|
| 2147 |
msgid "Image"
|
| 2148 |
msgstr ""
|
| 2149 |
|
| 2150 |
+
#: aioseop_opengraph.php:162
|
| 2151 |
msgid "Custom Image"
|
| 2152 |
msgstr ""
|
| 2153 |
|
| 2154 |
+
#: aioseop_opengraph.php:164
|
| 2155 |
msgid "Specify Image Width"
|
| 2156 |
msgstr ""
|
| 2157 |
|
| 2158 |
+
#: aioseop_opengraph.php:166
|
| 2159 |
msgid "Specify Image Height"
|
| 2160 |
msgstr ""
|
| 2161 |
|
| 2162 |
+
#: aioseop_opengraph.php:168
|
| 2163 |
+
msgid "Custom Video"
|
| 2164 |
+
msgstr ""
|
| 2165 |
+
|
| 2166 |
+
#: aioseop_opengraph.php:170
|
| 2167 |
+
msgid "Specify Video Width"
|
| 2168 |
+
msgstr ""
|
| 2169 |
+
|
| 2170 |
+
#: aioseop_opengraph.php:172
|
| 2171 |
+
msgid "Specify Video Height"
|
| 2172 |
+
msgstr ""
|
| 2173 |
+
|
| 2174 |
+
#: aioseop_opengraph.php:174
|
| 2175 |
msgid "Default Twitter Card"
|
| 2176 |
msgstr ""
|
| 2177 |
|
| 2178 |
+
#: aioseop_opengraph.php:175 aioseop_opengraph.php:177
|
| 2179 |
msgid "Summary"
|
| 2180 |
msgstr ""
|
| 2181 |
|
| 2182 |
+
#: aioseop_opengraph.php:175 aioseop_opengraph.php:177
|
| 2183 |
msgid "Summary Large Image"
|
| 2184 |
msgstr ""
|
| 2185 |
|
| 2186 |
+
#: aioseop_opengraph.php:175 aioseop_opengraph.php:177
|
| 2187 |
msgid "Photo"
|
| 2188 |
msgstr ""
|
| 2189 |
|
| 2190 |
+
#: aioseop_opengraph.php:176
|
| 2191 |
msgid "Twitter Card Type"
|
| 2192 |
msgstr ""
|
| 2193 |
|
| 2194 |
+
#: aioseop_opengraph.php:178
|
| 2195 |
msgid "Twitter Site"
|
| 2196 |
msgstr ""
|
| 2197 |
|
| 2198 |
+
#: aioseop_opengraph.php:180
|
| 2199 |
msgid "Show Twitter Author"
|
| 2200 |
msgstr ""
|
| 2201 |
|
| 2202 |
+
#: aioseop_opengraph.php:181
|
| 2203 |
msgid "Twitter Domain"
|
| 2204 |
msgstr ""
|
| 2205 |
|
| 2206 |
+
#: aioseop_opengraph.php:183
|
| 2207 |
msgid "Enable Facebook Meta for"
|
| 2208 |
msgstr ""
|
| 2209 |
|
| 2210 |
+
#: aioseop_opengraph.php:195
|
| 2211 |
+
msgid "Article Section"
|
| 2212 |
+
msgstr ""
|
| 2213 |
+
|
| 2214 |
+
#: aioseop_opengraph.php:197
|
| 2215 |
msgid "Article Tags"
|
| 2216 |
msgstr ""
|
| 2217 |
|
| 2218 |
+
#: aioseop_opengraph.php:199
|
| 2219 |
msgid "Show Facebook Publisher on Articles"
|
| 2220 |
msgstr ""
|
| 2221 |
|
| 2222 |
+
#: aioseop_opengraph.php:200
|
| 2223 |
msgid "Show Facebook Author on Articles"
|
| 2224 |
msgstr ""
|
| 2225 |
|
| 2226 |
+
#: aioseop_opengraph.php:213
|
| 2227 |
msgid "Social Settings"
|
| 2228 |
msgstr ""
|
| 2229 |
|
| 2230 |
+
#: aioseop_opengraph.php:232
|
| 2231 |
msgid "Image Settings"
|
| 2232 |
msgstr ""
|
| 2233 |
|
| 2234 |
+
#: aioseop_opengraph.php:237
|
| 2235 |
msgid "Facebook Settings"
|
| 2236 |
msgstr ""
|
| 2237 |
|
| 2238 |
+
#: aioseop_opengraph.php:242
|
| 2239 |
msgid "Twitter Settings"
|
| 2240 |
msgstr ""
|
| 2241 |
|
| 2242 |
+
#: aioseop_opengraph.php:248
|
| 2243 |
msgid "Scan Social Meta"
|
| 2244 |
msgstr ""
|
| 2245 |
|
| 2246 |
+
#: aioseop_opengraph.php:279
|
| 2247 |
msgid ""
|
| 2248 |
"Static front page detected, suggested Facebook Object Type is 'website'."
|
| 2249 |
msgstr ""
|
| 2250 |
|
| 2251 |
+
#: aioseop_opengraph.php:284
|
| 2252 |
msgid "Blog on front page detected, suggested Facebook Object Type is 'blog'."
|
| 2253 |
msgstr ""
|
| 2254 |
|
| 2255 |
+
#: aioseop_opengraph.php:331
|
| 2256 |
msgid "Default "
|
| 2257 |
msgstr ""
|
| 2258 |
|
| 2259 |
+
#: aioseop_opengraph.php:378
|
| 2260 |
msgid "Scan Now"
|
| 2261 |
msgstr ""
|
| 2262 |
|
| 2263 |
+
#: aioseop_opengraph.php:380
|
| 2264 |
msgid "Scan your site for duplicate social meta tags."
|
| 2265 |
msgstr ""
|
| 2266 |
|
| 2267 |
+
#: aioseop_opengraph.php:740
|
| 2268 |
msgid "Object Type"
|
| 2269 |
msgstr ""
|
| 2270 |
|
| 2271 |
+
#: aioseop_opengraph.php:747
|
| 2272 |
msgid ""
|
| 2273 |
"Choose a default value that best describes the content of your post type."
|
| 2274 |
msgstr ""
|
| 2277 |
msgid ""
|
| 2278 |
"This setting allows you to raise your PHP memory limit to a reasonable "
|
| 2279 |
"value. Note: WordPress core and other WordPress plugins may also change the "
|
| 2280 |
+
"value of the memory limit."
|
|
|
|
|
|
|
| 2281 |
msgstr ""
|
| 2282 |
|
| 2283 |
#: aioseop_performance.php:21
|
| 2284 |
msgid ""
|
| 2285 |
"This setting allows you to raise your PHP execution time to a reasonable "
|
| 2286 |
+
"value."
|
|
|
|
| 2287 |
msgstr ""
|
| 2288 |
|
| 2289 |
#: aioseop_performance.php:22
|
| 2290 |
msgid ""
|
| 2291 |
"Use output buffering to ensure that the title gets rewritten. Enable this "
|
| 2292 |
"option if you run into issues with the title tag being set by your theme or "
|
| 2293 |
+
"another plugin."
|
|
|
|
|
|
|
| 2294 |
msgstr ""
|
| 2295 |
|
| 2296 |
#: aioseop_performance.php:26
|
| 2309 |
msgid "No limit"
|
| 2310 |
msgstr ""
|
| 2311 |
|
| 2312 |
+
#: aioseop_performance.php:63
|
| 2313 |
msgid "System Status"
|
| 2314 |
msgstr ""
|
| 2315 |
|
| 2316 |
+
#: aioseop_performance.php:139
|
| 2317 |
msgid "Not set"
|
| 2318 |
msgstr ""
|
| 2319 |
|
| 2320 |
+
#: aioseop_performance.php:140 aioseop_performance.php:142
|
| 2321 |
msgid "On"
|
| 2322 |
msgstr ""
|
| 2323 |
|
| 2324 |
+
#: aioseop_performance.php:141 aioseop_performance.php:143
|
| 2325 |
msgid "Off"
|
| 2326 |
msgstr ""
|
| 2327 |
|
|
|
|
| 2328 |
#: aioseop_performance.php:145 aioseop_performance.php:147
|
| 2329 |
+
#: aioseop_performance.php:149 aioseop_performance.php:151
|
| 2330 |
+
#: aioseop_performance.php:153 aioseop_performance.php:175
|
| 2331 |
msgid "N/A"
|
| 2332 |
msgstr ""
|
| 2333 |
|
| 2334 |
+
#: aioseop_performance.php:152
|
| 2335 |
msgid " MByte"
|
| 2336 |
msgstr ""
|
| 2337 |
|
| 2338 |
+
#: aioseop_performance.php:154 aioseop_performance.php:156
|
| 2339 |
+
#: aioseop_performance.php:158 aioseop_performance.php:170
|
| 2340 |
msgid "Yes"
|
| 2341 |
msgstr ""
|
| 2342 |
|
| 2343 |
+
#: aioseop_performance.php:182
|
| 2344 |
msgid "Operating System"
|
| 2345 |
msgstr ""
|
| 2346 |
|
| 2347 |
+
#: aioseop_performance.php:183
|
| 2348 |
msgid "Server"
|
| 2349 |
msgstr ""
|
| 2350 |
|
| 2351 |
+
#: aioseop_performance.php:184
|
| 2352 |
msgid "Memory usage"
|
| 2353 |
msgstr ""
|
| 2354 |
|
| 2355 |
+
#: aioseop_performance.php:185
|
| 2356 |
msgid "MYSQL Version"
|
| 2357 |
msgstr ""
|
| 2358 |
|
| 2359 |
+
#: aioseop_performance.php:186
|
| 2360 |
msgid "SQL Mode"
|
| 2361 |
msgstr ""
|
| 2362 |
|
| 2363 |
+
#: aioseop_performance.php:187
|
| 2364 |
msgid "PHP Version"
|
| 2365 |
msgstr ""
|
| 2366 |
|
| 2367 |
+
#: aioseop_performance.php:188
|
| 2368 |
msgid "PHP Safe Mode"
|
| 2369 |
msgstr ""
|
| 2370 |
|
| 2371 |
+
#: aioseop_performance.php:189
|
| 2372 |
msgid "PHP Allow URL fopen"
|
| 2373 |
msgstr ""
|
| 2374 |
|
| 2375 |
+
#: aioseop_performance.php:190
|
| 2376 |
msgid "PHP Memory Limit"
|
| 2377 |
msgstr ""
|
| 2378 |
|
| 2379 |
+
#: aioseop_performance.php:191
|
| 2380 |
msgid "PHP Max Upload Size"
|
| 2381 |
msgstr ""
|
| 2382 |
|
| 2383 |
+
#: aioseop_performance.php:192
|
| 2384 |
msgid "PHP Max Post Size"
|
| 2385 |
msgstr ""
|
| 2386 |
|
| 2387 |
+
#: aioseop_performance.php:193
|
| 2388 |
msgid "PHP Max Script Execute Time"
|
| 2389 |
msgstr ""
|
| 2390 |
|
| 2391 |
+
#: aioseop_performance.php:194
|
| 2392 |
msgid "PHP Exif support"
|
| 2393 |
msgstr ""
|
| 2394 |
|
| 2395 |
+
#: aioseop_performance.php:195
|
| 2396 |
msgid "PHP IPTC support"
|
| 2397 |
msgstr ""
|
| 2398 |
|
| 2399 |
+
#: aioseop_performance.php:196
|
| 2400 |
msgid "PHP XML support"
|
| 2401 |
msgstr ""
|
| 2402 |
|
| 2403 |
+
#: aioseop_performance.php:197
|
| 2404 |
msgid "Site URL"
|
| 2405 |
msgstr ""
|
| 2406 |
|
| 2407 |
+
#: aioseop_performance.php:198
|
| 2408 |
msgid "Home URL"
|
| 2409 |
msgstr ""
|
| 2410 |
|
| 2411 |
+
#: aioseop_performance.php:199
|
| 2412 |
msgid "WordPress Version"
|
| 2413 |
msgstr ""
|
| 2414 |
|
| 2415 |
+
#: aioseop_performance.php:200
|
| 2416 |
msgid "WordPress DB Version"
|
| 2417 |
msgstr ""
|
| 2418 |
|
| 2419 |
+
#: aioseop_performance.php:201
|
| 2420 |
msgid "Multisite"
|
| 2421 |
msgstr ""
|
| 2422 |
|
| 2423 |
+
#: aioseop_performance.php:202
|
| 2424 |
msgid "Active Theme"
|
| 2425 |
msgstr ""
|
| 2426 |
|
| 2427 |
+
#: aioseop_performance.php:217
|
| 2428 |
msgid "All in One SEO Pack Pro Debug Info"
|
| 2429 |
msgstr ""
|
| 2430 |
|
| 2431 |
+
#: aioseop_performance.php:233
|
| 2432 |
msgid "Form submission error: verification check failed."
|
| 2433 |
msgstr ""
|
| 2434 |
|
| 2435 |
+
#: aioseop_performance.php:239
|
| 2436 |
msgid "SFWD Debug Mail From Site %s."
|
| 2437 |
msgstr ""
|
| 2438 |
|
| 2439 |
+
#: aioseop_performance.php:240
|
| 2440 |
msgid "Sent to %s."
|
| 2441 |
msgstr ""
|
| 2442 |
|
| 2443 |
+
#: aioseop_performance.php:242
|
| 2444 |
msgid "Failed to send to %s."
|
| 2445 |
msgstr ""
|
| 2446 |
|
| 2447 |
+
#: aioseop_performance.php:245
|
| 2448 |
msgid "Error: please enter an e-mail address before submitting."
|
| 2449 |
msgstr ""
|
| 2450 |
|
| 2451 |
+
#: aioseop_performance.php:250
|
| 2452 |
msgid "E-mail debug information"
|
| 2453 |
msgstr ""
|
| 2454 |
|
| 2455 |
+
#: aioseop_performance.php:251
|
| 2456 |
msgid "Submit"
|
| 2457 |
msgstr ""
|
| 2458 |
|
| 2567 |
|
| 2568 |
#: aioseop_sitemap.php:34
|
| 2569 |
msgid ""
|
| 2570 |
+
"Specifies the name of your sitemap file. This will default to 'sitemap'."
|
|
|
|
|
|
|
| 2571 |
msgstr ""
|
| 2572 |
|
| 2573 |
#: aioseop_sitemap.php:35
|
| 2574 |
+
msgid "Notify Google when you update your sitemap settings."
|
|
|
|
|
|
|
|
|
|
| 2575 |
msgstr ""
|
| 2576 |
|
| 2577 |
#: aioseop_sitemap.php:36
|
| 2578 |
+
msgid "Notify Bing when you update your sitemap settings."
|
|
|
|
|
|
|
|
|
|
| 2579 |
msgstr ""
|
| 2580 |
|
| 2581 |
#: aioseop_sitemap.php:37
|
| 2582 |
msgid ""
|
| 2583 |
"Organize sitemap entries into distinct files in your sitemap. Enable this "
|
| 2584 |
"only if your sitemap contains over 50,000 URLs or the file is over 5MB in "
|
| 2585 |
+
"size."
|
|
|
|
| 2586 |
msgstr ""
|
| 2587 |
|
| 2588 |
#: aioseop_sitemap.php:38
|
| 2589 |
+
msgid "Split long sitemaps into separate files."
|
|
|
|
|
|
|
|
|
|
| 2590 |
msgstr ""
|
| 2591 |
|
| 2592 |
#: aioseop_sitemap.php:39
|
| 2593 |
msgid ""
|
| 2594 |
"Allows you to specify the maximum number of posts in a sitemap (up to "
|
| 2595 |
+
"50,000)."
|
|
|
|
| 2596 |
msgstr ""
|
| 2597 |
|
| 2598 |
#: aioseop_sitemap.php:40
|
| 2599 |
+
msgid "Select which Post Types appear in your sitemap."
|
|
|
|
|
|
|
|
|
|
| 2600 |
msgstr ""
|
| 2601 |
|
| 2602 |
#: aioseop_sitemap.php:41
|
| 2603 |
+
msgid "Select which taxonomy archives appear in your sitemap"
|
|
|
|
|
|
|
|
|
|
| 2604 |
msgstr ""
|
| 2605 |
|
| 2606 |
#: aioseop_sitemap.php:42
|
| 2607 |
+
msgid "Include Date Archives in your sitemap."
|
|
|
|
|
|
|
|
|
|
| 2608 |
msgstr ""
|
| 2609 |
|
| 2610 |
#: aioseop_sitemap.php:43
|
| 2611 |
+
msgid "Include Author Archives in your sitemap."
|
|
|
|
|
|
|
|
|
|
| 2612 |
msgstr ""
|
| 2613 |
|
| 2614 |
#: aioseop_sitemap.php:44
|
| 2615 |
+
msgid "Create a compressed sitemap file in .xml.gz format."
|
|
|
|
|
|
|
|
|
|
| 2616 |
msgstr ""
|
| 2617 |
|
| 2618 |
#: aioseop_sitemap.php:45
|
| 2619 |
+
msgid "Places a link to your Sitemap.xml into your virtual Robots.txt file."
|
|
|
|
|
|
|
|
|
|
| 2620 |
msgstr ""
|
| 2621 |
|
| 2622 |
#: aioseop_sitemap.php:46
|
| 2623 |
msgid ""
|
| 2624 |
"Places a link to the sitemap file in your virtual Robots.txt file which "
|
| 2625 |
+
"WordPress creates."
|
|
|
|
|
|
|
| 2626 |
msgstr ""
|
| 2627 |
|
| 2628 |
#: aioseop_sitemap.php:47
|
| 2629 |
+
msgid "Tells search engines not to index the sitemap file itself."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2630 |
msgstr ""
|
| 2631 |
|
| 2632 |
#: aioseop_sitemap.php:48
|
| 2633 |
+
msgid ""
|
| 2634 |
+
"Use rewrites to generate your sitemap on the fly. NOTE: This is required for "
|
| 2635 |
+
"WordPress Multisite."
|
| 2636 |
msgstr ""
|
| 2637 |
|
| 2638 |
#: aioseop_sitemap.php:49
|
| 2639 |
+
msgid "URL to the page."
|
| 2640 |
msgstr ""
|
| 2641 |
|
| 2642 |
#: aioseop_sitemap.php:50
|
| 2643 |
+
msgid "The priority of the page."
|
| 2644 |
msgstr ""
|
| 2645 |
|
| 2646 |
#: aioseop_sitemap.php:51
|
| 2647 |
+
msgid "The frequency of the page."
|
| 2648 |
msgstr ""
|
| 2649 |
|
| 2650 |
#: aioseop_sitemap.php:52
|
| 2651 |
+
msgid "Last modified date of the page."
|
|
|
|
|
|
|
|
|
|
| 2652 |
msgstr ""
|
| 2653 |
|
| 2654 |
#: aioseop_sitemap.php:53
|
| 2655 |
+
msgid "Entries from these categories will be excluded from the sitemap."
|
| 2656 |
+
msgstr ""
|
| 2657 |
+
|
| 2658 |
+
#: aioseop_sitemap.php:54
|
| 2659 |
msgid ""
|
| 2660 |
"Use page slugs or page IDs, seperated by commas, to exclude pages from the "
|
| 2661 |
+
"sitemap."
|
|
|
|
| 2662 |
msgstr ""
|
| 2663 |
|
| 2664 |
+
#: aioseop_sitemap.php:78
|
| 2665 |
msgid "Filename Prefix"
|
| 2666 |
msgstr ""
|
| 2667 |
|
| 2668 |
+
#: aioseop_sitemap.php:80
|
| 2669 |
msgid "Notify Google"
|
| 2670 |
msgstr ""
|
| 2671 |
|
| 2672 |
+
#: aioseop_sitemap.php:81
|
| 2673 |
msgid "Notify Bing"
|
| 2674 |
msgstr ""
|
| 2675 |
|
| 2676 |
+
#: aioseop_sitemap.php:82
|
| 2677 |
msgid "Enable Sitemap Indexes"
|
| 2678 |
msgstr ""
|
| 2679 |
|
| 2680 |
+
#: aioseop_sitemap.php:83
|
| 2681 |
msgid "Paginate Sitemap Indexes"
|
| 2682 |
msgstr ""
|
| 2683 |
|
| 2684 |
+
#: aioseop_sitemap.php:85
|
| 2685 |
msgid "Maximum Posts Per Sitemap"
|
| 2686 |
msgstr ""
|
| 2687 |
|
| 2688 |
+
#: aioseop_sitemap.php:88
|
| 2689 |
msgid "Post Types"
|
| 2690 |
msgstr ""
|
| 2691 |
|
| 2692 |
+
#: aioseop_sitemap.php:90
|
| 2693 |
msgid "Taxonomies"
|
| 2694 |
msgstr ""
|
| 2695 |
|
| 2696 |
+
#: aioseop_sitemap.php:92
|
| 2697 |
msgid "Include Date Archive Pages"
|
| 2698 |
msgstr ""
|
| 2699 |
|
| 2700 |
+
#: aioseop_sitemap.php:93
|
| 2701 |
msgid "Include Author Pages"
|
| 2702 |
msgstr ""
|
| 2703 |
|
| 2704 |
+
#: aioseop_sitemap.php:94
|
| 2705 |
msgid "Create Compressed Sitemap"
|
| 2706 |
msgstr ""
|
| 2707 |
|
| 2708 |
+
#: aioseop_sitemap.php:95
|
| 2709 |
msgid "Link From Virtual Robots.txt"
|
| 2710 |
msgstr ""
|
| 2711 |
|
| 2712 |
+
#: aioseop_sitemap.php:96
|
| 2713 |
msgid "Dynamically Generate Sitemap"
|
| 2714 |
msgstr ""
|
| 2715 |
|
| 2716 |
+
#: aioseop_sitemap.php:97
|
| 2717 |
+
msgid "Noindex Sitemap file"
|
| 2718 |
+
msgstr ""
|
| 2719 |
+
|
| 2720 |
+
#: aioseop_sitemap.php:103
|
| 2721 |
msgid "Debug Log"
|
| 2722 |
msgstr ""
|
| 2723 |
|
| 2724 |
+
#: aioseop_sitemap.php:108
|
| 2725 |
msgid "Sitemap Status"
|
| 2726 |
msgstr ""
|
| 2727 |
|
| 2728 |
+
#: aioseop_sitemap.php:123
|
| 2729 |
msgid "Do Not Override"
|
| 2730 |
msgstr ""
|
| 2731 |
|
| 2732 |
+
#: aioseop_sitemap.php:124
|
| 2733 |
msgid "Select Individual"
|
| 2734 |
msgstr ""
|
| 2735 |
|
| 2736 |
+
#: aioseop_sitemap.php:133
|
| 2737 |
msgid "priority"
|
| 2738 |
msgstr ""
|
| 2739 |
|
| 2740 |
+
#: aioseop_sitemap.php:133
|
| 2741 |
msgid "frequency"
|
| 2742 |
msgstr ""
|
| 2743 |
|
| 2744 |
+
#: aioseop_sitemap.php:136
|
| 2745 |
msgid "homepage"
|
| 2746 |
msgstr ""
|
| 2747 |
|
| 2748 |
+
#: aioseop_sitemap.php:137
|
| 2749 |
msgid "posts"
|
| 2750 |
msgstr ""
|
| 2751 |
|
| 2752 |
+
#: aioseop_sitemap.php:138
|
| 2753 |
msgid "taxonomies"
|
| 2754 |
msgstr ""
|
| 2755 |
|
| 2756 |
+
#: aioseop_sitemap.php:139
|
| 2757 |
msgid "archive pages"
|
| 2758 |
msgstr ""
|
| 2759 |
|
| 2760 |
+
#: aioseop_sitemap.php:140
|
| 2761 |
msgid "author pages"
|
| 2762 |
msgstr ""
|
| 2763 |
|
| 2764 |
+
#: aioseop_sitemap.php:148
|
| 2765 |
msgid "Manually set the %s of your %s."
|
| 2766 |
msgstr ""
|
| 2767 |
|
| 2768 |
+
#: aioseop_sitemap.php:155
|
| 2769 |
msgid ""
|
| 2770 |
"Enter information below for any additional links for your sitemap not "
|
| 2771 |
"already managed through WordPress."
|
| 2772 |
msgstr ""
|
| 2773 |
|
| 2774 |
+
#: aioseop_sitemap.php:156
|
| 2775 |
msgid "Page URL"
|
| 2776 |
msgstr ""
|
| 2777 |
|
| 2778 |
+
#: aioseop_sitemap.php:157
|
| 2779 |
msgid "Page Priority"
|
| 2780 |
msgstr ""
|
| 2781 |
|
| 2782 |
+
#: aioseop_sitemap.php:158
|
| 2783 |
msgid "Page Frequency"
|
| 2784 |
msgstr ""
|
| 2785 |
|
| 2786 |
+
#: aioseop_sitemap.php:159
|
| 2787 |
msgid "Last Modified"
|
| 2788 |
msgstr ""
|
| 2789 |
|
| 2790 |
+
#: aioseop_sitemap.php:160 aioseop_sitemap.php:170
|
| 2791 |
msgid "Additional Pages"
|
| 2792 |
msgstr ""
|
| 2793 |
|
| 2794 |
+
#: aioseop_sitemap.php:161
|
| 2795 |
msgid "Add URL"
|
| 2796 |
msgstr ""
|
| 2797 |
|
| 2798 |
+
#: aioseop_sitemap.php:165
|
| 2799 |
msgid "Excluded Categories"
|
| 2800 |
msgstr ""
|
| 2801 |
|
| 2802 |
+
#: aioseop_sitemap.php:166
|
| 2803 |
msgid "Excluded Pages"
|
| 2804 |
msgstr ""
|
| 2805 |
|
| 2806 |
+
#: aioseop_sitemap.php:176
|
| 2807 |
msgid "Excluded Items"
|
| 2808 |
msgstr ""
|
| 2809 |
|
| 2810 |
+
#: aioseop_sitemap.php:182
|
| 2811 |
msgid "Priorities"
|
| 2812 |
msgstr ""
|
| 2813 |
|
| 2814 |
+
#: aioseop_sitemap.php:188
|
| 2815 |
msgid "Frequencies"
|
| 2816 |
msgstr ""
|
| 2817 |
|
| 2818 |
+
#: aioseop_sitemap.php:278
|
| 2819 |
msgid "Media / Attachments"
|
| 2820 |
msgstr ""
|
| 2821 |
|
| 2822 |
+
#: aioseop_sitemap.php:279
|
| 2823 |
msgid "All Post Types"
|
| 2824 |
msgstr ""
|
| 2825 |
|
| 2826 |
+
#: aioseop_sitemap.php:280
|
| 2827 |
msgid "All Taxonomies"
|
| 2828 |
msgstr ""
|
| 2829 |
|
| 2830 |
+
#: aioseop_sitemap.php:284
|
| 2831 |
msgid "Manually set the priority for the "
|
| 2832 |
msgstr ""
|
| 2833 |
|
| 2834 |
+
#: aioseop_sitemap.php:285
|
| 2835 |
msgid "Manually set the frequency for the "
|
| 2836 |
msgstr ""
|
| 2837 |
|
| 2838 |
+
#: aioseop_sitemap.php:286
|
| 2839 |
msgid " Post Type"
|
| 2840 |
msgstr ""
|
| 2841 |
|
| 2842 |
+
#: aioseop_sitemap.php:287
|
| 2843 |
msgid " Taxonomy"
|
| 2844 |
msgstr ""
|
| 2845 |
|
| 2846 |
+
#: aioseop_sitemap.php:318 aioseop_sitemap.php:350
|
| 2847 |
msgid "Update Sitemap"
|
| 2848 |
msgstr ""
|
| 2849 |
|
| 2850 |
+
#: aioseop_sitemap.php:348
|
| 2851 |
msgid ""
|
| 2852 |
"Please review your settings below and click %s to build your sitemap; then, "
|
| 2853 |
"%s."
|
| 2854 |
msgstr ""
|
| 2855 |
|
| 2856 |
+
#: aioseop_sitemap.php:351
|
| 2857 |
msgid "view your sitemap"
|
| 2858 |
msgstr ""
|
| 2859 |
|
| 2860 |
+
#: aioseop_sitemap.php:354
|
| 2861 |
msgid ""
|
| 2862 |
"Note: you are using dynamic sitemap generation to keep your sitemap current; "
|
| 2863 |
"this will not generate a static sitemap file."
|
| 2864 |
msgstr ""
|
| 2865 |
|
| 2866 |
+
#: aioseop_sitemap.php:358
|
| 2867 |
msgid ""
|
| 2868 |
"Dynamic sitemap generation appears to be using the correct rewrite rules."
|
| 2869 |
msgstr ""
|
| 2870 |
|
| 2871 |
+
#: aioseop_sitemap.php:360
|
| 2872 |
msgid ""
|
| 2873 |
"Dynamic sitemap generation does not appear to be using the correct rewrite "
|
| 2874 |
"rules; please disable any other sitemap plugins or functionality on your "
|
| 2875 |
"site and reset your permalinks."
|
| 2876 |
msgstr ""
|
| 2877 |
|
| 2878 |
+
#: aioseop_sitemap.php:365
|
| 2879 |
msgid "Reading Settings"
|
| 2880 |
msgstr ""
|
| 2881 |
|
| 2882 |
+
#: aioseop_sitemap.php:367
|
| 2883 |
msgid "Privacy Settings"
|
| 2884 |
msgstr ""
|
| 2885 |
|
| 2886 |
+
#: aioseop_sitemap.php:369
|
| 2887 |
msgid ""
|
| 2888 |
"Warning: your privacy settings are configured to ask search engines to not "
|
| 2889 |
"index your site; you can change this under %s for your blog."
|
| 2890 |
msgstr ""
|
| 2891 |
|
| 2892 |
+
#: aioseop_sitemap.php:490
|
| 2893 |
msgid "Warning: dynamic sitemap generation must have permalinks enabled."
|
| 2894 |
msgstr ""
|
| 2895 |
|
| 2896 |
+
#: aioseop_sitemap.php:503
|
| 2897 |
msgid "Deleted %s."
|
| 2898 |
msgstr ""
|
| 2899 |
|
| 2900 |
+
#: aioseop_sitemap.php:512
|
| 2901 |
msgid "Couldn't rename file %s!"
|
| 2902 |
msgstr ""
|
| 2903 |
|
| 2904 |
+
#: aioseop_sitemap.php:516
|
| 2905 |
msgid "Renamed %s to %s."
|
| 2906 |
msgstr ""
|
| 2907 |
|
| 2908 |
+
#: aioseop_sitemap.php:518
|
| 2909 |
msgid "Couldn't find file %s!"
|
| 2910 |
msgstr ""
|
| 2911 |
|
| 2912 |
+
#: aioseop_sitemap.php:570
|
| 2913 |
msgid ""
|
| 2914 |
"Warning: a static sitemap '%s' generated by All in One SEO Pack %s on %s "
|
| 2915 |
"already exists that may conflict with dynamic sitemap generation."
|
| 2916 |
msgstr ""
|
| 2917 |
|
| 2918 |
+
#: aioseop_sitemap.php:575
|
| 2919 |
msgid "Potential conflict with unknown file %s."
|
| 2920 |
msgstr ""
|
| 2921 |
|
| 2922 |
+
#: aioseop_sitemap.php:594
|
| 2923 |
msgid "Rename Conflicting Files"
|
| 2924 |
msgstr ""
|
| 2925 |
|
| 2926 |
+
#: aioseop_sitemap.php:595
|
| 2927 |
msgid "Delete Conflicting Files"
|
| 2928 |
msgstr ""
|
| 2929 |
|
| 2930 |
+
#: aioseop_sitemap.php:684
|
| 2931 |
msgid "compressed"
|
| 2932 |
msgstr ""
|
| 2933 |
|
| 2934 |
+
#: aioseop_sitemap.php:686
|
| 2935 |
msgid "dynamic"
|
| 2936 |
msgstr ""
|
| 2937 |
|
| 2938 |
+
#: aioseop_sitemap.php:688
|
| 2939 |
msgid "static"
|
| 2940 |
msgstr ""
|
| 2941 |
|
| 2942 |
+
#: aioseop_sitemap.php:754
|
| 2943 |
msgid "dynamically"
|
| 2944 |
msgstr ""
|
| 2945 |
|
| 2946 |
+
#: aioseop_sitemap.php:778
|
| 2947 |
msgid "Successfully notified %s about changes to your sitemap at %s."
|
| 2948 |
msgstr ""
|
| 2949 |
|
| 2950 |
+
#: aioseop_sitemap.php:780
|
| 2951 |
msgid "Failed to notify %s about changes to your sitemap at %s, error code %s."
|
| 2952 |
msgstr ""
|
| 2953 |
|
| 2954 |
+
#: aioseop_sitemap.php:783
|
| 2955 |
msgid ""
|
| 2956 |
"Failed to notify %s about changes to your sitemap at %s, unable to access "
|
| 2957 |
"via wp_remote_get()."
|
| 2958 |
msgstr ""
|
| 2959 |
|
| 2960 |
+
#: aioseop_sitemap.php:786
|
| 2961 |
msgid "Did not notify %s about changes to your sitemap."
|
| 2962 |
msgstr ""
|
| 2963 |
|
| 2964 |
+
#: aioseop_sitemap.php:813 aioseop_sitemap.php:951 aioseop_sitemap.php:969
|
| 2965 |
msgid "file '%s' statically"
|
| 2966 |
msgstr ""
|
| 2967 |
|
| 2968 |
+
#: aioseop_sitemap.php:822
|
| 2969 |
msgid "Updated sitemap settings."
|
| 2970 |
msgstr ""
|
| 2971 |
|
| 2972 |
+
#: all_in_one_seo_pack.php:48
|
| 2973 |
msgid "%s detected a conflict; please deactivate the plugin located in %s."
|
| 2974 |
msgstr ""
|
| 2975 |
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtor
|
|
| 4 |
Tags: all in one, all in one seo, all in one seo pack, seo, search engine optimization, google
|
| 5 |
Requires at least: 3.3
|
| 6 |
Tested up to: 4.1
|
| 7 |
-
Stable tag:
|
| 8 |
|
| 9 |
All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.
|
| 10 |
|
| 4 |
Tags: all in one, all in one seo, all in one seo pack, seo, search engine optimization, google
|
| 5 |
Requires at least: 3.3
|
| 6 |
Tested up to: 4.1
|
| 7 |
+
Stable tag: 2.2.5
|
| 8 |
|
| 9 |
All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.
|
| 10 |
|
