Version Description
- NEW JobPosting schema (PRO)
- NEW 'seopress_metabox_seo_tabs' hook to filter tabs in SEO metabox
- NEW 'seopress_schemas_auto_job_html' hook to filter JobPosting global schema
- NEW 'seopress_schemas_job_html' hook to filter JobPosting manual schema
- NEW 'seopress_sitemaps_max_posts_per_sitemap' hook to filter max posts per paginated sitemap
- INFO GA: we now follow all external links, even if you have not defined an empty target attribute
- INFO Performance optimization
- INFO Improving security
- INFO Improving the user experience
Download this release
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 3.7.1 |
Comparing to | |
See all releases |
Code changes from version 3.7 to 3.7.1
- assets/css/seopress.css +7 -5
- assets/css/seopress.min.css +1 -1
- assets/js/seopress-cookies-ajax.js +0 -1
- assets/js/seopress-migrate.min.js +1 -0
- inc/admin/admin-metaboxes-form.php +385 -361
- inc/admin/admin-metaboxes.php +101 -86
- inc/admin/admin-term-metaboxes.php +88 -64
- inc/admin/admin-wizard.php +1 -1
- inc/admin/admin.php +2 -2
- inc/functions/options-google-analytics.php +10 -8
- inc/functions/sitemap/template-xml-sitemaps-single.php +4 -1
- inc/functions/sitemap/template-xml-sitemaps.php +7 -3
- languages/wp-seopress.pot +725 -726
- readme.txt +14 -2
- seopress.php +3 -3
assets/css/seopress.css
CHANGED
@@ -1333,7 +1333,7 @@ body.seopress-styles {
|
|
1333 |
-webkit-font-smoothing: initial;
|
1334 |
}
|
1335 |
|
1336 |
-
#seopress_cpt .tag-title,.seopress-button,.seopress-option .tag-title {
|
1337 |
cursor: pointer;
|
1338 |
font-weight: 500;
|
1339 |
border-radius: 4px;
|
@@ -1378,14 +1378,14 @@ body.seopress-styles {
|
|
1378 |
width: calc(100% - 20px);
|
1379 |
}
|
1380 |
|
1381 |
-
#seopress_cpt .wrap-tags,.seopress-option .wrap-tags {
|
1382 |
position: relative;
|
1383 |
display: inline-block;
|
1384 |
width: 100%;
|
1385 |
margin-bottom: 10px;
|
1386 |
}
|
1387 |
|
1388 |
-
#seopress_cpt .tag-title,.seopress-option .tag-title {
|
1389 |
padding: 4px 8px;
|
1390 |
position: relative;
|
1391 |
top: 5px;
|
@@ -1400,13 +1400,15 @@ body.seopress-styles {
|
|
1400 |
box-shadow: 0 0 0 .5px rgba(50,50,93,.17),0 2px 5px 0 rgba(50,50,93,.12),0 3px 9px 0 rgba(50,50,93,.08),0 1px 1.5px 0 rgba(0,0,0,.08),0 1px 2px 0 rgba(0,0,0,.08);
|
1401 |
}
|
1402 |
|
1403 |
-
#
|
|
|
|
|
1404 |
background: #232323;
|
1405 |
color: #fff;
|
1406 |
user-select: none;
|
1407 |
}
|
1408 |
|
1409 |
-
#seopress_cpt .tag-title .dashicons,.seopress-option .tag-title .dashicons {
|
1410 |
padding: 0;
|
1411 |
height: 16px;
|
1412 |
width: 16px;
|
1333 |
-webkit-font-smoothing: initial;
|
1334 |
}
|
1335 |
|
1336 |
+
#seopress_cpt .tag-title,.seopress-button,.seopress-option .tag-title,#seopress_pro_cpt .tag-title {
|
1337 |
cursor: pointer;
|
1338 |
font-weight: 500;
|
1339 |
border-radius: 4px;
|
1378 |
width: calc(100% - 20px);
|
1379 |
}
|
1380 |
|
1381 |
+
#seopress_cpt .wrap-tags,.seopress-option .wrap-tags,#seopress_pro_cpt .wrap-tags {
|
1382 |
position: relative;
|
1383 |
display: inline-block;
|
1384 |
width: 100%;
|
1385 |
margin-bottom: 10px;
|
1386 |
}
|
1387 |
|
1388 |
+
#seopress_cpt .tag-title,.seopress-option .tag-title,#seopress_pro_cpt .tag-title {
|
1389 |
padding: 4px 8px;
|
1390 |
position: relative;
|
1391 |
top: 5px;
|
1400 |
box-shadow: 0 0 0 .5px rgba(50,50,93,.17),0 2px 5px 0 rgba(50,50,93,.12),0 3px 9px 0 rgba(50,50,93,.08),0 1px 1.5px 0 rgba(0,0,0,.08),0 1px 2px 0 rgba(0,0,0,.08);
|
1401 |
}
|
1402 |
|
1403 |
+
#seopress_pro_cpt .tag-title:active,#seopress_pro_cpt .tag-title:focus,#seopress_pro_cpt .tag-title:hover,
|
1404 |
+
#seopress_cpt .tag-title:active,#seopress_cpt .tag-title:focus,#seopress_cpt .tag-title:hover,
|
1405 |
+
.seopress-option .tag-title:active,.seopress-option .tag-title:focus,.seopress-option .tag-title:hover {
|
1406 |
background: #232323;
|
1407 |
color: #fff;
|
1408 |
user-select: none;
|
1409 |
}
|
1410 |
|
1411 |
+
#seopress_cpt .tag-title .dashicons,.seopress-option .tag-title .dashicons, #seopress_pro_cpt .tag-title .dashicons {
|
1412 |
padding: 0;
|
1413 |
height: 16px;
|
1414 |
width: 16px;
|
assets/css/seopress.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before,#seopress-header #seopress-admin h1::before{content:"\e800";font-family:seopress!important;font-weight:700;font-size:12px;line-height:20px}#seopress-header #seopress-admin h1::before,.seopress-page-list .seopress-feature h3,.seopress-styles .seopress-option h1{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}@font-face{font-family:seopress;src:url(../fonts/seopress.eot?81521271);src:url(../fonts/seopress.eot?81521271#iefix) format('embedded-opentype'),url(../fonts/seopress.woff?81521271) format('woff2'),url(../fonts/seopress.woff?81521271) format('woff'),url(../fonts/seopress.ttf?81521271) format('truetype'),url(../fonts/seopress.svg?81521271#seopress) format('svg');font-weight:400;font-style:normal}[class*=" icon-seopress"],[class^=icon-seopress-]{font-family:seopress!important;font-size:14px!important;line-height:24px!important}.icon-seopress-seopress:before{content:"\e800"}.sp-tooltip{position:relative;margin-left:5px;display:inline-block;cursor:help}.sp-tooltip .dashicons{color:#666}.sp-tooltip .sp-tooltiptext{visibility:hidden;position:absolute;z-index:999999999;color:#fff;font-size:.8em;background:#333;text-align:center;width:240px;right:0;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2);top:25px}.sp-tooltip:hover .sp-tooltiptext{visibility:visible}#seopress_content_analysis .wrap-seopress-analysis{display:inline-block;width:100%}#seopress_content_analysis .col-left{width:calc(50% - 30px);float:left;margin-right:30px}#seopress_content_analysis .col-right{float:right;width:50%}#seopress_content_analysis #seopress_suggestions{display:inline-block;width:100%;margin:0;height:auto;padding:20px 0}#seopress_content_analysis #seopress_suggestions li{list-style:none;margin:5px;display:inline-block}#seopress_launch_analysis{float:left}#seopress_analysis_results_state{background:rgba(74,184,102,.75);color:#fff;padding:5px 25px 5px 20px;border-radius:100px;font-style:italic;position:relative;width:auto;display:inline-block;margin:0 0 0 20px;clear:both}#seopress_content_analysis h3{border-bottom:1px solid #ddd;padding-bottom:10px}#seopress_content_analysis .wrap-analysis-img ul{display:flex;flex-wrap:wrap}#seopress_content_analysis .wrap-analysis-img ul li{padding:0;text-align:left;cursor:default}#seopress_content_analysis .wrap-analysis-img h4{border-bottom:1px solid #ddd;padding-bottom:10px}#seopress_content_analysis .wrap-analysis-img ul li img{max-width:150px;max-height:150px;object-fit:cover;cursor:default}#seopress_cpt .notice{padding:10px 14px}#seopress-analysis-tabs .dashicons,#seopress_cpt .dashicons{vertical-align:middle}#seopress_cpt .inside{margin:0;padding:0}#seopress_content_analysis .ui-tabs .ui-tabs-nav,#seopress_cpt .ui-tabs .ui-tabs-nav{display:inline-block;min-height:26px;position:relative;width:100%;z-index:10;margin:0;border-radius:0;padding:0;background:#f3f4f5;border:none}#seopress_content_analysis .ui-tabs .ui-tabs-nav{width:calc(100% + 24px);margin:0 0 0 -12px;position:-webkit-sticky;position:sticky;top:0}#seopress_content_analysis .ui-tabs .ui-tabs-nav{margin-top:15px}#seopress_content_analysis .ui-helper-clearfix:after,#seopress_cpt .ui-helper-clearfix:after{content:none}.seopress_page_seopress-titles #seopress-tabs .form-table td,.seopress_page_seopress-titles #seopress_content_analysis .form-table td{padding:0}#seopress_content_analysis .ui-tabs .ui-tabs-panel,#seopress_cpt .ui-tabs .ui-tabs-panel{background:#fff;border-radius:0;display:inline-block;padding:1em 1.4em;width:100%;box-sizing:border-box}#seopress_content_analysis .ui-tabs .ui-tabs-panel .dashicons-info,#seopress_cpt .ui-tabs .ui-tabs-panel .dashicons-info,#seopress_pro_cpt .dashicons-info{font-size:16px;vertical-align:middle;height:16px;width:16px}#seopress_content_analysis .ui-tabs .ui-tabs-nav li,#seopress_content_analysis .ui-tabs-anchor,#seopress_cpt .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs-anchor{cursor:pointer!important}#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-tabs-active,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{position:relative;z-index:60;cursor:pointer;border-radius:0;border-bottom:3px solid #0085ba}#seopress_content_analysis label,#seopress_cpt #tabs-1 label,#seopress_cpt #tabs-2 label[for=seopress_robots_breadcrumbs_meta],#seopress_cpt #tabs-2 label[for=seopress_robots_canonical_meta],#seopress_cpt #tabs-2 label[for=seopress_robots_primary_cat_meta],#seopress_cpt #tabs-3 label,#seopress_cpt #tabs-4 label,#seopress_cpt #tabs-5 label,#seopress_cpt #tabs-6 label,#seopress_cpt .subsection-title,#seopress_pro_cpt label{display:block;margin:20px 0 5px;font-weight:700}#seopress_cpt .wp-color-result{margin:0}#seopress_content_analysis input[type=text],#seopress_cpt #tabs-1 input,#seopress_cpt #tabs-2 input[type=text],#seopress_cpt #tabs-3 input[type=text],#seopress_cpt #tabs-3 textarea,#seopress_cpt #tabs-4 input[type=text],#seopress_cpt #tabs-5 input[type=text],#seopress_cpt #tabs-6 input[type=text],#seopress_cpt #tabs-6 textarea{width:90%;display:inline-block}#seopress_cpt #tabs-1 input{width:100%}#seopress_cpt #tabs-6 input[type=number]{width:30%;min-width:200px}#seopress_cpt #tabs-6 #wrap-videos .video:first-child .remove-video{display:none}#seopress_cpt select{width:300px}#seopress_cpt #tabs-4 select{width:250px;display:inline}#seopress_cpt #tabs-4 #seopress_redirections_value_meta{width:calc(100% - 258px);float:right}#seopress_cpt #tabs-6{padding:0}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content,#seopress_cpt #tabs-6>p{padding:0 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content{padding:0 1.4em 1em}#seopress_cpt #tabs-6 #wrap-videos .video{border-top:1px solid #eee}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-title{border-left:none;border-right:none;font-size:1em;padding:1em 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-content,#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-title{border-bottom:1px solid #eee}#seopress_cpt #tabs-6 #wrap-videos .video .inside{padding:0}#seopress_cpt #tabs-4 #seopress_redirections_enabled,#seopress_cpt #tabs-5 #seopress_news_disabled,#seopress_cpt #tabs-5 #seopress_news_standout,#seopress_cpt #tabs-6 #seopress_video_disabled,#seopress_cpt #tabs-6 .family-friendly label,#seopress_cpt #tabs-6 .internal_video label{font-weight:400}#seopress_cpt #tabs-6 #wrap-videos .video:nth-child(odd){background:#fdfdfd}#seopress_content_analysis .advise,#seopress_cpt .advise,#seopress_pro_cpt .advise,.seopress-option .advise{margin:5px;display:block;color:red;font-style:italic}#seopress_cpt #tabs-6 #wrap-videos .video .advise{color:#555}#seopress_content_analysis .mandatory,#seopress_cpt .mandatory{color:#c00}#seopress_cpt .box-left{float:left;width:49%;margin-right:1%}#seopress_cpt .box-right{float:left;width:49%;margin-left:1%}#seopress_cpt .google-snippet-preview{font-family:arial,sans-serif;word-break:break-all}#seopress_cpt .google-snippet-preview>p{word-break:normal}#seopress_cpt .google-snippet-preview .snippet-title,#seopress_cpt .google-snippet-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview .snippet-title-default{color:#1a0dab;font-size:18px;font-weight:400;line-height:21.6px}#seopress_cpt .google-snippet-preview .snippet-permalink{color:#006621;font-size:14px;font-style:normal;font-weight:400;line-height:16px}#seopress_cpt .google-snippet-preview .snippet-description,#seopress_cpt .google-snippet-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview .snippet-description-default{color:#545454;font-size:13px;font-weight:400;line-height:18.2px;display:inline}#seopress_cpt .google-snippet-preview .snippet-date{color:grey;display:inline}#seopress_cpt .wrap-seopress-counters,#seopress_pro_cpt .wrap-seopress-counters{text-align:right;background:#eee;padding:2px 5px;display:flex;box-shadow:0 1px 1px rgba(0,0,0,.2);font-size:12px;justify-content:flex-end}#seopress_cpt #seopress_titles_desc_counters,#seopress_cpt #seopress_titles_title_counters,#seopress_pro_cpt #seopress_rich_snippets_articles_counters,#seopress_pro_cpt #seopress_rich_snippets_courses_counters{display:inline;margin-right:5px}#seopress_cpt #seopress_titles_desc_counters_val,#seopress_cpt #seopress_titles_title_counters_val,#seopress_pro_cpt #seopress_rich_snippets_articles_counters_val,#seopress_pro_cpt #seopress_rich_snippets_courses_counters_val{display:inline;font-weight:700}#term-seopress #seopress_cpt{width:95%}.fixed .column-seopress_w3c,.fixed .column-seopress_words{width:5%}.fixed .column-seopress_nofollow,.fixed .column-seopress_noindex{width:10%}#seopress_content_analysis .ui-tabs,#seopress_cpt .ui-tabs{position:relative;padding:0;border:none;font-family:inherit;font-size:inherit;display:inline-block;width:100%}#seopress_content_analysis .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs .ui-tabs-nav li{list-style:none;display:inline-block;position:relative;top:2px;padding:0 5px;white-space:nowrap;margin:0;border:none;background:0 0}#seopress_content_analysis .ui-tabs .ui-tabs-nav li a,#seopress_cpt .ui-tabs .ui-tabs-nav li a{display:inline-block;padding:5px 10px}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li a,#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li a{display:block}#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-tabs-active,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:2px;padding-bottom:1px}#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-tabs-loading a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-loading a{color:#191e23;font-weight:700}#seopress_content_analysis .ui-tabs .ui-tabs-nav li a,#seopress_content_analysis .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a,#seopress_cpt .ui-tabs .ui-tabs-nav li a,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#191e23;text-decoration:none;height:40px;line-height:40px}#seopress_cpt .ui-tabs-vertical{width:55em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress_cpt .ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress_content_analysis .ui-tabs .ui-tabs-nav li a .dashicons,#seopress_cpt .ui-tabs .ui-tabs-nav li a .dashicons{margin-right:2px}#tab-panel-seopress_titles_help_tab li span{font-weight:700;margin-right:10px}#seopress_content_analysis .ui-tabs .dashicons-no-alt,#seopress_content_analysis .ui-tabs .dashicons-yes,#seopress_pro_cpt .dashicons-no-alt,#seopress_pro_cpt .dashicons-yes{color:#fff;background:#12bd10;border-radius:50px;margin-right:10px}#seopress_content_analysis .ui-tabs .dashicons-no-alt,#seopress_pro_cpt .dashicons-no-alt{background:#e25950}body.seopress-styles{background:#f8fafd}#seopress-content a{color:#3297d3}#seopress-content a:hover{color:#106598}#seopress-admin-tabs.ui-tabs{position:relative;padding:.2em;border:none;font-family:inherit;font-size:inherit}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:-1px .2em 0 0;padding:0;white-space:nowrap;border:none;background:0 0}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a{float:left;padding:.38em 1em .75rem;outline:0;border-bottom:2px solid #fff}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text;border-bottom:2px solid #23282d;color:#23282d}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a,#seopress-admin-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#0073aa;text-decoration:none}#seopress-admin-tabs.ui-tabs-vertical{width:55em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}.seopress-styles .seopress-option{margin:10px auto 0;max-width:90%;padding:1rem;background:#fff;box-shadow:0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.1);border-radius:4px}.seopress-styles .seopress-option h1{font-size:16px;font-weight:700;color:#3297d3;text-transform:uppercase;position:-webkit-sticky;position:sticky;top:32px;background:#fff;z-index:100;padding:10px 0}.seopress-styles .seopress-option h1 .dashicons,.seopress-styles .seopress-option h2 .dashicons{margin:0 10px;font-size:40px;width:40px;height:40px;vertical-align:middle}.seopress-styles .seopress-option .link-archive{font-size:14px}.seopress-styles .seopress-option .link-archive .dashicons{font-size:18px;width:20px;height:20px;margin:inherit}.seopress-styles .seopress-option h1>.dashicons{font-size:30px;width:30px;height:30px;background:#c4f0ff;border-radius:50%;padding:10px;box-shadow:0 4px 6px rgba(50,50,93,.1),0 1px 3px rgba(0,0,0,.1);margin-left:20px}.seopress-styles .seopress-option .metabox-holder h2 .dashicons{font-size:16px}.seopress-option h1 .feature-state .dashicons{font-size:16px;width:16px;height:16px;vertical-align:middle;margin:0 10px 0 0}.seopress-styles .wrap{margin:0;position:relative}.seopress-styles .seopress-option .submit{background:#fff;text-align:center;border-top:1px solid #f1f1f1;padding-top:20px;padding-bottom:20px;margin:0}.seopress-styles .seopress-option #seopress-aio-migrate,.seopress-styles .seopress-option #seopress-seo-framework-migrate,.seopress-styles .seopress-option #seopress-yoast-migrate,.seopress-styles .seopress-option #submit{color:#fff;text-decoration:none;border:none;border-radius:4px;padding-right:20px;padding-left:20px;line-height:34px;text-transform:uppercase;min-height:34px;transition:all .3s linear;text-shadow:none;box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.1);margin-right:15px;background:RGB(106,124,148);position:relative;height:auto;z-index:10}.seopress-styles .seopress-option #seopress-aio-migrate:hover,.seopress-styles .seopress-option #seopress-seo-framework-migrate:hover,.seopress-styles .seopress-option #seopress-yoast-migrate:hover,.seopress-styles .seopress-option #submit:hover{text-decoration:none;color:#fff;background:#232323}.seopress-styles #wpcontent{padding-left:0;background:#f8fafd}.seopress-styles pre{color:#42b72a;background:#f5f6f7;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;padding:7px;display:inline-block}.seopress-styles #seopress-navbar{padding:10px .5rem;height:56px;margin:0 auto;width:53rem;box-sizing:border-box;position:relative}#seopress-header{margin:0 auto;position:relative;width:100%}#seopress-header #seopress-admin h1{line-height:40px;margin:0;display:inline-block;height:40px;width:40px;background-size:100%;background-repeat:no-repeat}#seopress-header #seopress-admin h1::before{font-size:14px;line-height:40px;position:absolute;border-radius:6px;font-weight:400;color:#fff;width:40px;height:40px;text-align:center;background:#3a4afb;background:-moz-linear-gradient(45deg,rgba(58,74,251,1) 0,rgba(71,190,165,1) 100%);background:-webkit-linear-gradient(45deg,rgba(58,74,251,1) 0,rgba(71,190,165,1) 100%);background:linear-gradient(45deg,rgba(58,74,251,1) 0,rgba(71,190,165,1) 100%)}#seopress-header #seopress-admin h1:hover{cursor:pointer}#seopress-header #seopress-admin h1>a{text-decoration:none;color:inherit}#seopress-header #seopress-admin .seopress-quick-access{background:#fff;box-shadow:0 50px 100px rgba(50,50,93,.1),0 15px 35px rgba(50,50,93,.2),0 5px 15px rgba(0,0,0,.1);border-radius:4px;overflow:hidden;position:relative;font-size:17px;line-height:40px;white-space:nowrap;transform:rotate3d(1,1,0,-15deg);transform-origin:100% 0;opacity:0;will-change:transform,opacity;transition-property:transform,opacity;transition-duration:.25s;z-index:300;padding:0;display:block;width:53rem;top:0;visibility:hidden;cursor:auto}#seopress-header #seopress-admin h1:hover .seopress-quick-access{transform:none;opacity:1;pointer-events:auto;visibility:visible}#seopress-header #seopress-admin .seopress-quick-access>ul{padding:20px;margin:0;float:left;width:100%;box-sizing:border-box}#seopress-header #seopress-admin h1 .seopress-quick-access li{text-decoration:none;display:inline-block;width:50%;margin:0;float:left;padding:10px 0}#seopress-header #seopress-admin h1 .seopress-quick-access li .dashicons{vertical-align:middle;background:#b7e1f3;border-radius:50%;padding:5px;margin-right:15px}#seopress-header #seopress-admin h1 .seopress-quick-access li a{text-decoration:none;font-size:15px;line-height:30px;text-transform:uppercase;display:block;width:100%;transition:all .3s linear;color:#3297d3}#seopress-header #seopress-admin h1 .seopress-quick-access li a:hover{color:#647a88}#seopress-header #seopress-admin h1 .seopress-info-version{position:relative;left:50px;top:0;font-size:14px;width:100px;display:block}#seopress-header #seopress-admin .wpc-info-version{font-size:14px;left:310px;position:absolute;text-indent:0;top:85px}#seopress-header #seopress-notice{float:right;line-height:40px}#seopress-header #seopress-notice p{font-size:16px}#seopress-header #seopress-notice .dashicons{color:#444;text-decoration:none;line-height:40px}#seopress-header #seopress-notice div.small{font-size:13px;display:inline}#seopress-footer-credits{font-style:italic}#seopress-footer-credits .wporg-ratings{display:inline}#seopress-footer-credits .wporg-ratings a{text-decoration:none}.seopress-option .seopress-settings{float:left;max-width:750px;width:100%}.seopress-option #seopress-edd-license-btn,.seopress-option #seopress-refresh{float:left}.wp-admin-ui_page_seopress-import-export .postbox{margin-right:20px}.seopress-option #side-sortables .accordion-section-content{padding:0}.seopress-option .seopress-settings label{margin:0 0 0 10px}.wrap-seopress-tab-content{position:relative;display:block;width:100%;height:100%;max-width:53rem;margin:20px auto 0}#seopress-admin-tabs .seopress-tab{padding:1.5rem;visibility:hidden;overflow:hidden;opacity:0;transition:all .2s ease;transform:translateX(-15px);position:absolute;top:0}#seopress-admin-tabs .seopress-tab.active{visibility:visible;overflow:inherit;opacity:1;transform:translateX(0);display:inherit;position:relative}#seopress-tabs .seopress-tab{padding:1.5rem;display:none}#seopress-tabs .seopress-tab.active{display:inline-block}.seopress-option input[type=password],.seopress-option input[type=text],.seopress-option textarea{min-width:485px}#seopress_htaccess_file{width:100%}.seopress-option textarea{min-height:100px}.seopress-option #side-sortables .highlight{border:1px dashed #ccc;display:block;width:382px;height:40px;background:0 0}.seopress-option #side-sortables .accordion-section{margin-bottom:9px;width:382px}.seopress-option #side-sortables .accordion-section h3{cursor:move;border:1px solid #e5e5e5;background:#fafafa}.seopress-option #side-sortables .accordion-section .inside{padding:10px 10px 24px;border-width:0 1px 1px;border-style:solid;box-shadow:0 1px 1px rgba(0,0,0,.04);border-color:#e5e5e5;display:inline-block;width:calc(100% - 22px);height:100%}.seopress-option #side-sortables .accordion-section .inside ul{padding-left:10px;margin-bottom:0;padding-top:2px;padding-bottom:2px}.seopress-option #side-sortables .accordion-section .inside ul li{border-left:2px solid #ccc;padding-left:10px;margin-bottom:10px}.seopress-option #side-sortables .accordion-section .inside ul li:first-child{border-bottom:1px dotted #e5e5e5;border-left:0;padding-bottom:10px;font-weight:700;margin-left:-15px;margin-bottom:10px}.seopress-notice #message{margin:5px 10px 2px 0}#seopress-notice a{position:relative;text-decoration:none}#seopress-notice a .tooltip{white-space:pre;z-index:200;padding:2px 5px;font-weight:500;font-size:12px;color:#aab7c4;background:#fff;box-shadow:0 1px 2px 0 rgba(49,49,93,.1),0 0 1px 0 rgba(0,0,0,.1);border-radius:2px;position:absolute;opacity:0;top:30px;transition:opacity .2s ease;visibility:hidden;line-height:20px;left:-100%;overflow:hidden}#seopress-notice a:hover .tooltip{opacity:1;visibility:visible}.seopress-page-list{margin:1.5rem 0px}.seopress-option .dashicons,.seopress-page-list .dashicons{vertical-align:middle;margin-right:5px}#seopress-admin-tabs .ui-tabs-nav,#seopress-notifications-center,.seopress-page-list .seopress-feature,.seopress-useful-tools{background:linear-gradient(172deg,#f5f7fa,#f5f7fa 200px,#fff 0,#fff);margin:0 auto 20px;box-shadow:0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.2);max-width:50rem;padding:1.5rem;width:100%;border-radius:4px}#seopress-notifications-center,.seopress-useful-tools{background:linear-gradient(172deg,#f5f7fa,#f5f7fa 400px,#fff 0,#fff)}.seopress-page-list .seopress-feature{padding:0 1.5rem;position:relative;overflow:hidden;transition-duration:.15s}.seopress-page-list .seopress-feature p{color:#6b7c93;font-size:14px;margin-bottom:30px}#seopress-notifications-center{margin-top:0}#seopress-admin-tabs .ui-tabs-nav{display:flex;padding-top:1rem;padding-bottom:0}.seopress-page-list .seopress-feature .img-tool{height:100px;width:100px;background:#c4f0ff;position:absolute;border-radius:50%;box-shadow:0 4px 6px rgba(50,50,93,.1),0 1px 3px rgba(0,0,0,.1);top:calc(50% - 50px);left:20px}.seopress-page-list .seopress-feature .img-tool .dashicons{color:#217ab7;font-size:60px;text-align:left;vertical-align:middle;width:100%;height:100%;position:absolute;top:calc(50% - 30px);left:calc(50% - 30px);margin:0}.seopress-page-list .seopress-feature .inner{margin:0;display:block;padding:2rem 0 2rem 120px}.seopress-page-list .seopress-feature h3{margin:0;font-size:16px;font-weight:700;color:#3297d3;text-transform:uppercase}.seopress-page-list .seopress-feature h3 .dashicons{font-size:16px;margin-left:5px;vertical-align:middle}#seopress-content .seopress-page-list .seopress-feature a,#seopress-notifications-center .seopress-alert .button-primary,.seopress-option .seopress-feature a,.seopress-useful-tools .widget .button-primary{color:#fff;text-decoration:none;border:none;border-radius:4px;padding-right:20px;padding-left:20px;line-height:34px;text-transform:uppercase;min-height:34px;transition:all .3s linear;text-shadow:none;box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.1);margin-right:15px;background:#6a7c94;position:relative;height:auto}#seopress-content .seopress-page-list .seopress-feature a.button-secondary{padding-left:30px}#seopress-content .seopress-page-list .seopress-feature a.button-secondary::before,#seopress-notifications-center .seopress-alert .button-primary::after{content:"\f111";font-family:Dashicons;position:absolute;left:10px;top:1px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:16px}#seopress-content .seopress-page-list .seopress-feature a.view-redirects,#seopress-notifications-center .seopress-alert .button-primary,.seopress-option .button{background:#fff;border:none;color:#6b7c93;font-weight:500;transition:all .3s linear;text-shadow:none;text-transform:uppercase;padding-right:20px;padding-left:20px;line-height:34px;min-height:34px;margin-bottom:10px;border-radius:4px;box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.1);vertical-align:baseline}.seopress-option .button .dashicons{font-size:16px}#seopress-content .seopress-page-list .seopress-feature a.view-redirects{padding-left:35px}#seopress-notifications-center .seopress-alert .button-primary::after{content:"\f344";left:inherit;right:10px}#seopress-content .seopress-page-list .seopress-feature a.view-redirects::before{content:"\f177"}#seopress-content .seopress-page-list .seopress-feature a:hover,#seopress-notifications-center .seopress-alert .button-primary:hover,.seopress-option .button:hover,.seopress-option .seopress-feature a:hover,.seopress-useful-tools .widget .button-primary:hover{text-decoration:none;color:#fff;background:#232323}#seopress-content .seopress-page-list .seopress-feature .seopress-doc:focus,#seopress-content .seopress-page-list .seopress-feature a:focus,#seopress-content .seopress-page-list .seopress-feature a:focus.button-secondary,#seopress-content a:focus,#seopress-notifications-center .seopress-alert .button-primary:focus,.seopress-option #seopress-tabs .seopress-doc:focus,.seopress-option .seopress-feature a:focus,.seopress-styles .seopress-option #seopress-aio-migrate:focus,.seopress-styles .seopress-option #seopress-yoast-migrate:focus,.seopress-styles .seopress-option #submit:focus,.seopress-useful-tools .widget .button-primary:focus{box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db;background:#008ec2;border-color:#006799;color:#fff}#seopress-admin-tabs .nav-tab-wrapper a.nav-tab-active:focus{color:inherit}#seopress-notifications-center .seopress-alert .button-primary{float:right;margin:5px 0;padding-right:30px}#seopress-notifications-center h2,.seopress-useful-tools h2{margin:5px 0 15px 5px;display:inline-block;width:100%}#seopress-notifications-center .dashicons,.seopress-useful-tools .dashicons{margin-right:10px}#seopress-notifications-center .seopress-alert{padding:0;display:inline-block;margin:0 10px 10px 5px;border-bottom:1px solid #e6ebf1;width:calc(100% - 30px);position:relative;transition:all 150ms ease}#seopress-notifications-center .seopress-alert:hover{cursor:default}#seopress-notifications-center .seopress-alert p{display:inline-block}#seopress-notifications-center .seopress-alert .impact{padding:4px 5px;color:#fff;text-transform:uppercase;font-weight:700;font-size:10px;border-radius:4px}#seopress-notifications-center .seopress-alert .impact.low{background:#ffde24;color:#6b6543}#seopress-notifications-center .seopress-alert .impact.medium{background:#e39f48}#seopress-notifications-center .seopress-alert .impact.high{background:#e25950}#seopress-notifications-center .seopress-alert .impact.high.info{background:#0085ba}#seopress-notifications-center .seopress-alert .dashicons{color:#ffc82c}#seopress-notifications-center .dashicons.remove-notice{position:absolute;right:-55px;color:#6b7c93;font-size:30px;height:30px;width:30px;top:2px;padding:5px;transition:all .3s linear}#seopress-notifications-center .dashicons.remove-notice:hover{background:#e25950;color:#fff;cursor:pointer;border-radius:4px}#seopress-content .seopress-page-list .seopress-feature .seopress-doc,.seopress-option #seopress-tabs .seopress-doc{background:0 0;padding:0;width:inherit;height:inherit;text-decoration:none;color:inherit;box-shadow:none;position:absolute;right:0}#seopress-content .seopress-page-list .seopress-feature .seopress-doc:hover,.seopress-option #seopress-tabs .seopress-doc:hover{color:#747474;background:0 0}.seopress-option .seopress-table{background:#fff;border:1px solid #ccc}.seopress-option .seopress-table th{padding:15px 10px;vertical-align:middle}.wp-admin-ui_page_seopress-roles .seopress-option .seopress-table th{min-width:200px}.seopress-option .seopress-table .seopress-settings-section{background:#f1f1f1}.seopress-option .seopress-table .seopress-table-head .seopress-feature{border-bottom:1px solid #ccc;font-weight:700;background:#f1f1f1}#seopress-content .feature-state,.seopress-option .feature-state{font-style:italic;font-size:12px;display:inline-block;background:rgba(0,140,135,.1);padding:5px 12px;border-radius:25px;color:#444;font-weight:400;text-transform:none;-moz-osx-font-smoothing:initial;-webkit-font-smoothing:initial}#seopress_cpt .tag-title,.seopress-button,.seopress-option .tag-title{cursor:pointer;font-weight:500;border-radius:4px;transition:all .3s linear}#seopress-content .feature-state-on,#seopress-content .feature-state.feature-state-on,.seopress-option .feature-state-on,.seopress-option .feature-state.feature-state-on{display:inline}#seopress-content .feature-state-off,.seopress-option .feature-state-off{display:none}.seopress-option .postbox .inside li{list-style:square inside;padding-left:5px}#tab_seopress_page_speed .inside li{list-style:none;padding-left:0;word-break:break-word}.seopress-option .log{margin:0;text-transform:uppercase;display:inline-block;vertical-align:middle;padding:5px;color:rgba(19,191,17,1);font-style:italic}.seopress-option input[type=text].seopress-admin-menu-input{min-width:inherit;width:100%}.seopress_page_seopress-import-export .postbox{width:calc(100% - 20px)}#seopress_cpt .wrap-tags,.seopress-option .wrap-tags{position:relative;display:inline-block;width:100%;margin-bottom:10px}#seopress_cpt .tag-title,.seopress-option .tag-title{padding:4px 8px;position:relative;top:5px;left:0;font-size:11px;float:left;margin-right:5px;user-select:none;margin-bottom:5px;background:#fff;color:#6b7c93;box-shadow:0 0 0 .5px rgba(50,50,93,.17),0 2px 5px 0 rgba(50,50,93,.12),0 3px 9px 0 rgba(50,50,93,.08),0 1px 1.5px 0 rgba(0,0,0,.08),0 1px 2px 0 rgba(0,0,0,.08)}#seopress_cpt .tag-title:active,#seopress_cpt .tag-title:focus,#seopress_cpt .tag-title:hover,.seopress-option .tag-title:active,.seopress-option .tag-title:focus,.seopress-option .tag-title:hover{background:#232323;color:#fff;user-select:none}#seopress_cpt .tag-title .dashicons,.seopress-option .tag-title .dashicons{padding:0;height:16px;width:16px;font-size:16px;margin-right:5px;vertical-align:middle}.seopress-button{text-transform:uppercase;background:#fff;border-color:#c8d7e1;border-style:solid;border-width:1px 1px 2px;color:#2e4453;display:inline-block;margin:0;outline:0;overflow:hidden;text-overflow:ellipsis;text-decoration:none;vertical-align:top;box-sizing:border-box;font-size:14px;line-height:21px;padding:7px 14px 9px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.seopress-button:hover{border-color:#a8bece;color:#00a0d2}.seopress-button .dashicons{vertical-align:middle}#seopress-content #tab_seopress_seo_tools.seopress-useful-tools .widget{border-right:1px solid #e6ebf1;margin:0;padding:0 20px;width:calc(50% - 2px);box-sizing:border-box;display:inline-block;vertical-align:top}#seopress-content #tab_seopress_seo_tools.seopress-useful-tools .widget:first-child{width:100%;display:block;clear:both;border-right:none;border-bottom:1px solid #e6ebf1;padding-bottom:20px;margin-bottom:20px}#seopress-content #tab_seopress_seo_tools.seopress-useful-tools .widget:last-child{border-right:none}#seopress-content .seopress-useful-tools .widget-reverse ul{background:#fff}#seopress-content .seopress-useful-tools .widget-reverse li{padding:10px;margin:0;border-bottom:1px solid #e6ebf1}#seopress-content .seopress-useful-tools .widget-reverse li:hover{background:#f5f7fa}#seopress-content .seopress-useful-tools .widget-title{text-transform:uppercase;margin:0 0 10px;font-size:13px;padding:10px 0;color:#24b47e}#seopress-content .seopress-reverse label,#seopress-content .seopress-useful-tools .widget-whois ul li span{font-weight:700}#seopress-content #seopress-reverse-url{width:100%;margin:10px 0}#seopress-content .widget-reverse p{margin:0}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_url{width:35%}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_anchor_text{width:20%}.seopress-styles #screen-meta{margin:0;position:relative;background-color:#fff;border-bottom:0 solid #f2f2f2;border-top:none;-webkit-box-shadow:0 0 0 1px rgba(136,152,170,.1),0 15px 35px 0 rgba(49,49,93,.1),0 5px 15px 0 rgba(0,0,0,.08);box-shadow:0 0 0 1px rgba(136,152,170,.1),0 15px 35px 0 rgba(49,49,93,.1),0 5px 15px 0 rgba(0,0,0,.08);top:0}.seopress-styles #contextual-help-link-wrap,.seopress-styles #screen-options-link-wrap{float:right;height:28px;margin:0 0 0 6px;border:1px solid #f2f2f2;border-top:none;background:#fff;-webkit-box-shadow:0 0 0 1px rgba(136,152,170,.1),0 15px 35px 0 rgba(49,49,93,.1),0 5px 15px 0 rgba(0,0,0,.08);box-shadow:0 0 0 1px rgba(136,152,170,.1),0 15px 35px 0 rgba(49,49,93,.1),0 5px 15px 0 rgba(0,0,0,.08)}.seopress-styles #screen-meta-links .show-settings{box-shadow:none}.seopress-styles #screen-meta-links .screen-meta-toggle{position:relative;top:0;z-index:2000}.seopress-styles #contextual-help-back{background:#f8fafd}.seopress-styles .contextual-help-tabs .active{border-left:2px solid #3297d3;background:#f8fafd}#seopress-content input.toggle,.seopress-option input.toggle{max-height:0;max-width:0;opacity:0}#seopress-content input.toggle+label,.seopress-option input.toggle+label{display:inline-block;position:relative;box-shadow:inset 0 0 0 1px #d5d5d5;text-indent:-5000px;height:30px;width:50px;border-radius:15px}.wrap-toggle-checkboxes input.toggle+label{float:left;margin-right:10px}#seopress-content input.toggle+label:before,.seopress-option input.toggle+label:before{content:"";position:absolute;display:block;height:30px;width:30px;top:0;left:0;border-radius:15px;background:rgba(19,191,17,0);-moz-transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;transition:.25s ease-in-out}#seopress-content input.toggle+label:after,.seopress-option input.toggle+label:after{content:"";position:absolute;display:block;height:30px;width:30px;top:0;left:0;border-radius:15px;background:#fff;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.2);-moz-transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;transition:.25s ease-in-out}#seopress-content input.toggle[data-toggle="1"]+label:before,.seopress-option input.toggle[data-toggle="1"]+label:before{width:50px;background:rgba(19,191,17,1)}#seopress-content input.toggle[data-toggle="1"]+label:after,.seopress-option input.toggle[data-toggle="1"]+label:after{left:20px;box-shadow:inset 0 0 0 1px rgba(19,191,17,1),0 2px 4px rgba(0,0,0,.2)}#seopress-content .seopress-page-list{position:relative}#seopress-notice-save{position:fixed;color:#fff;padding:15px 40px;font-size:.9rem;text-transform:uppercase;text-align:center;border-radius:0;background:rgba(74,184,102,.9);bottom:0;right:0;z-index:500;width:100%;font-weight:700}.seopress_page_seopress-pro-page #wpcontent{background:#f4f7fa}.seopress-option .wrap div.nav-tab-wrapper{border-bottom:1px solid RGB(238,238,238);margin:0 0 0 -16px;padding:0 10px;line-height:inherit;background:#fff;position:-webkit-sticky;position:sticky;top:102px;width:calc(100% + 12px);z-index:95;font-weight:400}#seopress-admin-tabs.wrap div.nav-tab-wrapper{margin:20px auto 0;max-width:53rem;width:100%;border-bottom:0;padding:0;line-height:inherit;position:-webkit-sticky;position:sticky;background:#f8fafd;z-index:100;top:31px;font-weight:400}#seopress-admin-tabs #tab_seopress_notifications.seopress-tab{background:0 0;padding:0}#seopress-admin-tabs .nav-tab,.seopress-option .nav-tab{border:0 solid #ccc;background:0 0;opacity:.5;padding:8px 8px;transition:opacity .3s linear;color:#191e23;margin:0;float:none;display:inline-block}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:hover,.seopress-option .about-wrap h2 .nav-tab-active,.seopress-option .nav-tab-active,.seopress-option .nav-tab-active:hover{background-color:#fff}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus,.nav-tab-active:focus,.seopress-option .nav-tab-active,.seopress-option .nav-tab-active:focus:active,.seopress-option .nav-tab-active:hover,.seopress-option .nav-tab:focus{background:0 0;opacity:1;outline:0;font-weight:600;position:relative}.seopress-option .nav-tab-active::after{border-bottom:2px solid #0085ba;content:'';position:absolute;width:100%;bottom:0;left:0;display:block}#seopress-admin-tabs .nav-tab:hover,.seopress-option .nav-tab:hover{opacity:1}#seopress-admin-tabs .nav-tab:focus,.seopress-option .nav-tab:focus{outline:0;box-shadow:none}#section-export-redirects,#section-import-redirects{margin-top:-120px;padding-top:120px}.seopress-option .section-tool{border:none;box-shadow:none;background:0 0;position:relative}.seopress-option .section-tool::after{content:'';background:#dedede;height:1px;width:100%;display:block}#tab_seopress_social_accounts .help-social{position:relative;right:0;width:30%}#tab_seopress_social_accounts .form-table{float:left;width:70%}
|
1 |
+
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before,#seopress-header #seopress-admin h1::before{content:"\e800";font-family:seopress!important;font-weight:700;font-size:12px;line-height:20px}#seopress-header #seopress-admin h1::before,.seopress-page-list .seopress-feature h3,.seopress-styles .seopress-option h1{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}@font-face{font-family:seopress;src:url(../fonts/seopress.eot?81521271);src:url(../fonts/seopress.eot?81521271#iefix) format('embedded-opentype'),url(../fonts/seopress.woff?81521271) format('woff2'),url(../fonts/seopress.woff?81521271) format('woff'),url(../fonts/seopress.ttf?81521271) format('truetype'),url(../fonts/seopress.svg?81521271#seopress) format('svg');font-weight:400;font-style:normal}[class*=" icon-seopress"],[class^=icon-seopress-]{font-family:seopress!important;font-size:14px!important;line-height:24px!important}.icon-seopress-seopress:before{content:"\e800"}.sp-tooltip{position:relative;margin-left:5px;display:inline-block;cursor:help}.sp-tooltip .dashicons{color:#666}.sp-tooltip .sp-tooltiptext{visibility:hidden;position:absolute;z-index:999999999;color:#fff;font-size:.8em;background:#333;text-align:center;width:240px;right:0;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2);top:25px}.sp-tooltip:hover .sp-tooltiptext{visibility:visible}#seopress_content_analysis .wrap-seopress-analysis{display:inline-block;width:100%}#seopress_content_analysis .col-left{width:calc(50% - 30px);float:left;margin-right:30px}#seopress_content_analysis .col-right{float:right;width:50%}#seopress_content_analysis #seopress_suggestions{display:inline-block;width:100%;margin:0;height:auto;padding:20px 0}#seopress_content_analysis #seopress_suggestions li{list-style:none;margin:5px;display:inline-block}#seopress_launch_analysis{float:left}#seopress_analysis_results_state{background:rgba(74,184,102,.75);color:#fff;padding:5px 25px 5px 20px;border-radius:100px;font-style:italic;position:relative;width:auto;display:inline-block;margin:0 0 0 20px;clear:both}#seopress_content_analysis h3{border-bottom:1px solid #ddd;padding-bottom:10px}#seopress_content_analysis .wrap-analysis-img ul{display:flex;flex-wrap:wrap}#seopress_content_analysis .wrap-analysis-img ul li{padding:0;text-align:left;cursor:default}#seopress_content_analysis .wrap-analysis-img h4{border-bottom:1px solid #ddd;padding-bottom:10px}#seopress_content_analysis .wrap-analysis-img ul li img{max-width:150px;max-height:150px;object-fit:cover;cursor:default}#seopress_cpt .notice{padding:10px 14px}#seopress-analysis-tabs .dashicons,#seopress_cpt .dashicons{vertical-align:middle}#seopress_cpt .inside{margin:0;padding:0}#seopress_content_analysis .ui-tabs .ui-tabs-nav,#seopress_cpt .ui-tabs .ui-tabs-nav{display:inline-block;min-height:26px;position:relative;width:100%;z-index:10;margin:0;border-radius:0;padding:0;background:#f3f4f5;border:none}#seopress_content_analysis .ui-tabs .ui-tabs-nav{width:calc(100% + 24px);margin:0 0 0 -12px;position:-webkit-sticky;position:sticky;top:0}#seopress_content_analysis .ui-tabs .ui-tabs-nav{margin-top:15px}#seopress_content_analysis .ui-helper-clearfix:after,#seopress_cpt .ui-helper-clearfix:after{content:none}.seopress_page_seopress-titles #seopress-tabs .form-table td,.seopress_page_seopress-titles #seopress_content_analysis .form-table td{padding:0}#seopress_content_analysis .ui-tabs .ui-tabs-panel,#seopress_cpt .ui-tabs .ui-tabs-panel{background:#fff;border-radius:0;display:inline-block;padding:1em 1.4em;width:100%;box-sizing:border-box}#seopress_content_analysis .ui-tabs .ui-tabs-panel .dashicons-info,#seopress_cpt .ui-tabs .ui-tabs-panel .dashicons-info,#seopress_pro_cpt .dashicons-info{font-size:16px;vertical-align:middle;height:16px;width:16px}#seopress_content_analysis .ui-tabs .ui-tabs-nav li,#seopress_content_analysis .ui-tabs-anchor,#seopress_cpt .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs-anchor{cursor:pointer!important}#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-tabs-active,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{position:relative;z-index:60;cursor:pointer;border-radius:0;border-bottom:3px solid #0085ba}#seopress_content_analysis label,#seopress_cpt #tabs-1 label,#seopress_cpt #tabs-2 label[for=seopress_robots_breadcrumbs_meta],#seopress_cpt #tabs-2 label[for=seopress_robots_canonical_meta],#seopress_cpt #tabs-2 label[for=seopress_robots_primary_cat_meta],#seopress_cpt #tabs-3 label,#seopress_cpt #tabs-4 label,#seopress_cpt #tabs-5 label,#seopress_cpt #tabs-6 label,#seopress_cpt .subsection-title,#seopress_pro_cpt label{display:block;margin:20px 0 5px;font-weight:700}#seopress_cpt .wp-color-result{margin:0}#seopress_content_analysis input[type=text],#seopress_cpt #tabs-1 input,#seopress_cpt #tabs-2 input[type=text],#seopress_cpt #tabs-3 input[type=text],#seopress_cpt #tabs-3 textarea,#seopress_cpt #tabs-4 input[type=text],#seopress_cpt #tabs-5 input[type=text],#seopress_cpt #tabs-6 input[type=text],#seopress_cpt #tabs-6 textarea{width:90%;display:inline-block}#seopress_cpt #tabs-1 input{width:100%}#seopress_cpt #tabs-6 input[type=number]{width:30%;min-width:200px}#seopress_cpt #tabs-6 #wrap-videos .video:first-child .remove-video{display:none}#seopress_cpt select{width:300px}#seopress_cpt #tabs-4 select{width:250px;display:inline}#seopress_cpt #tabs-4 #seopress_redirections_value_meta{width:calc(100% - 258px);float:right}#seopress_cpt #tabs-6{padding:0}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content,#seopress_cpt #tabs-6>p{padding:0 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content{padding:0 1.4em 1em}#seopress_cpt #tabs-6 #wrap-videos .video{border-top:1px solid #eee}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-title{border-left:none;border-right:none;font-size:1em;padding:1em 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-content,#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-title{border-bottom:1px solid #eee}#seopress_cpt #tabs-6 #wrap-videos .video .inside{padding:0}#seopress_cpt #tabs-4 #seopress_redirections_enabled,#seopress_cpt #tabs-5 #seopress_news_disabled,#seopress_cpt #tabs-5 #seopress_news_standout,#seopress_cpt #tabs-6 #seopress_video_disabled,#seopress_cpt #tabs-6 .family-friendly label,#seopress_cpt #tabs-6 .internal_video label{font-weight:400}#seopress_cpt #tabs-6 #wrap-videos .video:nth-child(odd){background:#fdfdfd}#seopress_content_analysis .advise,#seopress_cpt .advise,#seopress_pro_cpt .advise,.seopress-option .advise{margin:5px;display:block;color:red;font-style:italic}#seopress_cpt #tabs-6 #wrap-videos .video .advise{color:#555}#seopress_content_analysis .mandatory,#seopress_cpt .mandatory{color:#c00}#seopress_cpt .box-left{float:left;width:49%;margin-right:1%}#seopress_cpt .box-right{float:left;width:49%;margin-left:1%}#seopress_cpt .google-snippet-preview{font-family:arial,sans-serif;word-break:break-all}#seopress_cpt .google-snippet-preview>p{word-break:normal}#seopress_cpt .google-snippet-preview .snippet-title,#seopress_cpt .google-snippet-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview .snippet-title-default{color:#1a0dab;font-size:18px;font-weight:400;line-height:21.6px}#seopress_cpt .google-snippet-preview .snippet-permalink{color:#006621;font-size:14px;font-style:normal;font-weight:400;line-height:16px}#seopress_cpt .google-snippet-preview .snippet-description,#seopress_cpt .google-snippet-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview .snippet-description-default{color:#545454;font-size:13px;font-weight:400;line-height:18.2px;display:inline}#seopress_cpt .google-snippet-preview .snippet-date{color:grey;display:inline}#seopress_cpt .wrap-seopress-counters,#seopress_pro_cpt .wrap-seopress-counters{text-align:right;background:#eee;padding:2px 5px;display:flex;box-shadow:0 1px 1px rgba(0,0,0,.2);font-size:12px;justify-content:flex-end}#seopress_cpt #seopress_titles_desc_counters,#seopress_cpt #seopress_titles_title_counters,#seopress_pro_cpt #seopress_rich_snippets_articles_counters,#seopress_pro_cpt #seopress_rich_snippets_courses_counters{display:inline;margin-right:5px}#seopress_cpt #seopress_titles_desc_counters_val,#seopress_cpt #seopress_titles_title_counters_val,#seopress_pro_cpt #seopress_rich_snippets_articles_counters_val,#seopress_pro_cpt #seopress_rich_snippets_courses_counters_val{display:inline;font-weight:700}#term-seopress #seopress_cpt{width:95%}.fixed .column-seopress_w3c,.fixed .column-seopress_words{width:5%}.fixed .column-seopress_nofollow,.fixed .column-seopress_noindex{width:10%}#seopress_content_analysis .ui-tabs,#seopress_cpt .ui-tabs{position:relative;padding:0;border:none;font-family:inherit;font-size:inherit;display:inline-block;width:100%}#seopress_content_analysis .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs .ui-tabs-nav li{list-style:none;display:inline-block;position:relative;top:2px;padding:0 5px;white-space:nowrap;margin:0;border:none;background:0 0}#seopress_content_analysis .ui-tabs .ui-tabs-nav li a,#seopress_cpt .ui-tabs .ui-tabs-nav li a{display:inline-block;padding:5px 10px}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li a,#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li a{display:block}#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-tabs-active,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:2px;padding-bottom:1px}#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress_content_analysis .ui-tabs .ui-tabs-nav li.ui-tabs-loading a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-loading a{color:#191e23;font-weight:700}#seopress_content_analysis .ui-tabs .ui-tabs-nav li a,#seopress_content_analysis .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a,#seopress_cpt .ui-tabs .ui-tabs-nav li a,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#191e23;text-decoration:none;height:40px;line-height:40px}#seopress_cpt .ui-tabs-vertical{width:55em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress_cpt .ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress_content_analysis .ui-tabs .ui-tabs-nav li a .dashicons,#seopress_cpt .ui-tabs .ui-tabs-nav li a .dashicons{margin-right:2px}#tab-panel-seopress_titles_help_tab li span{font-weight:700;margin-right:10px}#seopress_content_analysis .ui-tabs .dashicons-no-alt,#seopress_content_analysis .ui-tabs .dashicons-yes,#seopress_pro_cpt .dashicons-no-alt,#seopress_pro_cpt .dashicons-yes{color:#fff;background:#12bd10;border-radius:50px;margin-right:10px}#seopress_content_analysis .ui-tabs .dashicons-no-alt,#seopress_pro_cpt .dashicons-no-alt{background:#e25950}body.seopress-styles{background:#f8fafd}#seopress-content a{color:#3297d3}#seopress-content a:hover{color:#106598}#seopress-admin-tabs.ui-tabs{position:relative;padding:.2em;border:none;font-family:inherit;font-size:inherit}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:-1px .2em 0 0;padding:0;white-space:nowrap;border:none;background:0 0}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a{float:left;padding:.38em 1em .75rem;outline:0;border-bottom:2px solid #fff}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text;border-bottom:2px solid #23282d;color:#23282d}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a,#seopress-admin-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#0073aa;text-decoration:none}#seopress-admin-tabs.ui-tabs-vertical{width:55em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}.seopress-styles .seopress-option{margin:10px auto 0;max-width:90%;padding:1rem;background:#fff;box-shadow:0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.1);border-radius:4px}.seopress-styles .seopress-option h1{font-size:16px;font-weight:700;color:#3297d3;text-transform:uppercase;position:-webkit-sticky;position:sticky;top:32px;background:#fff;z-index:100;padding:10px 0}.seopress-styles .seopress-option h1 .dashicons,.seopress-styles .seopress-option h2 .dashicons{margin:0 10px;font-size:40px;width:40px;height:40px;vertical-align:middle}.seopress-styles .seopress-option .link-archive{font-size:14px}.seopress-styles .seopress-option .link-archive .dashicons{font-size:18px;width:20px;height:20px;margin:inherit}.seopress-styles .seopress-option h1>.dashicons{font-size:30px;width:30px;height:30px;background:#c4f0ff;border-radius:50%;padding:10px;box-shadow:0 4px 6px rgba(50,50,93,.1),0 1px 3px rgba(0,0,0,.1);margin-left:20px}.seopress-styles .seopress-option .metabox-holder h2 .dashicons{font-size:16px}.seopress-option h1 .feature-state .dashicons{font-size:16px;width:16px;height:16px;vertical-align:middle;margin:0 10px 0 0}.seopress-styles .wrap{margin:0;position:relative}.seopress-styles .seopress-option .submit{background:#fff;text-align:center;border-top:1px solid #f1f1f1;padding-top:20px;padding-bottom:20px;margin:0}.seopress-styles .seopress-option #seopress-aio-migrate,.seopress-styles .seopress-option #seopress-seo-framework-migrate,.seopress-styles .seopress-option #seopress-yoast-migrate,.seopress-styles .seopress-option #submit{color:#fff;text-decoration:none;border:none;border-radius:4px;padding-right:20px;padding-left:20px;line-height:34px;text-transform:uppercase;min-height:34px;transition:all .3s linear;text-shadow:none;box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.1);margin-right:15px;background:RGB(106,124,148);position:relative;height:auto;z-index:10}.seopress-styles .seopress-option #seopress-aio-migrate:hover,.seopress-styles .seopress-option #seopress-seo-framework-migrate:hover,.seopress-styles .seopress-option #seopress-yoast-migrate:hover,.seopress-styles .seopress-option #submit:hover{text-decoration:none;color:#fff;background:#232323}.seopress-styles #wpcontent{padding-left:0;background:#f8fafd}.seopress-styles pre{color:#42b72a;background:#f5f6f7;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;padding:7px;display:inline-block}.seopress-styles #seopress-navbar{padding:10px .5rem;height:56px;margin:0 auto;width:53rem;box-sizing:border-box;position:relative}#seopress-header{margin:0 auto;position:relative;width:100%}#seopress-header #seopress-admin h1{line-height:40px;margin:0;display:inline-block;height:40px;width:40px;background-size:100%;background-repeat:no-repeat}#seopress-header #seopress-admin h1::before{font-size:14px;line-height:40px;position:absolute;border-radius:6px;font-weight:400;color:#fff;width:40px;height:40px;text-align:center;background:#3a4afb;background:-moz-linear-gradient(45deg,rgba(58,74,251,1) 0,rgba(71,190,165,1) 100%);background:-webkit-linear-gradient(45deg,rgba(58,74,251,1) 0,rgba(71,190,165,1) 100%);background:linear-gradient(45deg,rgba(58,74,251,1) 0,rgba(71,190,165,1) 100%)}#seopress-header #seopress-admin h1:hover{cursor:pointer}#seopress-header #seopress-admin h1>a{text-decoration:none;color:inherit}#seopress-header #seopress-admin .seopress-quick-access{background:#fff;box-shadow:0 50px 100px rgba(50,50,93,.1),0 15px 35px rgba(50,50,93,.2),0 5px 15px rgba(0,0,0,.1);border-radius:4px;overflow:hidden;position:relative;font-size:17px;line-height:40px;white-space:nowrap;transform:rotate3d(1,1,0,-15deg);transform-origin:100% 0;opacity:0;will-change:transform,opacity;transition-property:transform,opacity;transition-duration:.25s;z-index:300;padding:0;display:block;width:53rem;top:0;visibility:hidden;cursor:auto}#seopress-header #seopress-admin h1:hover .seopress-quick-access{transform:none;opacity:1;pointer-events:auto;visibility:visible}#seopress-header #seopress-admin .seopress-quick-access>ul{padding:20px;margin:0;float:left;width:100%;box-sizing:border-box}#seopress-header #seopress-admin h1 .seopress-quick-access li{text-decoration:none;display:inline-block;width:50%;margin:0;float:left;padding:10px 0}#seopress-header #seopress-admin h1 .seopress-quick-access li .dashicons{vertical-align:middle;background:#b7e1f3;border-radius:50%;padding:5px;margin-right:15px}#seopress-header #seopress-admin h1 .seopress-quick-access li a{text-decoration:none;font-size:15px;line-height:30px;text-transform:uppercase;display:block;width:100%;transition:all .3s linear;color:#3297d3}#seopress-header #seopress-admin h1 .seopress-quick-access li a:hover{color:#647a88}#seopress-header #seopress-admin h1 .seopress-info-version{position:relative;left:50px;top:0;font-size:14px;width:100px;display:block}#seopress-header #seopress-admin .wpc-info-version{font-size:14px;left:310px;position:absolute;text-indent:0;top:85px}#seopress-header #seopress-notice{float:right;line-height:40px}#seopress-header #seopress-notice p{font-size:16px}#seopress-header #seopress-notice .dashicons{color:#444;text-decoration:none;line-height:40px}#seopress-header #seopress-notice div.small{font-size:13px;display:inline}#seopress-footer-credits{font-style:italic}#seopress-footer-credits .wporg-ratings{display:inline}#seopress-footer-credits .wporg-ratings a{text-decoration:none}.seopress-option .seopress-settings{float:left;max-width:750px;width:100%}.seopress-option #seopress-edd-license-btn,.seopress-option #seopress-refresh{float:left}.wp-admin-ui_page_seopress-import-export .postbox{margin-right:20px}.seopress-option #side-sortables .accordion-section-content{padding:0}.seopress-option .seopress-settings label{margin:0 0 0 10px}.wrap-seopress-tab-content{position:relative;display:block;width:100%;height:100%;max-width:53rem;margin:20px auto 0}#seopress-admin-tabs .seopress-tab{padding:1.5rem;visibility:hidden;overflow:hidden;opacity:0;transition:all .2s ease;transform:translateX(-15px);position:absolute;top:0}#seopress-admin-tabs .seopress-tab.active{visibility:visible;overflow:inherit;opacity:1;transform:translateX(0);display:inherit;position:relative}#seopress-tabs .seopress-tab{padding:1.5rem;display:none}#seopress-tabs .seopress-tab.active{display:inline-block}.seopress-option input[type=password],.seopress-option input[type=text],.seopress-option textarea{min-width:485px}#seopress_htaccess_file{width:100%}.seopress-option textarea{min-height:100px}.seopress-option #side-sortables .highlight{border:1px dashed #ccc;display:block;width:382px;height:40px;background:0 0}.seopress-option #side-sortables .accordion-section{margin-bottom:9px;width:382px}.seopress-option #side-sortables .accordion-section h3{cursor:move;border:1px solid #e5e5e5;background:#fafafa}.seopress-option #side-sortables .accordion-section .inside{padding:10px 10px 24px;border-width:0 1px 1px;border-style:solid;box-shadow:0 1px 1px rgba(0,0,0,.04);border-color:#e5e5e5;display:inline-block;width:calc(100% - 22px);height:100%}.seopress-option #side-sortables .accordion-section .inside ul{padding-left:10px;margin-bottom:0;padding-top:2px;padding-bottom:2px}.seopress-option #side-sortables .accordion-section .inside ul li{border-left:2px solid #ccc;padding-left:10px;margin-bottom:10px}.seopress-option #side-sortables .accordion-section .inside ul li:first-child{border-bottom:1px dotted #e5e5e5;border-left:0;padding-bottom:10px;font-weight:700;margin-left:-15px;margin-bottom:10px}.seopress-notice #message{margin:5px 10px 2px 0}#seopress-notice a{position:relative;text-decoration:none}#seopress-notice a .tooltip{white-space:pre;z-index:200;padding:2px 5px;font-weight:500;font-size:12px;color:#aab7c4;background:#fff;box-shadow:0 1px 2px 0 rgba(49,49,93,.1),0 0 1px 0 rgba(0,0,0,.1);border-radius:2px;position:absolute;opacity:0;top:30px;transition:opacity .2s ease;visibility:hidden;line-height:20px;left:-100%;overflow:hidden}#seopress-notice a:hover .tooltip{opacity:1;visibility:visible}.seopress-page-list{margin:1.5rem 0}.seopress-option .dashicons,.seopress-page-list .dashicons{vertical-align:middle;margin-right:5px}#seopress-admin-tabs .ui-tabs-nav,#seopress-notifications-center,.seopress-page-list .seopress-feature,.seopress-useful-tools{background:linear-gradient(172deg,#f5f7fa,#f5f7fa 200px,#fff 0,#fff);margin:0 auto 20px;box-shadow:0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.2);max-width:50rem;padding:1.5rem;width:100%;border-radius:4px}#seopress-notifications-center,.seopress-useful-tools{background:linear-gradient(172deg,#f5f7fa,#f5f7fa 400px,#fff 0,#fff)}.seopress-page-list .seopress-feature{padding:0 1.5rem;position:relative;overflow:hidden;transition-duration:.15s}.seopress-page-list .seopress-feature p{color:#6b7c93;font-size:14px;margin-bottom:30px}#seopress-notifications-center{margin-top:0}#seopress-admin-tabs .ui-tabs-nav{display:flex;padding-top:1rem;padding-bottom:0}.seopress-page-list .seopress-feature .img-tool{height:100px;width:100px;background:#c4f0ff;position:absolute;border-radius:50%;box-shadow:0 4px 6px rgba(50,50,93,.1),0 1px 3px rgba(0,0,0,.1);top:calc(50% - 50px);left:20px}.seopress-page-list .seopress-feature .img-tool .dashicons{color:#217ab7;font-size:60px;text-align:left;vertical-align:middle;width:100%;height:100%;position:absolute;top:calc(50% - 30px);left:calc(50% - 30px);margin:0}.seopress-page-list .seopress-feature .inner{margin:0;display:block;padding:2rem 0 2rem 120px}.seopress-page-list .seopress-feature h3{margin:0;font-size:16px;font-weight:700;color:#3297d3;text-transform:uppercase}.seopress-page-list .seopress-feature h3 .dashicons{font-size:16px;margin-left:5px;vertical-align:middle}#seopress-content .seopress-page-list .seopress-feature a,#seopress-notifications-center .seopress-alert .button-primary,.seopress-option .seopress-feature a,.seopress-useful-tools .widget .button-primary{color:#fff;text-decoration:none;border:none;border-radius:4px;padding-right:20px;padding-left:20px;line-height:34px;text-transform:uppercase;min-height:34px;transition:all .3s linear;text-shadow:none;box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.1);margin-right:15px;background:#6a7c94;position:relative;height:auto}#seopress-content .seopress-page-list .seopress-feature a.button-secondary{padding-left:30px}#seopress-content .seopress-page-list .seopress-feature a.button-secondary::before,#seopress-notifications-center .seopress-alert .button-primary::after{content:"\f111";font-family:Dashicons;position:absolute;left:10px;top:1px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:16px}#seopress-content .seopress-page-list .seopress-feature a.view-redirects,#seopress-notifications-center .seopress-alert .button-primary,.seopress-option .button{background:#fff;border:none;color:#6b7c93;font-weight:500;transition:all .3s linear;text-shadow:none;text-transform:uppercase;padding-right:20px;padding-left:20px;line-height:34px;min-height:34px;margin-bottom:10px;border-radius:4px;box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.1);vertical-align:baseline}.seopress-option .button .dashicons{font-size:16px}#seopress-content .seopress-page-list .seopress-feature a.view-redirects{padding-left:35px}#seopress-notifications-center .seopress-alert .button-primary::after{content:"\f344";left:inherit;right:10px}#seopress-content .seopress-page-list .seopress-feature a.view-redirects::before{content:"\f177"}#seopress-content .seopress-page-list .seopress-feature a:hover,#seopress-notifications-center .seopress-alert .button-primary:hover,.seopress-option .button:hover,.seopress-option .seopress-feature a:hover,.seopress-useful-tools .widget .button-primary:hover{text-decoration:none;color:#fff;background:#232323}#seopress-content .seopress-page-list .seopress-feature .seopress-doc:focus,#seopress-content .seopress-page-list .seopress-feature a:focus,#seopress-content .seopress-page-list .seopress-feature a:focus.button-secondary,#seopress-content a:focus,#seopress-notifications-center .seopress-alert .button-primary:focus,.seopress-option #seopress-tabs .seopress-doc:focus,.seopress-option .seopress-feature a:focus,.seopress-styles .seopress-option #seopress-aio-migrate:focus,.seopress-styles .seopress-option #seopress-yoast-migrate:focus,.seopress-styles .seopress-option #submit:focus,.seopress-useful-tools .widget .button-primary:focus{box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db;background:#008ec2;border-color:#006799;color:#fff}#seopress-admin-tabs .nav-tab-wrapper a.nav-tab-active:focus{color:inherit}#seopress-notifications-center .seopress-alert .button-primary{float:right;margin:5px 0;padding-right:30px}#seopress-notifications-center h2,.seopress-useful-tools h2{margin:5px 0 15px 5px;display:inline-block;width:100%}#seopress-notifications-center .dashicons,.seopress-useful-tools .dashicons{margin-right:10px}#seopress-notifications-center .seopress-alert{padding:0;display:inline-block;margin:0 10px 10px 5px;border-bottom:1px solid #e6ebf1;width:calc(100% - 30px);position:relative;transition:all 150ms ease}#seopress-notifications-center .seopress-alert:hover{cursor:default}#seopress-notifications-center .seopress-alert p{display:inline-block}#seopress-notifications-center .seopress-alert .impact{padding:4px 5px;color:#fff;text-transform:uppercase;font-weight:700;font-size:10px;border-radius:4px}#seopress-notifications-center .seopress-alert .impact.low{background:#ffde24;color:#6b6543}#seopress-notifications-center .seopress-alert .impact.medium{background:#e39f48}#seopress-notifications-center .seopress-alert .impact.high{background:#e25950}#seopress-notifications-center .seopress-alert .impact.high.info{background:#0085ba}#seopress-notifications-center .seopress-alert .dashicons{color:#ffc82c}#seopress-notifications-center .dashicons.remove-notice{position:absolute;right:-55px;color:#6b7c93;font-size:30px;height:30px;width:30px;top:2px;padding:5px;transition:all .3s linear}#seopress-notifications-center .dashicons.remove-notice:hover{background:#e25950;color:#fff;cursor:pointer;border-radius:4px}#seopress-content .seopress-page-list .seopress-feature .seopress-doc,.seopress-option #seopress-tabs .seopress-doc{background:0 0;padding:0;width:inherit;height:inherit;text-decoration:none;color:inherit;box-shadow:none;position:absolute;right:0}#seopress-content .seopress-page-list .seopress-feature .seopress-doc:hover,.seopress-option #seopress-tabs .seopress-doc:hover{color:#747474;background:0 0}.seopress-option .seopress-table{background:#fff;border:1px solid #ccc}.seopress-option .seopress-table th{padding:15px 10px;vertical-align:middle}.wp-admin-ui_page_seopress-roles .seopress-option .seopress-table th{min-width:200px}.seopress-option .seopress-table .seopress-settings-section{background:#f1f1f1}.seopress-option .seopress-table .seopress-table-head .seopress-feature{border-bottom:1px solid #ccc;font-weight:700;background:#f1f1f1}#seopress-content .feature-state,.seopress-option .feature-state{font-style:italic;font-size:12px;display:inline-block;background:rgba(0,140,135,.1);padding:5px 12px;border-radius:25px;color:#444;font-weight:400;text-transform:none;-moz-osx-font-smoothing:initial;-webkit-font-smoothing:initial}#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-button,.seopress-option .tag-title{cursor:pointer;font-weight:500;border-radius:4px;transition:all .3s linear}#seopress-content .feature-state-on,#seopress-content .feature-state.feature-state-on,.seopress-option .feature-state-on,.seopress-option .feature-state.feature-state-on{display:inline}#seopress-content .feature-state-off,.seopress-option .feature-state-off{display:none}.seopress-option .postbox .inside li{list-style:square inside;padding-left:5px}#tab_seopress_page_speed .inside li{list-style:none;padding-left:0;word-break:break-word}.seopress-option .log{margin:0;text-transform:uppercase;display:inline-block;vertical-align:middle;padding:5px;color:rgba(19,191,17,1);font-style:italic}.seopress-option input[type=text].seopress-admin-menu-input{min-width:inherit;width:100%}.seopress_page_seopress-import-export .postbox{width:calc(100% - 20px)}#seopress_cpt .wrap-tags,#seopress_pro_cpt .wrap-tags,.seopress-option .wrap-tags{position:relative;display:inline-block;width:100%;margin-bottom:10px}#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-option .tag-title{padding:4px 8px;position:relative;top:5px;left:0;font-size:11px;float:left;margin-right:5px;user-select:none;margin-bottom:5px;background:#fff;color:#6b7c93;box-shadow:0 0 0 .5px rgba(50,50,93,.17),0 2px 5px 0 rgba(50,50,93,.12),0 3px 9px 0 rgba(50,50,93,.08),0 1px 1.5px 0 rgba(0,0,0,.08),0 1px 2px 0 rgba(0,0,0,.08)}#seopress_cpt .tag-title:active,#seopress_cpt .tag-title:focus,#seopress_cpt .tag-title:hover,#seopress_pro_cpt .tag-title:active,#seopress_pro_cpt .tag-title:focus,#seopress_pro_cpt .tag-title:hover,.seopress-option .tag-title:active,.seopress-option .tag-title:focus,.seopress-option .tag-title:hover{background:#232323;color:#fff;user-select:none}#seopress_cpt .tag-title .dashicons,#seopress_pro_cpt .tag-title .dashicons,.seopress-option .tag-title .dashicons{padding:0;height:16px;width:16px;font-size:16px;margin-right:5px;vertical-align:middle}.seopress-button{text-transform:uppercase;background:#fff;border-color:#c8d7e1;border-style:solid;border-width:1px 1px 2px;color:#2e4453;display:inline-block;margin:0;outline:0;overflow:hidden;text-overflow:ellipsis;text-decoration:none;vertical-align:top;box-sizing:border-box;font-size:14px;line-height:21px;padding:7px 14px 9px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.seopress-button:hover{border-color:#a8bece;color:#00a0d2}.seopress-button .dashicons{vertical-align:middle}#seopress-content #tab_seopress_seo_tools.seopress-useful-tools .widget{border-right:1px solid #e6ebf1;margin:0;padding:0 20px;width:calc(50% - 2px);box-sizing:border-box;display:inline-block;vertical-align:top}#seopress-content #tab_seopress_seo_tools.seopress-useful-tools .widget:first-child{width:100%;display:block;clear:both;border-right:none;border-bottom:1px solid #e6ebf1;padding-bottom:20px;margin-bottom:20px}#seopress-content #tab_seopress_seo_tools.seopress-useful-tools .widget:last-child{border-right:none}#seopress-content .seopress-useful-tools .widget-reverse ul{background:#fff}#seopress-content .seopress-useful-tools .widget-reverse li{padding:10px;margin:0;border-bottom:1px solid #e6ebf1}#seopress-content .seopress-useful-tools .widget-reverse li:hover{background:#f5f7fa}#seopress-content .seopress-useful-tools .widget-title{text-transform:uppercase;margin:0 0 10px;font-size:13px;padding:10px 0;color:#24b47e}#seopress-content .seopress-reverse label,#seopress-content .seopress-useful-tools .widget-whois ul li span{font-weight:700}#seopress-content #seopress-reverse-url{width:100%;margin:10px 0}#seopress-content .widget-reverse p{margin:0}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_url{width:35%}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_anchor_text{width:20%}.seopress-styles #screen-meta{margin:0;position:relative;background-color:#fff;border-bottom:0 solid #f2f2f2;border-top:none;-webkit-box-shadow:0 0 0 1px rgba(136,152,170,.1),0 15px 35px 0 rgba(49,49,93,.1),0 5px 15px 0 rgba(0,0,0,.08);box-shadow:0 0 0 1px rgba(136,152,170,.1),0 15px 35px 0 rgba(49,49,93,.1),0 5px 15px 0 rgba(0,0,0,.08);top:0}.seopress-styles #contextual-help-link-wrap,.seopress-styles #screen-options-link-wrap{float:right;height:28px;margin:0 0 0 6px;border:1px solid #f2f2f2;border-top:none;background:#fff;-webkit-box-shadow:0 0 0 1px rgba(136,152,170,.1),0 15px 35px 0 rgba(49,49,93,.1),0 5px 15px 0 rgba(0,0,0,.08);box-shadow:0 0 0 1px rgba(136,152,170,.1),0 15px 35px 0 rgba(49,49,93,.1),0 5px 15px 0 rgba(0,0,0,.08)}.seopress-styles #screen-meta-links .show-settings{box-shadow:none}.seopress-styles #screen-meta-links .screen-meta-toggle{position:relative;top:0;z-index:2000}.seopress-styles #contextual-help-back{background:#f8fafd}.seopress-styles .contextual-help-tabs .active{border-left:2px solid #3297d3;background:#f8fafd}#seopress-content input.toggle,.seopress-option input.toggle{max-height:0;max-width:0;opacity:0}#seopress-content input.toggle+label,.seopress-option input.toggle+label{display:inline-block;position:relative;box-shadow:inset 0 0 0 1px #d5d5d5;text-indent:-5000px;height:30px;width:50px;border-radius:15px}.wrap-toggle-checkboxes input.toggle+label{float:left;margin-right:10px}#seopress-content input.toggle+label:before,.seopress-option input.toggle+label:before{content:"";position:absolute;display:block;height:30px;width:30px;top:0;left:0;border-radius:15px;background:rgba(19,191,17,0);-moz-transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;transition:.25s ease-in-out}#seopress-content input.toggle+label:after,.seopress-option input.toggle+label:after{content:"";position:absolute;display:block;height:30px;width:30px;top:0;left:0;border-radius:15px;background:#fff;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.2);-moz-transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;transition:.25s ease-in-out}#seopress-content input.toggle[data-toggle="1"]+label:before,.seopress-option input.toggle[data-toggle="1"]+label:before{width:50px;background:rgba(19,191,17,1)}#seopress-content input.toggle[data-toggle="1"]+label:after,.seopress-option input.toggle[data-toggle="1"]+label:after{left:20px;box-shadow:inset 0 0 0 1px rgba(19,191,17,1),0 2px 4px rgba(0,0,0,.2)}#seopress-content .seopress-page-list{position:relative}#seopress-notice-save{position:fixed;color:#fff;padding:15px 40px;font-size:.9rem;text-transform:uppercase;text-align:center;border-radius:0;background:rgba(74,184,102,.9);bottom:0;right:0;z-index:500;width:100%;font-weight:700}.seopress_page_seopress-pro-page #wpcontent{background:#f4f7fa}.seopress-option .wrap div.nav-tab-wrapper{border-bottom:1px solid RGB(238,238,238);margin:0 0 0 -16px;padding:0 10px;line-height:inherit;background:#fff;position:-webkit-sticky;position:sticky;top:102px;width:calc(100% + 12px);z-index:95;font-weight:400}#seopress-admin-tabs.wrap div.nav-tab-wrapper{margin:20px auto 0;max-width:53rem;width:100%;border-bottom:0;padding:0;line-height:inherit;position:-webkit-sticky;position:sticky;background:#f8fafd;z-index:100;top:31px;font-weight:400}#seopress-admin-tabs #tab_seopress_notifications.seopress-tab{background:0 0;padding:0}#seopress-admin-tabs .nav-tab,.seopress-option .nav-tab{border:0 solid #ccc;background:0 0;opacity:.5;padding:8px 8px;transition:opacity .3s linear;color:#191e23;margin:0;float:none;display:inline-block}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:hover,.seopress-option .about-wrap h2 .nav-tab-active,.seopress-option .nav-tab-active,.seopress-option .nav-tab-active:hover{background-color:#fff}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus,.nav-tab-active:focus,.seopress-option .nav-tab-active,.seopress-option .nav-tab-active:focus:active,.seopress-option .nav-tab-active:hover,.seopress-option .nav-tab:focus{background:0 0;opacity:1;outline:0;font-weight:600;position:relative}.seopress-option .nav-tab-active::after{border-bottom:2px solid #0085ba;content:'';position:absolute;width:100%;bottom:0;left:0;display:block}#seopress-admin-tabs .nav-tab:hover,.seopress-option .nav-tab:hover{opacity:1}#seopress-admin-tabs .nav-tab:focus,.seopress-option .nav-tab:focus{outline:0;box-shadow:none}#section-export-redirects,#section-import-redirects{margin-top:-120px;padding-top:120px}.seopress-option .section-tool{border:none;box-shadow:none;background:0 0;position:relative}.seopress-option .section-tool::after{content:'';background:#dedede;height:1px;width:100%;display:block}#tab_seopress_social_accounts .help-social{position:relative;right:0;width:30%}#tab_seopress_social_accounts .form-table{float:left;width:70%}
|
assets/js/seopress-cookies-ajax.js
CHANGED
@@ -12,7 +12,6 @@ jQuery(document).ready(function($) {
|
|
12 |
_ajax_nonce: seopressAjaxGAUserConsent.seopress_nonce,
|
13 |
},
|
14 |
success : function( data ) {
|
15 |
-
console.log(data.data);
|
16 |
$('.seopress-user-consent').remove();
|
17 |
$('head').append(data.data.gtag_js);
|
18 |
$('head').append(data.data.custom);
|
12 |
_ajax_nonce: seopressAjaxGAUserConsent.seopress_nonce,
|
13 |
},
|
14 |
success : function( data ) {
|
|
|
15 |
$('.seopress-user-consent').remove();
|
16 |
$('head').append(data.data.gtag_js);
|
17 |
$('head').append(data.data.custom);
|
assets/js/seopress-migrate.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
jQuery(document).ready(function(s){s("#seopress-yoast-migrate").on("click",function(s){s.preventDefault(),self.process_offset(0,self)}),process_offset=function(e,o){s.ajax({method:"POST",url:seopressAjaxMigrate.seopress_yoast_migrate.seopress_yoast_migration,data:{action:"seopress_yoast_migration",offset:e,_ajax_nonce:seopressAjaxMigrate.seopress_yoast_migrate.seopress_nonce},success:function(e){"done"==e.data.offset?(s("#seopress-yoast-migrate").removeAttr("disabled"),s(".spinner").css("visibility","hidden"),s("#yoast-migration-tool .log").html(seopressAjaxMigrate.i18n)):o.process_offset(parseInt(e.data.offset),o)}})},s("#seopress-yoast-migrate").on("click",function(){s(this).attr("disabled","disabled"),s("#yoast-migration-tool .spinner").css("visibility","visible"),s("#yoast-migration-tool .spinner").css("float","none"),s("#yoast-migration-tool .log").html("")}),s("#seopress-aio-migrate").on("click",function(s){s.preventDefault(),self.process_offset2(0,self)}),process_offset2=function(e,o){s.ajax({method:"POST",url:seopressAjaxMigrate.seopress_aio_migrate.seopress_aio_migration,data:{action:"seopress_aio_migration",offset2:e,_ajax_nonce:seopressAjaxMigrate.seopress_aio_migrate.seopress_nonce},success:function(e){"done"==e.data.offset2?(s("#seopress-aio-migrate").removeAttr("disabled"),s(".spinner").css("visibility","hidden"),s("#aio-migration-tool .log").html(seopressAjaxMigrate.i18n)):o.process_offset2(parseInt(e.data.offset2),o)}})},s("#seopress-aio-migrate").on("click",function(){s(this).attr("disabled","disabled"),s("#aio-migration-tool .spinner").css("visibility","visible"),s("#aio-migration-tool .spinner").css("float","none"),s("#aio-migration-tool .log").html("")}),s("#seopress-seo-framework-migrate").on("click",function(s){s.preventDefault(),self.process_offset3(0,self)}),process_offset3=function(e,o){s.ajax({method:"POST",url:seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_seo_framework_migration,data:{action:"seopress_seo_framework_migration",offset3:e,_ajax_nonce:seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_nonce},success:function(e){"done"==e.data.offset3?(s("#seopress-seo-framework-migrate").removeAttr("disabled"),s(".spinner").css("visibility","hidden"),s("#seo-framework-migration-tool .log").html(seopressAjaxMigrate.i18n)):o.process_offset3(parseInt(e.data.offset3),o)}})},s("#seopress-seo-framework-migrate").on("click",function(){s(this).attr("disabled","disabled"),s("#seo-framework-migration-tool .spinner").css("visibility","visible"),s("#seo-framework-migration-tool .spinner").css("float","none"),s("#seo-framework-migration-tool .log").html("")}),s("#seopress-rk-migrate").on("click",function(s){s.preventDefault(),self.process_offset4(0,self)}),process_offset4=function(e,o){s.ajax({method:"POST",url:seopressAjaxMigrate.seopress_rk_migrate.seopress_rk_migration,data:{action:"seopress_rk_migration",offset4:e,_ajax_nonce:seopressAjaxMigrate.seopress_rk_migrate.seopress_nonce},success:function(e){"done"==e.data.offset4?(s("#seopress-rk-migrate").removeAttr("disabled"),s(".spinner").css("visibility","hidden"),s("#rk-migration-tool .log").html(seopressAjaxMigrate.i18n)):o.process_offset4(parseInt(e.data.offset4),o)}})},s("#seopress-rk-migrate").on("click",function(){s(this).attr("disabled","disabled"),s("#rk-migration-tool .spinner").css("visibility","visible"),s("#rk-migration-tool .spinner").css("float","none"),s("#rk-migration-tool .log").html("")})});
|
inc/admin/admin-metaboxes-form.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
defined( 'ABSPATH' ) or die( 'Please don’t call the plugin directly. Thanks :)' );
|
4 |
|
5 |
global $typenow;
|
6 |
global $pagenow;
|
|
|
7 |
$data_tax = '';
|
8 |
|
9 |
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
@@ -52,404 +52,427 @@ if ( $pagenow =='term.php' || $pagenow =='edit-tags.php') {
|
|
52 |
}
|
53 |
|
54 |
echo '<div id="seopress-tabs" data_id="'.$current_id.'" data_origin="'.$origin.'" data_tax="'.$data_tax.'">';
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
}
|
70 |
-
if (function_exists('seopress_get_toggle_xml_sitemap_option') && seopress_get_toggle_xml_sitemap_option() =='1') {
|
71 |
-
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
72 |
-
if ("seopress_404" != $typenow) {
|
73 |
-
echo '<li><a href="#tabs-6"><span class="dashicons dashicons-format-video"></span>'. __( 'Video Sitemap', 'wp-seopress' ) .'</a></li>';
|
74 |
-
}
|
75 |
}
|
76 |
}
|
77 |
}
|
78 |
-
|
79 |
-
|
80 |
-
if ("seopress_404" != $typenow) {
|
81 |
-
echo '<div id="tabs-1">';
|
82 |
-
if (is_plugin_active( 'woocommerce/woocommerce.php' )) {
|
83 |
-
$shop_page_id = wc_get_page_id( 'shop' );
|
84 |
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
85 |
-
if (
|
86 |
-
|
87 |
}
|
88 |
}
|
89 |
}
|
90 |
-
|
91 |
-
<p style="margin-bottom:0">
|
92 |
-
<label for="seopress_titles_title_meta">'. __( 'Title', 'wp-seopress' ) .'</label>
|
93 |
-
<input id="seopress_titles_title_meta" type="text" name="seopress_titles_title" placeholder="'.esc_html__('Enter your title','wp-seopress').'" aria-label="'.__('Title','wp-seopress').'" value="'.$seopress_titles_title.'" />
|
94 |
-
</p>
|
95 |
-
<div class="wrap-seopress-counters">
|
96 |
-
<div id="seopress_titles_title_pixel"></div>
|
97 |
-
<strong>'.__(' / 568 pixels - ','wp-seopress').'</strong>
|
98 |
-
<div id="seopress_titles_title_counters"></div>
|
99 |
-
'.__(' (maximum recommended limit)','wp-seopress').'
|
100 |
-
</div>
|
101 |
-
|
102 |
-
<div class="wrap-tags">
|
103 |
-
<span id="seopress-tag-single-title" data-tag="%%post_title%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Post Title','wp-seopress').'</span>
|
104 |
|
105 |
-
|
106 |
|
107 |
-
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
109 |
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
<
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
<
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
<div class="snippet-title-custom" style="display:none"></div>';
|
136 |
-
global $tag;
|
137 |
-
if (get_the_title()) {
|
138 |
-
echo '<div class="snippet-title-default" style="display:none">'.get_the_title().' - '.get_bloginfo('name').'</div>
|
139 |
-
<div class="snippet-permalink">'.htmlspecialchars(urldecode(get_permalink())).'</div>';
|
140 |
-
} elseif ($tag) {
|
141 |
-
echo '<div class="snippet-title-default" style="display:none">'.$tag->name.' - '.get_bloginfo('name').'</div>';
|
142 |
-
echo '<div class="snippet-permalink">'.htmlspecialchars(urldecode(get_term_link($tag))).'</div>';
|
143 |
-
}
|
144 |
|
145 |
-
|
146 |
-
echo seopress_display_date_snippet();
|
147 |
-
}
|
148 |
-
echo '<div class="snippet-description">...</div>
|
149 |
-
<div class="snippet-description-custom" style="display:none"></div>
|
150 |
-
<div class="snippet-description-default" style="display:none"></div>';
|
151 |
-
echo '</div>
|
152 |
-
</div>
|
153 |
-
</div>
|
154 |
-
<div id="tabs-2">
|
155 |
-
<p>
|
156 |
-
<label for="seopress_robots_index_meta">
|
157 |
-
<input type="checkbox" name="seopress_robots_index" id="seopress_robots_index_meta" value="yes" '. checked( $seopress_robots_index, 'yes', false ) .' '.$disabled['robots_index'].'/>
|
158 |
-
'. __( 'Do not display this page in search engine results / XML - HTML sitemaps <strong>(noindex)</strong>', 'wp-seopress' ) .'
|
159 |
-
</label>
|
160 |
-
</p>
|
161 |
-
<p>
|
162 |
-
<label for="seopress_robots_follow_meta">
|
163 |
-
<input type="checkbox" name="seopress_robots_follow" id="seopress_robots_follow_meta" value="yes" '. checked( $seopress_robots_follow, 'yes', false ) .' '.$disabled['robots_follow'].'/>
|
164 |
-
'. __( 'Do not follow links for this page <strong>(nofollow)</strong>', 'wp-seopress' ) .'
|
165 |
-
</label>
|
166 |
-
</p>
|
167 |
-
<p>
|
168 |
-
<label for="seopress_robots_odp_meta">
|
169 |
-
<input type="checkbox" name="seopress_robots_odp" id="seopress_robots_odp_meta" value="yes" '. checked( $seopress_robots_odp, 'yes', false ) .' '.$disabled['robots_odp'].'/>
|
170 |
-
'. __( 'Do not use Open Directory project metadata for titles or excerpts for this page <strong>(noodp)</strong>', 'wp-seopress' ) .'
|
171 |
-
</label>
|
172 |
-
</p>
|
173 |
-
<p>
|
174 |
-
<label for="seopress_robots_imageindex_meta">
|
175 |
-
<input type="checkbox" name="seopress_robots_imageindex" id="seopress_robots_imageindex_meta" value="yes" '. checked( $seopress_robots_imageindex, 'yes', false ) .' '.$disabled['imageindex'].'/>
|
176 |
-
'. __( 'Do not index images for this page <strong>(noimageindex)</strong>', 'wp-seopress' ) .'
|
177 |
-
</label>
|
178 |
-
</p>
|
179 |
-
<p>
|
180 |
-
<label for="seopress_robots_archive_meta">
|
181 |
-
<input type="checkbox" name="seopress_robots_archive" id="seopress_robots_archive_meta" value="yes" '. checked( $seopress_robots_archive, 'yes', false ) .' '.$disabled['archive'].'/>
|
182 |
-
'. __( 'Do not display a "Cached" link in the Google search results <strong>(noarchive)</strong>', 'wp-seopress' ) .'
|
183 |
-
</label>
|
184 |
-
</p>
|
185 |
-
<p>
|
186 |
-
<label for="seopress_robots_snippet_meta">
|
187 |
-
<input type="checkbox" name="seopress_robots_snippet" id="seopress_robots_snippet_meta" value="yes" '. checked( $seopress_robots_snippet, 'yes', false ) .' '.$disabled['snippet'].'/>
|
188 |
-
'. __( 'Do not display a description in search results for this page <strong>(nosnippet)</strong>', 'wp-seopress' ) .'
|
189 |
-
</label>
|
190 |
-
</p>
|
191 |
-
<p class="description">
|
192 |
-
'.__('You cannot uncheck a parameter? This is normal, and it\'s most likely defined in the global settings of the extension.','wp-seopress').'
|
193 |
-
</p>
|
194 |
-
<p>
|
195 |
-
<label for="seopress_robots_canonical_meta">'. __( 'Canonical URL', 'wp-seopress' ) .'</label>
|
196 |
-
<input id="seopress_robots_canonical_meta" type="text" name="seopress_robots_canonical" placeholder="'.esc_html__('Default value: ','wp-seopress').htmlspecialchars(urldecode(get_permalink())).'" aria-label="'.__('Canonical URL','wp-seopress').'" value="'.$seopress_robots_canonical.'" />
|
197 |
-
<span class="sp-tooltip"><span class="dashicons dashicons-editor-help"></span>
|
198 |
-
<span class="sp-tooltiptext">'.__('A canonical URL is the URL of the page that Google thinks is most representative from a set of duplicate pages on your site. For example, if you have URLs for the same page (for example: example.com?dress=1234 and example.com/dresses/1234), Google chooses one as canonical. Note that the pages do not need to be absolutely identical; minor changes in sorting or filtering of list pages do not make the page unique (for example, sorting by price or filtering by item color).
|
199 |
-
The canonical can be in a different domain than a duplicate.','wp-seopress').'</span>
|
200 |
-
</span>
|
201 |
-
</p>';
|
202 |
|
203 |
-
|
204 |
-
|
205 |
-
<label for="seopress_robots_primary_cat_meta">'. __( 'Select a primary category', 'wp-seopress' ) .'</label>
|
206 |
-
<span class="description">'.__('Set the category that gets used in the %category% permalink if you have multiple categories.','wp-seopress').'</p>
|
207 |
-
<select name="seopress_robots_primary_cat">';
|
208 |
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
}
|
215 |
-
|
216 |
-
|
217 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
}
|
219 |
-
if (
|
220 |
-
|
221 |
-
|
222 |
-
<label for="
|
223 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
</p>';
|
225 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
}
|
227 |
-
echo '</div>
|
228 |
-
<div id="tabs-3">
|
229 |
-
<span class="dashicons dashicons-facebook-alt"></span>
|
230 |
-
<br><br>
|
231 |
-
<span class="dashicons dashicons-external"></span><a href="https://developers.facebook.com/tools/debug/sharing/?q='.get_permalink(get_the_id()).'" target="_blank">'.__('Ask Facebook to update his cache','wp-seopress').'</a>
|
232 |
-
<p>
|
233 |
-
<label for="seopress_social_fb_title_meta">'. __( 'Facebook Title', 'wp-seopress' ) .'</label>
|
234 |
-
<input id="seopress_social_fb_title_meta" type="text" name="seopress_social_fb_title" placeholder="'.esc_html__('Enter your Facebook title','wp-seopress').'" aria-label="'.__('Facebook Title','wp-seopress').'" value="'.$seopress_social_fb_title.'" />
|
235 |
-
</p>
|
236 |
-
<p>
|
237 |
-
<label for="seopress_social_fb_desc_meta">'. __( 'Facebook description', 'wp-seopress' ) .'</label>
|
238 |
-
<textarea id="seopress_social_fb_desc_meta" name="seopress_social_fb_desc" placeholder="'.esc_html__('Enter your Facebook description','wp-seopress').'" aria-label="'.__('Facebook description','wp-seopress').'" value="'.$seopress_social_fb_desc.'">'.$seopress_social_fb_desc.'</textarea>
|
239 |
-
</p>
|
240 |
-
<p>
|
241 |
-
<label for="seopress_social_fb_img_meta">'. __( 'Facebook Thumbnail', 'wp-seopress' ) .'</label>
|
242 |
-
<input id="seopress_social_fb_img_meta" type="text" name="seopress_social_fb_img" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'" aria-label="'.__('Facebook Thumbnail','wp-seopress').'" value="'.$seopress_social_fb_img.'" />
|
243 |
-
<span class="advise">'.__('Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or 3280x1712px for retina screens)', 'wp-seopress').'</span>
|
244 |
-
<input id="seopress_social_fb_img_upload" class="button" type="button" value="'.__('Upload an Image','wp-seopress').'" />
|
245 |
-
</p>
|
246 |
-
<br/>
|
247 |
-
<span class="dashicons dashicons-twitter"></span>
|
248 |
-
<br><br>
|
249 |
-
<span class="dashicons dashicons-external"></span><a href="https://cards-dev.twitter.com/validator" target="_blank">'.__('Preview your Twitter card using the official validator','wp-seopress').'</a>
|
250 |
-
<p>
|
251 |
-
<label for="seopress_social_twitter_title_meta">'. __( 'Twitter Title', 'wp-seopress' ) .'</label>
|
252 |
-
<input id="seopress_social_twitter_title_meta" type="text" name="seopress_social_twitter_title" placeholder="'.esc_html__('Enter your Twitter title','wp-seopress').'" aria-label="'.__('Twitter Title','wp-seopress').'" value="'.$seopress_social_twitter_title.'" />
|
253 |
-
</p>
|
254 |
-
<p>
|
255 |
-
<label for="seopress_social_twitter_desc_meta">'. __( 'Twitter description', 'wp-seopress' ) .'</label>
|
256 |
-
<textarea id="seopress_social_twitter_desc_meta" name="seopress_social_twitter_desc" placeholder="'.esc_html__('Enter your Twitter description','wp-seopress').'" aria-label="'.__('Twitter description','wp-seopress').'" value="'.$seopress_social_twitter_desc.'">'.$seopress_social_twitter_desc.'</textarea>
|
257 |
-
</p>
|
258 |
-
<p>
|
259 |
-
<label for="seopress_social_twitter_img_meta">'. __( 'Twitter Thumbnail', 'wp-seopress' ) .'</label>
|
260 |
-
<input id="seopress_social_twitter_img_meta" type="text" name="seopress_social_twitter_img" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'" value="'.$seopress_social_twitter_img.'" />
|
261 |
-
<span class="advise">'. __('Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 (2:1 with large card), 5Mb max.', 'wp-seopress') .'</span>
|
262 |
-
<input id="seopress_social_twitter_img_upload" class="button" type="button" aria-label="'.__('Twitter Thumbnail','wp-seopress').'" value="'.__('Upload an Image','wp-seopress').'" />
|
263 |
-
</p>
|
264 |
-
</div>';
|
265 |
}
|
266 |
|
267 |
-
|
268 |
-
<
|
269 |
-
<
|
270 |
-
<
|
271 |
-
'.
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
<
|
276 |
-
|
277 |
-
<
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
<
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
$
|
298 |
-
|
299 |
-
if (
|
300 |
-
if ( '
|
301 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
} else {
|
303 |
echo '<a href="'.get_permalink().'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
|
304 |
}
|
305 |
-
} elseif ( $pagenow == 'term.php' ) {
|
306 |
-
echo '<a href="'.get_term_link($term).'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
|
307 |
-
} else {
|
308 |
-
echo '<a href="'.get_permalink().'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
|
309 |
}
|
310 |
}
|
311 |
-
}
|
312 |
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
}
|
319 |
-
}
|
320 |
-
?>
|
321 |
-
<span class="dashicons dashicons-external"></span>
|
322 |
-
<a href="<?php echo $seopress_docs_link['support']['redirection']; ?>" target="_blank" class="seopress-doc"><?php _e('Need help with your redirections? Read our guide.','wp-seopress'); ?></a>
|
323 |
-
<?php echo
|
324 |
-
'</p>
|
325 |
-
</div>';
|
326 |
-
if (is_plugin_active( 'wp-seopress-pro/seopress-pro.php' )) {
|
327 |
-
if (function_exists('seopress_get_toggle_news_option') && seopress_get_toggle_news_option() =='1') {
|
328 |
-
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
329 |
-
if ("seopress_404" != $typenow) {
|
330 |
-
echo '<div id="tabs-5">
|
331 |
-
<p>
|
332 |
-
<label for="seopress_news_disabled_meta" id="seopress_news_disabled">
|
333 |
-
<input type="checkbox" name="seopress_news_disabled" id="seopress_news_disabled_meta" value="yes" '. checked( $seopress_news_disabled, 'yes', false ) .' />
|
334 |
-
'. __( 'Exclude this post from Google News Sitemap?', 'wp-seopress' ) .'
|
335 |
-
</label>
|
336 |
-
</p>
|
337 |
-
</div>';
|
338 |
}
|
339 |
}
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
if ("seopress_404" != $typenow) {
|
344 |
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
|
|
364 |
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
|
|
|
|
440 |
</div>
|
441 |
-
|
442 |
-
|
443 |
-
|
|
|
|
|
444 |
}
|
445 |
-
|
446 |
-
<p><a href="#" id="add-video" class="add-video button button-primary">'.__('Add video','wp-seopress').'</a></p>
|
447 |
-
</div>';
|
448 |
}
|
449 |
}
|
450 |
}
|
451 |
-
|
452 |
-
echo '</div>';
|
453 |
|
454 |
if ( $pagenow =='term.php' || $pagenow =='edit-tags.php') {
|
455 |
echo '</div>';
|
@@ -457,3 +480,4 @@ if ( $pagenow =='term.php' || $pagenow =='edit-tags.php') {
|
|
457 |
echo '</td>';
|
458 |
echo '</tr>';
|
459 |
}
|
|
1 |
<?php
|
|
|
2 |
defined( 'ABSPATH' ) or die( 'Please don’t call the plugin directly. Thanks :)' );
|
3 |
|
4 |
global $typenow;
|
5 |
global $pagenow;
|
6 |
+
|
7 |
$data_tax = '';
|
8 |
|
9 |
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
52 |
}
|
53 |
|
54 |
echo '<div id="seopress-tabs" data_id="'.$current_id.'" data_origin="'.$origin.'" data_tax="'.$data_tax.'">';
|
55 |
+
|
56 |
+
if ("seopress_404" != $typenow) {
|
57 |
+
$seo_tabs['title-tab'] = '<li><a href="#tabs-1"><span class="dashicons dashicons-editor-table"></span>'. __( 'Titles settings', 'wp-seopress' ) .'</a></li>';
|
58 |
+
$seo_tabs['advanced-tab'] = '<li><a href="#tabs-2"><span class="dashicons dashicons-admin-generic"></span>'. __( 'Advanced', 'wp-seopress' ) .'</a></li>';
|
59 |
+
$seo_tabs['social-tab'] = '<li><a href="#tabs-3"><span class="dashicons dashicons-share"></span>'. __( 'Social', 'wp-seopress' ) .'</a></li>';
|
60 |
+
}
|
61 |
+
|
62 |
+
$seo_tabs['redirect-tab'] = '<li><a href="#tabs-4"><span class="dashicons dashicons-admin-links"></span>'. __( 'Redirection', 'wp-seopress' ) .'</a></li>';
|
63 |
+
|
64 |
+
if (is_plugin_active( 'wp-seopress-pro/seopress-pro.php' )) {
|
65 |
+
if (function_exists('seopress_get_toggle_news_option') && seopress_get_toggle_news_option() =='1') {
|
66 |
+
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
67 |
+
if ("seopress_404" != $typenow) {
|
68 |
+
$seo_tabs['news-tab'] = '<li><a href="#tabs-5"><span class="dashicons dashicons-admin-post"></span>'. __( 'Google News', 'wp-seopress' ) .'</a></li>';
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
70 |
}
|
71 |
}
|
72 |
+
if (function_exists('seopress_get_toggle_xml_sitemap_option') && seopress_get_toggle_xml_sitemap_option() =='1') {
|
|
|
|
|
|
|
|
|
|
|
73 |
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
74 |
+
if ("seopress_404" != $typenow) {
|
75 |
+
$seo_tabs['video-tab'] = '<li><a href="#tabs-6"><span class="dashicons dashicons-format-video"></span>'. __( 'Video Sitemap', 'wp-seopress' ) .'</a></li>';
|
76 |
}
|
77 |
}
|
78 |
}
|
79 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
|
81 |
+
$seo_tabs = apply_filters('seopress_metabox_seo_tabs', $seo_tabs);
|
82 |
|
83 |
+
if (!empty($seo_tabs)) {
|
84 |
+
echo'<ul>';
|
85 |
+
foreach($seo_tabs as $tab) {
|
86 |
+
echo $tab;
|
87 |
+
}
|
88 |
+
echo '</ul>';
|
89 |
+
}
|
90 |
|
91 |
+
if ("seopress_404" != $typenow) {
|
92 |
+
if (array_key_exists('title-tab', $seo_tabs)) {
|
93 |
+
echo '<div id="tabs-1">';
|
94 |
+
if (is_plugin_active( 'woocommerce/woocommerce.php' )) {
|
95 |
+
$shop_page_id = wc_get_page_id( 'shop' );
|
96 |
+
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
97 |
+
if ( $post && absint( $shop_page_id ) === absint( $post->ID ) ) {
|
98 |
+
echo '<p class="notice notice-info">'.__('This is your <strong>Shop page</strong>. Go to <strong>SEO > Titles & Metas > Archives > Products</strong> ','wp-seopress').' <a href="'.admin_url( 'admin.php?page=seopress-titles' ).'">'.__('to edit your title and meta description','wp-seopress').'</a></p>';
|
99 |
+
}
|
100 |
+
}
|
101 |
+
}
|
102 |
+
echo '<div class="box-left">
|
103 |
+
<p style="margin-bottom:0">
|
104 |
+
<label for="seopress_titles_title_meta">'. __( 'Title', 'wp-seopress' ) .'</label>
|
105 |
+
<input id="seopress_titles_title_meta" type="text" name="seopress_titles_title" placeholder="'.esc_html__('Enter your title','wp-seopress').'" aria-label="'.__('Title','wp-seopress').'" value="'.$seopress_titles_title.'" />
|
106 |
+
</p>
|
107 |
+
<div class="wrap-seopress-counters">
|
108 |
+
<div id="seopress_titles_title_pixel"></div>
|
109 |
+
<strong>'.__(' / 568 pixels - ','wp-seopress').'</strong>
|
110 |
+
<div id="seopress_titles_title_counters"></div>
|
111 |
+
'.__(' (maximum recommended limit)','wp-seopress').'
|
112 |
+
</div>
|
113 |
+
|
114 |
+
<div class="wrap-tags">
|
115 |
+
<span id="seopress-tag-single-title" data-tag="%%post_title%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Post Title','wp-seopress').'</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
|
117 |
+
<span id="seopress-tag-single-site-title" data-tag="%%sitetitle%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Site Title','wp-seopress').'</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
|
119 |
+
<span id="seopress-tag-single-sep" data-tag="%%sep%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Separator','wp-seopress').'</span>
|
120 |
+
</div>
|
|
|
|
|
|
|
121 |
|
122 |
+
<p style="margin-bottom:0">
|
123 |
+
<label for="seopress_titles_desc_meta">'. __( 'Meta description', 'wp-seopress' ) .'</label>
|
124 |
+
<textarea id="seopress_titles_desc_meta" style="width:100%" rows="8" name="seopress_titles_desc" placeholder="'.esc_html__('Enter your meta description','wp-seopress').'" aria-label="'.__('Meta description','wp-seopress').'" value="'.$seopress_titles_desc.'">'.$seopress_titles_desc.'</textarea>
|
125 |
+
</p>
|
126 |
+
<div class="wrap-seopress-counters">
|
127 |
+
<div id="seopress_titles_desc_pixel"></div>
|
128 |
+
<strong>'.__(' / 940 pixels - ','wp-seopress').'</strong>
|
129 |
+
<div id="seopress_titles_desc_counters"></div>
|
130 |
+
'.__(' (maximum recommended limit)','wp-seopress').'
|
131 |
+
</div>';
|
132 |
+
if ( $pagenow =='term.php' || $pagenow =='edit-tags.php') {
|
133 |
+
echo '<div class="wrap-tags">
|
134 |
+
<span id="seopress-tag-single-excerpt" data-tag="%%_category_description%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Category / term description','wp-seopress').'</span>
|
135 |
+
</div>';
|
136 |
+
} else {
|
137 |
+
echo '<div class="wrap-tags">
|
138 |
+
<span id="seopress-tag-single-excerpt" data-tag="%%post_excerpt%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Post Excerpt','wp-seopress').'</span>
|
139 |
+
</div>';
|
140 |
}
|
141 |
+
echo '</div>
|
142 |
+
<div class="box-right">
|
143 |
+
<div class="google-snippet-preview">
|
144 |
+
<h3>'.__('Google Snippet Preview','wp-seopress').'</h3>
|
145 |
+
<p>'.__('This is what your page will look like in Google search results. You have to publish your post to get the Google Snippet Preview.','wp-seopress').'</p>
|
146 |
+
<div class="snippet-title"></div>
|
147 |
+
<div class="snippet-title-custom" style="display:none"></div>';
|
148 |
+
global $tag;
|
149 |
+
if (get_the_title()) {
|
150 |
+
echo '<div class="snippet-title-default" style="display:none">'.get_the_title().' - '.get_bloginfo('name').'</div>
|
151 |
+
<div class="snippet-permalink">'.htmlspecialchars(urldecode(get_permalink())).'</div>';
|
152 |
+
} elseif ($tag) {
|
153 |
+
echo '<div class="snippet-title-default" style="display:none">'.$tag->name.' - '.get_bloginfo('name').'</div>';
|
154 |
+
echo '<div class="snippet-permalink">'.htmlspecialchars(urldecode(get_term_link($tag))).'</div>';
|
155 |
+
}
|
156 |
+
|
157 |
+
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
158 |
+
echo seopress_display_date_snippet();
|
159 |
+
}
|
160 |
+
echo '<div class="snippet-description">...</div>
|
161 |
+
<div class="snippet-description-custom" style="display:none"></div>
|
162 |
+
<div class="snippet-description-default" style="display:none"></div>';
|
163 |
+
echo '</div>
|
164 |
+
</div>
|
165 |
+
</div>';
|
166 |
}
|
167 |
+
if (array_key_exists('advanced-tab', $seo_tabs)) {
|
168 |
+
echo '<div id="tabs-2">
|
169 |
+
<p>
|
170 |
+
<label for="seopress_robots_index_meta">
|
171 |
+
<input type="checkbox" name="seopress_robots_index" id="seopress_robots_index_meta" value="yes" '. checked( $seopress_robots_index, 'yes', false ) .' '.$disabled['robots_index'].'/>
|
172 |
+
'. __( 'Do not display this page in search engine results / XML - HTML sitemaps <strong>(noindex)</strong>', 'wp-seopress' ) .'
|
173 |
+
</label>
|
174 |
+
</p>
|
175 |
+
<p>
|
176 |
+
<label for="seopress_robots_follow_meta">
|
177 |
+
<input type="checkbox" name="seopress_robots_follow" id="seopress_robots_follow_meta" value="yes" '. checked( $seopress_robots_follow, 'yes', false ) .' '.$disabled['robots_follow'].'/>
|
178 |
+
'. __( 'Do not follow links for this page <strong>(nofollow)</strong>', 'wp-seopress' ) .'
|
179 |
+
</label>
|
180 |
+
</p>
|
181 |
+
<p>
|
182 |
+
<label for="seopress_robots_odp_meta">
|
183 |
+
<input type="checkbox" name="seopress_robots_odp" id="seopress_robots_odp_meta" value="yes" '. checked( $seopress_robots_odp, 'yes', false ) .' '.$disabled['robots_odp'].'/>
|
184 |
+
'. __( 'Do not use Open Directory project metadata for titles or excerpts for this page <strong>(noodp)</strong>', 'wp-seopress' ) .'
|
185 |
+
</label>
|
186 |
+
</p>
|
187 |
+
<p>
|
188 |
+
<label for="seopress_robots_imageindex_meta">
|
189 |
+
<input type="checkbox" name="seopress_robots_imageindex" id="seopress_robots_imageindex_meta" value="yes" '. checked( $seopress_robots_imageindex, 'yes', false ) .' '.$disabled['imageindex'].'/>
|
190 |
+
'. __( 'Do not index images for this page <strong>(noimageindex)</strong>', 'wp-seopress' ) .'
|
191 |
+
</label>
|
192 |
+
</p>
|
193 |
+
<p>
|
194 |
+
<label for="seopress_robots_archive_meta">
|
195 |
+
<input type="checkbox" name="seopress_robots_archive" id="seopress_robots_archive_meta" value="yes" '. checked( $seopress_robots_archive, 'yes', false ) .' '.$disabled['archive'].'/>
|
196 |
+
'. __( 'Do not display a "Cached" link in the Google search results <strong>(noarchive)</strong>', 'wp-seopress' ) .'
|
197 |
+
</label>
|
198 |
+
</p>
|
199 |
+
<p>
|
200 |
+
<label for="seopress_robots_snippet_meta">
|
201 |
+
<input type="checkbox" name="seopress_robots_snippet" id="seopress_robots_snippet_meta" value="yes" '. checked( $seopress_robots_snippet, 'yes', false ) .' '.$disabled['snippet'].'/>
|
202 |
+
'. __( 'Do not display a description in search results for this page <strong>(nosnippet)</strong>', 'wp-seopress' ) .'
|
203 |
+
</label>
|
204 |
+
</p>
|
205 |
+
<p class="description">
|
206 |
+
'.__('You cannot uncheck a parameter? This is normal, and it\'s most likely defined in the global settings of the extension.','wp-seopress').'
|
207 |
+
</p>
|
208 |
+
<p>
|
209 |
+
<label for="seopress_robots_canonical_meta">'. __( 'Canonical URL', 'wp-seopress' ) .'</label>
|
210 |
+
<input id="seopress_robots_canonical_meta" type="text" name="seopress_robots_canonical" placeholder="'.esc_html__('Default value: ','wp-seopress').htmlspecialchars(urldecode(get_permalink())).'" aria-label="'.__('Canonical URL','wp-seopress').'" value="'.$seopress_robots_canonical.'" />
|
211 |
+
<span class="sp-tooltip"><span class="dashicons dashicons-editor-help"></span>
|
212 |
+
<span class="sp-tooltiptext">'.__('A canonical URL is the URL of the page that Google thinks is most representative from a set of duplicate pages on your site. For example, if you have URLs for the same page (for example: example.com?dress=1234 and example.com/dresses/1234), Google chooses one as canonical. Note that the pages do not need to be absolutely identical; minor changes in sorting or filtering of list pages do not make the page unique (for example, sorting by price or filtering by item color).
|
213 |
+
The canonical can be in a different domain than a duplicate.','wp-seopress').'</span>
|
214 |
+
</span>
|
215 |
</p>';
|
216 |
+
|
217 |
+
if ($typenow =='post' && ($pagenow == 'post.php' || $pagenow == 'post-new.php')) {
|
218 |
+
echo '<p>
|
219 |
+
<label for="seopress_robots_primary_cat_meta">'. __( 'Select a primary category', 'wp-seopress' ) .'</label>
|
220 |
+
<span class="description">'.__('Set the category that gets used in the %category% permalink if you have multiple categories.','wp-seopress').'</p>
|
221 |
+
<select name="seopress_robots_primary_cat">';
|
222 |
+
|
223 |
+
$cats = get_categories();
|
224 |
+
if (!empty($cats)) {
|
225 |
+
echo '<option '. selected( 'none', $seopress_robots_primary_cat, false ).' value="none">'.__('None (will disable this feature)','wp-seopress').'</option>';
|
226 |
+
foreach ($cats as $category) {
|
227 |
+
echo '<option '.selected( $category->term_id, $seopress_robots_primary_cat, false ).' value="'.$category->term_id.'">'. $category->name .'</option>';
|
228 |
+
}
|
229 |
+
}
|
230 |
+
echo '</select>
|
231 |
+
</p>';
|
232 |
+
}
|
233 |
+
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
234 |
+
if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
235 |
+
echo '<p>
|
236 |
+
<label for="seopress_robots_breadcrumbs_meta">'. __( 'Custom breadcrumbs', 'wp-seopress' ) .'</label>
|
237 |
+
<input id="seopress_robots_breadcrumbs_meta" type="text" name="seopress_robots_breadcrumbs" placeholder="'.esc_html__('Enter a custom value, useful if your title is too long','wp-seopress').'" aria-label="'.__('Custom breadcrumbs','wp-seopress').'" value="'.$seopress_robots_breadcrumbs.'" />
|
238 |
+
</p>';
|
239 |
+
}
|
240 |
+
}
|
241 |
+
echo '</div>';
|
242 |
+
}
|
243 |
+
if (array_key_exists('social-tab', $seo_tabs)) {
|
244 |
+
echo '<div id="tabs-3">
|
245 |
+
<span class="dashicons dashicons-facebook-alt"></span>
|
246 |
+
<br><br>
|
247 |
+
<span class="dashicons dashicons-external"></span><a href="https://developers.facebook.com/tools/debug/sharing/?q='.get_permalink(get_the_id()).'" target="_blank">'.__('Ask Facebook to update his cache','wp-seopress').'</a>
|
248 |
+
<p>
|
249 |
+
<label for="seopress_social_fb_title_meta">'. __( 'Facebook Title', 'wp-seopress' ) .'</label>
|
250 |
+
<input id="seopress_social_fb_title_meta" type="text" name="seopress_social_fb_title" placeholder="'.esc_html__('Enter your Facebook title','wp-seopress').'" aria-label="'.__('Facebook Title','wp-seopress').'" value="'.$seopress_social_fb_title.'" />
|
251 |
+
</p>
|
252 |
+
<p>
|
253 |
+
<label for="seopress_social_fb_desc_meta">'. __( 'Facebook description', 'wp-seopress' ) .'</label>
|
254 |
+
<textarea id="seopress_social_fb_desc_meta" name="seopress_social_fb_desc" placeholder="'.esc_html__('Enter your Facebook description','wp-seopress').'" aria-label="'.__('Facebook description','wp-seopress').'" value="'.$seopress_social_fb_desc.'">'.$seopress_social_fb_desc.'</textarea>
|
255 |
+
</p>
|
256 |
+
<p>
|
257 |
+
<label for="seopress_social_fb_img_meta">'. __( 'Facebook Thumbnail', 'wp-seopress' ) .'</label>
|
258 |
+
<input id="seopress_social_fb_img_meta" type="text" name="seopress_social_fb_img" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'" aria-label="'.__('Facebook Thumbnail','wp-seopress').'" value="'.$seopress_social_fb_img.'" />
|
259 |
+
<span class="advise">'.__('Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or 3280x1712px for retina screens)', 'wp-seopress').'</span>
|
260 |
+
<input id="seopress_social_fb_img_upload" class="button" type="button" value="'.__('Upload an Image','wp-seopress').'" />
|
261 |
+
</p>
|
262 |
+
<br/>
|
263 |
+
<span class="dashicons dashicons-twitter"></span>
|
264 |
+
<br><br>
|
265 |
+
<span class="dashicons dashicons-external"></span><a href="https://cards-dev.twitter.com/validator" target="_blank">'.__('Preview your Twitter card using the official validator','wp-seopress').'</a>
|
266 |
+
<p>
|
267 |
+
<label for="seopress_social_twitter_title_meta">'. __( 'Twitter Title', 'wp-seopress' ) .'</label>
|
268 |
+
<input id="seopress_social_twitter_title_meta" type="text" name="seopress_social_twitter_title" placeholder="'.esc_html__('Enter your Twitter title','wp-seopress').'" aria-label="'.__('Twitter Title','wp-seopress').'" value="'.$seopress_social_twitter_title.'" />
|
269 |
+
</p>
|
270 |
+
<p>
|
271 |
+
<label for="seopress_social_twitter_desc_meta">'. __( 'Twitter description', 'wp-seopress' ) .'</label>
|
272 |
+
<textarea id="seopress_social_twitter_desc_meta" name="seopress_social_twitter_desc" placeholder="'.esc_html__('Enter your Twitter description','wp-seopress').'" aria-label="'.__('Twitter description','wp-seopress').'" value="'.$seopress_social_twitter_desc.'">'.$seopress_social_twitter_desc.'</textarea>
|
273 |
+
</p>
|
274 |
+
<p>
|
275 |
+
<label for="seopress_social_twitter_img_meta">'. __( 'Twitter Thumbnail', 'wp-seopress' ) .'</label>
|
276 |
+
<input id="seopress_social_twitter_img_meta" type="text" name="seopress_social_twitter_img" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'" value="'.$seopress_social_twitter_img.'" />
|
277 |
+
<span class="advise">'. __('Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 (2:1 with large card), 5Mb max.', 'wp-seopress') .'</span>
|
278 |
+
<input id="seopress_social_twitter_img_upload" class="button" type="button" aria-label="'.__('Twitter Thumbnail','wp-seopress').'" value="'.__('Upload an Image','wp-seopress').'" />
|
279 |
+
</p>
|
280 |
+
</div>';
|
281 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
}
|
283 |
|
284 |
+
if (array_key_exists('redirect-tab', $seo_tabs)) {
|
285 |
+
echo '<div id="tabs-4">
|
286 |
+
<p>
|
287 |
+
<label for="seopress_redirections_enabled_meta" id="seopress_redirections_enabled">
|
288 |
+
<input type="checkbox" name="seopress_redirections_enabled" id="seopress_redirections_enabled_meta" value="yes" '. checked( $seopress_redirections_enabled, 'yes', false ) .' />
|
289 |
+
'. __( 'Enable redirection?', 'wp-seopress' ) .'
|
290 |
+
</label>
|
291 |
+
</p>
|
292 |
+
<p>
|
293 |
+
<label for="seopress_redirections_value_meta">'. __( 'URL redirection', 'wp-seopress' ) .'</label>
|
294 |
+
<select name="seopress_redirections_type">
|
295 |
+
<option ' . selected( '301', $seopress_redirections_type, false ) . ' value="301">'. __( '301 Moved Permanently', 'wp-seopress' ) .'</option>
|
296 |
+
<option ' . selected( '302', $seopress_redirections_type, false ) . ' value="302">'. __( '302 Found / Moved Temporarily', 'wp-seopress' ) .'</option>
|
297 |
+
<option ' . selected( '307', $seopress_redirections_type, false ) . ' value="307">'. __( '307 Moved Temporarily', 'wp-seopress' ) .'</option>
|
298 |
+
<option ' . selected( '410', $seopress_redirections_type, false ) . ' value="410">'. __( '410 Gone', 'wp-seopress' ) .'</option>
|
299 |
+
<option ' . selected( '451', $seopress_redirections_type, false ) . ' value="451">'. __( '451 Unavailable For Legal Reasons', 'wp-seopress' ) .'</option>
|
300 |
+
</select>
|
301 |
+
<input id="seopress_redirections_value_meta" type="text" name="seopress_redirections_value" placeholder="'.esc_html__('Enter your new URL in absolute (eg: https://www.example.com/)','wp-seopress').'" aria-label="'.__('URL redirection','wp-seopress').'" value="'.$seopress_redirections_value.'" />
|
302 |
+
<br><br>
|
303 |
+
</p>';
|
304 |
+
if ("seopress_404" == $typenow) {
|
305 |
+
echo '<p>
|
306 |
+
<label for="seopress_redirections_param_meta">'. __( 'Query parameters', 'wp-seopress' ) .'</label>
|
307 |
+
<select name="seopress_redirections_param">
|
308 |
+
<option ' . selected( 'exact_match', $seopress_redirections_param, false ) . ' value="exact_match">'. __( 'Exactly match all parameters', 'wp-seopress' ) .'</option>
|
309 |
+
<option ' . selected( 'without_param', $seopress_redirections_param, false ) . ' value="without_param">'. __( 'Exclude all parameters', 'wp-seopress' ) .'</option>
|
310 |
+
<option ' . selected( 'with_ignored_param', $seopress_redirections_param, false ) . ' value="with_ignored_param">'. __( 'Exclude all parameters and pass them to the redirection', 'wp-seopress' ) .'</option>
|
311 |
+
</select></p>';
|
312 |
+
}
|
313 |
+
echo '<p>';
|
314 |
+
if ($seopress_redirections_enabled =='yes') {
|
315 |
+
$status_code = array('410','451');
|
316 |
+
if ($seopress_redirections_value !='' || in_array($seopress_redirections_type, $status_code)) {
|
317 |
+
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
318 |
+
if ( 'seopress_404' == $typenow ) {
|
319 |
+
echo '<a href="'.get_home_url().'/'.get_the_title().'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
|
320 |
+
} else {
|
321 |
+
echo '<a href="'.get_permalink().'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
|
322 |
+
}
|
323 |
+
} elseif ( $pagenow == 'term.php' ) {
|
324 |
+
echo '<a href="'.get_term_link($term).'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
|
325 |
} else {
|
326 |
echo '<a href="'.get_permalink().'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
|
327 |
}
|
|
|
|
|
|
|
|
|
328 |
}
|
329 |
}
|
|
|
330 |
|
331 |
+
if (function_exists('seopress_get_locale')) {
|
332 |
+
if (seopress_get_locale() =='fr') {
|
333 |
+
$seopress_docs_link['support']['redirection'] = 'https://www.seopress.org/fr/support/guides/activer-redirections-301-surveillance-404/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
334 |
+
} else {
|
335 |
+
$seopress_docs_link['support']['redirection'] = 'https://www.seopress.org/support/guides/redirections/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
336 |
+
}
|
337 |
+
}
|
338 |
+
?>
|
339 |
+
<span class="dashicons dashicons-external"></span>
|
340 |
+
<a href="<?php echo $seopress_docs_link['support']['redirection']; ?>" target="_blank" class="seopress-doc"><?php _e('Need help with your redirections? Read our guide.','wp-seopress'); ?></a>
|
341 |
+
<?php echo
|
342 |
+
'</p>
|
343 |
+
</div>';
|
344 |
+
}
|
345 |
+
if (is_plugin_active( 'wp-seopress-pro/seopress-pro.php' )) {
|
346 |
+
if (function_exists('seopress_get_toggle_news_option') && seopress_get_toggle_news_option() =='1') {
|
347 |
+
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
348 |
+
if ("seopress_404" != $typenow) {
|
349 |
+
if (array_key_exists('news-tab', $seo_tabs)) {
|
350 |
+
echo '<div id="tabs-5">
|
351 |
+
<p>
|
352 |
+
<label for="seopress_news_disabled_meta" id="seopress_news_disabled">
|
353 |
+
<input type="checkbox" name="seopress_news_disabled" id="seopress_news_disabled_meta" value="yes" '. checked( $seopress_news_disabled, 'yes', false ) .' />
|
354 |
+
'. __( 'Exclude this post from Google News Sitemap?', 'wp-seopress' ) .'
|
355 |
+
</label>
|
356 |
+
</p>
|
357 |
+
</div>';
|
358 |
+
}
|
359 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
}
|
361 |
}
|
362 |
+
if (function_exists('seopress_get_toggle_xml_sitemap_option') && seopress_get_toggle_xml_sitemap_option() =='1') {
|
363 |
+
if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
|
364 |
+
if ("seopress_404" != $typenow) {
|
|
|
365 |
|
366 |
+
//Init $seopress_video array if empty
|
367 |
+
if (empty($seopress_video)) {
|
368 |
+
$seopress_video = array('0' => array(''));
|
369 |
+
}
|
370 |
|
371 |
+
$count = $seopress_video[0];
|
372 |
+
end($count);
|
373 |
+
$total = key($count);
|
374 |
|
375 |
+
if (array_key_exists('video-tab', $seo_tabs)) {
|
376 |
+
echo '<div id="tabs-6">
|
377 |
+
<p>
|
378 |
+
<label for="seopress_video_disabled_meta" id="seopress_video_disabled">
|
379 |
+
<input type="checkbox" name="seopress_video_disabled" id="seopress_video_disabled_meta" value="yes" '. checked( $seopress_video_disabled, 'yes', false ) .' />
|
380 |
+
'. __( 'Exclude this post from Video Sitemap?', 'wp-seopress' ) .'
|
381 |
+
</label>
|
382 |
+
<span class="advise">'. __('If your post is set to noindex, it will be automatically excluded from the sitemap.', 'wp-seopress') .'</span>
|
383 |
+
</p>
|
384 |
+
<div id="wrap-videos" data-count="'.$total.'">';
|
385 |
+
foreach ($seopress_video[0] as $key => $value) {
|
386 |
|
387 |
+
$check_url = isset($seopress_video[0][$key]["url"]) ? $seopress_video[0][$key]["url"] : NULL;
|
388 |
+
$check_internal_video = isset($seopress_video[0][$key]["internal_video"]) ? $seopress_video[0][$key]["internal_video"] : NULL;
|
389 |
+
$check_title = isset($seopress_video[0][$key]["title"]) ? $seopress_video[0][$key]["title"] : NULL;
|
390 |
+
$check_desc = isset($seopress_video[0][$key]["desc"]) ? $seopress_video[0][$key]["desc"] : NULL;
|
391 |
+
$check_thumbnail = isset($seopress_video[0][$key]["thumbnail"]) ? $seopress_video[0][$key]["thumbnail"] : NULL;
|
392 |
+
$check_duration = isset($seopress_video[0][$key]["duration"]) ? $seopress_video[0][$key]["duration"] : NULL;
|
393 |
+
$check_rating = isset($seopress_video[0][$key]["rating"]) ? $seopress_video[0][$key]["rating"] : NULL;
|
394 |
+
$check_view_count = isset($seopress_video[0][$key]["view_count"]) ? $seopress_video[0][$key]["view_count"] : NULL;
|
395 |
+
$check_view_count = isset($seopress_video[0][$key]["view_count"]) ? $seopress_video[0][$key]["view_count"] : NULL;
|
396 |
+
$check_tag = isset($seopress_video[0][$key]["tag"]) ? $seopress_video[0][$key]["tag"] : NULL;
|
397 |
+
$check_cat = isset($seopress_video[0][$key]["cat"]) ? $seopress_video[0][$key]["cat"] : NULL;
|
398 |
+
$check_family_friendly = isset($seopress_video[0][$key]["family_friendly"]) ? $seopress_video[0][$key]["family_friendly"] : NULL;
|
399 |
|
400 |
+
echo '<div class="video">
|
401 |
+
<h3 class="accordion-section-title" tabindex="0">'.__('Video ','wp-seopress').$check_title.'</h3>
|
402 |
+
<div class="accordion-section-content">
|
403 |
+
<div class="inside">
|
404 |
+
<p>
|
405 |
+
<label for="seopress_video['.$key.'][url_meta]">'. __( 'Video URL (required)', 'wp-seopress' ) .'</label>
|
406 |
+
<input id="seopress_video['.$key.'][url_meta]" type="text" name="seopress_video['.$key.'][url]" placeholder="'.esc_html__('Enter your video URL','wp-seopress').'" aria-label="'.__('Video URL','wp-seopress').'" value="'.$check_url.'" />
|
407 |
+
</p>
|
408 |
+
<p class="internal_video">
|
409 |
+
<label for="seopress_video['.$key.'][internal_video_meta]" id="seopress_video['.$key.'][internal_video]">
|
410 |
+
<input type="checkbox" name="seopress_video['.$key.'][internal_video]" id="seopress_video['.$key.'][internal_video_meta]" value="yes" '. checked( $check_internal_video, 'yes', false ) .' />
|
411 |
+
'. __( 'NOT an external video (eg: video hosting on YouTube, Vimeo, Wistia...)? Check this if your video is hosting on this server.', 'wp-seopress' ) .'
|
412 |
+
</label>
|
413 |
+
</p>
|
414 |
+
<p>
|
415 |
+
<label for="seopress_video['.$key.'][title_meta]">'. __( 'Video Title (required)', 'wp-seopress' ) .'</label>
|
416 |
+
<input id="seopress_video['.$key.'][title_meta]" type="text" name="seopress_video['.$key.'][title]" placeholder="'.esc_html__('Enter your video title','wp-seopress').'" aria-label="'.__('Video title','wp-seopress').'" value="'.$check_title.'" />
|
417 |
+
<span class="advise">'. __('Default: title tag, if not available, post title.', 'wp-seopress') .'</span>
|
418 |
+
</p>
|
419 |
+
<p>
|
420 |
+
<label for="seopress_video['.$key.'][desc_meta]">'. __( 'Video Description (required)', 'wp-seopress' ) .'</label>
|
421 |
+
<textarea id="seopress_video['.$key.'][desc_meta]" name="seopress_video['.$key.'][desc]" placeholder="'.esc_html__('Enter your video description','wp-seopress').'" aria-label="'.__('Video description','wp-seopress').'" value="'.$check_desc.'">'.$check_desc.'</textarea>
|
422 |
+
<span class="advise">'. __('2048 characters max.; default: meta description. If not available, use the beginning of the post content.', 'wp-seopress') .'</span>
|
423 |
+
</p>
|
424 |
+
<p>
|
425 |
+
<label for="seopress_video['.$key.'][thumbnail_meta]">'. __( 'Video Thumbnail (required)', 'wp-seopress' ) .'</label>
|
426 |
+
<input id="seopress_video['.$key.'][thumbnail_meta]" class="seopress_video_thumbnail_meta" type="text" name="seopress_video['.$key.'][thumbnail]" placeholder="'.esc_html__('Select your video thumbnail','wp-seopress').'" value="'.$check_thumbnail.'" />
|
427 |
+
<input class="button seopress_video_thumbnail_upload" type="button" aria-label="'.__('Video Thumbnail','wp-seopress').'" value="'.__('Upload an Image','wp-seopress').'" />
|
428 |
+
<span class="advise">'. __('Minimum size: 160x90px (1920x1080 max), JPG, PNG or GIF formats. Default: your post featured image.', 'wp-seopress') .'</span>
|
429 |
+
</p>
|
430 |
+
<p>
|
431 |
+
<label for="seopress_video['.$key.'][duration_meta]">'. __( 'Video Duration (recommended)', 'wp-seopress' ) .'</label>
|
432 |
+
<input id="seopress_video['.$key.'][duration_meta]" type="number" step="1" min="0" max="28800" name="seopress_video['.$key.'][duration]" placeholder="'.esc_html__('Duration in seconds','wp-seopress').'" aria-label="'.__('Video duration','wp-seopress').'" value="'.$check_duration.'" />
|
433 |
+
<span class="advise">'. __('The duration of the video in seconds. Value must be between 0 and 28800 (8 hours).', 'wp-seopress') .'</span>
|
434 |
+
</p>
|
435 |
+
<p>
|
436 |
+
<label for="seopress_video['.$key.'][rating_meta]">'. __( 'Video Rating', 'wp-seopress' ) .'</label>
|
437 |
+
<input id="seopress_video['.$key.'][rating_meta]" type="number" step="0.1" min="0" max="5" name="seopress_video['.$key.'][rating]" placeholder="'.esc_html__('Video rating','wp-seopress').'" aria-label="'.__('Video rating','wp-seopress').'" value="'.$check_rating.'" />
|
438 |
+
<span class="advise">'. __('Allowed values are float numbers in the range 0.0 to 5.0.', 'wp-seopress') .'</span>
|
439 |
+
</p>
|
440 |
+
<p>
|
441 |
+
<label for="seopress_video['.$key.'][view_count_meta]">'. __( 'View count', 'wp-seopress' ) .'</label>
|
442 |
+
<input id="seopress_video['.$key.'][view_count_meta]" type="number" name="seopress_video['.$key.'][view_count]" placeholder="'.esc_html__('Number of views','wp-seopress').'" aria-label="'.__('View count','wp-seopress').'" value="'.$check_view_count.'" />
|
443 |
+
</p>
|
444 |
+
<p>
|
445 |
+
<label for="seopress_video['.$key.'][tag_meta]">'. __( 'Video tags', 'wp-seopress' ) .'</label>
|
446 |
+
<input id="seopress_video['.$key.'][tag_meta]" type="text" name="seopress_video['.$key.'][tag]" placeholder="'.esc_html__('Enter your video tags','wp-seopress').'" aria-label="'.__('Video tags','wp-seopress').'" value="'.$check_tag.'" />
|
447 |
+
<span class="advise">'. __('32 tags max., separate tags with commas. Default: target keywords + post tags if available.', 'wp-seopress') .'</span>
|
448 |
+
</p>
|
449 |
+
<p>
|
450 |
+
<label for="seopress_video['.$key.'][cat_meta]">'. __( 'Video categories', 'wp-seopress' ) .'</label>
|
451 |
+
<input id="seopress_video['.$key.'][cat_meta]" type="text" name="seopress_video['.$key.'][cat]" placeholder="'.esc_html__('Enter your video categories','wp-seopress').'" aria-label="'.__('Video categories','wp-seopress').'" value="'.$check_cat.'" />
|
452 |
+
<span class="advise">'. __('256 characters max., usually a video will belong to a single category, separate categories with commas. Default: first post category if available.', 'wp-seopress') .'</span>
|
453 |
+
</p>
|
454 |
+
<p class="family-friendly">
|
455 |
+
<label for="seopress_video['.$key.'][family_friendly_meta]" id="seopress_video['.$key.'][family_friendly]">
|
456 |
+
<input type="checkbox" name="seopress_video['.$key.'][family_friendly]" id="seopress_video['.$key.'][family_friendly_meta]" value="yes" '. checked( $check_family_friendly, 'yes', false ) .' />
|
457 |
+
'. __( 'NOT family friendly?', 'wp-seopress' ) .'
|
458 |
+
</label>
|
459 |
+
<span class="advise">'. __('The video will be available only to users with SafeSearch turned off.', 'wp-seopress') .'</span>
|
460 |
+
</p>
|
461 |
+
<p><a href="#" class="remove-video button">'.__('Remove video','wp-seopress').'</a></p>
|
462 |
+
</div>
|
463 |
+
</div>
|
464 |
</div>
|
465 |
+
';
|
466 |
+
}
|
467 |
+
echo '</div>
|
468 |
+
<p><a href="#" id="add-video" class="add-video button button-primary">'.__('Add video','wp-seopress').'</a></p>
|
469 |
+
</div>';
|
470 |
}
|
471 |
+
}
|
|
|
|
|
472 |
}
|
473 |
}
|
474 |
}
|
475 |
+
echo '</div>';
|
|
|
476 |
|
477 |
if ( $pagenow =='term.php' || $pagenow =='edit-tags.php') {
|
478 |
echo '</div>';
|
480 |
echo '</td>';
|
481 |
echo '</tr>';
|
482 |
}
|
483 |
+
echo '<input type="hidden" id="seo_tabs" name="seo_tabs" value="'.htmlspecialchars(json_encode(array_keys($seo_tabs))).'">';
|
inc/admin/admin-metaboxes.php
CHANGED
@@ -279,7 +279,7 @@ function seopress_display_seo_metaboxe() {
|
|
279 |
$seopress_video = get_post_meta($post->ID,'_seopress_video');
|
280 |
}
|
281 |
|
282 |
-
require_once ( dirname( __FILE__ ) . '/admin-metaboxes-form.php'); //Metaboxe HTML
|
283 |
}
|
284 |
|
285 |
add_action('save_post','seopress_save_metabox', 10, 2);
|
@@ -296,98 +296,113 @@ function seopress_display_seo_metaboxe() {
|
|
296 |
return $post_id;
|
297 |
|
298 |
if ( 'attachment' !== get_post_type($post_id)) {
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
if(
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
delete_post_meta( $post_id, '_seopress_robots_index', '' );
|
309 |
-
}
|
310 |
-
if( isset( $_POST[ 'seopress_robots_follow' ] ) ) {
|
311 |
-
update_post_meta( $post_id, '_seopress_robots_follow', 'yes' );
|
312 |
-
} else {
|
313 |
-
delete_post_meta( $post_id, '_seopress_robots_follow', '' );
|
314 |
-
}
|
315 |
-
if( isset( $_POST[ 'seopress_robots_odp' ] ) ) {
|
316 |
-
update_post_meta( $post_id, '_seopress_robots_odp', 'yes' );
|
317 |
-
} else {
|
318 |
-
delete_post_meta( $post_id, '_seopress_robots_odp', '' );
|
319 |
-
}
|
320 |
-
if( isset( $_POST[ 'seopress_robots_imageindex' ] ) ) {
|
321 |
-
update_post_meta( $post_id, '_seopress_robots_imageindex', 'yes' );
|
322 |
-
} else {
|
323 |
-
delete_post_meta( $post_id, '_seopress_robots_imageindex', '' );
|
324 |
-
}
|
325 |
-
if( isset( $_POST[ 'seopress_robots_archive' ] ) ) {
|
326 |
-
update_post_meta( $post_id, '_seopress_robots_archive', 'yes' );
|
327 |
-
} else {
|
328 |
-
delete_post_meta( $post_id, '_seopress_robots_archive', '' );
|
329 |
-
}
|
330 |
-
if( isset( $_POST[ 'seopress_robots_snippet' ] ) ) {
|
331 |
-
update_post_meta( $post_id, '_seopress_robots_snippet', 'yes' );
|
332 |
-
} else {
|
333 |
-
delete_post_meta( $post_id, '_seopress_robots_snippet', '' );
|
334 |
-
}
|
335 |
-
if(isset($_POST['seopress_robots_canonical'])){
|
336 |
-
update_post_meta($post_id, '_seopress_robots_canonical', esc_html($_POST['seopress_robots_canonical']));
|
337 |
-
}
|
338 |
-
if(isset($_POST['seopress_robots_primary_cat'])){
|
339 |
-
update_post_meta($post_id, '_seopress_robots_primary_cat', esc_html($_POST['seopress_robots_primary_cat']));
|
340 |
-
}
|
341 |
-
if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
342 |
-
if(isset($_POST['seopress_robots_breadcrumbs'])){
|
343 |
-
update_post_meta($post_id, '_seopress_robots_breadcrumbs', esc_html($_POST['seopress_robots_breadcrumbs']));
|
344 |
}
|
345 |
}
|
346 |
-
if(
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
}
|
373 |
-
if
|
374 |
-
|
375 |
-
|
376 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
}
|
378 |
-
if (
|
379 |
-
if(
|
380 |
-
update_post_meta(
|
381 |
-
}
|
382 |
-
|
|
|
|
|
|
|
|
|
383 |
}
|
384 |
-
if( isset( $_POST[ '
|
385 |
-
update_post_meta( $post_id, '
|
386 |
} else {
|
387 |
-
delete_post_meta( $post_id, '
|
388 |
}
|
389 |
-
|
390 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
}
|
392 |
}
|
393 |
}
|
279 |
$seopress_video = get_post_meta($post->ID,'_seopress_video');
|
280 |
}
|
281 |
|
282 |
+
require_once ( dirname( __FILE__ ) . '/admin-metaboxes-form.php'); //Metaboxe HTML
|
283 |
}
|
284 |
|
285 |
add_action('save_post','seopress_save_metabox', 10, 2);
|
296 |
return $post_id;
|
297 |
|
298 |
if ( 'attachment' !== get_post_type($post_id)) {
|
299 |
+
$seo_tabs = array();
|
300 |
+
$seo_tabs = json_decode(stripslashes(htmlspecialchars_decode($_POST['seo_tabs'])));
|
301 |
+
|
302 |
+
if (in_array('title-tab', $seo_tabs)) {
|
303 |
+
if(isset($_POST['seopress_titles_title'])){
|
304 |
+
update_post_meta($post_id, '_seopress_titles_title', esc_html($_POST['seopress_titles_title']));
|
305 |
+
}
|
306 |
+
if(isset($_POST['seopress_titles_desc'])){
|
307 |
+
update_post_meta($post_id, '_seopress_titles_desc', esc_html($_POST['seopress_titles_desc']));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
}
|
309 |
}
|
310 |
+
if (in_array('advanced-tab', $seo_tabs)) {
|
311 |
+
if( isset( $_POST[ 'seopress_robots_index' ] ) ) {
|
312 |
+
update_post_meta( $post_id, '_seopress_robots_index', 'yes' );
|
313 |
+
} else {
|
314 |
+
delete_post_meta( $post_id, '_seopress_robots_index', '' );
|
315 |
+
}
|
316 |
+
if( isset( $_POST[ 'seopress_robots_follow' ] ) ) {
|
317 |
+
update_post_meta( $post_id, '_seopress_robots_follow', 'yes' );
|
318 |
+
} else {
|
319 |
+
delete_post_meta( $post_id, '_seopress_robots_follow', '' );
|
320 |
+
}
|
321 |
+
if( isset( $_POST[ 'seopress_robots_odp' ] ) ) {
|
322 |
+
update_post_meta( $post_id, '_seopress_robots_odp', 'yes' );
|
323 |
+
} else {
|
324 |
+
delete_post_meta( $post_id, '_seopress_robots_odp', '' );
|
325 |
+
}
|
326 |
+
if( isset( $_POST[ 'seopress_robots_imageindex' ] ) ) {
|
327 |
+
update_post_meta( $post_id, '_seopress_robots_imageindex', 'yes' );
|
328 |
+
} else {
|
329 |
+
delete_post_meta( $post_id, '_seopress_robots_imageindex', '' );
|
330 |
+
}
|
331 |
+
if( isset( $_POST[ 'seopress_robots_archive' ] ) ) {
|
332 |
+
update_post_meta( $post_id, '_seopress_robots_archive', 'yes' );
|
333 |
+
} else {
|
334 |
+
delete_post_meta( $post_id, '_seopress_robots_archive', '' );
|
335 |
+
}
|
336 |
+
if( isset( $_POST[ 'seopress_robots_snippet' ] ) ) {
|
337 |
+
update_post_meta( $post_id, '_seopress_robots_snippet', 'yes' );
|
338 |
+
} else {
|
339 |
+
delete_post_meta( $post_id, '_seopress_robots_snippet', '' );
|
340 |
+
}
|
341 |
+
if(isset($_POST['seopress_robots_canonical'])){
|
342 |
+
update_post_meta($post_id, '_seopress_robots_canonical', esc_html($_POST['seopress_robots_canonical']));
|
343 |
+
}
|
344 |
+
if(isset($_POST['seopress_robots_primary_cat'])){
|
345 |
+
update_post_meta($post_id, '_seopress_robots_primary_cat', esc_html($_POST['seopress_robots_primary_cat']));
|
346 |
+
}
|
347 |
+
if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
348 |
+
if(isset($_POST['seopress_robots_breadcrumbs'])){
|
349 |
+
update_post_meta($post_id, '_seopress_robots_breadcrumbs', esc_html($_POST['seopress_robots_breadcrumbs']));
|
350 |
+
}
|
351 |
+
}
|
352 |
}
|
353 |
+
if (in_array('social-tab', $seo_tabs)) {
|
354 |
+
if(isset($_POST['seopress_social_fb_title'])){
|
355 |
+
update_post_meta($post_id, '_seopress_social_fb_title', esc_html($_POST['seopress_social_fb_title']));
|
356 |
+
}
|
357 |
+
if(isset($_POST['seopress_social_fb_desc'])){
|
358 |
+
update_post_meta($post_id, '_seopress_social_fb_desc', esc_html($_POST['seopress_social_fb_desc']));
|
359 |
+
}
|
360 |
+
if(isset($_POST['seopress_social_fb_img'])){
|
361 |
+
update_post_meta($post_id, '_seopress_social_fb_img', esc_html($_POST['seopress_social_fb_img']));
|
362 |
+
}
|
363 |
+
if(isset($_POST['seopress_social_twitter_title'])){
|
364 |
+
update_post_meta($post_id, '_seopress_social_twitter_title', esc_html($_POST['seopress_social_twitter_title']));
|
365 |
+
}
|
366 |
+
if(isset($_POST['seopress_social_twitter_desc'])){
|
367 |
+
update_post_meta($post_id, '_seopress_social_twitter_desc', esc_html($_POST['seopress_social_twitter_desc']));
|
368 |
+
}
|
369 |
+
if(isset($_POST['seopress_social_twitter_img'])){
|
370 |
+
update_post_meta($post_id, '_seopress_social_twitter_img', esc_html($_POST['seopress_social_twitter_img']));
|
371 |
+
}
|
372 |
}
|
373 |
+
if (in_array('redirect-tab', $seo_tabs)) {
|
374 |
+
if(isset($_POST['seopress_redirections_type'])){
|
375 |
+
update_post_meta($post_id, '_seopress_redirections_type', $_POST['seopress_redirections_type']);
|
376 |
+
}
|
377 |
+
if(isset($_POST['seopress_redirections_value'])){
|
378 |
+
update_post_meta($post_id, '_seopress_redirections_value', esc_html($_POST['seopress_redirections_value']));
|
379 |
+
}
|
380 |
+
if(isset($_POST['seopress_redirections_param'])){
|
381 |
+
update_post_meta($post_id, '_seopress_redirections_param', esc_html($_POST['seopress_redirections_param']));
|
382 |
}
|
383 |
+
if( isset( $_POST[ 'seopress_redirections_enabled' ] ) ) {
|
384 |
+
update_post_meta( $post_id, '_seopress_redirections_enabled', 'yes' );
|
385 |
} else {
|
386 |
+
delete_post_meta( $post_id, '_seopress_redirections_enabled', '' );
|
387 |
}
|
388 |
+
}
|
389 |
+
if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
390 |
+
if (in_array('news-tab', $seo_tabs)) {
|
391 |
+
if( isset( $_POST[ 'seopress_news_disabled' ] ) ) {
|
392 |
+
update_post_meta( $post_id, '_seopress_news_disabled', 'yes' );
|
393 |
+
} else {
|
394 |
+
delete_post_meta( $post_id, '_seopress_news_disabled', '' );
|
395 |
+
}
|
396 |
+
}
|
397 |
+
if (in_array('video-tab', $seo_tabs)) {
|
398 |
+
if( isset( $_POST[ 'seopress_video_disabled' ] ) ) {
|
399 |
+
update_post_meta( $post_id, '_seopress_video_disabled', 'yes' );
|
400 |
+
} else {
|
401 |
+
delete_post_meta( $post_id, '_seopress_video_disabled', '' );
|
402 |
+
}
|
403 |
+
if(isset($_POST['seopress_video'])){
|
404 |
+
update_post_meta($post_id, '_seopress_video', $_POST['seopress_video']);
|
405 |
+
}
|
406 |
}
|
407 |
}
|
408 |
}
|
inc/admin/admin-term-metaboxes.php
CHANGED
@@ -184,6 +184,8 @@ function seopress_display_seo_term_metaboxe() {
|
|
184 |
}
|
185 |
|
186 |
function seopress_tax($term) {
|
|
|
|
|
187 |
global $typenow;
|
188 |
|
189 |
//init
|
@@ -273,73 +275,95 @@ function seopress_display_seo_term_metaboxe() {
|
|
273 |
}
|
274 |
|
275 |
function seopress_tax_save_term( $term_id ) {
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
if( isset( $_POST[ 'seopress_robots_imageindex' ] ) ) {
|
298 |
-
update_term_meta( $term_id, '_seopress_robots_imageindex', 'yes' );
|
299 |
-
} else {
|
300 |
-
delete_term_meta( $term_id, '_seopress_robots_imageindex', '' );
|
301 |
-
}
|
302 |
-
if( isset( $_POST[ 'seopress_robots_archive' ] ) ) {
|
303 |
-
update_term_meta( $term_id, '_seopress_robots_archive', 'yes' );
|
304 |
-
} else {
|
305 |
-
delete_term_meta( $term_id, '_seopress_robots_archive', '' );
|
306 |
-
}
|
307 |
-
if( isset( $_POST[ 'seopress_robots_snippet' ] ) ) {
|
308 |
-
update_term_meta( $term_id, '_seopress_robots_snippet', 'yes' );
|
309 |
-
} else {
|
310 |
-
delete_term_meta( $term_id, '_seopress_robots_snippet', '' );
|
311 |
-
}
|
312 |
-
if(isset($_POST['seopress_robots_canonical'])){
|
313 |
-
update_term_meta($term_id, '_seopress_robots_canonical', esc_html($_POST['seopress_robots_canonical']));
|
314 |
-
}
|
315 |
-
if(isset($_POST['seopress_social_fb_title'])){
|
316 |
-
update_term_meta($term_id, '_seopress_social_fb_title', esc_html($_POST['seopress_social_fb_title']));
|
317 |
-
}
|
318 |
-
if(isset($_POST['seopress_social_fb_desc'])){
|
319 |
-
update_term_meta($term_id, '_seopress_social_fb_desc', esc_html($_POST['seopress_social_fb_desc']));
|
320 |
-
}
|
321 |
-
if(isset($_POST['seopress_social_fb_img'])){
|
322 |
-
update_term_meta($term_id, '_seopress_social_fb_img', esc_html($_POST['seopress_social_fb_img']));
|
323 |
-
}
|
324 |
-
if(isset($_POST['seopress_social_twitter_title'])){
|
325 |
-
update_term_meta($term_id, '_seopress_social_twitter_title', esc_html($_POST['seopress_social_twitter_title']));
|
326 |
}
|
327 |
-
if(
|
328 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
}
|
330 |
-
if(
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
338 |
}
|
339 |
-
if
|
340 |
-
|
341 |
-
|
342 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
343 |
}
|
344 |
}
|
345 |
}
|
184 |
}
|
185 |
|
186 |
function seopress_tax($term) {
|
187 |
+
wp_nonce_field( plugin_basename( __FILE__ ), 'seopress_cpt_nonce' );
|
188 |
+
|
189 |
global $typenow;
|
190 |
|
191 |
//init
|
275 |
}
|
276 |
|
277 |
function seopress_tax_save_term( $term_id ) {
|
278 |
+
//Nonce
|
279 |
+
if ( !isset( $_POST['seopress_cpt_nonce'] ) || !wp_verify_nonce( $_POST['seopress_cpt_nonce'], plugin_basename( __FILE__ ) ) )
|
280 |
+
return $term_id;
|
281 |
+
|
282 |
+
//Taxonomy object
|
283 |
+
$taxonomy = get_taxonomy(get_current_screen()->taxonomy);
|
284 |
+
|
285 |
+
//Check permission
|
286 |
+
if ( !current_user_can( $taxonomy->cap->edit_terms, $term_id ) )
|
287 |
+
return $term_id;
|
288 |
+
|
289 |
+
$seo_tabs = array();
|
290 |
+
$seo_tabs = json_decode(stripslashes(htmlspecialchars_decode($_POST['seo_tabs'])));
|
291 |
+
|
292 |
+
if (in_array('title-tab', $seo_tabs)) {
|
293 |
+
if(isset($_POST['seopress_titles_title'])){
|
294 |
+
update_term_meta($term_id, '_seopress_titles_title', esc_html($_POST['seopress_titles_title']));
|
295 |
+
}
|
296 |
+
if(isset($_POST['seopress_titles_desc'])){
|
297 |
+
update_term_meta($term_id, '_seopress_titles_desc', esc_html($_POST['seopress_titles_desc']));
|
298 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
}
|
300 |
+
if (in_array('advanced-tab', $seo_tabs)) {
|
301 |
+
if( isset( $_POST[ 'seopress_robots_index' ] ) ) {
|
302 |
+
update_term_meta( $term_id, '_seopress_robots_index', 'yes' );
|
303 |
+
} else {
|
304 |
+
delete_term_meta( $term_id, '_seopress_robots_index', '' );
|
305 |
+
}
|
306 |
+
if( isset( $_POST[ 'seopress_robots_follow' ] ) ) {
|
307 |
+
update_term_meta( $term_id, '_seopress_robots_follow', 'yes' );
|
308 |
+
} else {
|
309 |
+
delete_term_meta( $term_id, '_seopress_robots_follow', '' );
|
310 |
+
}
|
311 |
+
if( isset( $_POST[ 'seopress_robots_odp' ] ) ) {
|
312 |
+
update_term_meta( $term_id, '_seopress_robots_odp', 'yes' );
|
313 |
+
} else {
|
314 |
+
delete_term_meta( $term_id, '_seopress_robots_odp', '' );
|
315 |
+
}
|
316 |
+
if( isset( $_POST[ 'seopress_robots_imageindex' ] ) ) {
|
317 |
+
update_term_meta( $term_id, '_seopress_robots_imageindex', 'yes' );
|
318 |
+
} else {
|
319 |
+
delete_term_meta( $term_id, '_seopress_robots_imageindex', '' );
|
320 |
+
}
|
321 |
+
if( isset( $_POST[ 'seopress_robots_archive' ] ) ) {
|
322 |
+
update_term_meta( $term_id, '_seopress_robots_archive', 'yes' );
|
323 |
+
} else {
|
324 |
+
delete_term_meta( $term_id, '_seopress_robots_archive', '' );
|
325 |
+
}
|
326 |
+
if( isset( $_POST[ 'seopress_robots_snippet' ] ) ) {
|
327 |
+
update_term_meta( $term_id, '_seopress_robots_snippet', 'yes' );
|
328 |
+
} else {
|
329 |
+
delete_term_meta( $term_id, '_seopress_robots_snippet', '' );
|
330 |
+
}
|
331 |
+
if(isset($_POST['seopress_robots_canonical'])){
|
332 |
+
update_term_meta($term_id, '_seopress_robots_canonical', esc_html($_POST['seopress_robots_canonical']));
|
333 |
+
}
|
334 |
}
|
335 |
+
if (in_array('social-tab', $seo_tabs)) {
|
336 |
+
if(isset($_POST['seopress_social_fb_title'])){
|
337 |
+
update_term_meta($term_id, '_seopress_social_fb_title', esc_html($_POST['seopress_social_fb_title']));
|
338 |
+
}
|
339 |
+
if(isset($_POST['seopress_social_fb_desc'])){
|
340 |
+
update_term_meta($term_id, '_seopress_social_fb_desc', esc_html($_POST['seopress_social_fb_desc']));
|
341 |
+
}
|
342 |
+
if(isset($_POST['seopress_social_fb_img'])){
|
343 |
+
update_term_meta($term_id, '_seopress_social_fb_img', esc_html($_POST['seopress_social_fb_img']));
|
344 |
+
}
|
345 |
+
if(isset($_POST['seopress_social_twitter_title'])){
|
346 |
+
update_term_meta($term_id, '_seopress_social_twitter_title', esc_html($_POST['seopress_social_twitter_title']));
|
347 |
+
}
|
348 |
+
if(isset($_POST['seopress_social_twitter_desc'])){
|
349 |
+
update_term_meta($term_id, '_seopress_social_twitter_desc', esc_html($_POST['seopress_social_twitter_desc']));
|
350 |
+
}
|
351 |
+
if(isset($_POST['seopress_social_twitter_img'])){
|
352 |
+
update_term_meta($term_id, '_seopress_social_twitter_img', esc_html($_POST['seopress_social_twitter_img']));
|
353 |
+
}
|
354 |
}
|
355 |
+
if (in_array('redirect-tab', $seo_tabs)) {
|
356 |
+
if(isset($_POST['seopress_redirections_type'])){
|
357 |
+
update_term_meta($term_id, '_seopress_redirections_type', $_POST['seopress_redirections_type']);
|
358 |
+
}
|
359 |
+
if(isset($_POST['seopress_redirections_value'])){
|
360 |
+
update_term_meta($term_id, '_seopress_redirections_value', esc_html($_POST['seopress_redirections_value']));
|
361 |
+
}
|
362 |
+
if( isset( $_POST[ 'seopress_redirections_enabled' ] ) ) {
|
363 |
+
update_term_meta( $term_id, '_seopress_redirections_enabled', 'yes' );
|
364 |
+
} else {
|
365 |
+
delete_term_meta( $term_id, '_seopress_redirections_enabled', '' );
|
366 |
+
}
|
367 |
}
|
368 |
}
|
369 |
}
|
inc/admin/admin-wizard.php
CHANGED
@@ -56,7 +56,7 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
56 |
*/
|
57 |
public function enqueue_scripts() {
|
58 |
wp_enqueue_style( 'seopress-setup', plugins_url( 'assets/css/seopress-setup.min.css', dirname(dirname(__FILE__))), array( 'dashicons', 'install' ), SEOPRESS_VERSION );
|
59 |
-
wp_register_script( 'seopress-migrate-ajax', plugins_url( 'assets/js/seopress-migrate.js', dirname(dirname(__FILE__))), array( 'jquery' ), SEOPRESS_VERSION, true );
|
60 |
|
61 |
$seopress_migrate = array(
|
62 |
'seopress_aio_migrate' => array(
|
56 |
*/
|
57 |
public function enqueue_scripts() {
|
58 |
wp_enqueue_style( 'seopress-setup', plugins_url( 'assets/css/seopress-setup.min.css', dirname(dirname(__FILE__))), array( 'dashicons', 'install' ), SEOPRESS_VERSION );
|
59 |
+
wp_register_script( 'seopress-migrate-ajax', plugins_url( 'assets/js/seopress-migrate.min.js', dirname(dirname(__FILE__))), array( 'jquery' ), SEOPRESS_VERSION, true );
|
60 |
|
61 |
$seopress_migrate = array(
|
62 |
'seopress_aio_migrate' => array(
|
inc/admin/admin.php
CHANGED
@@ -1785,7 +1785,7 @@ class seopress_options
|
|
1785 |
</div>
|
1786 |
<span class="inner">
|
1787 |
<h3><?php _e('Structured Data Types','wp-seopress'); ?></h3>
|
1788 |
-
<p><?php _e('Add data types to your content: articles, courses, recipes, videos, events and
|
1789 |
<a class="button-secondary" href="<?php echo admin_url( 'admin.php?page=seopress-pro-page#tab=tab_seopress_rich_snippets$9' ); ?>"><?php _e('Manage','wp-seopress'); ?></a>
|
1790 |
<a class="button-secondary view-redirects" href="<?php echo admin_url( 'edit.php?post_type=seopress_schemas' ); ?>"><?php _e('See schemas','wp-seopress'); ?></a>
|
1791 |
<?php
|
@@ -3023,7 +3023,7 @@ class seopress_options
|
|
3023 |
|
3024 |
add_settings_field(
|
3025 |
'seopress_google_analytics_link_tracking_enable', // ID
|
3026 |
-
__("Enable external links tracking
|
3027 |
array( $this, 'seopress_google_analytics_link_tracking_enable_callback' ), // Callback
|
3028 |
'seopress-settings-admin-google-analytics-events', // Page
|
3029 |
'seopress_setting_section_google_analytics_events' // Section
|
1785 |
</div>
|
1786 |
<span class="inner">
|
1787 |
<h3><?php _e('Structured Data Types','wp-seopress'); ?></h3>
|
1788 |
+
<p><?php _e('Add data types to your content: articles, courses, recipes, videos, events, products and more.','wp-seopress'); ?></p>
|
1789 |
<a class="button-secondary" href="<?php echo admin_url( 'admin.php?page=seopress-pro-page#tab=tab_seopress_rich_snippets$9' ); ?>"><?php _e('Manage','wp-seopress'); ?></a>
|
1790 |
<a class="button-secondary view-redirects" href="<?php echo admin_url( 'edit.php?post_type=seopress_schemas' ); ?>"><?php _e('See schemas','wp-seopress'); ?></a>
|
1791 |
<?php
|
3023 |
|
3024 |
add_settings_field(
|
3025 |
'seopress_google_analytics_link_tracking_enable', // ID
|
3026 |
+
__("Enable external links tracking","wp-seopress"), // Title
|
3027 |
array( $this, 'seopress_google_analytics_link_tracking_enable_callback' ), // Callback
|
3028 |
'seopress-settings-admin-google-analytics-events', // Page
|
3029 |
'seopress_setting_section_google_analytics_events' // Section
|
inc/functions/options-google-analytics.php
CHANGED
@@ -482,14 +482,16 @@ $seopress_google_analytics_html .= "gtag('js', new Date());\n";
|
|
482 |
if (seopress_google_analytics_link_tracking_enable_option() !='') {
|
483 |
$seopress_google_analytics_click_event['link_tracking'] =
|
484 |
"window.addEventListener('load', function () {
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
}
|
492 |
-
|
|
|
|
|
493 |
$seopress_google_analytics_click_event['link_tracking'] = apply_filters('seopress_gtag_link_tracking_ev', $seopress_google_analytics_click_event['link_tracking']);
|
494 |
$seopress_google_analytics_html .= $seopress_google_analytics_click_event['link_tracking'];
|
495 |
}
|
482 |
if (seopress_google_analytics_link_tracking_enable_option() !='') {
|
483 |
$seopress_google_analytics_click_event['link_tracking'] =
|
484 |
"window.addEventListener('load', function () {
|
485 |
+
var links = document.querySelectorAll('a');
|
486 |
+
for (let i = 0; i < links.length; i++) {
|
487 |
+
links[i].addEventListener('click', function(e) {
|
488 |
+
var n = this.href.includes('".get_home_url()."');
|
489 |
+
if (n == false) {
|
490 |
+
gtag('event', 'click', {'event_category': 'external links','event_label' : this.href});
|
491 |
+
}
|
492 |
+
});
|
493 |
+
}
|
494 |
+
});";
|
495 |
$seopress_google_analytics_click_event['link_tracking'] = apply_filters('seopress_gtag_link_tracking_ev', $seopress_google_analytics_click_event['link_tracking']);
|
496 |
$seopress_google_analytics_html .= $seopress_google_analytics_click_event['link_tracking'];
|
497 |
}
|
inc/functions/sitemap/template-xml-sitemaps-single.php
CHANGED
@@ -52,9 +52,12 @@ function seopress_xml_sitemap_single() {
|
|
52 |
$offset = preg_match_all('/\d+/', $offset, $matches);
|
53 |
$offset = end($matches[0]);
|
54 |
|
|
|
|
|
|
|
55 |
|
56 |
if (isset($offset) && absint($offset) && $offset !='' && $offset !=0) {
|
57 |
-
$offset = (($offset-1)
|
58 |
} else {
|
59 |
$offset = 0;
|
60 |
}
|
52 |
$offset = preg_match_all('/\d+/', $offset, $matches);
|
53 |
$offset = end($matches[0]);
|
54 |
|
55 |
+
//Max posts per paginated sitemap
|
56 |
+
$max = 1000;
|
57 |
+
$max = apply_filters('seopress_sitemaps_max_posts_per_sitemap', $max);
|
58 |
|
59 |
if (isset($offset) && absint($offset) && $offset !='' && $offset !=0) {
|
60 |
+
$offset = (($offset-1)*$max);
|
61 |
} else {
|
62 |
$offset = 0;
|
63 |
}
|
inc/functions/sitemap/template-xml-sitemaps.php
CHANGED
@@ -43,12 +43,16 @@ function seopress_xml_sitemap_index() {
|
|
43 |
|
44 |
$count_posts = wp_count_posts($cpt_key);
|
45 |
|
|
|
|
|
|
|
|
|
46 |
if (isset($count_posts->publish)) {
|
47 |
$published_posts = $count_posts->publish;
|
48 |
}
|
49 |
|
50 |
-
if ($published_posts >=
|
51 |
-
$max_loop = $published_posts /
|
52 |
} else {
|
53 |
$max_loop = 1;
|
54 |
}
|
@@ -58,7 +62,7 @@ function seopress_xml_sitemap_index() {
|
|
58 |
for ($i=0; $i < $max_loop ; $i++) {
|
59 |
|
60 |
if (isset($offset) && absint($offset) && $offset !='' && $offset !=0) {
|
61 |
-
$offset = ((($i)
|
62 |
} else {
|
63 |
$offset = 0;
|
64 |
}
|
43 |
|
44 |
$count_posts = wp_count_posts($cpt_key);
|
45 |
|
46 |
+
//Max posts per paginated sitemap
|
47 |
+
$max = 1000;
|
48 |
+
$max = apply_filters('seopress_sitemaps_max_posts_per_sitemap', $max);
|
49 |
+
|
50 |
if (isset($count_posts->publish)) {
|
51 |
$published_posts = $count_posts->publish;
|
52 |
}
|
53 |
|
54 |
+
if ($published_posts >= $max) {
|
55 |
+
$max_loop = $published_posts / $max;
|
56 |
} else {
|
57 |
$max_loop = 1;
|
58 |
}
|
62 |
for ($i=0; $i < $max_loop ; $i++) {
|
63 |
|
64 |
if (isset($offset) && absint($offset) && $offset !='' && $offset !=0) {
|
65 |
+
$offset = ((($i)*$max));
|
66 |
} else {
|
67 |
$offset = 0;
|
68 |
}
|
languages/wp-seopress.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: SEOPress\n"
|
5 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
|
6 |
-
"POT-Creation-Date: 2019-10-
|
7 |
"PO-Revision-Date: 2019-08-22 12:52+0200\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: Benjamin DENIS <contact@seopress.org>\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 2.2.
|
15 |
"X-Poedit-KeywordsList: __;_e;_x;esc_attr_e;esc_attr__;esc_html__;esc_html_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
msgid "SEOPress"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: inc/admin/admin-header.php:23 inc/admin/admin.php:
|
26 |
#: inc/admin/adminbar.php:77
|
27 |
msgid "PRO"
|
28 |
msgstr ""
|
@@ -42,34 +42,34 @@ msgid "XML / HTML Sitemap"
|
|
42 |
msgstr ""
|
43 |
|
44 |
#: inc/admin/admin-header.php:47 inc/admin/admin.php:187
|
45 |
-
#: inc/admin/admin.php:
|
46 |
msgid "Social Networks"
|
47 |
msgstr ""
|
48 |
|
49 |
#: inc/admin/admin-header.php:53 inc/admin/admin.php:188
|
50 |
-
#: inc/admin/admin.php:
|
51 |
msgid "Google Analytics"
|
52 |
msgstr ""
|
53 |
|
54 |
#: inc/admin/admin-header.php:59 inc/admin/admin-metaboxes-form.php:58
|
55 |
#: inc/admin/admin.php:189 inc/admin/admin.php:346 inc/admin/admin.php:620
|
56 |
-
#: inc/admin/admin.php:
|
57 |
msgid "Advanced"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: inc/admin/admin-header.php:67 inc/admin/admin.php:
|
61 |
msgid "WooCommerce"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: inc/admin/admin-header.php:73 inc/admin/admin.php:
|
65 |
msgid "Easy Digital Downloads"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: inc/admin/admin-header.php:79 inc/admin/admin.php:
|
69 |
msgid "Local Business"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: inc/admin/admin-header.php:85 inc/admin/admin.php:
|
73 |
msgid "Dublin Core"
|
74 |
msgstr ""
|
75 |
|
@@ -77,37 +77,37 @@ msgstr ""
|
|
77 |
msgid "Structured Data Types (schema.org)"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: inc/admin/admin-header.php:97 inc/admin/admin.php:
|
81 |
msgid "Breadcrumbs"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: inc/admin/admin-header.php:103 inc/admin/admin.php:
|
85 |
msgid "Google Page Speed"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: inc/admin/admin-header.php:110 inc/admin/admin.php:
|
89 |
msgid "robots.txt"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: inc/admin/admin-header.php:117 inc/admin/admin.php:
|
93 |
msgid "Google News Sitemap"
|
94 |
msgstr ""
|
95 |
|
96 |
#: inc/admin/admin-header.php:123 inc/admin/admin.php:659
|
97 |
-
#: inc/admin/admin.php:
|
98 |
msgid "Redirections"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/admin/admin-header.php:129 inc/admin/admin.php:
|
102 |
msgid "Broken links"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: inc/admin/admin-header.php:135 inc/admin/admin.php:
|
106 |
#: inc/admin/adminbar.php:107
|
107 |
msgid "Backlinks"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: inc/admin/admin-header.php:141 inc/admin/admin.php:
|
111 |
msgid "URL Rewriting"
|
112 |
msgstr ""
|
113 |
|
@@ -115,21 +115,21 @@ msgstr ""
|
|
115 |
msgid "White Label"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/admin/admin-header.php:154 inc/admin/admin.php:
|
119 |
msgid ".htaccess"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: inc/admin/admin-header.php:161 inc/admin/admin.php:
|
123 |
msgid "RSS"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/admin/admin-header.php:167 inc/admin/admin.php:
|
127 |
-
#: inc/admin/admin.php:
|
128 |
msgid "License"
|
129 |
msgstr ""
|
130 |
|
131 |
#: inc/admin/admin-header.php:174 inc/admin/admin.php:190
|
132 |
-
#: inc/admin/admin.php:
|
133 |
msgid "Tools"
|
134 |
msgstr ""
|
135 |
|
@@ -366,12 +366,12 @@ msgid "No custom title is set for this post."
|
|
366 |
msgstr ""
|
367 |
|
368 |
#: inc/admin/admin-metaboxes-content-analysis-form.php:226
|
369 |
-
#: inc/admin/admin-metaboxes-form.php:
|
370 |
-
#: inc/admin/admin-metaboxes-form.php:
|
371 |
#: inc/admin/admin-wizard.php:275 inc/admin/admin-wizard.php:292
|
372 |
-
#: inc/admin/admin-wizard.php:311 inc/admin/admin.php:
|
373 |
-
#: inc/admin/admin.php:
|
374 |
-
#: inc/admin/admin.php:
|
375 |
#: inc/functions/options-advanced-admin.php:764
|
376 |
msgid "Meta description"
|
377 |
msgstr ""
|
@@ -534,140 +534,142 @@ msgstr ""
|
|
534 |
msgid "Social"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: inc/admin/admin-metaboxes-form.php:
|
538 |
msgid "Redirection"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: inc/admin/admin-metaboxes-form.php:
|
542 |
msgid "Google News"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: inc/admin/admin-metaboxes-form.php:
|
546 |
msgid "Video Sitemap"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: inc/admin/admin-metaboxes-form.php:
|
550 |
msgid ""
|
551 |
"This is your <strong>Shop page</strong>. Go to <strong>SEO > Titles & Metas "
|
552 |
"> Archives > Products</strong> "
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: inc/admin/admin-metaboxes-form.php:
|
556 |
msgid "to edit your title and meta description"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: inc/admin/admin-metaboxes-form.php:
|
|
|
560 |
msgid "Title"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: inc/admin/admin-metaboxes-form.php:
|
564 |
msgid "Enter your title"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: inc/admin/admin-metaboxes-form.php:
|
568 |
msgid " / 568 pixels - "
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: inc/admin/admin-metaboxes-form.php:
|
|
|
572 |
msgid " (maximum recommended limit)"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: inc/admin/admin-metaboxes-form.php:
|
576 |
-
#: inc/admin/admin.php:
|
577 |
msgid "Post Title"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/admin/admin-metaboxes-form.php:
|
581 |
-
#: inc/admin/admin.php:
|
582 |
-
#: inc/admin/admin.php:
|
583 |
-
#: inc/admin/admin.php:
|
584 |
msgid "Site Title"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: inc/admin/admin-metaboxes-form.php:
|
588 |
-
#: inc/admin/admin.php:
|
589 |
-
#: inc/admin/admin.php:
|
590 |
-
#: inc/admin/admin.php:
|
591 |
-
#: inc/admin/admin.php:
|
592 |
msgid "Separator"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: inc/admin/admin-metaboxes-form.php:
|
596 |
msgid "Enter your meta description"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: inc/admin/admin-metaboxes-form.php:
|
600 |
msgid " / 940 pixels - "
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: inc/admin/admin-metaboxes-form.php:
|
604 |
msgid "Category / term description"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: inc/admin/admin-metaboxes-form.php:
|
608 |
msgid "Post Excerpt"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: inc/admin/admin-metaboxes-form.php:
|
612 |
msgid "Google Snippet Preview"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: inc/admin/admin-metaboxes-form.php:
|
616 |
msgid ""
|
617 |
"This is what your page will look like in Google search results. You have to "
|
618 |
"publish your post to get the Google Snippet Preview."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: inc/admin/admin-metaboxes-form.php:
|
622 |
msgid ""
|
623 |
"Do not display this page in search engine results / XML - HTML sitemaps "
|
624 |
"<strong>(noindex)</strong>"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: inc/admin/admin-metaboxes-form.php:
|
628 |
msgid "Do not follow links for this page <strong>(nofollow)</strong>"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: inc/admin/admin-metaboxes-form.php:
|
632 |
msgid ""
|
633 |
"Do not use Open Directory project metadata for titles or excerpts for this "
|
634 |
"page <strong>(noodp)</strong>"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: inc/admin/admin-metaboxes-form.php:
|
638 |
msgid "Do not index images for this page <strong>(noimageindex)</strong>"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: inc/admin/admin-metaboxes-form.php:
|
642 |
msgid ""
|
643 |
"Do not display a \"Cached\" link in the Google search results "
|
644 |
"<strong>(noarchive)</strong>"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: inc/admin/admin-metaboxes-form.php:
|
648 |
msgid ""
|
649 |
"Do not display a description in search results for this page "
|
650 |
"<strong>(nosnippet)</strong>"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/admin/admin-metaboxes-form.php:
|
654 |
msgid ""
|
655 |
"You cannot uncheck a parameter? This is normal, and it's most likely defined "
|
656 |
"in the global settings of the extension."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: inc/admin/admin-metaboxes-form.php:
|
660 |
-
#: inc/admin/admin-metaboxes-form.php:
|
661 |
#: inc/admin/admin-wizard.php:296 inc/admin/admin-wizard.php:315
|
662 |
-
#: inc/admin/admin.php:
|
663 |
msgid "Canonical URL"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: inc/admin/admin-metaboxes-form.php:
|
667 |
msgid "Default value: "
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: inc/admin/admin-metaboxes-form.php:
|
671 |
msgid ""
|
672 |
"A canonical URL is the URL of the page that Google thinks is most "
|
673 |
"representative from a set of duplicate pages on your site. For example, if "
|
@@ -676,346 +678,347 @@ msgid ""
|
|
676 |
"pages do not need to be absolutely identical; minor changes in sorting or "
|
677 |
"filtering of list pages do not make the page unique (for example, sorting by "
|
678 |
"price or filtering by item color).\n"
|
679 |
-
"
|
|
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: inc/admin/admin-metaboxes-form.php:
|
683 |
msgid "Select a primary category"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: inc/admin/admin-metaboxes-form.php:
|
687 |
msgid ""
|
688 |
"Set the category that gets used in the %category% permalink if you have "
|
689 |
"multiple categories."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: inc/admin/admin-metaboxes-form.php:
|
693 |
-
#: inc/admin/admin.php:
|
694 |
msgid "None (will disable this feature)"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: inc/admin/admin-metaboxes-form.php:
|
698 |
-
#: inc/admin/admin-metaboxes-form.php:
|
699 |
msgid "Custom breadcrumbs"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: inc/admin/admin-metaboxes-form.php:
|
703 |
msgid "Enter a custom value, useful if your title is too long"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: inc/admin/admin-metaboxes-form.php:
|
707 |
msgid "Ask Facebook to update his cache"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: inc/admin/admin-metaboxes-form.php:
|
711 |
-
#: inc/admin/admin-metaboxes-form.php:
|
712 |
msgid "Facebook Title"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: inc/admin/admin-metaboxes-form.php:
|
716 |
msgid "Enter your Facebook title"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: inc/admin/admin-metaboxes-form.php:
|
720 |
-
#: inc/admin/admin-metaboxes-form.php:
|
721 |
msgid "Facebook description"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: inc/admin/admin-metaboxes-form.php:
|
725 |
msgid "Enter your Facebook description"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: inc/admin/admin-metaboxes-form.php:
|
729 |
-
#: inc/admin/admin-metaboxes-form.php:
|
730 |
msgid "Facebook Thumbnail"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: inc/admin/admin-metaboxes-form.php:
|
734 |
-
#: inc/admin/admin-metaboxes-form.php:
|
735 |
-
#: inc/admin/admin.php:
|
736 |
msgid "Select your default thumbnail"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: inc/admin/admin-metaboxes-form.php:
|
740 |
msgid ""
|
741 |
"Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or "
|
742 |
"3280x1712px for retina screens)"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: inc/admin/admin-metaboxes-form.php:
|
746 |
-
#: inc/admin/admin-metaboxes-form.php:
|
747 |
-
#: inc/admin/admin-metaboxes-form.php:
|
748 |
-
#: inc/admin/admin.php:
|
749 |
msgid "Upload an Image"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: inc/admin/admin-metaboxes-form.php:
|
753 |
msgid "Preview your Twitter card using the official validator"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: inc/admin/admin-metaboxes-form.php:
|
757 |
-
#: inc/admin/admin-metaboxes-form.php:
|
758 |
msgid "Twitter Title"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: inc/admin/admin-metaboxes-form.php:
|
762 |
msgid "Enter your Twitter title"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: inc/admin/admin-metaboxes-form.php:
|
766 |
-
#: inc/admin/admin-metaboxes-form.php:
|
767 |
msgid "Twitter description"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: inc/admin/admin-metaboxes-form.php:
|
771 |
msgid "Enter your Twitter description"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: inc/admin/admin-metaboxes-form.php:
|
775 |
-
#: inc/admin/admin-metaboxes-form.php:
|
776 |
msgid "Twitter Thumbnail"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: inc/admin/admin-metaboxes-form.php:
|
780 |
msgid ""
|
781 |
"Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 "
|
782 |
"(2:1 with large card), 5Mb max."
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: inc/admin/admin-metaboxes-form.php:
|
786 |
msgid "Enable redirection?"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: inc/admin/admin-metaboxes-form.php:
|
790 |
-
#: inc/admin/admin-metaboxes-form.php:
|
791 |
msgid "URL redirection"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: inc/admin/admin-metaboxes-form.php:
|
795 |
msgid "301 Moved Permanently"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: inc/admin/admin-metaboxes-form.php:
|
799 |
msgid "302 Found / Moved Temporarily"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: inc/admin/admin-metaboxes-form.php:
|
803 |
msgid "307 Moved Temporarily"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: inc/admin/admin-metaboxes-form.php:
|
807 |
msgid "410 Gone"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: inc/admin/admin-metaboxes-form.php:
|
811 |
msgid "451 Unavailable For Legal Reasons"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: inc/admin/admin-metaboxes-form.php:
|
815 |
msgid "Enter your new URL in absolute (eg: https://www.example.com/)"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: inc/admin/admin-metaboxes-form.php:
|
819 |
msgid "Query parameters"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: inc/admin/admin-metaboxes-form.php:
|
823 |
msgid "Exactly match all parameters"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: inc/admin/admin-metaboxes-form.php:
|
827 |
msgid "Exclude all parameters"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: inc/admin/admin-metaboxes-form.php:
|
831 |
msgid "Exclude all parameters and pass them to the redirection"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: inc/admin/admin-metaboxes-form.php:
|
835 |
-
#: inc/admin/admin-metaboxes-form.php:
|
836 |
-
#: inc/admin/admin-metaboxes-form.php:
|
837 |
-
#: inc/admin/admin-metaboxes-form.php:
|
838 |
msgid "Test your URL"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: inc/admin/admin-metaboxes-form.php:
|
842 |
msgid "Need help with your redirections? Read our guide."
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: inc/admin/admin-metaboxes-form.php:
|
846 |
msgid "Exclude this post from Google News Sitemap?"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: inc/admin/admin-metaboxes-form.php:
|
850 |
msgid "Exclude this post from Video Sitemap?"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: inc/admin/admin-metaboxes-form.php:
|
854 |
msgid ""
|
855 |
"If your post is set to noindex, it will be automatically excluded from the "
|
856 |
"sitemap."
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: inc/admin/admin-metaboxes-form.php:
|
860 |
msgid "Video "
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: inc/admin/admin-metaboxes-form.php:
|
864 |
msgid "Video URL (required)"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: inc/admin/admin-metaboxes-form.php:
|
868 |
msgid "Enter your video URL"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: inc/admin/admin-metaboxes-form.php:
|
872 |
msgid "Video URL"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: inc/admin/admin-metaboxes-form.php:
|
876 |
msgid ""
|
877 |
"NOT an external video (eg: video hosting on YouTube, Vimeo, Wistia...)? "
|
878 |
"Check this if your video is hosting on this server."
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: inc/admin/admin-metaboxes-form.php:
|
882 |
msgid "Video Title (required)"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: inc/admin/admin-metaboxes-form.php:
|
886 |
msgid "Enter your video title"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: inc/admin/admin-metaboxes-form.php:
|
890 |
msgid "Video title"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: inc/admin/admin-metaboxes-form.php:
|
894 |
msgid "Default: title tag, if not available, post title."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: inc/admin/admin-metaboxes-form.php:
|
898 |
msgid "Video Description (required)"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: inc/admin/admin-metaboxes-form.php:
|
902 |
msgid "Enter your video description"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: inc/admin/admin-metaboxes-form.php:
|
906 |
msgid "Video description"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: inc/admin/admin-metaboxes-form.php:
|
910 |
msgid ""
|
911 |
"2048 characters max.; default: meta description. If not available, use the "
|
912 |
"beginning of the post content."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: inc/admin/admin-metaboxes-form.php:
|
916 |
msgid "Video Thumbnail (required)"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: inc/admin/admin-metaboxes-form.php:
|
920 |
msgid "Select your video thumbnail"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: inc/admin/admin-metaboxes-form.php:
|
924 |
msgid "Video Thumbnail"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: inc/admin/admin-metaboxes-form.php:
|
928 |
msgid ""
|
929 |
"Minimum size: 160x90px (1920x1080 max), JPG, PNG or GIF formats. Default: "
|
930 |
"your post featured image."
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: inc/admin/admin-metaboxes-form.php:
|
934 |
msgid "Video Duration (recommended)"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: inc/admin/admin-metaboxes-form.php:
|
938 |
msgid "Duration in seconds"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: inc/admin/admin-metaboxes-form.php:
|
942 |
msgid "Video duration"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: inc/admin/admin-metaboxes-form.php:
|
946 |
msgid ""
|
947 |
"The duration of the video in seconds. Value must be between 0 and 28800 (8 "
|
948 |
"hours)."
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: inc/admin/admin-metaboxes-form.php:
|
952 |
msgid "Video Rating"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: inc/admin/admin-metaboxes-form.php:
|
956 |
msgid "Video rating"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: inc/admin/admin-metaboxes-form.php:
|
960 |
msgid "Allowed values are float numbers in the range 0.0 to 5.0."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: inc/admin/admin-metaboxes-form.php:
|
964 |
-
#: inc/admin/admin-metaboxes-form.php:
|
965 |
msgid "View count"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/admin/admin-metaboxes-form.php:
|
969 |
msgid "Number of views"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/admin/admin-metaboxes-form.php:
|
973 |
-
#: inc/admin/admin-metaboxes-form.php:
|
974 |
msgid "Video tags"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: inc/admin/admin-metaboxes-form.php:
|
978 |
msgid "Enter your video tags"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: inc/admin/admin-metaboxes-form.php:
|
982 |
msgid ""
|
983 |
"32 tags max., separate tags with commas. Default: target keywords + post "
|
984 |
"tags if available."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: inc/admin/admin-metaboxes-form.php:
|
988 |
-
#: inc/admin/admin-metaboxes-form.php:
|
989 |
msgid "Video categories"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: inc/admin/admin-metaboxes-form.php:
|
993 |
msgid "Enter your video categories"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: inc/admin/admin-metaboxes-form.php:
|
997 |
msgid ""
|
998 |
"256 characters max., usually a video will belong to a single category, "
|
999 |
"separate categories with commas. Default: first post category if available."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1003 |
msgid "NOT family friendly?"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1007 |
msgid "The video will be available only to users with SafeSearch turned off."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1011 |
msgid "Remove video"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1015 |
msgid "Add video"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: inc/admin/admin-metaboxes.php:
|
1019 |
msgid "Content analysis"
|
1020 |
msgstr ""
|
1021 |
|
@@ -1057,47 +1060,47 @@ msgid ""
|
|
1057 |
"quickly."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: inc/admin/admin-wizard.php:252 inc/admin/admin.php:
|
1061 |
msgid "Import posts and terms metadata from Yoast"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
#: inc/admin/admin-wizard.php:253 inc/admin/admin-wizard.php:272
|
1065 |
#: inc/admin/admin-wizard.php:289 inc/admin/admin-wizard.php:308
|
1066 |
-
#: inc/admin/admin.php:
|
1067 |
-
#: inc/admin/admin.php:
|
1068 |
msgid "By clicking Migrate, we'll import:"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
#: inc/admin/admin-wizard.php:255 inc/admin/admin-wizard.php:274
|
1072 |
#: inc/admin/admin-wizard.php:291 inc/admin/admin-wizard.php:310
|
1073 |
-
#: inc/admin/admin.php:
|
1074 |
-
#: inc/admin/admin.php:
|
1075 |
msgid "Title tags"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
#: inc/admin/admin-wizard.php:257 inc/admin/admin-wizard.php:276
|
1079 |
#: inc/admin/admin-wizard.php:293 inc/admin/admin-wizard.php:312
|
1080 |
-
#: inc/admin/admin.php:
|
1081 |
-
#: inc/admin/admin.php:
|
1082 |
msgid "Facebook Open Graph tags (title, description and image thumbnail)"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
#: inc/admin/admin-wizard.php:258 inc/admin/admin-wizard.php:294
|
1086 |
-
#: inc/admin/admin-wizard.php:313 inc/admin/admin.php:
|
1087 |
-
#: inc/admin/admin.php:
|
1088 |
msgid "Twitter tags (title, description and image thumbnail)"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: inc/admin/admin-wizard.php:259 inc/admin/admin.php:
|
1092 |
msgid "Meta Robots (noindex, nofollow...)"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: inc/admin/admin-wizard.php:261 inc/admin/admin-wizard.php:316
|
1096 |
-
#: inc/admin/admin.php:
|
1097 |
msgid "Focus keywords"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: inc/admin/admin-wizard.php:263 inc/admin/admin.php:
|
1101 |
msgid ""
|
1102 |
"<strong>WARNING:</strong> Migration will delete / update all SEOPress posts "
|
1103 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
@@ -1106,59 +1109,59 @@ msgstr ""
|
|
1106 |
|
1107 |
#: inc/admin/admin-wizard.php:264 inc/admin/admin-wizard.php:281
|
1108 |
#: inc/admin/admin-wizard.php:300 inc/admin/admin-wizard.php:319
|
1109 |
-
#: inc/admin/admin.php:
|
1110 |
-
#: inc/admin/admin.php:
|
1111 |
msgid "Migrate now"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: inc/admin/admin-wizard.php:271 inc/admin/admin.php:
|
1115 |
msgid "Import posts and terms metadata from All In One SEO"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: inc/admin/admin-wizard.php:277 inc/admin/admin.php:
|
1119 |
msgid "Twitter image thumbnail"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: inc/admin/admin-wizard.php:278 inc/admin/admin.php:
|
1123 |
msgid "Meta Robots (noindex, nofollow)"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: inc/admin/admin-wizard.php:280 inc/admin/admin.php:
|
1127 |
msgid ""
|
1128 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
1129 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
1130 |
"NOT delete any AIO data."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: inc/admin/admin-wizard.php:288 inc/admin/admin.php:
|
1134 |
msgid "Import posts and terms metadata from The SEO Framework"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: inc/admin/admin-wizard.php:295 inc/admin/admin.php:
|
1138 |
msgid "Meta Robots (noindex, nofollow, noarchive)"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: inc/admin/admin-wizard.php:297 inc/admin/admin.php:
|
1142 |
#: inc/functions/options-advanced-admin.php:296
|
1143 |
msgid "Redirect URL"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: inc/admin/admin-wizard.php:299 inc/admin/admin.php:
|
1147 |
msgid ""
|
1148 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
1149 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
1150 |
"NOT delete any SEO Framework data."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: inc/admin/admin-wizard.php:307 inc/admin/admin.php:
|
1154 |
msgid "Import posts and terms metadata from Rank Math"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: inc/admin/admin-wizard.php:314 inc/admin/admin.php:
|
1158 |
msgid "Meta Robots (noindex, nofollow, noarchive, noimageindex)"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: inc/admin/admin-wizard.php:318 inc/admin/admin.php:
|
1162 |
msgid ""
|
1163 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
1164 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
@@ -1179,8 +1182,8 @@ msgstr ""
|
|
1179 |
msgid "eg: |"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: inc/admin/admin-wizard.php:372 inc/admin/admin.php:
|
1183 |
-
#: inc/admin/admin.php:
|
1184 |
msgid "Site title"
|
1185 |
msgstr ""
|
1186 |
|
@@ -1188,7 +1191,7 @@ msgstr ""
|
|
1188 |
msgid "eg: My super website"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: inc/admin/admin-wizard.php:375 inc/admin/admin.php:
|
1192 |
msgid "Person or organization"
|
1193 |
msgstr ""
|
1194 |
|
@@ -1196,16 +1199,16 @@ msgstr ""
|
|
1196 |
msgid "Choose a knowledge type"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: inc/admin/admin-wizard.php:383 inc/admin/admin.php:
|
1200 |
msgid "Person"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: inc/admin/admin-wizard.php:386 inc/admin/admin.php:
|
1204 |
msgid "Organization"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: inc/admin/admin-wizard.php:390 inc/admin/admin.php:
|
1208 |
-
#: inc/admin/admin.php:
|
1209 |
msgid "Your name/organization"
|
1210 |
msgstr ""
|
1211 |
|
@@ -1213,8 +1216,8 @@ msgstr ""
|
|
1213 |
msgid "eg: SEOPress"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: inc/admin/admin-wizard.php:393 inc/admin/admin.php:
|
1217 |
-
#: inc/admin/admin.php:
|
1218 |
msgid "Your photo/organization logo"
|
1219 |
msgstr ""
|
1220 |
|
@@ -1226,78 +1229,78 @@ msgstr ""
|
|
1226 |
msgid "Facebook page URL"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: inc/admin/admin-wizard.php:397 inc/admin/admin.php:
|
1230 |
msgid "eg: https://www.facebook.com/your-page"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: inc/admin/admin-wizard.php:399 inc/admin/admin.php:
|
1234 |
msgid "Twitter Username"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: inc/admin/admin-wizard.php:400 inc/admin/admin.php:
|
1238 |
msgid "eg: @wp_seopress"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: inc/admin/admin-wizard.php:402 inc/admin/admin.php:
|
1242 |
-
#: inc/admin/admin.php:
|
1243 |
msgid "Pinterest URL"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: inc/admin/admin-wizard.php:403 inc/admin/admin.php:
|
1247 |
msgid "eg: https://pinterest.com/wpbuy/"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: inc/admin/admin-wizard.php:405 inc/admin/admin.php:
|
1251 |
-
#: inc/admin/admin.php:
|
1252 |
msgid "Instagram URL"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: inc/admin/admin-wizard.php:406 inc/admin/admin.php:
|
1256 |
msgid "eg: https://www.instagram.com/wp_seopress/"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: inc/admin/admin-wizard.php:408 inc/admin/admin.php:
|
1260 |
-
#: inc/admin/admin.php:
|
1261 |
msgid "YouTube URL"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: inc/admin/admin-wizard.php:409 inc/admin/admin.php:
|
1265 |
msgid "eg: https://www.youtube.com/SEOPress"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: inc/admin/admin-wizard.php:411 inc/admin/admin.php:
|
1269 |
-
#: inc/admin/admin.php:
|
1270 |
msgid "LinkedIn URL"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: inc/admin/admin-wizard.php:412 inc/admin/admin.php:
|
1274 |
msgid "eg: http://linkedin.com/company/seopress/"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: inc/admin/admin-wizard.php:414 inc/admin/admin.php:
|
1278 |
-
#: inc/admin/admin.php:
|
1279 |
msgid "MySpace URL"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: inc/admin/admin-wizard.php:415 inc/admin/admin.php:
|
1283 |
msgid "eg: https://myspace.com/your-page"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: inc/admin/admin-wizard.php:417 inc/admin/admin.php:
|
1287 |
-
#: inc/admin/admin.php:
|
1288 |
msgid "Soundcloud URL"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: inc/admin/admin-wizard.php:418 inc/admin/admin.php:
|
1292 |
msgid "eg: https://soundcloud.com/michaelmccannmusic"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: inc/admin/admin-wizard.php:420 inc/admin/admin.php:
|
1296 |
-
#: inc/admin/admin.php:
|
1297 |
msgid "Tumblr URL"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: inc/admin/admin-wizard.php:421 inc/admin/admin.php:
|
1301 |
msgid "eg: https://your-site.tumblr.com"
|
1302 |
msgstr ""
|
1303 |
|
@@ -1316,7 +1319,7 @@ msgstr ""
|
|
1316 |
msgid "For which single post types, should indexing be disabled?"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: inc/admin/admin-wizard.php:498 inc/admin/admin.php:
|
1320 |
msgid ""
|
1321 |
"Do not display this single post type in search engine results "
|
1322 |
"<strong>(noindex)</strong>"
|
@@ -1326,7 +1329,7 @@ msgstr ""
|
|
1326 |
msgid "For which post type archives, should indexing be disabled?"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: inc/admin/admin-wizard.php:527 inc/admin/admin.php:
|
1330 |
msgid ""
|
1331 |
"Do not display this post type archive in search engine results "
|
1332 |
"<strong>(noindex)</strong>"
|
@@ -1336,13 +1339,13 @@ msgstr ""
|
|
1336 |
msgid "For which taxonomy archives, should indexing be disabled?"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: inc/admin/admin-wizard.php:556 inc/admin/admin.php:
|
1340 |
msgid ""
|
1341 |
"Do not display this taxonomy archive in search engine results "
|
1342 |
"<strong>(noindex)</strong>"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: inc/admin/admin-wizard.php:639 inc/admin/admin.php:
|
1346 |
msgid ""
|
1347 |
"Do not display author archives in search engine results <strong>(noindex)</"
|
1348 |
"strong>"
|
@@ -1354,7 +1357,7 @@ msgid ""
|
|
1354 |
"content."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: inc/admin/admin-wizard.php:651 inc/admin/admin.php:
|
1358 |
msgid ""
|
1359 |
"Redirect attachment pages to their file URL (https://www.example.com/my-"
|
1360 |
"image-file.jpg)"
|
@@ -1366,7 +1369,7 @@ msgid ""
|
|
1366 |
"Optimize this by redirecting the user directly to the URL of the media file."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: inc/admin/admin-wizard.php:663 inc/admin/admin.php:
|
1370 |
msgid "Remove /category/ in your permalinks"
|
1371 |
msgstr ""
|
1372 |
|
@@ -1459,7 +1462,7 @@ msgstr ""
|
|
1459 |
msgid "Dashboard"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: inc/admin/admin.php:186 inc/admin/admin.php:
|
1463 |
msgid "XML / Image / Video / HTML Sitemap"
|
1464 |
msgstr ""
|
1465 |
|
@@ -1482,7 +1485,7 @@ msgstr ""
|
|
1482 |
msgid "%%tagline%%"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: inc/admin/admin.php:199 inc/admin/admin.php:
|
1486 |
msgid "Tagline"
|
1487 |
msgstr ""
|
1488 |
|
@@ -1527,7 +1530,7 @@ msgstr ""
|
|
1527 |
msgid "%%post_author%%"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: inc/admin/admin.php:204 inc/admin/admin.php:
|
1531 |
msgid "Post author"
|
1532 |
msgstr ""
|
1533 |
|
@@ -1834,34 +1837,34 @@ msgstr ""
|
|
1834 |
#: inc/admin/admin.php:324 inc/admin/admin.php:328 inc/admin/admin.php:391
|
1835 |
#: inc/admin/admin.php:395 inc/admin/admin.php:456 inc/admin/admin.php:460
|
1836 |
#: inc/admin/admin.php:523 inc/admin/admin.php:527 inc/admin/admin.php:602
|
1837 |
-
#: inc/admin/admin.php:606 inc/admin/admin.php:
|
1838 |
-
#: inc/admin/admin.php:
|
1839 |
-
#: inc/admin/admin.php:
|
1840 |
-
#: inc/admin/admin.php:
|
1841 |
-
#: inc/admin/admin.php:
|
1842 |
-
#: inc/admin/admin.php:
|
1843 |
-
#: inc/admin/admin.php:
|
1844 |
-
#: inc/admin/admin.php:
|
1845 |
-
#: inc/admin/admin.php:
|
1846 |
-
#: inc/admin/admin.php:
|
1847 |
-
#: inc/admin/admin.php:
|
1848 |
msgid "Click to disable this feature"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
#: inc/admin/admin.php:325 inc/admin/admin.php:327 inc/admin/admin.php:392
|
1852 |
#: inc/admin/admin.php:394 inc/admin/admin.php:457 inc/admin/admin.php:459
|
1853 |
#: inc/admin/admin.php:524 inc/admin/admin.php:526 inc/admin/admin.php:603
|
1854 |
-
#: inc/admin/admin.php:605 inc/admin/admin.php:
|
1855 |
-
#: inc/admin/admin.php:
|
1856 |
-
#: inc/admin/admin.php:
|
1857 |
-
#: inc/admin/admin.php:
|
1858 |
-
#: inc/admin/admin.php:
|
1859 |
-
#: inc/admin/admin.php:
|
1860 |
-
#: inc/admin/admin.php:
|
1861 |
-
#: inc/admin/admin.php:
|
1862 |
-
#: inc/admin/admin.php:
|
1863 |
-
#: inc/admin/admin.php:
|
1864 |
-
#: inc/admin/admin.php:
|
1865 |
msgid "Click to enable this feature"
|
1866 |
msgstr ""
|
1867 |
|
@@ -1949,58 +1952,58 @@ msgstr ""
|
|
1949 |
msgid "Reset"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: inc/admin/admin.php:
|
1953 |
msgid "Import data from a CSV"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: inc/admin/admin.php:
|
1957 |
msgid ""
|
1958 |
"Import your title, meta description, meta robots, social metas from a CSV "
|
1959 |
"file with our import tool."
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: inc/admin/admin.php:
|
1963 |
msgid "Run the importer"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: inc/admin/admin.php:
|
1967 |
msgid "Export plugin settings"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: inc/admin/admin.php:
|
1971 |
msgid ""
|
1972 |
"Export the plugin settings for this site as a .json file. This allows you to "
|
1973 |
"easily import the configuration into another site."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: inc/admin/admin.php:
|
1977 |
msgid "Export"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: inc/admin/admin.php:
|
1981 |
msgid "Import plugin settings"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: inc/admin/admin.php:
|
1985 |
msgid ""
|
1986 |
"Import the plugin settings from a .json file. This file can be obtained by "
|
1987 |
"exporting the settings on another site using the form above."
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: inc/admin/admin.php:
|
1991 |
-
#: inc/admin/admin.php:
|
1992 |
msgid "Import"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: inc/admin/admin.php:
|
1996 |
msgid "Import completed!"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: inc/admin/admin.php:
|
2000 |
msgid "Import Redirections"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: inc/admin/admin.php:
|
2004 |
msgid ""
|
2005 |
"Import your own redirections from a .csv file (separator \";\"). You must "
|
2006 |
"have 5 columns in this order: <ul><li>URL to match (without your domain "
|
@@ -2012,15 +2015,15 @@ msgid ""
|
|
2012 |
"to the redirection).</li></ul>"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: inc/admin/admin.php:
|
2016 |
msgid "Download a CSV example"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: inc/admin/admin.php:
|
2020 |
msgid "Import Redirections from the Redirections plugin"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: inc/admin/admin.php:
|
2024 |
msgid ""
|
2025 |
"Import your own redirections from a .json file generated by the Redirections "
|
2026 |
"plugin. Note that we do not support certain options, like regex. To avoid "
|
@@ -2028,924 +2031,924 @@ msgid ""
|
|
2028 |
"redirects."
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: inc/admin/admin.php:
|
2032 |
msgid "Import Redirections from Yoast Premium"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: inc/admin/admin.php:
|
2036 |
msgid ""
|
2037 |
"Import your own redirections from a .csv file generated by Yoast Premium. "
|
2038 |
"Note that we don't support certain options, like regex. To avoid conflicts, "
|
2039 |
"make sure there are no duplicates between your file and existing redirects."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: inc/admin/admin.php:
|
2043 |
msgid "Export Redirections"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: inc/admin/admin.php:
|
2047 |
msgid ""
|
2048 |
"Export all redirections for this site as a .csv file. This allows you to "
|
2049 |
"easily import the redirections into another site, to Excel / Google Sheets..."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: inc/admin/admin.php:
|
2053 |
msgid "Redirections feature is disabled. Please activate it from the PRO page."
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: inc/admin/admin.php:
|
2057 |
msgid "Activate Redirections"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: inc/admin/admin.php:
|
2061 |
msgid "Reset All Notices From Notifications Center"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: inc/admin/admin.php:
|
2065 |
msgid ""
|
2066 |
"By clicking Reset Notices, all notices in the notifications center will be "
|
2067 |
"set to their initial status."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: inc/admin/admin.php:
|
2071 |
msgid "Reset notices"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: inc/admin/admin.php:
|
2075 |
msgid "Reset All Settings"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: inc/admin/admin.php:
|
2079 |
msgid ""
|
2080 |
"<strong>WARNING:</strong> Delete all options related to SEOPress in your "
|
2081 |
"database AND set settings to their default values."
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: inc/admin/admin.php:
|
2085 |
msgid "Reset settings"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: inc/admin/admin.php:
|
2089 |
msgid "Notifications Center"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: inc/admin/admin.php:
|
2093 |
msgid "SEO Tools"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: inc/admin/admin.php:
|
2097 |
msgid "Useful links"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: inc/admin/admin.php:
|
2101 |
msgid "Configure SEOPress in a few minutes with our installation wizard"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: inc/admin/admin.php:
|
2105 |
msgid "Start the wizard"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: inc/admin/admin.php:
|
2109 |
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: inc/admin/admin.php:
|
2113 |
-
#: inc/admin/admin.php:
|
2114 |
msgid "High impact"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: inc/admin/admin.php:
|
2118 |
-
#: inc/admin/admin.php:
|
2119 |
-
#: inc/admin/admin.php:
|
2120 |
msgid "Learn more"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: inc/admin/admin.php:
|
2124 |
msgid ""
|
2125 |
"We noticed that you use <strong>Yoast SEO</strong> plugin. <br>Do you want "
|
2126 |
"to migrate all your posts metadata to SEOPress?"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: inc/admin/admin.php:
|
2130 |
msgid "Migrate!"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: inc/admin/admin.php:
|
2134 |
msgid ""
|
2135 |
"We noticed that you use <strong>All In One SEO Pack</strong> plugin. <br>Do "
|
2136 |
"you want to migrate all your posts metadata to SEOPress?"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: inc/admin/admin.php:
|
2140 |
msgid ""
|
2141 |
"We noticed that you use another SEO plugin. <br>Do not use multiple SEO "
|
2142 |
"plugins at once to avoid conflicts!"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: inc/admin/admin.php:
|
2146 |
msgid ""
|
2147 |
"You have enabled 404 cleaning BUT the scheduled task is not running. <br>To "
|
2148 |
"solve this, please disable and re-enable SEOPress PRO."
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: inc/admin/admin.php:
|
2152 |
msgid "Your site doesn't use an SSL certificate!"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: inc/admin/admin.php:
|
2156 |
msgid "Low impact"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: inc/admin/admin.php:
|
2160 |
msgid "Buy an SSL!"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: inc/admin/admin.php:
|
2164 |
msgid "Your site is not visible to Search Engines!"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: inc/admin/admin.php:
|
2168 |
-
#: inc/admin/admin.php:
|
2169 |
-
#: inc/admin/admin.php:
|
2170 |
msgid "Fix this!"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: inc/admin/admin.php:
|
2174 |
msgid "Your site title is empty!"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: inc/admin/admin.php:
|
2178 |
msgid ""
|
2179 |
"Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: inc/admin/admin.php:
|
2183 |
msgid "Your RSS feed shows full text!"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: inc/admin/admin.php:
|
2187 |
msgid "Medium impact"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: inc/admin/admin.php:
|
2191 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: inc/admin/admin.php:
|
2195 |
msgid "Rate us!"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: inc/admin/admin.php:
|
2199 |
msgid "Break comments into pages is ON!"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: inc/admin/admin.php:
|
2203 |
msgid "Huge impact"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: inc/admin/admin.php:
|
2207 |
msgid "Disable this!"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: inc/admin/admin.php:
|
2211 |
msgid "Display more posts per page on homepage and archives"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: inc/admin/admin.php:
|
2215 |
msgid "You don't have an XML Sitemap!"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: inc/admin/admin.php:
|
2219 |
msgid "Do you have a Google My Business page? It's free!"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: inc/admin/admin.php:
|
2223 |
msgid "Create your page now!"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: inc/admin/admin.php:
|
2227 |
msgid "Add your site to Google. It's free!"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: inc/admin/admin.php:
|
2231 |
msgid "Add your site to Search Console!"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: inc/admin/admin.php:
|
2235 |
msgid "You have to enter your licence key to get updates and support"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: inc/admin/admin.php:
|
2239 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#: inc/admin/admin.php:
|
2243 |
msgid "Upgrade now!"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: inc/admin/admin.php:
|
2247 |
msgid "Check websites setup on your server"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: inc/admin/admin.php:
|
2251 |
msgid "Not found"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: inc/admin/admin.php:
|
2255 |
msgid "No scrape."
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: inc/admin/admin.php:
|
2259 |
msgid "No domain found."
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: inc/admin/admin.php:
|
2263 |
msgid "Server IP Address: "
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: inc/admin/admin.php:
|
2267 |
msgid "Last scrape: "
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: inc/admin/admin.php:
|
2271 |
msgid "Number of websites on your server: "
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: inc/admin/admin.php:
|
2275 |
msgid "Get list"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: inc/admin/admin.php:
|
2279 |
msgid "Upload a list of links to disavow to Google"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: inc/admin/admin.php:
|
2283 |
msgid "Google Trends"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: inc/admin/admin.php:
|
2287 |
msgid "Dareboost: Test, analyze and optimize your website"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: inc/admin/admin.php:
|
2291 |
msgid "Google Campaign URL Builder tool"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: inc/admin/admin.php:
|
2295 |
msgid "Titles & metas"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: inc/admin/admin.php:
|
2299 |
msgid "Manage all your titles & metas"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: inc/admin/admin.php:
|
2303 |
-
#: inc/admin/admin.php:
|
2304 |
-
#: inc/admin/admin.php:
|
2305 |
-
#: inc/admin/admin.php:
|
2306 |
-
#: inc/admin/admin.php:
|
2307 |
-
#: inc/admin/admin.php:
|
2308 |
-
#: inc/admin/admin.php:
|
2309 |
-
#: inc/admin/admin.php:
|
2310 |
msgid "Manage"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: inc/admin/admin.php:
|
2314 |
msgid "Guide to manage your titles and meta descriptions - new window"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: inc/admin/admin.php:
|
2318 |
msgid "Manage your XML / Image / Video / HTML Sitemap"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: inc/admin/admin.php:
|
2322 |
msgid "Guide to enable your XML Sitemaps - new window"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: inc/admin/admin.php:
|
2326 |
msgid "Open Graph, Twitter Card, Google Knowledge Graph and more..."
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: inc/admin/admin.php:
|
2330 |
msgid "Guide to enable Google Knowledge Graph - new window"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: inc/admin/admin.php:
|
2334 |
msgid "Track everything about your visitors with Google Analytics"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: inc/admin/admin.php:
|
2338 |
msgid "Guide to getting started with Google Analytics - new window"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: inc/admin/admin.php:
|
2342 |
msgid "Advanced SEO options for advanced users!"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: inc/admin/admin.php:
|
2346 |
msgid "Improve WooCommerce SEO"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: inc/admin/admin.php:
|
2350 |
msgid "Improve Easy Digital Downloads SEO"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: inc/admin/admin.php:
|
2354 |
msgid "Add Google Local Business data type"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: inc/admin/admin.php:
|
2358 |
msgid "Add Dublin Core meta tags"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: inc/admin/admin.php:
|
2362 |
msgid "Structured Data Types"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: inc/admin/admin.php:
|
2366 |
msgid ""
|
2367 |
-
"Add data types to your content: articles, courses, recipes, videos, events "
|
2368 |
-
"and
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: inc/admin/admin.php:
|
2372 |
msgid "See schemas"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: inc/admin/admin.php:
|
2376 |
msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: inc/admin/admin.php:
|
2380 |
msgid "Guide to enable Breadcrumbs - new window"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: inc/admin/admin.php:
|
2384 |
msgid "Track your website performance to improve SEO with Google Page Speed"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: inc/admin/admin.php:
|
2388 |
msgid "Guide to analyze your site with Google Page Speed - new window"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: inc/admin/admin.php:
|
2392 |
msgid "Edit your robots.txt file"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: inc/admin/admin.php:
|
2396 |
msgid "View your robots.txt"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: inc/admin/admin.php:
|
2400 |
msgid "Guide to edit your robots.txt file - new window"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: inc/admin/admin.php:
|
2404 |
msgid "Optimize your site for Google News"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: inc/admin/admin.php:
|
2408 |
msgid "Schemas"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: inc/admin/admin.php:
|
2412 |
msgid "Create / manage your schemas"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: inc/admin/admin.php:
|
2416 |
msgid "Monitor 404, create 301, 302 and 307 redirections"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: inc/admin/admin.php:
|
2420 |
msgid "See redirects"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: inc/admin/admin.php:
|
2424 |
msgid "Guide to enable 301 redirections and 404 monitoring - new window"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: inc/admin/admin.php:
|
2428 |
msgid "Scan your site to find SEO problems."
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: inc/admin/admin.php:
|
2432 |
msgid "See broken links"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: inc/admin/admin.php:
|
2436 |
msgid "Scan"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: inc/admin/admin.php:
|
2440 |
msgid "Check your backlinks with Majestic API."
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: inc/admin/admin.php:
|
2444 |
msgid "See backlinks"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: inc/admin/admin.php:
|
2448 |
msgid "Customize your permalinks."
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: inc/admin/admin.php:
|
2452 |
msgid "Edit your htaccess file."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: inc/admin/admin.php:
|
2456 |
msgid "Configure default WordPress RSS."
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: inc/admin/admin.php:
|
2460 |
msgid "Import/Export plugin settings from site to site."
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: inc/admin/admin.php:
|
2464 |
msgid "Guide to Export/Import/Reset settings - new window"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: inc/admin/admin.php:
|
2468 |
msgid "Edit your license key."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: inc/admin/admin.php:
|
2472 |
msgid "Guide to activate SEOPress PRO - new window"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: inc/admin/admin.php:
|
2476 |
msgid "noindex"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: inc/admin/admin.php:
|
2480 |
msgid "nofollow"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: inc/admin/admin.php:
|
2484 |
msgid "noodp"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: inc/admin/admin.php:
|
2488 |
msgid "noimageindex"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: inc/admin/admin.php:
|
2492 |
msgid "noarchive"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: inc/admin/admin.php:
|
2496 |
msgid "nosnippet"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: inc/admin/admin.php:
|
2500 |
msgid "nositelinkssearchbox"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: inc/admin/admin.php:
|
2504 |
msgid "Indicate paginated content to Google"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: inc/admin/admin.php:
|
2508 |
msgid "Enable XML Sitemap"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: inc/admin/admin.php:
|
2512 |
msgid "Enable XML Image Sitemaps"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: inc/admin/admin.php:
|
2516 |
msgid "Enable XML Video Sitemaps"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: inc/admin/admin.php:
|
2520 |
msgid "Enable Author Sitemap"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: inc/admin/admin.php:
|
2524 |
msgid "Enable HTML Sitemap"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: inc/admin/admin.php:
|
2528 |
msgid "Check to INCLUDE Post Types"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: inc/admin/admin.php:
|
2532 |
msgid "Check to INCLUDE Taxonomies"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: inc/admin/admin.php:
|
2536 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: inc/admin/admin.php:
|
2540 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: inc/admin/admin.php:
|
2544 |
msgid "Sort order"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: inc/admin/admin.php:
|
2548 |
msgid "Order posts by"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: inc/admin/admin.php:
|
2552 |
msgid "Disable the display of the publication date"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: inc/admin/admin.php:
|
2556 |
msgid "Organization's phone number (only for Organizations)"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: inc/admin/admin.php:
|
2560 |
msgid "Contact type (only for Organizations)"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: inc/admin/admin.php:
|
2564 |
msgid "Contact option (only for Organizations)"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: inc/admin/admin.php:
|
2568 |
msgid "Facebook Page URL"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: inc/admin/admin.php:
|
2572 |
msgid "Enable Open Graph Data"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: inc/admin/admin.php:
|
2576 |
msgid "Select a default image"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: inc/admin/admin.php:
|
2580 |
msgid "Facebook Link Ownership ID"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: inc/admin/admin.php:
|
2584 |
msgid "Facebook Admin ID"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: inc/admin/admin.php:
|
2588 |
msgid "Facebook App ID"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: inc/admin/admin.php:
|
2592 |
msgid "Enable Twitter Card"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: inc/admin/admin.php:
|
2596 |
msgid "Use Open Graph if no Twitter Card is filled"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: inc/admin/admin.php:
|
2600 |
msgid "Default Twitter Image"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: inc/admin/admin.php:
|
2604 |
msgid "Image size for Twitter Summary card"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: inc/admin/admin.php:
|
2608 |
msgid "Enable Google Analytics tracking"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: inc/admin/admin.php:
|
2612 |
msgid "Enter your tracking ID"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: inc/admin/admin.php:
|
2616 |
msgid "Google Analytics tracking opt-in"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: inc/admin/admin.php:
|
2620 |
msgid "Consent message for user tracking"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: inc/admin/admin.php:
|
2624 |
msgid "Accept button for user tracking"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: inc/admin/admin.php:
|
2628 |
msgid "Exclude user roles from tracking"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: inc/admin/admin.php:
|
2632 |
msgid "Enable Google Optimize"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: inc/admin/admin.php:
|
2636 |
msgid "Enable Google Ads"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: inc/admin/admin.php:
|
2640 |
msgid ""
|
2641 |
"[HEAD] Add an additional tracking code (like GTM, Facebook Pixel, Hotjar...)"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: inc/admin/admin.php:
|
2645 |
msgid "[BODY] Add an additional tracking code (like Google Tag Manager...)"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: inc/admin/admin.php:
|
2649 |
msgid "Enable remarketing, demographics, and interests reporting"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: inc/admin/admin.php:
|
2653 |
msgid "Enable IP Anonymization"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: inc/admin/admin.php:
|
2657 |
msgid "Enhanced Link Attribution"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: inc/admin/admin.php:
|
2661 |
msgid "Enable cross-domain tracking"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: inc/admin/admin.php:
|
2665 |
msgid "Cross domains"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: inc/admin/admin.php:
|
2669 |
-
msgid "Enable external links tracking
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: inc/admin/admin.php:
|
2673 |
msgid "Enable downloads tracking (eg: PDF, XLSX, DOCX...)"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: inc/admin/admin.php:
|
2677 |
msgid "Track downloads' clicks"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: inc/admin/admin.php:
|
2681 |
msgid "Enable affiliate/outbound links tracking (eg: aff, go, out, recommends)"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: inc/admin/admin.php:
|
2685 |
msgid "Track affiliate/outbound links"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: inc/admin/admin.php:
|
2689 |
msgid "Track Authors"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: inc/admin/admin.php:
|
2693 |
msgid "Track Categories"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: inc/admin/admin.php:
|
2697 |
msgid "Track Tags"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: inc/admin/admin.php:
|
2701 |
msgid "Track Post Types"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: inc/admin/admin.php:
|
2705 |
msgid "Track Logged In Users"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: inc/admin/admin.php:
|
2709 |
msgid "Redirect attachment pages to post parent"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: inc/admin/admin.php:
|
2713 |
msgid "Redirect attachment pages to their file URL"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: inc/admin/admin.php:
|
2717 |
msgid "Remove ?replytocom link to avoid duplicate content"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: inc/admin/admin.php:
|
2721 |
msgid "Automatically set the image Title"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: inc/admin/admin.php:
|
2725 |
msgid "Automatically set the image Alt text"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: inc/admin/admin.php:
|
2729 |
msgid "Automatically set the image Caption"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: inc/admin/admin.php:
|
2733 |
msgid "Automatically set the image Description"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: inc/admin/admin.php:
|
2737 |
msgid "Add WP Editor to taxonomy description textarea"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: inc/admin/admin.php:
|
2741 |
msgid "Remove /category/ in URL"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: inc/admin/admin.php:
|
2745 |
msgid "Disable trailing slash for metas"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: inc/admin/admin.php:
|
2749 |
msgid "Remove WordPress generator meta tag"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: inc/admin/admin.php:
|
2753 |
msgid "Remove WordPress shortlink meta tag"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: inc/admin/admin.php:
|
2757 |
msgid "Remove Windows Live Writer meta tag"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: inc/admin/admin.php:
|
2761 |
msgid "Remove RSD meta tag"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: inc/admin/admin.php:
|
2765 |
msgid "Google site verification"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: inc/admin/admin.php:
|
2769 |
msgid "Bing site verification"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: inc/admin/admin.php:
|
2773 |
msgid "Pinterest site verification"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: inc/admin/admin.php:
|
2777 |
msgid "Yandex site verification"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: inc/admin/admin.php:
|
2781 |
msgid "SEOPress in admin bar"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: inc/admin/admin.php:
|
2785 |
msgid "Move SEOPress metabox's position"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
-
#: inc/admin/admin.php:
|
2789 |
msgid "Hide Notifications Center"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
-
#: inc/admin/admin.php:
|
2793 |
msgid "Hide SEO tools"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: inc/admin/admin.php:
|
2797 |
msgid "Hide Useful Links"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: inc/admin/admin.php:
|
2801 |
msgid "Show Title tag column in post types"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: inc/admin/admin.php:
|
2805 |
msgid "Show Meta description column in post types"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: inc/admin/admin.php:
|
2809 |
msgid "Show Redirection Enable column in post types"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: inc/admin/admin.php:
|
2813 |
msgid "Show Redirect URL column in post types"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: inc/admin/admin.php:
|
2817 |
msgid "Show canonical URL column in post types"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: inc/admin/admin.php:
|
2821 |
msgid "Show Target Keyword column in post types"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: inc/admin/admin.php:
|
2825 |
msgid "Show noindex column in post types"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: inc/admin/admin.php:
|
2829 |
msgid "Show nofollow column in post types"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: inc/admin/admin.php:
|
2833 |
msgid "Show total number of words column in post types"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: inc/admin/admin.php:
|
2837 |
msgid "Show W3C validator column in post types"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: inc/admin/admin.php:
|
2841 |
msgid "Show Google Page Speed column in post types"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: inc/admin/admin.php:
|
2845 |
msgid "Hide Genesis SEO Metabox"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: inc/admin/admin.php:
|
2849 |
msgid "Hide Genesis SEO Settings link"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: inc/admin/admin.php:
|
2853 |
msgid "Hide advice in Structured Data Types metabox"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: inc/admin/admin.php:
|
2857 |
msgid "Block SEO metabox to user roles"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
-
#: inc/admin/admin.php:
|
2861 |
msgid "Block Content analysis metabox to user roles"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: inc/admin/admin.php:
|
2865 |
msgid "<p>Customize your title & meta description for homepage</p>"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: inc/admin/admin.php:
|
2869 |
msgid "<p>Customize your titles & metas for Single Custom Post Types</p>"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#: inc/admin/admin.php:
|
2873 |
msgid "<p>Customize your metas for all pages</p>"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: inc/admin/admin.php:
|
2877 |
msgid "<p>Customize your metas for all taxonomies archives</p>"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: inc/admin/admin.php:
|
2881 |
msgid "<p>Customize your metas for all archives</p>"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#: inc/admin/admin.php:
|
2885 |
msgid "Change this settings"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: inc/admin/admin.php:
|
2889 |
msgid ""
|
2890 |
"To view your sitemap, enable permalinks (not default one), and save settings "
|
2891 |
"to flush them."
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: inc/admin/admin.php:
|
2895 |
msgid ""
|
2896 |
"Your server uses NGINX. If XML Sitemaps doesn't work properly, you need to "
|
2897 |
"add this rule to your configuration:"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: inc/admin/admin.php:
|
2901 |
msgid "Noindex content will not be displayed in Sitemaps."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: inc/admin/admin.php:
|
2905 |
msgid "Blank sitemap?"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
-
#: inc/admin/admin.php:
|
2909 |
msgid "404 error?"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
-
#: inc/admin/admin.php:
|
2913 |
msgid "View your sitemap"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: inc/admin/admin.php:
|
2917 |
msgid "Ping Google manually"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
-
#: inc/admin/admin.php:
|
2921 |
msgid "Flush permalinks"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: inc/admin/admin.php:
|
2925 |
msgid "<p>Create an HTML Sitemap for your visitors and boost your SEO.</p>"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: inc/admin/admin.php:
|
2929 |
msgid "Guide to enable a HTML Sitemap - new window"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: inc/admin/admin.php:
|
2933 |
msgid "<p>Include/Exclude Post Types.</p>"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: inc/admin/admin.php:
|
2937 |
msgid "<p>Include/Exclude Taxonomies.</p>"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: inc/admin/admin.php:
|
2941 |
msgid "<p>Configure Google Knowledge Graph.</p>"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: inc/admin/admin.php:
|
2945 |
msgid "Learn more on Google official website."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: inc/admin/admin.php:
|
2949 |
msgid ""
|
2950 |
"<p>Link your site with your social accounts. Use markup on your website to "
|
2951 |
"add your social profile information to a Google Knowledge panel. Knowledge "
|
@@ -2955,60 +2958,60 @@ msgid ""
|
|
2955 |
"network links.</p>"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: inc/admin/admin.php:
|
2959 |
msgid "<p>Manage Open Graph data.</p>"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: inc/admin/admin.php:
|
2963 |
msgid "<p>We generate the <strong>og:image</strong> meta in this order:</p>"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: inc/admin/admin.php:
|
2967 |
msgid "Custom OG Image from SEO metabox"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: inc/admin/admin.php:
|
2971 |
msgid "Post thumbnail"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: inc/admin/admin.php:
|
2975 |
msgid "First image of your post content"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: inc/admin/admin.php:
|
2979 |
msgid "Global OG Image set in SEO > Social > Open Graph"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: inc/admin/admin.php:
|
2983 |
msgid "<p>Manage your Twitter card.</p>"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: inc/admin/admin.php:
|
2987 |
msgid ""
|
2988 |
"<p>We generate the <strong>twitter:image</strong> meta in this order:</p>"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: inc/admin/admin.php:
|
2992 |
msgid "Custom Twitter image from SEO metabox"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: inc/admin/admin.php:
|
2996 |
msgid "Global Twitter:image set in SEO > Social > Twitter Card"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
-
#: inc/admin/admin.php:
|
3000 |
msgid "<p>Link your Google Analytics to your website.</p>"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: inc/admin/admin.php:
|
3004 |
msgid "<p>Configure your Google Analytics tracking code.</p>"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
-
#: inc/admin/admin.php:
|
3008 |
msgid "<p>Track events in Google Analytics.</p>"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: inc/admin/admin.php:
|
3012 |
msgid ""
|
3013 |
"<p>Configure your Google Analytics custom dimensions. <br>Custom dimensions "
|
3014 |
"and custom metrics in SEOPress are like the default dimensions and metrics "
|
@@ -3018,380 +3021,380 @@ msgid ""
|
|
3018 |
"Google Analytics account. More info by clicking on the help icon."
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: inc/admin/admin.php:
|
3022 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: inc/admin/admin.php:
|
3026 |
msgid "<p>Advanced SEO options.</p>"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: inc/admin/admin.php:
|
3030 |
msgid "<p>Customize SEOPress to fit your needs.</p>"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: inc/admin/admin.php:
|
3034 |
msgid "<p>Manage security.</p>"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: inc/admin/admin.php:
|
3038 |
msgid "Enter your separator, eg: \"-\""
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: inc/admin/admin.php:
|
3042 |
#, php-format
|
3043 |
msgid "Use this separator with %%sep%% in your title and meta description."
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: inc/admin/admin.php:
|
3047 |
msgid "My awesome website"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: inc/admin/admin.php:
|
3051 |
-
#: inc/admin/admin.php:
|
3052 |
-
#: inc/admin/admin.php:
|
3053 |
-
#: inc/admin/admin.php:
|
3054 |
msgid "More tags"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: inc/admin/admin.php:
|
3058 |
msgid "This is a cool website about Wookiees"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: inc/admin/admin.php:
|
3062 |
msgid "Looking to edit your blog page?"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: inc/admin/admin.php:
|
3066 |
-
#: inc/admin/admin.php:
|
3067 |
-
#: inc/admin/admin.php:
|
3068 |
msgid "Title template"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
#: inc/admin/admin.php:
|
3072 |
-
#: inc/admin/admin.php:
|
3073 |
-
#: inc/admin/admin.php:
|
3074 |
msgid "Meta description template"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: inc/admin/admin.php:
|
3078 |
msgid ""
|
3079 |
"Do not follow links for this single post type <strong>(nofollow)</strong>"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: inc/admin/admin.php:
|
3083 |
msgid "Display date in Google search results?"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: inc/admin/admin.php:
|
3087 |
msgid "Display post thumbnail in Google Custom Search results?"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: inc/admin/admin.php:
|
3091 |
msgid "Category Title"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: inc/admin/admin.php:
|
3095 |
msgid "Tag Title"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: inc/admin/admin.php:
|
3099 |
msgid "Term Title"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: inc/admin/admin.php:
|
3103 |
msgid "Category Description"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: inc/admin/admin.php:
|
3107 |
msgid "Tag Description"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: inc/admin/admin.php:
|
3111 |
msgid "Term Description"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: inc/admin/admin.php:
|
3115 |
msgid ""
|
3116 |
"Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
-
#: inc/admin/admin.php:
|
3120 |
msgid "See archive"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: inc/admin/admin.php:
|
3124 |
msgid "Post Type Archive Name"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
-
#: inc/admin/admin.php:
|
3128 |
msgid ""
|
3129 |
"Do not follow links for this post type archive <strong>(nofollow)</strong>"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: inc/admin/admin.php:
|
3133 |
msgid "Author archives"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: inc/admin/admin.php:
|
3137 |
msgid "Disable author archives"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: inc/admin/admin.php:
|
3141 |
msgid "Date archives"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
-
#: inc/admin/admin.php:
|
3145 |
msgid ""
|
3146 |
"Do not display date archives in search engine results <strong>(noindex)</"
|
3147 |
"strong>"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: inc/admin/admin.php:
|
3151 |
msgid "Disable date archives"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: inc/admin/admin.php:
|
3155 |
msgid "Search archives"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: inc/admin/admin.php:
|
3159 |
msgid "Search Keywords"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: inc/admin/admin.php:
|
3163 |
msgid ""
|
3164 |
"Do not display search archives in search engine results <strong>(noindex)</"
|
3165 |
"strong>"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: inc/admin/admin.php:
|
3169 |
msgid "404 archives"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: inc/admin/admin.php:
|
3173 |
msgid ""
|
3174 |
"Do not display all pages of the site in Google search results and do not "
|
3175 |
"display \"Cached\" links in search results."
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: inc/admin/admin.php:
|
3179 |
msgid "Do not follow links for all pages."
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: inc/admin/admin.php:
|
3183 |
msgid ""
|
3184 |
"Do not use Open Directory project metadata for titles or excerpts for all "
|
3185 |
"pages."
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: inc/admin/admin.php:
|
3189 |
msgid "Do not index images from the entire site."
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: inc/admin/admin.php:
|
3193 |
msgid "Do not display a \"Cached\" link in the Google search results."
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: inc/admin/admin.php:
|
3197 |
msgid ""
|
3198 |
"Do not display a description in the Google search results for all pages."
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#: inc/admin/admin.php:
|
3202 |
msgid ""
|
3203 |
"Prevent Google to display a sitelinks searchbox in search results. Enable "
|
3204 |
"this option will remove the \"Website\" schema from your source code."
|
3205 |
msgstr ""
|
3206 |
|
3207 |
-
#: inc/admin/admin.php:
|
3208 |
msgid "Add rel next/prev link in head of paginated archive pages"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
-
#: inc/admin/admin.php:
|
3212 |
msgid "Learn more on Google website"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
-
#: inc/admin/admin.php:
|
3216 |
msgid "Guide to enable XML Sitemaps - new window"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
-
#: inc/admin/admin.php:
|
3220 |
msgid ""
|
3221 |
"Enable Image Sitemaps (standard images, image galleries, featured image, "
|
3222 |
"WooCommerce product images)"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
-
#: inc/admin/admin.php:
|
3226 |
msgid "Images in XML sitemaps are visible only from the source code."
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: inc/admin/admin.php:
|
3230 |
msgid "Guide to enable XML image sitemaps - new window"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: inc/admin/admin.php:
|
3234 |
msgid "Enable Video Sitemaps"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: inc/admin/admin.php:
|
3238 |
#, php-format
|
3239 |
msgid ""
|
3240 |
"Your video sitemap is empty? Read our guide to learn more about <a href=\"%s"
|
3241 |
"\" target=\"_blank\">adding videos to your sitemap.</a>"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: inc/admin/admin.php:
|
3245 |
msgid "Guide to enable XML video sitemaps - new window"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: inc/admin/admin.php:
|
3249 |
msgid ""
|
3250 |
"Make sure to enable Author archive from SEO, Titles and metas, Archives tab."
|
3251 |
"</a>"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: inc/admin/admin.php:
|
3255 |
msgid "Include"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: inc/admin/admin.php:
|
3259 |
msgid ""
|
3260 |
"You should never include attachment post type in your sitemap. Be careful if "
|
3261 |
"you checked this."
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: inc/admin/admin.php:
|
3265 |
msgid "eg: 2, 28, 68"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: inc/admin/admin.php:
|
3269 |
msgid "You can also use this shortcode:"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: inc/admin/admin.php:
|
3273 |
msgid "eg: 13, 8, 38"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: inc/admin/admin.php:
|
3277 |
msgid ""
|
3278 |
"DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: inc/admin/admin.php:
|
3282 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: inc/admin/admin.php:
|
3286 |
msgid "Default (date)"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: inc/admin/admin.php:
|
3290 |
msgid "Modified date"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: inc/admin/admin.php:
|
3294 |
msgid "Post ID"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: inc/admin/admin.php:
|
3298 |
msgid "Menu order"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: inc/admin/admin.php:
|
3302 |
msgid "Disable date after each post, page, post type?"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: inc/admin/admin.php:
|
3306 |
msgid "eg: Apple"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: inc/admin/admin.php:
|
3310 |
msgid "Select your logo"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: inc/admin/admin.php:
|
3314 |
msgid "JPG, PNG, and GIF allowed."
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: inc/admin/admin.php:
|
3318 |
msgid "eg: +33123456789 (internationalized version required)"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: inc/admin/admin.php:
|
3322 |
msgid "Customer support"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: inc/admin/admin.php:
|
3326 |
msgid "Technical support"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: inc/admin/admin.php:
|
3330 |
msgid "Billing support"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: inc/admin/admin.php:
|
3334 |
msgid "Bill payment"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: inc/admin/admin.php:
|
3338 |
msgid "Sales"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: inc/admin/admin.php:
|
3342 |
msgid "Credit card support"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: inc/admin/admin.php:
|
3346 |
msgid "Emergency"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#: inc/admin/admin.php:
|
3350 |
msgid "Baggage tracking"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#: inc/admin/admin.php:
|
3354 |
msgid "Roadside assistance"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#: inc/admin/admin.php:
|
3358 |
msgid "Package tracking"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#: inc/admin/admin.php:
|
3362 |
-
#: inc/admin/admin.php:
|
3363 |
msgid "None"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: inc/admin/admin.php:
|
3367 |
msgid "Toll Free"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: inc/admin/admin.php:
|
3371 |
msgid "Hearing impaired supported"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: inc/admin/admin.php:
|
3375 |
msgid "Twitter Page URL"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: inc/admin/admin.php:
|
3379 |
msgid "Enable OG data"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: inc/admin/admin.php:
|
3383 |
msgid ""
|
3384 |
"One or more Facebook Page IDs that are associated with a URL in order to "
|
3385 |
"enable link editing and instant article publishing."
|
3386 |
msgstr ""
|
3387 |
|
3388 |
-
#: inc/admin/admin.php:
|
3389 |
msgid ""
|
3390 |
"The ID (or comma-separated list for properties that can accept multiple IDs) "
|
3391 |
"of an app, person using the app, or Page Graph API object."
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: inc/admin/admin.php:
|
3395 |
msgid ""
|
3396 |
"The Facebook app ID of the site's app. In order to use Facebook Insights you "
|
3397 |
"must add the app ID to your page. Insights lets you view analytics for "
|
@@ -3401,48 +3404,48 @@ msgid ""
|
|
3401 |
"span>"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
-
#: inc/admin/admin.php:
|
3405 |
msgid "How to create a Facebook App ID"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
-
#: inc/admin/admin.php:
|
3409 |
msgid "Enable Twitter card"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
-
#: inc/admin/admin.php:
|
3413 |
msgid "Use OG if no Twitter Cards"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
-
#: inc/admin/admin.php:
|
3417 |
msgid "Default"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
-
#: inc/admin/admin.php:
|
3421 |
msgid "Large"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: inc/admin/admin.php:
|
3425 |
msgid "Enable Google Analytics tracking (Global Site Tag: gtag.js)"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: inc/admin/admin.php:
|
3429 |
msgid "Enter your Tracking ID (UA-XXXX-XX)"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: inc/admin/admin.php:
|
3433 |
msgid "Find your tracking ID"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: inc/admin/admin.php:
|
3437 |
msgid "Request user's consent for analytics tracking (required by GDPR)"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: inc/admin/admin.php:
|
3441 |
msgid ""
|
3442 |
"<strong>The user must click the Accept button to allow tracking.</strong>"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: inc/admin/admin.php:
|
3446 |
msgid ""
|
3447 |
"User roles excluded from tracking will not see the consent message.<br> If "
|
3448 |
"you use a caching plugin, you have to exclude this JS file in your settings: "
|
@@ -3450,435 +3453,431 @@ msgid ""
|
|
3450 |
"js</strong> <br>and this cookie <strong>seopress-user-consent-accept</strong>"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: inc/admin/admin.php:
|
3454 |
msgid "Hook to add custom tracking code with user consent - new window"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: inc/admin/admin.php:
|
3458 |
msgid ""
|
3459 |
"Display and automatically accept the user‘s consent on page load (not fully "
|
3460 |
"GDPR)"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: inc/admin/admin.php:
|
3464 |
msgid "The previous option must be checked to use this."
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#: inc/admin/admin.php:
|
3468 |
msgid "Enter your message (HTML allowed)"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: inc/admin/admin.php:
|
3472 |
msgid "This message will only appear if request user's consent is enabled."
|
3473 |
msgstr ""
|
3474 |
|
3475 |
-
#: inc/admin/admin.php:
|
3476 |
msgid "Hook to filter user consent message - new window"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
-
#: inc/admin/admin.php:
|
3480 |
msgid "HTML tags allowed: strong, em, br, a href / target"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
-
#: inc/admin/admin.php:
|
3484 |
msgid ""
|
3485 |
"Shortcode allowed to get the privacy page set in WordPress settings: "
|
3486 |
"[seopress_privacy_page]"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#: inc/admin/admin.php:
|
3490 |
msgid "Accept"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#: inc/admin/admin.php:
|
3494 |
msgid "Change the button value"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
-
#: inc/admin/admin.php:
|
3498 |
msgid "Enter your Google Optimize container ID"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: inc/admin/admin.php:
|
3502 |
msgid "GTM-XXXXXXX"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
-
#: inc/admin/admin.php:
|
3506 |
msgid ""
|
3507 |
"Google Optimize offers A/B testing, website testing & personalization tools."
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: inc/admin/admin.php:
|
3511 |
msgid "Enter your Google Ads conversion ID (eg: AW-123456789)"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: inc/admin/admin.php:
|
3515 |
msgid "AW-XXXXXXXXX"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: inc/admin/admin.php:
|
3519 |
msgid "Paste your tracking code here like Google Tag Manager (head)"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: inc/admin/admin.php:
|
3523 |
msgid "Additional tracking code field"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: inc/admin/admin.php:
|
3527 |
msgid "This code will be added in the head section of your page."
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: inc/admin/admin.php:
|
3531 |
msgid "Paste your tracking code here like Google Tag Manager (body)"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: inc/admin/admin.php:
|
3535 |
msgid "Additional tracking code field added to body"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: inc/admin/admin.php:
|
3539 |
msgid "This code will be added just after the opening body tag of your page."
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: inc/admin/admin.php:
|
3543 |
msgid ""
|
3544 |
"A remarketing audience is a list of cookies or mobile-advertising IDs that "
|
3545 |
"represents a group of users you want to re-engage because of their "
|
3546 |
"likelihood to convert."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#: inc/admin/admin.php:
|
3550 |
msgid ""
|
3551 |
"When a customer of Analytics requests IP address anonymization, Analytics "
|
3552 |
"anonymizes the address as soon as technically feasible at the earliest "
|
3553 |
"possible stage of the collection network."
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: inc/admin/admin.php:
|
3557 |
msgid ""
|
3558 |
"Enhanced Link Attribution improves the accuracy of your In-Page Analytics "
|
3559 |
"report by automatically differentiating between multiple links to the same "
|
3560 |
"URL on a single page by using link element IDs."
|
3561 |
msgstr ""
|
3562 |
|
3563 |
-
#: inc/admin/admin.php:
|
3564 |
msgid ""
|
3565 |
"Cross domain tracking makes it possible for Analytics to see sessions on two "
|
3566 |
"related sites (such as an ecommerce site and a separate shopping cart site) "
|
3567 |
"as a single session. This is sometimes called site linking."
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: inc/admin/admin.php:
|
3571 |
msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: inc/admin/admin.php:
|
3575 |
-
msgid "Enable external links tracking"
|
3576 |
-
msgstr ""
|
3577 |
-
|
3578 |
-
#: inc/admin/admin.php:5486
|
3579 |
msgid "Enable download tracking"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: inc/admin/admin.php:
|
3583 |
msgid "pdf|docx|pptx|zip"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: inc/admin/admin.php:
|
3587 |
msgid "Separate each file type extensions with a pipe \"|\""
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: inc/admin/admin.php:
|
3591 |
msgid "Enable affiliate/outbound tracking"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: inc/admin/admin.php:
|
3595 |
msgid "aff|go|out"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: inc/admin/admin.php:
|
3599 |
msgid "Separate each keyword with a pipe \"|\""
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: inc/admin/admin.php:5550 inc/admin/admin.php:5627 inc/admin/admin.php:5704
|
3603 |
-
#: inc/admin/admin.php:5781 inc/admin/admin.php:5858
|
3604 |
-
msgid "Custom Dimension #1"
|
3605 |
-
msgstr ""
|
3606 |
-
|
3607 |
-
#: inc/admin/admin.php:5553 inc/admin/admin.php:5630 inc/admin/admin.php:5707
|
3608 |
-
#: inc/admin/admin.php:5784 inc/admin/admin.php:5861
|
3609 |
-
msgid "Custom Dimension #2"
|
3610 |
-
msgstr ""
|
3611 |
-
|
3612 |
#: inc/admin/admin.php:5556 inc/admin/admin.php:5633 inc/admin/admin.php:5710
|
3613 |
#: inc/admin/admin.php:5787 inc/admin/admin.php:5864
|
3614 |
-
msgid "Custom Dimension #
|
3615 |
msgstr ""
|
3616 |
|
3617 |
#: inc/admin/admin.php:5559 inc/admin/admin.php:5636 inc/admin/admin.php:5713
|
3618 |
#: inc/admin/admin.php:5790 inc/admin/admin.php:5867
|
3619 |
-
msgid "Custom Dimension #
|
3620 |
msgstr ""
|
3621 |
|
3622 |
#: inc/admin/admin.php:5562 inc/admin/admin.php:5639 inc/admin/admin.php:5716
|
3623 |
#: inc/admin/admin.php:5793 inc/admin/admin.php:5870
|
3624 |
-
msgid "Custom Dimension #
|
3625 |
msgstr ""
|
3626 |
|
3627 |
#: inc/admin/admin.php:5565 inc/admin/admin.php:5642 inc/admin/admin.php:5719
|
3628 |
#: inc/admin/admin.php:5796 inc/admin/admin.php:5873
|
3629 |
-
msgid "Custom Dimension #
|
3630 |
msgstr ""
|
3631 |
|
3632 |
#: inc/admin/admin.php:5568 inc/admin/admin.php:5645 inc/admin/admin.php:5722
|
3633 |
#: inc/admin/admin.php:5799 inc/admin/admin.php:5876
|
3634 |
-
msgid "Custom Dimension #
|
3635 |
msgstr ""
|
3636 |
|
3637 |
#: inc/admin/admin.php:5571 inc/admin/admin.php:5648 inc/admin/admin.php:5725
|
3638 |
#: inc/admin/admin.php:5802 inc/admin/admin.php:5879
|
3639 |
-
msgid "Custom Dimension #
|
3640 |
msgstr ""
|
3641 |
|
3642 |
#: inc/admin/admin.php:5574 inc/admin/admin.php:5651 inc/admin/admin.php:5728
|
3643 |
#: inc/admin/admin.php:5805 inc/admin/admin.php:5882
|
3644 |
-
msgid "Custom Dimension #
|
3645 |
msgstr ""
|
3646 |
|
3647 |
#: inc/admin/admin.php:5577 inc/admin/admin.php:5654 inc/admin/admin.php:5731
|
3648 |
#: inc/admin/admin.php:5808 inc/admin/admin.php:5885
|
3649 |
-
msgid "Custom Dimension #
|
3650 |
msgstr ""
|
3651 |
|
3652 |
#: inc/admin/admin.php:5580 inc/admin/admin.php:5657 inc/admin/admin.php:5734
|
3653 |
#: inc/admin/admin.php:5811 inc/admin/admin.php:5888
|
3654 |
-
msgid "Custom Dimension #
|
3655 |
msgstr ""
|
3656 |
|
3657 |
#: inc/admin/admin.php:5583 inc/admin/admin.php:5660 inc/admin/admin.php:5737
|
3658 |
#: inc/admin/admin.php:5814 inc/admin/admin.php:5891
|
3659 |
-
msgid "Custom Dimension #
|
3660 |
msgstr ""
|
3661 |
|
3662 |
#: inc/admin/admin.php:5586 inc/admin/admin.php:5663 inc/admin/admin.php:5740
|
3663 |
#: inc/admin/admin.php:5817 inc/admin/admin.php:5894
|
3664 |
-
msgid "Custom Dimension #
|
3665 |
msgstr ""
|
3666 |
|
3667 |
#: inc/admin/admin.php:5589 inc/admin/admin.php:5666 inc/admin/admin.php:5743
|
3668 |
#: inc/admin/admin.php:5820 inc/admin/admin.php:5897
|
3669 |
-
msgid "Custom Dimension #
|
3670 |
msgstr ""
|
3671 |
|
3672 |
#: inc/admin/admin.php:5592 inc/admin/admin.php:5669 inc/admin/admin.php:5746
|
3673 |
#: inc/admin/admin.php:5823 inc/admin/admin.php:5900
|
3674 |
-
msgid "Custom Dimension #
|
3675 |
msgstr ""
|
3676 |
|
3677 |
#: inc/admin/admin.php:5595 inc/admin/admin.php:5672 inc/admin/admin.php:5749
|
3678 |
#: inc/admin/admin.php:5826 inc/admin/admin.php:5903
|
3679 |
-
msgid "Custom Dimension #
|
3680 |
msgstr ""
|
3681 |
|
3682 |
#: inc/admin/admin.php:5598 inc/admin/admin.php:5675 inc/admin/admin.php:5752
|
3683 |
#: inc/admin/admin.php:5829 inc/admin/admin.php:5906
|
3684 |
-
msgid "Custom Dimension #
|
3685 |
msgstr ""
|
3686 |
|
3687 |
#: inc/admin/admin.php:5601 inc/admin/admin.php:5678 inc/admin/admin.php:5755
|
3688 |
#: inc/admin/admin.php:5832 inc/admin/admin.php:5909
|
3689 |
-
msgid "Custom Dimension #
|
3690 |
msgstr ""
|
3691 |
|
3692 |
#: inc/admin/admin.php:5604 inc/admin/admin.php:5681 inc/admin/admin.php:5758
|
3693 |
#: inc/admin/admin.php:5835 inc/admin/admin.php:5912
|
3694 |
-
msgid "Custom Dimension #
|
3695 |
msgstr ""
|
3696 |
|
3697 |
#: inc/admin/admin.php:5607 inc/admin/admin.php:5684 inc/admin/admin.php:5761
|
3698 |
#: inc/admin/admin.php:5838 inc/admin/admin.php:5915
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3699 |
msgid "Custom Dimension #20"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: inc/admin/admin.php:
|
3703 |
msgid "Redirect attachment pages to post parent (or homepage if none)"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: inc/admin/admin.php:
|
3707 |
msgid ""
|
3708 |
"If this option is checked, it will take precedence over the redirection of "
|
3709 |
"attachments to the post's parent."
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: inc/admin/admin.php:
|
3713 |
msgid "Remove ?replytocom link in source code"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: inc/admin/admin.php:
|
3717 |
msgid ""
|
3718 |
"When sending an image file, automatically set the title based on the filename"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#: inc/admin/admin.php:
|
3722 |
msgid ""
|
3723 |
"When sending an image file, automatically set the alternative text based on "
|
3724 |
"the filename"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
-
#: inc/admin/admin.php:
|
3728 |
msgid ""
|
3729 |
"When sending an image file, automatically set the caption based on the "
|
3730 |
"filename"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: inc/admin/admin.php:
|
3734 |
msgid ""
|
3735 |
"When sending an image file, automatically set the description based on the "
|
3736 |
"filename"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
-
#: inc/admin/admin.php:
|
3740 |
msgid "Add TINYMCE editor to term description"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
-
#: inc/admin/admin.php:
|
3744 |
msgid "You have to flush your permalinks each time you change this settings"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
-
#: inc/admin/admin.php:
|
3748 |
msgid ""
|
3749 |
"You must check this box if the structure of your permalinks DOES NOT contain "
|
3750 |
"a slash at the end (eg: /%postname%)"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: inc/admin/admin.php:
|
3754 |
msgid "Remove WordPress meta generator in source code"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: inc/admin/admin.php:
|
3758 |
msgid "Remove WordPress shortlink meta tag in source code (eg:"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: inc/admin/admin.php:
|
3762 |
msgid "Remove Windows Live Writer meta tag in source code (eg:"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: inc/admin/admin.php:
|
3766 |
msgid "Remove Really Simple Discovery meta tag in source code (eg:"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: inc/admin/admin.php:
|
3770 |
msgid "Enter Google meta value site verification"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: inc/admin/admin.php:
|
3774 |
msgid ""
|
3775 |
"If your site is already verified in <strong>Google Search Console</strong>, "
|
3776 |
"you can leave this field empty."
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: inc/admin/admin.php:
|
3780 |
msgid "Enter Bing meta value site verification"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
-
#: inc/admin/admin.php:
|
3784 |
msgid ""
|
3785 |
"If your site is already verified in <strong>Bing Webmaster tools</strong>, "
|
3786 |
"you can leave this field empty."
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: inc/admin/admin.php:
|
3790 |
msgid "Enter Pinterest meta value site verification"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#: inc/admin/admin.php:
|
3794 |
msgid "Enter Yandex meta value site verification"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: inc/admin/admin.php:
|
3798 |
msgid "Remove SEOPress from Admin Bar in backend and frontend"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#: inc/admin/admin.php:
|
3802 |
msgid "High priority (top)"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: inc/admin/admin.php:
|
3806 |
msgid "Normal priority (default)"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: inc/admin/admin.php:
|
3810 |
msgid "Low priority"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: inc/admin/admin.php:
|
3814 |
msgid "Hide Notifications Center in SEOPress Dashboard page"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: inc/admin/admin.php:
|
3818 |
msgid "Hide SEO tools in SEOPress Dashboard page"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: inc/admin/admin.php:
|
3822 |
msgid "Hide Useful Links in SEOPress dashboard page"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
-
#: inc/admin/admin.php:
|
3826 |
msgid "Add title column"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
-
#: inc/admin/admin.php:
|
3830 |
msgid "Add meta description column"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: inc/admin/admin.php:
|
3834 |
msgid "Add redirection enable column"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: inc/admin/admin.php:
|
3838 |
msgid "Add redirection URL column"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: inc/admin/admin.php:
|
3842 |
msgid "Add canonical URL column"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: inc/admin/admin.php:
|
3846 |
msgid "Add target keyword column"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: inc/admin/admin.php:
|
3850 |
msgid "Display noindex status"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: inc/admin/admin.php:
|
3854 |
msgid "Display nofollow status"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: inc/admin/admin.php:
|
3858 |
msgid "Display total number of words in content"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: inc/admin/admin.php:
|
3862 |
msgid "Display W3C column to check code quality"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: inc/admin/admin.php:
|
3866 |
msgid "Display Page Speed column to check performances"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: inc/admin/admin.php:
|
3870 |
msgid "Remove Genesis SEO Metabox"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: inc/admin/admin.php:
|
3874 |
msgid "Remove Genesis SEO link in WP Admin Menu"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#: inc/admin/admin.php:
|
3878 |
msgid "Remove the advice if None schema selected"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#: inc/admin/admin.php:
|
3882 |
msgid ""
|
3883 |
"Hook to filter structured data types metabox call by post type - new window"
|
3884 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: SEOPress\n"
|
5 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
|
6 |
+
"POT-Creation-Date: 2019-10-09 16:03+0200\n"
|
7 |
"PO-Revision-Date: 2019-08-22 12:52+0200\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: Benjamin DENIS <contact@seopress.org>\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 2.2.4\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_x;esc_attr_e;esc_attr__;esc_html__;esc_html_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
msgid "SEOPress"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: inc/admin/admin-header.php:23 inc/admin/admin.php:1365
|
26 |
#: inc/admin/adminbar.php:77
|
27 |
msgid "PRO"
|
28 |
msgstr ""
|
42 |
msgstr ""
|
43 |
|
44 |
#: inc/admin/admin-header.php:47 inc/admin/admin.php:187
|
45 |
+
#: inc/admin/admin.php:1541 inc/admin/adminbar.php:37
|
46 |
msgid "Social Networks"
|
47 |
msgstr ""
|
48 |
|
49 |
#: inc/admin/admin-header.php:53 inc/admin/admin.php:188
|
50 |
+
#: inc/admin/admin.php:1583 inc/admin/adminbar.php:43
|
51 |
msgid "Google Analytics"
|
52 |
msgstr ""
|
53 |
|
54 |
#: inc/admin/admin-header.php:59 inc/admin/admin-metaboxes-form.php:58
|
55 |
#: inc/admin/admin.php:189 inc/admin/admin.php:346 inc/admin/admin.php:620
|
56 |
+
#: inc/admin/admin.php:1625 inc/admin/adminbar.php:49
|
57 |
msgid "Advanced"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: inc/admin/admin-header.php:67 inc/admin/admin.php:1659
|
61 |
msgid "WooCommerce"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: inc/admin/admin-header.php:73 inc/admin/admin.php:1691
|
65 |
msgid "Easy Digital Downloads"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: inc/admin/admin-header.php:79 inc/admin/admin.php:1723
|
69 |
msgid "Local Business"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: inc/admin/admin-header.php:85 inc/admin/admin.php:1755
|
73 |
msgid "Dublin Core"
|
74 |
msgstr ""
|
75 |
|
77 |
msgid "Structured Data Types (schema.org)"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: inc/admin/admin-header.php:97 inc/admin/admin.php:1820
|
81 |
msgid "Breadcrumbs"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: inc/admin/admin-header.php:103 inc/admin/admin.php:1862
|
85 |
msgid "Google Page Speed"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: inc/admin/admin-header.php:110 inc/admin/admin.php:1888
|
89 |
msgid "robots.txt"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: inc/admin/admin-header.php:117 inc/admin/admin.php:1933
|
93 |
msgid "Google News Sitemap"
|
94 |
msgstr ""
|
95 |
|
96 |
#: inc/admin/admin-header.php:123 inc/admin/admin.php:659
|
97 |
+
#: inc/admin/admin.php:1980 inc/admin/adminbar.php:92
|
98 |
msgid "Redirections"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: inc/admin/admin-header.php:129 inc/admin/admin.php:2023
|
102 |
msgid "Broken links"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/admin/admin-header.php:135 inc/admin/admin.php:2056
|
106 |
#: inc/admin/adminbar.php:107
|
107 |
msgid "Backlinks"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/admin/admin-header.php:141 inc/admin/admin.php:2071
|
111 |
msgid "URL Rewriting"
|
112 |
msgstr ""
|
113 |
|
115 |
msgid "White Label"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/admin/admin-header.php:154 inc/admin/admin.php:2107
|
119 |
msgid ".htaccess"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: inc/admin/admin-header.php:161 inc/admin/admin.php:2123
|
123 |
msgid "RSS"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/admin/admin-header.php:167 inc/admin/admin.php:1339
|
127 |
+
#: inc/admin/admin.php:2164 inc/admin/adminbar.php:71
|
128 |
msgid "License"
|
129 |
msgstr ""
|
130 |
|
131 |
#: inc/admin/admin-header.php:174 inc/admin/admin.php:190
|
132 |
+
#: inc/admin/admin.php:2139 inc/admin/adminbar.php:55
|
133 |
msgid "Tools"
|
134 |
msgstr ""
|
135 |
|
366 |
msgstr ""
|
367 |
|
368 |
#: inc/admin/admin-metaboxes-content-analysis-form.php:226
|
369 |
+
#: inc/admin/admin-metaboxes-form.php:123
|
370 |
+
#: inc/admin/admin-metaboxes-form.php:124 inc/admin/admin-wizard.php:256
|
371 |
#: inc/admin/admin-wizard.php:275 inc/admin/admin-wizard.php:292
|
372 |
+
#: inc/admin/admin-wizard.php:311 inc/admin/admin.php:727
|
373 |
+
#: inc/admin/admin.php:748 inc/admin/admin.php:767 inc/admin/admin.php:788
|
374 |
+
#: inc/admin/admin.php:2261 inc/admin/admin.php:3720
|
375 |
#: inc/functions/options-advanced-admin.php:764
|
376 |
msgid "Meta description"
|
377 |
msgstr ""
|
534 |
msgid "Social"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: inc/admin/admin-metaboxes-form.php:62
|
538 |
msgid "Redirection"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: inc/admin/admin-metaboxes-form.php:68
|
542 |
msgid "Google News"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc/admin/admin-metaboxes-form.php:75
|
546 |
msgid "Video Sitemap"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: inc/admin/admin-metaboxes-form.php:98
|
550 |
msgid ""
|
551 |
"This is your <strong>Shop page</strong>. Go to <strong>SEO > Titles & Metas "
|
552 |
"> Archives > Products</strong> "
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: inc/admin/admin-metaboxes-form.php:98
|
556 |
msgid "to edit your title and meta description"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/admin/admin-metaboxes-form.php:104
|
560 |
+
#: inc/admin/admin-metaboxes-form.php:105
|
561 |
msgid "Title"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: inc/admin/admin-metaboxes-form.php:105
|
565 |
msgid "Enter your title"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/admin/admin-metaboxes-form.php:109
|
569 |
msgid " / 568 pixels - "
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: inc/admin/admin-metaboxes-form.php:111
|
573 |
+
#: inc/admin/admin-metaboxes-form.php:130
|
574 |
msgid " (maximum recommended limit)"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/admin/admin-metaboxes-form.php:115 inc/admin/admin.php:3766
|
578 |
+
#: inc/admin/admin.php:4754
|
579 |
msgid "Post Title"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: inc/admin/admin-metaboxes-form.php:117 inc/admin/admin.php:198
|
583 |
+
#: inc/admin/admin.php:3711 inc/admin/admin.php:3770 inc/admin/admin.php:3913
|
584 |
+
#: inc/admin/admin.php:4036 inc/admin/admin.php:4114 inc/admin/admin.php:4185
|
585 |
+
#: inc/admin/admin.php:4255 inc/admin/admin.php:4305
|
586 |
msgid "Site Title"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: inc/admin/admin-metaboxes-form.php:119 inc/admin/admin-wizard.php:369
|
590 |
+
#: inc/admin/admin.php:2245 inc/admin/admin.php:3698 inc/admin/admin.php:3712
|
591 |
+
#: inc/admin/admin.php:3768 inc/admin/admin.php:3911 inc/admin/admin.php:4034
|
592 |
+
#: inc/admin/admin.php:4113 inc/admin/admin.php:4184 inc/admin/admin.php:4254
|
593 |
+
#: inc/admin/admin.php:4306
|
594 |
msgid "Separator"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: inc/admin/admin-metaboxes-form.php:124
|
598 |
msgid "Enter your meta description"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: inc/admin/admin-metaboxes-form.php:128
|
602 |
msgid " / 940 pixels - "
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc/admin/admin-metaboxes-form.php:134
|
606 |
msgid "Category / term description"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: inc/admin/admin-metaboxes-form.php:138
|
610 |
msgid "Post Excerpt"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: inc/admin/admin-metaboxes-form.php:144
|
614 |
msgid "Google Snippet Preview"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: inc/admin/admin-metaboxes-form.php:145
|
618 |
msgid ""
|
619 |
"This is what your page will look like in Google search results. You have to "
|
620 |
"publish your post to get the Google Snippet Preview."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: inc/admin/admin-metaboxes-form.php:172
|
624 |
msgid ""
|
625 |
"Do not display this page in search engine results / XML - HTML sitemaps "
|
626 |
"<strong>(noindex)</strong>"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: inc/admin/admin-metaboxes-form.php:178
|
630 |
msgid "Do not follow links for this page <strong>(nofollow)</strong>"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: inc/admin/admin-metaboxes-form.php:184
|
634 |
msgid ""
|
635 |
"Do not use Open Directory project metadata for titles or excerpts for this "
|
636 |
"page <strong>(noodp)</strong>"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/admin/admin-metaboxes-form.php:190
|
640 |
msgid "Do not index images for this page <strong>(noimageindex)</strong>"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: inc/admin/admin-metaboxes-form.php:196
|
644 |
msgid ""
|
645 |
"Do not display a \"Cached\" link in the Google search results "
|
646 |
"<strong>(noarchive)</strong>"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: inc/admin/admin-metaboxes-form.php:202
|
650 |
msgid ""
|
651 |
"Do not display a description in search results for this page "
|
652 |
"<strong>(nosnippet)</strong>"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: inc/admin/admin-metaboxes-form.php:206
|
656 |
msgid ""
|
657 |
"You cannot uncheck a parameter? This is normal, and it's most likely defined "
|
658 |
"in the global settings of the extension."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: inc/admin/admin-metaboxes-form.php:209
|
662 |
+
#: inc/admin/admin-metaboxes-form.php:210 inc/admin/admin-wizard.php:260
|
663 |
#: inc/admin/admin-wizard.php:296 inc/admin/admin-wizard.php:315
|
664 |
+
#: inc/admin/admin.php:731 inc/admin/admin.php:771 inc/admin/admin.php:792
|
665 |
msgid "Canonical URL"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: inc/admin/admin-metaboxes-form.php:210
|
669 |
msgid "Default value: "
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: inc/admin/admin-metaboxes-form.php:212
|
673 |
msgid ""
|
674 |
"A canonical URL is the URL of the page that Google thinks is most "
|
675 |
"representative from a set of duplicate pages on your site. For example, if "
|
678 |
"pages do not need to be absolutely identical; minor changes in sorting or "
|
679 |
"filtering of list pages do not make the page unique (for example, sorting by "
|
680 |
"price or filtering by item color).\n"
|
681 |
+
" The canonical can be in a different domain than a "
|
682 |
+
"duplicate."
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: inc/admin/admin-metaboxes-form.php:219
|
686 |
msgid "Select a primary category"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: inc/admin/admin-metaboxes-form.php:220
|
690 |
msgid ""
|
691 |
"Set the category that gets used in the %category% permalink if you have "
|
692 |
"multiple categories."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: inc/admin/admin-metaboxes-form.php:225 inc/admin/admin-wizard.php:380
|
696 |
+
#: inc/admin/admin.php:4797
|
697 |
msgid "None (will disable this feature)"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: inc/admin/admin-metaboxes-form.php:236
|
701 |
+
#: inc/admin/admin-metaboxes-form.php:237
|
702 |
msgid "Custom breadcrumbs"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: inc/admin/admin-metaboxes-form.php:237
|
706 |
msgid "Enter a custom value, useful if your title is too long"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: inc/admin/admin-metaboxes-form.php:247
|
710 |
msgid "Ask Facebook to update his cache"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: inc/admin/admin-metaboxes-form.php:249
|
714 |
+
#: inc/admin/admin-metaboxes-form.php:250
|
715 |
msgid "Facebook Title"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: inc/admin/admin-metaboxes-form.php:250
|
719 |
msgid "Enter your Facebook title"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: inc/admin/admin-metaboxes-form.php:253
|
723 |
+
#: inc/admin/admin-metaboxes-form.php:254
|
724 |
msgid "Facebook description"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: inc/admin/admin-metaboxes-form.php:254
|
728 |
msgid "Enter your Facebook description"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: inc/admin/admin-metaboxes-form.php:257
|
732 |
+
#: inc/admin/admin-metaboxes-form.php:258
|
733 |
msgid "Facebook Thumbnail"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: inc/admin/admin-metaboxes-form.php:258
|
737 |
+
#: inc/admin/admin-metaboxes-form.php:276 inc/admin/admin.php:5066
|
738 |
+
#: inc/admin/admin.php:5158
|
739 |
msgid "Select your default thumbnail"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: inc/admin/admin-metaboxes-form.php:259 inc/admin/admin.php:5070
|
743 |
msgid ""
|
744 |
"Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or "
|
745 |
"3280x1712px for retina screens)"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: inc/admin/admin-metaboxes-form.php:260
|
749 |
+
#: inc/admin/admin-metaboxes-form.php:278
|
750 |
+
#: inc/admin/admin-metaboxes-form.php:427 inc/admin/admin.php:4831
|
751 |
+
#: inc/admin/admin.php:5068 inc/admin/admin.php:5160
|
752 |
msgid "Upload an Image"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: inc/admin/admin-metaboxes-form.php:265
|
756 |
msgid "Preview your Twitter card using the official validator"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: inc/admin/admin-metaboxes-form.php:267
|
760 |
+
#: inc/admin/admin-metaboxes-form.php:268
|
761 |
msgid "Twitter Title"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: inc/admin/admin-metaboxes-form.php:268
|
765 |
msgid "Enter your Twitter title"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: inc/admin/admin-metaboxes-form.php:271
|
769 |
+
#: inc/admin/admin-metaboxes-form.php:272
|
770 |
msgid "Twitter description"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: inc/admin/admin-metaboxes-form.php:272
|
774 |
msgid "Enter your Twitter description"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: inc/admin/admin-metaboxes-form.php:275
|
778 |
+
#: inc/admin/admin-metaboxes-form.php:278
|
779 |
msgid "Twitter Thumbnail"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: inc/admin/admin-metaboxes-form.php:277 inc/admin/admin.php:5162
|
783 |
msgid ""
|
784 |
"Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 "
|
785 |
"(2:1 with large card), 5Mb max."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: inc/admin/admin-metaboxes-form.php:289
|
789 |
msgid "Enable redirection?"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: inc/admin/admin-metaboxes-form.php:293
|
793 |
+
#: inc/admin/admin-metaboxes-form.php:301
|
794 |
msgid "URL redirection"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: inc/admin/admin-metaboxes-form.php:295
|
798 |
msgid "301 Moved Permanently"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: inc/admin/admin-metaboxes-form.php:296
|
802 |
msgid "302 Found / Moved Temporarily"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: inc/admin/admin-metaboxes-form.php:297
|
806 |
msgid "307 Moved Temporarily"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: inc/admin/admin-metaboxes-form.php:298
|
810 |
msgid "410 Gone"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: inc/admin/admin-metaboxes-form.php:299
|
814 |
msgid "451 Unavailable For Legal Reasons"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: inc/admin/admin-metaboxes-form.php:301
|
818 |
msgid "Enter your new URL in absolute (eg: https://www.example.com/)"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: inc/admin/admin-metaboxes-form.php:306
|
822 |
msgid "Query parameters"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: inc/admin/admin-metaboxes-form.php:308
|
826 |
msgid "Exactly match all parameters"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: inc/admin/admin-metaboxes-form.php:309
|
830 |
msgid "Exclude all parameters"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: inc/admin/admin-metaboxes-form.php:310
|
834 |
msgid "Exclude all parameters and pass them to the redirection"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: inc/admin/admin-metaboxes-form.php:319
|
838 |
+
#: inc/admin/admin-metaboxes-form.php:321
|
839 |
+
#: inc/admin/admin-metaboxes-form.php:324
|
840 |
+
#: inc/admin/admin-metaboxes-form.php:326
|
841 |
msgid "Test your URL"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: inc/admin/admin-metaboxes-form.php:340
|
845 |
msgid "Need help with your redirections? Read our guide."
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: inc/admin/admin-metaboxes-form.php:354
|
849 |
msgid "Exclude this post from Google News Sitemap?"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: inc/admin/admin-metaboxes-form.php:380
|
853 |
msgid "Exclude this post from Video Sitemap?"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: inc/admin/admin-metaboxes-form.php:382
|
857 |
msgid ""
|
858 |
"If your post is set to noindex, it will be automatically excluded from the "
|
859 |
"sitemap."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: inc/admin/admin-metaboxes-form.php:401
|
863 |
msgid "Video "
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: inc/admin/admin-metaboxes-form.php:405
|
867 |
msgid "Video URL (required)"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: inc/admin/admin-metaboxes-form.php:406
|
871 |
msgid "Enter your video URL"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: inc/admin/admin-metaboxes-form.php:406
|
875 |
msgid "Video URL"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: inc/admin/admin-metaboxes-form.php:411
|
879 |
msgid ""
|
880 |
"NOT an external video (eg: video hosting on YouTube, Vimeo, Wistia...)? "
|
881 |
"Check this if your video is hosting on this server."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: inc/admin/admin-metaboxes-form.php:415
|
885 |
msgid "Video Title (required)"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: inc/admin/admin-metaboxes-form.php:416
|
889 |
msgid "Enter your video title"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: inc/admin/admin-metaboxes-form.php:416
|
893 |
msgid "Video title"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: inc/admin/admin-metaboxes-form.php:417
|
897 |
msgid "Default: title tag, if not available, post title."
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: inc/admin/admin-metaboxes-form.php:420
|
901 |
msgid "Video Description (required)"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: inc/admin/admin-metaboxes-form.php:421
|
905 |
msgid "Enter your video description"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: inc/admin/admin-metaboxes-form.php:421
|
909 |
msgid "Video description"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: inc/admin/admin-metaboxes-form.php:422
|
913 |
msgid ""
|
914 |
"2048 characters max.; default: meta description. If not available, use the "
|
915 |
"beginning of the post content."
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: inc/admin/admin-metaboxes-form.php:425
|
919 |
msgid "Video Thumbnail (required)"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: inc/admin/admin-metaboxes-form.php:426
|
923 |
msgid "Select your video thumbnail"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: inc/admin/admin-metaboxes-form.php:427
|
927 |
msgid "Video Thumbnail"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: inc/admin/admin-metaboxes-form.php:428
|
931 |
msgid ""
|
932 |
"Minimum size: 160x90px (1920x1080 max), JPG, PNG or GIF formats. Default: "
|
933 |
"your post featured image."
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: inc/admin/admin-metaboxes-form.php:431
|
937 |
msgid "Video Duration (recommended)"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: inc/admin/admin-metaboxes-form.php:432
|
941 |
msgid "Duration in seconds"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: inc/admin/admin-metaboxes-form.php:432
|
945 |
msgid "Video duration"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: inc/admin/admin-metaboxes-form.php:433
|
949 |
msgid ""
|
950 |
"The duration of the video in seconds. Value must be between 0 and 28800 (8 "
|
951 |
"hours)."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: inc/admin/admin-metaboxes-form.php:436
|
955 |
msgid "Video Rating"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: inc/admin/admin-metaboxes-form.php:437
|
959 |
msgid "Video rating"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: inc/admin/admin-metaboxes-form.php:438
|
963 |
msgid "Allowed values are float numbers in the range 0.0 to 5.0."
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: inc/admin/admin-metaboxes-form.php:441
|
967 |
+
#: inc/admin/admin-metaboxes-form.php:442
|
968 |
msgid "View count"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: inc/admin/admin-metaboxes-form.php:442
|
972 |
msgid "Number of views"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: inc/admin/admin-metaboxes-form.php:445
|
976 |
+
#: inc/admin/admin-metaboxes-form.php:446
|
977 |
msgid "Video tags"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: inc/admin/admin-metaboxes-form.php:446
|
981 |
msgid "Enter your video tags"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: inc/admin/admin-metaboxes-form.php:447
|
985 |
msgid ""
|
986 |
"32 tags max., separate tags with commas. Default: target keywords + post "
|
987 |
"tags if available."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: inc/admin/admin-metaboxes-form.php:450
|
991 |
+
#: inc/admin/admin-metaboxes-form.php:451
|
992 |
msgid "Video categories"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: inc/admin/admin-metaboxes-form.php:451
|
996 |
msgid "Enter your video categories"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: inc/admin/admin-metaboxes-form.php:452
|
1000 |
msgid ""
|
1001 |
"256 characters max., usually a video will belong to a single category, "
|
1002 |
"separate categories with commas. Default: first post category if available."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: inc/admin/admin-metaboxes-form.php:457
|
1006 |
msgid "NOT family friendly?"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: inc/admin/admin-metaboxes-form.php:459
|
1010 |
msgid "The video will be available only to users with SafeSearch turned off."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: inc/admin/admin-metaboxes-form.php:461
|
1014 |
msgid "Remove video"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: inc/admin/admin-metaboxes-form.php:468
|
1018 |
msgid "Add video"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: inc/admin/admin-metaboxes.php:428
|
1022 |
msgid "Content analysis"
|
1023 |
msgstr ""
|
1024 |
|
1060 |
"quickly."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: inc/admin/admin-wizard.php:252 inc/admin/admin.php:723
|
1064 |
msgid "Import posts and terms metadata from Yoast"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
#: inc/admin/admin-wizard.php:253 inc/admin/admin-wizard.php:272
|
1068 |
#: inc/admin/admin-wizard.php:289 inc/admin/admin-wizard.php:308
|
1069 |
+
#: inc/admin/admin.php:724 inc/admin/admin.php:745 inc/admin/admin.php:764
|
1070 |
+
#: inc/admin/admin.php:785
|
1071 |
msgid "By clicking Migrate, we'll import:"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: inc/admin/admin-wizard.php:255 inc/admin/admin-wizard.php:274
|
1075 |
#: inc/admin/admin-wizard.php:291 inc/admin/admin-wizard.php:310
|
1076 |
+
#: inc/admin/admin.php:726 inc/admin/admin.php:747 inc/admin/admin.php:766
|
1077 |
+
#: inc/admin/admin.php:787
|
1078 |
msgid "Title tags"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
#: inc/admin/admin-wizard.php:257 inc/admin/admin-wizard.php:276
|
1082 |
#: inc/admin/admin-wizard.php:293 inc/admin/admin-wizard.php:312
|
1083 |
+
#: inc/admin/admin.php:728 inc/admin/admin.php:749 inc/admin/admin.php:768
|
1084 |
+
#: inc/admin/admin.php:789
|
1085 |
msgid "Facebook Open Graph tags (title, description and image thumbnail)"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
#: inc/admin/admin-wizard.php:258 inc/admin/admin-wizard.php:294
|
1089 |
+
#: inc/admin/admin-wizard.php:313 inc/admin/admin.php:729
|
1090 |
+
#: inc/admin/admin.php:769 inc/admin/admin.php:790
|
1091 |
msgid "Twitter tags (title, description and image thumbnail)"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: inc/admin/admin-wizard.php:259 inc/admin/admin.php:730
|
1095 |
msgid "Meta Robots (noindex, nofollow...)"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
#: inc/admin/admin-wizard.php:261 inc/admin/admin-wizard.php:316
|
1099 |
+
#: inc/admin/admin.php:732 inc/admin/admin.php:793
|
1100 |
msgid "Focus keywords"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: inc/admin/admin-wizard.php:263 inc/admin/admin.php:734
|
1104 |
msgid ""
|
1105 |
"<strong>WARNING:</strong> Migration will delete / update all SEOPress posts "
|
1106 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
1109 |
|
1110 |
#: inc/admin/admin-wizard.php:264 inc/admin/admin-wizard.php:281
|
1111 |
#: inc/admin/admin-wizard.php:300 inc/admin/admin-wizard.php:319
|
1112 |
+
#: inc/admin/admin.php:735 inc/admin/admin.php:754 inc/admin/admin.php:775
|
1113 |
+
#: inc/admin/admin.php:796
|
1114 |
msgid "Migrate now"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: inc/admin/admin-wizard.php:271 inc/admin/admin.php:744
|
1118 |
msgid "Import posts and terms metadata from All In One SEO"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: inc/admin/admin-wizard.php:277 inc/admin/admin.php:750
|
1122 |
msgid "Twitter image thumbnail"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: inc/admin/admin-wizard.php:278 inc/admin/admin.php:751
|
1126 |
msgid "Meta Robots (noindex, nofollow)"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: inc/admin/admin-wizard.php:280 inc/admin/admin.php:753
|
1130 |
msgid ""
|
1131 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
1132 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
1133 |
"NOT delete any AIO data."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: inc/admin/admin-wizard.php:288 inc/admin/admin.php:763
|
1137 |
msgid "Import posts and terms metadata from The SEO Framework"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: inc/admin/admin-wizard.php:295 inc/admin/admin.php:770
|
1141 |
msgid "Meta Robots (noindex, nofollow, noarchive)"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: inc/admin/admin-wizard.php:297 inc/admin/admin.php:772
|
1145 |
#: inc/functions/options-advanced-admin.php:296
|
1146 |
msgid "Redirect URL"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: inc/admin/admin-wizard.php:299 inc/admin/admin.php:774
|
1150 |
msgid ""
|
1151 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
1152 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
1153 |
"NOT delete any SEO Framework data."
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: inc/admin/admin-wizard.php:307 inc/admin/admin.php:784
|
1157 |
msgid "Import posts and terms metadata from Rank Math"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: inc/admin/admin-wizard.php:314 inc/admin/admin.php:791
|
1161 |
msgid "Meta Robots (noindex, nofollow, noarchive, noimageindex)"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: inc/admin/admin-wizard.php:318 inc/admin/admin.php:795
|
1165 |
msgid ""
|
1166 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
1167 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
1182 |
msgid "eg: |"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: inc/admin/admin-wizard.php:372 inc/admin/admin.php:2253
|
1186 |
+
#: inc/admin/admin.php:3708
|
1187 |
msgid "Site title"
|
1188 |
msgstr ""
|
1189 |
|
1191 |
msgid "eg: My super website"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: inc/admin/admin-wizard.php:375 inc/admin/admin.php:2650
|
1195 |
msgid "Person or organization"
|
1196 |
msgstr ""
|
1197 |
|
1199 |
msgid "Choose a knowledge type"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: inc/admin/admin-wizard.php:383 inc/admin/admin.php:4800
|
1203 |
msgid "Person"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: inc/admin/admin-wizard.php:386 inc/admin/admin.php:4803
|
1207 |
msgid "Organization"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: inc/admin/admin-wizard.php:390 inc/admin/admin.php:2658
|
1211 |
+
#: inc/admin/admin.php:4816
|
1212 |
msgid "Your name/organization"
|
1213 |
msgstr ""
|
1214 |
|
1216 |
msgid "eg: SEOPress"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: inc/admin/admin-wizard.php:393 inc/admin/admin.php:2666
|
1220 |
+
#: inc/admin/admin.php:4829
|
1221 |
msgid "Your photo/organization logo"
|
1222 |
msgstr ""
|
1223 |
|
1229 |
msgid "Facebook page URL"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: inc/admin/admin-wizard.php:397 inc/admin/admin.php:4937
|
1233 |
msgid "eg: https://www.facebook.com/your-page"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: inc/admin/admin-wizard.php:399 inc/admin/admin.php:2715
|
1237 |
msgid "Twitter Username"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: inc/admin/admin-wizard.php:400 inc/admin/admin.php:4950
|
1241 |
msgid "eg: @wp_seopress"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: inc/admin/admin-wizard.php:402 inc/admin/admin.php:2723
|
1245 |
+
#: inc/admin/admin.php:4962
|
1246 |
msgid "Pinterest URL"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: inc/admin/admin-wizard.php:403 inc/admin/admin.php:4962
|
1250 |
msgid "eg: https://pinterest.com/wpbuy/"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: inc/admin/admin-wizard.php:405 inc/admin/admin.php:2731
|
1254 |
+
#: inc/admin/admin.php:4974
|
1255 |
msgid "Instagram URL"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: inc/admin/admin-wizard.php:406 inc/admin/admin.php:4974
|
1259 |
msgid "eg: https://www.instagram.com/wp_seopress/"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: inc/admin/admin-wizard.php:408 inc/admin/admin.php:2739
|
1263 |
+
#: inc/admin/admin.php:4986
|
1264 |
msgid "YouTube URL"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: inc/admin/admin-wizard.php:409 inc/admin/admin.php:4986
|
1268 |
msgid "eg: https://www.youtube.com/SEOPress"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: inc/admin/admin-wizard.php:411 inc/admin/admin.php:2747
|
1272 |
+
#: inc/admin/admin.php:4998
|
1273 |
msgid "LinkedIn URL"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: inc/admin/admin-wizard.php:412 inc/admin/admin.php:4998
|
1277 |
msgid "eg: http://linkedin.com/company/seopress/"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: inc/admin/admin-wizard.php:414 inc/admin/admin.php:2755
|
1281 |
+
#: inc/admin/admin.php:5010
|
1282 |
msgid "MySpace URL"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: inc/admin/admin-wizard.php:415 inc/admin/admin.php:5010
|
1286 |
msgid "eg: https://myspace.com/your-page"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: inc/admin/admin-wizard.php:417 inc/admin/admin.php:2763
|
1290 |
+
#: inc/admin/admin.php:5022
|
1291 |
msgid "Soundcloud URL"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: inc/admin/admin-wizard.php:418 inc/admin/admin.php:5022
|
1295 |
msgid "eg: https://soundcloud.com/michaelmccannmusic"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: inc/admin/admin-wizard.php:420 inc/admin/admin.php:2771
|
1299 |
+
#: inc/admin/admin.php:5034
|
1300 |
msgid "Tumblr URL"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: inc/admin/admin-wizard.php:421 inc/admin/admin.php:5034
|
1304 |
msgid "eg: https://your-site.tumblr.com"
|
1305 |
msgstr ""
|
1306 |
|
1319 |
msgid "For which single post types, should indexing be disabled?"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: inc/admin/admin-wizard.php:498 inc/admin/admin.php:3802
|
1323 |
msgid ""
|
1324 |
"Do not display this single post type in search engine results "
|
1325 |
"<strong>(noindex)</strong>"
|
1329 |
msgid "For which post type archives, should indexing be disabled?"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: inc/admin/admin-wizard.php:527 inc/admin/admin.php:4068
|
1333 |
msgid ""
|
1334 |
"Do not display this post type archive in search engine results "
|
1335 |
"<strong>(noindex)</strong>"
|
1339 |
msgid "For which taxonomy archives, should indexing be disabled?"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: inc/admin/admin-wizard.php:556 inc/admin/admin.php:3963
|
1343 |
msgid ""
|
1344 |
"Do not display this taxonomy archive in search engine results "
|
1345 |
"<strong>(noindex)</strong>"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: inc/admin/admin-wizard.php:639 inc/admin/admin.php:4145
|
1349 |
msgid ""
|
1350 |
"Do not display author archives in search engine results <strong>(noindex)</"
|
1351 |
"strong>"
|
1357 |
"content."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: inc/admin/admin-wizard.php:651 inc/admin/admin.php:5956
|
1361 |
msgid ""
|
1362 |
"Redirect attachment pages to their file URL (https://www.example.com/my-"
|
1363 |
"image-file.jpg)"
|
1369 |
"Optimize this by redirecting the user directly to the URL of the media file."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: inc/admin/admin-wizard.php:663 inc/admin/admin.php:6077
|
1373 |
msgid "Remove /category/ in your permalinks"
|
1374 |
msgstr ""
|
1375 |
|
1462 |
msgid "Dashboard"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: inc/admin/admin.php:186 inc/admin/admin.php:1499
|
1466 |
msgid "XML / Image / Video / HTML Sitemap"
|
1467 |
msgstr ""
|
1468 |
|
1485 |
msgid "%%tagline%%"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: inc/admin/admin.php:199 inc/admin/admin.php:3713 inc/admin/admin.php:3724
|
1489 |
msgid "Tagline"
|
1490 |
msgstr ""
|
1491 |
|
1530 |
msgid "%%post_author%%"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: inc/admin/admin.php:204 inc/admin/admin.php:4112
|
1534 |
msgid "Post author"
|
1535 |
msgstr ""
|
1536 |
|
1837 |
#: inc/admin/admin.php:324 inc/admin/admin.php:328 inc/admin/admin.php:391
|
1838 |
#: inc/admin/admin.php:395 inc/admin/admin.php:456 inc/admin/admin.php:460
|
1839 |
#: inc/admin/admin.php:523 inc/admin/admin.php:527 inc/admin/admin.php:602
|
1840 |
+
#: inc/admin/admin.php:606 inc/admin/admin.php:1471 inc/admin/admin.php:1475
|
1841 |
+
#: inc/admin/admin.php:1513 inc/admin/admin.php:1517 inc/admin/admin.php:1555
|
1842 |
+
#: inc/admin/admin.php:1559 inc/admin/admin.php:1597 inc/admin/admin.php:1601
|
1843 |
+
#: inc/admin/admin.php:1639 inc/admin/admin.php:1643 inc/admin/admin.php:1673
|
1844 |
+
#: inc/admin/admin.php:1677 inc/admin/admin.php:1705 inc/admin/admin.php:1709
|
1845 |
+
#: inc/admin/admin.php:1737 inc/admin/admin.php:1741 inc/admin/admin.php:1769
|
1846 |
+
#: inc/admin/admin.php:1773 inc/admin/admin.php:1802 inc/admin/admin.php:1806
|
1847 |
+
#: inc/admin/admin.php:1834 inc/admin/admin.php:1838 inc/admin/admin.php:1904
|
1848 |
+
#: inc/admin/admin.php:1908 inc/admin/admin.php:1947 inc/admin/admin.php:1951
|
1849 |
+
#: inc/admin/admin.php:1995 inc/admin/admin.php:1999 inc/admin/admin.php:2038
|
1850 |
+
#: inc/admin/admin.php:2042 inc/admin/admin.php:2087 inc/admin/admin.php:2091
|
1851 |
msgid "Click to disable this feature"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
#: inc/admin/admin.php:325 inc/admin/admin.php:327 inc/admin/admin.php:392
|
1855 |
#: inc/admin/admin.php:394 inc/admin/admin.php:457 inc/admin/admin.php:459
|
1856 |
#: inc/admin/admin.php:524 inc/admin/admin.php:526 inc/admin/admin.php:603
|
1857 |
+
#: inc/admin/admin.php:605 inc/admin/admin.php:1472 inc/admin/admin.php:1474
|
1858 |
+
#: inc/admin/admin.php:1514 inc/admin/admin.php:1516 inc/admin/admin.php:1556
|
1859 |
+
#: inc/admin/admin.php:1558 inc/admin/admin.php:1598 inc/admin/admin.php:1600
|
1860 |
+
#: inc/admin/admin.php:1640 inc/admin/admin.php:1642 inc/admin/admin.php:1674
|
1861 |
+
#: inc/admin/admin.php:1676 inc/admin/admin.php:1706 inc/admin/admin.php:1708
|
1862 |
+
#: inc/admin/admin.php:1738 inc/admin/admin.php:1740 inc/admin/admin.php:1770
|
1863 |
+
#: inc/admin/admin.php:1772 inc/admin/admin.php:1803 inc/admin/admin.php:1805
|
1864 |
+
#: inc/admin/admin.php:1835 inc/admin/admin.php:1837 inc/admin/admin.php:1905
|
1865 |
+
#: inc/admin/admin.php:1907 inc/admin/admin.php:1948 inc/admin/admin.php:1950
|
1866 |
+
#: inc/admin/admin.php:1996 inc/admin/admin.php:1998 inc/admin/admin.php:2039
|
1867 |
+
#: inc/admin/admin.php:2041 inc/admin/admin.php:2088 inc/admin/admin.php:2090
|
1868 |
msgid "Click to enable this feature"
|
1869 |
msgstr ""
|
1870 |
|
1952 |
msgid "Reset"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: inc/admin/admin.php:677
|
1956 |
msgid "Import data from a CSV"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: inc/admin/admin.php:678
|
1960 |
msgid ""
|
1961 |
"Import your title, meta description, meta robots, social metas from a CSV "
|
1962 |
"file with our import tool."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: inc/admin/admin.php:679
|
1966 |
msgid "Run the importer"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: inc/admin/admin.php:687
|
1970 |
msgid "Export plugin settings"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: inc/admin/admin.php:688
|
1974 |
msgid ""
|
1975 |
"Export the plugin settings for this site as a .json file. This allows you to "
|
1976 |
"easily import the configuration into another site."
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: inc/admin/admin.php:693 inc/admin/admin.php:866
|
1980 |
msgid "Export"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: inc/admin/admin.php:701
|
1984 |
msgid "Import plugin settings"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: inc/admin/admin.php:702
|
1988 |
msgid ""
|
1989 |
"Import the plugin settings from a .json file. This file can be obtained by "
|
1990 |
"exporting the settings on another site using the form above."
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: inc/admin/admin.php:710 inc/admin/admin.php:821 inc/admin/admin.php:837
|
1994 |
+
#: inc/admin/admin.php:853
|
1995 |
msgid "Import"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: inc/admin/admin.php:712
|
1999 |
msgid "Import completed!"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: inc/admin/admin.php:807
|
2003 |
msgid "Import Redirections"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: inc/admin/admin.php:808
|
2007 |
msgid ""
|
2008 |
"Import your own redirections from a .csv file (separator \";\"). You must "
|
2009 |
"have 5 columns in this order: <ul><li>URL to match (without your domain "
|
2015 |
"to the redirection).</li></ul>"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: inc/admin/admin.php:811
|
2019 |
msgid "Download a CSV example"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: inc/admin/admin.php:828
|
2023 |
msgid "Import Redirections from the Redirections plugin"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: inc/admin/admin.php:829
|
2027 |
msgid ""
|
2028 |
"Import your own redirections from a .json file generated by the Redirections "
|
2029 |
"plugin. Note that we do not support certain options, like regex. To avoid "
|
2031 |
"redirects."
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: inc/admin/admin.php:844
|
2035 |
msgid "Import Redirections from Yoast Premium"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: inc/admin/admin.php:845
|
2039 |
msgid ""
|
2040 |
"Import your own redirections from a .csv file generated by Yoast Premium. "
|
2041 |
"Note that we don't support certain options, like regex. To avoid conflicts, "
|
2042 |
"make sure there are no duplicates between your file and existing redirects."
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: inc/admin/admin.php:860
|
2046 |
msgid "Export Redirections"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: inc/admin/admin.php:861
|
2050 |
msgid ""
|
2051 |
"Export all redirections for this site as a .csv file. This allows you to "
|
2052 |
"easily import the redirections into another site, to Excel / Google Sheets..."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: inc/admin/admin.php:872
|
2056 |
msgid "Redirections feature is disabled. Please activate it from the PRO page."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: inc/admin/admin.php:873
|
2060 |
msgid "Activate Redirections"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: inc/admin/admin.php:880
|
2064 |
msgid "Reset All Notices From Notifications Center"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: inc/admin/admin.php:881
|
2068 |
msgid ""
|
2069 |
"By clicking Reset Notices, all notices in the notifications center will be "
|
2070 |
"set to their initial status."
|
2071 |
msgstr ""
|
2072 |
|
2073 |
+
#: inc/admin/admin.php:886
|
2074 |
msgid "Reset notices"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
+
#: inc/admin/admin.php:894
|
2078 |
msgid "Reset All Settings"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: inc/admin/admin.php:895
|
2082 |
msgid ""
|
2083 |
"<strong>WARNING:</strong> Delete all options related to SEOPress in your "
|
2084 |
"database AND set settings to their default values."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: inc/admin/admin.php:900
|
2088 |
msgid "Reset settings"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: inc/admin/admin.php:967 inc/admin/admin.php:973
|
2092 |
msgid "Notifications Center"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: inc/admin/admin.php:968
|
2096 |
msgid "SEO Tools"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: inc/admin/admin.php:969 inc/admin/admin.php:974
|
2100 |
msgid "Useful links"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: inc/admin/admin.php:1018
|
2104 |
msgid "Configure SEOPress in a few minutes with our installation wizard"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: inc/admin/admin.php:1020
|
2108 |
msgid "Start the wizard"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: inc/admin/admin.php:1042
|
2112 |
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: inc/admin/admin.php:1043 inc/admin/admin.php:1130 inc/admin/admin.php:1140
|
2116 |
+
#: inc/admin/admin.php:1150
|
2117 |
msgid "High impact"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: inc/admin/admin.php:1055 inc/admin/admin.php:1116 inc/admin/admin.php:5335
|
2121 |
+
#: inc/admin/admin.php:5382 inc/admin/admin.php:5403 inc/admin/admin.php:5424
|
2122 |
+
#: inc/admin/admin.php:5445
|
2123 |
msgid "Learn more"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: inc/admin/admin.php:1064
|
2127 |
msgid ""
|
2128 |
"We noticed that you use <strong>Yoast SEO</strong> plugin. <br>Do you want "
|
2129 |
"to migrate all your posts metadata to SEOPress?"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: inc/admin/admin.php:1066 inc/admin/admin.php:1075
|
2133 |
msgid "Migrate!"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: inc/admin/admin.php:1073
|
2137 |
msgid ""
|
2138 |
"We noticed that you use <strong>All In One SEO Pack</strong> plugin. <br>Do "
|
2139 |
"you want to migrate all your posts metadata to SEOPress?"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: inc/admin/admin.php:1082
|
2143 |
msgid ""
|
2144 |
"We noticed that you use another SEO plugin. <br>Do not use multiple SEO "
|
2145 |
"plugins at once to avoid conflicts!"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: inc/admin/admin.php:1092
|
2149 |
msgid ""
|
2150 |
"You have enabled 404 cleaning BUT the scheduled task is not running. <br>To "
|
2151 |
"solve this, please disable and re-enable SEOPress PRO."
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: inc/admin/admin.php:1115
|
2155 |
msgid "Your site doesn't use an SSL certificate!"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: inc/admin/admin.php:1117
|
2159 |
msgid "Low impact"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: inc/admin/admin.php:1119
|
2163 |
msgid "Buy an SSL!"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: inc/admin/admin.php:1129
|
2167 |
msgid "Your site is not visible to Search Engines!"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: inc/admin/admin.php:1132 inc/admin/admin.php:1142 inc/admin/admin.php:1152
|
2171 |
+
#: inc/admin/admin.php:1176 inc/admin/admin.php:1255 inc/admin/admin.php:1268
|
2172 |
+
#: inc/admin/admin.php:1341
|
2173 |
msgid "Fix this!"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: inc/admin/admin.php:1139
|
2177 |
msgid "Your site title is empty!"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: inc/admin/admin.php:1149 inc/admin/admin.php:3530
|
2181 |
msgid ""
|
2182 |
"Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: inc/admin/admin.php:1173
|
2186 |
msgid "Your RSS feed shows full text!"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: inc/admin/admin.php:1174 inc/admin/admin.php:1253 inc/admin/admin.php:1266
|
2190 |
msgid "Medium impact"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: inc/admin/admin.php:1199
|
2194 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: inc/admin/admin.php:1201
|
2198 |
msgid "Rate us!"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: inc/admin/admin.php:1225
|
2202 |
msgid "Break comments into pages is ON!"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: inc/admin/admin.php:1226 inc/admin/admin.php:1290 inc/admin/admin.php:1326
|
2206 |
msgid "Huge impact"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: inc/admin/admin.php:1228
|
2210 |
msgid "Disable this!"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: inc/admin/admin.php:1252
|
2214 |
msgid "Display more posts per page on homepage and archives"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: inc/admin/admin.php:1265
|
2218 |
msgid "You don't have an XML Sitemap!"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: inc/admin/admin.php:1289
|
2222 |
msgid "Do you have a Google My Business page? It's free!"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: inc/admin/admin.php:1292
|
2226 |
msgid "Create your page now!"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: inc/admin/admin.php:1325
|
2230 |
msgid "Add your site to Google. It's free!"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: inc/admin/admin.php:1328
|
2234 |
msgid "Add your site to Search Console!"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: inc/admin/admin.php:1338
|
2238 |
msgid "You have to enter your licence key to get updates and support"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: inc/admin/admin.php:1364
|
2242 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: inc/admin/admin.php:1367
|
2246 |
msgid "Upgrade now!"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: inc/admin/admin.php:1382
|
2250 |
msgid "Check websites setup on your server"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: inc/admin/admin.php:1391
|
2254 |
msgid "Not found"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: inc/admin/admin.php:1396
|
2258 |
msgid "No scrape."
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: inc/admin/admin.php:1401
|
2262 |
msgid "No domain found."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: inc/admin/admin.php:1411
|
2266 |
msgid "Server IP Address: "
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: inc/admin/admin.php:1414
|
2270 |
msgid "Last scrape: "
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: inc/admin/admin.php:1415
|
2274 |
msgid "Number of websites on your server: "
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: inc/admin/admin.php:1428
|
2278 |
msgid "Get list"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: inc/admin/admin.php:1437
|
2282 |
msgid "Upload a list of links to disavow to Google"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: inc/admin/admin.php:1438
|
2286 |
msgid "Google Trends"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: inc/admin/admin.php:1439
|
2290 |
msgid "Dareboost: Test, analyze and optimize your website"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: inc/admin/admin.php:1440
|
2294 |
msgid "Google Campaign URL Builder tool"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: inc/admin/admin.php:1457
|
2298 |
msgid "Titles & metas"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: inc/admin/admin.php:1458
|
2302 |
msgid "Manage all your titles & metas"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: inc/admin/admin.php:1459 inc/admin/admin.php:1501 inc/admin/admin.php:1543
|
2306 |
+
#: inc/admin/admin.php:1585 inc/admin/admin.php:1627 inc/admin/admin.php:1661
|
2307 |
+
#: inc/admin/admin.php:1693 inc/admin/admin.php:1725 inc/admin/admin.php:1757
|
2308 |
+
#: inc/admin/admin.php:1789 inc/admin/admin.php:1822 inc/admin/admin.php:1864
|
2309 |
+
#: inc/admin/admin.php:1891 inc/admin/admin.php:1935 inc/admin/admin.php:1968
|
2310 |
+
#: inc/admin/admin.php:1983 inc/admin/admin.php:2059 inc/admin/admin.php:2073
|
2311 |
+
#: inc/admin/admin.php:2109 inc/admin/admin.php:2125 inc/admin/admin.php:2141
|
2312 |
+
#: inc/admin/admin.php:2166
|
2313 |
msgid "Manage"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: inc/admin/admin.php:1487
|
2317 |
msgid "Guide to manage your titles and meta descriptions - new window"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: inc/admin/admin.php:1500
|
2321 |
msgid "Manage your XML / Image / Video / HTML Sitemap"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: inc/admin/admin.php:1529
|
2325 |
msgid "Guide to enable your XML Sitemaps - new window"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: inc/admin/admin.php:1542
|
2329 |
msgid "Open Graph, Twitter Card, Google Knowledge Graph and more..."
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: inc/admin/admin.php:1571
|
2333 |
msgid "Guide to enable Google Knowledge Graph - new window"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: inc/admin/admin.php:1584
|
2337 |
msgid "Track everything about your visitors with Google Analytics"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: inc/admin/admin.php:1613
|
2341 |
msgid "Guide to getting started with Google Analytics - new window"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: inc/admin/admin.php:1626
|
2345 |
msgid "Advanced SEO options for advanced users!"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: inc/admin/admin.php:1660
|
2349 |
msgid "Improve WooCommerce SEO"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: inc/admin/admin.php:1692
|
2353 |
msgid "Improve Easy Digital Downloads SEO"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: inc/admin/admin.php:1724
|
2357 |
msgid "Add Google Local Business data type"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: inc/admin/admin.php:1756
|
2361 |
msgid "Add Dublin Core meta tags"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: inc/admin/admin.php:1787
|
2365 |
msgid "Structured Data Types"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: inc/admin/admin.php:1788
|
2369 |
msgid ""
|
2370 |
+
"Add data types to your content: articles, courses, recipes, videos, events, "
|
2371 |
+
"products and more."
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: inc/admin/admin.php:1790 inc/admin/admin.php:1967
|
2375 |
msgid "See schemas"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: inc/admin/admin.php:1821
|
2379 |
msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: inc/admin/admin.php:1850
|
2383 |
msgid "Guide to enable Breadcrumbs - new window"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: inc/admin/admin.php:1863
|
2387 |
msgid "Track your website performance to improve SEO with Google Page Speed"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: inc/admin/admin.php:1874
|
2391 |
msgid "Guide to analyze your site with Google Page Speed - new window"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: inc/admin/admin.php:1889
|
2395 |
msgid "Edit your robots.txt file"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: inc/admin/admin.php:1890
|
2399 |
msgid "View your robots.txt"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: inc/admin/admin.php:1920
|
2403 |
msgid "Guide to edit your robots.txt file - new window"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: inc/admin/admin.php:1934
|
2407 |
msgid "Optimize your site for Google News"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: inc/admin/admin.php:1965 inc/admin/adminbar.php:84
|
2411 |
msgid "Schemas"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: inc/admin/admin.php:1966
|
2415 |
msgid "Create / manage your schemas"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: inc/admin/admin.php:1981
|
2419 |
msgid "Monitor 404, create 301, 302 and 307 redirections"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: inc/admin/admin.php:1982
|
2423 |
msgid "See redirects"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: inc/admin/admin.php:2011
|
2427 |
msgid "Guide to enable 301 redirections and 404 monitoring - new window"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: inc/admin/admin.php:2024
|
2431 |
msgid "Scan your site to find SEO problems."
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: inc/admin/admin.php:2025
|
2435 |
msgid "See broken links"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: inc/admin/admin.php:2026
|
2439 |
msgid "Scan"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: inc/admin/admin.php:2057
|
2443 |
msgid "Check your backlinks with Majestic API."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: inc/admin/admin.php:2058
|
2447 |
msgid "See backlinks"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: inc/admin/admin.php:2072
|
2451 |
msgid "Customize your permalinks."
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: inc/admin/admin.php:2108
|
2455 |
msgid "Edit your htaccess file."
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: inc/admin/admin.php:2124
|
2459 |
msgid "Configure default WordPress RSS."
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: inc/admin/admin.php:2140
|
2463 |
msgid "Import/Export plugin settings from site to site."
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: inc/admin/admin.php:2151
|
2467 |
msgid "Guide to Export/Import/Reset settings - new window"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: inc/admin/admin.php:2165
|
2471 |
msgid "Edit your license key."
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: inc/admin/admin.php:2176
|
2475 |
msgid "Guide to activate SEOPress PRO - new window"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: inc/admin/admin.php:2446 inc/admin/admin.php:4336
|
2479 |
msgid "noindex"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: inc/admin/admin.php:2454 inc/admin/admin.php:4355
|
2483 |
msgid "nofollow"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: inc/admin/admin.php:2462 inc/admin/admin.php:4374
|
2487 |
msgid "noodp"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: inc/admin/admin.php:2470 inc/admin/admin.php:4393
|
2491 |
msgid "noimageindex"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: inc/admin/admin.php:2478 inc/admin/admin.php:4412
|
2495 |
msgid "noarchive"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: inc/admin/admin.php:2486 inc/admin/admin.php:4431
|
2499 |
msgid "nosnippet"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: inc/admin/admin.php:2494 inc/admin/admin.php:4450
|
2503 |
msgid "nositelinkssearchbox"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: inc/admin/admin.php:2502
|
2507 |
msgid "Indicate paginated content to Google"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: inc/admin/admin.php:2519 inc/admin/admin.php:4488
|
2511 |
msgid "Enable XML Sitemap"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: inc/admin/admin.php:2527
|
2515 |
msgid "Enable XML Image Sitemaps"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: inc/admin/admin.php:2536
|
2519 |
msgid "Enable XML Video Sitemaps"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: inc/admin/admin.php:2545 inc/admin/admin.php:4575
|
2523 |
msgid "Enable Author Sitemap"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: inc/admin/admin.php:2553 inc/admin/admin.php:4594
|
2527 |
msgid "Enable HTML Sitemap"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: inc/admin/admin.php:2569
|
2531 |
msgid "Check to INCLUDE Post Types"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: inc/admin/admin.php:2585
|
2535 |
msgid "Check to INCLUDE Taxonomies"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: inc/admin/admin.php:2601 inc/admin/admin.php:4703
|
2539 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: inc/admin/admin.php:2609 inc/admin/admin.php:4717
|
2543 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: inc/admin/admin.php:2617
|
2547 |
msgid "Sort order"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: inc/admin/admin.php:2625
|
2551 |
msgid "Order posts by"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: inc/admin/admin.php:2633
|
2555 |
msgid "Disable the display of the publication date"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: inc/admin/admin.php:2674 inc/admin/admin.php:4859
|
2559 |
msgid "Organization's phone number (only for Organizations)"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: inc/admin/admin.php:2682
|
2563 |
msgid "Contact type (only for Organizations)"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: inc/admin/admin.php:2690
|
2567 |
msgid "Contact option (only for Organizations)"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: inc/admin/admin.php:2707 inc/admin/admin.php:4937
|
2571 |
msgid "Facebook Page URL"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: inc/admin/admin.php:2788
|
2575 |
msgid "Enable Open Graph Data"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: inc/admin/admin.php:2796 inc/admin/admin.php:5066
|
2579 |
msgid "Select a default image"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: inc/admin/admin.php:2804
|
2583 |
msgid "Facebook Link Ownership ID"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: inc/admin/admin.php:2812
|
2587 |
msgid "Facebook Admin ID"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: inc/admin/admin.php:2820
|
2591 |
msgid "Facebook App ID"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: inc/admin/admin.php:2837
|
2595 |
msgid "Enable Twitter Card"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: inc/admin/admin.php:2845
|
2599 |
msgid "Use Open Graph if no Twitter Card is filled"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: inc/admin/admin.php:2853 inc/admin/admin.php:5158
|
2603 |
msgid "Default Twitter Image"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: inc/admin/admin.php:2861
|
2607 |
msgid "Image size for Twitter Summary card"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: inc/admin/admin.php:2878
|
2611 |
msgid "Enable Google Analytics tracking"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: inc/admin/admin.php:2886 inc/admin/admin.php:5211
|
2615 |
msgid "Enter your tracking ID"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: inc/admin/admin.php:2894
|
2619 |
msgid "Google Analytics tracking opt-in"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: inc/admin/admin.php:2910
|
2623 |
msgid "Consent message for user tracking"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: inc/admin/admin.php:2918
|
2627 |
msgid "Accept button for user tracking"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: inc/admin/admin.php:2926
|
2631 |
msgid "Exclude user roles from tracking"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: inc/admin/admin.php:2944
|
2635 |
msgid "Enable Google Optimize"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: inc/admin/admin.php:2952
|
2639 |
msgid "Enable Google Ads"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: inc/admin/admin.php:2960
|
2643 |
msgid ""
|
2644 |
"[HEAD] Add an additional tracking code (like GTM, Facebook Pixel, Hotjar...)"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: inc/admin/admin.php:2968
|
2648 |
msgid "[BODY] Add an additional tracking code (like Google Tag Manager...)"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: inc/admin/admin.php:2976 inc/admin/admin.php:5379
|
2652 |
msgid "Enable remarketing, demographics, and interests reporting"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: inc/admin/admin.php:2984 inc/admin/admin.php:5400
|
2656 |
msgid "Enable IP Anonymization"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: inc/admin/admin.php:2992 inc/admin/admin.php:5421
|
2660 |
msgid "Enhanced Link Attribution"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: inc/admin/admin.php:3000 inc/admin/admin.php:5442
|
2664 |
msgid "Enable cross-domain tracking"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: inc/admin/admin.php:3008 inc/admin/admin.php:5458
|
2668 |
msgid "Cross domains"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: inc/admin/admin.php:3026 inc/admin/admin.php:5475
|
2672 |
+
msgid "Enable external links tracking"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: inc/admin/admin.php:3034
|
2676 |
msgid "Enable downloads tracking (eg: PDF, XLSX, DOCX...)"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: inc/admin/admin.php:3042 inc/admin/admin.php:5504
|
2680 |
msgid "Track downloads' clicks"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: inc/admin/admin.php:3050
|
2684 |
msgid "Enable affiliate/outbound links tracking (eg: aff, go, out, recommends)"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: inc/admin/admin.php:3058 inc/admin/admin.php:5535
|
2688 |
msgid "Track affiliate/outbound links"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: inc/admin/admin.php:3076
|
2692 |
msgid "Track Authors"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: inc/admin/admin.php:3084
|
2696 |
msgid "Track Categories"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: inc/admin/admin.php:3092
|
2700 |
msgid "Track Tags"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: inc/admin/admin.php:3100
|
2704 |
msgid "Track Post Types"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: inc/admin/admin.php:3108
|
2708 |
msgid "Track Logged In Users"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: inc/admin/admin.php:3125
|
2712 |
msgid "Redirect attachment pages to post parent"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: inc/admin/admin.php:3133
|
2716 |
msgid "Redirect attachment pages to their file URL"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: inc/admin/admin.php:3141
|
2720 |
msgid "Remove ?replytocom link to avoid duplicate content"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: inc/admin/admin.php:3149
|
2724 |
msgid "Automatically set the image Title"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: inc/admin/admin.php:3157
|
2728 |
msgid "Automatically set the image Alt text"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: inc/admin/admin.php:3165
|
2732 |
msgid "Automatically set the image Caption"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: inc/admin/admin.php:3173
|
2736 |
msgid "Automatically set the image Description"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: inc/admin/admin.php:3181
|
2740 |
msgid "Add WP Editor to taxonomy description textarea"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: inc/admin/admin.php:3189
|
2744 |
msgid "Remove /category/ in URL"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: inc/admin/admin.php:3197 inc/admin/admin.php:6094
|
2748 |
msgid "Disable trailing slash for metas"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: inc/admin/admin.php:3205
|
2752 |
msgid "Remove WordPress generator meta tag"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: inc/admin/admin.php:3213
|
2756 |
msgid "Remove WordPress shortlink meta tag"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: inc/admin/admin.php:3221
|
2760 |
msgid "Remove Windows Live Writer meta tag"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: inc/admin/admin.php:3229
|
2764 |
msgid "Remove RSD meta tag"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
+
#: inc/admin/admin.php:3237 inc/admin/admin.php:6174
|
2768 |
msgid "Google site verification"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
+
#: inc/admin/admin.php:3245 inc/admin/admin.php:6188
|
2772 |
msgid "Bing site verification"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
+
#: inc/admin/admin.php:3253 inc/admin/admin.php:6201
|
2776 |
msgid "Pinterest site verification"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
+
#: inc/admin/admin.php:3261 inc/admin/admin.php:6213
|
2780 |
msgid "Yandex site verification"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: inc/admin/admin.php:3278
|
2784 |
msgid "SEOPress in admin bar"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: inc/admin/admin.php:3286
|
2788 |
msgid "Move SEOPress metabox's position"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
+
#: inc/admin/admin.php:3294
|
2792 |
msgid "Hide Notifications Center"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
+
#: inc/admin/admin.php:3302
|
2796 |
msgid "Hide SEO tools"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: inc/admin/admin.php:3310
|
2800 |
msgid "Hide Useful Links"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: inc/admin/admin.php:3318
|
2804 |
msgid "Show Title tag column in post types"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: inc/admin/admin.php:3326
|
2808 |
msgid "Show Meta description column in post types"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: inc/admin/admin.php:3334
|
2812 |
msgid "Show Redirection Enable column in post types"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: inc/admin/admin.php:3342
|
2816 |
msgid "Show Redirect URL column in post types"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: inc/admin/admin.php:3350
|
2820 |
msgid "Show canonical URL column in post types"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: inc/admin/admin.php:3358
|
2824 |
msgid "Show Target Keyword column in post types"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: inc/admin/admin.php:3366
|
2828 |
msgid "Show noindex column in post types"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: inc/admin/admin.php:3374
|
2832 |
msgid "Show nofollow column in post types"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: inc/admin/admin.php:3382
|
2836 |
msgid "Show total number of words column in post types"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: inc/admin/admin.php:3390
|
2840 |
msgid "Show W3C validator column in post types"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: inc/admin/admin.php:3398
|
2844 |
msgid "Show Google Page Speed column in post types"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: inc/admin/admin.php:3407
|
2848 |
msgid "Hide Genesis SEO Metabox"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: inc/admin/admin.php:3415
|
2852 |
msgid "Hide Genesis SEO Settings link"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: inc/admin/admin.php:3423
|
2856 |
msgid "Hide advice in Structured Data Types metabox"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: inc/admin/admin.php:3440
|
2860 |
msgid "Block SEO metabox to user roles"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: inc/admin/admin.php:3448
|
2864 |
msgid "Block Content analysis metabox to user roles"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
+
#: inc/admin/admin.php:3503
|
2868 |
msgid "<p>Customize your title & meta description for homepage</p>"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: inc/admin/admin.php:3508
|
2872 |
msgid "<p>Customize your titles & metas for Single Custom Post Types</p>"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: inc/admin/admin.php:3513
|
2876 |
msgid "<p>Customize your metas for all pages</p>"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
+
#: inc/admin/admin.php:3518
|
2880 |
msgid "<p>Customize your metas for all taxonomies archives</p>"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: inc/admin/admin.php:3523
|
2884 |
msgid "<p>Customize your metas for all archives</p>"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: inc/admin/admin.php:3531
|
2888 |
msgid "Change this settings"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: inc/admin/admin.php:3534
|
2892 |
msgid ""
|
2893 |
"To view your sitemap, enable permalinks (not default one), and save settings "
|
2894 |
"to flush them."
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: inc/admin/admin.php:3540
|
2898 |
msgid ""
|
2899 |
"Your server uses NGINX. If XML Sitemaps doesn't work properly, you need to "
|
2900 |
"add this rule to your configuration:"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: inc/admin/admin.php:3553
|
2904 |
msgid "Noindex content will not be displayed in Sitemaps."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: inc/admin/admin.php:3565
|
2908 |
msgid "Blank sitemap?"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: inc/admin/admin.php:3566
|
2912 |
msgid "404 error?"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: inc/admin/admin.php:3568
|
2916 |
msgid "View your sitemap"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: inc/admin/admin.php:3570
|
2920 |
msgid "Ping Google manually"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: inc/admin/admin.php:3572
|
2924 |
msgid "Flush permalinks"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
+
#: inc/admin/admin.php:3578
|
2928 |
msgid "<p>Create an HTML Sitemap for your visitors and boost your SEO.</p>"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
+
#: inc/admin/admin.php:3588 inc/admin/admin.php:4604
|
2932 |
msgid "Guide to enable a HTML Sitemap - new window"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
+
#: inc/admin/admin.php:3593
|
2936 |
msgid "<p>Include/Exclude Post Types.</p>"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
+
#: inc/admin/admin.php:3598
|
2940 |
msgid "<p>Include/Exclude Taxonomies.</p>"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: inc/admin/admin.php:3603
|
2944 |
msgid "<p>Configure Google Knowledge Graph.</p>"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: inc/admin/admin.php:3604
|
2948 |
msgid "Learn more on Google official website."
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: inc/admin/admin.php:3609
|
2952 |
msgid ""
|
2953 |
"<p>Link your site with your social accounts. Use markup on your website to "
|
2954 |
"add your social profile information to a Google Knowledge panel. Knowledge "
|
2958 |
"network links.</p>"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: inc/admin/admin.php:3615
|
2962 |
msgid "<p>Manage Open Graph data.</p>"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: inc/admin/admin.php:3617
|
2966 |
msgid "<p>We generate the <strong>og:image</strong> meta in this order:</p>"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
#: inc/admin/admin.php:3621
|
2970 |
msgid "Custom OG Image from SEO metabox"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: inc/admin/admin.php:3622 inc/admin/admin.php:3637
|
2974 |
msgid "Post thumbnail"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: inc/admin/admin.php:3623 inc/admin/admin.php:3638
|
2978 |
msgid "First image of your post content"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
#: inc/admin/admin.php:3624
|
2982 |
msgid "Global OG Image set in SEO > Social > Open Graph"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: inc/admin/admin.php:3630
|
2986 |
msgid "<p>Manage your Twitter card.</p>"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: inc/admin/admin.php:3632
|
2990 |
msgid ""
|
2991 |
"<p>We generate the <strong>twitter:image</strong> meta in this order:</p>"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: inc/admin/admin.php:3636
|
2995 |
msgid "Custom Twitter image from SEO metabox"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: inc/admin/admin.php:3639
|
2999 |
msgid "Global Twitter:image set in SEO > Social > Twitter Card"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: inc/admin/admin.php:3645
|
3003 |
msgid "<p>Link your Google Analytics to your website.</p>"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: inc/admin/admin.php:3650
|
3007 |
msgid "<p>Configure your Google Analytics tracking code.</p>"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: inc/admin/admin.php:3655
|
3011 |
msgid "<p>Track events in Google Analytics.</p>"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: inc/admin/admin.php:3660
|
3015 |
msgid ""
|
3016 |
"<p>Configure your Google Analytics custom dimensions. <br>Custom dimensions "
|
3017 |
"and custom metrics in SEOPress are like the default dimensions and metrics "
|
3021 |
"Google Analytics account. More info by clicking on the help icon."
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: inc/admin/admin.php:3670
|
3025 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: inc/admin/admin.php:3675
|
3029 |
msgid "<p>Advanced SEO options.</p>"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: inc/admin/admin.php:3680
|
3033 |
msgid "<p>Customize SEOPress to fit your needs.</p>"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: inc/admin/admin.php:3685
|
3037 |
msgid "<p>Manage security.</p>"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: inc/admin/admin.php:3698
|
3041 |
msgid "Enter your separator, eg: \"-\""
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: inc/admin/admin.php:3702
|
3045 |
#, php-format
|
3046 |
msgid "Use this separator with %%sep%% in your title and meta description."
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: inc/admin/admin.php:3708
|
3050 |
msgid "My awesome website"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: inc/admin/admin.php:3714 inc/admin/admin.php:3725 inc/admin/admin.php:3772
|
3054 |
+
#: inc/admin/admin.php:3915 inc/admin/admin.php:3948 inc/admin/admin.php:4038
|
3055 |
+
#: inc/admin/admin.php:4115 inc/admin/admin.php:4186 inc/admin/admin.php:4256
|
3056 |
+
#: inc/admin/admin.php:4307
|
3057 |
msgid "More tags"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: inc/admin/admin.php:3720
|
3061 |
msgid "This is a cool website about Wookiees"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: inc/admin/admin.php:3728
|
3065 |
msgid "Looking to edit your blog page?"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: inc/admin/admin.php:3741 inc/admin/admin.php:3881 inc/admin/admin.php:4010
|
3069 |
+
#: inc/admin/admin.php:4103 inc/admin/admin.php:4174 inc/admin/admin.php:4244
|
3070 |
+
#: inc/admin/admin.php:4297
|
3071 |
msgid "Title template"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: inc/admin/admin.php:3779 inc/admin/admin.php:3924 inc/admin/admin.php:4045
|
3075 |
+
#: inc/admin/admin.php:4121 inc/admin/admin.php:4192 inc/admin/admin.php:4262
|
3076 |
+
#: inc/admin/admin.php:4312
|
3077 |
msgid "Meta description template"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: inc/admin/admin.php:3821
|
3081 |
msgid ""
|
3082 |
"Do not follow links for this single post type <strong>(nofollow)</strong>"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: inc/admin/admin.php:3840
|
3086 |
msgid "Display date in Google search results?"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: inc/admin/admin.php:3859
|
3090 |
msgid "Display post thumbnail in Google Custom Search results?"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: inc/admin/admin.php:3904
|
3094 |
msgid "Category Title"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: inc/admin/admin.php:3906
|
3098 |
msgid "Tag Title"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: inc/admin/admin.php:3908
|
3102 |
msgid "Term Title"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: inc/admin/admin.php:3941
|
3106 |
msgid "Category Description"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: inc/admin/admin.php:3943
|
3110 |
msgid "Tag Description"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: inc/admin/admin.php:3945
|
3114 |
msgid "Term Description"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
+
#: inc/admin/admin.php:3982
|
3118 |
msgid ""
|
3119 |
"Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: inc/admin/admin.php:4002
|
3123 |
msgid "See archive"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: inc/admin/admin.php:4032
|
3127 |
msgid "Post Type Archive Name"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: inc/admin/admin.php:4087
|
3131 |
msgid ""
|
3132 |
"Do not follow links for this post type archive <strong>(nofollow)</strong>"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: inc/admin/admin.php:4101
|
3136 |
msgid "Author archives"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: inc/admin/admin.php:4163
|
3140 |
msgid "Disable author archives"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: inc/admin/admin.php:4172 inc/admin/admin.php:4183
|
3144 |
msgid "Date archives"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
+
#: inc/admin/admin.php:4215
|
3148 |
msgid ""
|
3149 |
"Do not display date archives in search engine results <strong>(noindex)</"
|
3150 |
"strong>"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: inc/admin/admin.php:4233
|
3154 |
msgid "Disable date archives"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: inc/admin/admin.php:4242
|
3158 |
msgid "Search archives"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
+
#: inc/admin/admin.php:4253
|
3162 |
msgid "Search Keywords"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
+
#: inc/admin/admin.php:4286
|
3166 |
msgid ""
|
3167 |
"Do not display search archives in search engine results <strong>(noindex)</"
|
3168 |
"strong>"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
+
#: inc/admin/admin.php:4295
|
3172 |
msgid "404 archives"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
+
#: inc/admin/admin.php:4338
|
3176 |
msgid ""
|
3177 |
"Do not display all pages of the site in Google search results and do not "
|
3178 |
"display \"Cached\" links in search results."
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: inc/admin/admin.php:4357
|
3182 |
msgid "Do not follow links for all pages."
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: inc/admin/admin.php:4376
|
3186 |
msgid ""
|
3187 |
"Do not use Open Directory project metadata for titles or excerpts for all "
|
3188 |
"pages."
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: inc/admin/admin.php:4395
|
3192 |
msgid "Do not index images from the entire site."
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: inc/admin/admin.php:4414
|
3196 |
msgid "Do not display a \"Cached\" link in the Google search results."
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: inc/admin/admin.php:4433
|
3200 |
msgid ""
|
3201 |
"Do not display a description in the Google search results for all pages."
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: inc/admin/admin.php:4452
|
3205 |
msgid ""
|
3206 |
"Prevent Google to display a sitelinks searchbox in search results. Enable "
|
3207 |
"this option will remove the \"Website\" schema from your source code."
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: inc/admin/admin.php:4469
|
3211 |
msgid "Add rel next/prev link in head of paginated archive pages"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: inc/admin/admin.php:4471
|
3215 |
msgid "Learn more on Google website"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: inc/admin/admin.php:4498
|
3219 |
msgid "Guide to enable XML Sitemaps - new window"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: inc/admin/admin.php:4515
|
3223 |
msgid ""
|
3224 |
"Enable Image Sitemaps (standard images, image galleries, featured image, "
|
3225 |
"WooCommerce product images)"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: inc/admin/admin.php:4517
|
3229 |
msgid "Images in XML sitemaps are visible only from the source code."
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: inc/admin/admin.php:4527
|
3233 |
msgid "Guide to enable XML image sitemaps - new window"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: inc/admin/admin.php:4545
|
3237 |
msgid "Enable Video Sitemaps"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: inc/admin/admin.php:4555
|
3241 |
#, php-format
|
3242 |
msgid ""
|
3243 |
"Your video sitemap is empty? Read our guide to learn more about <a href=\"%s"
|
3244 |
"\" target=\"_blank\">adding videos to your sitemap.</a>"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: inc/admin/admin.php:4557
|
3248 |
msgid "Guide to enable XML video sitemaps - new window"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: inc/admin/admin.php:4577
|
3252 |
msgid ""
|
3253 |
"Make sure to enable Author archive from SEO, Titles and metas, Archives tab."
|
3254 |
"</a>"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: inc/admin/admin.php:4644 inc/admin/admin.php:4688
|
3258 |
msgid "Include"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: inc/admin/admin.php:4647
|
3262 |
msgid ""
|
3263 |
"You should never include attachment post type in your sitemap. Be careful if "
|
3264 |
"you checked this."
|
3265 |
msgstr ""
|
3266 |
|
3267 |
+
#: inc/admin/admin.php:4703
|
3268 |
msgid "eg: 2, 28, 68"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: inc/admin/admin.php:4707
|
3272 |
msgid "You can also use this shortcode:"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: inc/admin/admin.php:4717
|
3276 |
msgid "eg: 13, 8, 38"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
+
#: inc/admin/admin.php:4731
|
3280 |
msgid ""
|
3281 |
"DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: inc/admin/admin.php:4734
|
3285 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: inc/admin/admin.php:4751
|
3289 |
msgid "Default (date)"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: inc/admin/admin.php:4757
|
3293 |
msgid "Modified date"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: inc/admin/admin.php:4760
|
3297 |
msgid "Post ID"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: inc/admin/admin.php:4763
|
3301 |
msgid "Menu order"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: inc/admin/admin.php:4781
|
3305 |
msgid "Disable date after each post, page, post type?"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: inc/admin/admin.php:4816
|
3309 |
msgid "eg: Apple"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: inc/admin/admin.php:4829
|
3313 |
msgid "Select your logo"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: inc/admin/admin.php:4833
|
3317 |
msgid "JPG, PNG, and GIF allowed."
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: inc/admin/admin.php:4859
|
3321 |
msgid "eg: +33123456789 (internationalized version required)"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: inc/admin/admin.php:4874
|
3325 |
msgid "Customer support"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: inc/admin/admin.php:4877
|
3329 |
msgid "Technical support"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: inc/admin/admin.php:4880
|
3333 |
msgid "Billing support"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: inc/admin/admin.php:4883
|
3337 |
msgid "Bill payment"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: inc/admin/admin.php:4886
|
3341 |
msgid "Sales"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: inc/admin/admin.php:4889
|
3345 |
msgid "Credit card support"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: inc/admin/admin.php:4892
|
3349 |
msgid "Emergency"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: inc/admin/admin.php:4895
|
3353 |
msgid "Baggage tracking"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: inc/admin/admin.php:4898
|
3357 |
msgid "Roadside assistance"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: inc/admin/admin.php:4901
|
3361 |
msgid "Package tracking"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: inc/admin/admin.php:4918 inc/admin/admin.php:5553 inc/admin/admin.php:5630
|
3365 |
+
#: inc/admin/admin.php:5707 inc/admin/admin.php:5784 inc/admin/admin.php:5861
|
3366 |
msgid "None"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: inc/admin/admin.php:4921
|
3370 |
msgid "Toll Free"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
+
#: inc/admin/admin.php:4924
|
3374 |
msgid "Hearing impaired supported"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
+
#: inc/admin/admin.php:4950
|
3378 |
msgid "Twitter Page URL"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
#: inc/admin/admin.php:5051
|
3382 |
msgid "Enable OG data"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: inc/admin/admin.php:5084
|
3386 |
msgid ""
|
3387 |
"One or more Facebook Page IDs that are associated with a URL in order to "
|
3388 |
"enable link editing and instant article publishing."
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: inc/admin/admin.php:5097
|
3392 |
msgid ""
|
3393 |
"The ID (or comma-separated list for properties that can accept multiple IDs) "
|
3394 |
"of an app, person using the app, or Page Graph API object."
|
3395 |
msgstr ""
|
3396 |
|
3397 |
+
#: inc/admin/admin.php:5109
|
3398 |
msgid ""
|
3399 |
"The Facebook app ID of the site's app. In order to use Facebook Insights you "
|
3400 |
"must add the app ID to your page. Insights lets you view analytics for "
|
3404 |
"span>"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
+
#: inc/admin/admin.php:5113
|
3408 |
msgid "How to create a Facebook App ID"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
#: inc/admin/admin.php:5126
|
3412 |
msgid "Enable Twitter card"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: inc/admin/admin.php:5143
|
3416 |
msgid "Use OG if no Twitter Cards"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: inc/admin/admin.php:5178
|
3420 |
msgid "Default"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: inc/admin/admin.php:5181
|
3424 |
msgid "Large"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: inc/admin/admin.php:5199
|
3428 |
msgid "Enable Google Analytics tracking (Global Site Tag: gtag.js)"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: inc/admin/admin.php:5211
|
3432 |
msgid "Enter your Tracking ID (UA-XXXX-XX)"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
+
#: inc/admin/admin.php:5215
|
3436 |
msgid "Find your tracking ID"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
+
#: inc/admin/admin.php:5229
|
3440 |
msgid "Request user's consent for analytics tracking (required by GDPR)"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: inc/admin/admin.php:5231
|
3444 |
msgid ""
|
3445 |
"<strong>The user must click the Accept button to allow tracking.</strong>"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: inc/admin/admin.php:5233
|
3449 |
msgid ""
|
3450 |
"User roles excluded from tracking will not see the consent message.<br> If "
|
3451 |
"you use a caching plugin, you have to exclude this JS file in your settings: "
|
3453 |
"js</strong> <br>and this cookie <strong>seopress-user-consent-accept</strong>"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: inc/admin/admin.php:5243
|
3457 |
msgid "Hook to add custom tracking code with user consent - new window"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: inc/admin/admin.php:5260
|
3461 |
msgid ""
|
3462 |
"Display and automatically accept the user‘s consent on page load (not fully "
|
3463 |
"GDPR)"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: inc/admin/admin.php:5262
|
3467 |
msgid "The previous option must be checked to use this."
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: inc/admin/admin.php:5275
|
3471 |
msgid "Enter your message (HTML allowed)"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: inc/admin/admin.php:5275
|
3475 |
msgid "This message will only appear if request user's consent is enabled."
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: inc/admin/admin.php:5286
|
3479 |
msgid "Hook to filter user consent message - new window"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: inc/admin/admin.php:5288
|
3483 |
msgid "HTML tags allowed: strong, em, br, a href / target"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: inc/admin/admin.php:5289
|
3487 |
msgid ""
|
3488 |
"Shortcode allowed to get the privacy page set in WordPress settings: "
|
3489 |
"[seopress_privacy_page]"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: inc/admin/admin.php:5297 inc/functions/options-google-analytics.php:39
|
3493 |
msgid "Accept"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: inc/admin/admin.php:5297
|
3497 |
msgid "Change the button value"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: inc/admin/admin.php:5332
|
3501 |
msgid "Enter your Google Optimize container ID"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: inc/admin/admin.php:5332
|
3505 |
msgid "GTM-XXXXXXX"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: inc/admin/admin.php:5335
|
3509 |
msgid ""
|
3510 |
"Google Optimize offers A/B testing, website testing & personalization tools."
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: inc/admin/admin.php:5343
|
3514 |
msgid "Enter your Google Ads conversion ID (eg: AW-123456789)"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
+
#: inc/admin/admin.php:5343
|
3518 |
msgid "AW-XXXXXXXXX"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
+
#: inc/admin/admin.php:5352
|
3522 |
msgid "Paste your tracking code here like Google Tag Manager (head)"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#: inc/admin/admin.php:5352
|
3526 |
msgid "Additional tracking code field"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
+
#: inc/admin/admin.php:5355
|
3530 |
msgid "This code will be added in the head section of your page."
|
3531 |
msgstr ""
|
3532 |
|
3533 |
+
#: inc/admin/admin.php:5363
|
3534 |
msgid "Paste your tracking code here like Google Tag Manager (body)"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
+
#: inc/admin/admin.php:5363
|
3538 |
msgid "Additional tracking code field added to body"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
+
#: inc/admin/admin.php:5366
|
3542 |
msgid "This code will be added just after the opening body tag of your page."
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: inc/admin/admin.php:5381
|
3546 |
msgid ""
|
3547 |
"A remarketing audience is a list of cookies or mobile-advertising IDs that "
|
3548 |
"represents a group of users you want to re-engage because of their "
|
3549 |
"likelihood to convert."
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: inc/admin/admin.php:5402
|
3553 |
msgid ""
|
3554 |
"When a customer of Analytics requests IP address anonymization, Analytics "
|
3555 |
"anonymizes the address as soon as technically feasible at the earliest "
|
3556 |
"possible stage of the collection network."
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: inc/admin/admin.php:5423
|
3560 |
msgid ""
|
3561 |
"Enhanced Link Attribution improves the accuracy of your In-Page Analytics "
|
3562 |
"report by automatically differentiating between multiple links to the same "
|
3563 |
"URL on a single page by using link element IDs."
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: inc/admin/admin.php:5444
|
3567 |
msgid ""
|
3568 |
"Cross domain tracking makes it possible for Analytics to see sessions on two "
|
3569 |
"related sites (such as an ecommerce site and a separate shopping cart site) "
|
3570 |
"as a single session. This is sometimes called site linking."
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: inc/admin/admin.php:5458
|
3574 |
msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: inc/admin/admin.php:5492
|
|
|
|
|
|
|
|
|
3578 |
msgid "Enable download tracking"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
+
#: inc/admin/admin.php:5504
|
3582 |
msgid "pdf|docx|pptx|zip"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: inc/admin/admin.php:5508
|
3586 |
msgid "Separate each file type extensions with a pipe \"|\""
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: inc/admin/admin.php:5523
|
3590 |
msgid "Enable affiliate/outbound tracking"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
#: inc/admin/admin.php:5535
|
3594 |
msgid "aff|go|out"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: inc/admin/admin.php:5539
|
3598 |
msgid "Separate each keyword with a pipe \"|\""
|
3599 |
msgstr ""
|
3600 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3601 |
#: inc/admin/admin.php:5556 inc/admin/admin.php:5633 inc/admin/admin.php:5710
|
3602 |
#: inc/admin/admin.php:5787 inc/admin/admin.php:5864
|
3603 |
+
msgid "Custom Dimension #1"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
#: inc/admin/admin.php:5559 inc/admin/admin.php:5636 inc/admin/admin.php:5713
|
3607 |
#: inc/admin/admin.php:5790 inc/admin/admin.php:5867
|
3608 |
+
msgid "Custom Dimension #2"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
#: inc/admin/admin.php:5562 inc/admin/admin.php:5639 inc/admin/admin.php:5716
|
3612 |
#: inc/admin/admin.php:5793 inc/admin/admin.php:5870
|
3613 |
+
msgid "Custom Dimension #3"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
#: inc/admin/admin.php:5565 inc/admin/admin.php:5642 inc/admin/admin.php:5719
|
3617 |
#: inc/admin/admin.php:5796 inc/admin/admin.php:5873
|
3618 |
+
msgid "Custom Dimension #4"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
#: inc/admin/admin.php:5568 inc/admin/admin.php:5645 inc/admin/admin.php:5722
|
3622 |
#: inc/admin/admin.php:5799 inc/admin/admin.php:5876
|
3623 |
+
msgid "Custom Dimension #5"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
#: inc/admin/admin.php:5571 inc/admin/admin.php:5648 inc/admin/admin.php:5725
|
3627 |
#: inc/admin/admin.php:5802 inc/admin/admin.php:5879
|
3628 |
+
msgid "Custom Dimension #6"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
#: inc/admin/admin.php:5574 inc/admin/admin.php:5651 inc/admin/admin.php:5728
|
3632 |
#: inc/admin/admin.php:5805 inc/admin/admin.php:5882
|
3633 |
+
msgid "Custom Dimension #7"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
#: inc/admin/admin.php:5577 inc/admin/admin.php:5654 inc/admin/admin.php:5731
|
3637 |
#: inc/admin/admin.php:5808 inc/admin/admin.php:5885
|
3638 |
+
msgid "Custom Dimension #8"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
#: inc/admin/admin.php:5580 inc/admin/admin.php:5657 inc/admin/admin.php:5734
|
3642 |
#: inc/admin/admin.php:5811 inc/admin/admin.php:5888
|
3643 |
+
msgid "Custom Dimension #9"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
#: inc/admin/admin.php:5583 inc/admin/admin.php:5660 inc/admin/admin.php:5737
|
3647 |
#: inc/admin/admin.php:5814 inc/admin/admin.php:5891
|
3648 |
+
msgid "Custom Dimension #10"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
#: inc/admin/admin.php:5586 inc/admin/admin.php:5663 inc/admin/admin.php:5740
|
3652 |
#: inc/admin/admin.php:5817 inc/admin/admin.php:5894
|
3653 |
+
msgid "Custom Dimension #11"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
#: inc/admin/admin.php:5589 inc/admin/admin.php:5666 inc/admin/admin.php:5743
|
3657 |
#: inc/admin/admin.php:5820 inc/admin/admin.php:5897
|
3658 |
+
msgid "Custom Dimension #12"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
#: inc/admin/admin.php:5592 inc/admin/admin.php:5669 inc/admin/admin.php:5746
|
3662 |
#: inc/admin/admin.php:5823 inc/admin/admin.php:5900
|
3663 |
+
msgid "Custom Dimension #13"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
#: inc/admin/admin.php:5595 inc/admin/admin.php:5672 inc/admin/admin.php:5749
|
3667 |
#: inc/admin/admin.php:5826 inc/admin/admin.php:5903
|
3668 |
+
msgid "Custom Dimension #14"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
#: inc/admin/admin.php:5598 inc/admin/admin.php:5675 inc/admin/admin.php:5752
|
3672 |
#: inc/admin/admin.php:5829 inc/admin/admin.php:5906
|
3673 |
+
msgid "Custom Dimension #15"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
#: inc/admin/admin.php:5601 inc/admin/admin.php:5678 inc/admin/admin.php:5755
|
3677 |
#: inc/admin/admin.php:5832 inc/admin/admin.php:5909
|
3678 |
+
msgid "Custom Dimension #16"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
#: inc/admin/admin.php:5604 inc/admin/admin.php:5681 inc/admin/admin.php:5758
|
3682 |
#: inc/admin/admin.php:5835 inc/admin/admin.php:5912
|
3683 |
+
msgid "Custom Dimension #17"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
#: inc/admin/admin.php:5607 inc/admin/admin.php:5684 inc/admin/admin.php:5761
|
3687 |
#: inc/admin/admin.php:5838 inc/admin/admin.php:5915
|
3688 |
+
msgid "Custom Dimension #18"
|
3689 |
+
msgstr ""
|
3690 |
+
|
3691 |
+
#: inc/admin/admin.php:5610 inc/admin/admin.php:5687 inc/admin/admin.php:5764
|
3692 |
+
#: inc/admin/admin.php:5841 inc/admin/admin.php:5918
|
3693 |
+
msgid "Custom Dimension #19"
|
3694 |
+
msgstr ""
|
3695 |
+
|
3696 |
+
#: inc/admin/admin.php:5613 inc/admin/admin.php:5690 inc/admin/admin.php:5767
|
3697 |
+
#: inc/admin/admin.php:5844 inc/admin/admin.php:5921
|
3698 |
msgid "Custom Dimension #20"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
+
#: inc/admin/admin.php:5939
|
3702 |
msgid "Redirect attachment pages to post parent (or homepage if none)"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
+
#: inc/admin/admin.php:5958
|
3706 |
msgid ""
|
3707 |
"If this option is checked, it will take precedence over the redirection of "
|
3708 |
"attachments to the post's parent."
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: inc/admin/admin.php:5975
|
3712 |
msgid "Remove ?replytocom link in source code"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: inc/admin/admin.php:5992
|
3716 |
msgid ""
|
3717 |
"When sending an image file, automatically set the title based on the filename"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: inc/admin/admin.php:6009
|
3721 |
msgid ""
|
3722 |
"When sending an image file, automatically set the alternative text based on "
|
3723 |
"the filename"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: inc/admin/admin.php:6026
|
3727 |
msgid ""
|
3728 |
"When sending an image file, automatically set the caption based on the "
|
3729 |
"filename"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: inc/admin/admin.php:6043
|
3733 |
msgid ""
|
3734 |
"When sending an image file, automatically set the description based on the "
|
3735 |
"filename"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: inc/admin/admin.php:6060
|
3739 |
msgid "Add TINYMCE editor to term description"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: inc/admin/admin.php:6077
|
3743 |
msgid "You have to flush your permalinks each time you change this settings"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: inc/admin/admin.php:6094
|
3747 |
msgid ""
|
3748 |
"You must check this box if the structure of your permalinks DOES NOT contain "
|
3749 |
"a slash at the end (eg: /%postname%)"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: inc/admin/admin.php:6111
|
3753 |
msgid "Remove WordPress meta generator in source code"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
+
#: inc/admin/admin.php:6128
|
3757 |
msgid "Remove WordPress shortlink meta tag in source code (eg:"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: inc/admin/admin.php:6145
|
3761 |
msgid "Remove Windows Live Writer meta tag in source code (eg:"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: inc/admin/admin.php:6162
|
3765 |
msgid "Remove Really Simple Discovery meta tag in source code (eg:"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
+
#: inc/admin/admin.php:6174
|
3769 |
msgid "Enter Google meta value site verification"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: inc/admin/admin.php:6179
|
3773 |
msgid ""
|
3774 |
"If your site is already verified in <strong>Google Search Console</strong>, "
|
3775 |
"you can leave this field empty."
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: inc/admin/admin.php:6188
|
3779 |
msgid "Enter Bing meta value site verification"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: inc/admin/admin.php:6192
|
3783 |
msgid ""
|
3784 |
"If your site is already verified in <strong>Bing Webmaster tools</strong>, "
|
3785 |
"you can leave this field empty."
|
3786 |
msgstr ""
|
3787 |
|
3788 |
+
#: inc/admin/admin.php:6201
|
3789 |
msgid "Enter Pinterest meta value site verification"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: inc/admin/admin.php:6213
|
3793 |
msgid "Enter Yandex meta value site verification"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: inc/admin/admin.php:6230
|
3797 |
msgid "Remove SEOPress from Admin Bar in backend and frontend"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: inc/admin/admin.php:6246
|
3801 |
msgid "High priority (top)"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: inc/admin/admin.php:6249
|
3805 |
msgid "Normal priority (default)"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: inc/admin/admin.php:6252
|
3809 |
msgid "Low priority"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: inc/admin/admin.php:6270
|
3813 |
msgid "Hide Notifications Center in SEOPress Dashboard page"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: inc/admin/admin.php:6287
|
3817 |
msgid "Hide SEO tools in SEOPress Dashboard page"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: inc/admin/admin.php:6304
|
3821 |
msgid "Hide Useful Links in SEOPress dashboard page"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: inc/admin/admin.php:6321
|
3825 |
msgid "Add title column"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: inc/admin/admin.php:6338
|
3829 |
msgid "Add meta description column"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: inc/admin/admin.php:6355
|
3833 |
msgid "Add redirection enable column"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: inc/admin/admin.php:6372
|
3837 |
msgid "Add redirection URL column"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: inc/admin/admin.php:6389
|
3841 |
msgid "Add canonical URL column"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: inc/admin/admin.php:6406
|
3845 |
msgid "Add target keyword column"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: inc/admin/admin.php:6423
|
3849 |
msgid "Display noindex status"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: inc/admin/admin.php:6440
|
3853 |
msgid "Display nofollow status"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: inc/admin/admin.php:6457
|
3857 |
msgid "Display total number of words in content"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: inc/admin/admin.php:6474
|
3861 |
msgid "Display W3C column to check code quality"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: inc/admin/admin.php:6492
|
3865 |
msgid "Display Page Speed column to check performances"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: inc/admin/admin.php:6510
|
3869 |
msgid "Remove Genesis SEO Metabox"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: inc/admin/admin.php:6527
|
3873 |
msgid "Remove Genesis SEO link in WP Admin Menu"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: inc/admin/admin.php:6544
|
3877 |
msgid "Remove the advice if None schema selected"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: inc/admin/admin.php:6582 inc/admin/admin.php:6617
|
3881 |
msgid ""
|
3882 |
"Hook to filter structured data types metabox call by post type - new window"
|
3883 |
msgstr ""
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: SEO, XML sitemap, meta title, open graph, content analysis, knowledge grap
|
|
6 |
Requires at least: 4.6+
|
7 |
Tested up to: 5.2
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 3.7
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -53,9 +53,10 @@ SEOPress is a powerful plugin to optimize your SEO, boost your traffic, improve
|
|
53 |
<h3>SEOPress PRO: to go further with your SEO</h3>
|
54 |
|
55 |
<ul>
|
|
|
56 |
<li>Video XML Sitemap</li>
|
57 |
<li>Google Suggestions in Content Analysis</li>
|
58 |
-
<li><a href="https://www.seopress.org/features/google-structured-data-types/" target="_blank">Google Structured Data types (schema.org)</a>: article, local business, FAQ, course, recipe, video, event, product, simple review</li>
|
59 |
<li>Automatic Schemas</li>
|
60 |
<li>Breadcrumbs optimized with Schema.org, A11Y ready</li>
|
61 |
<li>Google Analytics Stats in Dashboard</li>
|
@@ -94,6 +95,7 @@ SEOPress is a powerful plugin to optimize your SEO, boost your traffic, improve
|
|
94 |
<li>Dutch (professional translation)</li>
|
95 |
<li>Russian (professional translation)</li>
|
96 |
<li>Japanese (professional translation)</li>
|
|
|
97 |
<li>Greek</li>
|
98 |
<li>Bulgarian</li>
|
99 |
<li>Indonesian</li>
|
@@ -219,6 +221,16 @@ Any questions? Visit our website <a href="https://www.seopress.org?utm_source=w.
|
|
219 |
60. Installation Wizard
|
220 |
|
221 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
= 3.7 =
|
223 |
* NEW Import metadata from CSV file: title, meta description, meta robots and more... (SEO > Tools > Data) - PRO
|
224 |
* NEW Support the new Google meta robots (max-snippet:-1, max-image-preview:large, max-video-preview:-1), ON by default
|
6 |
Requires at least: 4.6+
|
7 |
Tested up to: 5.2
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 3.7.1
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
53 |
<h3>SEOPress PRO: to go further with your SEO</h3>
|
54 |
|
55 |
<ul>
|
56 |
+
<li>Import metadatas (titles, open graph, robots...) from CSV file</li>
|
57 |
<li>Video XML Sitemap</li>
|
58 |
<li>Google Suggestions in Content Analysis</li>
|
59 |
+
<li><a href="https://www.seopress.org/features/google-structured-data-types/" target="_blank">Google Structured Data types (schema.org)</a>: article, local business, FAQ, course, recipe, video, event, product, job, simple review</li>
|
60 |
<li>Automatic Schemas</li>
|
61 |
<li>Breadcrumbs optimized with Schema.org, A11Y ready</li>
|
62 |
<li>Google Analytics Stats in Dashboard</li>
|
95 |
<li>Dutch (professional translation)</li>
|
96 |
<li>Russian (professional translation)</li>
|
97 |
<li>Japanese (professional translation)</li>
|
98 |
+
<li>Hindi (professional translation)</li>
|
99 |
<li>Greek</li>
|
100 |
<li>Bulgarian</li>
|
101 |
<li>Indonesian</li>
|
221 |
60. Installation Wizard
|
222 |
|
223 |
== Changelog ==
|
224 |
+
= 3.7.1 =
|
225 |
+
* NEW JobPosting schema (PRO)
|
226 |
+
* NEW 'seopress_metabox_seo_tabs' hook to filter tabs in SEO metabox
|
227 |
+
* NEW 'seopress_schemas_auto_job_html' hook to filter JobPosting global schema
|
228 |
+
* NEW 'seopress_schemas_job_html' hook to filter JobPosting manual schema
|
229 |
+
* NEW 'seopress_sitemaps_max_posts_per_sitemap' hook to filter max posts per paginated sitemap
|
230 |
+
* INFO GA: we now follow all external links, even if you have not defined an empty target attribute
|
231 |
+
* INFO Performance optimization
|
232 |
+
* INFO Improving security
|
233 |
+
* INFO Improving the user experience
|
234 |
= 3.7 =
|
235 |
* NEW Import metadata from CSV file: title, meta description, meta robots and more... (SEO > Tools > Data) - PRO
|
236 |
* NEW Support the new Google meta robots (max-snippet:-1, max-image-preview:large, max-video-preview:-1), ON by default
|
seopress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEOPress
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: One of the best SEO plugins for WordPress.
|
6 |
-
Version: 3.7
|
7 |
Author: Benjamin Denis
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
@@ -53,7 +53,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
|
|
53 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
54 |
//Define
|
55 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
56 |
-
define( 'SEOPRESS_VERSION', '3.7' );
|
57 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
58 |
|
59 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -165,7 +165,7 @@ function seopress_add_admin_options_scripts($hook) {
|
|
165 |
|
166 |
//Migration
|
167 |
if (isset($_GET['page']) && ($_GET['page'] == 'seopress-option' || $_GET['page'] == 'seopress-import-export') ) {
|
168 |
-
wp_enqueue_script( 'seopress-migrate-ajax', plugins_url( 'assets/js/seopress-migrate.js', __FILE__ ), array( 'jquery' ), SEOPRESS_VERSION, true );
|
169 |
|
170 |
$seopress_migrate = array(
|
171 |
'seopress_aio_migrate' => array(
|
3 |
Plugin Name: SEOPress
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: One of the best SEO plugins for WordPress.
|
6 |
+
Version: 3.7.1
|
7 |
Author: Benjamin Denis
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
53 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
54 |
//Define
|
55 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
56 |
+
define( 'SEOPRESS_VERSION', '3.7.1' );
|
57 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
58 |
|
59 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
165 |
|
166 |
//Migration
|
167 |
if (isset($_GET['page']) && ($_GET['page'] == 'seopress-option' || $_GET['page'] == 'seopress-import-export') ) {
|
168 |
+
wp_enqueue_script( 'seopress-migrate-ajax', plugins_url( 'assets/js/seopress-migrate.min.js', __FILE__ ), array( 'jquery' ), SEOPRESS_VERSION, true );
|
169 |
|
170 |
$seopress_migrate = array(
|
171 |
'seopress_aio_migrate' => array(
|