Version Description
Read our Blog post update = * NEW Elementor integration (part 2): now with Google Preview and Content Analysis * NEW Semi-automatic redirections when you delete/change a slug (PRO) * NEW BuddyPress / BuddyBoss compatibility * NEW Chinese language for the Free version (PRO version will follow soon) * NEW Local Business widget to easily display your business address, phone and more! (PRO) (Appearance > Widgets > Local Business) * NEW Notice in admin bar if you're site is globally set to noindex * NEW Notice in admin bar if you're CPT is globally set to noindex / nofollow * NEW Import your post and term metadata from wpSEO plugin (https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-wpseo-to-seopress/) * NEW Notification in SEOPress Dashboard to warn TagDiv / Newspaper users about a compatibility issue * NEW Notification in SEOPress Dashboard to warn users if DIVI SEO options are enabled to avoid conflicts * NEW Notification in SEOPress Dashboard to warn users about a wrong configuration with permalink structure * NEW Dynamic variable for meta / custom schema: %%post_url%% - Post URL (ie: permalink) * NEW 'seopress_post_automatic_redirect' hook to disable automatic redirect suggestions (https://www.seopress.org/support/hooks/disable-automatic-redirect-suggestions/) * NEW 'seopress_titles_post_url' hook to filter post URL dynamic variable (https://www.seopress.org/support/hooks/filter-seopress_titles_post_url-dynamic-variable/) * NEW 'seopress_lb_widget_title' hook to filter Local Business widget title (https://www.seopress.org/support/hooks/filter-local-business-widget-title/) * NEW 'seopress_lb_widget_desc' hook to filter Local Business widget description (https://www.seopress.org/support/hooks/filter-local-business-widget-description/) * NEW 'seopress_lb_widget_street_address' hook to filter Local Business widget street address (https://www.seopress.org/support/hooks/filter-local-business-widget-street-address/) * NEW 'seopress_lb_widget_city' hook to filter Local Business widget city (https://www.seopress.org/support/hooks/filter-local-business-widget-city/) * NEW 'seopress_lb_widget_state' hook to filter Local Business widget state (https://www.seopress.org/support/hooks/filter-local-business-widget-state/) * NEW 'seopress_lb_widget_code' hook to filter Local Business widget postal code (https://www.seopress.org/support/hooks/filter-local-business-widget-postal-code/) * NEW 'seopress_lb_widget_country' hook to filter Local Business widget country (https://www.seopress.org/support/hooks/filter-local-business-widget-country/) * NEW 'seopress_lb_widget_map' hook to filter Local Business widget map (https://www.seopress.org/support/hooks/filter-local-business-widget-map-link/) * NEW 'seopress_lb_widget_phone' hook to filter Local Business widget phone number (https://www.seopress.org/support/hooks/filter-local-business-widget-phone-number/) * NEW 'seopress_lb_widget_opening_hours' hook to filter Local Business widget opening hours (https://www.seopress.org/support/hooks/filter-local-business-widget-opening-hours/) * NEW 'seopress_lb_widget_css' hook to filter Local Business widget custom inline css * INFO Automatically remove duplicate entries when importing redirections using a CSV file * INFO Updated the following translations: English, French, Spanish, German, Dutch, Russian, Japanese, Hindi, Portuguese * INFO Display Content Analysis Score columns in post type by default (SEO > Advanced > Appearance to customze the settings) * INFO Add additional checks to avoid fatal error when we set default values * INFO Improve schemas upgrader * INFO Improve UI for Structured Data Types metabox * INFO Improve help for XML sitemaps settings page * INFO Native WP XML sitemaps are now disabled only our sitemap feature is enabled (ON by default) * INFO Add some comments for translators * INFO Change canonical URL for paginated archive pages to current URL * FIX Issue when using %%wc_product_attributes%% in custom schema * FIX Welcome screen SVG image missing * FIX LifterLMS compatibility for private areas * FIX Closing
View complete changelog
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 4.0 |
Comparing to | |
See all releases |
Code changes from version 3.9.2 to 4.0
- assets/css/seopress-admin-bar.css +53 -3
- assets/css/seopress-admin-bar.min.css +1 -1
- assets/css/seopress-setup.min.css +1 -1
- assets/css/seopress.css +64 -15
- assets/css/seopress.min.css +1 -1
- assets/js/seopress-block-editor.min.js +1 -1
- assets/js/seopress-counters.min.js +1 -1
- assets/js/seopress-dashboard.js +1 -0
- assets/js/seopress-dashboard.min.js +1 -1
- assets/js/seopress-media-uploader.js +2 -8
- assets/js/seopress-media-uploader.min.js +1 -1
- assets/js/seopress-migrate.js +6 -1
- assets/js/seopress-migrate.min.js +1 -1
- assets/js/seopress-sitemap-video.js +1 -4
- assets/js/seopress-sitemap-video.min.js +1 -1
- assets/js/seopress-tabs.js +9 -0
- assets/js/seopress-tabs.min.js +1 -1
- contributors.txt +22 -16
- inc/admin/admin-metaboxes-form.php +1 -1
- inc/admin/admin-notifications-center.php +103 -0
- inc/admin/admin-wizard.php +27 -0
- inc/admin/admin.php +375 -222
- inc/admin/adminbar.php +70 -1
- inc/admin/ajax.php +126 -0
- inc/functions/options-advanced-admin.php +182 -183
- inc/functions/options-import-export.php +3 -0
- inc/functions/options-titles-metas.php +68 -4
- inc/functions/options.php +2 -1
- inc/functions/variables/dynamic-variables.php +9 -0
- languages/wp-seopress-pt_BR.mo +0 -0
- languages/wp-seopress-pt_BR.po +0 -3493
- languages/wp-seopress-te.mo +0 -0
- languages/wp-seopress-te.po +2192 -1855
- languages/wp-seopress.pot +1067 -928
- readme.txt +51 -96
- seopress.php +21 -11
@@ -1,6 +1,6 @@
|
|
1 |
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before,
|
2 |
#seopress-header #seopress-admin h1::before{
|
3 |
-
content:"\
|
4 |
font-family:seopress
|
5 |
}
|
6 |
#seopress-header #seopress-admin h1::before,
|
@@ -20,6 +20,56 @@
|
|
20 |
[class^=icon-seopress-]{
|
21 |
font-family:seopress!important
|
22 |
}
|
23 |
-
.icon-seopress-seopress:before{
|
24 |
-
content:"\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
1 |
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before,
|
2 |
#seopress-header #seopress-admin h1::before{
|
3 |
+
content:"\e800";
|
4 |
font-family:seopress
|
5 |
}
|
6 |
#seopress-header #seopress-admin h1::before,
|
20 |
[class^=icon-seopress-]{
|
21 |
font-family:seopress!important
|
22 |
}
|
23 |
+
.icon-seopress-seopress:before {
|
24 |
+
content: "\e800";
|
25 |
+
font: normal 14px/1 seopress;
|
26 |
+
line-height: 1.5rem;
|
27 |
+
}
|
28 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_top_level .wrap-seopress-noindex {
|
29 |
+
background: red;
|
30 |
+
color: #fff;
|
31 |
+
padding: 0 8px;
|
32 |
+
float: right;
|
33 |
+
margin-left: 6px;
|
34 |
+
}
|
35 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_top_level .wrap-seopress-noindex .ab-icon::before {
|
36 |
+
color: #eee;
|
37 |
+
vertical-align: middle;
|
38 |
+
}
|
39 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots {
|
40 |
+
display: block;
|
41 |
+
background: #23292d;
|
42 |
+
}
|
43 |
+
|
44 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots a {
|
45 |
+
height: inherit;
|
46 |
+
padding-bottom: 5px;
|
47 |
+
}
|
48 |
+
|
49 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-seo {
|
50 |
+
font-weight: bold;
|
51 |
+
border-bottom: 1px solid currentColor;
|
52 |
+
width: 100%;
|
53 |
+
display: block;
|
54 |
+
margin-bottom: 5px;
|
55 |
+
}
|
56 |
+
|
57 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex,
|
58 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow {
|
59 |
+
display: block;
|
60 |
+
}
|
61 |
+
|
62 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .ab-icon,
|
63 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .ab-icon {
|
64 |
+
float: none;
|
65 |
+
vertical-align: middle;
|
66 |
+
}
|
67 |
+
|
68 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .on::before,
|
69 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .on::before {
|
70 |
+
color: red;
|
71 |
+
}
|
72 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .off::before,
|
73 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .off::before {
|
74 |
+
color: #00b9eb;
|
75 |
}
|
@@ -1 +1 @@
|
|
1 |
-
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before,#seopress-header #seopress-admin h1::before{content:"\
|
1 |
+
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before,#seopress-header #seopress-admin h1::before{content:"\e800";font-family:seopress}#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?8v0bs0);src:url(../fonts/seopress.eot?8v0bs0#iefix) format('embedded-opentype'),url(../fonts/seopress.ttf?8v0bs0) format('truetype'),url(../fonts/seopress.woff?8v0bs0) format('woff'),url(../fonts/seopress.svg?8v0bs0#seopress) format('svg');font-weight:400;font-style:normal}[class*=" icon-seopress"],[class^=icon-seopress-]{font-family:seopress!important}.icon-seopress-seopress:before{content:"\e800";font:normal 14px/1 seopress;line-height:1.5rem}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_top_level .wrap-seopress-noindex{background:red;color:#fff;padding:0 8px;float:right;margin-left:6px}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_top_level .wrap-seopress-noindex .ab-icon::before{color:#eee;vertical-align:middle}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots{display:block;background:#23292d}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots a{height:inherit;padding-bottom:5px}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-seo{font-weight:700;border-bottom:1px solid currentColor;width:100%;display:block;margin-bottom:5px}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow,#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex{display:block}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .ab-icon,#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .ab-icon{float:none;vertical-align:middle}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .on::before,#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .on::before{color:red}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .off::before,#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .off::before{color:#00b9eb}
|
@@ -1 +1 @@
|
|
1 |
-
html{background-color:#f6f7f7;margin:0}body.seopress-setup{box-shadow:none;background:#f6f7f7;padding:0;margin:0;max-width:100%}.wp-core-ui .button,.wp-core-ui .button-secondary{color:#6159e6;border-color:#6159e6;background:#fff;vertical-align:middle}.wp-core-ui .button-secondary:hover{color:#555d66;background:#fafafa;border-color:#999}.wp-core-ui select:focus,input[type=checkbox]:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:#6259e6;box-shadow:0 0 0 1px #6259e6;outline:2px solid transparent}.seopress-setup .sp-progress-bar{background-color:#6159e6}.spinner{display:inline-block}.log{margin:0;text-transform:uppercase;display:inline-block;vertical-align:middle;padding:5px;color:rgba(19,191,17,1);font-style:italic}.admin_page_seopress_csv_importer.seopress-styles .seopress-option{max-width:700px;margin:40px auto}.admin_page_seopress_csv_importer .description{color:#999;margin-top:4px;display:block}.admin_page_seopress_csv_importer .description code{background:0 0;padding:0;white-space:pre-line;word-wrap:break-word;word-break:break-all}.admin_page_seopress_csv_importer .seopress-setup-content table thead th{font-weight:700}.admin_page_seopress_csv_importer .seopress-setup-content table tr:nth-child(odd) td{background:#fbfbfb}.admin_page_seopress_csv_importer .seopress-setup-content table td select{width:100%}.admin_page_seopress_csv_importer .dashicons-yes-alt:before{color:#3642ff}.admin_page_seopress_csv_importer .seopress-wizard-services{padding:0}.seopress-setup{text-align:center}.seopress-setup .select2-container{text-align:left;width:auto}.seopress-setup .hidden{display:none}.seopress-setup .seopress-setup-content{box-shadow:0 1px 3px rgba(0,0,0,.13);padding:2em;margin:65px auto 24px;background:#fff;overflow:hidden;zoom:1;text-align:center;max-width:700px}.seopress-setup-content h1,.seopress-setup-content h2,.seopress-setup-content h3,.seopress-setup-content table{margin:0 0 20px;border:0;padding:0;color:#2c3338;clear:none;font-weight:500}.seopress-setup-content p{margin:20px 0;font-size:1em;line-height:1.75em;color:#50575e}.seopress-setup-content .m0{margin:0}.seopress-setup-content table{font-size:1em;line-height:1.75em;color:#50575e;text-align:left}.seopress-setup-content a{color:#6259e6}.seopress-setup-content a:focus,.seopress-setup-content a:hover{color:#111}.seopress-option #seopress-edd-license-btn,.seopress-option #seopress-refresh{width:auto}.seopress-setup-content .form-table th{width:35%;vertical-align:top;font-weight:400}.seopress-setup-content .form-table td{vertical-align:top}.seopress-setup-content .form-table td input,.seopress-setup-content .form-table td select{width:100%;box-sizing:border-box}.seopress-setup-content .form-table td input[size]{width:auto}.seopress-setup-content .form-table td .description{line-height:1.5em;display:block;margin-top:.25em;color:#999;font-style:italic}.seopress-setup-content .form-table td .input-checkbox,.seopress-setup-content .form-table td .input-radio{width:auto;box-sizing:inherit;padding:inherit;margin:0 .5em 0 0;box-shadow:none}.seopress-setup-content .form-table .section_title td{padding:0}.seopress-setup-content .form-table .section_title td h2,.seopress-setup-content .form-table .section_title td p{margin:12px 0 0}.seopress-setup-content .form-table td,.seopress-setup-content .form-table th{padding:12px 0;margin:0;border:0}.seopress-setup-content .form-table td:first-child,.seopress-setup-content .form-table th:first-child{padding-right:1em}.seopress-setup-content .seopress-setup-pages{width:100%;border-top:1px solid #eee}.seopress-setup-content .seopress-setup-pages thead th{display:none}.seopress-setup-content .seopress-setup-pages .page-name{width:30%;font-weight:700}.seopress-setup-content .seopress-setup-pages td,.seopress-setup-content .seopress-setup-pages th{padding:14px 0;border-bottom:1px solid #eee}.seopress-setup-content .seopress-setup-pages td:first-child,.seopress-setup-content .seopress-setup-pages th:first-child{padding-right:9px}.seopress-setup-content .seopress-setup-pages th{padding-top:0}.seopress-setup-content .seopress-setup-pages .page-options p{color:#777;margin:6px 0 0 24px;line-height:1.75em}.seopress-setup-content .seopress-setup-pages .page-options p input{vertical-align:middle;margin:1px 0 0;height:1.75em;width:1.75em;line-height:1.75em}.seopress-setup-content .seopress-setup-pages .page-options p label{line-height:1}@media screen and (max-width:782px){.seopress-setup-content .form-table tbody th{width:auto}}.seopress-setup-content .twitter-share-button{float:right}.seopress-setup-content .seopress-setup-next-steps{overflow:hidden;margin:0 0 24px;padding-bottom:2px}.seopress-setup-content .seopress-setup-next-steps h2{margin-bottom:12px}.seopress-setup-content .seopress-setup-next-steps .seopress-setup-next-steps-first{float:left;width:50%;box-sizing:border-box}.seopress-setup-content .seopress-setup-next-steps .seopress-setup-next-steps-last{float:right;width:50%;box-sizing:border-box}.seopress-setup-content .seopress-setup-next-steps ul{padding:0 2em 0 0;list-style:none outside;margin:0}.seopress-setup-content .seopress-setup-next-steps ul li a{display:block;padding:0 0 .75em}.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button{background-color:#f7f7f7;border-color:#ccc;color:#23282d;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #ccc;text-shadow:1px 0 1px #eee,0 1px 1px #eee;font-size:1em;height:auto;line-height:1.75em;margin:0 0 .75em;opacity:1;padding:1em;text-align:center}.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button:active,.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button:focus,.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button:hover{background:#f5f5f5;border-color:#aaa}.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button-primary{color:#fff;background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,1px 0 1px #a36597,0 1px 1px #a36597,-1px 0 1px #a36597}.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button-primary:active,.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button-primary:focus,.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button-primary:hover{color:#fff;background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.seopress-setup-content .seopress-setup-next-steps ul li a::before{color:#82878c;font:normal 20px/1 dashicons;speak:none;display:inline-block;padding:0 10px 0 0;top:1px;position:relative;text-decoration:none!important;vertical-align:top}.seopress-setup-content .seopress-setup-next-steps ul .learn-more a::before{content:"\f105"}.seopress-setup-content .seopress-setup-next-steps ul .video-walkthrough a::before{content:"\f126"}.seopress-setup-content .seopress-setup-next-steps ul .newsletter a::before{content:"\f465"}.seopress-setup-content .seopress-newsletter,.seopress-setup-content .updated{padding:24px;margin:0 0 24px;overflow:hidden;background:#f5f5f5}.seopress-setup-content .seopress-newsletter p,.seopress-setup-content .updated p{padding:0;margin:0 0 12px}.seopress-setup-content .seopress-newsletter form,.seopress-setup-content .seopress-tracker,.seopress-setup-content .updated form,.seopress-setup-content .updated p:last-child{margin:24px 0;border:1px solid #eee;padding:20px;border-radius:4px;overflow:hidden}.seopress-setup-content .seopress-tracker p{font-size:14px;line-height:1.5em}.seopress-setup-content .seopress-tracker .checkbox{line-height:24px;font-weight:500;font-size:1em;margin-top:0;margin-bottom:20px}.seopress-setup-content .checkbox input[type=checkbox]{opacity:0;position:absolute;left:-9999px}.seopress-setup-content .checkbox label{position:relative;display:inline-block;padding-left:28px}.seopress-setup-content .checkbox label::after,.seopress-setup-content .checkbox label::before{position:absolute;content:"";display:inline-block}.seopress-setup-content .checkbox label::before{height:16px;width:16px;left:0;top:3px;border:1px solid #aaa;background-color:#fff;border-radius:3px}.seopress-setup-content .checkbox label::after{height:5px;width:9px;border-left:2px solid;border-bottom:2px solid;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:4px;top:7px;color:#fff}.seopress-setup-content .checkbox input[type=checkbox]+label::after{content:none}.seopress-setup-content .checkbox input[type=checkbox]:checked+label::after{content:""}.seopress-setup-content .checkbox input[type=checkbox]:focus+label::before{outline:#3b99fc auto 5px}.seopress-setup-content .checkbox input[type=checkbox]:checked+label::before{background:#6259e6;border-color:#6259e6}.seopress-setup-steps{padding:10px 0 24px;margin:0;list-style:none outside;overflow:hidden;color:#ccc;width:100%;height:56px;border-bottom:1px solid #dcdcde;align-items:center;justify-content:center;background:#fff;display:inline-flex}.seopress-setup-steps li{font-size:16px;width:100%;float:left;padding:0 0 1.5em;margin:0;text-align:center;position:relative;border-bottom:2px solid #ccc;line-height:24px}.seopress-setup-steps li a{text-decoration:none;padding:1.5em;position:relative;z-index:1;color:#1d2327;line-height:24px;font-size:16px;transition:color .3s linear}.seopress-setup-steps li a:focus,.seopress-setup-steps li a:hover{color:#6159e6}.seopress-setup-steps li::before{content:"";border:3px solid #ccc;border-radius:100%;width:24px;height:24px;position:absolute;bottom:0;left:50%;margin-left:-15px;margin-bottom:-15px;background:#fff;font-family:Dashicons;font-size:24px;line-height:24px}.seopress-setup-steps li.active{color:#6259e6;font-weight:700;text-decoration:none;position:relative;z-index:1;color:#1d2327;line-height:24px}.seopress-setup-steps li.active::before{border-color:#6259e6}@keyframes fade{0%{border-color:#6259e600;left:-100%}100%{border-color:#6259e6;left:0}}.seopress-setup-steps li.active::after{content:"";position:absolute;bottom:-2px;left:0;animation-name:fade;animation-duration:2s;width:100%;animation-iteration-count:1;height:2px;background:#6259e6;z-index:-1}.seopress-setup-steps li.done{border-color:#6259e6;color:#6259e6;z-index:10}.seopress-setup-steps li.done::before{border-color:#6259e6;background:#6259e6;content:"\f147";color:#fff}.seopress-setup .seopress-setup-actions{overflow:hidden;margin:20px 0 0;position:relative}.seopress-setup .seopress-setup-actions .button{font-size:1.25em;padding:.5em 1em;line-height:1em;margin-right:.5em;margin-bottom:2px;height:auto;border-radius:4px}.seopress-setup .seopress-setup-actions .button-primary{background-color:#6259e6;border-color:#6259e6;margin:0;opacity:1;transition:all .3s linear;color:#fff}.seopress-setup .seopress-setup-actions .button-primary:active,.seopress-setup .seopress-setup-actions .button-primary:focus,.seopress-setup .seopress-setup-actions .button-primary:hover{background:0 0;border-color:#6259e6;color:#6259e6}.seopress-setup-content p:last-child{margin-bottom:0}.seopress-setup-content p.store-setup{margin-top:0}.seopress-setup-footer-links{font-size:.85em;color:#7b7b7b;margin:1.18em auto;display:inline-block;text-align:center}.seopress-wizard-services{border:1px solid #eee;padding:1em;margin:0 0 1em;list-style:none outside;border-radius:4px;overflow:hidden;text-align:left}.seopress-wizard-services p{margin:0 0 1em 0;padding:0;font-size:1em;line-height:1.5em}.seopress-wizard-service-item,.seopress-wizard-services-list-toggle{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0;color:#50575e;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin:1rem 0}.seopress-wizard-service-item:last-child,.seopress-wizard-services-list-toggle:last-child{border-bottom:0}.seopress-wizard-service-item .payment-gateway-fee,.seopress-wizard-services-list-toggle .payment-gateway-fee{color:#a6a6a6}.seopress-wizard-service-item .seopress-wizard-service-name,.seopress-wizard-services-list-toggle .seopress-wizard-service-name{-webkit-flex-basis:0;flex-basis:0;min-width:160px;text-align:center;font-weight:700;padding:2em 0;-webkit-align-self:stretch;align-self:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline}.seopress-wizard-payment-gateway-form .seopress-wizard-service-item .seopress-wizard-service-name,.seopress-wizard-payment-gateway-form .seopress-wizard-services-list-toggle .seopress-wizard-service-name{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.seopress-wizard-service-item .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle .seopress-wizard-service-name img{max-width:75px}.seopress-wizard-service-item.stripe-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.stripe-logo .seopress-wizard-service-name img{padding:8px 0}.seopress-wizard-service-item.paypal-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.paypal-logo .seopress-wizard-service-name img{max-width:87px;padding:2px 0}.seopress-wizard-service-item.klarna-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.klarna-logo .seopress-wizard-service-name img{max-width:87px;padding:12px 0}.seopress-wizard-service-item.square-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.square-logo .seopress-wizard-service-name img{max-width:95px;padding:12px 0}.seopress-wizard-service-item.eway-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.eway-logo .seopress-wizard-service-name img{max-width:87px}.seopress-wizard-service-item.payfast-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.payfast-logo .seopress-wizard-service-name img{max-width:140px}.seopress-wizard-service-item .seopress-wizard-service-description,.seopress-wizard-services-list-toggle .seopress-wizard-service-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;padding:20px}.seopress-wizard-service-item .seopress-wizard-service-description p,.seopress-wizard-services-list-toggle .seopress-wizard-service-description p{margin-bottom:1em}.seopress-wizard-service-item .seopress-wizard-service-description p:last-child,.seopress-wizard-services-list-toggle .seopress-wizard-service-description p:last-child{margin-bottom:0}.seopress-wizard-service-item .seopress-wizard-service-description .seopress-wizard-service-settings-description,.seopress-wizard-services-list-toggle .seopress-wizard-service-description .seopress-wizard-service-settings-description{display:block;font-style:italic;color:#999}.seopress-wizard-service-item .seopress-wizard-service-enable,.seopress-wizard-services-list-toggle .seopress-wizard-service-enable{-webkit-flex-basis:0;flex-basis:0;min-width:75px;text-align:center;cursor:pointer;padding:2em 0;position:relative;max-height:1.5em;-webkit-align-self:flex-start;align-self:flex-start;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.seopress-wizard-service-item .seopress-wizard-service-toggle,.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle{height:16px;width:32px;border:2px solid #935687;background-color:#935687;display:inline-block;text-indent:-9999px;border-radius:10em;position:relative}.seopress-wizard-service-item .seopress-wizard-service-toggle input[type=checkbox],.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle input[type=checkbox]{display:none}.seopress-wizard-service-item .seopress-wizard-service-toggle::before,.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle::before{content:"";display:block;width:16px;height:16px;background:#fff;position:absolute;top:0;right:0;border-radius:100%}.seopress-wizard-service-item .seopress-wizard-service-toggle.disabled,.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle.disabled{border-color:#999;background-color:#999}.seopress-wizard-service-item .seopress-wizard-service-toggle.disabled::before,.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle.disabled::before{right:auto;left:0}.seopress-wizard-service-item .seopress-wizard-service-settings,.seopress-wizard-services-list-toggle .seopress-wizard-service-settings{display:none;margin-top:.75em;margin-bottom:0;cursor:default}.seopress-wizard-service-item .seopress-wizard-service-settings.hide,.seopress-wizard-services-list-toggle .seopress-wizard-service-settings.hide{display:none}.seopress-wizard-service-item.checked .seopress-wizard-service-settings,.seopress-wizard-services-list-toggle.checked .seopress-wizard-service-settings{display:inline-block}.seopress-wizard-service-item.checked .seopress-wizard-service-settings.hide,.seopress-wizard-services-list-toggle.checked .seopress-wizard-service-settings.hide{display:none}.seopress-wizard-service-item.closed,.seopress-wizard-services-list-toggle.closed{border-bottom:0}.seopress-wizard-services-list-toggle{cursor:pointer}.seopress-wizard-services-list-toggle .seopress-wizard-service-enable::before{content:"\f343";font-family:dashicons;visibility:initial;color:#50575e;font-size:25px;margin-top:-7px;margin-left:-5px;position:absolute;visibility:visible}.seopress-wizard-services-list-toggle.closed .seopress-wizard-service-enable::before{content:"\f347"}.seopress-wizard-services-list-toggle .seopress-wizard-service-enable input{visibility:hidden;position:relative}.seopress-wizard-services.manual .seopress-wizard-service-item{display:none}.seopress-wizard-services.shipping{margin:0}.seopress-wizard-services.shipping .seopress-wizard-service-name{font-weight:400;text-align:left;-webkit-box-align:center;-webkit-align-items:center;align-items:center;max-height:5em;padding:0}.seopress-wizard-services.shipping .seopress-wizard-service-item{padding-left:2em;padding-top:.67em}.seopress-wizard-services.shipping .seopress-wizard-service-item:first-child{border-bottom:0;padding-bottom:0;font-weight:700}.seopress-wizard-services.shipping .seopress-wizard-service-item:first-child .seopress-wizard-service-name{font-weight:700}.seopress-wizard-services.shipping .seopress-wizard-shipping-method-select,.seopress-wizard-services.shipping .shipping-method-setting{display:-webkit-box;display:-webkit-flex;display:flex}.seopress-wizard-services.shipping .seopress-wizard-shipping-method-select.hide,.seopress-wizard-services.shipping .shipping-method-setting.hide{display:none}.seopress-wizard-services.shipping .seopress-wizard-shipping-method-dropdown,.seopress-wizard-services.shipping .shipping-method-setting input{margin-right:2em;margin-bottom:1em}.seopress-wizard-services.shipping .seopress-wizard-shipping-method-dropdown .select2,.seopress-wizard-services.shipping .shipping-method-setting input .select2{min-width:130px}.seopress-wizard-services.shipping .seopress-wizard-service-description{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;color:#a6a6a6}.seopress-wizard-services.shipping .seopress-wizard-service-item:not(:first-child) .seopress-wizard-service-description{font-size:.92em;padding-bottom:10px}.seopress-wizard-services.shipping .shipping-method-setting input{width:95px;border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:28px;padding-left:8px;padding-right:24px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.seopress-wizard-services.shipping .shipping-method-description,.seopress-wizard-services.shipping .shipping-method-setting .description{color:#7e7e7e;font-size:.9em}.seopress-wizard-services.shipping .shipping-method-setting input::-webkit-input-placeholder{color:#e1e1e1}.seopress-wizard-services.shipping .shipping-method-setting input:-ms-input-placeholder{color:#e1e1e1}.seopress-wizard-services.shipping .shipping-method-setting input::-ms-input-placeholder{color:#e1e1e1}.seopress-wizard-services.shipping .shipping-method-setting input::placeholder{color:#e1e1e1}.seopress-setup-shipping-units p{line-height:1.5em;font-size:13px;margin-bottom:.25em;text-align:center}.seopress-setup-shipping-units .seopress-setup-shipping-unit{margin-bottom:1.75em}.seopress-setup-shipping-units .seopress-setup-shipping-unit .select2{min-width:125px;top:-5px}.hide{display:none}.seopress-wizard-features{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;list-style:none;padding:0}.seopress-wizard-features .seopress-wizard-feature-item{-webkit-flex-basis:calc(50% - 4em - 3px);flex-basis:calc(50% - 4em - 3px);border:1px solid #eee;padding:2em}.seopress-wizard-features .seopress-wizard-feature-item:nth-child(1){border-radius:4px 0 0 0}.seopress-wizard-features .seopress-wizard-feature-item:nth-child(2){border-left:0;border-radius:0 4px 0 0}.seopress-wizard-features .seopress-wizard-feature-item:nth-child(3){border-top:0;border-radius:0 0 0 4px}.seopress-wizard-features .seopress-wizard-feature-item:nth-child(4){border-top:0;border-left:0;border-radius:0 0 4px 0}.seopress-wizard-features p.seopress-wizard-feature-description,.seopress-wizard-features p.seopress-wizard-feature-name{margin:0;line-height:1.5em}h3.jetpack-reasons{text-align:center;margin:3em 0 1em 0;font-size:14px}.jetpack-logo,.wcs-notice{display:block;margin:1.75em auto 2em auto;max-height:175px}.activate-splash .jetpack-logo{width:170px;margin-bottom:0}.activate-splash .wcs-notice{margin-top:1em;padding-left:57px}.step{text-align:center}.seopress-setup .seopress-setup-actions .button{text-shadow:none;font-weight:300;font-size:16px;padding:1em 2em;box-shadow:none;min-width:12em;min-width:auto;margin-top:10px}.seopress-setup .seopress-setup-actions .button:active,.seopress-setup .seopress-setup-actions .button:focus,.seopress-setup .seopress-setup-actions .button:hover{box-shadow:none}.seopress-setup .seopress-setup-actions .plugin-install-info{display:block;font-style:italic;color:#999;font-size:14px;line-height:1.5em;margin:5px 0}.seopress-setup .seopress-setup-actions .plugin-install-info>*{display:block}.seopress-setup .seopress-setup-actions .plugin-install-info .plugin-install-info-list-item::after{content:", "}.seopress-setup .seopress-setup-actions .plugin-install-info .plugin-install-info-list-item:last-of-type::after{content:". "}.seopress-setup .seopress-setup-actions .plugin-install-info a{white-space:nowrap}.seopress-setup .seopress-setup-actions .plugin-install-info a:not(:hover):not(:focus){color:inherit}.plugin-install-source{background:rgba(187,119,174,.15)}.plugin-install-source:not(.seopress-wizard-service-item){box-shadow:0 0 0 10px rgba(187,119,174,.15)}.location-prompt{color:#50575e;font-size:13px;font-weight:500;margin-bottom:.5em;margin-top:.85em;display:inline-block;width:100%;text-align:left}.location-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;width:calc(100% - 8px - 24px - 2px);padding-left:8px;padding-right:24px;font-size:16px;color:#444;background-color:#fff;display:inline-block;width:100%}.location-input.dropdown{width:100%;max-width:inherit}.address-step .select2{min-width:100%}.store-address-container .city-and-postcode{display:-webkit-box;display:-webkit-flex;display:flex}.store-address-container .city-and-postcode div{-webkit-flex-basis:50%;flex-basis:50%;margin-right:1em}.store-address-container .city-and-postcode div:last-of-type{margin-right:0}.store-address-container .select2-container,.store-address-container input[type=text],.store-address-container select{margin-bottom:10px}.product-type-container{margin-top:14px;margin-bottom:1px}#seopress_sell_in_person{margin-left:0}.seopress-wizard-service-settings .payment-email-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;padding:0 8px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.seopress-wizard-service-settings .payment-email-input[disabled]{color:#aaa}.newsletter-form-container{display:-webkit-box;display:-webkit-flex;display:flex}.newsletter-form-container .newsletter-form-email{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:42px;padding:0 8px;font-size:16px;color:#50575e;background-color:#fff;display:inline-block;margin-right:6px;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.newsletter-form-container .newsletter-form-button-container{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0}.seopress-setup .seopress-setup-actions .button.newsletter-form-button{height:42px;padding:0 1em;margin:0}.seopress-wizard-next-steps{border:1px solid #eee;border-radius:4px;list-style:none;padding:0}.seopress-wizard-next-steps li{padding:0}.seopress-wizard-next-steps .seopress-wizard-next-step-item{display:-webkit-box;display:-webkit-flex;display:flex;border-top:1px solid #eee;text-align:left}.seopress-wizard-next-steps .seopress-wizard-next-step-item:first-child{border-top:0}.seopress-wizard-next-steps .seopress-wizard-next-step-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;margin:1.5em}.seopress-wizard-next-steps .seopress-wizard-next-step-action{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;justify-content:center}.seopress-wizard-next-steps .seopress-wizard-next-step-action .button{margin:1em 1.5em}.seopress-wizard-next-steps p.next-step-heading{margin:0;font-size:.95em;font-weight:400;font-variant:all-petite-caps}.seopress-wizard-next-steps p.next-step-extra-info{margin:0}.seopress-wizard-next-steps h3.next-step-description{margin:0;font-size:16px;font-weight:600}.seopress-wizard-next-steps .seopress-wizard-additional-steps{border-top:1px solid #eee}.seopress-wizard-next-steps .seopress-wizard-additional-steps .seopress-wizard-next-step-description{margin-bottom:0}.seopress-wizard-next-steps .seopress-wizard-additional-steps .seopress-setup-actions{margin:0 0 1.5em 0}.seopress-wizard-next-steps .seopress-wizard-additional-steps .seopress-setup-actions .button{font-size:15px;margin:1em 0 1em 1.5em}.seopress-wizard-next-steps .seopress-wizard-additional-steps .seopress-setup-actions .button::last-child{margin-right:1.5em}p.next-steps-help-text{color:#9f9f9f;padding:0 2em;text-align:center;font-size:.9em}p.jetpack-terms{font-size:.8em;text-align:center;max-width:480px;margin:0 auto;line-height:1.5em}.seopress-error{background:#ffe6e5;border-color:#ffc5c2;padding:1em;margin-bottom:1em}.seopress-error p{margin-top:0;margin-bottom:.5em;color:#444}.seopress-error a{color:#ff645c}.seopress-error .reconnect-reminder{font-size:.85em}.seopress-error .seopress-setup-actions .button{font-size:14px}.seopress-wizard-service-setting-ppec_paypal_reroute_requests,.seopress-wizard-service-setting-stripe_create_account{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.seopress-wizard-service-setting-ppec_paypal_reroute_requests .payment-checkbox-input,.seopress-wizard-service-setting-stripe_create_account .payment-checkbox-input{-webkit-box-ordinal-group:2;-webkit-order:1;order:1;margin-top:5px;margin-left:0;margin-right:0;width:1.5em}.seopress-wizard-service-setting-ppec_paypal_reroute_requests .ppec_paypal_reroute_requests,.seopress-wizard-service-setting-ppec_paypal_reroute_requests .stripe_create_account,.seopress-wizard-service-setting-stripe_create_account .ppec_paypal_reroute_requests,.seopress-wizard-service-setting-stripe_create_account .stripe_create_account{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;margin-left:.3em}.seopress-wizard-service-setting-ppec_paypal_email,.seopress-wizard-service-setting-stripe_email{margin-top:.75em;margin-left:1.5em}.seopress-wizard-service-setting-ppec_paypal_email label.ppec_paypal_email,.seopress-wizard-service-setting-ppec_paypal_email label.stripe_email,.seopress-wizard-service-setting-stripe_email label.ppec_paypal_email,.seopress-wizard-service-setting-stripe_email label.stripe_email{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.seopress-wizard-service-setting-ppec_paypal_email input.payment-email-input,.seopress-wizard-service-setting-stripe_email input.payment-email-input{box-sizing:border-box;margin-bottom:.5em;width:100%;height:32px}.seopress-setup-content .recommended-step{padding:0 2.5em;text-align:left;display:inline-block;width:100%;box-sizing:border-box}.seopress-setup-content .recommended-step a{text-decoration:none}.seopress-setup-content .recommended-item{list-style:none;margin:1rem 0}.seopress-setup-content .recommended-item:last-child label{margin-bottom:0}.seopress-setup-content .recommended-item label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-bottom:1.5em}.seopress-setup-content .recommended-item label::after,.seopress-setup-content .recommended-item label::before{top:auto}.seopress-setup-content .recommended-item label::after{margin-top:-1.5px}.seopress-setup-content .recommended-item .recommended-item-icon{border:1px solid #fff;border-radius:7px;height:3.5em;margin-right:1em;margin-left:4px}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-storefront_theme{background-color:#f4a224;max-height:3em;max-width:3em;padding:.25em}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-automated_taxes{background-color:#d0011b;max-height:1.75em;padding:.875em}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-mailchimp{background-color:#ffe01b;height:2em;padding:.75em}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-seopress_services{background-color:#f0f0f0;max-height:1.5em;padding:1.3em .7em}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-shipstation{background-color:#f0f0f0;padding:.3em}.seopress-setup-content .recommended-item .recommended-item-description-container h3{font-size:15px;font-weight:700;letter-spacing:.5px;margin-bottom:0}.seopress-setup-content .recommended-item .recommended-item-description-container p{margin-top:0;line-height:1.5em}.seopress-wizard-service-info{padding:1em 2em;background-color:#fafafa}.help_tip{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.seopress-setup #tiptip_content{background:#5f6973}.seopress-setup #tiptip_holder.tip_top #tiptip_arrow_inner{border-top-color:#5f6973}.seopress-setup-shipping-recommended{border-bottom:1px solid #eee;margin-top:0;padding:30px 0}@media only screen and (max-width:768px){.seopress-setup .seopress-setup-content{margin:25px auto 24px}#seopress-logo img{max-width:80%}.store-address-container .city-and-postcode{display:block}.store-address-container .city-and-postcode div{margin-right:0}.seopress-wizard-service-item,.seopress-wizard-services-list-toggle{-webkit-flex-wrap:wrap;flex-wrap:wrap}.seopress-wizard-service-item .seopress-wizard-service-enable,.seopress-wizard-services-list-toggle .seopress-wizard-service-enable{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;padding:20px 0 0}.seopress-wizard-service-item .seopress-wizard-service-description,.seopress-wizard-services-list-toggle .seopress-wizard-service-description{-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.seopress-wizard-service-item .seopress-wizard-service-name,.seopress-wizard-services-list-toggle .seopress-wizard-service-name{padding:20px 20px 0;text-align:left;-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.seopress-wizard-service-item .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle .seopress-wizard-service-name img{margin:0}.newsletter-form-container{display:block}.newsletter-form-container .newsletter-form-email{display:block;box-sizing:border-box;width:100%;margin-bottom:10px}.newsletter-form-container .button.newsletter-form-button{float:left}.seopress-wizard-next-steps .seopress-wizard-next-step-item{-webkit-flex-wrap:wrap;flex-wrap:wrap}.seopress-wizard-next-steps .seopress-wizard-next-step-item .seopress-wizard-next-step-description{margin-bottom:0}.seopress-wizard-next-steps .seopress-wizard-next-step-item .seopress-wizard-next-step-action p{margin:0}.seopress-setup-steps li a{text-indent:-9999px;position:absolute;left:calc(50% - 24px);top:-10px}.seopress-setup-steps li span{display:none}}
|
1 |
+
html{background-color:#f6f7f7;margin:0}body.seopress-setup{box-shadow:none;background:#f6f7f7;padding:0;margin:0;max-width:100%}.wp-core-ui .button,.wp-core-ui .button-secondary{color:#6159e6;border-color:#6159e6;background:#fff;vertical-align:middle}.wp-core-ui .button-secondary:hover{color:#555d66;background:#fafafa;border-color:#999}.wp-core-ui select:focus,input[type=checkbox]:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:#6259e6;box-shadow:0 0 0 1px #6259e6;outline:2px solid transparent}.seopress-setup .sp-progress-bar{background-color:#6159e6}.spinner{display:inline-block}.log{margin:0;text-transform:uppercase;display:inline-block;vertical-align:middle;padding:5px;color:rgba(19,191,17,1);font-style:italic}.admin_page_seopress_csv_importer.seopress-styles .seopress-option{max-width:700px;margin:40px auto}.admin_page_seopress_csv_importer .description{color:#999;margin-top:4px;display:block}.admin_page_seopress_csv_importer .description code{background:0 0;padding:0;white-space:pre-line;word-wrap:break-word;word-break:break-all}.admin_page_seopress_csv_importer .seopress-setup-content table thead th{font-weight:700}.admin_page_seopress_csv_importer .seopress-setup-content table tr:nth-child(odd) td{background:#fbfbfb}.admin_page_seopress_csv_importer .seopress-setup-content table td select{width:100%}.admin_page_seopress_csv_importer .dashicons-yes-alt:before{color:#3642ff}.admin_page_seopress_csv_importer .seopress-wizard-services{padding:0}.seopress-setup{text-align:center}.seopress-setup .select2-container{text-align:left;width:auto}.seopress-setup .hidden{display:none}.seopress-setup .seopress-setup-content{box-shadow:0 1px 3px rgba(0,0,0,.13);padding:2em;margin:65px auto 24px;background:#fff;overflow:hidden;zoom:1;text-align:center;max-width:700px}.seopress-setup-content h1,.seopress-setup-content h2,.seopress-setup-content h3,.seopress-setup-content table{margin:0 0 20px;border:0;padding:0;color:#2c3338;clear:none;font-weight:500}.seopress-setup-content p{margin:20px 0;font-size:1em;line-height:1.75em;color:#50575e}.seopress-setup-content .m0{margin:0}.seopress-setup-content table{font-size:1em;line-height:1.75em;color:#50575e;text-align:left}.seopress-setup-content a{color:#6259e6}.seopress-setup-content a:focus,.seopress-setup-content a:hover{color:#111}.seopress-option #seopress-edd-license-btn,.seopress-option #seopress-refresh{width:auto}.seopress-setup-content .form-table th{width:35%;vertical-align:top;font-weight:400}.seopress-setup-content .form-table td{vertical-align:top}.seopress-setup-content .form-table td input,.seopress-setup-content .form-table td select{width:100%;box-sizing:border-box}.seopress-setup-content .form-table td input[size]{width:auto}.seopress-setup-content .form-table td .description{line-height:1.5em;display:block;margin-top:.25em;color:#999;font-style:italic}.seopress-setup-content .form-table td .input-checkbox,.seopress-setup-content .form-table td .input-radio{width:auto;box-sizing:inherit;padding:inherit;margin:0 .5em 0 0;box-shadow:none}.seopress-setup-content .form-table .section_title td{padding:0}.seopress-setup-content .form-table .section_title td h2,.seopress-setup-content .form-table .section_title td p{margin:12px 0 0}.seopress-setup-content .form-table td,.seopress-setup-content .form-table th{padding:12px 0;margin:0;border:0}.seopress-setup-content .form-table td:first-child,.seopress-setup-content .form-table th:first-child{padding-right:1em}.seopress-setup-content .seopress-setup-pages{width:100%;border-top:1px solid #eee}.seopress-setup-content .seopress-setup-pages thead th{display:none}.seopress-setup-content .seopress-setup-pages .page-name{width:30%;font-weight:700}.seopress-setup-content .seopress-setup-pages td,.seopress-setup-content .seopress-setup-pages th{padding:14px 0;border-bottom:1px solid #eee}.seopress-setup-content .seopress-setup-pages td:first-child,.seopress-setup-content .seopress-setup-pages th:first-child{padding-right:9px}.seopress-setup-content .seopress-setup-pages th{padding-top:0}.seopress-setup-content .seopress-setup-pages .page-options p{color:#777;margin:6px 0 0 24px;line-height:1.75em}.seopress-setup-content .seopress-setup-pages .page-options p input{vertical-align:middle;margin:1px 0 0;height:1.75em;width:1.75em;line-height:1.75em}.seopress-setup-content .seopress-setup-pages .page-options p label{line-height:1}@media screen and (max-width:782px){.seopress-setup-content .form-table tbody th{width:auto}}.seopress-setup-content .twitter-share-button{float:right}.seopress-setup-content .seopress-setup-next-steps{overflow:hidden;margin:0 0 24px;padding-bottom:2px}.seopress-setup-content .seopress-setup-next-steps h2{margin-bottom:12px}.seopress-setup-content .seopress-setup-next-steps .seopress-setup-next-steps-first{float:left;width:50%;box-sizing:border-box}.seopress-setup-content .seopress-setup-next-steps .seopress-setup-next-steps-last{float:right;width:50%;box-sizing:border-box}.seopress-setup-content .seopress-setup-next-steps ul{padding:0 2em 0 0;list-style:none outside;margin:0}.seopress-setup-content .seopress-setup-next-steps ul li a{display:block;padding:0 0 .75em}.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button{background-color:#f7f7f7;border-color:#ccc;color:#23282d;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #ccc;text-shadow:1px 0 1px #eee,0 1px 1px #eee;font-size:1em;height:auto;line-height:1.75em;margin:0 0 .75em;opacity:1;padding:1em;text-align:center}.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button:active,.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button:focus,.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button:hover{background:#f5f5f5;border-color:#aaa}.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button-primary{color:#fff;background-color:#bb77ae;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597;text-shadow:0 -1px 1px #a36597,1px 0 1px #a36597,0 1px 1px #a36597,-1px 0 1px #a36597}.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button-primary:active,.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button-primary:focus,.seopress-setup-content .seopress-setup-next-steps ul .setup-product a.button-primary:hover{color:#fff;background:#a36597;border-color:#a36597;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #a36597}.seopress-setup-content .seopress-setup-next-steps ul li a::before{color:#82878c;font:normal 20px/1 dashicons;speak:none;display:inline-block;padding:0 10px 0 0;top:1px;position:relative;text-decoration:none!important;vertical-align:top}.seopress-setup-content .seopress-setup-next-steps ul .learn-more a::before{content:"\f105"}.seopress-setup-content .seopress-setup-next-steps ul .video-walkthrough a::before{content:"\f126"}.seopress-setup-content .seopress-setup-next-steps ul .newsletter a::before{content:"\f465"}.seopress-setup-content .seopress-newsletter,.seopress-setup-content .updated{padding:24px;margin:0 0 24px;overflow:hidden;background:#f5f5f5}.seopress-setup-content .seopress-newsletter p,.seopress-setup-content .updated p{padding:0;margin:0 0 12px}.seopress-setup-content .seopress-newsletter form,.seopress-setup-content .seopress-tracker,.seopress-setup-content .updated form,.seopress-setup-content .updated p:last-child{margin:24px 0;border:1px solid #eee;padding:20px;border-radius:4px;overflow:hidden}.seopress-setup-content .seopress-tracker p{font-size:14px;line-height:1.5em}.seopress-setup-content .seopress-tracker .checkbox{line-height:24px;font-weight:500;font-size:1em;margin-top:0;margin-bottom:20px}.seopress-setup-content .checkbox input[type=checkbox]{opacity:0;position:absolute;left:-9999px}.seopress-setup-content .checkbox label{position:relative;display:inline-block;padding-left:28px}.seopress-setup-content .checkbox label::after,.seopress-setup-content .checkbox label::before{position:absolute;content:"";display:inline-block}.seopress-setup-content .checkbox label::before{height:16px;width:16px;left:0;top:3px;border:1px solid #aaa;background-color:#fff;border-radius:3px}.seopress-setup-content .checkbox label::after{height:5px;width:9px;border-left:2px solid;border-bottom:2px solid;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:4px;top:7px;color:#fff}.seopress-setup-content .checkbox input[type=checkbox]+label::after{content:none}.seopress-setup-content .checkbox input[type=checkbox]:checked+label::after{content:""}.seopress-setup-content .checkbox input[type=checkbox]:focus+label::before{outline:#3b99fc auto 5px}.seopress-setup-content .checkbox input[type=checkbox]:checked+label::before{background:#6259e6;border-color:#6259e6}.seopress-setup-steps{padding:10px 0 24px;margin:0;list-style:none outside;overflow:hidden;color:#ccc;width:100%;height:56px;border-bottom:1px solid #dcdcde;align-items:center;justify-content:center;background:#fff;display:inline-flex}.seopress-setup-steps li{width:100%;float:left;padding:0 0 1.5em;margin:0;text-align:center;position:relative;border-bottom:2px solid #ccc;line-height:24px;font-size:16px}.seopress-setup-steps li a{text-decoration:none;padding:1.5em;position:relative;z-index:1;color:#1d2327;line-height:24px;font-size:16px;transition:color .3s linear}.seopress-setup-steps li a:focus,.seopress-setup-steps li a:hover{color:#6159e6}.seopress-setup-steps li::before{content:"";border:3px solid #ccc;border-radius:100%;width:24px;height:24px;position:absolute;bottom:0;left:50%;margin-left:-15px;margin-bottom:-15px;background:#fff;font-family:Dashicons;font-size:24px;line-height:24px}.seopress-setup-steps li.active{color:#6259e6;font-weight:700;text-decoration:none;position:relative;z-index:1;color:#1d2327;line-height:24px}.seopress-setup-steps li.active::before{border-color:#6259e6}@keyframes fade{0%{border-color:#6259e600;left:-100%}100%{border-color:#6259e6;left:0}}.seopress-setup-steps li.active::after{content:"";position:absolute;bottom:-2px;left:0;animation-name:fade;animation-duration:2s;width:100%;animation-iteration-count:1;height:2px;background:#6259e6;z-index:-1}.seopress-setup-steps li.done{border-color:#6259e6;color:#6259e6;z-index:10}.seopress-setup-steps li.done::before{border-color:#6259e6;background:#6259e6;content:"\f147";color:#fff}.seopress-setup .seopress-setup-actions{overflow:hidden;margin:20px 0 0;position:relative}.seopress-setup .seopress-setup-actions .button{font-size:1.25em;padding:.5em 1em;line-height:1em;margin-right:.5em;margin-bottom:2px;height:auto;border-radius:4px}.seopress-setup .seopress-setup-actions .button-primary{background-color:#6259e6;border-color:#6259e6;margin:0;opacity:1;transition:all .3s linear;color:#fff}.seopress-setup .seopress-setup-actions .button-primary:active,.seopress-setup .seopress-setup-actions .button-primary:focus,.seopress-setup .seopress-setup-actions .button-primary:hover{background:0 0;border-color:#6259e6;color:#6259e6}.seopress-setup-content p:last-child{margin-bottom:0}.seopress-setup-content p.store-setup{margin-top:0}.seopress-setup-footer-links{font-size:.85em;color:#7b7b7b;margin:1.18em auto;display:inline-block;text-align:center}.seopress-wizard-services{border:1px solid #eee;padding:1em;margin:0 0 1em;list-style:none outside;border-radius:4px;overflow:hidden;text-align:left}.seopress-wizard-services p{margin:0 0 1em 0;padding:0;font-size:1em;line-height:1.5em}.seopress-wizard-service-item,.seopress-wizard-services-list-toggle{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0;color:#50575e;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin:1rem 0}.seopress-wizard-service-item:last-child,.seopress-wizard-services-list-toggle:last-child{border-bottom:0}.seopress-wizard-service-item .payment-gateway-fee,.seopress-wizard-services-list-toggle .payment-gateway-fee{color:#a6a6a6}.seopress-wizard-service-item .seopress-wizard-service-name,.seopress-wizard-services-list-toggle .seopress-wizard-service-name{-webkit-flex-basis:0;flex-basis:0;min-width:160px;text-align:center;font-weight:700;padding:2em 0;-webkit-align-self:stretch;align-self:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline}.seopress-wizard-payment-gateway-form .seopress-wizard-service-item .seopress-wizard-service-name,.seopress-wizard-payment-gateway-form .seopress-wizard-services-list-toggle .seopress-wizard-service-name{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.seopress-wizard-service-item .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle .seopress-wizard-service-name img{max-width:75px}.seopress-wizard-service-item.stripe-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.stripe-logo .seopress-wizard-service-name img{padding:8px 0}.seopress-wizard-service-item.paypal-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.paypal-logo .seopress-wizard-service-name img{max-width:87px;padding:2px 0}.seopress-wizard-service-item.klarna-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.klarna-logo .seopress-wizard-service-name img{max-width:87px;padding:12px 0}.seopress-wizard-service-item.square-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.square-logo .seopress-wizard-service-name img{max-width:95px;padding:12px 0}.seopress-wizard-service-item.eway-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.eway-logo .seopress-wizard-service-name img{max-width:87px}.seopress-wizard-service-item.payfast-logo .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle.payfast-logo .seopress-wizard-service-name img{max-width:140px}.seopress-wizard-service-item .seopress-wizard-service-description,.seopress-wizard-services-list-toggle .seopress-wizard-service-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;padding:20px}.seopress-wizard-service-item .seopress-wizard-service-description p,.seopress-wizard-services-list-toggle .seopress-wizard-service-description p{margin-bottom:1em}.seopress-wizard-service-item .seopress-wizard-service-description p:last-child,.seopress-wizard-services-list-toggle .seopress-wizard-service-description p:last-child{margin-bottom:0}.seopress-wizard-service-item .seopress-wizard-service-description .seopress-wizard-service-settings-description,.seopress-wizard-services-list-toggle .seopress-wizard-service-description .seopress-wizard-service-settings-description{display:block;font-style:italic;color:#999}.seopress-wizard-service-item .seopress-wizard-service-enable,.seopress-wizard-services-list-toggle .seopress-wizard-service-enable{-webkit-flex-basis:0;flex-basis:0;min-width:75px;text-align:center;cursor:pointer;padding:2em 0;position:relative;max-height:1.5em;-webkit-align-self:flex-start;align-self:flex-start;-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.seopress-wizard-service-item .seopress-wizard-service-toggle,.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle{height:16px;width:32px;border:2px solid #935687;background-color:#935687;display:inline-block;text-indent:-9999px;border-radius:10em;position:relative}.seopress-wizard-service-item .seopress-wizard-service-toggle input[type=checkbox],.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle input[type=checkbox]{display:none}.seopress-wizard-service-item .seopress-wizard-service-toggle::before,.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle::before{content:"";display:block;width:16px;height:16px;background:#fff;position:absolute;top:0;right:0;border-radius:100%}.seopress-wizard-service-item .seopress-wizard-service-toggle.disabled,.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle.disabled{border-color:#999;background-color:#999}.seopress-wizard-service-item .seopress-wizard-service-toggle.disabled::before,.seopress-wizard-services-list-toggle .seopress-wizard-service-toggle.disabled::before{right:auto;left:0}.seopress-wizard-service-item .seopress-wizard-service-settings,.seopress-wizard-services-list-toggle .seopress-wizard-service-settings{display:none;margin-top:.75em;margin-bottom:0;cursor:default}.seopress-wizard-service-item .seopress-wizard-service-settings.hide,.seopress-wizard-services-list-toggle .seopress-wizard-service-settings.hide{display:none}.seopress-wizard-service-item.checked .seopress-wizard-service-settings,.seopress-wizard-services-list-toggle.checked .seopress-wizard-service-settings{display:inline-block}.seopress-wizard-service-item.checked .seopress-wizard-service-settings.hide,.seopress-wizard-services-list-toggle.checked .seopress-wizard-service-settings.hide{display:none}.seopress-wizard-service-item.closed,.seopress-wizard-services-list-toggle.closed{border-bottom:0}.seopress-wizard-services-list-toggle{cursor:pointer}.seopress-wizard-services-list-toggle .seopress-wizard-service-enable::before{content:"\f343";font-family:dashicons;visibility:initial;color:#50575e;font-size:25px;margin-top:-7px;margin-left:-5px;position:absolute;visibility:visible}.seopress-wizard-services-list-toggle.closed .seopress-wizard-service-enable::before{content:"\f347"}.seopress-wizard-services-list-toggle .seopress-wizard-service-enable input{visibility:hidden;position:relative}.seopress-wizard-services.manual .seopress-wizard-service-item{display:none}.seopress-wizard-services.shipping{margin:0}.seopress-wizard-services.shipping .seopress-wizard-service-name{font-weight:400;text-align:left;-webkit-box-align:center;-webkit-align-items:center;align-items:center;max-height:5em;padding:0}.seopress-wizard-services.shipping .seopress-wizard-service-item{padding-left:2em;padding-top:.67em}.seopress-wizard-services.shipping .seopress-wizard-service-item:first-child{border-bottom:0;padding-bottom:0;font-weight:700}.seopress-wizard-services.shipping .seopress-wizard-service-item:first-child .seopress-wizard-service-name{font-weight:700}.seopress-wizard-services.shipping .seopress-wizard-shipping-method-select,.seopress-wizard-services.shipping .shipping-method-setting{display:-webkit-box;display:-webkit-flex;display:flex}.seopress-wizard-services.shipping .seopress-wizard-shipping-method-select.hide,.seopress-wizard-services.shipping .shipping-method-setting.hide{display:none}.seopress-wizard-services.shipping .seopress-wizard-shipping-method-dropdown,.seopress-wizard-services.shipping .shipping-method-setting input{margin-right:2em;margin-bottom:1em}.seopress-wizard-services.shipping .seopress-wizard-shipping-method-dropdown .select2,.seopress-wizard-services.shipping .shipping-method-setting input .select2{min-width:130px}.seopress-wizard-services.shipping .seopress-wizard-service-description{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;color:#a6a6a6}.seopress-wizard-services.shipping .seopress-wizard-service-item:not(:first-child) .seopress-wizard-service-description{font-size:.92em;padding-bottom:10px}.seopress-wizard-services.shipping .shipping-method-setting input{width:95px;border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:28px;padding-left:8px;padding-right:24px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.seopress-wizard-services.shipping .shipping-method-description,.seopress-wizard-services.shipping .shipping-method-setting .description{color:#7e7e7e;font-size:.9em}.seopress-wizard-services.shipping .shipping-method-setting input::-webkit-input-placeholder{color:#e1e1e1}.seopress-wizard-services.shipping .shipping-method-setting input:-ms-input-placeholder{color:#e1e1e1}.seopress-wizard-services.shipping .shipping-method-setting input::-ms-input-placeholder{color:#e1e1e1}.seopress-wizard-services.shipping .shipping-method-setting input::placeholder{color:#e1e1e1}.seopress-setup-shipping-units p{line-height:1.5em;font-size:13px;margin-bottom:.25em;text-align:center}.seopress-setup-shipping-units .seopress-setup-shipping-unit{margin-bottom:1.75em}.seopress-setup-shipping-units .seopress-setup-shipping-unit .select2{min-width:125px;top:-5px}.hide{display:none}.seopress-wizard-features{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;list-style:none;padding:0}.seopress-wizard-features .seopress-wizard-feature-item{-webkit-flex-basis:calc(50% - 4em - 3px);flex-basis:calc(50% - 4em - 3px);border:1px solid #eee;padding:2em}.seopress-wizard-features .seopress-wizard-feature-item:nth-child(1){border-radius:4px 0 0 0}.seopress-wizard-features .seopress-wizard-feature-item:nth-child(2){border-left:0;border-radius:0 4px 0 0}.seopress-wizard-features .seopress-wizard-feature-item:nth-child(3){border-top:0;border-radius:0 0 0 4px}.seopress-wizard-features .seopress-wizard-feature-item:nth-child(4){border-top:0;border-left:0;border-radius:0 0 4px 0}.seopress-wizard-features p.seopress-wizard-feature-description,.seopress-wizard-features p.seopress-wizard-feature-name{margin:0;line-height:1.5em}h3.jetpack-reasons{text-align:center;margin:3em 0 1em 0;font-size:14px}.jetpack-logo,.wcs-notice{display:block;margin:1.75em auto 2em auto;max-height:175px}.activate-splash .jetpack-logo{width:170px;margin-bottom:0}.activate-splash .wcs-notice{margin-top:1em;padding-left:57px}.step{text-align:center}.seopress-setup .seopress-setup-actions .button{text-shadow:none;font-weight:300;font-size:16px;padding:1em 2em;box-shadow:none;min-width:12em;min-width:auto;margin-top:10px}.seopress-setup .seopress-setup-actions .button:active,.seopress-setup .seopress-setup-actions .button:focus,.seopress-setup .seopress-setup-actions .button:hover{box-shadow:none}.seopress-setup .seopress-setup-actions .plugin-install-info{display:block;font-style:italic;color:#999;font-size:14px;line-height:1.5em;margin:5px 0}.seopress-setup .seopress-setup-actions .plugin-install-info>*{display:block}.seopress-setup .seopress-setup-actions .plugin-install-info .plugin-install-info-list-item::after{content:", "}.seopress-setup .seopress-setup-actions .plugin-install-info .plugin-install-info-list-item:last-of-type::after{content:". "}.seopress-setup .seopress-setup-actions .plugin-install-info a{white-space:nowrap}.seopress-setup .seopress-setup-actions .plugin-install-info a:not(:hover):not(:focus){color:inherit}.plugin-install-source{background:rgba(187,119,174,.15)}.plugin-install-source:not(.seopress-wizard-service-item){box-shadow:0 0 0 10px rgba(187,119,174,.15)}.location-prompt{color:#50575e;font-size:13px;font-weight:500;margin-bottom:.5em;margin-top:.85em;display:inline-block;width:100%;text-align:left}.location-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;width:calc(100% - 8px - 24px - 2px);padding-left:8px;padding-right:24px;font-size:16px;color:#444;background-color:#fff;display:inline-block;width:100%}.location-input.dropdown{width:100%;max-width:inherit}.address-step .select2{min-width:100%}.store-address-container .city-and-postcode{display:-webkit-box;display:-webkit-flex;display:flex}.store-address-container .city-and-postcode div{-webkit-flex-basis:50%;flex-basis:50%;margin-right:1em}.store-address-container .city-and-postcode div:last-of-type{margin-right:0}.store-address-container .select2-container,.store-address-container input[type=text],.store-address-container select{margin-bottom:10px}.product-type-container{margin-top:14px;margin-bottom:1px}#seopress_sell_in_person{margin-left:0}.seopress-wizard-service-settings .payment-email-input{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:30px;padding:0 8px;font-size:14px;color:#444;background-color:#fff;display:inline-block}.seopress-wizard-service-settings .payment-email-input[disabled]{color:#aaa}.newsletter-form-container{display:-webkit-box;display:-webkit-flex;display:flex}.newsletter-form-container .newsletter-form-email{border:1px solid #aaa;border-color:#ddd;border-radius:4px;height:42px;padding:0 8px;font-size:16px;color:#50575e;background-color:#fff;display:inline-block;margin-right:6px;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.newsletter-form-container .newsletter-form-button-container{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0}.seopress-setup .seopress-setup-actions .button.newsletter-form-button{height:42px;padding:0 1em;margin:0}.seopress-wizard-next-steps{border:1px solid #eee;border-radius:4px;list-style:none;padding:0}.seopress-wizard-next-steps li{padding:0}.seopress-wizard-next-steps .seopress-wizard-next-step-item{display:-webkit-box;display:-webkit-flex;display:flex;border-top:1px solid #eee;text-align:left}.seopress-wizard-next-steps .seopress-wizard-next-step-item:first-child{border-top:0}.seopress-wizard-next-steps .seopress-wizard-next-step-description{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;margin:1.5em}.seopress-wizard-next-steps .seopress-wizard-next-step-action{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;justify-content:center}.seopress-wizard-next-steps .seopress-wizard-next-step-action .button{margin:1em 1.5em}.seopress-wizard-next-steps p.next-step-heading{margin:0;font-size:.95em;font-weight:400;font-variant:all-petite-caps}.seopress-wizard-next-steps p.next-step-extra-info{margin:0}.seopress-wizard-next-steps h3.next-step-description{margin:0;font-size:16px;font-weight:600}.seopress-wizard-next-steps .seopress-wizard-additional-steps{border-top:1px solid #eee}.seopress-wizard-next-steps .seopress-wizard-additional-steps .seopress-wizard-next-step-description{margin-bottom:0}.seopress-wizard-next-steps .seopress-wizard-additional-steps .seopress-setup-actions{margin:0 0 1.5em 0}.seopress-wizard-next-steps .seopress-wizard-additional-steps .seopress-setup-actions .button{font-size:15px;margin:1em 0 1em 1.5em}.seopress-wizard-next-steps .seopress-wizard-additional-steps .seopress-setup-actions .button::last-child{margin-right:1.5em}p.next-steps-help-text{color:#9f9f9f;padding:0 2em;text-align:center;font-size:.9em}p.jetpack-terms{font-size:.8em;text-align:center;max-width:480px;margin:0 auto;line-height:1.5em}.seopress-error{background:#ffe6e5;border-color:#ffc5c2;padding:1em;margin-bottom:1em}.seopress-error p{margin-top:0;margin-bottom:.5em;color:#444}.seopress-error a{color:#ff645c}.seopress-error .reconnect-reminder{font-size:.85em}.seopress-error .seopress-setup-actions .button{font-size:14px}.seopress-wizard-service-setting-ppec_paypal_reroute_requests,.seopress-wizard-service-setting-stripe_create_account{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.seopress-wizard-service-setting-ppec_paypal_reroute_requests .payment-checkbox-input,.seopress-wizard-service-setting-stripe_create_account .payment-checkbox-input{-webkit-box-ordinal-group:2;-webkit-order:1;order:1;margin-top:5px;margin-left:0;margin-right:0;width:1.5em}.seopress-wizard-service-setting-ppec_paypal_reroute_requests .ppec_paypal_reroute_requests,.seopress-wizard-service-setting-ppec_paypal_reroute_requests .stripe_create_account,.seopress-wizard-service-setting-stripe_create_account .ppec_paypal_reroute_requests,.seopress-wizard-service-setting-stripe_create_account .stripe_create_account{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;margin-left:.3em}.seopress-wizard-service-setting-ppec_paypal_email,.seopress-wizard-service-setting-stripe_email{margin-top:.75em;margin-left:1.5em}.seopress-wizard-service-setting-ppec_paypal_email label.ppec_paypal_email,.seopress-wizard-service-setting-ppec_paypal_email label.stripe_email,.seopress-wizard-service-setting-stripe_email label.ppec_paypal_email,.seopress-wizard-service-setting-stripe_email label.stripe_email{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.seopress-wizard-service-setting-ppec_paypal_email input.payment-email-input,.seopress-wizard-service-setting-stripe_email input.payment-email-input{box-sizing:border-box;margin-bottom:.5em;width:100%;height:32px}.seopress-setup-content .recommended-step{padding:0 2.5em;text-align:left;display:inline-block;width:100%;box-sizing:border-box}.seopress-setup-content .recommended-step a{text-decoration:none}.seopress-setup-content .recommended-item{list-style:none;margin:1rem 0}.seopress-setup-content .recommended-item:last-child label{margin-bottom:0}.seopress-setup-content .recommended-item label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-bottom:1.5em}.seopress-setup-content .recommended-item label::after,.seopress-setup-content .recommended-item label::before{top:auto}.seopress-setup-content .recommended-item label::after{margin-top:-1.5px}.seopress-setup-content .recommended-item .recommended-item-icon{border:1px solid #fff;border-radius:7px;height:3.5em;margin-right:1em;margin-left:4px}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-storefront_theme{background-color:#f4a224;max-height:3em;max-width:3em;padding:.25em}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-automated_taxes{background-color:#d0011b;max-height:1.75em;padding:.875em}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-mailchimp{background-color:#ffe01b;height:2em;padding:.75em}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-seopress_services{background-color:#f0f0f0;max-height:1.5em;padding:1.3em .7em}.seopress-setup-content .recommended-item .recommended-item-icon.recommended-item-icon-shipstation{background-color:#f0f0f0;padding:.3em}.seopress-setup-content .recommended-item .recommended-item-description-container h3{font-size:15px;font-weight:700;letter-spacing:.5px;margin-bottom:0}.seopress-setup-content .recommended-item .recommended-item-description-container p{margin-top:0;line-height:1.5em}.seopress-wizard-service-info{padding:1em 2em;background-color:#fafafa}.help_tip{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.seopress-setup #tiptip_content{background:#5f6973}.seopress-setup #tiptip_holder.tip_top #tiptip_arrow_inner{border-top-color:#5f6973}.seopress-setup-shipping-recommended{border-bottom:1px solid #eee;margin-top:0;padding:30px 0}@media only screen and (max-width:768px){.seopress-setup .seopress-setup-content{margin:25px auto 24px}#seopress-logo img{max-width:80%}.store-address-container .city-and-postcode{display:block}.store-address-container .city-and-postcode div{margin-right:0}.seopress-wizard-service-item,.seopress-wizard-services-list-toggle{-webkit-flex-wrap:wrap;flex-wrap:wrap}.seopress-wizard-service-item .seopress-wizard-service-enable,.seopress-wizard-services-list-toggle .seopress-wizard-service-enable{-webkit-box-ordinal-group:3;-webkit-order:2;order:2;padding:20px 0 0}.seopress-wizard-service-item .seopress-wizard-service-description,.seopress-wizard-services-list-toggle .seopress-wizard-service-description{-webkit-box-ordinal-group:4;-webkit-order:3;order:3}.seopress-wizard-service-item .seopress-wizard-service-name,.seopress-wizard-services-list-toggle .seopress-wizard-service-name{padding:20px 20px 0;text-align:left;-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.seopress-wizard-service-item .seopress-wizard-service-name img,.seopress-wizard-services-list-toggle .seopress-wizard-service-name img{margin:0}.newsletter-form-container{display:block}.newsletter-form-container .newsletter-form-email{display:block;box-sizing:border-box;width:100%;margin-bottom:10px}.newsletter-form-container .button.newsletter-form-button{float:left}.seopress-wizard-next-steps .seopress-wizard-next-step-item{-webkit-flex-wrap:wrap;flex-wrap:wrap}.seopress-wizard-next-steps .seopress-wizard-next-step-item .seopress-wizard-next-step-description{margin-bottom:0}.seopress-wizard-next-steps .seopress-wizard-next-step-item .seopress-wizard-next-step-action p{margin:0}.seopress-setup-steps li a{text-indent:-9999px;position:absolute;left:calc(50% - 24px);top:-10px}.seopress-setup-steps li span{display:none}}
|
@@ -38,6 +38,55 @@
|
|
38 |
.icon-seopress-seopress:before {
|
39 |
content: "\e800";
|
40 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
.sp-tooltip {
|
43 |
position: relative;
|
@@ -1858,9 +1907,9 @@ body.seopress-styles {
|
|
1858 |
}
|
1859 |
|
1860 |
.seopress-option .button .dashicons {
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
}
|
1865 |
|
1866 |
#seopress-content .seopress-page-list .seopress-feature a.view-redirects {
|
@@ -2726,11 +2775,11 @@ body.seopress-styles {
|
|
2726 |
.seopress-BlankState button.button-primary,
|
2727 |
.seopress-message a.button-primary,
|
2728 |
.seopress-message button.button-primary{
|
2729 |
-
|
2730 |
-
|
2731 |
-
|
2732 |
-
|
2733 |
-
|
2734 |
}
|
2735 |
.seopress-BlankState a.button-primary:active,
|
2736 |
.seopress-BlankState a.button-primary:focus,
|
@@ -2835,17 +2884,17 @@ body.seopress-styles {
|
|
2835 |
transform: rotateZ(135deg);
|
2836 |
}
|
2837 |
#seopress_content_analysis .wrap-insights-post {
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
|
2842 |
}
|
2843 |
#seopress_content_analysis .wrap-insights-post .widget-insights-title {
|
2844 |
-
|
2845 |
}
|
2846 |
#seopress_content_analysis .wrap-insights-post span {
|
2847 |
-
|
2848 |
-
|
2849 |
}
|
2850 |
#seopress_content_analysis .wrap-insights-post .sp-tooltip * {
|
2851 |
font-weight: normal;
|
38 |
.icon-seopress-seopress:before {
|
39 |
content: "\e800";
|
40 |
}
|
41 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_top_level .wrap-seopress-noindex {
|
42 |
+
background: red;
|
43 |
+
color: #fff;
|
44 |
+
padding: 0 8px;
|
45 |
+
float: right;
|
46 |
+
margin-left: 6px;
|
47 |
+
}
|
48 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_top_level .wrap-seopress-noindex .ab-icon::before {
|
49 |
+
color: #eee;
|
50 |
+
vertical-align: middle;
|
51 |
+
}
|
52 |
+
|
53 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots {
|
54 |
+
display: block;
|
55 |
+
background: #23292d;
|
56 |
+
}
|
57 |
+
|
58 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots a {
|
59 |
+
height: inherit;
|
60 |
+
padding-bottom: 5px;
|
61 |
+
}
|
62 |
+
|
63 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-seo {
|
64 |
+
font-weight: bold;
|
65 |
+
border-bottom: 1px solid currentColor;
|
66 |
+
width: 100%;
|
67 |
+
display: block;
|
68 |
+
margin-bottom: 5px;
|
69 |
+
}
|
70 |
+
|
71 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex,
|
72 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow {
|
73 |
+
display: block;
|
74 |
+
}
|
75 |
+
|
76 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .ab-icon,
|
77 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .ab-icon {
|
78 |
+
float: none;
|
79 |
+
vertical-align: middle;
|
80 |
+
}
|
81 |
+
|
82 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .on::before,
|
83 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .on::before {
|
84 |
+
color: red;
|
85 |
+
}
|
86 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .off::before,
|
87 |
+
#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .off::before {
|
88 |
+
color: #00b9eb;
|
89 |
+
}
|
90 |
|
91 |
.sp-tooltip {
|
92 |
position: relative;
|
1907 |
}
|
1908 |
|
1909 |
.seopress-option .button .dashicons {
|
1910 |
+
font-size: 16px;
|
1911 |
+
align-items: center;
|
1912 |
+
display: flex;
|
1913 |
}
|
1914 |
|
1915 |
#seopress-content .seopress-page-list .seopress-feature a.view-redirects {
|
2775 |
.seopress-BlankState button.button-primary,
|
2776 |
.seopress-message a.button-primary,
|
2777 |
.seopress-message button.button-primary{
|
2778 |
+
background: #6259e6;
|
2779 |
+
border-color: #6259e6;
|
2780 |
+
box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.12) 0px 2px 5px 0px;
|
2781 |
+
color: #fff;
|
2782 |
+
display: inline-block;
|
2783 |
}
|
2784 |
.seopress-BlankState a.button-primary:active,
|
2785 |
.seopress-BlankState a.button-primary:focus,
|
2884 |
transform: rotateZ(135deg);
|
2885 |
}
|
2886 |
#seopress_content_analysis .wrap-insights-post {
|
2887 |
+
clear: both;
|
2888 |
+
border-top: 1px solid #e2e4e7;
|
2889 |
+
display: flex;
|
2890 |
+
align-items: center;
|
2891 |
}
|
2892 |
#seopress_content_analysis .wrap-insights-post .widget-insights-title {
|
2893 |
+
margin: 0 1rem;
|
2894 |
}
|
2895 |
#seopress_content_analysis .wrap-insights-post span {
|
2896 |
+
font-weight: 700;
|
2897 |
+
margin: 0 0.2rem 0 0;
|
2898 |
}
|
2899 |
#seopress_content_analysis .wrap-insights-post .sp-tooltip * {
|
2900 |
font-weight: normal;
|
@@ -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}#tab_seopress_titles_archives .form-table th:empty,#tab_seopress_titles_single .form-table th:empty,#tab_seopress_titles_tax .form-table th:empty{display:none}.icon-seopress-seopress:before{content:"\e800"}.sp-tooltip{position:relative;margin-left:5px;display:inline-block;cursor:help;vertical-align:bottom;text-align:left;background:0 0;border:none;padding:0}.sp-tooltip .dashicons{color:#666}.sp-tooltip .sp-tooltiptext{visibility:hidden;position:absolute;z-index:999999999;width:300px;right:-303px;padding:20px;top:25px;font-weight:400;box-shadow:0 3px 30px rgba(25,30,35,.1);border:1px solid #e2e4e7;background:#fff;word-break:break-word;text-transform:none}.sp-tooltip .sp-tooltiptext::before{border:8px solid #e2e4e7;top:-8px}.sp-tooltip .sp-tooltiptext::after{border:8px solid #fff;top:-6px}.sp-tooltip .sp-tooltiptext::after,.sp-tooltip .sp-tooltiptext::before{border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent;border-top:none;margin-left:-10px;content:"";position:absolute;height:0;width:0;line-height:0;left:30px}.sp-tooltip:active .sp-tooltiptext,.sp-tooltip:focus .sp-tooltiptext,.sp-tooltip:hover .sp-tooltiptext{visibility:visible}.sp-tooltip .sp-tooltip-headings{font-size:18px;font-weight:600;margin-bottom:20px;display:block}.sp-tooltip .sp-tooltip-desc{margin-bottom:20px;display:block;border-bottom:1px solid #e2e4e7;padding-bottom:20px;font-size:13px}.sp-tooltip .sp-tooltip-code{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;display:block;word-break:break-all;color:#1a7a06;font-size:11px}.analysis-score .sp-tooltip{vertical-align:middle;font-size:.75em}#seopress_content_analysis a{color:#0073aa}#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_content_analysis .analysis-score{clear:both;border-top:1px solid #e2e4e7;display:flex;justify-content:space-between;align-items:center}.column-seopress_score .analysis-score{display:flex;align-content:center}#seopress_content_analysis .analysis-score p,.column-seopress_score .analysis-score p{font-weight:700;font-size:1.2em}#seopress_content_analysis .analysis-score svg,.column-seopress_score .analysis-score svg{display:inline-block;height:30px;width:30px;margin:0;border-radius:100%;position:relative;font-weight:600;shape-rendering:geometricprecision;font-size:.5rem;vertical-align:middle;margin-right:15px}.column-seopress_score .analysis-score p,.column-seopress_score .analysis-score svg{margin:0}@keyframes loadingPulse{0%{stroke:#adc5d2}50%{stroke:#00a0d2}100%{stroke:#adc5d2}}#seopress_content_analysis .analysis-score .loading #bar{stroke-dashoffset:0!important;stroke:#adc5d2!important;animation:loadingPulse 3s infinite ease-in-out}#seopress_content_analysis .analysis-score .good #bar,.column-seopress_score .analysis-score #bar.good{stroke:#46b450}#seopress_content_analysis .analysis-score .notgood #bar,.column-seopress_score .analysis-score #bar.notgood{stroke-dashoffset:565;stroke:#ffb900}#seopress_content_analysis .analysis-score svg circle,.column-seopress_score .analysis-score svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#ccc;stroke-width:2em}#seopress_content_analysis .gr-analysis{clear:both}#seopress_content_analysis .gr-analysis-title{border-top:1px solid #e2e4e7;position:relative}#seopress_content_analysis .gr-analysis-title .impact,#seopress_cpt .impact{position:absolute;left:10px;top:calc(50% - 5px);width:10px;height:10px;border-radius:50px;padding:0;margin:0;border:1px solid #fff}#seopress_content_analysis .gr-analysis .impact.good{background:#46b450;box-shadow:0 0 5px #46b450}#seopress_content_analysis .gr-analysis .impact.low{background:#ffde24;box-shadow:0 0 5px #ffde24}#seopress_content_analysis .gr-analysis .impact.medium{background:#e39f48;box-shadow:0 0 5px #e39f48}#seopress_content_analysis .gr-analysis .impact.high,#seopress_cpt .impact.high{background:#e25950;box-shadow:0 0 5px #e25950}#seopress_content_analysis .gr-analysis-content .impact.high{background:#e25950;box-shadow:none;color:#fff;padding:2px 4px;margin-left:5px;border-radius:4px;font-weight:700}#seopress_cpt .impact.high{position:relative;top:calc(50% - 18px);display:inline-block;left:inherit;right:-10px}#seopress_content_analysis .gr-analysis-title button{background:#fff;border:0;cursor:pointer;display:block;margin:0;position:relative;text-align:left;width:100%;padding:15px 30px;align-items:center;transition:all .3s linear}#seopress_content_analysis .gr-analysis-title button:hover{background:#f3f4f5}#seopress_content_analysis .gr-analysis-title button:focus{color:#191e23;border:none;box-shadow:none;outline-offset:-2px;outline:1px dotted #555d66}#seopress_content_analysis .gr-analysis-title button .sp-arrow::after{content:"\f343";font-family:Dashicons;position:absolute;right:10px;top:calc(50% - 7px)}#seopress_content_analysis .gr-analysis-title button.open .sp-arrow::after{content:"\f347"}#seopress_content_analysis .gr-analysis-content{padding:0 1rem .5rem 1rem;display:none;width:100%;border-top:1px solid #e2e4e7;box-sizing:border-box}table.wp-list-table .manage_column.column-seopress_canonical,table.wp-list-table .manage_column.column-seopress_desc,table.wp-list-table .manage_column.column-seopress_insights,table.wp-list-table .manage_column.column-seopress_noindex,table.wp-list-table .manage_column.column-seopress_redirect_enable,table.wp-list-table .manage_column.column-seopress_redirect_url,table.wp-list-table .manage_column.column-seopress_title,table.wp-list-table .manage_column.column-seopress_tkw{width:7%!important}#seopress_content_analysis h3{margin:0;font-size:1em}#seopress_content_analysis h4{border-bottom:1px solid #e2e4e7;padding-bottom:.5rem;text-transform:uppercase;font-size:.85em;position:-webkit-sticky;position:sticky;top:0;background:#fff}#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;border:1px solid #f3f4f5;cursor:default;padding:1px}#seopress_cpt .notice{padding:10px 14px}#seopress-analysis-tabs .dashicons,#seopress_cpt .dashicons{vertical-align:middle}#seopress-analysis-tabs{clear:both}#seopress_cpt .inside{margin:0;padding:0}#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_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_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 .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_cpt .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs-anchor{cursor:pointer!important}#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{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:100%;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 #tabs-3 .box-left{width:44%}#seopress_cpt #tabs-3 .box-right{width:54%}@media only screen and (max-width:1200px){#seopress_cpt .box-left,#seopress_cpt .box-right{float:none;width:100%;margin:0}}@media only screen and (max-width:1500px){#seopress_cpt #tabs-3 .box-left,#seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}}#edittag #seopress_cpt #tabs-3 .box-left,#edittag #seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}#seopress-tabs .seopress_media_upload,#seopress_pro_cpt .seopress_media_upload{margin-top:.5rem}#seopress_cpt .google-snippet-preview{font-family:arial,sans-serif;word-break:break-all}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet{margin:0 0 10px 0;box-shadow:0 1px 6px rgba(32,33,36,.28);border-radius:8px;padding:12px 16px}#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.mobile-preview .snippet-title,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-default{font-size:16px;line-height:20px;margin-bottom:12px}#seopress_cpt .google-snippet-preview .snippet-permalink{color:#006621;font-size:14px;font-style:normal;font-weight:400;line-height:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#seopress_cpt .google-snippet-preview .wrap-snippet .wrap-m-icon-permalink,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-permalink{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-bottom:12px;display:flex}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink .snippet-permalink{display:block;color:#3c4043;font-size:12px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon{margin-right:12px;vertical-align:middle}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon img{width:16px;height:16px;max-width:inherit}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet .snippet-permalink:first-child{color:#3c4043;white-space:nowrap;font-size:12px;display:block}#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:14px;font-weight:400;line-height:18.2px;display:inline}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-default{color:#3c4043;font-size:14px;line-height:20px}#seopress_cpt .google-snippet-preview .snippet-date{color:grey;display:inline}#seopress_cpt .facebook-snippet-box{color:#4b4f56;font-size:14px;width:524px}#seopress_cpt .facebook-snippet-box .notice,#seopress_cpt .twitter-snippet-box .notice{padding:10px 14px;margin:0 0 10px 0;box-sizing:border-box;width:100%}#seopress_cpt .facebook-snippet-box .notice span,#seopress_cpt .twitter-snippet-box .notice span{font-weight:700}#seopress_cpt .snippet-meta{display:flex;overflow:hidden;max-height:12px}#seopress_cpt .fb-by,#seopress_cpt .snippet-fb-site-name,#seopress_cpt .snippet-fb-url{color:#606770;font-size:12px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .fb-sep{padding-left:5px;padding-right:5px;color:#606770;line-height:11px;font-size:12px}#seopress_cpt .facebook-snippet-box .facebook-snippet-text{border:1px solid #dadde1;background-color:#f2f3f5;padding:10px 12px}#seopress_cpt .facebook-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .facebook-snippet-box .snippet-fb-title,#seopress_cpt .facebook-snippet-box .snippet-fb-title-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-title-default{font-size:16px;line-height:20px;margin:3px 0 0;padding-top:2px;color:#1d2129;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word;max-height:22px}#seopress_cpt .facebook-snippet-box .snippet-fb-description,#seopress_cpt .facebook-snippet-box .snippet-fb-description-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-description-default{color:#606770;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .facebook-snippet-box img{display:block;height:274px;width:524px;object-fit:cover;background-color:#edeff0;text-align:center;border-bottom:none}#seopress_cpt .twitter-snippet-box{color:#4b4f56;font-size:14px;width:436px}#seopress_cpt .snippet-twitter-url{color:#8899a6;font-size:14px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .twitter-snippet-box .twitter-snippet-text{border:1px solid #dadde1;background-color:#fff;padding:10px 12px;border-radius:0 0 10px 10px}#seopress_cpt .twitter-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-img,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-default{border-radius:10px 10px 0 0;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-title,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-default{font-size:1em;line-height:20px;margin-bottom:5px;max-height:1.3em;color:#000;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word}#seopress_cpt .twitter-snippet-box .snippet-twitter-description,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-default{color:#000;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .twitter-snippet-box img{display:block;height:200px;width:436px;object-fit:cover;background-color:#edeff0;text-align:center;border-bottom:none}#seopress_cpt .wrap-seopress-counters,#seopress_pro_cpt .wrap-seopress-counters,.seopress-setup .wrap-seopress-counters,.seopress-styles .wrap-seopress-counters{text-align:right;background:#e9ecef;padding:2px 5px;display:flex;font-size:12px;justify-content:flex-end;border-radius:0 0 .25rem .25rem}#seopress_cpt .sp-progress,#seopress_pro_cpt .sp-progress,.seopress-setup .sp-progress,.seopress-styles .sp-progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem .25rem 0 0}#seopress_cpt .sp-progress-bar,#seopress_pro_cpt .sp-progress-bar,.seopress-setup .sp-progress-bar,.seopress-styles .sp-progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#0085ba;transition:width .6s ease}#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_ps,.fixed .column-seopress_score,.fixed .column-seopress_w3c,.fixed .column-seopress_words{width:6%}.fixed .column-seopress_nofollow,.fixed .column-seopress_noindex{width:8%}@media only screen and (max-width:1200px){.fixed .column-seopress_nofollow,.fixed .column-seopress_noindex,.fixed .column-seopress_ps,.fixed .column-seopress_score,.fixed .column-seopress_w3c,.fixed .column-seopress_words{width:10%}}#seopress_cpt .ui-tabs{position:relative;padding:0;border:none;font-family:inherit;font-size:inherit;display:inline-block;width:100%}#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_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_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:2px;padding-bottom:1px}#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_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_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 .dashicons-no-alt,#seopress_content_analysis .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 .dashicons-no-alt,#seopress_pro_cpt .dashicons-no-alt{background:#e25950}body.seopress-styles{background:#f8fafd}#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;z-index:100;border-bottom:1px solid RGB(238,238,238);padding-bottom:20px}.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:6px;padding:10px;margin-left:10px;color:#0085ba}.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-admin-tabs.wrap{display:block;box-shadow:0 7px 14px 0 rgba(60,66,87,.12),0 3px 6px 0 rgba(0,0,0,.12);width:64rem;max-width:100%;margin:0 auto}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap{width:100%}}.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-rk-migrate,.seopress-styles .seopress-option #seopress-seo-framework-migrate,.seopress-styles .seopress-option #seopress-squirrly-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-rk-migrate:hover,.seopress-styles .seopress-option #seopress-seo-framework-migrate:hover,.seopress-styles .seopress-option #seopress-squirrly-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}.seopress-styles pre{color:#42b72a;background:#f5f6f7;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;padding:7px}.seopress-styles #seopress-navbar{padding:10px .5rem;height:60px;margin:0 auto;width:64rem;box-sizing:border-box;position:relative;max-width:100%}#seopress-header{margin:0 auto;position:relative;width:90%;padding:1rem}#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:absolute;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:inline-block;width:100%;top:52px;visibility:hidden;cursor:auto;left:-.5rem}#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{margin:0;box-sizing:border-box;display:grid;grid-gap:0 10px;grid-template-columns:repeat(2,1fr);padding:20px}@media only screen and (max-width:1024px){#seopress-header #seopress-admin .seopress-quick-access>ul{grid-template-columns:repeat(1,1fr)}}#seopress-header #seopress-admin h1 .seopress-quick-access li{line-height:40px;margin:0;display:inline-block;height:40px;background-size:100%;background-repeat:no-repeat}#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:#6f8096;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%;max-width:64rem;margin:0 auto;box-sizing:border-box}#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;box-sizing:border-box}#seopress-admin-tabs .seopress-tab.active{visibility:visible;overflow:inherit;opacity:1;transform:translateX(0);display:inherit;position:relative}#seopress-tabs .seopress-tab{padding:0 1.5rem;width:calc(100% - 230px);display:none}@media only screen and (max-width:1024px){#seopress-tabs .seopress-tab{width:100%}}#seopress-tabs .seopress-tab.active{display:inline-block;border-left:1px solid RGB(238,238,238)}@media only screen and (max-width:782px){#seopress-tabs .seopress-tab.active{width:100%;padding:0;border-left:none;border-top:1px solid RGB(238,238,238)}}.seopress-option input[type=password],.seopress-option input[type=text],.seopress-option textarea{min-width:485px}@media only screen and (max-width:1024px){.seopress-option input[type=password],.seopress-option input[type=text],.seopress-option textarea{min-width:inherit;width:100%}}#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;margin:0 0 0 .3rem}#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 auto}.seopress-option .dashicons,.seopress-page-list .dashicons{vertical-align:middle;margin-right:5px;color:#6f8096}#seopress-admin-tabs .ui-tabs-nav,#seopress-notifications-center,.seopress-get-started,.seopress-page-list .seopress-feature,.seopress-useful-tools{margin:0 auto 20px;max-width:64rem;padding:2rem;width:100%;border-radius:0 0 4px 4px;box-sizing:border-box}.seopress-get-started{margin-top:20px;background:#fff url(img/bg-hero-support.svg) no-repeat 95% 50%/contain;position:relative;box-sizing:border-box;box-shadow:0 7px 14px 0 rgba(60,66,87,.12),0 3px 6px 0 rgba(0,0,0,.12)}.seopress-get-started .inside{max-width:calc(100% - 380px)}@media only screen and (max-width:782px){.seopress-get-started{background:#fff}.seopress-get-started .inside{max-width:100%}}.seopress-get-started .preheader{text-transform:uppercase;font-size:.8rem;font-weight:600}.seopress-get-started h2{font-size:1.85em;margin:15px 0 0 0;font-weight:400}.seopress-get-started p{margin-bottom:20px}.seopress-get-started a .dashicons{vertical-align:middle;text-decoration:none;color:#6a7c94}.seopress-get-started a.button-primary .dashicons{color:#fff}.seopress-get-started a.btn-link .dashicons{margin-right:5px}.seopress-get-started a.btn-link{margin:0 0 0 10px}#seopress-notifications-center,.seopress-useful-tools{background:#fff;padding:0}.seopress-page-list .seopress-feature{padding:0;position:relative;overflow:hidden;transition-duration:.15s;display:flex;margin:0;background:#fff;box-shadow:0 7px 14px 0 rgba(60,66,87,.12),0 3px 6px 0 rgba(0,0,0,.12);flex-wrap:wrap;border-radius:4px;width:100%;height:100%}.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:50px;width:50px;background:#c4f0ff;position:relative;border-radius:6px}.seopress-page-list .seopress-feature .img-tool .dashicons{color:#217ab7;font-size:30px;text-align:left;vertical-align:middle;width:100%;height:100%;position:absolute;top:calc(50% - 15px);left:calc(50% - 15px);margin:0}.seopress-page-list .seopress-feature .inner{margin:0;display:inline-block;padding:1.5rem;width:100%;height:100%;box-sizing:border-box}.seopress-page-list .seopress-feature h3{margin:1rem 0 0 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-get-started .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);background:#6a7c94;position:relative;height:auto;display:flex;flex-wrap:wrap}#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 .wrap-btn{display:inline-flex;margin-bottom:2rem;flex-direction:column}#seopress-content .seopress-page-list .seopress-feature a.view-redirects,#seopress-notifications-center .seopress-alert .button-primary,.seopress-get-started .button,.seopress-option .button{color:#6a7c94;background:#fff;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:10px 0;border-radius:4px;box-shadow:transparent 0 0 0 0,transparent 0 0 0 0,rgba(0,0,0,.12) 0 1px 1px 0,rgba(60,66,87,.16) 0 0 0 1px,transparent 0 0 0 0,transparent 0 0 0 0,rgba(60,66,87,.12) 0 2px 5px 0;vertical-align:baseline;display:inline-flex;align-items:center;border:none;margin-right:.5rem;cursor:pointer}.seopress-get-started .button{color:#fff;background:#6259e6;box-shadow:none}.seopress-option .wp-picker-container button{box-shadow:none;border:1px solid #0071a1;border-radius:3px;background:#f3f5f6;text-transform:none}.seopress-option .wp-picker-container input[type=text].wp-color-picker{min-width:inherit}.seopress-option .wp-picker-container .wp-picker-clear{box-shadow:none;text-transform:none;border-radius:0;background:0 0}.seopress-option .wp-picker-container .wp-picker-clear:hover{background:0 0;text-decoration:currentColor;color:inherit}.seopress-option .button .dashicons{font-size:16px;align-items:center;display:flex}#seopress-content .seopress-page-list .seopress-feature a.view-redirects{padding-left:30px}#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-get-started .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-get-started .button .dashicons{transition:all .3s linear}.seopress-get-started .button:hover .dashicons{color:#fff}#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{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:1.5rem 2rem 1.2rem 1rem;border-bottom:1px solid #e6ebf1;width:calc(100% - 3rem);flex:1 1 auto;position:relative;transition:all 150ms ease;align-items:center;display:flex;justify-content:space-between}#seopress-notifications-center .seopress-alert:last-child{margin-bottom:0;border-bottom:none}#seopress-notifications-center .seopress-alert:hover{cursor:default}#seopress-notifications-center .dashicons{display:flex;align-self:normal;width:48px;height:48px;color:#d7dade;font-size:48px;padding:0 1rem}#seopress-notifications-center .seopress-alert p{margin:0}#seopress-notifications-center .notice-left{flex:1}#seopress-notifications-center .notice-left>p:first-child{color:#1a1f36;font-weight:500}#seopress-notifications-center .notice-right{padding:1rem 0 0 0;display:flex}#seopress-notifications-center .seopress-alert.impact::after{content:"";width:10px;height:10px;border-radius:50px;position:absolute;right:1rem;top:1rem}#seopress-notifications-center .seopress-alert.impact.low::after{background:#ffde24}#seopress-notifications-center .seopress-alert.impact.medium::after{background:#e39f48}#seopress-notifications-center .seopress-alert.impact.high::after{background:#e25950}#seopress-notifications-center .seopress-alert.impact.info::after{background:#0085ba}#seopress-notifications-center .seopress-alert.dashicons{color:#6f8096}#seopress-notifications-center .dashicons.remove-notice,.seopress-get-started .remove-notice{position:absolute;right:0;color:#6b7c93;font-size:20px;height:30px;width:30px;vertical-align:middle;top:1.2rem;line-height:30px;padding:5px;transition:all .3s linear;margin:0;display:block}.seopress-get-started .remove-notice{top:10px;right:10px}#seopress-notifications-center .dashicons.remove-notice:hover,.seopress-get-started .remove-notice:hover{color:#1a1f36;cursor:pointer}#seopress-content .seopress-page-list .seopress-feature .seopress-doc,.seopress-option #seopress-tabs .seopress-doc{background:0 0;padding:0;text-decoration:none;color:inherit;box-shadow:none;position:absolute;right:.5rem;top:1rem}#seopress-content .seopress-page-list .seopress-feature .seopress-doc:active,#seopress-content .seopress-page-list .seopress-feature .seopress-doc:focus,#seopress-content .seopress-page-list .seopress-feature .seopress-doc:hover,.seopress-option #seopress-tabs .seopress-doc:active,.seopress-option #seopress-tabs .seopress-doc:focus,.seopress-option #seopress-tabs .seopress-doc:hover{color:#747474;background:0 0;box-shadow:none;border:none}#seopress-content .seopress-page-list .seopress-feature .seopress-doc:hover .dashicons{color:#232323}.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:10px;display:inline-block;background:rgba(0,140,135,.1);padding:2px 10px;border-radius:25px;color:#444;font-weight:400;text-transform:none;-moz-osx-font-smoothing:initial;-webkit-font-smoothing:initial}@media only screen and (max-width:782px){#seopress-content .feature-state,.seopress-option .feature-state{display:none}}.seopress-option .seopress_wrap_single_cpt .feature-state,.seopress-option .seopress_wrap_tax .feature-state{padding:2px 12px;margin:0 0 .5rem .5rem}.seopress-option #tab_seopress_titles_archives h2,.seopress-option #tab_seopress_titles_single h2,.seopress-option #tab_seopress_titles_tax h2{margin:2em 0 1em 0;border-top:1px solid #eee;padding:1em 0 0 0}.seopress-option #tab_seopress_titles_archives h2:first-child,.seopress-option #tab_seopress_titles_single h2:first-child,.seopress-option #tab_seopress_titles_tax h2:first-child{border-top:none;margin:0 0 1em 0}#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-block}#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:20px;padding:6px 8px 6px;-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_cpt input.toggle,.seopress-option input.toggle{max-height:0;max-width:0;opacity:0;position:relative}.seopress-feature input.toggle{display:block}.wrap-toggle-preview{position:relative}.wrap-toggle-preview p{font-weight:700;margin:0 0 1rem 0}#seopress_cpt input.toggle,.seopress_wrap_single_cpt input.toggle,.seopress_wrap_tax input.toggle{margin:0;border:none;min-width:0}#seopress_content_analysis span.label,#seopress_cpt span.label{outline:0;color:#fff;box-shadow:none;background:#555d66;padding:2px 4px;border-radius:4px;font-weight:700}#seopress_add_to_insights{margin-left:1rem}#seopress_add_to_insights_status{display:inline-block;font-weight:700;margin:0 0 0 1rem;vertical-align:middle;padding:.3rem;font-style:italic}#seopress-content input.toggle+label,#seopress_cpt #tabs-1 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:20px;width:40px;border-radius:15px}#seopress_cpt #tabs-1 input.toggle+label{margin:0}.wrap-toggle-checkboxes input.toggle+label{float:left;margin-right:10px}#seopress-content input.toggle+label:before,#seopress_cpt input.toggle+label:before,.seopress-option input.toggle+label:before{content:"";position:absolute;display:block;height:20px;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_cpt input.toggle+label:after,.seopress-option input.toggle+label:after{content:"";position:absolute;display:block;height:20px;width:20px;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_cpt input.toggle+label,#seopress_cpt input.toggle+label:before,.seopress_wrap_single_cpt input.toggle+label,.seopress_wrap_single_cpt input.toggle+label:before,.seopress_wrap_tax input.toggle+label,.seopress_wrap_tax input.toggle+label:before{width:40px;height:20px}#seopress_cpt input.toggle+label:after,.seopress_wrap_single_cpt input.toggle+label:after,.seopress_wrap_tax input.toggle+label:after{width:20px;height:20px}#seopress-content input.toggle[data-toggle="1"]+label:before,#seopress_cpt input.toggle[data-toggle="1"]+label:before,.seopress-option input.toggle[data-toggle="1"]+label:before{width:40px;background:#3197d3}#seopress_cpt input.toggle[data-toggle="1"]+label:before,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:before,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:before{width:40px;background:#3197d3}#seopress-content input.toggle[data-toggle="1"]+label:after,#seopress_cpt 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 #3197d3,0 2px 4px rgba(0,0,0,.2)}#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:after{box-shadow:inset 0 0 0 1px #3197d3,0 2px 4px rgba(0,0,0,.2)}#seopress-content .seopress-page-list{position:relative;display:grid;max-width:64rem;grid-gap:20px 20px;grid-template-columns:repeat(3,1fr)}@media only screen and (max-width:782px){#seopress-content .seopress-page-list{grid-template-columns:repeat(1,1fr)}}#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-notice-save .dashicons{color:#fff}.seopress-styles .wrap{margin:20px 0 0 0;display:flex;position:relative}.seopress-insights.seopress-styles .wrap,.toplevel_page_seopress-option.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}@media only screen and (max-width:782px){.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}}.seopress_page_seopress-pro-page #wpcontent{background:#f4f7fa}.seopress-option .wrap div.nav-tab-wrapper{margin:0 0 0 -26px;padding:0 0 0 10px;line-height:inherit;width:230px;z-index:95;font-weight:400;display:block;border-bottom:none}@media only screen and (max-width:782px){.seopress-option .wrap div.nav-tab-wrapper{width:100%;margin:0;padding:0}}#seopress-admin-tabs.wrap div.nav-tab-wrapper{margin:20px auto 0;max-width:64rem;width:100%;border-bottom:1px solid #e6ebf1;padding:0;line-height:inherit;position:-webkit-sticky;position:sticky;background:#f5f7fa;z-index:100;top:31px;border-radius:4px 4px 0 0;font-weight:400;overflow:hidden;display:flex;align-items:center;justify-content:space-between;box-sizing:border-box}@media only screen and (max-width:600px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{top:0;display:block}}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{display:block}}#seopress-admin-tabs #tab_seopress_notifications.seopress-tab{background:0 0;padding:0;border-radius:0}.seopress-option .nav-tab{border:0 solid #ccc;background:0 0;opacity:.5;padding:6px 30px 6px 10px;transition:opacity .3s linear;color:#191e23;margin:0;float:none;display:inline-block;width:100%;text-align:left;font-weight:400;box-sizing:border-box;white-space:normal}#seopress-admin-tabs .nav-tab{border:0 solid #ccc;background:0 0;opacity:.5;padding:14px 20px;transition:opacity .3s linear;color:#191e23;margin:0;box-shadow:inset -1px 0 #e3e8ee;float:none;display:inline-block;text-align:center;font-weight:400}#seopress-admin-tabs .nav-tab{width:100%}#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{opacity:1;outline:0;font-weight:600;position:relative;color:#191e23;border-left:3px solid #0085ba;background:rgba(0,133,186,.1)}#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{border-bottom:3px solid #3197d3;border-left:none;background:#fff}#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}.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}.seopress-option .sp-section-header{border-bottom:1px solid #eee;margin:0 0 1rem 0;width:100%;display:flex;position:relative;align-items:center;padding-bottom:.5rem}.seopress-option .sp-section-header::after{position:absolute;content:'';background:#0085ba;height:2px;width:40px;bottom:0;left:0}.seopress-option .sp-section-header h2{font-size:1.5em}.seopress-option .sp-section-header>.dashicons{color:#0085ba;padding:10px;border-radius:6px;margin-right:10px;background:#c4f0ff}.seopress-option .sp-section-header .wrap-toggle-checkboxes{display:flex}.seopress-styles .wrap .notice{margin:5px 0 15px 15px}#seopress-tabs.wrap .notice{margin:1rem 0}.seopress-BlankState a.button-primary,.seopress-BlankState button.button-primary,.seopress-message a.button-primary,.seopress-message button.button-primary{background:#6259e6;border-color:#6259e6;box-shadow:transparent 0 0 0 0,transparent 0 0 0 0,rgba(0,0,0,.12) 0 1px 1px 0,rgba(60,66,87,.16) 0 0 0 1px,transparent 0 0 0 0,transparent 0 0 0 0,rgba(60,66,87,.12) 0 2px 5px 0;color:#fff;display:inline-block}.seopress-BlankState a.button-primary:active,.seopress-BlankState a.button-primary:focus,.seopress-BlankState a.button-primary:hover,.seopress-BlankState button.button-primary:active,.seopress-BlankState button.button-primary:focus,.seopress-BlankState button.button-primary:hover,.seopress-message a.button-primary:active,.seopress-message a.button-primary:focus,.seopress-message a.button-primary:hover,.seopress-message button.button-primary:active,.seopress-message button.button-primary:focus,.seopress-message button.button-primary:hover{background:#6259e6;border-color:#6259e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #6259e6}.post-type-seopress_404 .seopress-BlankState-message::before,.post-type-seopress_schemas .seopress-BlankState-message::before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\f103"}.post-type-seopress_schemas .seopress-BlankState-message::before{content:"\f495"}.seopress-BlankState{text-align:center;padding:5em 0 0}.seopress-BlankState .seopress-BlankState-message{color:#aaa;margin:0 auto 1.5em;line-height:1.5em;font-size:1.2em;max-width:500px}.seopress-BlankState .seopress-BlankState-message::before{color:#ddd;text-shadow:0 -1px 1px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.8);font-size:8em;display:block;position:relative!important;top:auto;left:auto;line-height:1em;margin:0 0 .1875em}.seopress-BlankState .seopress-BlankState-cta{font-size:1.2em;padding:.75em 1.5em;margin:0 .25em;height:auto;display:inline-block!important}.seopress-BlankState{max-width:764px;text-align:center;margin:auto}.seopress-BlankState .seopress-BlankState-message{color:#444;font-size:1.5em;margin:0 auto 1em}.seopress-BlankState .seopress-BlankState-message::before{font-size:120px}.seopress-BlankState .seopress-BlankState-buttons{margin-bottom:4em}#seopress_content_analysis .up,#seopress_content_analysis .up .dashicons{color:#4ab866}#seopress_content_analysis .down,#seopress_content_analysis .down .dashicons{color:#d94f4f}#seopress_content_analysis .up .dashicons{transform:rotateZ(45deg)}#seopress_content_analysis .stable .dashicons{transform:rotateZ(90deg)}#seopress_content_analysis .down .dashicons{transform:rotateZ(135deg)}#seopress_content_analysis .wrap-insights-post{clear:both;border-top:1px solid #e2e4e7;display:flex;align-items:center}#seopress_content_analysis .wrap-insights-post .widget-insights-title{margin:0 1rem}#seopress_content_analysis .wrap-insights-post span{font-weight:700;margin:0 .2rem 0 0}#seopress_content_analysis .wrap-insights-post .sp-tooltip *{font-weight:400}#seopress_content_analysis .wrap-insights-post .sp-tooltip-headings{font-weight:700}
|
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}#tab_seopress_titles_archives .form-table th:empty,#tab_seopress_titles_single .form-table th:empty,#tab_seopress_titles_tax .form-table th:empty{display:none}.icon-seopress-seopress:before{content:"\e800"}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_top_level .wrap-seopress-noindex{background:red;color:#fff;padding:0 8px;float:right;margin-left:6px}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_top_level .wrap-seopress-noindex .ab-icon::before{color:#eee;vertical-align:middle}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots{display:block;background:#23292d}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots a{height:inherit;padding-bottom:5px}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-seo{font-weight:700;border-bottom:1px solid currentColor;width:100%;display:block;margin-bottom:5px}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow,#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex{display:block}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .ab-icon,#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .ab-icon{float:none;vertical-align:middle}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .on::before,#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .on::before{color:red}#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-nofollow .off::before,#wpadminbar #wp-toolbar #wp-admin-bar-seopress_custom_sub_menu_meta_robots .wrap-seopress-cpt-noindex .off::before{color:#00b9eb}.sp-tooltip{position:relative;margin-left:5px;display:inline-block;cursor:help;vertical-align:bottom;text-align:left;background:0 0;border:none;padding:0}.sp-tooltip .dashicons{color:#666}.sp-tooltip .sp-tooltiptext{visibility:hidden;position:absolute;z-index:999999999;width:300px;right:-303px;padding:20px;top:25px;font-weight:400;box-shadow:0 3px 30px rgba(25,30,35,.1);border:1px solid #e2e4e7;background:#fff;word-break:break-word;text-transform:none}.sp-tooltip .sp-tooltiptext::before{border:8px solid #e2e4e7;top:-8px}.sp-tooltip .sp-tooltiptext::after{border:8px solid #fff;top:-6px}.sp-tooltip .sp-tooltiptext::after,.sp-tooltip .sp-tooltiptext::before{border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent;border-top:none;margin-left:-10px;content:"";position:absolute;height:0;width:0;line-height:0;left:30px}.sp-tooltip:active .sp-tooltiptext,.sp-tooltip:focus .sp-tooltiptext,.sp-tooltip:hover .sp-tooltiptext{visibility:visible}.sp-tooltip .sp-tooltip-headings{font-size:18px;font-weight:600;margin-bottom:20px;display:block}.sp-tooltip .sp-tooltip-desc{margin-bottom:20px;display:block;border-bottom:1px solid #e2e4e7;padding-bottom:20px;font-size:13px}.sp-tooltip .sp-tooltip-code{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;display:block;word-break:break-all;color:#1a7a06;font-size:11px}.analysis-score .sp-tooltip{vertical-align:middle;font-size:.75em}#seopress_content_analysis a{color:#0073aa}#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_content_analysis .analysis-score{clear:both;border-top:1px solid #e2e4e7;display:flex;justify-content:space-between;align-items:center}.column-seopress_score .analysis-score{display:flex;align-content:center}#seopress_content_analysis .analysis-score p,.column-seopress_score .analysis-score p{font-weight:700;font-size:1.2em}#seopress_content_analysis .analysis-score svg,.column-seopress_score .analysis-score svg{display:inline-block;height:30px;width:30px;margin:0;border-radius:100%;position:relative;font-weight:600;shape-rendering:geometricprecision;font-size:.5rem;vertical-align:middle;margin-right:15px}.column-seopress_score .analysis-score p,.column-seopress_score .analysis-score svg{margin:0}@keyframes loadingPulse{0%{stroke:#adc5d2}50%{stroke:#00a0d2}100%{stroke:#adc5d2}}#seopress_content_analysis .analysis-score .loading #bar{stroke-dashoffset:0!important;stroke:#adc5d2!important;animation:loadingPulse 3s infinite ease-in-out}#seopress_content_analysis .analysis-score .good #bar,.column-seopress_score .analysis-score #bar.good{stroke:#46b450}#seopress_content_analysis .analysis-score .notgood #bar,.column-seopress_score .analysis-score #bar.notgood{stroke-dashoffset:565;stroke:#ffb900}#seopress_content_analysis .analysis-score svg circle,.column-seopress_score .analysis-score svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#ccc;stroke-width:2em}#seopress_content_analysis .gr-analysis{clear:both}#seopress_content_analysis .gr-analysis-title{border-top:1px solid #e2e4e7;position:relative}#seopress_content_analysis .gr-analysis-title .impact,#seopress_cpt .impact{position:absolute;left:10px;top:calc(50% - 5px);width:10px;height:10px;border-radius:50px;padding:0;margin:0;border:1px solid #fff}#seopress_content_analysis .gr-analysis .impact.good{background:#46b450;box-shadow:0 0 5px #46b450}#seopress_content_analysis .gr-analysis .impact.low{background:#ffde24;box-shadow:0 0 5px #ffde24}#seopress_content_analysis .gr-analysis .impact.medium{background:#e39f48;box-shadow:0 0 5px #e39f48}#seopress_content_analysis .gr-analysis .impact.high,#seopress_cpt .impact.high{background:#e25950;box-shadow:0 0 5px #e25950}#seopress_content_analysis .gr-analysis-content .impact.high{background:#e25950;box-shadow:none;color:#fff;padding:2px 4px;margin-left:5px;border-radius:4px;font-weight:700}#seopress_cpt .impact.high{position:relative;top:calc(50% - 18px);display:inline-block;left:inherit;right:-10px}#seopress_content_analysis .gr-analysis-title button{background:#fff;border:0;cursor:pointer;display:block;margin:0;position:relative;text-align:left;width:100%;padding:15px 30px;align-items:center;transition:all .3s linear}#seopress_content_analysis .gr-analysis-title button:hover{background:#f3f4f5}#seopress_content_analysis .gr-analysis-title button:focus{color:#191e23;border:none;box-shadow:none;outline-offset:-2px;outline:1px dotted #555d66}#seopress_content_analysis .gr-analysis-title button .sp-arrow::after{content:"\f343";font-family:Dashicons;position:absolute;right:10px;top:calc(50% - 7px)}#seopress_content_analysis .gr-analysis-title button.open .sp-arrow::after{content:"\f347"}#seopress_content_analysis .gr-analysis-content{padding:0 1rem .5rem 1rem;display:none;width:100%;border-top:1px solid #e2e4e7;box-sizing:border-box}table.wp-list-table .manage_column.column-seopress_canonical,table.wp-list-table .manage_column.column-seopress_desc,table.wp-list-table .manage_column.column-seopress_insights,table.wp-list-table .manage_column.column-seopress_noindex,table.wp-list-table .manage_column.column-seopress_redirect_enable,table.wp-list-table .manage_column.column-seopress_redirect_url,table.wp-list-table .manage_column.column-seopress_title,table.wp-list-table .manage_column.column-seopress_tkw{width:7%!important}#seopress_content_analysis h3{margin:0;font-size:1em}#seopress_content_analysis h4{border-bottom:1px solid #e2e4e7;padding-bottom:.5rem;text-transform:uppercase;font-size:.85em;position:-webkit-sticky;position:sticky;top:0;background:#fff}#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;border:1px solid #f3f4f5;cursor:default;padding:1px}#seopress_cpt .notice{padding:10px 14px}#seopress-analysis-tabs .dashicons,#seopress_cpt .dashicons{vertical-align:middle}#seopress-analysis-tabs{clear:both}#seopress_cpt .inside{margin:0;padding:0}#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_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_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 .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_cpt .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs-anchor{cursor:pointer!important}#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{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:100%;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 #tabs-3 .box-left{width:44%}#seopress_cpt #tabs-3 .box-right{width:54%}@media only screen and (max-width:1200px){#seopress_cpt .box-left,#seopress_cpt .box-right{float:none;width:100%;margin:0}}@media only screen and (max-width:1500px){#seopress_cpt #tabs-3 .box-left,#seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}}#edittag #seopress_cpt #tabs-3 .box-left,#edittag #seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}#seopress-tabs .seopress_media_upload,#seopress_pro_cpt .seopress_media_upload{margin-top:.5rem}#seopress_cpt .google-snippet-preview{font-family:arial,sans-serif;word-break:break-all}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet{margin:0 0 10px 0;box-shadow:0 1px 6px rgba(32,33,36,.28);border-radius:8px;padding:12px 16px}#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.mobile-preview .snippet-title,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-default{font-size:16px;line-height:20px;margin-bottom:12px}#seopress_cpt .google-snippet-preview .snippet-permalink{color:#006621;font-size:14px;font-style:normal;font-weight:400;line-height:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#seopress_cpt .google-snippet-preview .wrap-snippet .wrap-m-icon-permalink,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-permalink{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-bottom:12px;display:flex}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink .snippet-permalink{display:block;color:#3c4043;font-size:12px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon{margin-right:12px;vertical-align:middle}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon img{width:16px;height:16px;max-width:inherit}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet .snippet-permalink:first-child{color:#3c4043;white-space:nowrap;font-size:12px;display:block}#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:14px;font-weight:400;line-height:18.2px;display:inline}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-default{color:#3c4043;font-size:14px;line-height:20px}#seopress_cpt .google-snippet-preview .snippet-date{color:grey;display:inline}#seopress_cpt .facebook-snippet-box{color:#4b4f56;font-size:14px;width:524px}#seopress_cpt .facebook-snippet-box .notice,#seopress_cpt .twitter-snippet-box .notice{padding:10px 14px;margin:0 0 10px 0;box-sizing:border-box;width:100%}#seopress_cpt .facebook-snippet-box .notice span,#seopress_cpt .twitter-snippet-box .notice span{font-weight:700}#seopress_cpt .snippet-meta{display:flex;overflow:hidden;max-height:12px}#seopress_cpt .fb-by,#seopress_cpt .snippet-fb-site-name,#seopress_cpt .snippet-fb-url{color:#606770;font-size:12px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .fb-sep{padding-left:5px;padding-right:5px;color:#606770;line-height:11px;font-size:12px}#seopress_cpt .facebook-snippet-box .facebook-snippet-text{border:1px solid #dadde1;background-color:#f2f3f5;padding:10px 12px}#seopress_cpt .facebook-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .facebook-snippet-box .snippet-fb-title,#seopress_cpt .facebook-snippet-box .snippet-fb-title-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-title-default{font-size:16px;line-height:20px;margin:3px 0 0;padding-top:2px;color:#1d2129;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word;max-height:22px}#seopress_cpt .facebook-snippet-box .snippet-fb-description,#seopress_cpt .facebook-snippet-box .snippet-fb-description-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-description-default{color:#606770;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .facebook-snippet-box img{display:block;height:274px;width:524px;object-fit:cover;background-color:#edeff0;text-align:center;border-bottom:none}#seopress_cpt .twitter-snippet-box{color:#4b4f56;font-size:14px;width:436px}#seopress_cpt .snippet-twitter-url{color:#8899a6;font-size:14px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .twitter-snippet-box .twitter-snippet-text{border:1px solid #dadde1;background-color:#fff;padding:10px 12px;border-radius:0 0 10px 10px}#seopress_cpt .twitter-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-img,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-default{border-radius:10px 10px 0 0;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-title,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-default{font-size:1em;line-height:20px;margin-bottom:5px;max-height:1.3em;color:#000;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word}#seopress_cpt .twitter-snippet-box .snippet-twitter-description,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-default{color:#000;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .twitter-snippet-box img{display:block;height:200px;width:436px;object-fit:cover;background-color:#edeff0;text-align:center;border-bottom:none}#seopress_cpt .wrap-seopress-counters,#seopress_pro_cpt .wrap-seopress-counters,.seopress-setup .wrap-seopress-counters,.seopress-styles .wrap-seopress-counters{text-align:right;background:#e9ecef;padding:2px 5px;display:flex;font-size:12px;justify-content:flex-end;border-radius:0 0 .25rem .25rem}#seopress_cpt .sp-progress,#seopress_pro_cpt .sp-progress,.seopress-setup .sp-progress,.seopress-styles .sp-progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem .25rem 0 0}#seopress_cpt .sp-progress-bar,#seopress_pro_cpt .sp-progress-bar,.seopress-setup .sp-progress-bar,.seopress-styles .sp-progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#0085ba;transition:width .6s ease}#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_ps,.fixed .column-seopress_score,.fixed .column-seopress_w3c,.fixed .column-seopress_words{width:6%}.fixed .column-seopress_nofollow,.fixed .column-seopress_noindex{width:8%}@media only screen and (max-width:1200px){.fixed .column-seopress_nofollow,.fixed .column-seopress_noindex,.fixed .column-seopress_ps,.fixed .column-seopress_score,.fixed .column-seopress_w3c,.fixed .column-seopress_words{width:10%}}#seopress_cpt .ui-tabs{position:relative;padding:0;border:none;font-family:inherit;font-size:inherit;display:inline-block;width:100%}#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_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_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:2px;padding-bottom:1px}#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_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_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 .dashicons-no-alt,#seopress_content_analysis .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 .dashicons-no-alt,#seopress_pro_cpt .dashicons-no-alt{background:#e25950}body.seopress-styles{background:#f8fafd}#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;z-index:100;border-bottom:1px solid #eee;padding-bottom:20px}.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:6px;padding:10px;margin-left:10px;color:#0085ba}.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-admin-tabs.wrap{display:block;box-shadow:0 7px 14px 0 rgba(60,66,87,.12),0 3px 6px 0 rgba(0,0,0,.12);width:64rem;max-width:100%;margin:0 auto}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap{width:100%}}.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-rk-migrate,.seopress-styles .seopress-option #seopress-seo-framework-migrate,.seopress-styles .seopress-option #seopress-squirrly-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:#6a7c94;position:relative;height:auto;z-index:10}.seopress-styles .seopress-option #seopress-aio-migrate:hover,.seopress-styles .seopress-option #seopress-rk-migrate:hover,.seopress-styles .seopress-option #seopress-seo-framework-migrate:hover,.seopress-styles .seopress-option #seopress-squirrly-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}.seopress-styles pre{color:#42b72a;background:#f5f6f7;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;padding:7px}.seopress-styles #seopress-navbar{padding:10px .5rem;height:60px;margin:0 auto;width:64rem;box-sizing:border-box;position:relative;max-width:100%}#seopress-header{margin:0 auto;position:relative;width:90%;padding:1rem}#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,#3a4afb 0,#47bea5 100%);background:-webkit-linear-gradient(45deg,#3a4afb 0,#47bea5 100%);background:linear-gradient(45deg,#3a4afb 0,#47bea5 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:absolute;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:inline-block;width:100%;top:52px;visibility:hidden;cursor:auto;left:-.5rem}#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{margin:0;box-sizing:border-box;display:grid;grid-gap:0 10px;grid-template-columns:repeat(2,1fr);padding:20px}@media only screen and (max-width:1024px){#seopress-header #seopress-admin .seopress-quick-access>ul{grid-template-columns:repeat(1,1fr)}}#seopress-header #seopress-admin h1 .seopress-quick-access li{line-height:40px;margin:0;display:inline-block;height:40px;background-size:100%;background-repeat:no-repeat}#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:#6f8096;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%;max-width:64rem;margin:0 auto;box-sizing:border-box}#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;box-sizing:border-box}#seopress-admin-tabs .seopress-tab.active{visibility:visible;overflow:inherit;opacity:1;transform:translateX(0);display:inherit;position:relative}#seopress-tabs .seopress-tab{padding:0 1.5rem;width:calc(100% - 230px);display:none}@media only screen and (max-width:1024px){#seopress-tabs .seopress-tab{width:100%}}#seopress-tabs .seopress-tab.active{display:inline-block;border-left:1px solid #eee}@media only screen and (max-width:782px){#seopress-tabs .seopress-tab.active{width:100%;padding:0;border-left:none;border-top:1px solid #eee}}.seopress-option input[type=password],.seopress-option input[type=text],.seopress-option textarea{min-width:485px}@media only screen and (max-width:1024px){.seopress-option input[type=password],.seopress-option input[type=text],.seopress-option textarea{min-width:inherit;width:100%}}#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;margin:0 0 0 .3rem}#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 auto}.seopress-option .dashicons,.seopress-page-list .dashicons{vertical-align:middle;margin-right:5px;color:#6f8096}#seopress-admin-tabs .ui-tabs-nav,#seopress-notifications-center,.seopress-get-started,.seopress-page-list .seopress-feature,.seopress-useful-tools{margin:0 auto 20px;max-width:64rem;padding:2rem;width:100%;border-radius:0 0 4px 4px;box-sizing:border-box}.seopress-get-started{margin-top:20px;background:#fff url(../img/bg-hero-support.svg) no-repeat 95% 50%/contain;position:relative;box-sizing:border-box;box-shadow:0 7px 14px 0 rgba(60,66,87,.12),0 3px 6px 0 rgba(0,0,0,.12)}.seopress-get-started .inside{max-width:calc(100% - 380px)}@media only screen and (max-width:782px){.seopress-get-started{background:#fff}.seopress-get-started .inside{max-width:100%}}.seopress-get-started .preheader{text-transform:uppercase;font-size:.8rem;font-weight:600}.seopress-get-started h2{font-size:1.85em;margin:15px 0 0 0;font-weight:400}.seopress-get-started p{margin-bottom:20px}.seopress-get-started a .dashicons{vertical-align:middle;text-decoration:none;color:#6a7c94}.seopress-get-started a.button-primary .dashicons{color:#fff}.seopress-get-started a.btn-link .dashicons{margin-right:5px}.seopress-get-started a.btn-link{margin:0 0 0 10px}#seopress-notifications-center,.seopress-useful-tools{background:#fff;padding:0}.seopress-page-list .seopress-feature{padding:0;position:relative;overflow:hidden;transition-duration:.15s;display:flex;margin:0;background:#fff;box-shadow:0 7px 14px 0 rgba(60,66,87,.12),0 3px 6px 0 rgba(0,0,0,.12);flex-wrap:wrap;border-radius:4px;width:100%;height:100%}.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:50px;width:50px;background:#c4f0ff;position:relative;border-radius:6px}.seopress-page-list .seopress-feature .img-tool .dashicons{color:#217ab7;font-size:30px;text-align:left;vertical-align:middle;width:100%;height:100%;position:absolute;top:calc(50% - 15px);left:calc(50% - 15px);margin:0}.seopress-page-list .seopress-feature .inner{margin:0;display:inline-block;padding:1.5rem;width:100%;height:100%;box-sizing:border-box}.seopress-page-list .seopress-feature h3{margin:1rem 0 0 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-get-started .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);background:#6a7c94;position:relative;height:auto;display:flex;flex-wrap:wrap}#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 .wrap-btn{display:inline-flex;margin-bottom:2rem;flex-direction:column}#seopress-content .seopress-page-list .seopress-feature a.view-redirects,#seopress-notifications-center .seopress-alert .button-primary,.seopress-get-started .button,.seopress-option .button{color:#6a7c94;background:#fff;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:10px 0;border-radius:4px;box-shadow:transparent 0 0 0 0,transparent 0 0 0 0,rgba(0,0,0,.12) 0 1px 1px 0,rgba(60,66,87,.16) 0 0 0 1px,transparent 0 0 0 0,transparent 0 0 0 0,rgba(60,66,87,.12) 0 2px 5px 0;vertical-align:baseline;display:inline-flex;align-items:center;border:none;margin-right:.5rem;cursor:pointer}.seopress-get-started .button{color:#fff;background:#6259e6;box-shadow:none}.seopress-option .wp-picker-container button{box-shadow:none;border:1px solid #0071a1;border-radius:3px;background:#f3f5f6;text-transform:none}.seopress-option .wp-picker-container input[type=text].wp-color-picker{min-width:inherit}.seopress-option .wp-picker-container .wp-picker-clear{box-shadow:none;text-transform:none;border-radius:0;background:0 0}.seopress-option .wp-picker-container .wp-picker-clear:hover{background:0 0;text-decoration:currentColor;color:inherit}.seopress-option .button .dashicons{font-size:16px;align-items:center;display:flex}#seopress-content .seopress-page-list .seopress-feature a.view-redirects{padding-left:30px}#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-get-started .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-get-started .button .dashicons{transition:all .3s linear}.seopress-get-started .button:hover .dashicons{color:#fff}#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{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:1.5rem 2rem 1.2rem 1rem;border-bottom:1px solid #e6ebf1;width:calc(100% - 3rem);flex:1 1 auto;position:relative;transition:all 150ms ease;align-items:center;display:flex;justify-content:space-between}#seopress-notifications-center .seopress-alert:last-child{margin-bottom:0;border-bottom:none}#seopress-notifications-center .seopress-alert:hover{cursor:default}#seopress-notifications-center .dashicons{display:flex;align-self:normal;width:48px;height:48px;color:#d7dade;font-size:48px;padding:0 1rem}#seopress-notifications-center .seopress-alert p{margin:0}#seopress-notifications-center .notice-left{flex:1}#seopress-notifications-center .notice-left>p:first-child{color:#1a1f36;font-weight:500}#seopress-notifications-center .notice-right{padding:1rem 0 0 0;display:flex}#seopress-notifications-center .seopress-alert.impact::after{content:"";width:10px;height:10px;border-radius:50px;position:absolute;right:1rem;top:1rem}#seopress-notifications-center .seopress-alert.impact.low::after{background:#ffde24}#seopress-notifications-center .seopress-alert.impact.medium::after{background:#e39f48}#seopress-notifications-center .seopress-alert.impact.high::after{background:#e25950}#seopress-notifications-center .seopress-alert.impact.info::after{background:#0085ba}#seopress-notifications-center .seopress-alert.dashicons{color:#6f8096}#seopress-notifications-center .dashicons.remove-notice,.seopress-get-started .remove-notice{position:absolute;right:0;color:#6b7c93;font-size:20px;height:30px;width:30px;vertical-align:middle;top:1.2rem;line-height:30px;padding:5px;transition:all .3s linear;margin:0;display:block}.seopress-get-started .remove-notice{top:10px;right:10px}#seopress-notifications-center .dashicons.remove-notice:hover,.seopress-get-started .remove-notice:hover{color:#1a1f36;cursor:pointer}#seopress-content .seopress-page-list .seopress-feature .seopress-doc,.seopress-option #seopress-tabs .seopress-doc{background:0 0;padding:0;text-decoration:none;color:inherit;box-shadow:none;position:absolute;right:.5rem;top:1rem}#seopress-content .seopress-page-list .seopress-feature .seopress-doc:active,#seopress-content .seopress-page-list .seopress-feature .seopress-doc:focus,#seopress-content .seopress-page-list .seopress-feature .seopress-doc:hover,.seopress-option #seopress-tabs .seopress-doc:active,.seopress-option #seopress-tabs .seopress-doc:focus,.seopress-option #seopress-tabs .seopress-doc:hover{color:#747474;background:0 0;box-shadow:none;border:none}#seopress-content .seopress-page-list .seopress-feature .seopress-doc:hover .dashicons{color:#232323}.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:10px;display:inline-block;background:rgba(0,140,135,.1);padding:2px 10px;border-radius:25px;color:#444;font-weight:400;text-transform:none;-moz-osx-font-smoothing:initial;-webkit-font-smoothing:initial}@media only screen and (max-width:782px){#seopress-content .feature-state,.seopress-option .feature-state{display:none}}.seopress-option .seopress_wrap_single_cpt .feature-state,.seopress-option .seopress_wrap_tax .feature-state{padding:2px 12px;margin:0 0 .5rem .5rem}.seopress-option #tab_seopress_titles_archives h2,.seopress-option #tab_seopress_titles_single h2,.seopress-option #tab_seopress_titles_tax h2{margin:2em 0 1em 0;border-top:1px solid #eee;padding:1em 0 0 0}.seopress-option #tab_seopress_titles_archives h2:first-child,.seopress-option #tab_seopress_titles_single h2:first-child,.seopress-option #tab_seopress_titles_tax h2:first-child{border-top:none;margin:0 0 1em 0}#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-block}#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:#13bf11;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:20px;padding:6px 8px 6px;-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_cpt input.toggle,.seopress-option input.toggle{max-height:0;max-width:0;opacity:0;position:relative}.seopress-feature input.toggle{display:block}.wrap-toggle-preview{position:relative}.wrap-toggle-preview p{font-weight:700;margin:0 0 1rem 0}#seopress_cpt input.toggle,.seopress_wrap_single_cpt input.toggle,.seopress_wrap_tax input.toggle{margin:0;border:none;min-width:0}#seopress_content_analysis span.label,#seopress_cpt span.label{outline:0;color:#fff;box-shadow:none;background:#555d66;padding:2px 4px;border-radius:4px;font-weight:700}#seopress_add_to_insights{margin-left:1rem}#seopress_add_to_insights_status{display:inline-block;font-weight:700;margin:0 0 0 1rem;vertical-align:middle;padding:.3rem;font-style:italic}#seopress-content input.toggle+label,#seopress_cpt #tabs-1 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:20px;width:40px;border-radius:15px}#seopress_cpt #tabs-1 input.toggle+label{margin:0}.wrap-toggle-checkboxes input.toggle+label{float:left;margin-right:10px}#seopress-content input.toggle+label:before,#seopress_cpt input.toggle+label:before,.seopress-option input.toggle+label:before{content:"";position:absolute;display:block;height:20px;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_cpt input.toggle+label:after,.seopress-option input.toggle+label:after{content:"";position:absolute;display:block;height:20px;width:20px;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_cpt input.toggle+label,#seopress_cpt input.toggle+label:before,.seopress_wrap_single_cpt input.toggle+label,.seopress_wrap_single_cpt input.toggle+label:before,.seopress_wrap_tax input.toggle+label,.seopress_wrap_tax input.toggle+label:before{width:40px;height:20px}#seopress_cpt input.toggle+label:after,.seopress_wrap_single_cpt input.toggle+label:after,.seopress_wrap_tax input.toggle+label:after{width:20px;height:20px}#seopress-content input.toggle[data-toggle="1"]+label:before,#seopress_cpt input.toggle[data-toggle="1"]+label:before,.seopress-option input.toggle[data-toggle="1"]+label:before{width:40px;background:#3197d3}#seopress_cpt input.toggle[data-toggle="1"]+label:before,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:before,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:before{width:40px;background:#3197d3}#seopress-content input.toggle[data-toggle="1"]+label:after,#seopress_cpt 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 #3197d3,0 2px 4px rgba(0,0,0,.2)}#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:after{box-shadow:inset 0 0 0 1px #3197d3,0 2px 4px rgba(0,0,0,.2)}#seopress-content .seopress-page-list{position:relative;display:grid;max-width:64rem;grid-gap:20px 20px;grid-template-columns:repeat(3,1fr)}@media only screen and (max-width:782px){#seopress-content .seopress-page-list{grid-template-columns:repeat(1,1fr)}}#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-notice-save .dashicons{color:#fff}.seopress-styles .wrap{margin:20px 0 0 0;display:flex;position:relative}.seopress-insights.seopress-styles .wrap,.toplevel_page_seopress-option.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}@media only screen and (max-width:782px){.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}}.seopress_page_seopress-pro-page #wpcontent{background:#f4f7fa}.seopress-option .wrap div.nav-tab-wrapper{margin:0 0 0 -26px;padding:0 0 0 10px;line-height:inherit;width:230px;z-index:95;font-weight:400;display:block;border-bottom:none}@media only screen and (max-width:782px){.seopress-option .wrap div.nav-tab-wrapper{width:100%;margin:0;padding:0}}#seopress-admin-tabs.wrap div.nav-tab-wrapper{margin:20px auto 0;max-width:64rem;width:100%;border-bottom:1px solid #e6ebf1;padding:0;line-height:inherit;position:-webkit-sticky;position:sticky;background:#f5f7fa;z-index:100;top:31px;border-radius:4px 4px 0 0;font-weight:400;overflow:hidden;display:flex;align-items:center;justify-content:space-between;box-sizing:border-box}@media only screen and (max-width:600px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{top:0;display:block}}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{display:block}}#seopress-admin-tabs #tab_seopress_notifications.seopress-tab{background:0 0;padding:0;border-radius:0}.seopress-option .nav-tab{border:0 solid #ccc;background:0 0;opacity:.5;padding:6px 30px 6px 10px;transition:opacity .3s linear;color:#191e23;margin:0;float:none;display:inline-block;width:100%;text-align:left;font-weight:400;box-sizing:border-box;white-space:normal}#seopress-admin-tabs .nav-tab{border:0 solid #ccc;background:0 0;opacity:.5;padding:14px 20px;transition:opacity .3s linear;color:#191e23;margin:0;box-shadow:inset -1px 0 #e3e8ee;float:none;display:inline-block;text-align:center;font-weight:400}#seopress-admin-tabs .nav-tab{width:100%}#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{opacity:1;outline:0;font-weight:600;position:relative;color:#191e23;border-left:3px solid #0085ba;background:rgba(0,133,186,.1)}#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{border-bottom:3px solid #3197d3;border-left:none;background:#fff}#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}.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}.seopress-option .sp-section-header{border-bottom:1px solid #eee;margin:0 0 1rem 0;width:100%;display:flex;position:relative;align-items:center;padding-bottom:.5rem}.seopress-option .sp-section-header::after{position:absolute;content:'';background:#0085ba;height:2px;width:40px;bottom:0;left:0}.seopress-option .sp-section-header h2{font-size:1.5em}.seopress-option .sp-section-header>.dashicons{color:#0085ba;padding:10px;border-radius:6px;margin-right:10px;background:#c4f0ff}.seopress-option .sp-section-header .wrap-toggle-checkboxes{display:flex}.seopress-styles .wrap .notice{margin:5px 0 15px 15px}#seopress-tabs.wrap .notice{margin:1rem 0}.seopress-BlankState a.button-primary,.seopress-BlankState button.button-primary,.seopress-message a.button-primary,.seopress-message button.button-primary{background:#6259e6;border-color:#6259e6;box-shadow:transparent 0 0 0 0,transparent 0 0 0 0,rgba(0,0,0,.12) 0 1px 1px 0,rgba(60,66,87,.16) 0 0 0 1px,transparent 0 0 0 0,transparent 0 0 0 0,rgba(60,66,87,.12) 0 2px 5px 0;color:#fff;display:inline-block}.seopress-BlankState a.button-primary:active,.seopress-BlankState a.button-primary:focus,.seopress-BlankState a.button-primary:hover,.seopress-BlankState button.button-primary:active,.seopress-BlankState button.button-primary:focus,.seopress-BlankState button.button-primary:hover,.seopress-message a.button-primary:active,.seopress-message a.button-primary:focus,.seopress-message a.button-primary:hover,.seopress-message button.button-primary:active,.seopress-message button.button-primary:focus,.seopress-message button.button-primary:hover{background:#6259e6;border-color:#6259e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 #6259e6}.post-type-seopress_404 .seopress-BlankState-message::before,.post-type-seopress_schemas .seopress-BlankState-message::before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\f103"}.post-type-seopress_schemas .seopress-BlankState-message::before{content:"\f495"}.seopress-BlankState{text-align:center;padding:5em 0 0}.seopress-BlankState .seopress-BlankState-message{color:#aaa;margin:0 auto 1.5em;line-height:1.5em;font-size:1.2em;max-width:500px}.seopress-BlankState .seopress-BlankState-message::before{color:#ddd;text-shadow:0 -1px 1px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.8);font-size:8em;display:block;position:relative!important;top:auto;left:auto;line-height:1em;margin:0 0 .1875em}.seopress-BlankState .seopress-BlankState-cta{font-size:1.2em;padding:.75em 1.5em;margin:0 .25em;height:auto;display:inline-block!important}.seopress-BlankState{max-width:764px;text-align:center;margin:auto}.seopress-BlankState .seopress-BlankState-message{color:#444;font-size:1.5em;margin:0 auto 1em}.seopress-BlankState .seopress-BlankState-message::before{font-size:120px}.seopress-BlankState .seopress-BlankState-buttons{margin-bottom:4em}#seopress_content_analysis .up,#seopress_content_analysis .up .dashicons{color:#4ab866}#seopress_content_analysis .down,#seopress_content_analysis .down .dashicons{color:#d94f4f}#seopress_content_analysis .up .dashicons{transform:rotateZ(45deg)}#seopress_content_analysis .stable .dashicons{transform:rotateZ(90deg)}#seopress_content_analysis .down .dashicons{transform:rotateZ(135deg)}#seopress_content_analysis .wrap-insights-post{clear:both;border-top:1px solid #e2e4e7;display:flex;align-items:center}#seopress_content_analysis .wrap-insights-post .widget-insights-title{margin:0 1rem}#seopress_content_analysis .wrap-insights-post span{font-weight:700;margin:0 .2rem 0 0}#seopress_content_analysis .wrap-insights-post .sp-tooltip *{font-weight:400}#seopress_content_analysis .wrap-insights-post .sp-tooltip-headings{font-weight:700}
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready((function($){const{subscribe:subscribe,select:select}=wp.data;let hasSaved=!1;subscribe(()=>{var isAutosavingPost=wp.data.select("core/editor").isAutosavingPost(),isSavingMetaBoxes=wp.data.select("core/edit-post").isSavingMetaBoxes();!isSavingMetaBoxes||isAutosavingPost||hasSaved||$.ajax({method:"GET",url:seopressAjaxRealPreview.seopress_real_preview,data:{action:"seopress_do_real_preview",post_id:$("#seopress-tabs").attr("data_id"),tax_name:$("#seopress-tabs").attr("data_tax"),origin:$("#seopress-tabs").attr("data_origin"),post_type:$("#seopress_launch_analysis").attr("data_post_type"),seopress_analysis_target_kw:$("#seopress_analysis_target_kw_meta").val(),_ajax_nonce:seopressAjaxRealPreview.seopress_nonce},beforeSend:function(){$(".analysis-score p span").fadeIn().text(seopressAjaxRealPreview.i18n.progress),$(".analysis-score p").addClass("loading")},success:function(s){void 0===s.data.og_title?og_title="":og_title=s.data.og_title.values,void 0===s.data.og_desc?og_desc="":og_desc=s.data.og_desc.values,void 0===s.data.og_img?og_img="":og_img=s.data.og_img.values,void 0===s.data.og_url?og_url="":og_url=s.data.og_url.host,void 0===s.data.og_site_name?og_site_name="":og_site_name=s.data.og_site_name.values,void 0===s.data.tw_title?tw_title="":tw_title=s.data.tw_title.values,void 0===s.data.tw_desc?tw_desc="":tw_desc=s.data.tw_desc.values,void 0===s.data.tw_img?tw_img="":tw_img=s.data.tw_img.values,void 0===s.data.meta_robots?meta_robots="":meta_robots=s.data.meta_robots[0];var data_arr={og_title:og_title,og_desc:og_desc,og_img:og_img,og_url:og_url,og_site_name:og_site_name,tw_title:tw_title,tw_desc:tw_desc,tw_img:tw_img},if_noindex;for(var key in data_arr)data_arr.length&&(key=data_arr[key].length>1?data_arr[key].slice(-1)[0]:data_arr[key][0]);meta_robots=meta_robots.toString(),$("#sp-advanced-alert").empty(),new RegExp("noindex").test(meta_robots)&&$("#sp-advanced-alert").append('<span class="impact high" aria-hidden="true"></span>'),$("#seopress_cpt .google-snippet-preview .snippet-title").html(s.data.title),$("#seopress_cpt .google-snippet-preview .snippet-title-default").html(s.data.title),$("#seopress_titles_title_meta").attr("placeholder",s.data.title),$("#seopress_cpt .google-snippet-preview .snippet-description").html(s.data.meta_desc),$("#seopress_cpt .google-snippet-preview .snippet-description-default").html(s.data.meta_desc),$("#seopress_titles_desc_meta").attr("placeholder",s.data.meta_desc),data_arr.og_title&&($("#seopress_cpt #seopress_social_fb_title_meta").attr("placeholder",data_arr.og_title[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-title").html(data_arr.og_title[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-title-default").html(data_arr.og_title[0])),data_arr.og_desc&&($("#seopress_cpt #seopress_social_fb_desc_meta").attr("placeholder",data_arr.og_desc[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-description").html(data_arr.og_desc[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-description-default").html(data_arr.og_desc[0])),data_arr.og_img&&($("#seopress_cpt #seopress_social_fb_img_meta").attr("placeholder",data_arr.og_img[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-img img").attr("src",data_arr.og_img[0]),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-img-default img").attr("src",data_arr.og_img[0])),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-url").html(data_arr.og_url),$("#seopress_cpt .facebook-snippet-preview .snippet-fb-site-name").html(data_arr.og_site_name),data_arr.tw_title&&($("#seopress_cpt #seopress_social_twitter_title_meta").attr("placeholder",data_arr.tw_title[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title").html(data_arr.tw_title[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title-default").html(data_arr.tw_title[0])),data_arr.tw_desc&&($("#seopress_cpt #seopress_social_twitter_desc_meta").attr("placeholder",data_arr.tw_desc[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description").html(data_arr.tw_desc[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description-default").html(data_arr.tw_desc[0])),data_arr.tw_img&&($("#seopress_cpt #seopress_social_twitter_img_meta").attr("placeholder",data_arr.tw_img[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img img").attr("src",data_arr.tw_img[0]),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img-default img").attr("src",data_arr.tw_img[0])),$("#seopress_cpt .twitter-snippet-preview .snippet-twitter-url").html(data_arr.og_url),$("#seopress_cpt #seopress_robots_canonical_meta").attr("placeholder",s.data.canonical),$("#seopress-analysis-tabs").load(" #seopress-analysis-tabs-1","",sp_ca_toggle),$(".analysis-score p").removeClass("loading")}}),hasSaved=!!isSavingMetaBoxes})}));
|
@@ -1 +1 @@
|
|
1 |
-
function sp_titles_counters(){var e=jQuery("#seopress_titles_title_meta").val(),t=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").after('<div id="seopress_titles_title_counters_val">/ 60</div>'),e.length>0?(jQuery("#seopress_titles_title_counters").text(e.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(e))):t.length&&(jQuery("#seopress_titles_title_counters").text(t.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(t))),e.length>60?jQuery("#seopress_titles_title_counters").css("color","red"):t.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(e)>568?jQuery("#seopress_titles_title_pixel").css("color","red"):pixelTitle(t)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),e.length)var s=Math.round(pixelTitle(e)/568*100);else s=Math.round(pixelTitle(t)/568*100);s>=100&&(s=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",s),jQuery("#seopress_titles_title_counters_progress").text(s+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",s+"%"),jQuery("#seopress_titles_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",function(e){var t=jQuery("#seopress_titles_title_meta").val(),s=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").css("color","inherit"),jQuery("#seopress_titles_title_pixel").css("color","inherit"),t.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(t)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),0==t.length&&(s.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(s)>568&&jQuery("#seopress_titles_title_pixel").css("color","red")),t.length>0?(jQuery("#seopress_titles_title_counters").text(t.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(t))):s.length&&(jQuery("#seopress_titles_title_counters").text(s.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(s))),t.length>0?(jQuery(".snippet-title-custom").text(e.target.value),jQuery(".snippet-title").css("display","none"),jQuery(".snippet-title-custom").css("display","block"),jQuery(".snippet-title-default").css("display","none")):0==t.length&&(jQuery(".snippet-title-default").css("display","block"),jQuery(".snippet-title-custom").css("display","none"),jQuery(".snippet-title").css("display","none")),t.length)var i=Math.round(pixelTitle(t)/568*100);else i=Math.round(pixelTitle(s)/568*100);i>=100&&(i=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",i),jQuery("#seopress_titles_title_counters_progress").text(i+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",i+"%")})}function sp_meta_desc_counters(){var e=jQuery("#seopress_titles_desc_meta").val(),t=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").after('<div id="seopress_titles_desc_counters_val">/ 160</div>'),e.length>0?(jQuery("#seopress_titles_desc_counters").text(e.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(e))):t.length&&(jQuery("#seopress_titles_desc_counters").text(t.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(t))),e.length>160?jQuery("#seopress_titles_desc_counters").css("color","red"):t.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(e)>940?jQuery("#seopress_titles_desc_pixel").css("color","red"):pixelDesc(t)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),e.length)var s=Math.round(pixelDesc(e)/940*100);else s=Math.round(pixelDesc(t)/940*100);s>=100&&(s=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",s),jQuery("#seopress_titles_desc_counters_progress").text(s+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",s+"%"),jQuery("#seopress_titles_desc_meta, #seopress-tag-single-excerpt").on("keyup paste change click",function(e){var t=jQuery("#seopress_titles_desc_meta").val(),s=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").css("color","inherit"),jQuery("#seopress_titles_desc_pixel").css("color","inherit"),t.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(t)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),0==t.length&&(s.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(s)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red")),t.length>0?(jQuery("#seopress_titles_desc_counters").text(t.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(t))):s.length&&(jQuery("#seopress_titles_desc_counters").text(s.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(s))),t.length>0?(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-description-default").css("display","inline"),jQuery(".snippet-description-custom").css("display","none"),jQuery(".snippet-description").css("display","none")),t.length)var i=Math.round(pixelDesc(t)/940*100);else i=Math.round(pixelDesc(s)/940*100);i>=100&&(i=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",i),jQuery("#seopress_titles_desc_counters_progress").text(i+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",i+"%")}),jQuery("#excerpt, .editor-post-excerpt textarea").keyup(function(e){var t=jQuery("#seopress_titles_desc_meta").val(),s=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(0==t.length&&0==jQuery(".snippet-description-custom").val().length&&(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")),t.length)var i=t.length;else i=s.length;i>=100&&(i=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",i),jQuery("#seopress_titles_desc_counters_progress").text(i+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",i+"%")})}function pixelTitle(e){return inputText=e,font="18px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function pixelDesc(e){return inputText=e,font="14px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function sp_is_valid_url(e){var t=e.match(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g);return null!==t}function sp_social_img(e){jQuery(".snippet-"+e+"-img-alert").css("display","none");var t=jQuery("#seopress_social_"+e+"_img_meta").val();if(""==t)t=jQuery("#seopress_social_"+e+"_img_meta").attr("placeholder");!0===sp_is_valid_url(t)?(t.length>0?(jQuery(".snippet-"+e+"-img-custom img").attr("src",t),jQuery(".snippet-"+e+"-img").css("display","none"),jQuery(".snippet-"+e+"-img-custom").css("display","block"),jQuery(".snippet-"+e+"-img-default").css("display","none")):0==t.length&&(jQuery(".snippet-"+e+"-img-default").css("display","block"),jQuery(".snippet-"+e+"-img-custom").css("display","none"),jQuery(".snippet-"+e+"-img").css("display","none")),t.length>0&&jQuery.get(t).done(function(){var s=t.split(/\#|\?/)[0].split(".").pop().trim(),i=["jpg","jpeg","gif","png"];if(-1==i.indexOf(s))jQuery(".snippet-"+e+"-img-alert.alert1").css("display","block");else{var r=new Image;r.src=t,jQuery(r).one("load",function(){pic_real_width=parseInt(r.width),pic_real_height=parseInt(r.height),"fb"==e?(min_width=200,min_height=200):(min_width=144,min_height=144),(pic_real_width<min_width||pic_real_height<min_height)&&jQuery(".snippet-"+e+"-img-alert.alert2").css("display","block"),ratio_img=(pic_real_width/pic_real_height).toFixed(2),jQuery(".snippet-"+e+"-img-alert.alert4").css("display","block"),jQuery(".snippet-"+e+"-img-alert.alert4 span").text(ratio_img)})}}).fail(function(){jQuery(".snippet-"+e+"-img-alert.alert3").css("display","block")})):jQuery(".snippet-"+e+"-img-alert.alert5").css("display","block")}function sp_social(){jQuery("#seopress_social_fb_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_fb_title_meta").val();t.length>0?(jQuery(".snippet-fb-title-custom").text(e.target.value),jQuery(".snippet-fb-title").css("display","none"),jQuery(".snippet-fb-title-custom").css("display","block"),jQuery(".snippet-fb-title-default").css("display","none")):0==t.length&&(jQuery(".snippet-fb-title-default").css("display","block"),jQuery(".snippet-fb-title-custom").css("display","none"),jQuery(".snippet-fb-title").css("display","none"))}),jQuery("#seopress_social_fb_desc_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_fb_desc_meta").val();t.length>0?(jQuery(".snippet-fb-description-custom").text(e.target.value),jQuery(".snippet-fb-description").css("display","none"),jQuery(".snippet-fb-description-custom").css("display","block"),jQuery(".snippet-fb-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-fb-description-default").css("display","block"),jQuery(".snippet-fb-description-custom").css("display","none"),jQuery(".snippet-fb-description").css("display","none"))}),sp_social_img("fb"),jQuery("#seopress_social_fb_img_meta").on("keyup paste change click",function(){sp_social_img("fb")}),jQuery("#seopress_social_twitter_title_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_twitter_title_meta").val();t.length>0?(jQuery(".snippet-twitter-title-custom").text(e.target.value),jQuery(".snippet-twitter-title").css("display","none"),jQuery(".snippet-twitter-title-custom").css("display","block"),jQuery(".snippet-twitter-title-default").css("display","none")):0==t.length&&(jQuery(".snippet-twitter-title-default").css("display","block"),jQuery(".snippet-twitter-title-custom").css("display","none"),jQuery(".snippet-twitter-title").css("display","none"))}),jQuery("#seopress_social_twitter_desc_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_twitter_desc_meta").val();t.length>0?(jQuery(".snippet-twitter-description-custom").text(e.target.value),jQuery(".snippet-twitter-description").css("display","none"),jQuery(".snippet-twitter-description-custom").css("display","block"),jQuery(".snippet-twitter-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-twitter-description-default").css("display","block"),jQuery(".snippet-twitter-description-custom").css("display","none"),jQuery(".snippet-twitter-description").css("display","none"))}),sp_social_img("twitter"),jQuery("#seopress_social_twitter_img_meta").on("keyup paste change click",function(){sp_social_img("twitter")})}function sp_ca_toggle(){var e=!1;jQuery(".gr-analysis-title .btn-toggle").on("click",function(t){e&&(event.stopImmediatePropagation(),event.preventDefault(),e=!1),jQuery(this).toggleClass("open"),jQuery(this).parent().parent().next(".gr-analysis-content").toggle()}),jQuery("#expand-all").on("click",function(e){e.preventDefault(),jQuery(".gr-analysis-content").show()}),jQuery("#close-all").on("click",function(e){e.preventDefault(),jQuery(".gr-analysis-content").hide()})}jQuery(document).ready(function(e){function t(){e.ajax({method:"GET",url:seopressAjaxRealPreview.seopress_real_preview,data:{action:"seopress_do_real_preview",post_id:e("#seopress-tabs").attr("data_id"),tax_name:e("#seopress-tabs").attr("data_tax"),origin:e("#seopress-tabs").attr("data_origin"),post_type:e("#seopress_launch_analysis").attr("data_post_type"),seopress_analysis_target_kw:e("#seopress_analysis_target_kw_meta").val(),_ajax_nonce:seopressAjaxRealPreview.seopress_nonce},beforeSend:function(){e(".analysis-score p span").fadeIn().text(seopressAjaxRealPreview.i18n.progress),e(".analysis-score p").addClass("loading")},success:function(t){void 0===t.data.og_title?og_title="":og_title=t.data.og_title.values,void 0===t.data.og_desc?og_desc="":og_desc=t.data.og_desc.values,void 0===t.data.og_img?og_img="":og_img=t.data.og_img.values,void 0===t.data.og_url?og_url="":og_url=t.data.og_url.host,void 0===t.data.og_site_name?og_site_name="":og_site_name=t.data.og_site_name.values,void 0===t.data.tw_title?tw_title="":tw_title=t.data.tw_title.values,void 0===t.data.tw_desc?tw_desc="":tw_desc=t.data.tw_desc.values,void 0===t.data.tw_img?tw_img="":tw_img=t.data.tw_img.values,void 0===t.data.meta_robots?meta_robots="":meta_robots=t.data.meta_robots[0];var s={og_title:og_title,og_desc:og_desc,og_img:og_img,og_url:og_url,og_site_name:og_site_name,tw_title:tw_title,tw_desc:tw_desc,tw_img:tw_img};for(var i in s)s.length&&(i=s[i].length>1?s[i].slice(-1)[0]:s[i][0]);meta_robots=meta_robots.toString(),e("#sp-advanced-alert").empty();var r=new RegExp("noindex");r.test(meta_robots)&&e("#sp-advanced-alert").append('<span class="impact high" aria-hidden="true"></span>'),e("#seopress_cpt .google-snippet-preview .snippet-title").html(t.data.title),e("#seopress_cpt .google-snippet-preview .snippet-title-default").html(t.data.title),e("#seopress_titles_title_meta").attr("placeholder",t.data.title),e("#seopress_cpt .google-snippet-preview .snippet-description").html(t.data.meta_desc),e("#seopress_cpt .google-snippet-preview .snippet-description-default").html(t.data.meta_desc),e("#seopress_titles_desc_meta").attr("placeholder",t.data.meta_desc),s.og_title&&(e("#seopress_cpt #seopress_social_fb_title_meta").attr("placeholder",s.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title").html(s.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title-default").html(s.og_title[0])),s.og_desc&&(e("#seopress_cpt #seopress_social_fb_desc_meta").attr("placeholder",s.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description").html(s.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description-default").html(s.og_desc[0])),s.og_img&&(e("#seopress_cpt #seopress_social_fb_img_meta").attr("placeholder",s.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img img").attr("src",s.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img-default img").attr("src",s.og_img[0])),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-url").html(s.og_url),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-site-name").html(s.og_site_name),s.tw_title&&(e("#seopress_cpt #seopress_social_twitter_title_meta").attr("placeholder",s.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title").html(s.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title-default").html(s.tw_title[0])),s.tw_desc&&(e("#seopress_cpt #seopress_social_twitter_desc_meta").attr("placeholder",s.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description").html(s.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description-default").html(s.tw_desc[0])),s.tw_img&&(e("#seopress_cpt #seopress_social_twitter_img_meta").attr("placeholder",s.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img img").attr("src",s.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img-default img").attr("src",s.tw_img[0])),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-url").html(s.og_url),e("#seopress_cpt #seopress_robots_canonical_meta").attr("placeholder",t.data.canonical),e("#seopress-analysis-tabs").load(" #seopress-analysis-tabs-1","",sp_ca_toggle),e(".analysis-score p").removeClass("loading"),e(" #seopress_titles_title_counters_val").remove(),e(" #seopress_titles_desc_counters_val").remove(),sp_titles_counters(),sp_meta_desc_counters(),sp_social()}})}"1"==jQuery("#toggle-preview").attr("data-toggle")?jQuery("#seopress_cpt .google-snippet-preview").addClass("mobile-preview"):jQuery("#seopress_cpt .google-snippet-preview").removeClass("mobile-preview"),jQuery("#toggle-preview").on("click",function(){jQuery("#toggle-preview").attr("data-toggle","1"==jQuery("#toggle-preview").attr("data-toggle")?"0":"1"),jQuery("#seopress_cpt .google-snippet-preview").toggleClass("mobile-preview")}),t(),e("#seopress_launch_analysis").on("click",function(){t()}),sp_ca_toggle()});
|
1 |
+
function sp_titles_counters(){var meta_title_val=jQuery("#seopress_titles_title_meta").val(),meta_title_placeholder=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").after('<div id="seopress_titles_title_counters_val">/ 60</div>'),meta_title_val.length>0?(jQuery("#seopress_titles_title_counters").text(meta_title_val.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(meta_title_val))):meta_title_placeholder.length&&(jQuery("#seopress_titles_title_counters").text(meta_title_placeholder.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(meta_title_placeholder))),meta_title_val.length>60?jQuery("#seopress_titles_title_counters").css("color","red"):meta_title_placeholder.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(meta_title_val)>568?jQuery("#seopress_titles_title_pixel").css("color","red"):pixelTitle(meta_title_placeholder)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),meta_title_val.length)var progress=Math.round(pixelTitle(meta_title_val)/568*100);else var progress=Math.round(pixelTitle(meta_title_placeholder)/568*100);progress>=100&&(progress=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_title_counters_progress").text(progress+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",progress+"%"),jQuery("#seopress_titles_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",(function(e){var meta_title_val=jQuery("#seopress_titles_title_meta").val(),meta_title_placeholder=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").css("color","inherit"),jQuery("#seopress_titles_title_pixel").css("color","inherit"),meta_title_val.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(meta_title_val)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),0==meta_title_val.length&&(meta_title_placeholder.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(meta_title_placeholder)>568&&jQuery("#seopress_titles_title_pixel").css("color","red")),meta_title_val.length>0?(jQuery("#seopress_titles_title_counters").text(meta_title_val.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(meta_title_val))):meta_title_placeholder.length&&(jQuery("#seopress_titles_title_counters").text(meta_title_placeholder.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(meta_title_placeholder))),meta_title_val.length>0?(jQuery(".snippet-title-custom").text(e.target.value),jQuery(".snippet-title").css("display","none"),jQuery(".snippet-title-custom").css("display","block"),jQuery(".snippet-title-default").css("display","none")):0==meta_title_val.length&&(jQuery(".snippet-title-default").css("display","block"),jQuery(".snippet-title-custom").css("display","none"),jQuery(".snippet-title").css("display","none")),meta_title_val.length)var progress=Math.round(pixelTitle(meta_title_val)/568*100);else var progress=Math.round(pixelTitle(meta_title_placeholder)/568*100);progress>=100&&(progress=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_title_counters_progress").text(progress+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",progress+"%")}))}function sp_meta_desc_counters(){var meta_desc_val=jQuery("#seopress_titles_desc_meta").val(),meta_desc_placeholder=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").after('<div id="seopress_titles_desc_counters_val">/ 160</div>'),meta_desc_val.length>0?(jQuery("#seopress_titles_desc_counters").text(meta_desc_val.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(meta_desc_val))):meta_desc_placeholder.length&&(jQuery("#seopress_titles_desc_counters").text(meta_desc_placeholder.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(meta_desc_placeholder))),meta_desc_val.length>160?jQuery("#seopress_titles_desc_counters").css("color","red"):meta_desc_placeholder.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(meta_desc_val)>940?jQuery("#seopress_titles_desc_pixel").css("color","red"):pixelDesc(meta_desc_placeholder)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),meta_desc_val.length)var progress=Math.round(pixelDesc(meta_desc_val)/940*100);else var progress=Math.round(pixelDesc(meta_desc_placeholder)/940*100);progress>=100&&(progress=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_desc_counters_progress").text(progress+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",progress+"%"),jQuery("#seopress_titles_desc_meta, #seopress-tag-single-excerpt").on("keyup paste change click",(function(e){var meta_desc_val=jQuery("#seopress_titles_desc_meta").val(),meta_desc_placeholder=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").css("color","inherit"),jQuery("#seopress_titles_desc_pixel").css("color","inherit"),meta_desc_val.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(meta_desc_val)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),0==meta_desc_val.length&&(meta_desc_placeholder.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(meta_desc_placeholder)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red")),meta_desc_val.length>0?(jQuery("#seopress_titles_desc_counters").text(meta_desc_val.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(meta_desc_val))):meta_desc_placeholder.length&&(jQuery("#seopress_titles_desc_counters").text(meta_desc_placeholder.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(meta_desc_placeholder))),meta_desc_val.length>0?(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")):0==meta_desc_val.length&&(jQuery(".snippet-description-default").css("display","inline"),jQuery(".snippet-description-custom").css("display","none"),jQuery(".snippet-description").css("display","none")),meta_desc_val.length)var progress=Math.round(pixelDesc(meta_desc_val)/940*100);else var progress=Math.round(pixelDesc(meta_desc_placeholder)/940*100);progress>=100&&(progress=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_desc_counters_progress").text(progress+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",progress+"%")})),jQuery("#excerpt, .editor-post-excerpt textarea").keyup((function(e){var meta_desc_val=jQuery("#seopress_titles_desc_meta").val(),meta_desc_placeholder=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(0==meta_desc_val.length&&0==jQuery(".snippet-description-custom").val().length&&(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")),meta_desc_val.length)var progress=meta_desc_val.length;else var progress=meta_desc_placeholder.length;progress>=100&&(progress=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",progress),jQuery("#seopress_titles_desc_counters_progress").text(progress+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",progress+"%")}))}function pixelTitle(e){return inputText=e,font="18px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function pixelDesc(e){return inputText=e,font="14px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function sp_is_valid_url(string){var res;return null!==string.match(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g)}function sp_social_img(social_slug){var meta_img_val;if(jQuery(".snippet-"+social_slug+"-img-alert").css("display","none"),""==(meta_img_val=jQuery("#seopress_social_"+social_slug+"_img_meta").val()))var meta_img_val=jQuery("#seopress_social_"+social_slug+"_img_meta").attr("placeholder");!0===sp_is_valid_url(meta_img_val)?(meta_img_val.length>0?(jQuery(".snippet-"+social_slug+"-img-custom img").attr("src",meta_img_val),jQuery(".snippet-"+social_slug+"-img").css("display","none"),jQuery(".snippet-"+social_slug+"-img-custom").css("display","block"),jQuery(".snippet-"+social_slug+"-img-default").css("display","none")):0==meta_img_val.length&&(jQuery(".snippet-"+social_slug+"-img-default").css("display","block"),jQuery(".snippet-"+social_slug+"-img-custom").css("display","none"),jQuery(".snippet-"+social_slug+"-img").css("display","none")),meta_img_val.length>0&&jQuery.get(meta_img_val).done((function(){var meta_img_filetype=meta_img_val.split(/\#|\?/)[0].split(".").pop().trim(),types;if(-1==["jpg","jpeg","gif","png"].indexOf(meta_img_filetype))jQuery(".snippet-"+social_slug+"-img-alert.alert1").css("display","block");else{var tmp_img=new Image;tmp_img.src=meta_img_val,jQuery(tmp_img).one("load",(function(){pic_real_width=parseInt(tmp_img.width),pic_real_height=parseInt(tmp_img.height),"fb"==social_slug?(min_width=200,min_height=200):(min_width=144,min_height=144),(pic_real_width<min_width||pic_real_height<min_height)&&jQuery(".snippet-"+social_slug+"-img-alert.alert2").css("display","block"),ratio_img=(pic_real_width/pic_real_height).toFixed(2),jQuery(".snippet-"+social_slug+"-img-alert.alert4").css("display","block"),jQuery(".snippet-"+social_slug+"-img-alert.alert4 span").text(ratio_img)}))}})).fail((function(){jQuery(".snippet-"+social_slug+"-img-alert.alert3").css("display","block")}))):jQuery(".snippet-"+social_slug+"-img-alert.alert5").css("display","block")}function sp_social(){jQuery("#seopress_social_fb_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",(function(e){var meta_fb_title_val=jQuery("#seopress_social_fb_title_meta").val();meta_fb_title_val.length>0?(jQuery(".snippet-fb-title-custom").text(e.target.value),jQuery(".snippet-fb-title").css("display","none"),jQuery(".snippet-fb-title-custom").css("display","block"),jQuery(".snippet-fb-title-default").css("display","none")):0==meta_fb_title_val.length&&(jQuery(".snippet-fb-title-default").css("display","block"),jQuery(".snippet-fb-title-custom").css("display","none"),jQuery(".snippet-fb-title").css("display","none"))})),jQuery("#seopress_social_fb_desc_meta").on("keyup paste change click",(function(e){var meta_fb_desc_val=jQuery("#seopress_social_fb_desc_meta").val();meta_fb_desc_val.length>0?(jQuery(".snippet-fb-description-custom").text(e.target.value),jQuery(".snippet-fb-description").css("display","none"),jQuery(".snippet-fb-description-custom").css("display","block"),jQuery(".snippet-fb-description-default").css("display","none")):0==meta_fb_desc_val.length&&(jQuery(".snippet-fb-description-default").css("display","block"),jQuery(".snippet-fb-description-custom").css("display","none"),jQuery(".snippet-fb-description").css("display","none"))})),sp_social_img("fb"),jQuery("#seopress_social_fb_img_meta").on("keyup paste change click",(function(){sp_social_img("fb")})),jQuery("#seopress_social_twitter_title_meta").on("keyup paste change click",(function(e){var meta_fb_title_val=jQuery("#seopress_social_twitter_title_meta").val();meta_fb_title_val.length>0?(jQuery(".snippet-twitter-title-custom").text(e.target.value),jQuery(".snippet-twitter-title").css("display","none"),jQuery(".snippet-twitter-title-custom").css("display","block"),jQuery(".snippet-twitter-title-default").css("display","none")):0==meta_fb_title_val.length&&(jQuery(".snippet-twitter-title-default").css("display","block"),jQuery(".snippet-twitter-title-custom").css("display","none"),jQuery(".snippet-twitter-title").css("display","none"))})),jQuery("#seopress_social_twitter_desc_meta").on("keyup paste change click",(function(e){var meta_fb_desc_val=jQuery("#seopress_social_twitter_desc_meta").val();meta_fb_desc_val.length>0?(jQuery(".snippet-twitter-description-custom").text(e.target.value),jQuery(".snippet-twitter-description").css("display","none"),jQuery(".snippet-twitter-description-custom").css("display","block"),jQuery(".snippet-twitter-description-default").css("display","none")):0==meta_fb_desc_val.length&&(jQuery(".snippet-twitter-description-default").css("display","block"),jQuery(".snippet-twitter-description-custom").css("display","none"),jQuery(".snippet-twitter-description").css("display","none"))})),sp_social_img("twitter"),jQuery("#seopress_social_twitter_img_meta").on("keyup paste change click",(function(){sp_social_img("twitter")}))}function sp_ca_toggle(){var stop=!1;jQuery(".gr-analysis-title .btn-toggle").on("click",(function(e){stop&&(event.stopImmediatePropagation(),event.preventDefault(),stop=!1),jQuery(this).toggleClass("open"),jQuery(this).parent().parent().next(".gr-analysis-content").toggle()})),jQuery("#expand-all").on("click",(function(e){e.preventDefault(),jQuery(".gr-analysis-content").show()})),jQuery("#close-all").on("click",(function(e){e.preventDefault(),jQuery(".gr-analysis-content").hide()}))}jQuery(document).ready((function(e){function s(){e.ajax({method:"GET",url:seopressAjaxRealPreview.seopress_real_preview,data:{action:"seopress_do_real_preview",post_id:e("#seopress-tabs").attr("data_id"),tax_name:e("#seopress-tabs").attr("data_tax"),origin:e("#seopress-tabs").attr("data_origin"),post_type:e("#seopress_launch_analysis").attr("data_post_type"),seopress_analysis_target_kw:e("#seopress_analysis_target_kw_meta").val(),_ajax_nonce:seopressAjaxRealPreview.seopress_nonce},beforeSend:function(){e(".analysis-score p span").fadeIn().text(seopressAjaxRealPreview.i18n.progress),e(".analysis-score p").addClass("loading")},success:function(s){void 0===s.data.og_title?og_title="":og_title=s.data.og_title.values,void 0===s.data.og_desc?og_desc="":og_desc=s.data.og_desc.values,void 0===s.data.og_img?og_img="":og_img=s.data.og_img.values,void 0===s.data.og_url?og_url="":og_url=s.data.og_url.host,void 0===s.data.og_site_name?og_site_name="":og_site_name=s.data.og_site_name.values,void 0===s.data.tw_title?tw_title="":tw_title=s.data.tw_title.values,void 0===s.data.tw_desc?tw_desc="":tw_desc=s.data.tw_desc.values,void 0===s.data.tw_img?tw_img="":tw_img=s.data.tw_img.values,void 0===s.data.meta_robots?meta_robots="":meta_robots=s.data.meta_robots[0];var data_arr={og_title:og_title,og_desc:og_desc,og_img:og_img,og_url:og_url,og_site_name:og_site_name,tw_title:tw_title,tw_desc:tw_desc,tw_img:tw_img},if_noindex;for(var key in data_arr)data_arr.length&&(key=data_arr[key].length>1?data_arr[key].slice(-1)[0]:data_arr[key][0]);meta_robots=meta_robots.toString(),e("#sp-advanced-alert").empty(),new RegExp("noindex").test(meta_robots)&&e("#sp-advanced-alert").append('<span class="impact high" aria-hidden="true"></span>'),e("#seopress_cpt .google-snippet-preview .snippet-title").html(s.data.title),e("#seopress_cpt .google-snippet-preview .snippet-title-default").html(s.data.title),e("#seopress_titles_title_meta").attr("placeholder",s.data.title),e("#seopress_cpt .google-snippet-preview .snippet-description").html(s.data.meta_desc),e("#seopress_cpt .google-snippet-preview .snippet-description-default").html(s.data.meta_desc),e("#seopress_titles_desc_meta").attr("placeholder",s.data.meta_desc),data_arr.og_title&&(e("#seopress_cpt #seopress_social_fb_title_meta").attr("placeholder",data_arr.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title").html(data_arr.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title-default").html(data_arr.og_title[0])),data_arr.og_desc&&(e("#seopress_cpt #seopress_social_fb_desc_meta").attr("placeholder",data_arr.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description").html(data_arr.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description-default").html(data_arr.og_desc[0])),data_arr.og_img&&(e("#seopress_cpt #seopress_social_fb_img_meta").attr("placeholder",data_arr.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img img").attr("src",data_arr.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img-default img").attr("src",data_arr.og_img[0])),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-url").html(data_arr.og_url),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-site-name").html(data_arr.og_site_name),data_arr.tw_title&&(e("#seopress_cpt #seopress_social_twitter_title_meta").attr("placeholder",data_arr.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title").html(data_arr.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title-default").html(data_arr.tw_title[0])),data_arr.tw_desc&&(e("#seopress_cpt #seopress_social_twitter_desc_meta").attr("placeholder",data_arr.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description").html(data_arr.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description-default").html(data_arr.tw_desc[0])),data_arr.tw_img&&(e("#seopress_cpt #seopress_social_twitter_img_meta").attr("placeholder",data_arr.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img img").attr("src",data_arr.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img-default img").attr("src",data_arr.tw_img[0])),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-url").html(data_arr.og_url),e("#seopress_cpt #seopress_robots_canonical_meta").attr("placeholder",s.data.canonical),e("#seopress-analysis-tabs").load(" #seopress-analysis-tabs-1","",sp_ca_toggle),e(".analysis-score p").removeClass("loading"),e(" #seopress_titles_title_counters_val").remove(),e(" #seopress_titles_desc_counters_val").remove(),sp_titles_counters(),sp_meta_desc_counters(),sp_social()}})}"1"==jQuery("#toggle-preview").attr("data-toggle")?jQuery("#seopress_cpt .google-snippet-preview").addClass("mobile-preview"):jQuery("#seopress_cpt .google-snippet-preview").removeClass("mobile-preview"),jQuery("#toggle-preview").on("click",(function(){jQuery("#toggle-preview").attr("data-toggle","1"==jQuery("#toggle-preview").attr("data-toggle")?"0":"1"),jQuery("#seopress_cpt .google-snippet-preview").toggleClass("mobile-preview")})),s(),e("#seopress_launch_analysis").on("click",(function(){s()})),sp_ca_toggle()}));
|
@@ -7,6 +7,7 @@ jQuery(document).ready(function($) {
|
|
7 |
"notice-get-started",
|
8 |
"notice-wizard",
|
9 |
"notice-insights-wizard",
|
|
|
10 |
"notice-divide-comments",
|
11 |
"notice-review",
|
12 |
"notice-trailingslash",
|
7 |
"notice-get-started",
|
8 |
"notice-wizard",
|
9 |
"notice-insights-wizard",
|
10 |
+
"notice-tagdiv",
|
11 |
"notice-divide-comments",
|
12 |
"notice-review",
|
13 |
"notice-trailingslash",
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(e){e.trim(e("#seopress-notifications-center").html())||e("#seopress-notifications-center").remove();const t=["notice-get-started","notice-wizard","notice-insights-wizard","notice-divide-comments","notice-review","notice-trailingslash","notice-posts-number","notice-rss-use-excerpt","notice-search-console","notice-google-business","notice-ssl","notice-title-tag","notice-enfold","notice-themes","notice-page-builders","notice-go-pro"];t.forEach(function(t){e("#"+t).on("click",function(){e("#"+t).attr("data-notice","1"==e("#"+t).attr("data-notice")?"0":"1"),e.ajax({method:"POST",url:seopressAjaxHideNotices.seopress_hide_notices,data:{action:"seopress_hide_notices",notice:t,notice_value:e("#"+t).attr("data-notice"),_ajax_nonce:seopressAjaxHideNotices.seopress_nonce},success:function(s){e("#seopress-notice-save").css("display","block"),e("#seopress-notice-save .html").html("Notice successfully removed"),e("#"+t+"-alert").fadeOut(),e("#seopress-notice-save").delay(3500).fadeOut()}})})});const s=["titles","xml-sitemap","social","google-analytics","advanced","local-business","woocommerce","edd","dublin-core","rich-snippets","breadcrumbs","robots","news","404","bot","rewrite","white-label"];s.forEach(function(t){e("#toggle-"+t).on("click",function(){e("#toggle-"+t).attr("data-toggle","1"==e("#toggle-"+t).attr("data-toggle")?"0":"1"),e.ajax({method:"POST",url:seopressAjaxToggleFeatures.seopress_toggle_features,data:{action:"seopress_toggle_features",feature:"toggle-"+t,feature_value:e("#toggle-"+t).attr("data-toggle"),_ajax_nonce:seopressAjaxToggleFeatures.seopress_nonce},success:function(s){e("#seopress-notice-save").css("display","block"),e("#seopress-notice-save .html").html(t+" "+seopressAjaxToggleFeatures.i18n),e("#"+t+"-state").toggleClass("feature-state-on"),e("#"+t+"-state-default").toggleClass("feature-state-off"),e("#seopress-notice-save").delay(3500).fadeOut()}})})})});
|
1 |
+
jQuery(document).ready(function(e){e.trim(e("#seopress-notifications-center").html())||e("#seopress-notifications-center").remove();const t=["notice-get-started","notice-wizard","notice-insights-wizard","notice-tagdiv","notice-divide-comments","notice-review","notice-trailingslash","notice-posts-number","notice-rss-use-excerpt","notice-search-console","notice-google-business","notice-ssl","notice-title-tag","notice-enfold","notice-themes","notice-page-builders","notice-go-pro"];t.forEach(function(t){e("#"+t).on("click",function(){e("#"+t).attr("data-notice","1"==e("#"+t).attr("data-notice")?"0":"1"),e.ajax({method:"POST",url:seopressAjaxHideNotices.seopress_hide_notices,data:{action:"seopress_hide_notices",notice:t,notice_value:e("#"+t).attr("data-notice"),_ajax_nonce:seopressAjaxHideNotices.seopress_nonce},success:function(s){e("#seopress-notice-save").css("display","block"),e("#seopress-notice-save .html").html("Notice successfully removed"),e("#"+t+"-alert").fadeOut(),e("#seopress-notice-save").delay(3500).fadeOut()}})})});const s=["titles","xml-sitemap","social","google-analytics","advanced","local-business","woocommerce","edd","dublin-core","rich-snippets","breadcrumbs","robots","news","404","bot","rewrite","white-label"];s.forEach(function(t){e("#toggle-"+t).on("click",function(){e("#toggle-"+t).attr("data-toggle","1"==e("#toggle-"+t).attr("data-toggle")?"0":"1"),e.ajax({method:"POST",url:seopressAjaxToggleFeatures.seopress_toggle_features,data:{action:"seopress_toggle_features",feature:"toggle-"+t,feature_value:e("#toggle-"+t).attr("data-toggle"),_ajax_nonce:seopressAjaxToggleFeatures.seopress_nonce},success:function(s){e("#seopress-notice-save").css("display","block"),e("#seopress-notice-save .html").html(t+" "+seopressAjaxToggleFeatures.i18n),e("#"+t+"-state").toggleClass("feature-state-on"),e("#"+t+"-state-default").toggleClass("feature-state-off"),e("#seopress-notice-save").delay(3500).fadeOut()}})})})});
|
@@ -6,10 +6,7 @@ jQuery(document).ready(function($){
|
|
6 |
var url_field = $(this).parent().find('input[type=text]');
|
7 |
// Extend the wp.media object
|
8 |
mediaUploader = wp.media.frames.file_frame = wp.media({
|
9 |
-
|
10 |
-
button: {
|
11 |
-
text: 'Choose Image'
|
12 |
-
}, multiple: false });
|
13 |
|
14 |
// When a file is selected, grab the URL and set it as the text field's value
|
15 |
mediaUploader.on('select', function() {
|
@@ -37,10 +34,7 @@ jQuery(document).ready(function($){
|
|
37 |
}
|
38 |
// Extend the wp.media object
|
39 |
mediaUploader = wp.media.frames.file_frame = wp.media({
|
40 |
-
|
41 |
-
button: {
|
42 |
-
text: 'Choose Image'
|
43 |
-
}, multiple: false });
|
44 |
|
45 |
// When a file is selected, grab the URL and set it as the text field's value
|
46 |
mediaUploader.on('select', function() {
|
6 |
var url_field = $(this).parent().find('input[type=text]');
|
7 |
// Extend the wp.media object
|
8 |
mediaUploader = wp.media.frames.file_frame = wp.media({
|
9 |
+
multiple: false });
|
|
|
|
|
|
|
10 |
|
11 |
// When a file is selected, grab the URL and set it as the text field's value
|
12 |
mediaUploader.on('select', function() {
|
34 |
}
|
35 |
// Extend the wp.media object
|
36 |
mediaUploader = wp.media.frames.file_frame = wp.media({
|
37 |
+
multiple: false });
|
|
|
|
|
|
|
38 |
|
39 |
// When a file is selected, grab the URL and set it as the text field's value
|
40 |
mediaUploader.on('select', function() {
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(e){var t;e(".button.seopress_social_facebook_img_cpt").click(function(
|
1 |
+
jQuery(document).ready(function(e){var t;e(".button.seopress_social_facebook_img_cpt").click(function(i){i.preventDefault();var s=e(this).parent().find("input[type=text]");t=wp.media.frames.file_frame=wp.media({multiple:!1}),t.on("select",function(){attachment=t.state().get("selection").first().toJSON(),e(s).val(attachment.url)}),t.open()});const i=["#seopress_social_knowledge_img","#seopress_social_twitter_img","#seopress_social_fb_img"];i.forEach(function(t){var i;e(t+"_upload").click(function(s){s.preventDefault(),i?i.open():(i=wp.media.frames.file_frame=wp.media({multiple:!1}),i.on("select",function(){attachment=i.state().get("selection").first().toJSON(),e(t+"_meta").val(attachment.url),"#seopress_social_fb_img"==t&&"undefined"!=typeof sp_social_img&&sp_social_img("fb"),"#seopress_social_twitter_img"==t&&"undefined"!=typeof sp_social_img&&sp_social_img("twitter")}),i.open())})})});
|
@@ -23,7 +23,7 @@ jQuery(document).ready(function($) {
|
|
23 |
}).trigger('change');
|
24 |
|
25 |
//Import from SEO plugins
|
26 |
-
const seo_plugins = ["yoast","aio","seo-framework","rk","squirrly","seo-ultimate","wp-meta-seo","premium-seo-pack","metadata"]
|
27 |
seo_plugins.forEach(function (item) {
|
28 |
$('#seopress-'+item+'-migrate').on('click', function(e) {
|
29 |
e.preventDefault();
|
@@ -69,6 +69,11 @@ jQuery(document).ready(function($) {
|
|
69 |
action = 'seopress_premium_seo_pack_migration';
|
70 |
_ajax_nonce = seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_nonce;
|
71 |
break;
|
|
|
|
|
|
|
|
|
|
|
72 |
case 'seopress-metadata-migrate':
|
73 |
url = seopressAjaxMigrate.seopress_metadata_csv.seopress_metadata_export;
|
74 |
action = 'seopress_metadata_export';
|
23 |
}).trigger('change');
|
24 |
|
25 |
//Import from SEO plugins
|
26 |
+
const seo_plugins = ["yoast","aio","seo-framework","rk","squirrly","seo-ultimate","wp-meta-seo","premium-seo-pack","wpseo","metadata"]
|
27 |
seo_plugins.forEach(function (item) {
|
28 |
$('#seopress-'+item+'-migrate').on('click', function(e) {
|
29 |
e.preventDefault();
|
69 |
action = 'seopress_premium_seo_pack_migration';
|
70 |
_ajax_nonce = seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_nonce;
|
71 |
break;
|
72 |
+
case 'seopress-wpseo-migrate':
|
73 |
+
url = seopressAjaxMigrate.seopress_wpseo_migrate.seopress_wpseo_migration;
|
74 |
+
action = 'seopress_wpseo_migration';
|
75 |
+
_ajax_nonce = seopressAjaxMigrate.seopress_wpseo_migrate.seopress_nonce;
|
76 |
+
break;
|
77 |
case 'seopress-metadata-migrate':
|
78 |
url = seopressAjaxMigrate.seopress_metadata_csv.seopress_metadata_export;
|
79 |
action = 'seopress_metadata_export';
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(e){e("#select-wizard-redirects, #select-wizard-import").change(function(s){s.preventDefault();var r=e(this).val();"none"==r?e("#select-wizard-redirects option, #select-wizard-import option").each(function(){var s=e(this).val();e("#"+s).hide()}):(e("#select-wizard-redirects option:selected, #select-wizard-import option:selected").each(function(){var s=e(this).val();e("#"+s).show()}),e("#select-wizard-redirects option:not(:selected), #select-wizard-import option:not(:selected)").each(function(){var s=e(this).val();e("#"+s).hide()}))}).trigger("change");const s=["yoast","aio","seo-framework","rk","squirrly","seo-ultimate","wp-meta-seo","premium-seo-pack","metadata"];s.forEach(function(s){e("#seopress-"+s+"-migrate").on("click",function(e){switch(e.preventDefault(),id=s,e.target.id){case"seopress-yoast-migrate":url=seopressAjaxMigrate.seopress_yoast_migrate.seopress_yoast_migration,action="seopress_yoast_migration",_ajax_nonce=seopressAjaxMigrate.seopress_yoast_migrate.seopress_nonce;break;case"seopress-aio-migrate":url=seopressAjaxMigrate.seopress_aio_migrate.seopress_aio_migration,action="seopress_aio_migration",_ajax_nonce=seopressAjaxMigrate.seopress_aio_migrate.seopress_nonce;break;case"seopress-seo-framework-migrate":url=seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_seo_framework_migration,action="seopress_seo_framework_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_nonce;break;case"seopress-rk-migrate":url=seopressAjaxMigrate.seopress_rk_migrate.seopress_rk_migration,action="seopress_rk_migration",_ajax_nonce=seopressAjaxMigrate.seopress_rk_migrate.seopress_nonce;break;case"seopress-squirrly-migrate":url=seopressAjaxMigrate.seopress_squirrly_migrate.seopress_squirrly_migration,action="seopress_squirrly_migration",_ajax_nonce=seopressAjaxMigrate.seopress_squirrly_migrate.seopress_nonce;break;case"seopress-seo-ultimate-migrate":url=seopressAjaxMigrate.seopress_seo_ultimate_migrate.seopress_seo_ultimate_migration,action="seopress_seo_ultimate_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seo_ultimate_migrate.seopress_nonce;break;case"seopress-wp-meta-seo-migrate":url=seopressAjaxMigrate.seopress_wp_meta_seo_migrate.seopress_wp_meta_seo_migration,action="seopress_wp_meta_seo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_wp_meta_seo_migrate.seopress_nonce;break;case"seopress-premium-seo-pack-migrate":url=seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_premium_seo_pack_migration,action="seopress_premium_seo_pack_migration",_ajax_nonce=seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_nonce;break;case"seopress-metadata-migrate":url=seopressAjaxMigrate.seopress_metadata_csv.seopress_metadata_export,action="seopress_metadata_export",_ajax_nonce=seopressAjaxMigrate.seopress_metadata_csv.seopress_nonce}self.process_offset(0,self,url,action,_ajax_nonce,id)}),process_offset=function(s,r,a,o,t,i){i18n=seopressAjaxMigrate.i18n.migration,"metadata"==i&&(i18n=seopressAjaxMigrate.i18n.export),e.ajax({method:"POST",url:a,data:{action:o,offset:s,_ajax_nonce:t},success:function(s){"done"==s.data.offset?(e("#seopress-"+i+"-migrate").removeAttr("disabled"),e(".spinner").css("visibility","hidden"),e("#"+i+"-migration-tool .log").html(i18n),""!=s.data.url&&e(location).attr("href",s.data.url)):r.process_offset(parseInt(s.data.offset),r,a,o,t,i)}})},e("#seopress-"+s+"-migrate").on("click",function(){e(this).attr("disabled","disabled"),e("#"+s+"-migration-tool .spinner").css("visibility","visible"),e("#"+s+"-migration-tool .spinner").css("float","none"),e("#"+s+"-migration-tool .log").html("")})})});
|
1 |
+
jQuery(document).ready(function(e){e("#select-wizard-redirects, #select-wizard-import").change(function(s){s.preventDefault();var r=e(this).val();"none"==r?e("#select-wizard-redirects option, #select-wizard-import option").each(function(){var s=e(this).val();e("#"+s).hide()}):(e("#select-wizard-redirects option:selected, #select-wizard-import option:selected").each(function(){var s=e(this).val();e("#"+s).show()}),e("#select-wizard-redirects option:not(:selected), #select-wizard-import option:not(:selected)").each(function(){var s=e(this).val();e("#"+s).hide()}))}).trigger("change");const s=["yoast","aio","seo-framework","rk","squirrly","seo-ultimate","wp-meta-seo","premium-seo-pack","wpseo","metadata"];s.forEach(function(s){e("#seopress-"+s+"-migrate").on("click",function(e){switch(e.preventDefault(),id=s,e.target.id){case"seopress-yoast-migrate":url=seopressAjaxMigrate.seopress_yoast_migrate.seopress_yoast_migration,action="seopress_yoast_migration",_ajax_nonce=seopressAjaxMigrate.seopress_yoast_migrate.seopress_nonce;break;case"seopress-aio-migrate":url=seopressAjaxMigrate.seopress_aio_migrate.seopress_aio_migration,action="seopress_aio_migration",_ajax_nonce=seopressAjaxMigrate.seopress_aio_migrate.seopress_nonce;break;case"seopress-seo-framework-migrate":url=seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_seo_framework_migration,action="seopress_seo_framework_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_nonce;break;case"seopress-rk-migrate":url=seopressAjaxMigrate.seopress_rk_migrate.seopress_rk_migration,action="seopress_rk_migration",_ajax_nonce=seopressAjaxMigrate.seopress_rk_migrate.seopress_nonce;break;case"seopress-squirrly-migrate":url=seopressAjaxMigrate.seopress_squirrly_migrate.seopress_squirrly_migration,action="seopress_squirrly_migration",_ajax_nonce=seopressAjaxMigrate.seopress_squirrly_migrate.seopress_nonce;break;case"seopress-seo-ultimate-migrate":url=seopressAjaxMigrate.seopress_seo_ultimate_migrate.seopress_seo_ultimate_migration,action="seopress_seo_ultimate_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seo_ultimate_migrate.seopress_nonce;break;case"seopress-wp-meta-seo-migrate":url=seopressAjaxMigrate.seopress_wp_meta_seo_migrate.seopress_wp_meta_seo_migration,action="seopress_wp_meta_seo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_wp_meta_seo_migrate.seopress_nonce;break;case"seopress-premium-seo-pack-migrate":url=seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_premium_seo_pack_migration,action="seopress_premium_seo_pack_migration",_ajax_nonce=seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_nonce;break;case"seopress-wpseo-migrate":url=seopressAjaxMigrate.seopress_wpseo_migrate.seopress_wpseo_migration,action="seopress_wpseo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_wpseo_migrate.seopress_nonce;break;case"seopress-metadata-migrate":url=seopressAjaxMigrate.seopress_metadata_csv.seopress_metadata_export,action="seopress_metadata_export",_ajax_nonce=seopressAjaxMigrate.seopress_metadata_csv.seopress_nonce}self.process_offset(0,self,url,action,_ajax_nonce,id)}),process_offset=function(s,r,a,o,t,i){i18n=seopressAjaxMigrate.i18n.migration,"metadata"==i&&(i18n=seopressAjaxMigrate.i18n.export),e.ajax({method:"POST",url:a,data:{action:o,offset:s,_ajax_nonce:t},success:function(s){"done"==s.data.offset?(e("#seopress-"+i+"-migrate").removeAttr("disabled"),e(".spinner").css("visibility","hidden"),e("#"+i+"-migration-tool .log").html(i18n),""!=s.data.url&&e(location).attr("href",s.data.url)):r.process_offset(parseInt(s.data.offset),r,a,o,t,i)}})},e("#seopress-"+s+"-migrate").on("click",function(){e(this).attr("disabled","disabled"),e("#"+s+"-migration-tool .spinner").css("visibility","visible"),e("#"+s+"-migration-tool .spinner").css("float","none"),e("#"+s+"-migration-tool .log").html("")})})});
|
@@ -14,10 +14,7 @@ jQuery(document).ready(function($) {
|
|
14 |
thumb = $(this).prev();
|
15 |
// Extend the wp.media object
|
16 |
mediaUploader = wp.media.frames.file_frame = wp.media({
|
17 |
-
|
18 |
-
button: {
|
19 |
-
text: 'Choose Image'
|
20 |
-
}, multiple: false });
|
21 |
|
22 |
// When a file is selected, grab the URL and set it as the text field's value
|
23 |
mediaUploader.on('select', function() {
|
14 |
thumb = $(this).prev();
|
15 |
// Extend the wp.media object
|
16 |
mediaUploader = wp.media.frames.file_frame = wp.media({
|
17 |
+
multiple: false });
|
|
|
|
|
|
|
18 |
|
19 |
// When a file is selected, grab the URL and set it as the text field's value
|
20 |
mediaUploader.on('select', function() {
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(e){function t(){var t;e(".seopress_video_thumbnail_upload").click(function(i){i.preventDefault(),$btn=e(this),t?t.open():(e(this).prev(),t=wp.media.frames.file_frame=wp.media({
|
1 |
+
jQuery(document).ready(function(e){function t(){var t;e(".seopress_video_thumbnail_upload").click(function(i){i.preventDefault(),$btn=e(this),t?t.open():(e(this).prev(),t=wp.media.frames.file_frame=wp.media({multiple:!1}),t.on("select",function(){var e=t.state().get("selection").first().toJSON();$btn.prev().val(e.url)}),t.open())})}function i(){e("#wrap-videos .video").accordion({collapsible:!0,active:!1,heightStyle:"panel"})}t();var a=e("#wrap-videos .video:last").clone(),r=!1;e("#wrap-videos .video h3").click(function(e){r&&(e.stopImmediatePropagation(),e.preventDefault(),r=!1)}),i();var o=e("#wrap-videos").attr("data-count");e("#add-video").click(function(){o++;a.clone().find(":input").each(function(){var t=this.id,i=this.name,a=this.id.replace(/^(\w+)\[.*?\]/,"$1["+o+"]");e(this).attr("name",i.replace(/^(\w+)\[.*?\]/,"$1["+o+"]")),e(this).hasClass("seopress_video_thumbnail_upload")||e(this).attr("value",""),e(this).is(":checkbox")?(e(this).parent().attr("for",t.replace(/^(\w+)\[.*?\]/,"$1["+o+"]")),e(this).parent().attr("id",i.replace(/^(\w+)\[.*?\]/,"$1["+o+"]"))):e(this).hasClass("seopress_video_thumbnail_upload")||(e(this).prev().attr("for",t.replace(/^(\w+)\[.*?\]/,"$1["+o+"]")),e(this).prev().attr("id",i.replace(/^(\w+)\[.*?\]/,"$1["+o+"]"))),this.id=a}).end().appendTo("#wrap-videos");return i(),e("#wrap-videos .video").accordion("destroy"),i(),e("[id^=__wp-uploader-id-]").each(function(){e(this).remove()}),t(),!1}),e("#wrap-videos").on("click",".remove-video",function(){return e(this).fadeOut(300,function(){return e(this).parent().parent().parent().parent().remove(),!1}),!1})});
|
@@ -87,6 +87,15 @@ jQuery(document).ready(function($) {
|
|
87 |
$('#seopress-tag-sep-404').click(function() {
|
88 |
$("#seopress_titles_archives_404_title").val(sp_get_field_length($("#seopress_titles_archives_404_title")) + $('#seopress-tag-sep-404').attr('data-tag'));
|
89 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
$('.more-tags').click(function() {
|
91 |
$('#contextual-help-link').click();
|
92 |
});
|
87 |
$('#seopress-tag-sep-404').click(function() {
|
88 |
$("#seopress_titles_archives_404_title").val(sp_get_field_length($("#seopress_titles_archives_404_title")) + $('#seopress-tag-sep-404').attr('data-tag'));
|
89 |
});
|
90 |
+
$('#seopress-tag-post-title-bd-groups').click(function() {
|
91 |
+
$("#seopress_titles_bp_groups_title").val(sp_get_field_length($("#seopress_titles_bp_groups_title")) + $('#seopress-tag-post-title-bd-groups').attr('data-tag'));
|
92 |
+
});
|
93 |
+
$('#seopress-tag-sep-bd-groups').click(function() {
|
94 |
+
$("#seopress_titles_bp_groups_title").val(sp_get_field_length($("#seopress_titles_bp_groups_title")) + $('#seopress-tag-sep-bd-groups').attr('data-tag'));
|
95 |
+
});
|
96 |
+
$('#seopress-tag-site-title-bd-groups').click(function() {
|
97 |
+
$("#seopress_titles_bp_groups_title").val(sp_get_field_length($("#seopress_titles_bp_groups_title")) + $('#seopress-tag-site-title-bd-groups').attr('data-tag'));
|
98 |
+
});
|
99 |
$('.more-tags').click(function() {
|
100 |
$('#contextual-help-link').click();
|
101 |
});
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(s){function t(s){return s.val().length>0?meta=s.val()+" ":meta=s.val(),meta}var e=s(location).attr("hash").split("#tab=")[1];if(void 0!==e)s("#"+e+"-tab").addClass("nav-tab-active"),s("#"+e).addClass("active");else if("undefined"!=typeof sessionStorage){var a=sessionStorage.getItem("seopress_titles_tab");a?(s("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a+"-tab").addClass("nav-tab-active"),s("#"+a).addClass("active")):(s("#tab_seopress_titles_home-tab").addClass("nav-tab-active"),s("#tab_seopress_titles_home").addClass("active"))}s("#seopress-tabs").find("a.nav-tab").click(function(t){t.preventDefault();var e=s(this).attr("href").split("#tab=")[1];s("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#"+e+"-tab").addClass("nav-tab-active"),sessionStorage.setItem("seopress_titles_tab",e),s("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+e).addClass("active")}),s("#seopress-tag-site-title").click(function(){s("#seopress_titles_home_site_title").val(t(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-title").attr("data-tag"))}),s("#seopress-tag-site-title-author").click(function(){s("#seopress_titles_archive_post_author").val(t(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-site-title-author").attr("data-tag"))}),s("#seopress-tag-site-title-date").click(function(){s("#seopress_titles_archives_date_title").val(t(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-site-title-date").attr("data-tag"))}),s("#seopress-tag-site-title-search").click(function(){s("#seopress_titles_archives_search_title").val(t(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-site-title-search").attr("data-tag"))}),s("#seopress-tag-site-title-404").click(function(){s("#seopress_titles_archives_404_title").val(t(s("#seopress_titles_archives_404_title"))+s("#seopress-tag-site-title-404").attr("data-tag"))}),s("#seopress-tag-site-desc").click(function(){s("#seopress_titles_home_site_title").val(t(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-desc").attr("data-tag"))}),s("#seopress-tag-meta-desc").click(function(){s("#seopress_titles_home_site_desc").val(t(s("#seopress_titles_home_site_desc"))+s("#seopress-tag-meta-desc").attr("data-tag"))}),s("#seopress-tag-post-author").click(function(){s("#seopress_titles_archive_post_author").val(t(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-post-author").attr("data-tag"))}),s("#seopress-tag-archive-date").click(function(){s("#seopress_titles_archives_date_title").val(t(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-archive-date").attr("data-tag"))}),s("#seopress-tag-search-keywords").click(function(){s("#seopress_titles_archives_search_title").val(t(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-search-keywords").attr("data-tag"))}),s("#seopress-tag-site-sep").click(function(){s("#seopress_titles_home_site_title").val(t(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-sep").attr("data-tag"))}),s("#seopress-tag-sep-author").click(function(){s("#seopress_titles_archive_post_author").val(t(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-sep-author").attr("data-tag"))}),s("#seopress-tag-sep-date").click(function(){s("#seopress_titles_archives_date_title").val(t(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-sep-date").attr("data-tag"))}),s("#seopress-tag-sep-search").click(function(){s("#seopress_titles_archives_search_title").val(t(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-sep-search").attr("data-tag"))}),s("#seopress-tag-sep-404").click(function(){s("#seopress_titles_archives_404_title").val(t(s("#seopress_titles_archives_404_title"))+s("#seopress-tag-sep-404").attr("data-tag"))}),s(".more-tags").click(function(){s("#contextual-help-link").click()})});
|
1 |
+
jQuery(document).ready(function(s){function t(s){return s.val().length>0?meta=s.val()+" ":meta=s.val(),meta}var e=s(location).attr("hash").split("#tab=")[1];if(void 0!==e)s("#"+e+"-tab").addClass("nav-tab-active"),s("#"+e).addClass("active");else if("undefined"!=typeof sessionStorage){var a=sessionStorage.getItem("seopress_titles_tab");a?(s("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a+"-tab").addClass("nav-tab-active"),s("#"+a).addClass("active")):(s("#tab_seopress_titles_home-tab").addClass("nav-tab-active"),s("#tab_seopress_titles_home").addClass("active"))}s("#seopress-tabs").find("a.nav-tab").click(function(t){t.preventDefault();var e=s(this).attr("href").split("#tab=")[1];s("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#"+e+"-tab").addClass("nav-tab-active"),sessionStorage.setItem("seopress_titles_tab",e),s("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+e).addClass("active")}),s("#seopress-tag-site-title").click(function(){s("#seopress_titles_home_site_title").val(t(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-title").attr("data-tag"))}),s("#seopress-tag-site-title-author").click(function(){s("#seopress_titles_archive_post_author").val(t(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-site-title-author").attr("data-tag"))}),s("#seopress-tag-site-title-date").click(function(){s("#seopress_titles_archives_date_title").val(t(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-site-title-date").attr("data-tag"))}),s("#seopress-tag-site-title-search").click(function(){s("#seopress_titles_archives_search_title").val(t(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-site-title-search").attr("data-tag"))}),s("#seopress-tag-site-title-404").click(function(){s("#seopress_titles_archives_404_title").val(t(s("#seopress_titles_archives_404_title"))+s("#seopress-tag-site-title-404").attr("data-tag"))}),s("#seopress-tag-site-desc").click(function(){s("#seopress_titles_home_site_title").val(t(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-desc").attr("data-tag"))}),s("#seopress-tag-meta-desc").click(function(){s("#seopress_titles_home_site_desc").val(t(s("#seopress_titles_home_site_desc"))+s("#seopress-tag-meta-desc").attr("data-tag"))}),s("#seopress-tag-post-author").click(function(){s("#seopress_titles_archive_post_author").val(t(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-post-author").attr("data-tag"))}),s("#seopress-tag-archive-date").click(function(){s("#seopress_titles_archives_date_title").val(t(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-archive-date").attr("data-tag"))}),s("#seopress-tag-search-keywords").click(function(){s("#seopress_titles_archives_search_title").val(t(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-search-keywords").attr("data-tag"))}),s("#seopress-tag-site-sep").click(function(){s("#seopress_titles_home_site_title").val(t(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-sep").attr("data-tag"))}),s("#seopress-tag-sep-author").click(function(){s("#seopress_titles_archive_post_author").val(t(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-sep-author").attr("data-tag"))}),s("#seopress-tag-sep-date").click(function(){s("#seopress_titles_archives_date_title").val(t(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-sep-date").attr("data-tag"))}),s("#seopress-tag-sep-search").click(function(){s("#seopress_titles_archives_search_title").val(t(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-sep-search").attr("data-tag"))}),s("#seopress-tag-sep-404").click(function(){s("#seopress_titles_archives_404_title").val(t(s("#seopress_titles_archives_404_title"))+s("#seopress-tag-sep-404").attr("data-tag"))}),s("#seopress-tag-post-title-bd-groups").click(function(){s("#seopress_titles_bp_groups_title").val(t(s("#seopress_titles_bp_groups_title"))+s("#seopress-tag-post-title-bd-groups").attr("data-tag"))}),s("#seopress-tag-sep-bd-groups").click(function(){s("#seopress_titles_bp_groups_title").val(t(s("#seopress_titles_bp_groups_title"))+s("#seopress-tag-sep-bd-groups").attr("data-tag"))}),s("#seopress-tag-site-title-bd-groups").click(function(){s("#seopress_titles_bp_groups_title").val(t(s("#seopress_titles_bp_groups_title"))+s("#seopress-tag-site-title-bd-groups").attr("data-tag"))}),s(".more-tags").click(function(){s("#contextual-help-link").click()})});
|
@@ -1,7 +1,8 @@
|
|
1 |
-
Great people who contributed to this plugin
|
2 |
|
3 |
Developers:
|
4 |
- Benjamin Denis: contact@seopress.org / @wp_seopress
|
|
|
5 |
- Julio Potier: @juliobox
|
6 |
- Mickael Gris: @mgris
|
7 |
|
@@ -28,20 +29,25 @@ Integrations (https://www.seopress.org/integrations/):
|
|
28 |
- The WPML team
|
29 |
- The Weglot team
|
30 |
- The TranslatePress team
|
|
|
31 |
|
32 |
Translators:
|
33 |
-
-
|
34 |
-
-
|
35 |
-
- Spanish
|
36 |
-
- German
|
37 |
-
-
|
38 |
-
-
|
39 |
-
-
|
40 |
-
-
|
41 |
-
-
|
42 |
-
-
|
43 |
-
-
|
44 |
-
-
|
45 |
-
-
|
46 |
-
-
|
47 |
-
-
|
|
|
|
|
|
|
|
1 |
+
Great people who contributed to this plugin:
|
2 |
|
3 |
Developers:
|
4 |
- Benjamin Denis: contact@seopress.org / @wp_seopress
|
5 |
+
- Thomas Deneulin: @tdeneulin
|
6 |
- Julio Potier: @juliobox
|
7 |
- Mickael Gris: @mgris
|
8 |
|
29 |
- The WPML team
|
30 |
- The Weglot team
|
31 |
- The TranslatePress team
|
32 |
+
- The Elementor team
|
33 |
|
34 |
Translators:
|
35 |
+
- 🇺🇸 English (UK) (English (UK)) - professional translation</li>
|
36 |
+
- 🇫🇷 Français (French (France)) - professional translation</li>
|
37 |
+
- 🇪🇸 Español (Spanish (Spain)) - professional translation</li>
|
38 |
+
- 🇩🇪 Deutsch (German) - professional translation</li>
|
39 |
+
- 🇳🇱 Nederlands (Dutch) - professional translation</li>
|
40 |
+
- 🇷🇺 Русский (Russian) - professional translation</li>
|
41 |
+
- 🇯🇵 日本語 (Japanese) - professional translation</li>
|
42 |
+
- 🇮🇳 हिन्दी (Hindi) - professional translation</li>
|
43 |
+
- 🇨🇳 中文 (Chinese (China)) - professional translation</li>
|
44 |
+
- 🇧🇷 Português do Brasil (Portuguese (Brazil)) - professional translation</li>
|
45 |
+
- 🇬🇷 Ελληνικά (Greek)</li>
|
46 |
+
- 🇧🇬 Български (Bulgarian)</li>
|
47 |
+
- 🇮🇩 Bahasa Indonesia (Indonesian)</li>
|
48 |
+
- 🇮🇹 Italiano (Italian)</li>
|
49 |
+
- 🇻🇳 Loki Web (Vietnamese)</li>
|
50 |
+
- 🇷🇴 Română (Romanian)</li>
|
51 |
+
- 🇸🇦 العربية (Arabic)</li>
|
52 |
+
- 🇮🇷 فارسی (Persian)</li>
|
53 |
+
- 🇹🇷 Türkçe (Turkish)</li>
|
@@ -60,7 +60,7 @@ echo '<div id="seopress-tabs" data_id="'.$current_id.'" data_origin="'.$origin.'
|
|
60 |
$seo_tabs['advanced-tab'] = '<li><a href="#tabs-2"><span class="dashicons dashicons-admin-generic"></span>'. __( 'Advanced', 'wp-seopress' ) .'<span id="sp-advanced-alert"></span></a></li>';
|
61 |
$seo_tabs['social-tab'] = '<li><a href="#tabs-3"><span class="dashicons dashicons-share"></span>'. __( 'Social', 'wp-seopress' ) .'</a></li>';
|
62 |
}
|
63 |
-
|
64 |
$seo_tabs['redirect-tab'] = '<li><a href="#tabs-4"><span class="dashicons dashicons-admin-links"></span>'. __( 'Redirection', 'wp-seopress' ) .'</a></li>';
|
65 |
|
66 |
if (is_plugin_active( 'wp-seopress-pro/seopress-pro.php' )) {
|
60 |
$seo_tabs['advanced-tab'] = '<li><a href="#tabs-2"><span class="dashicons dashicons-admin-generic"></span>'. __( 'Advanced', 'wp-seopress' ) .'<span id="sp-advanced-alert"></span></a></li>';
|
61 |
$seo_tabs['social-tab'] = '<li><a href="#tabs-3"><span class="dashicons dashicons-share"></span>'. __( 'Social', 'wp-seopress' ) .'</a></li>';
|
62 |
}
|
63 |
+
|
64 |
$seo_tabs['redirect-tab'] = '<li><a href="#tabs-4"><span class="dashicons dashicons-admin-links"></span>'. __( 'Redirection', 'wp-seopress' ) .'</a></li>';
|
65 |
|
66 |
if (is_plugin_active( 'wp-seopress-pro/seopress-pro.php' )) {
|
@@ -139,6 +139,108 @@
|
|
139 |
seopress_notification($args);
|
140 |
}
|
141 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
if (get_theme_support('title-tag') !='1') {
|
143 |
function seopress_get_hidden_notices_title_tag_option() {
|
144 |
$seopress_get_hidden_notices_title_tag_option = get_option("seopress_notices");
|
@@ -180,6 +282,7 @@
|
|
180 |
'seo-ultimate/seo-ultimate.php' => 'SEO Ultimate',
|
181 |
'wp-meta-seo/wp-meta-seo.php' => 'WP Meta SEO',
|
182 |
'premium-seo-pack/plugin.php' => 'Premium SEO Pack',
|
|
|
183 |
);
|
184 |
|
185 |
foreach($seo_plugins as $key => $value) {
|
139 |
seopress_notification($args);
|
140 |
}
|
141 |
}
|
142 |
+
//DIVI SEO options conflict
|
143 |
+
$theme = wp_get_theme();
|
144 |
+
if ( 'Divi' == $theme->template || 'Divi' == $theme->parent_theme ) {
|
145 |
+
$divi_options = get_option('et_divi');
|
146 |
+
if (!empty($divi_options)) {
|
147 |
+
if ($divi_options['divi_seo_home_title'] =='on' ||
|
148 |
+
$divi_options['divi_seo_home_description'] =='on' ||
|
149 |
+
$divi_options['divi_seo_home_keywords'] =='on' ||
|
150 |
+
$divi_options['divi_seo_home_canonical'] =='on' ||
|
151 |
+
$divi_options['divi_seo_single_title'] =='on' ||
|
152 |
+
$divi_options['divi_seo_single_description'] =='on' ||
|
153 |
+
$divi_options['divi_seo_single_keywords'] =='on' ||
|
154 |
+
$divi_options['divi_seo_single_canonical'] =='on' ||
|
155 |
+
$divi_options['divi_seo_index_canonical'] =='on' ||
|
156 |
+
$divi_options['divi_seo_index_description'] =='on'
|
157 |
+
) {
|
158 |
+
$args = [
|
159 |
+
'id' => 'notice-divi-seo',
|
160 |
+
'title' => __('We noticed that some SEO DIVI options are enabled!','wp-seopress'),
|
161 |
+
'desc' => __('To avoid any SEO conflicts, please disable every SEO options from <strong>DIVI theme options page, SEO tab</strong>.','wp-seopress'),
|
162 |
+
'impact' => [
|
163 |
+
'high' => __('High impact','wp-seopress')
|
164 |
+
],
|
165 |
+
'link' => [
|
166 |
+
'en' => admin_url( 'admin.php?page=et_divi_options#seo-1' ),
|
167 |
+
'title' => __('Fix this!','wp-seopress'),
|
168 |
+
'external' => false
|
169 |
+
],
|
170 |
+
'icon' => 'dashicons-admin-plugins',
|
171 |
+
'deleteable' => false
|
172 |
+
];
|
173 |
+
seopress_notification($args);
|
174 |
+
}
|
175 |
+
}
|
176 |
+
}
|
177 |
+
if (substr(get_option( 'permalink_structure' ), -1) !='/' && seopress_advanced_advanced_trailingslash_option() =='') {
|
178 |
+
$args = [
|
179 |
+
'id' => 'notice-permalinks',
|
180 |
+
'title' => __('Your permalinks doesn\'t have a trailingslash','wp-seopress'),
|
181 |
+
'desc' => __('To avoid any SEO issues, we recommend you to activate the "<strong>Disable trailing slash for metas</strong>" option from our <strong>Advanced settings page</strong>. Do not forget to clear your cache if necessary.','wp-seopress'),
|
182 |
+
'impact' => [
|
183 |
+
'high' => __('High impact','wp-seopress')
|
184 |
+
],
|
185 |
+
'link' => [
|
186 |
+
'en' => admin_url( 'admin.php?page=seopress-advanced#tab=tab_seopress_advanced_advanced' ),
|
187 |
+
'title' => __('Fix this!','wp-seopress'),
|
188 |
+
'external' => false
|
189 |
+
],
|
190 |
+
'icon' => 'dashicons-admin-links',
|
191 |
+
'deleteable' => false
|
192 |
+
];
|
193 |
+
seopress_notification($args);
|
194 |
+
}
|
195 |
+
if (substr(get_option( 'permalink_structure' ), -1) =='/' && seopress_advanced_advanced_trailingslash_option() =='1') {
|
196 |
+
$args = [
|
197 |
+
'id' => 'notice-permalinks',
|
198 |
+
'title' => __('Your permalinks have a trailingslash','wp-seopress'),
|
199 |
+
'desc' => __('To avoid any SEO issues, we recommend you to de-activate the "<strong>Disable trailing slash for metas</strong>" option from our <strong>Advanced settings page</strong>. Do not forget to clear your cache if necessary.','wp-seopress'),
|
200 |
+
'impact' => [
|
201 |
+
'high' => __('High impact','wp-seopress')
|
202 |
+
],
|
203 |
+
'link' => [
|
204 |
+
'en' => admin_url( 'admin.php?page=seopress-advanced#tab=tab_seopress_advanced_advanced' ),
|
205 |
+
'title' => __('Fix this!','wp-seopress'),
|
206 |
+
'external' => false
|
207 |
+
],
|
208 |
+
'icon' => 'dashicons-admin-links',
|
209 |
+
'deleteable' => false
|
210 |
+
];
|
211 |
+
seopress_notification($args);
|
212 |
+
}
|
213 |
+
if (is_plugin_active('td-composer/td-composer.php')) {
|
214 |
+
function seopress_get_hidden_notices_tagdiv_option() {
|
215 |
+
$seopress_get_hidden_notices_tagdiv_option = get_option("seopress_notices");
|
216 |
+
if ( !empty ( $seopress_get_hidden_notices_tagdiv_option ) ) {
|
217 |
+
foreach ($seopress_get_hidden_notices_tagdiv_option as $key => $seopress_get_hidden_notices_tagdiv_value)
|
218 |
+
$options[$key] = $seopress_get_hidden_notices_tagdiv_value;
|
219 |
+
if (isset($seopress_get_hidden_notices_tagdiv_option['notice-tagdiv'])) {
|
220 |
+
return $seopress_get_hidden_notices_tagdiv_option['notice-tagdiv'];
|
221 |
+
}
|
222 |
+
}
|
223 |
+
}
|
224 |
+
if(seopress_get_hidden_notices_tagdiv_option() !='1') {
|
225 |
+
$args = [
|
226 |
+
'id' => 'notice-tagdiv',
|
227 |
+
'title' => __('TagDiv Composer plugin doesn\'t use <strong>add_theme_support(\'title-tag\');</strong>','wp-seopress'),
|
228 |
+
'desc' => __('Fix this compatibility issue to allow SEOPress generates the correct meta titles.','wp-seopress'),
|
229 |
+
'impact' => [
|
230 |
+
'high' => __('High impact','wp-seopress')
|
231 |
+
],
|
232 |
+
'link' => [
|
233 |
+
'fr' => 'https://www.seopress.org/fr/support/guides/corriger-erreur-compatibilite-extension-tagdiv-composer-newspaper/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress',
|
234 |
+
'en' => 'https://www.seopress.org/support/guides/fix-compatibility-issue-tagdiv-composer-plugin-newspaper-theme/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress',
|
235 |
+
'title' => __('Fix this!','wp-seopress'),
|
236 |
+
'external' => true
|
237 |
+
],
|
238 |
+
'icon' => 'dashicons-admin-customizer',
|
239 |
+
'deleteable' => true
|
240 |
+
];
|
241 |
+
seopress_notification($args);
|
242 |
+
}
|
243 |
+
}
|
244 |
if (get_theme_support('title-tag') !='1') {
|
245 |
function seopress_get_hidden_notices_title_tag_option() {
|
246 |
$seopress_get_hidden_notices_title_tag_option = get_option("seopress_notices");
|
282 |
'seo-ultimate/seo-ultimate.php' => 'SEO Ultimate',
|
283 |
'wp-meta-seo/wp-meta-seo.php' => 'WP Meta SEO',
|
284 |
'premium-seo-pack/plugin.php' => 'Premium SEO Pack',
|
285 |
+
'wpseo/wpseo.php' => 'wpSEO',
|
286 |
);
|
287 |
|
288 |
foreach($seo_plugins as $key => $value) {
|
@@ -92,6 +92,10 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
92 |
'seopress_nonce' => wp_create_nonce('seopress_premium_seo_pack_migrate_nonce'),
|
93 |
'seopress_premium_seo_pack_migration' => admin_url( 'admin-ajax.php'),
|
94 |
],
|
|
|
|
|
|
|
|
|
95 |
'seopress_metadata_csv' => [
|
96 |
'seopress_nonce' => wp_create_nonce('seopress_export_csv_metadata_nonce'),
|
97 |
'seopress_metadata_export' => admin_url( 'admin-ajax.php'),
|
@@ -284,6 +288,7 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
284 |
<option value="seo-ultimate-migration-tool"><?php _e('SEO Ultimate','wp-seopress'); ?></option>
|
285 |
<option value="wp-meta-seo-migration-tool"><?php _e('WP Meta SEO','wp-seopress'); ?></option>
|
286 |
<option value="premium-seo-pack-migration-tool"><?php _e('Premium SEO Pack','wp-seopress'); ?></option>
|
|
|
287 |
</select>
|
288 |
|
289 |
<br><br>
|
@@ -432,6 +437,28 @@ class SEOPRESS_Admin_Setup_Wizard {
|
|
432 |
<span class="spinner"></span>
|
433 |
<div class="log"></div>
|
434 |
</div><!-- .postbox -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
435 |
</div>
|
436 |
|
437 |
<p class="seopress-setup-actions step">
|
92 |
'seopress_nonce' => wp_create_nonce('seopress_premium_seo_pack_migrate_nonce'),
|
93 |
'seopress_premium_seo_pack_migration' => admin_url( 'admin-ajax.php'),
|
94 |
],
|
95 |
+
'seopress_wpseo_migrate' => [
|
96 |
+
'seopress_nonce' => wp_create_nonce('seopress_wpseo_migrate_nonce'),
|
97 |
+
'seopress_wpseo_migration' => admin_url( 'admin-ajax.php'),
|
98 |
+
],
|
99 |
'seopress_metadata_csv' => [
|
100 |
'seopress_nonce' => wp_create_nonce('seopress_export_csv_metadata_nonce'),
|
101 |
'seopress_metadata_export' => admin_url( 'admin-ajax.php'),
|
288 |
<option value="seo-ultimate-migration-tool"><?php _e('SEO Ultimate','wp-seopress'); ?></option>
|
289 |
<option value="wp-meta-seo-migration-tool"><?php _e('WP Meta SEO','wp-seopress'); ?></option>
|
290 |
<option value="premium-seo-pack-migration-tool"><?php _e('Premium SEO Pack','wp-seopress'); ?></option>
|
291 |
+
<option value="wpseo-migration-tool"><?php _e('wpSEO','wp-seopress'); ?></option>
|
292 |
</select>
|
293 |
|
294 |
<br><br>
|
437 |
<span class="spinner"></span>
|
438 |
<div class="log"></div>
|
439 |
</div><!-- .postbox -->
|
440 |
+
|
441 |
+
<!-- wpSEO import tool -->
|
442 |
+
<div id="wpseo-migration-tool" class="postbox section-tool seopress-wizard-services">
|
443 |
+
<div class="inside">
|
444 |
+
<h3><span><?php _e( 'Import posts and terms metadata from wpSEO', 'wp-seopress' ); ?></span></h3>
|
445 |
+
<p><?php _e( 'By clicking Migrate, we\'ll import:', 'wp-seopress' ); ?></p>
|
446 |
+
<ul>
|
447 |
+
<li><?php _e('Title tags','wp-seopress'); ?></li>
|
448 |
+
<li><?php _e('Meta description','wp-seopress'); ?></li>
|
449 |
+
<li><?php _e('Facebook Open Graph tags (title, description and image thumbnail)','wp-seopress'); ?></li>
|
450 |
+
<li><?php _e('Twitter tags (title, description and image thumbnail)','wp-seopress'); ?></li>
|
451 |
+
<li><?php _e('Meta Robots (noindex, nofollow)','wp-seopress'); ?></li>
|
452 |
+
<li><?php _e('Canonical URL','wp-seopress'); ?></li>
|
453 |
+
<li><?php _e('Redirect URL','wp-seopress'); ?></li>
|
454 |
+
<li><?php _e('Main keyword','wp-seopress'); ?></li>
|
455 |
+
</ul>
|
456 |
+
<p style="color:red"><span class="dashicons dashicons-info"></span> <?php _e( '<strong>WARNING:</strong> Migration will update / delete all SEOPress posts metadata. Some dynamic variables will not be interpreted. We do NOT delete any wpSEO data.', 'wp-seopress' ); ?></p>
|
457 |
+
<button id="seopress-wpseo-migrate" type="button" class="button"><?php _e('Migrate now','wp-seopress'); ?></button>
|
458 |
+
<span class="spinner"></span>
|
459 |
+
<div class="log"></div>
|
460 |
+
</div><!-- .inside -->
|
461 |
+
</div><!-- .postbox -->
|
462 |
</div>
|
463 |
|
464 |
<p class="seopress-setup-actions step">
|
@@ -31,6 +31,11 @@ class seopress_options
|
|
31 |
//Enable features==========================================================================
|
32 |
$seopress_toggle_options = get_option('seopress_toggle');
|
33 |
|
|
|
|
|
|
|
|
|
|
|
34 |
$seopress_toggle_options['toggle-titles'] = '1';
|
35 |
$seopress_toggle_options['toggle-xml-sitemap'] = '1';
|
36 |
$seopress_toggle_options['toggle-social'] = '1';
|
@@ -47,10 +52,18 @@ class seopress_options
|
|
47 |
$seopress_toggle_options['toggle-404'] = '1';
|
48 |
$seopress_toggle_options['toggle-bot'] = '1';
|
49 |
|
50 |
-
|
|
|
|
|
|
|
51 |
|
52 |
//Titles & metas===========================================================================
|
53 |
$seopress_titles_options = get_option('seopress_titles_option_name');
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
//Site Title
|
56 |
$seopress_titles_options['seopress_titles_home_site_title'] = '%%sitetitle%%';
|
@@ -71,18 +84,18 @@ class seopress_options
|
|
71 |
foreach (seopress_get_taxonomies() as $seopress_tax_key => $seopress_tax_value) {
|
72 |
//Title
|
73 |
if ($seopress_tax_key =='category') {
|
74 |
-
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['title'] = '%%_category_title%% %%current_pagination%% %%sep%% %%sitetitle%%';
|
75 |
} elseif ($seopress_tax_key =='post_tag') {
|
76 |
-
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['title'] = '%%tag_title%% %%current_pagination%% %%sep%% %%sitetitle%%';
|
77 |
} else {
|
78 |
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['title'] = '%%term_title%% %%current_pagination%% %%sep%% %%sitetitle%%';
|
79 |
}
|
80 |
|
81 |
//Desc
|
82 |
if ($seopress_tax_key =='category') {
|
83 |
-
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['description'] = '%%_category_description%%';
|
84 |
} elseif ($seopress_tax_key =='post_tag') {
|
85 |
-
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['description'] = '%%tag_description%%';
|
86 |
} else {
|
87 |
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['description'] = '%%term_description%%';
|
88 |
}
|
@@ -104,6 +117,9 @@ class seopress_options
|
|
104 |
$seopress_titles_options['seopress_titles_archives_date_title'] = '%%archive_date%% %%sep%% %%sitetitle%%';
|
105 |
$seopress_titles_options['seopress_titles_archives_date_noindex'] = '1';
|
106 |
|
|
|
|
|
|
|
107 |
//Search
|
108 |
$seopress_titles_options['seopress_titles_archives_search_title'] = '%%search_keywords%% %%sep%% %%sitetitle%%';
|
109 |
|
@@ -113,11 +129,19 @@ class seopress_options
|
|
113 |
//Link rel prev/next
|
114 |
$seopress_titles_options['seopress_titles_paged_rel'] = '1';
|
115 |
|
116 |
-
|
|
|
|
|
|
|
117 |
|
118 |
//XML Sitemap==============================================================================
|
119 |
$seopress_xml_sitemap_options = get_option('seopress_xml_sitemap_option_name');
|
120 |
|
|
|
|
|
|
|
|
|
|
|
121 |
$seopress_xml_sitemap_options['seopress_xml_sitemap_general_enable'] = '1';
|
122 |
$seopress_xml_sitemap_options['seopress_xml_sitemap_img_enable'] = '1';
|
123 |
|
@@ -141,11 +165,11 @@ class seopress_options
|
|
141 |
$args = array(
|
142 |
'show_ui' => true,
|
143 |
'public' => true,
|
144 |
-
|
145 |
);
|
146 |
$output = 'objects'; // or objects
|
147 |
$operator = 'and'; // 'and' or 'or'
|
148 |
-
$taxonomies = get_taxonomies( $args, $output, $operator );
|
149 |
|
150 |
foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) {
|
151 |
if ($seopress_tax_key =='category' || $seopress_tax_key =='post_tag') {
|
@@ -153,25 +177,45 @@ class seopress_options
|
|
153 |
}
|
154 |
}
|
155 |
|
156 |
-
|
|
|
|
|
|
|
157 |
|
158 |
//Social===================================================================================
|
159 |
$seopress_social_options = get_option('seopress_social_option_name');
|
160 |
|
|
|
|
|
|
|
|
|
|
|
161 |
$seopress_social_options['seopress_social_facebook_og'] = '1';
|
162 |
$seopress_social_options['seopress_social_twitter_card'] = '1';
|
163 |
|
164 |
-
|
|
|
|
|
|
|
165 |
|
166 |
//Advanced=================================================================================
|
167 |
$seopress_advanced_option_name = get_option('seopress_advanced_option_name');
|
168 |
|
|
|
|
|
|
|
|
|
|
|
169 |
$seopress_advanced_option_name['seopress_advanced_advanced_attachments'] = '1';
|
170 |
$seopress_advanced_option_name['seopress_advanced_advanced_tax_desc_editor'] = '1';
|
171 |
$seopress_advanced_option_name['seopress_advanced_appearance_title_col'] = '1';
|
172 |
$seopress_advanced_option_name['seopress_advanced_appearance_meta_desc_col'] = '1';
|
|
|
173 |
|
174 |
-
|
|
|
|
|
|
|
175 |
}
|
176 |
|
177 |
/**
|
@@ -207,6 +251,7 @@ class seopress_options
|
|
207 |
<li><span>'.__('%%post_excerpt%% (alias %%excerpt%%)','wp-seopress').'</span>'.__('Post excerpt','wp-seopress').'</li>
|
208 |
<li><span>'.__('%%post_content%%','wp-seopress').'</span>'.__('Post content / product long description','wp-seopress').'</li>
|
209 |
<li><span>'.__('%%post_thumbnail_url%%','wp-seopress').'</span>'.__('Post thumbnail URL','wp-seopress').'</li>
|
|
|
210 |
<li><span>'.__('%%post_date%% (alias %%date%%)','wp-seopress').'</span>'.__('Post date','wp-seopress').'</li>
|
211 |
<li><span>'.__('%%post_modified_date%%','wp-seopress').'</span>'.__('Last modified post date','wp-seopress').'</li>
|
212 |
<li><span>'.__('%%post_author%%','wp-seopress').'</span>'.__('Post author','wp-seopress').'</li>
|
@@ -760,6 +805,7 @@ class seopress_options
|
|
760 |
<option value="seo-ultimate-migration-tool"><?php _e('SEO Ultimate','wp-seopress'); ?></option>
|
761 |
<option value="wp-meta-seo-migration-tool"><?php _e('WP Meta SEO','wp-seopress'); ?></option>
|
762 |
<option value="premium-seo-pack-migration-tool"><?php _e('Premium SEO Pack','wp-seopress'); ?></option>
|
|
|
763 |
</select>
|
764 |
<br><br>
|
765 |
</div>
|
@@ -922,6 +968,28 @@ class seopress_options
|
|
922 |
<div class="log"></div>
|
923 |
</div><!-- .inside -->
|
924 |
</div><!-- .postbox -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
</div>
|
926 |
<div class="seopress-tab <?php if ($current_tab == 'tab_seopress_tool_redirects') { echo 'active'; } ?>" id="tab_seopress_tool_redirects">
|
927 |
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?>
|
@@ -946,7 +1014,7 @@ class seopress_options
|
|
946 |
<li><?php _e( 'URL to redirect in absolute,','wp-seopress'); ?></li>
|
947 |
<li><?php _e( 'type of redirection (301, 302 or 307, 410, 451),','wp-seopress'); ?></li>
|
948 |
<li><?php _e( 'Yes to enable the redirect (leave it empty to disable the redirect)','wp-seopress'); ?></li>
|
949 |
-
<li><?php _e( 'the query parameter without the quotes ("exact_match" = Exact match with all parameters, "without_param" = Exclude all parameters or "with_ignored_param" = Exclude all parameters and pass them to the redirection),', 'wp-seopress' );
|
950 |
<li><?php _e( 'and, the last parameter, the counter (optional).','wp-seopress'); ?></li>
|
951 |
</ul>
|
952 |
</p>
|
@@ -955,6 +1023,8 @@ class seopress_options
|
|
955 |
<?php _e('Download a CSV example','wp-seopress'); ?>
|
956 |
</a>
|
957 |
</p>
|
|
|
|
|
958 |
<form method="post" enctype="multipart/form-data">
|
959 |
<p>
|
960 |
<input id="import_sep_comma" name="import_sep" type="radio" value="comma"/>
|
@@ -1253,6 +1323,30 @@ class seopress_options
|
|
1253 |
'seopress_setting_section_titles_single' // Section
|
1254 |
);
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
//Archives SECTION=========================================================================
|
1257 |
add_settings_section(
|
1258 |
'seopress_setting_section_titles_archives', // ID
|
@@ -2407,7 +2501,7 @@ class seopress_options
|
|
2407 |
|
2408 |
add_settings_field(
|
2409 |
'seopress_advanced_advanced_category_url', // ID
|
2410 |
-
|
2411 |
array( $this, 'seopress_advanced_advanced_category_url_callback' ), // Callback
|
2412 |
'seopress-settings-admin-advanced-advanced', // Page
|
2413 |
'seopress_setting_section_advanced_advanced' // Section
|
@@ -2415,7 +2509,7 @@ class seopress_options
|
|
2415 |
|
2416 |
add_settings_field(
|
2417 |
'seopress_advanced_advanced_trailingslash', // ID
|
2418 |
-
|
2419 |
array( $this, 'seopress_advanced_advanced_trailingslash_callback' ), // Callback
|
2420 |
'seopress-settings-admin-advanced-advanced', // Page
|
2421 |
'seopress_setting_section_advanced_advanced' // Section
|
@@ -2859,7 +2953,7 @@ class seopress_options
|
|
2859 |
if (current($server_software) =='nginx' ) { //IF NGINX
|
2860 |
echo '<p>'.__('Your server uses NGINX. If XML Sitemaps doesn\'t work properly, you need to add this rule to your configuration:', 'wp-seopress').'</p><br>';
|
2861 |
echo '<pre style="margin:0;padding:10px;font-weight: bold;background:#F3F3F3;display:inline-block;width: 100%">
|
2862 |
-
location ~ ([^/]*)sitemap(.*)\.x(m|s)l$ {
|
2863 |
## SEOPress
|
2864 |
rewrite ^/sitemaps\.xml$ /index.php?seopress_sitemap=1 last;
|
2865 |
rewrite ^/sitemaps/news.xml$ /index.php?seopress_news=$1 last;
|
@@ -2872,21 +2966,25 @@ class seopress_options
|
|
2872 |
}
|
2873 |
}
|
2874 |
echo '<p>'.__('Noindex content will not be displayed in Sitemaps.', 'wp-seopress').'</p>';
|
|
|
2875 |
|
2876 |
if (function_exists('seopress_get_locale') && seopress_get_locale() =='fr') {
|
2877 |
$seopress_docs_link['sitemaps']['error']['blank'] = 'https://www.seopress.org/fr/support/guides/xml-sitemap-page-blanche/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
2878 |
$seopress_docs_link['sitemaps']['error']['404'] = 'https://www.seopress.org/fr/support/guides/plan-de-site-xml-retourne-erreur-404/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
|
|
2879 |
} else {
|
2880 |
$seopress_docs_link['sitemaps']['error']['blank'] = 'https://www.seopress.org/support/guides/xml-sitemap-blank-page/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
2881 |
$seopress_docs_link['sitemaps']['error']['404'] = 'https://www.seopress.org/support/guides/xml-sitemap-returns-404-error/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
|
|
2882 |
}
|
2883 |
|
2884 |
echo '<p class="seopress-help"><span class="dashicons dashicons-external"></span><a href="'.$seopress_docs_link['sitemaps']['error']['blank'].'" target="_blank">'.__('Blank sitemap?', 'wp-seopress').'</a> - ';
|
2885 |
-
echo '<span class="dashicons dashicons-external"></span><a href="'.$seopress_docs_link['sitemaps']['error']['404'].'" target="_blank">'.__('404 error?', 'wp-seopress').'</a
|
|
|
2886 |
|
2887 |
echo '<a href="'.get_option( 'home' ).'/sitemaps.xml" target="_blank" class="button"><span class="dashicons dashicons-visibility"></span>'.__('View your sitemap','wp-seopress').'</a>';
|
2888 |
echo ' ';
|
2889 |
-
echo '<a href="https://www.google.com/ping?sitemap='.get_option( 'home' ).'/sitemaps.xml/" target="_blank" class="button"><span class="dashicons dashicons-share-alt2"></span>'.__('Ping Google manually','wp-seopress').'</a>';
|
2890 |
echo ' ';
|
2891 |
echo '<button type="button" id="seopress-flush-permalinks" class="button"><span class="dashicons dashicons-admin-links"></span>'.__('Flush permalinks','wp-seopress').'</button>';
|
2892 |
echo '<span class="spinner"></span>';
|
@@ -2934,7 +3032,7 @@ class seopress_options
|
|
2934 |
<li>'.__('First image of your post content','wp-seopress').'</li>
|
2935 |
<li>'.__('Global OG Image set in SEO > Social > Open Graph','wp-seopress').'</li>
|
2936 |
</ol>';
|
2937 |
-
}
|
2938 |
|
2939 |
public function print_section_info_social_twitter() {
|
2940 |
print __('<p>Manage your Twitter card.</p>', 'wp-seopress');
|
@@ -3021,7 +3119,7 @@ class seopress_options
|
|
3021 |
printf(
|
3022 |
'<input type="text" id="seopress_titles_home_site_title" name="seopress_titles_option_name[seopress_titles_home_site_title]" placeholder="'.esc_html__('My awesome website','wp-seopress').'" aria-label="'.__('Site title','wp-seopress').'" value="%s"/>',
|
3023 |
esc_html( $this->options['seopress_titles_home_site_title'])
|
3024 |
-
);
|
3025 |
echo '<div class="wrap-tags"><span id="seopress-tag-site-title" data-tag="%%sitetitle%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Site Title','wp-seopress').'</span>';
|
3026 |
echo '<span id="seopress-tag-site-sep" data-tag="%%sep%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Separator','wp-seopress').'</span>';
|
3027 |
echo '<span id="seopress-tag-site-desc" data-tag="%%tagline%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Tagline','wp-seopress').'</span>';
|
@@ -3052,7 +3150,7 @@ class seopress_options
|
|
3052 |
//Single on/off CPT
|
3053 |
echo '<div class="seopress_wrap_single_cpt">';
|
3054 |
|
3055 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3056 |
|
3057 |
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['enable']) ? $options['seopress_titles_single_titles'][$seopress_cpt_key]['enable'] : NULL;
|
3058 |
|
@@ -3152,9 +3250,9 @@ class seopress_options
|
|
3152 |
//Single No-Index CPT
|
3153 |
echo '<div class="seopress_wrap_single_cpt">';
|
3154 |
|
3155 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3156 |
|
3157 |
-
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['noindex']);
|
3158 |
|
3159 |
echo '<input id="seopress_titles_single_cpt_noindex['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_single_titles]['.$seopress_cpt_key.'][noindex]" type="checkbox"';
|
3160 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3171,9 +3269,9 @@ class seopress_options
|
|
3171 |
//Single No-Follow CPT
|
3172 |
echo '<div class="seopress_wrap_single_cpt">';
|
3173 |
|
3174 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3175 |
|
3176 |
-
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['nofollow']);
|
3177 |
|
3178 |
echo '<input id="seopress_titles_single_cpt_nofollow['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_single_titles]['.$seopress_cpt_key.'][nofollow]" type="checkbox"';
|
3179 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3190,9 +3288,9 @@ class seopress_options
|
|
3190 |
//Single Published / modified date CPT
|
3191 |
echo '<div class="seopress_wrap_single_cpt">';
|
3192 |
|
3193 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3194 |
|
3195 |
-
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['date']);
|
3196 |
|
3197 |
echo '<input id="seopress_titles_single_cpt_date['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_single_titles]['.$seopress_cpt_key.'][date]" type="checkbox"';
|
3198 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3209,9 +3307,9 @@ class seopress_options
|
|
3209 |
//Single meta thumbnail CPT
|
3210 |
echo '<div class="seopress_wrap_single_cpt">';
|
3211 |
|
3212 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3213 |
|
3214 |
-
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['thumb_gcs']);
|
3215 |
|
3216 |
echo '<input id="seopress_titles_single_cpt_thumb_gcs['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_single_titles]['.$seopress_cpt_key.'][thumb_gcs]" type="checkbox"';
|
3217 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3227,6 +3325,61 @@ class seopress_options
|
|
3227 |
}
|
3228 |
}
|
3229 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3230 |
//Taxonomies
|
3231 |
public function seopress_titles_tax_titles_callback()
|
3232 |
{
|
@@ -3237,7 +3390,7 @@ class seopress_options
|
|
3237 |
//Single on/off Tax
|
3238 |
echo '<div class="seopress_wrap_tax">';
|
3239 |
|
3240 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3241 |
|
3242 |
$check = isset($options['seopress_titles_tax_titles'][$seopress_tax_key]['enable']) ? $options['seopress_titles_tax_titles'][$seopress_tax_key]['enable'] : NULL;
|
3243 |
|
@@ -3305,11 +3458,11 @@ class seopress_options
|
|
3305 |
|
3306 |
printf(
|
3307 |
'<input type="text" id="seopress_titles_tax_titles_'.$seopress_tax_key.'" name="seopress_titles_option_name[seopress_titles_tax_titles]['.$seopress_tax_key.'][title]" value="%s"/>',
|
3308 |
-
esc_html($check)
|
3309 |
);
|
3310 |
|
3311 |
if ($seopress_tax_key =='category') {
|
3312 |
-
|
3313 |
} elseif ($seopress_tax_key =='post_tag') {
|
3314 |
echo '<div class="wrap-tags"><span id="seopress-tag-tax-title-'.$seopress_tax_key.'" data-tag="%%tag_title%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Tag Title','wp-seopress').'</span>';
|
3315 |
} else {
|
@@ -3346,7 +3499,7 @@ class seopress_options
|
|
3346 |
);
|
3347 |
|
3348 |
if ($seopress_tax_key =='category') {
|
3349 |
-
|
3350 |
} elseif ($seopress_tax_key =='post_tag') {
|
3351 |
echo '<div class="wrap-tags"><span id="seopress-tag-tax-desc-'.$seopress_tax_key.'" data-tag="%%tag_description%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Tag Description','wp-seopress').'</span>';
|
3352 |
} else {
|
@@ -3360,9 +3513,9 @@ class seopress_options
|
|
3360 |
//Tax No-Index
|
3361 |
echo '<div class="seopress_wrap_tax">';
|
3362 |
|
3363 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3364 |
|
3365 |
-
$check = isset($options['seopress_titles_tax_titles'][$seopress_tax_key]['noindex']);
|
3366 |
|
3367 |
echo '<input id="seopress_titles_tax_noindex['.$seopress_tax_key.']" name="seopress_titles_option_name[seopress_titles_tax_titles]['.$seopress_tax_key.'][noindex]" type="checkbox"';
|
3368 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3379,9 +3532,9 @@ class seopress_options
|
|
3379 |
//Tax No-Follow
|
3380 |
echo '<div class="seopress_wrap_tax">';
|
3381 |
|
3382 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3383 |
|
3384 |
-
$check = isset($options['seopress_titles_tax_titles'][$seopress_tax_key]['nofollow']);
|
3385 |
|
3386 |
echo '<input id="seopress_titles_tax_nofollow['.$seopress_tax_key.']" name="seopress_titles_option_name[seopress_titles_tax_titles]['.$seopress_tax_key.'][nofollow]" type="checkbox"';
|
3387 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3434,7 +3587,7 @@ class seopress_options
|
|
3434 |
|
3435 |
printf(
|
3436 |
'<input type="text" id="seopress_titles_archive_titles_'.$seopress_cpt_key.'" name="seopress_titles_option_name[seopress_titles_archive_titles]['.$seopress_cpt_key.'][title]" value="%s"/>',
|
3437 |
-
esc_html($check)
|
3438 |
);
|
3439 |
|
3440 |
echo '<div class="wrap-tags"><span id="seopress-tag-archive-title-'.$seopress_cpt_key.'" data-tag="%%cpt_plural%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Post Type Archive Name','wp-seopress').'</span>';
|
@@ -3465,9 +3618,9 @@ class seopress_options
|
|
3465 |
//Archive No-Index CPT
|
3466 |
echo '<div class="seopress_wrap_archive_cpt">';
|
3467 |
|
3468 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3469 |
|
3470 |
-
$check = isset($options['seopress_titles_archive_titles'][$seopress_cpt_key]['noindex']);
|
3471 |
|
3472 |
echo '<input id="seopress_titles_archive_cpt_noindex['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_archive_titles]['.$seopress_cpt_key.'][noindex]" type="checkbox"';
|
3473 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3484,9 +3637,9 @@ class seopress_options
|
|
3484 |
//Archive No-Follow CPT
|
3485 |
echo '<div class="seopress_wrap_archive_cpt">';
|
3486 |
|
3487 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3488 |
|
3489 |
-
$check = isset($options['seopress_titles_archive_titles'][$seopress_cpt_key]['nofollow']);
|
3490 |
|
3491 |
echo '<input id="seopress_titles_archive_cpt_nofollow['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_archive_titles]['.$seopress_cpt_key.'][nofollow]" type="checkbox"';
|
3492 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3542,9 +3695,9 @@ class seopress_options
|
|
3542 |
public function seopress_titles_archives_author_noindex_callback()
|
3543 |
{
|
3544 |
|
3545 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3546 |
|
3547 |
-
$check = isset($options['seopress_titles_archives_author_noindex']);
|
3548 |
|
3549 |
echo '<input id="seopress_titles_archives_author_noindex" name="seopress_titles_option_name[seopress_titles_archives_author_noindex]" type="checkbox"';
|
3550 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3554,15 +3707,15 @@ class seopress_options
|
|
3554 |
|
3555 |
if (isset($this->options['seopress_titles_archives_author_noindex'])) {
|
3556 |
esc_attr( $this->options['seopress_titles_archives_author_noindex']);
|
3557 |
-
}
|
3558 |
}
|
3559 |
|
3560 |
public function seopress_titles_archives_author_disable_callback()
|
3561 |
{
|
3562 |
|
3563 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3564 |
|
3565 |
-
$check = isset($options['seopress_titles_archives_author_disable']);
|
3566 |
|
3567 |
echo '<input id="seopress_titles_archives_author_disable" name="seopress_titles_option_name[seopress_titles_archives_author_disable]" type="checkbox"';
|
3568 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3572,7 +3725,7 @@ class seopress_options
|
|
3572 |
|
3573 |
if (isset($this->options['seopress_titles_archives_author_disable'])) {
|
3574 |
esc_attr( $this->options['seopress_titles_archives_author_disable']);
|
3575 |
-
}
|
3576 |
}
|
3577 |
|
3578 |
public function seopress_titles_archives_date_title_callback()
|
@@ -3596,7 +3749,7 @@ class seopress_options
|
|
3596 |
}
|
3597 |
|
3598 |
public function seopress_titles_archives_date_desc_callback()
|
3599 |
-
{
|
3600 |
_e('Meta description template','wp-seopress');
|
3601 |
echo "<br/>";
|
3602 |
|
@@ -3612,9 +3765,9 @@ class seopress_options
|
|
3612 |
public function seopress_titles_archives_date_noindex_callback()
|
3613 |
{
|
3614 |
|
3615 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3616 |
|
3617 |
-
$check = isset($options['seopress_titles_archives_date_noindex']);
|
3618 |
|
3619 |
echo '<input id="seopress_titles_archives_date_noindex" name="seopress_titles_option_name[seopress_titles_archives_date_noindex]" type="checkbox"';
|
3620 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3624,15 +3777,15 @@ class seopress_options
|
|
3624 |
|
3625 |
if (isset($this->options['seopress_titles_archives_date_noindex'])) {
|
3626 |
esc_attr( $this->options['seopress_titles_archives_date_noindex']);
|
3627 |
-
}
|
3628 |
}
|
3629 |
|
3630 |
public function seopress_titles_archives_date_disable_callback()
|
3631 |
{
|
3632 |
|
3633 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3634 |
|
3635 |
-
$check = isset($options['seopress_titles_archives_date_disable']);
|
3636 |
|
3637 |
echo '<input id="seopress_titles_archives_date_disable" name="seopress_titles_option_name[seopress_titles_archives_date_disable]" type="checkbox"';
|
3638 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3642,7 +3795,7 @@ class seopress_options
|
|
3642 |
|
3643 |
if (isset($this->options['seopress_titles_archives_date_disable'])) {
|
3644 |
esc_attr( $this->options['seopress_titles_archives_date_disable']);
|
3645 |
-
}
|
3646 |
}
|
3647 |
|
3648 |
public function seopress_titles_archives_search_title_callback()
|
@@ -3666,7 +3819,7 @@ class seopress_options
|
|
3666 |
}
|
3667 |
|
3668 |
public function seopress_titles_archives_search_desc_callback()
|
3669 |
-
{
|
3670 |
_e('Meta description template','wp-seopress');
|
3671 |
echo "<br/>";
|
3672 |
|
@@ -3683,7 +3836,7 @@ class seopress_options
|
|
3683 |
public function seopress_titles_archives_search_title_noindex_callback()
|
3684 |
{
|
3685 |
|
3686 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3687 |
|
3688 |
$check = isset($options['seopress_titles_archives_search_title_noindex']);
|
3689 |
|
@@ -3695,7 +3848,7 @@ class seopress_options
|
|
3695 |
|
3696 |
if (isset($this->options['seopress_titles_archives_search_title_noindex'])) {
|
3697 |
esc_attr( $this->options['seopress_titles_archives_search_title_noindex']);
|
3698 |
-
}
|
3699 |
}
|
3700 |
|
3701 |
public function seopress_titles_archives_404_title_callback()
|
@@ -3716,7 +3869,7 @@ class seopress_options
|
|
3716 |
}
|
3717 |
|
3718 |
public function seopress_titles_archives_404_desc_callback()
|
3719 |
-
{
|
3720 |
_e('Meta description template','wp-seopress');
|
3721 |
echo "<br/>";
|
3722 |
|
@@ -3733,9 +3886,9 @@ class seopress_options
|
|
3733 |
//Advanced
|
3734 |
public function seopress_titles_noindex_callback()
|
3735 |
{
|
3736 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3737 |
|
3738 |
-
$check = isset($options['seopress_titles_noindex']);
|
3739 |
|
3740 |
echo '<input id="seopress_titles_noindex" name="seopress_titles_option_name[seopress_titles_noindex]" type="checkbox"';
|
3741 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3752,9 +3905,9 @@ class seopress_options
|
|
3752 |
|
3753 |
public function seopress_titles_nofollow_callback()
|
3754 |
{
|
3755 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3756 |
|
3757 |
-
$check = isset($options['seopress_titles_nofollow']);
|
3758 |
|
3759 |
echo '<input id="seopress_titles_nofollow" name="seopress_titles_option_name[seopress_titles_nofollow]" type="checkbox"';
|
3760 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3771,9 +3924,9 @@ class seopress_options
|
|
3771 |
|
3772 |
public function seopress_titles_noodp_callback()
|
3773 |
{
|
3774 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3775 |
|
3776 |
-
$check = isset($options['seopress_titles_noodp']);
|
3777 |
|
3778 |
echo '<input id="seopress_titles_noodp" name="seopress_titles_option_name[seopress_titles_noodp]" type="checkbox"';
|
3779 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3790,9 +3943,9 @@ class seopress_options
|
|
3790 |
|
3791 |
public function seopress_titles_noimageindex_callback()
|
3792 |
{
|
3793 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3794 |
|
3795 |
-
$check = isset($options['seopress_titles_noimageindex']);
|
3796 |
|
3797 |
echo '<input id="seopress_titles_noimageindex" name="seopress_titles_option_name[seopress_titles_noimageindex]" type="checkbox"';
|
3798 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3809,9 +3962,9 @@ class seopress_options
|
|
3809 |
|
3810 |
public function seopress_titles_noarchive_callback()
|
3811 |
{
|
3812 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3813 |
|
3814 |
-
$check = isset($options['seopress_titles_noarchive']);
|
3815 |
|
3816 |
echo '<input id="seopress_titles_noarchive" name="seopress_titles_option_name[seopress_titles_noarchive]" type="checkbox"';
|
3817 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3828,9 +3981,9 @@ class seopress_options
|
|
3828 |
|
3829 |
public function seopress_titles_nosnippet_callback()
|
3830 |
{
|
3831 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3832 |
|
3833 |
-
$check = isset($options['seopress_titles_nosnippet']);
|
3834 |
|
3835 |
echo '<input id="seopress_titles_nosnippet" name="seopress_titles_option_name[seopress_titles_nosnippet]" type="checkbox"';
|
3836 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3847,9 +4000,9 @@ class seopress_options
|
|
3847 |
|
3848 |
public function seopress_titles_nositelinkssearchbox_callback()
|
3849 |
{
|
3850 |
-
$options = get_option( 'seopress_titles_option_name' );
|
3851 |
|
3852 |
-
$check = isset($options['seopress_titles_nositelinkssearchbox']);
|
3853 |
|
3854 |
echo '<input id="seopress_titles_nositelinkssearchbox" name="seopress_titles_option_name[seopress_titles_nositelinkssearchbox]" type="checkbox"';
|
3855 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3927,9 +4080,9 @@ class seopress_options
|
|
3927 |
|
3928 |
public function seopress_xml_sitemap_img_enable_callback()
|
3929 |
{
|
3930 |
-
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
3931 |
|
3932 |
-
$check = isset($options['seopress_xml_sitemap_img_enable']);
|
3933 |
|
3934 |
echo '<input id="seopress_xml_sitemap_img_enable" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_img_enable]" type="checkbox"';
|
3935 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3955,9 +4108,9 @@ class seopress_options
|
|
3955 |
public function seopress_xml_sitemap_video_enable_callback()
|
3956 |
{
|
3957 |
if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
3958 |
-
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
3959 |
|
3960 |
-
$check = isset($options['seopress_xml_sitemap_video_enable']);
|
3961 |
|
3962 |
echo '<input id="seopress_xml_sitemap_video_enable" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_video_enable]" type="checkbox"';
|
3963 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -3983,9 +4136,9 @@ class seopress_options
|
|
3983 |
|
3984 |
public function seopress_xml_sitemap_author_enable_callback()
|
3985 |
{
|
3986 |
-
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
3987 |
|
3988 |
-
$check = isset($options['seopress_xml_sitemap_author_enable']);
|
3989 |
|
3990 |
echo '<input id="seopress_xml_sitemap_author_enable" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_author_enable]" type="checkbox"';
|
3991 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4002,9 +4155,9 @@ class seopress_options
|
|
4002 |
|
4003 |
public function seopress_xml_sitemap_html_enable_callback()
|
4004 |
{
|
4005 |
-
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4006 |
|
4007 |
-
$check = isset($options['seopress_xml_sitemap_html_enable']);
|
4008 |
|
4009 |
echo '<input id="seopress_xml_sitemap_html_enable" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_html_enable]" type="checkbox"';
|
4010 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4027,9 +4180,9 @@ class seopress_options
|
|
4027 |
|
4028 |
public function seopress_xml_sitemap_post_types_list_callback()
|
4029 |
{
|
4030 |
-
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4031 |
|
4032 |
-
$check = isset($options['seopress_xml_sitemap_post_types_list']);
|
4033 |
|
4034 |
global $wp_post_types;
|
4035 |
|
@@ -4050,9 +4203,9 @@ class seopress_options
|
|
4050 |
//List all post types
|
4051 |
echo '<div class="seopress_wrap_single_cpt">';
|
4052 |
|
4053 |
-
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4054 |
|
4055 |
-
$check = isset($options['seopress_xml_sitemap_post_types_list'][$seopress_cpt_key]['include']);
|
4056 |
|
4057 |
echo '<input id="seopress_xml_sitemap_post_types_list_include['.$seopress_cpt_key.']" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_post_types_list]['.$seopress_cpt_key.'][include]" type="checkbox"';
|
4058 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4074,18 +4227,18 @@ class seopress_options
|
|
4074 |
|
4075 |
public function seopress_xml_sitemap_taxonomies_list_callback()
|
4076 |
{
|
4077 |
-
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4078 |
|
4079 |
-
$check = isset($options['seopress_xml_sitemap_taxonomies_list']);
|
4080 |
|
4081 |
$args = array(
|
4082 |
'show_ui' => true,
|
4083 |
'public' => true,
|
4084 |
-
|
4085 |
);
|
4086 |
$output = 'objects'; // or objects
|
4087 |
$operator = 'and'; // 'and' or 'or'
|
4088 |
-
$taxonomies = get_taxonomies( $args, $output, $operator );
|
4089 |
|
4090 |
foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) {
|
4091 |
|
@@ -4094,9 +4247,9 @@ class seopress_options
|
|
4094 |
//List all taxonomies
|
4095 |
echo '<div class="seopress_wrap_single_tax">';
|
4096 |
|
4097 |
-
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4098 |
|
4099 |
-
$check = isset($options['seopress_xml_sitemap_taxonomies_list'][$seopress_tax_key]['include']);
|
4100 |
|
4101 |
echo '<input id="seopress_xml_sitemap_taxonomies_list_include['.$seopress_tax_key.']" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_taxonomies_list]['.$seopress_tax_key.'][include]" type="checkbox"';
|
4102 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4141,7 +4294,7 @@ class seopress_options
|
|
4141 |
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4142 |
|
4143 |
$selected = isset($options['seopress_xml_sitemap_html_order']) ? $options['seopress_xml_sitemap_html_order'] : NULL;
|
4144 |
-
|
4145 |
echo '<select id="seopress_xml_sitemap_html_order" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_html_order]">';
|
4146 |
echo ' <option ';
|
4147 |
if ('DESC' == $selected) echo 'selected="selected"';
|
@@ -4161,7 +4314,7 @@ class seopress_options
|
|
4161 |
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4162 |
|
4163 |
$selected = isset($options['seopress_xml_sitemap_html_orderby']) ? $options['seopress_xml_sitemap_html_orderby'] : NULL;
|
4164 |
-
|
4165 |
echo '<select id="seopress_xml_sitemap_html_orderby" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_html_orderby]">';
|
4166 |
echo ' <option ';
|
4167 |
if ('date' == $selected) echo 'selected="selected"';
|
@@ -4187,9 +4340,9 @@ class seopress_options
|
|
4187 |
|
4188 |
public function seopress_xml_sitemap_html_date_callback()
|
4189 |
{
|
4190 |
-
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4191 |
|
4192 |
-
$check = isset($options['seopress_xml_sitemap_html_date']);
|
4193 |
|
4194 |
echo '<input id="seopress_xml_sitemap_html_date" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_html_date]" type="checkbox"';
|
4195 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4204,7 +4357,7 @@ class seopress_options
|
|
4204 |
|
4205 |
public function seopress_social_knowledge_type_callback()
|
4206 |
{
|
4207 |
-
$options = get_option( 'seopress_social_option_name' );
|
4208 |
|
4209 |
$selected = isset($options['seopress_social_knowledge_type']) ? $options['seopress_social_knowledge_type'] : NULL;
|
4210 |
|
@@ -4243,7 +4396,7 @@ class seopress_options
|
|
4243 |
|
4244 |
$check = isset($options['seopress_social_knowledge_img']);
|
4245 |
|
4246 |
-
echo '<input id="seopress_social_knowledge_img_meta" type="text" value="'.$options_set.'" name="seopress_social_option_name[seopress_social_knowledge_img]" aria-label="'.__('Your photo/organization logo','wp-seopress').'" placeholder="'.esc_html__('Select your logo','wp-seopress').'"
|
4247 |
|
4248 |
<input id="seopress_social_knowledge_img_upload" class="button" type="button" value="'.__('Upload an Image','wp-seopress').'" />';
|
4249 |
|
@@ -4281,7 +4434,7 @@ class seopress_options
|
|
4281 |
|
4282 |
public function seopress_social_knowledge_contact_type_callback()
|
4283 |
{
|
4284 |
-
$options = get_option( 'seopress_social_option_name' );
|
4285 |
|
4286 |
$selected = isset($options['seopress_social_knowledge_contact_type']) ? $options['seopress_social_knowledge_contact_type'] : NULL;
|
4287 |
|
@@ -4325,7 +4478,7 @@ class seopress_options
|
|
4325 |
|
4326 |
public function seopress_social_knowledge_contact_option_callback()
|
4327 |
{
|
4328 |
-
$options = get_option( 'seopress_social_option_name' );
|
4329 |
|
4330 |
$selected = isset($options['seopress_social_knowledge_contact_option']) ? $options['seopress_social_knowledge_contact_option'] : NULL;
|
4331 |
|
@@ -4369,7 +4522,7 @@ class seopress_options
|
|
4369 |
|
4370 |
);
|
4371 |
|
4372 |
-
}
|
4373 |
|
4374 |
public function seopress_social_accounts_pinterest_callback()
|
4375 |
{
|
@@ -4457,9 +4610,9 @@ class seopress_options
|
|
4457 |
|
4458 |
public function seopress_social_facebook_og_callback()
|
4459 |
{
|
4460 |
-
$options = get_option( 'seopress_social_option_name' );
|
4461 |
|
4462 |
-
$check = isset($options['seopress_social_facebook_og']);
|
4463 |
|
4464 |
echo '<input id="seopress_social_facebook_og" name="seopress_social_option_name[seopress_social_facebook_og]" type="checkbox"';
|
4465 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4478,7 +4631,7 @@ class seopress_options
|
|
4478 |
|
4479 |
$options_set = isset($options['seopress_social_facebook_img']) ? esc_attr($options['seopress_social_facebook_img']) : NULL;
|
4480 |
|
4481 |
-
echo '<input id="seopress_social_fb_img_meta" type="text" value="'.$options_set.'" name="seopress_social_option_name[seopress_social_facebook_img]" aria-label="'.__('Select a default image','wp-seopress').'" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'"
|
4482 |
|
4483 |
<input id="seopress_social_fb_img_upload" class="button" type="button" value="'.__('Upload an Image','wp-seopress').'" />';
|
4484 |
|
@@ -4514,11 +4667,11 @@ class seopress_options
|
|
4514 |
|
4515 |
public function seopress_social_facebook_img_cpt_callback()
|
4516 |
{
|
4517 |
-
if
|
4518 |
$post_types = seopress_get_post_types();
|
4519 |
unset($post_types['post'], $post_types['page']);
|
4520 |
|
4521 |
-
if
|
4522 |
foreach ($post_types as $seopress_cpt_key => $seopress_cpt_value) {
|
4523 |
echo '<h2>'.$seopress_cpt_value->labels->name.' <em><small>['.$seopress_cpt_value->name.']</small></em></h2>';
|
4524 |
|
@@ -4527,7 +4680,7 @@ class seopress_options
|
|
4527 |
$options_set = isset($options['seopress_social_facebook_img_cpt'][$seopress_cpt_key]['url']) ? esc_attr($options['seopress_social_facebook_img_cpt'][$seopress_cpt_key]['url']) : NULL;
|
4528 |
|
4529 |
echo '<p>
|
4530 |
-
<input id="seopress_social_facebook_img_cpt_meta['.$seopress_cpt_key.']" class="seopress_social_facebook_img_cpt_meta" type="text" value="'.$options_set.'" name="seopress_social_option_name[seopress_social_facebook_img_cpt]['.$seopress_cpt_key.'][url]" aria-label="'.__('Select a default image','wp-seopress').'" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'"
|
4531 |
|
4532 |
<input id="seopress_social_facebook_img_cpt['.$seopress_cpt_key.']" class="seopress_social_facebook_img_cpt button" type="button" value="'.__('Upload an Image','wp-seopress').'" />
|
4533 |
</p>';
|
@@ -4584,9 +4737,9 @@ class seopress_options
|
|
4584 |
|
4585 |
public function seopress_social_twitter_card_callback()
|
4586 |
{
|
4587 |
-
$options = get_option( 'seopress_social_option_name' );
|
4588 |
|
4589 |
-
$check = isset($options['seopress_social_twitter_card']);
|
4590 |
|
4591 |
echo '<input id="seopress_social_twitter_card" name="seopress_social_option_name[seopress_social_twitter_card]" type="checkbox"';
|
4592 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4601,9 +4754,9 @@ class seopress_options
|
|
4601 |
|
4602 |
public function seopress_social_twitter_card_og_callback()
|
4603 |
{
|
4604 |
-
$options = get_option( 'seopress_social_option_name' );
|
4605 |
|
4606 |
-
$check = isset($options['seopress_social_twitter_card_og']);
|
4607 |
|
4608 |
echo '<input id="seopress_social_twitter_card_og" name="seopress_social_option_name[seopress_social_twitter_card_og]" type="checkbox"';
|
4609 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4617,14 +4770,14 @@ class seopress_options
|
|
4617 |
}
|
4618 |
|
4619 |
public function seopress_social_twitter_card_img_callback()
|
4620 |
-
{
|
4621 |
$options = get_option( 'seopress_social_option_name' );
|
4622 |
|
4623 |
$options_set = isset($options['seopress_social_twitter_card_img']) ? esc_attr($options['seopress_social_twitter_card_img']) : NULL;
|
4624 |
|
4625 |
-
$check = isset($options['seopress_social_twitter_card_img']);
|
4626 |
|
4627 |
-
echo '<input id="seopress_social_twitter_img_meta" type="text" value="'.$options_set.'" name="seopress_social_option_name[seopress_social_twitter_card_img]" aria-label="'.__('Default Twitter Image','wp-seopress').'" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'"
|
4628 |
|
4629 |
<input id="seopress_social_twitter_img_upload" class="button" type="button" value="'.__('Upload an Image','wp-seopress').'" />';
|
4630 |
|
@@ -4636,8 +4789,8 @@ class seopress_options
|
|
4636 |
}
|
4637 |
|
4638 |
public function seopress_social_twitter_card_img_size_callback()
|
4639 |
-
{
|
4640 |
-
$options = get_option( 'seopress_social_option_name' );
|
4641 |
|
4642 |
$selected = isset($options['seopress_social_twitter_card_img_size']) ? $options['seopress_social_twitter_card_img_size'] : NULL;
|
4643 |
|
@@ -4657,9 +4810,9 @@ class seopress_options
|
|
4657 |
|
4658 |
public function seopress_google_analytics_enable_callback()
|
4659 |
{
|
4660 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
4661 |
|
4662 |
-
$check = isset($options['seopress_google_analytics_enable']);
|
4663 |
|
4664 |
echo '<input id="seopress_google_analytics_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_enable]" type="checkbox"';
|
4665 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4687,9 +4840,9 @@ class seopress_options
|
|
4687 |
|
4688 |
public function seopress_google_analytics_disable_callback()
|
4689 |
{
|
4690 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
4691 |
|
4692 |
-
$check = isset($options['seopress_google_analytics_disable']);
|
4693 |
|
4694 |
echo '<input id="seopress_google_analytics_disable" name="seopress_google_analytics_option_name[seopress_google_analytics_disable]" type="checkbox"';
|
4695 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -4906,7 +5059,7 @@ class seopress_options
|
|
4906 |
|
4907 |
public function seopress_google_analytics_roles_callback()
|
4908 |
{
|
4909 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
4910 |
|
4911 |
global $wp_roles;
|
4912 |
|
@@ -4915,7 +5068,7 @@ class seopress_options
|
|
4915 |
|
4916 |
foreach ($wp_roles->get_names() as $key => $value) {
|
4917 |
|
4918 |
-
$check = isset($options['seopress_google_analytics_roles'][$key]);
|
4919 |
|
4920 |
echo '<input id="seopress_google_analytics_roles_'.$key.'" name="seopress_google_analytics_option_name[seopress_google_analytics_roles]['.$key.']" type="checkbox"';
|
4921 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5037,9 +5190,9 @@ class seopress_options
|
|
5037 |
|
5038 |
public function seopress_google_analytics_link_attribution_callback()
|
5039 |
{
|
5040 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5041 |
|
5042 |
-
$check = isset($options['seopress_google_analytics_link_attribution']);
|
5043 |
|
5044 |
echo '<input id="seopress_google_analytics_link_attribution" name="seopress_google_analytics_option_name[seopress_google_analytics_link_attribution]" type="checkbox"';
|
5045 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5055,13 +5208,13 @@ class seopress_options
|
|
5055 |
if (isset($this->options['seopress_google_analytics_link_attribution'])) {
|
5056 |
esc_attr( $this->options['seopress_google_analytics_link_attribution']);
|
5057 |
}
|
5058 |
-
}
|
5059 |
|
5060 |
public function seopress_google_analytics_cross_enable_callback()
|
5061 |
{
|
5062 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5063 |
|
5064 |
-
$check = isset($options['seopress_google_analytics_cross_enable']);
|
5065 |
|
5066 |
echo '<input id="seopress_google_analytics_cross_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_cross_enable]" type="checkbox"';
|
5067 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5093,9 +5246,9 @@ class seopress_options
|
|
5093 |
|
5094 |
public function seopress_google_analytics_link_tracking_enable_callback()
|
5095 |
{
|
5096 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5097 |
|
5098 |
-
$check = isset($options['seopress_google_analytics_link_tracking_enable']);
|
5099 |
|
5100 |
echo '<input id="seopress_google_analytics_link_tracking_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_link_tracking_enable]" type="checkbox"';
|
5101 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5110,9 +5263,9 @@ class seopress_options
|
|
5110 |
|
5111 |
public function seopress_google_analytics_download_tracking_enable_callback()
|
5112 |
{
|
5113 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5114 |
|
5115 |
-
$check = isset($options['seopress_google_analytics_download_tracking_enable']);
|
5116 |
|
5117 |
echo '<input id="seopress_google_analytics_download_tracking_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_download_tracking_enable]" type="checkbox"';
|
5118 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5141,9 +5294,9 @@ class seopress_options
|
|
5141 |
|
5142 |
public function seopress_google_analytics_affiliate_tracking_enable_callback()
|
5143 |
{
|
5144 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5145 |
|
5146 |
-
$check = isset($options['seopress_google_analytics_affiliate_tracking_enable']);
|
5147 |
|
5148 |
echo '<input id="seopress_google_analytics_affiliate_tracking_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_affiliate_tracking_enable]" type="checkbox"';
|
5149 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5172,7 +5325,7 @@ class seopress_options
|
|
5172 |
|
5173 |
public function seopress_google_analytics_cd_author_callback()
|
5174 |
{
|
5175 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5176 |
|
5177 |
$selected = isset($options['seopress_google_analytics_cd_author']) ? $options['seopress_google_analytics_cd_author'] : NULL;
|
5178 |
|
@@ -5195,7 +5348,7 @@ class seopress_options
|
|
5195 |
|
5196 |
public function seopress_google_analytics_cd_category_callback()
|
5197 |
{
|
5198 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5199 |
|
5200 |
$selected = isset($options['seopress_google_analytics_cd_category']) ? $options['seopress_google_analytics_cd_category'] : NULL;
|
5201 |
|
@@ -5218,7 +5371,7 @@ class seopress_options
|
|
5218 |
|
5219 |
public function seopress_google_analytics_cd_tag_callback()
|
5220 |
{
|
5221 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5222 |
|
5223 |
$selected = isset($options['seopress_google_analytics_cd_tag']) ? $options['seopress_google_analytics_cd_tag'] : NULL;
|
5224 |
|
@@ -5241,7 +5394,7 @@ class seopress_options
|
|
5241 |
|
5242 |
public function seopress_google_analytics_cd_post_type_callback()
|
5243 |
{
|
5244 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5245 |
|
5246 |
$selected = isset($options['seopress_google_analytics_cd_post_type']) ? $options['seopress_google_analytics_cd_post_type'] : NULL;
|
5247 |
|
@@ -5264,7 +5417,7 @@ class seopress_options
|
|
5264 |
|
5265 |
public function seopress_google_analytics_cd_logged_in_user_callback()
|
5266 |
{
|
5267 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5268 |
|
5269 |
$selected = isset($options['seopress_google_analytics_cd_logged_in_user']) ? $options['seopress_google_analytics_cd_logged_in_user'] : NULL;
|
5270 |
|
@@ -5287,9 +5440,9 @@ class seopress_options
|
|
5287 |
|
5288 |
public function seopress_google_analytics_matomo_enable_callback()
|
5289 |
{
|
5290 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5291 |
|
5292 |
-
$check = isset($options['seopress_google_analytics_matomo_enable']);
|
5293 |
|
5294 |
echo '<input id="seopress_google_analytics_matomo_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_enable]" type="checkbox"';
|
5295 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5332,9 +5485,9 @@ class seopress_options
|
|
5332 |
|
5333 |
public function seopress_google_analytics_matomo_subdomains_callback()
|
5334 |
{
|
5335 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5336 |
|
5337 |
-
$check = isset($options['seopress_google_analytics_matomo_subdomains']);
|
5338 |
|
5339 |
echo '<input id="seopress_google_analytics_matomo_subdomains" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_subdomains]" type="checkbox"';
|
5340 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5351,9 +5504,9 @@ class seopress_options
|
|
5351 |
|
5352 |
public function seopress_google_analytics_matomo_site_domain_callback()
|
5353 |
{
|
5354 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5355 |
|
5356 |
-
$check = isset($options['seopress_google_analytics_matomo_site_domain']);
|
5357 |
|
5358 |
echo '<input id="seopress_google_analytics_matomo_site_domain" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_site_domain]" type="checkbox"';
|
5359 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5370,9 +5523,9 @@ class seopress_options
|
|
5370 |
|
5371 |
public function seopress_google_analytics_matomo_no_js_callback()
|
5372 |
{
|
5373 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5374 |
|
5375 |
-
$check = isset($options['seopress_google_analytics_matomo_no_js']);
|
5376 |
|
5377 |
echo '<input id="seopress_google_analytics_matomo_no_js" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_no_js]" type="checkbox"';
|
5378 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5387,9 +5540,9 @@ class seopress_options
|
|
5387 |
|
5388 |
public function seopress_google_analytics_matomo_cross_domain_callback()
|
5389 |
{
|
5390 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5391 |
|
5392 |
-
$check = isset($options['seopress_google_analytics_matomo_cross_domain']);
|
5393 |
|
5394 |
echo '<input id="seopress_google_analytics_matomo_cross_domain" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_cross_domain]" type="checkbox"';
|
5395 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5418,9 +5571,9 @@ class seopress_options
|
|
5418 |
|
5419 |
public function seopress_google_analytics_matomo_dnt_callback()
|
5420 |
{
|
5421 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5422 |
|
5423 |
-
$check = isset($options['seopress_google_analytics_matomo_dnt']);
|
5424 |
|
5425 |
echo '<input id="seopress_google_analytics_matomo_dnt" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_dnt]" type="checkbox"';
|
5426 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5437,9 +5590,9 @@ class seopress_options
|
|
5437 |
|
5438 |
public function seopress_google_analytics_matomo_no_cookies_callback()
|
5439 |
{
|
5440 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5441 |
|
5442 |
-
$check = isset($options['seopress_google_analytics_matomo_no_cookies']);
|
5443 |
|
5444 |
echo '<input id="seopress_google_analytics_matomo_no_cookies" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_no_cookies]" type="checkbox"';
|
5445 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5454,9 +5607,9 @@ class seopress_options
|
|
5454 |
|
5455 |
public function seopress_google_analytics_matomo_link_tracking_callback()
|
5456 |
{
|
5457 |
-
$options = get_option( 'seopress_google_analytics_option_name' );
|
5458 |
|
5459 |
-
$check = isset($options['seopress_google_analytics_matomo_link_tracking']);
|
5460 |
|
5461 |
echo '<input id="seopress_google_analytics_matomo_link_tracking" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_link_tracking]" type="checkbox"';
|
5462 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5477,9 +5630,9 @@ class seopress_options
|
|
5477 |
|
5478 |
public function seopress_advanced_advanced_attachments_callback()
|
5479 |
{
|
5480 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5481 |
|
5482 |
-
$check = isset($options['seopress_advanced_advanced_attachments']);
|
5483 |
|
5484 |
echo '<input id="seopress_advanced_advanced_attachments" name="seopress_advanced_option_name[seopress_advanced_advanced_attachments]" type="checkbox"';
|
5485 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5494,9 +5647,9 @@ class seopress_options
|
|
5494 |
|
5495 |
public function seopress_advanced_advanced_attachments_file_callback()
|
5496 |
{
|
5497 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5498 |
|
5499 |
-
$check = isset($options['seopress_advanced_advanced_attachments_file']);
|
5500 |
|
5501 |
echo '<input id="seopress_advanced_advanced_attachments_file" name="seopress_advanced_option_name[seopress_advanced_advanced_attachments_file]" type="checkbox"';
|
5502 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5509,13 +5662,13 @@ class seopress_options
|
|
5509 |
if (isset($this->options['seopress_advanced_advanced_attachments_file'])) {
|
5510 |
esc_attr( $this->options['seopress_advanced_advanced_attachments_file']);
|
5511 |
}
|
5512 |
-
}
|
5513 |
|
5514 |
public function seopress_advanced_advanced_replytocom_callback()
|
5515 |
{
|
5516 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5517 |
|
5518 |
-
$check = isset($options['seopress_advanced_advanced_replytocom']);
|
5519 |
|
5520 |
echo '<input id="seopress_advanced_advanced_replytocom" name="seopress_advanced_option_name[seopress_advanced_advanced_replytocom]" type="checkbox"';
|
5521 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5530,9 +5683,9 @@ class seopress_options
|
|
5530 |
|
5531 |
public function seopress_advanced_advanced_image_auto_title_editor_callback()
|
5532 |
{
|
5533 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5534 |
|
5535 |
-
$check = isset($options['seopress_advanced_advanced_image_auto_title_editor']);
|
5536 |
|
5537 |
echo '<input id="seopress_advanced_advanced_image_auto_title_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_image_auto_title_editor]" type="checkbox"';
|
5538 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5547,9 +5700,9 @@ class seopress_options
|
|
5547 |
|
5548 |
public function seopress_advanced_advanced_image_auto_alt_editor_callback()
|
5549 |
{
|
5550 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5551 |
|
5552 |
-
$check = isset($options['seopress_advanced_advanced_image_auto_alt_editor']);
|
5553 |
|
5554 |
echo '<input id="seopress_advanced_advanced_image_auto_alt_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_image_auto_alt_editor]" type="checkbox"';
|
5555 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5568,7 +5721,7 @@ class seopress_options
|
|
5568 |
|
5569 |
public function seopress_advanced_advanced_image_auto_alt_target_kw_callback()
|
5570 |
{
|
5571 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5572 |
|
5573 |
$check = isset($options['seopress_advanced_advanced_image_auto_alt_target_kw']);
|
5574 |
|
@@ -5587,9 +5740,9 @@ class seopress_options
|
|
5587 |
|
5588 |
public function seopress_advanced_advanced_image_auto_caption_editor_callback()
|
5589 |
{
|
5590 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5591 |
|
5592 |
-
$check = isset($options['seopress_advanced_advanced_image_auto_caption_editor']);
|
5593 |
|
5594 |
echo '<input id="seopress_advanced_advanced_image_auto_caption_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_image_auto_caption_editor]" type="checkbox"';
|
5595 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5604,9 +5757,9 @@ class seopress_options
|
|
5604 |
|
5605 |
public function seopress_advanced_advanced_image_auto_desc_editor_callback()
|
5606 |
{
|
5607 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5608 |
|
5609 |
-
$check = isset($options['seopress_advanced_advanced_image_auto_desc_editor']);
|
5610 |
|
5611 |
echo '<input id="seopress_advanced_advanced_image_auto_desc_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_image_auto_desc_editor]" type="checkbox"';
|
5612 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5621,9 +5774,9 @@ class seopress_options
|
|
5621 |
|
5622 |
public function seopress_advanced_advanced_tax_desc_editor_callback()
|
5623 |
{
|
5624 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5625 |
|
5626 |
-
$check = isset($options['seopress_advanced_advanced_tax_desc_editor']);
|
5627 |
|
5628 |
echo '<input id="seopress_advanced_advanced_tax_desc_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_tax_desc_editor]" type="checkbox"';
|
5629 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5638,9 +5791,9 @@ class seopress_options
|
|
5638 |
|
5639 |
public function seopress_advanced_advanced_category_url_callback()
|
5640 |
{
|
5641 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5642 |
|
5643 |
-
$check = isset($options['seopress_advanced_advanced_category_url']);
|
5644 |
|
5645 |
echo '<input id="seopress_advanced_advanced_category_url" name="seopress_advanced_option_name[seopress_advanced_advanced_category_url]" type="checkbox"';
|
5646 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5655,9 +5808,9 @@ class seopress_options
|
|
5655 |
|
5656 |
public function seopress_advanced_advanced_trailingslash_callback()
|
5657 |
{
|
5658 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5659 |
|
5660 |
-
$check = isset($options['seopress_advanced_advanced_trailingslash']);
|
5661 |
|
5662 |
echo '<input id="seopress_advanced_advanced_trailingslash" name="seopress_advanced_option_name[seopress_advanced_advanced_trailingslash]" type="checkbox"';
|
5663 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5672,9 +5825,9 @@ class seopress_options
|
|
5672 |
|
5673 |
public function seopress_advanced_advanced_wp_generator_callback()
|
5674 |
{
|
5675 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5676 |
|
5677 |
-
$check = isset($options['seopress_advanced_advanced_wp_generator']);
|
5678 |
|
5679 |
echo '<input id="seopress_advanced_advanced_wp_generator" name="seopress_advanced_option_name[seopress_advanced_advanced_wp_generator]" type="checkbox"';
|
5680 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5689,9 +5842,9 @@ class seopress_options
|
|
5689 |
|
5690 |
public function seopress_advanced_advanced_hentry_callback()
|
5691 |
{
|
5692 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5693 |
|
5694 |
-
$check = isset($options['seopress_advanced_advanced_hentry']);
|
5695 |
|
5696 |
echo '<input id="seopress_advanced_advanced_hentry" name="seopress_advanced_option_name[seopress_advanced_advanced_hentry]" type="checkbox"';
|
5697 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5723,7 +5876,7 @@ class seopress_options
|
|
5723 |
|
5724 |
public function seopress_advanced_advanced_comments_website_callback()
|
5725 |
{
|
5726 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5727 |
|
5728 |
$check = isset($options['seopress_advanced_advanced_comments_website']);
|
5729 |
|
@@ -5740,9 +5893,9 @@ class seopress_options
|
|
5740 |
|
5741 |
public function seopress_advanced_advanced_wp_shortlink_callback()
|
5742 |
{
|
5743 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5744 |
|
5745 |
-
$check = isset($options['seopress_advanced_advanced_wp_shortlink']);
|
5746 |
|
5747 |
echo '<input id="seopress_advanced_advanced_wp_shortlink" name="seopress_advanced_option_name[seopress_advanced_advanced_wp_shortlink]" type="checkbox"';
|
5748 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5805,21 +5958,21 @@ class seopress_options
|
|
5805 |
|
5806 |
public function seopress_advanced_advanced_bing_callback()
|
5807 |
{
|
5808 |
-
|
5809 |
|
5810 |
-
|
5811 |
'<input type="text" name="seopress_advanced_option_name[seopress_advanced_advanced_bing]" placeholder="'.esc_html__('Enter Bing meta value site verification','wp-seopress').'" aria-label="'.__('Bing site verification','wp-seopress').'" value="%s"/>',
|
5812 |
esc_html( $check )
|
5813 |
|
5814 |
);
|
5815 |
-
|
5816 |
|
5817 |
}
|
5818 |
|
5819 |
public function seopress_advanced_advanced_pinterest_callback()
|
5820 |
{
|
5821 |
$check = isset($this->options['seopress_advanced_advanced_pinterest']) ? $this->options['seopress_advanced_advanced_pinterest'] : NULL;
|
5822 |
-
|
5823 |
printf(
|
5824 |
'<input type="text" name="seopress_advanced_option_name[seopress_advanced_advanced_pinterest]" placeholder="'.esc_html__('Enter Pinterest meta value site verification','wp-seopress').'" aria-label="'.__('Pinterest site verification','wp-seopress').'" value="%s"/>',
|
5825 |
esc_html( $check )
|
@@ -5842,9 +5995,9 @@ class seopress_options
|
|
5842 |
|
5843 |
public function seopress_advanced_appearance_adminbar_callback()
|
5844 |
{
|
5845 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5846 |
|
5847 |
-
$check = isset($options['seopress_advanced_appearance_adminbar']);
|
5848 |
|
5849 |
echo '<input id="seopress_advanced_appearance_adminbar" name="seopress_advanced_option_name[seopress_advanced_appearance_adminbar]" type="checkbox"';
|
5850 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5859,7 +6012,7 @@ class seopress_options
|
|
5859 |
|
5860 |
public function seopress_advanced_appearance_metaboxe_position_callback()
|
5861 |
{
|
5862 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5863 |
|
5864 |
$selected = isset($options['seopress_advanced_appearance_metaboxe_position']) ? $options['seopress_advanced_appearance_metaboxe_position'] : NULL;
|
5865 |
|
@@ -5904,9 +6057,9 @@ class seopress_options
|
|
5904 |
|
5905 |
public function seopress_advanced_appearance_notifications_callback()
|
5906 |
{
|
5907 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5908 |
|
5909 |
-
$check = isset($options['seopress_advanced_appearance_notifications']);
|
5910 |
|
5911 |
echo '<input id="seopress_advanced_appearance_notifications" name="seopress_advanced_option_name[seopress_advanced_appearance_notifications]" type="checkbox"';
|
5912 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5917,13 +6070,13 @@ class seopress_options
|
|
5917 |
if (isset($this->options['seopress_advanced_appearance_notifications'])) {
|
5918 |
esc_attr( $this->options['seopress_advanced_appearance_notifications']);
|
5919 |
}
|
5920 |
-
}
|
5921 |
|
5922 |
public function seopress_advanced_appearance_seo_tools_callback()
|
5923 |
{
|
5924 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5925 |
|
5926 |
-
$check = isset($options['seopress_advanced_appearance_seo_tools']);
|
5927 |
|
5928 |
echo '<input id="seopress_advanced_appearance_seo_tools" name="seopress_advanced_option_name[seopress_advanced_appearance_seo_tools]" type="checkbox"';
|
5929 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5934,13 +6087,13 @@ class seopress_options
|
|
5934 |
if (isset($this->options['seopress_advanced_appearance_seo_tools'])) {
|
5935 |
esc_attr( $this->options['seopress_advanced_appearance_seo_tools']);
|
5936 |
}
|
5937 |
-
}
|
5938 |
|
5939 |
public function seopress_advanced_appearance_useful_links_callback()
|
5940 |
{
|
5941 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5942 |
|
5943 |
-
$check = isset($options['seopress_advanced_appearance_useful_links']);
|
5944 |
|
5945 |
echo '<input id="seopress_advanced_appearance_useful_links" name="seopress_advanced_option_name[seopress_advanced_appearance_useful_links]" type="checkbox"';
|
5946 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5955,9 +6108,9 @@ class seopress_options
|
|
5955 |
|
5956 |
public function seopress_advanced_appearance_title_col_callback()
|
5957 |
{
|
5958 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5959 |
|
5960 |
-
$check = isset($options['seopress_advanced_appearance_title_col']);
|
5961 |
|
5962 |
echo '<input id="seopress_advanced_appearance_title_col" name="seopress_advanced_option_name[seopress_advanced_appearance_title_col]" type="checkbox"';
|
5963 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5972,9 +6125,9 @@ class seopress_options
|
|
5972 |
|
5973 |
public function seopress_advanced_appearance_meta_desc_col_callback()
|
5974 |
{
|
5975 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5976 |
|
5977 |
-
$check = isset($options['seopress_advanced_appearance_meta_desc_col']);
|
5978 |
|
5979 |
echo '<input id="seopress_advanced_appearance_meta_desc_col" name="seopress_advanced_option_name[seopress_advanced_appearance_meta_desc_col]" type="checkbox"';
|
5980 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -5989,9 +6142,9 @@ class seopress_options
|
|
5989 |
|
5990 |
public function seopress_advanced_appearance_redirect_enable_col_callback()
|
5991 |
{
|
5992 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
5993 |
|
5994 |
-
$check = isset($options['seopress_advanced_appearance_redirect_enable_col']);
|
5995 |
|
5996 |
echo '<input id="seopress_advanced_appearance_redirect_enable_col" name="seopress_advanced_option_name[seopress_advanced_appearance_redirect_enable_col]" type="checkbox"';
|
5997 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -6002,13 +6155,13 @@ class seopress_options
|
|
6002 |
if (isset($this->options['seopress_advanced_appearance_redirect_enable_col'])) {
|
6003 |
esc_attr( $this->options['seopress_advanced_appearance_redirect_enable_col']);
|
6004 |
}
|
6005 |
-
}
|
6006 |
|
6007 |
public function seopress_advanced_appearance_redirect_url_col_callback()
|
6008 |
{
|
6009 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6010 |
|
6011 |
-
$check = isset($options['seopress_advanced_appearance_redirect_url_col']);
|
6012 |
|
6013 |
echo '<input id="seopress_advanced_appearance_redirect_url_col" name="seopress_advanced_option_name[seopress_advanced_appearance_redirect_url_col]" type="checkbox"';
|
6014 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -6023,9 +6176,9 @@ class seopress_options
|
|
6023 |
|
6024 |
public function seopress_advanced_appearance_canonical_callback()
|
6025 |
{
|
6026 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6027 |
|
6028 |
-
$check = isset($options['seopress_advanced_appearance_canonical']);
|
6029 |
|
6030 |
echo '<input id="seopress_advanced_appearance_canonical" name="seopress_advanced_option_name[seopress_advanced_appearance_canonical]" type="checkbox"';
|
6031 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -6040,9 +6193,9 @@ class seopress_options
|
|
6040 |
|
6041 |
public function seopress_advanced_appearance_target_kw_col_callback()
|
6042 |
{
|
6043 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6044 |
|
6045 |
-
$check = isset($options['seopress_advanced_appearance_target_kw_col']);
|
6046 |
|
6047 |
echo '<input id="seopress_advanced_appearance_target_kw_col" name="seopress_advanced_option_name[seopress_advanced_appearance_target_kw_col]" type="checkbox"';
|
6048 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -6057,9 +6210,9 @@ class seopress_options
|
|
6057 |
|
6058 |
public function seopress_advanced_appearance_noindex_col_callback()
|
6059 |
{
|
6060 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6061 |
|
6062 |
-
$check = isset($options['seopress_advanced_appearance_noindex_col']);
|
6063 |
|
6064 |
echo '<input id="seopress_advanced_appearance_noindex_col" name="seopress_advanced_option_name[seopress_advanced_appearance_noindex_col]" type="checkbox"';
|
6065 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -6074,9 +6227,9 @@ class seopress_options
|
|
6074 |
|
6075 |
public function seopress_advanced_appearance_nofollow_col_callback()
|
6076 |
{
|
6077 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6078 |
|
6079 |
-
$check = isset($options['seopress_advanced_appearance_nofollow_col']);
|
6080 |
|
6081 |
echo '<input id="seopress_advanced_appearance_nofollow_col" name="seopress_advanced_option_name[seopress_advanced_appearance_nofollow_col]" type="checkbox"';
|
6082 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -6091,9 +6244,9 @@ class seopress_options
|
|
6091 |
|
6092 |
public function seopress_advanced_appearance_words_col_callback()
|
6093 |
{
|
6094 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6095 |
|
6096 |
-
$check = isset($options['seopress_advanced_appearance_words_col']);
|
6097 |
|
6098 |
echo '<input id="seopress_advanced_appearance_words_col" name="seopress_advanced_option_name[seopress_advanced_appearance_words_col]" type="checkbox"';
|
6099 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -6108,9 +6261,9 @@ class seopress_options
|
|
6108 |
|
6109 |
public function seopress_advanced_appearance_w3c_col_callback()
|
6110 |
{
|
6111 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6112 |
|
6113 |
-
$check = isset($options['seopress_advanced_appearance_w3c_col']);
|
6114 |
|
6115 |
echo '<input id="seopress_advanced_appearance_w3c_col" name="seopress_advanced_option_name[seopress_advanced_appearance_w3c_col]" type="checkbox"';
|
6116 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -6199,7 +6352,7 @@ class seopress_options
|
|
6199 |
|
6200 |
public function seopress_advanced_appearance_genesis_seo_menu_callback()
|
6201 |
{
|
6202 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6203 |
|
6204 |
$check = isset($options['seopress_advanced_appearance_genesis_seo_menu']);
|
6205 |
|
@@ -6212,11 +6365,11 @@ class seopress_options
|
|
6212 |
if (isset($this->options['seopress_advanced_appearance_genesis_seo_menu'])) {
|
6213 |
esc_attr( $this->options['seopress_advanced_appearance_genesis_seo_menu']);
|
6214 |
}
|
6215 |
-
}
|
6216 |
|
6217 |
public function seopress_advanced_appearance_advice_schema_callback()
|
6218 |
{
|
6219 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6220 |
|
6221 |
$check = isset($options['seopress_advanced_appearance_advice_schema']);
|
6222 |
|
@@ -6233,7 +6386,7 @@ class seopress_options
|
|
6233 |
|
6234 |
public function seopress_advanced_security_metaboxe_role_callback()
|
6235 |
{
|
6236 |
-
$options = get_option( 'seopress_advanced_option_name' );
|
6237 |
|
6238 |
global $wp_roles;
|
6239 |
|
@@ -6275,7 +6428,7 @@ class seopress_options
|
|
6275 |
|
6276 |
foreach ($wp_roles->get_names() as $key => $value) {
|
6277 |
|
6278 |
-
$check = isset($options['seopress_advanced_security_metaboxe_ca_role'][$key]);
|
6279 |
|
6280 |
echo '<input id="seopress_advanced_security_metaboxe_ca_role_'.$key.'" name="seopress_advanced_option_name[seopress_advanced_security_metaboxe_ca_role]['.$key.']" type="checkbox"';
|
6281 |
if ('1' == $check) echo 'checked="yes"';
|
31 |
//Enable features==========================================================================
|
32 |
$seopress_toggle_options = get_option('seopress_toggle');
|
33 |
|
34 |
+
//Init if option doesn't exist
|
35 |
+
if($seopress_toggle_options === false){
|
36 |
+
$seopress_toggle_options = [];
|
37 |
+
}
|
38 |
+
|
39 |
$seopress_toggle_options['toggle-titles'] = '1';
|
40 |
$seopress_toggle_options['toggle-xml-sitemap'] = '1';
|
41 |
$seopress_toggle_options['toggle-social'] = '1';
|
52 |
$seopress_toggle_options['toggle-404'] = '1';
|
53 |
$seopress_toggle_options['toggle-bot'] = '1';
|
54 |
|
55 |
+
//Check if the value is an array (important!)
|
56 |
+
if(is_array($seopress_toggle_options)) {
|
57 |
+
add_option('seopress_toggle', $seopress_toggle_options);
|
58 |
+
}
|
59 |
|
60 |
//Titles & metas===========================================================================
|
61 |
$seopress_titles_options = get_option('seopress_titles_option_name');
|
62 |
+
|
63 |
+
//Init if option doesn't exist
|
64 |
+
if($seopress_titles_options === false){
|
65 |
+
$seopress_titles_options = [];
|
66 |
+
}
|
67 |
|
68 |
//Site Title
|
69 |
$seopress_titles_options['seopress_titles_home_site_title'] = '%%sitetitle%%';
|
84 |
foreach (seopress_get_taxonomies() as $seopress_tax_key => $seopress_tax_value) {
|
85 |
//Title
|
86 |
if ($seopress_tax_key =='category') {
|
87 |
+
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['title'] = '%%_category_title%% %%current_pagination%% %%sep%% %%sitetitle%%';
|
88 |
} elseif ($seopress_tax_key =='post_tag') {
|
89 |
+
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['title'] = '%%tag_title%% %%current_pagination%% %%sep%% %%sitetitle%%';
|
90 |
} else {
|
91 |
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['title'] = '%%term_title%% %%current_pagination%% %%sep%% %%sitetitle%%';
|
92 |
}
|
93 |
|
94 |
//Desc
|
95 |
if ($seopress_tax_key =='category') {
|
96 |
+
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['description'] = '%%_category_description%%';
|
97 |
} elseif ($seopress_tax_key =='post_tag') {
|
98 |
+
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['description'] = '%%tag_description%%';
|
99 |
} else {
|
100 |
$seopress_titles_options['seopress_titles_tax_titles'][$seopress_tax_key]['description'] = '%%term_description%%';
|
101 |
}
|
117 |
$seopress_titles_options['seopress_titles_archives_date_title'] = '%%archive_date%% %%sep%% %%sitetitle%%';
|
118 |
$seopress_titles_options['seopress_titles_archives_date_noindex'] = '1';
|
119 |
|
120 |
+
//BuddyPress Groups
|
121 |
+
$seopress_titles_options['seopress_titles_bp_groups_title'] = '%%post_title%% %%sep%% %%sitetitle%%';
|
122 |
+
|
123 |
//Search
|
124 |
$seopress_titles_options['seopress_titles_archives_search_title'] = '%%search_keywords%% %%sep%% %%sitetitle%%';
|
125 |
|
129 |
//Link rel prev/next
|
130 |
$seopress_titles_options['seopress_titles_paged_rel'] = '1';
|
131 |
|
132 |
+
//Check if the value is an array (important!)
|
133 |
+
if(is_array($seopress_titles_options)) {
|
134 |
+
add_option('seopress_titles_option_name', $seopress_titles_options);
|
135 |
+
}
|
136 |
|
137 |
//XML Sitemap==============================================================================
|
138 |
$seopress_xml_sitemap_options = get_option('seopress_xml_sitemap_option_name');
|
139 |
|
140 |
+
//Init if option doesn't exist
|
141 |
+
if($seopress_xml_sitemap_options === false){
|
142 |
+
$seopress_xml_sitemap_options = [];
|
143 |
+
}
|
144 |
+
|
145 |
$seopress_xml_sitemap_options['seopress_xml_sitemap_general_enable'] = '1';
|
146 |
$seopress_xml_sitemap_options['seopress_xml_sitemap_img_enable'] = '1';
|
147 |
|
165 |
$args = array(
|
166 |
'show_ui' => true,
|
167 |
'public' => true,
|
168 |
+
|
169 |
);
|
170 |
$output = 'objects'; // or objects
|
171 |
$operator = 'and'; // 'and' or 'or'
|
172 |
+
$taxonomies = get_taxonomies( $args, $output, $operator );
|
173 |
|
174 |
foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) {
|
175 |
if ($seopress_tax_key =='category' || $seopress_tax_key =='post_tag') {
|
177 |
}
|
178 |
}
|
179 |
|
180 |
+
//Check if the value is an array (important!)
|
181 |
+
if(is_array($seopress_xml_sitemap_options)) {
|
182 |
+
add_option('seopress_xml_sitemap_option_name', $seopress_xml_sitemap_options);
|
183 |
+
}
|
184 |
|
185 |
//Social===================================================================================
|
186 |
$seopress_social_options = get_option('seopress_social_option_name');
|
187 |
|
188 |
+
//Init if option doesn't exist
|
189 |
+
if($seopress_social_options === false){
|
190 |
+
$seopress_social_options = [];
|
191 |
+
}
|
192 |
+
|
193 |
$seopress_social_options['seopress_social_facebook_og'] = '1';
|
194 |
$seopress_social_options['seopress_social_twitter_card'] = '1';
|
195 |
|
196 |
+
//Check if the value is an array (important!)
|
197 |
+
if(is_array($seopress_social_options)) {
|
198 |
+
add_option('seopress_social_option_name', $seopress_social_options);
|
199 |
+
}
|
200 |
|
201 |
//Advanced=================================================================================
|
202 |
$seopress_advanced_option_name = get_option('seopress_advanced_option_name');
|
203 |
|
204 |
+
//Init if option doesn't exist
|
205 |
+
if($seopress_advanced_option_name === false){
|
206 |
+
$seopress_advanced_option_name = [];
|
207 |
+
}
|
208 |
+
|
209 |
$seopress_advanced_option_name['seopress_advanced_advanced_attachments'] = '1';
|
210 |
$seopress_advanced_option_name['seopress_advanced_advanced_tax_desc_editor'] = '1';
|
211 |
$seopress_advanced_option_name['seopress_advanced_appearance_title_col'] = '1';
|
212 |
$seopress_advanced_option_name['seopress_advanced_appearance_meta_desc_col'] = '1';
|
213 |
+
$seopress_advanced_option_name['seopress_advanced_appearance_score_col'] = '1';
|
214 |
|
215 |
+
//Check if the value is an array (important!)
|
216 |
+
if(is_array($seopress_advanced_option_name)) {
|
217 |
+
add_option('seopress_advanced_option_name', $seopress_advanced_option_name);
|
218 |
+
}
|
219 |
}
|
220 |
|
221 |
/**
|
251 |
<li><span>'.__('%%post_excerpt%% (alias %%excerpt%%)','wp-seopress').'</span>'.__('Post excerpt','wp-seopress').'</li>
|
252 |
<li><span>'.__('%%post_content%%','wp-seopress').'</span>'.__('Post content / product long description','wp-seopress').'</li>
|
253 |
<li><span>'.__('%%post_thumbnail_url%%','wp-seopress').'</span>'.__('Post thumbnail URL','wp-seopress').'</li>
|
254 |
+
<li><span>'.__('%%post_url%%','wp-seopress').'</span>'.__('Post URL (permalink)','wp-seopress').'</li>
|
255 |
<li><span>'.__('%%post_date%% (alias %%date%%)','wp-seopress').'</span>'.__('Post date','wp-seopress').'</li>
|
256 |
<li><span>'.__('%%post_modified_date%%','wp-seopress').'</span>'.__('Last modified post date','wp-seopress').'</li>
|
257 |
<li><span>'.__('%%post_author%%','wp-seopress').'</span>'.__('Post author','wp-seopress').'</li>
|
805 |
<option value="seo-ultimate-migration-tool"><?php _e('SEO Ultimate','wp-seopress'); ?></option>
|
806 |
<option value="wp-meta-seo-migration-tool"><?php _e('WP Meta SEO','wp-seopress'); ?></option>
|
807 |
<option value="premium-seo-pack-migration-tool"><?php _e('Premium SEO Pack','wp-seopress'); ?></option>
|
808 |
+
<option value="wpseo-migration-tool"><?php _e('wpSEO','wp-seopress'); ?></option>
|
809 |
</select>
|
810 |
<br><br>
|
811 |
</div>
|
968 |
<div class="log"></div>
|
969 |
</div><!-- .inside -->
|
970 |
</div><!-- .postbox -->
|
971 |
+
|
972 |
+
<!-- wpSEO import tool -->
|
973 |
+
<div id="wpseo-migration-tool" class="postbox section-tool">
|
974 |
+
<div class="inside">
|
975 |
+
<h3><span><?php _e( 'Import posts and terms metadata from wpSEO', 'wp-seopress' ); ?></span></h3>
|
976 |
+
<p><?php _e( 'By clicking Migrate, we\'ll import:', 'wp-seopress' ); ?></p>
|
977 |
+
<ul>
|
978 |
+
<li><?php _e('Title tags','wp-seopress'); ?></li>
|
979 |
+
<li><?php _e('Meta description','wp-seopress'); ?></li>
|
980 |
+
<li><?php _e('Facebook Open Graph tags (title, description and image thumbnail)','wp-seopress'); ?></li>
|
981 |
+
<li><?php _e('Twitter tags (title, description and image thumbnail)','wp-seopress'); ?></li>
|
982 |
+
<li><?php _e('Meta Robots (noindex, nofollow)','wp-seopress'); ?></li>
|
983 |
+
<li><?php _e('Canonical URL','wp-seopress'); ?></li>
|
984 |
+
<li><?php _e('Redirect URL','wp-seopress'); ?></li>
|
985 |
+
<li><?php _e('Main keyword','wp-seopress'); ?></li>
|
986 |
+
</ul>
|
987 |
+
<p style="color:red"><span class="dashicons dashicons-info"></span> <?php _e( '<strong>WARNING:</strong> Migration will update / delete all SEOPress posts metadata. Some dynamic variables will not be interpreted. We do NOT delete any wpSEO data.', 'wp-seopress' ); ?></p>
|
988 |
+
<button id="seopress-wpseo-migrate" type="button" class="button"><?php _e('Migrate now','wp-seopress'); ?></button>
|
989 |
+
<span class="spinner"></span>
|
990 |
+
<div class="log"></div>
|
991 |
+
</div><!-- .inside -->
|
992 |
+
</div><!-- .postbox -->
|
993 |
</div>
|
994 |
<div class="seopress-tab <?php if ($current_tab == 'tab_seopress_tool_redirects') { echo 'active'; } ?>" id="tab_seopress_tool_redirects">
|
995 |
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?>
|
1014 |
<li><?php _e( 'URL to redirect in absolute,','wp-seopress'); ?></li>
|
1015 |
<li><?php _e( 'type of redirection (301, 302 or 307, 410, 451),','wp-seopress'); ?></li>
|
1016 |
<li><?php _e( 'Yes to enable the redirect (leave it empty to disable the redirect)','wp-seopress'); ?></li>
|
1017 |
+
<li><?php _e( 'the query parameter without the quotes ("exact_match" = Exact match with all parameters, "without_param" = Exclude all parameters or "with_ignored_param" = Exclude all parameters and pass them to the redirection),', 'wp-seopress' ); ?></li>
|
1018 |
<li><?php _e( 'and, the last parameter, the counter (optional).','wp-seopress'); ?></li>
|
1019 |
</ul>
|
1020 |
</p>
|
1023 |
<?php _e('Download a CSV example','wp-seopress'); ?>
|
1024 |
</a>
|
1025 |
</p>
|
1026 |
+
<p><?php _e('Duplicate entries will be automatically removed during import.','wp-seopress'); ?></p>
|
1027 |
+
<p><strong><?php _e('Select your separator:','wp-seopress'); ?></strong></p>
|
1028 |
<form method="post" enctype="multipart/form-data">
|
1029 |
<p>
|
1030 |
<input id="import_sep_comma" name="import_sep" type="radio" value="comma"/>
|
1323 |
'seopress_setting_section_titles_single' // Section
|
1324 |
);
|
1325 |
|
1326 |
+
add_settings_field(
|
1327 |
+
'seopress_titles_bp_groups_title', // ID
|
1328 |
+
'',
|
1329 |
+
array( $this, 'seopress_titles_bp_groups_title_callback' ), // Callback
|
1330 |
+
'seopress-settings-admin-titles-single', // Page
|
1331 |
+
'seopress_setting_section_titles_single' // Section
|
1332 |
+
);
|
1333 |
+
|
1334 |
+
add_settings_field(
|
1335 |
+
'seopress_titles_bp_groups_desc', // ID
|
1336 |
+
'',
|
1337 |
+
array( $this, 'seopress_titles_bp_groups_desc_callback' ), // Callback
|
1338 |
+
'seopress-settings-admin-titles-single', // Page
|
1339 |
+
'seopress_setting_section_titles_single' // Section
|
1340 |
+
);
|
1341 |
+
|
1342 |
+
add_settings_field(
|
1343 |
+
'seopress_titles_bp_groups_noindex', // ID
|
1344 |
+
'',
|
1345 |
+
array( $this, 'seopress_titles_bp_groups_noindex_callback' ), // Callback
|
1346 |
+
'seopress-settings-admin-titles-single', // Page
|
1347 |
+
'seopress_setting_section_titles_single' // Section
|
1348 |
+
);
|
1349 |
+
|
1350 |
//Archives SECTION=========================================================================
|
1351 |
add_settings_section(
|
1352 |
'seopress_setting_section_titles_archives', // ID
|
2501 |
|
2502 |
add_settings_field(
|
2503 |
'seopress_advanced_advanced_category_url', // ID
|
2504 |
+
__("Remove /category/ in URL","wp-seopress"), // Title
|
2505 |
array( $this, 'seopress_advanced_advanced_category_url_callback' ), // Callback
|
2506 |
'seopress-settings-admin-advanced-advanced', // Page
|
2507 |
'seopress_setting_section_advanced_advanced' // Section
|
2509 |
|
2510 |
add_settings_field(
|
2511 |
'seopress_advanced_advanced_trailingslash', // ID
|
2512 |
+
__("Disable trailing slash for metas","wp-seopress"), // Title
|
2513 |
array( $this, 'seopress_advanced_advanced_trailingslash_callback' ), // Callback
|
2514 |
'seopress-settings-admin-advanced-advanced', // Page
|
2515 |
'seopress_setting_section_advanced_advanced' // Section
|
2953 |
if (current($server_software) =='nginx' ) { //IF NGINX
|
2954 |
echo '<p>'.__('Your server uses NGINX. If XML Sitemaps doesn\'t work properly, you need to add this rule to your configuration:', 'wp-seopress').'</p><br>';
|
2955 |
echo '<pre style="margin:0;padding:10px;font-weight: bold;background:#F3F3F3;display:inline-block;width: 100%">
|
2956 |
+
location ~ ([^/]*)sitemap(.*)\.x(m|s)l$ {
|
2957 |
## SEOPress
|
2958 |
rewrite ^/sitemaps\.xml$ /index.php?seopress_sitemap=1 last;
|
2959 |
rewrite ^/sitemaps/news.xml$ /index.php?seopress_news=$1 last;
|
2966 |
}
|
2967 |
}
|
2968 |
echo '<p>'.__('Noindex content will not be displayed in Sitemaps.', 'wp-seopress').'</p>';
|
2969 |
+
echo '<p>'.__('If you disable globally this feature (using the blue toggle from above), the native WordPress XML sitemaps will be re-activated.', 'wp-seopress').'</p>';
|
2970 |
|
2971 |
if (function_exists('seopress_get_locale') && seopress_get_locale() =='fr') {
|
2972 |
$seopress_docs_link['sitemaps']['error']['blank'] = 'https://www.seopress.org/fr/support/guides/xml-sitemap-page-blanche/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
2973 |
$seopress_docs_link['sitemaps']['error']['404'] = 'https://www.seopress.org/fr/support/guides/plan-de-site-xml-retourne-erreur-404/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
2974 |
+
$seopress_docs_link['sitemaps']['error']['html'] = 'https://www.seopress.org/fr/support/guides/exclure-fichiers-xml-xsl-extensions-cache/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
2975 |
} else {
|
2976 |
$seopress_docs_link['sitemaps']['error']['blank'] = 'https://www.seopress.org/support/guides/xml-sitemap-blank-page/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
2977 |
$seopress_docs_link['sitemaps']['error']['404'] = 'https://www.seopress.org/support/guides/xml-sitemap-returns-404-error/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
2978 |
+
$seopress_docs_link['sitemaps']['error']['html'] = 'https://www.seopress.org/support/guides/how-to-exclude-xml-and-xsl-files-from-caching-plugins/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress';
|
2979 |
}
|
2980 |
|
2981 |
echo '<p class="seopress-help"><span class="dashicons dashicons-external"></span><a href="'.$seopress_docs_link['sitemaps']['error']['blank'].'" target="_blank">'.__('Blank sitemap?', 'wp-seopress').'</a> - ';
|
2982 |
+
echo '<span class="dashicons dashicons-external"></span><a href="'.$seopress_docs_link['sitemaps']['error']['404'].'" target="_blank">'.__('404 error?', 'wp-seopress').'</a> - ';
|
2983 |
+
echo '<span class="dashicons dashicons-external"></span><a href="'.$seopress_docs_link['sitemaps']['error']['html'].'" target="_blank">'.__('HTML error? Exclude XML and XSL from caching plugins!', 'wp-seopress').'</a></p><br>';
|
2984 |
|
2985 |
echo '<a href="'.get_option( 'home' ).'/sitemaps.xml" target="_blank" class="button"><span class="dashicons dashicons-visibility"></span>'.__('View your sitemap','wp-seopress').'</a>';
|
2986 |
echo ' ';
|
2987 |
+
echo '<a href="https://www.google.com/ping?sitemap='.get_option( 'home' ).'/sitemaps.xml/" target="_blank" class="button"><span class="dashicons dashicons-share-alt2"></span>'.__('Ping Google manually','wp-seopress').'</a>';
|
2988 |
echo ' ';
|
2989 |
echo '<button type="button" id="seopress-flush-permalinks" class="button"><span class="dashicons dashicons-admin-links"></span>'.__('Flush permalinks','wp-seopress').'</button>';
|
2990 |
echo '<span class="spinner"></span>';
|
3032 |
<li>'.__('First image of your post content','wp-seopress').'</li>
|
3033 |
<li>'.__('Global OG Image set in SEO > Social > Open Graph','wp-seopress').'</li>
|
3034 |
</ol>';
|
3035 |
+
}
|
3036 |
|
3037 |
public function print_section_info_social_twitter() {
|
3038 |
print __('<p>Manage your Twitter card.</p>', 'wp-seopress');
|
3119 |
printf(
|
3120 |
'<input type="text" id="seopress_titles_home_site_title" name="seopress_titles_option_name[seopress_titles_home_site_title]" placeholder="'.esc_html__('My awesome website','wp-seopress').'" aria-label="'.__('Site title','wp-seopress').'" value="%s"/>',
|
3121 |
esc_html( $this->options['seopress_titles_home_site_title'])
|
3122 |
+
);
|
3123 |
echo '<div class="wrap-tags"><span id="seopress-tag-site-title" data-tag="%%sitetitle%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Site Title','wp-seopress').'</span>';
|
3124 |
echo '<span id="seopress-tag-site-sep" data-tag="%%sep%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Separator','wp-seopress').'</span>';
|
3125 |
echo '<span id="seopress-tag-site-desc" data-tag="%%tagline%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Tagline','wp-seopress').'</span>';
|
3150 |
//Single on/off CPT
|
3151 |
echo '<div class="seopress_wrap_single_cpt">';
|
3152 |
|
3153 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3154 |
|
3155 |
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['enable']) ? $options['seopress_titles_single_titles'][$seopress_cpt_key]['enable'] : NULL;
|
3156 |
|
3250 |
//Single No-Index CPT
|
3251 |
echo '<div class="seopress_wrap_single_cpt">';
|
3252 |
|
3253 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3254 |
|
3255 |
+
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['noindex']);
|
3256 |
|
3257 |
echo '<input id="seopress_titles_single_cpt_noindex['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_single_titles]['.$seopress_cpt_key.'][noindex]" type="checkbox"';
|
3258 |
if ('1' == $check) echo 'checked="yes"';
|
3269 |
//Single No-Follow CPT
|
3270 |
echo '<div class="seopress_wrap_single_cpt">';
|
3271 |
|
3272 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3273 |
|
3274 |
+
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['nofollow']);
|
3275 |
|
3276 |
echo '<input id="seopress_titles_single_cpt_nofollow['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_single_titles]['.$seopress_cpt_key.'][nofollow]" type="checkbox"';
|
3277 |
if ('1' == $check) echo 'checked="yes"';
|
3288 |
//Single Published / modified date CPT
|
3289 |
echo '<div class="seopress_wrap_single_cpt">';
|
3290 |
|
3291 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3292 |
|
3293 |
+
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['date']);
|
3294 |
|
3295 |
echo '<input id="seopress_titles_single_cpt_date['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_single_titles]['.$seopress_cpt_key.'][date]" type="checkbox"';
|
3296 |
if ('1' == $check) echo 'checked="yes"';
|
3307 |
//Single meta thumbnail CPT
|
3308 |
echo '<div class="seopress_wrap_single_cpt">';
|
3309 |
|
3310 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3311 |
|
3312 |
+
$check = isset($options['seopress_titles_single_titles'][$seopress_cpt_key]['thumb_gcs']);
|
3313 |
|
3314 |
echo '<input id="seopress_titles_single_cpt_thumb_gcs['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_single_titles]['.$seopress_cpt_key.'][thumb_gcs]" type="checkbox"';
|
3315 |
if ('1' == $check) echo 'checked="yes"';
|
3325 |
}
|
3326 |
}
|
3327 |
|
3328 |
+
//BuddyPress Groups
|
3329 |
+
public function seopress_titles_bp_groups_title_callback()
|
3330 |
+
{
|
3331 |
+
echo '<h2>'.__('BuddyPress groups','wp-seopress').'</h2>';
|
3332 |
+
|
3333 |
+
_e('Title template','wp-seopress');
|
3334 |
+
echo "<br/>";
|
3335 |
+
|
3336 |
+
$check = isset($this->options['seopress_titles_bp_groups_title']) ? $this->options['seopress_titles_bp_groups_title'] : NULL;
|
3337 |
+
|
3338 |
+
printf(
|
3339 |
+
'<input id="seopress_titles_bp_groups_title" type="text" name="seopress_titles_option_name[seopress_titles_bp_groups_title]" value="%s"/>',
|
3340 |
+
esc_html( $check )
|
3341 |
+
);
|
3342 |
+
|
3343 |
+
echo '<div class="wrap-tags"><span id="seopress-tag-post-title-bd-groups" data-tag="%%post_title%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Post Title','wp-seopress').'</span>';
|
3344 |
+
echo '<span id="seopress-tag-sep-bd-groups" data-tag="%%sep%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Separator','wp-seopress').'</span>';
|
3345 |
+
echo '<span id="seopress-tag-site-title-bd-groups" data-tag="%%sitetitle%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Site Title','wp-seopress').'</span>';
|
3346 |
+
echo '<span id="seopress-quick-help" class="tag-title more-tags"><span class="dashicons dashicons-menu"></span>'.__('More tags','wp-seopress').'</span></div>';
|
3347 |
+
|
3348 |
+
}
|
3349 |
+
|
3350 |
+
public function seopress_titles_bp_groups_desc_callback()
|
3351 |
+
{
|
3352 |
+
_e('Meta description template','wp-seopress');
|
3353 |
+
echo "<br/>";
|
3354 |
+
|
3355 |
+
$check = isset($this->options['seopress_titles_bp_groups_desc']) ? $this->options['seopress_titles_bp_groups_desc'] : NULL;
|
3356 |
+
|
3357 |
+
printf(
|
3358 |
+
'<textarea name="seopress_titles_option_name[seopress_titles_bp_groups_desc]">%s</textarea>',
|
3359 |
+
esc_html( $check )
|
3360 |
+
|
3361 |
+
);
|
3362 |
+
|
3363 |
+
}
|
3364 |
+
|
3365 |
+
public function seopress_titles_bp_groups_noindex_callback()
|
3366 |
+
{
|
3367 |
+
|
3368 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3369 |
+
|
3370 |
+
$check = isset($options['seopress_titles_bp_groups_noindex']);
|
3371 |
+
|
3372 |
+
echo '<input id="seopress_titles_bp_groups_noindex" name="seopress_titles_option_name[seopress_titles_bp_groups_noindex]" type="checkbox"';
|
3373 |
+
if ('1' == $check) echo 'checked="yes"';
|
3374 |
+
echo ' value="1"/>';
|
3375 |
+
|
3376 |
+
echo '<label for="seopress_titles_bp_groups_noindex">'. __( 'Do not display BuddyPress groups in search engine results <strong>(noindex)</strong>', 'wp-seopress' ) .'</label>';
|
3377 |
+
|
3378 |
+
if (isset($this->options['seopress_titles_bp_groups_noindex'])) {
|
3379 |
+
esc_attr( $this->options['seopress_titles_bp_groups_noindex']);
|
3380 |
+
}
|
3381 |
+
}
|
3382 |
+
|
3383 |
//Taxonomies
|
3384 |
public function seopress_titles_tax_titles_callback()
|
3385 |
{
|
3390 |
//Single on/off Tax
|
3391 |
echo '<div class="seopress_wrap_tax">';
|
3392 |
|
3393 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3394 |
|
3395 |
$check = isset($options['seopress_titles_tax_titles'][$seopress_tax_key]['enable']) ? $options['seopress_titles_tax_titles'][$seopress_tax_key]['enable'] : NULL;
|
3396 |
|
3458 |
|
3459 |
printf(
|
3460 |
'<input type="text" id="seopress_titles_tax_titles_'.$seopress_tax_key.'" name="seopress_titles_option_name[seopress_titles_tax_titles]['.$seopress_tax_key.'][title]" value="%s"/>',
|
3461 |
+
esc_html($check)
|
3462 |
);
|
3463 |
|
3464 |
if ($seopress_tax_key =='category') {
|
3465 |
+
echo '<div class="wrap-tags"><span id="seopress-tag-tax-title-'.$seopress_tax_key.'" data-tag="%%_category_title%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Category Title','wp-seopress').'</span>';
|
3466 |
} elseif ($seopress_tax_key =='post_tag') {
|
3467 |
echo '<div class="wrap-tags"><span id="seopress-tag-tax-title-'.$seopress_tax_key.'" data-tag="%%tag_title%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Tag Title','wp-seopress').'</span>';
|
3468 |
} else {
|
3499 |
);
|
3500 |
|
3501 |
if ($seopress_tax_key =='category') {
|
3502 |
+
echo '<div class="wrap-tags"><span id="seopress-tag-tax-desc-'.$seopress_tax_key.'" data-tag="%%_category_description%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Category Description','wp-seopress').'</span>';
|
3503 |
} elseif ($seopress_tax_key =='post_tag') {
|
3504 |
echo '<div class="wrap-tags"><span id="seopress-tag-tax-desc-'.$seopress_tax_key.'" data-tag="%%tag_description%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Tag Description','wp-seopress').'</span>';
|
3505 |
} else {
|
3513 |
//Tax No-Index
|
3514 |
echo '<div class="seopress_wrap_tax">';
|
3515 |
|
3516 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3517 |
|
3518 |
+
$check = isset($options['seopress_titles_tax_titles'][$seopress_tax_key]['noindex']);
|
3519 |
|
3520 |
echo '<input id="seopress_titles_tax_noindex['.$seopress_tax_key.']" name="seopress_titles_option_name[seopress_titles_tax_titles]['.$seopress_tax_key.'][noindex]" type="checkbox"';
|
3521 |
if ('1' == $check) echo 'checked="yes"';
|
3532 |
//Tax No-Follow
|
3533 |
echo '<div class="seopress_wrap_tax">';
|
3534 |
|
3535 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3536 |
|
3537 |
+
$check = isset($options['seopress_titles_tax_titles'][$seopress_tax_key]['nofollow']);
|
3538 |
|
3539 |
echo '<input id="seopress_titles_tax_nofollow['.$seopress_tax_key.']" name="seopress_titles_option_name[seopress_titles_tax_titles]['.$seopress_tax_key.'][nofollow]" type="checkbox"';
|
3540 |
if ('1' == $check) echo 'checked="yes"';
|
3587 |
|
3588 |
printf(
|
3589 |
'<input type="text" id="seopress_titles_archive_titles_'.$seopress_cpt_key.'" name="seopress_titles_option_name[seopress_titles_archive_titles]['.$seopress_cpt_key.'][title]" value="%s"/>',
|
3590 |
+
esc_html($check)
|
3591 |
);
|
3592 |
|
3593 |
echo '<div class="wrap-tags"><span id="seopress-tag-archive-title-'.$seopress_cpt_key.'" data-tag="%%cpt_plural%%" class="tag-title"><span class="dashicons dashicons-plus"></span>'.__('Post Type Archive Name','wp-seopress').'</span>';
|
3618 |
//Archive No-Index CPT
|
3619 |
echo '<div class="seopress_wrap_archive_cpt">';
|
3620 |
|
3621 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3622 |
|
3623 |
+
$check = isset($options['seopress_titles_archive_titles'][$seopress_cpt_key]['noindex']);
|
3624 |
|
3625 |
echo '<input id="seopress_titles_archive_cpt_noindex['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_archive_titles]['.$seopress_cpt_key.'][noindex]" type="checkbox"';
|
3626 |
if ('1' == $check) echo 'checked="yes"';
|
3637 |
//Archive No-Follow CPT
|
3638 |
echo '<div class="seopress_wrap_archive_cpt">';
|
3639 |
|
3640 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3641 |
|
3642 |
+
$check = isset($options['seopress_titles_archive_titles'][$seopress_cpt_key]['nofollow']);
|
3643 |
|
3644 |
echo '<input id="seopress_titles_archive_cpt_nofollow['.$seopress_cpt_key.']" name="seopress_titles_option_name[seopress_titles_archive_titles]['.$seopress_cpt_key.'][nofollow]" type="checkbox"';
|
3645 |
if ('1' == $check) echo 'checked="yes"';
|
3695 |
public function seopress_titles_archives_author_noindex_callback()
|
3696 |
{
|
3697 |
|
3698 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3699 |
|
3700 |
+
$check = isset($options['seopress_titles_archives_author_noindex']);
|
3701 |
|
3702 |
echo '<input id="seopress_titles_archives_author_noindex" name="seopress_titles_option_name[seopress_titles_archives_author_noindex]" type="checkbox"';
|
3703 |
if ('1' == $check) echo 'checked="yes"';
|
3707 |
|
3708 |
if (isset($this->options['seopress_titles_archives_author_noindex'])) {
|
3709 |
esc_attr( $this->options['seopress_titles_archives_author_noindex']);
|
3710 |
+
}
|
3711 |
}
|
3712 |
|
3713 |
public function seopress_titles_archives_author_disable_callback()
|
3714 |
{
|
3715 |
|
3716 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3717 |
|
3718 |
+
$check = isset($options['seopress_titles_archives_author_disable']);
|
3719 |
|
3720 |
echo '<input id="seopress_titles_archives_author_disable" name="seopress_titles_option_name[seopress_titles_archives_author_disable]" type="checkbox"';
|
3721 |
if ('1' == $check) echo 'checked="yes"';
|
3725 |
|
3726 |
if (isset($this->options['seopress_titles_archives_author_disable'])) {
|
3727 |
esc_attr( $this->options['seopress_titles_archives_author_disable']);
|
3728 |
+
}
|
3729 |
}
|
3730 |
|
3731 |
public function seopress_titles_archives_date_title_callback()
|
3749 |
}
|
3750 |
|
3751 |
public function seopress_titles_archives_date_desc_callback()
|
3752 |
+
{
|
3753 |
_e('Meta description template','wp-seopress');
|
3754 |
echo "<br/>";
|
3755 |
|
3765 |
public function seopress_titles_archives_date_noindex_callback()
|
3766 |
{
|
3767 |
|
3768 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3769 |
|
3770 |
+
$check = isset($options['seopress_titles_archives_date_noindex']);
|
3771 |
|
3772 |
echo '<input id="seopress_titles_archives_date_noindex" name="seopress_titles_option_name[seopress_titles_archives_date_noindex]" type="checkbox"';
|
3773 |
if ('1' == $check) echo 'checked="yes"';
|
3777 |
|
3778 |
if (isset($this->options['seopress_titles_archives_date_noindex'])) {
|
3779 |
esc_attr( $this->options['seopress_titles_archives_date_noindex']);
|
3780 |
+
}
|
3781 |
}
|
3782 |
|
3783 |
public function seopress_titles_archives_date_disable_callback()
|
3784 |
{
|
3785 |
|
3786 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3787 |
|
3788 |
+
$check = isset($options['seopress_titles_archives_date_disable']);
|
3789 |
|
3790 |
echo '<input id="seopress_titles_archives_date_disable" name="seopress_titles_option_name[seopress_titles_archives_date_disable]" type="checkbox"';
|
3791 |
if ('1' == $check) echo 'checked="yes"';
|
3795 |
|
3796 |
if (isset($this->options['seopress_titles_archives_date_disable'])) {
|
3797 |
esc_attr( $this->options['seopress_titles_archives_date_disable']);
|
3798 |
+
}
|
3799 |
}
|
3800 |
|
3801 |
public function seopress_titles_archives_search_title_callback()
|
3819 |
}
|
3820 |
|
3821 |
public function seopress_titles_archives_search_desc_callback()
|
3822 |
+
{
|
3823 |
_e('Meta description template','wp-seopress');
|
3824 |
echo "<br/>";
|
3825 |
|
3836 |
public function seopress_titles_archives_search_title_noindex_callback()
|
3837 |
{
|
3838 |
|
3839 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3840 |
|
3841 |
$check = isset($options['seopress_titles_archives_search_title_noindex']);
|
3842 |
|
3848 |
|
3849 |
if (isset($this->options['seopress_titles_archives_search_title_noindex'])) {
|
3850 |
esc_attr( $this->options['seopress_titles_archives_search_title_noindex']);
|
3851 |
+
}
|
3852 |
}
|
3853 |
|
3854 |
public function seopress_titles_archives_404_title_callback()
|
3869 |
}
|
3870 |
|
3871 |
public function seopress_titles_archives_404_desc_callback()
|
3872 |
+
{
|
3873 |
_e('Meta description template','wp-seopress');
|
3874 |
echo "<br/>";
|
3875 |
|
3886 |
//Advanced
|
3887 |
public function seopress_titles_noindex_callback()
|
3888 |
{
|
3889 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3890 |
|
3891 |
+
$check = isset($options['seopress_titles_noindex']);
|
3892 |
|
3893 |
echo '<input id="seopress_titles_noindex" name="seopress_titles_option_name[seopress_titles_noindex]" type="checkbox"';
|
3894 |
if ('1' == $check) echo 'checked="yes"';
|
3905 |
|
3906 |
public function seopress_titles_nofollow_callback()
|
3907 |
{
|
3908 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3909 |
|
3910 |
+
$check = isset($options['seopress_titles_nofollow']);
|
3911 |
|
3912 |
echo '<input id="seopress_titles_nofollow" name="seopress_titles_option_name[seopress_titles_nofollow]" type="checkbox"';
|
3913 |
if ('1' == $check) echo 'checked="yes"';
|
3924 |
|
3925 |
public function seopress_titles_noodp_callback()
|
3926 |
{
|
3927 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3928 |
|
3929 |
+
$check = isset($options['seopress_titles_noodp']);
|
3930 |
|
3931 |
echo '<input id="seopress_titles_noodp" name="seopress_titles_option_name[seopress_titles_noodp]" type="checkbox"';
|
3932 |
if ('1' == $check) echo 'checked="yes"';
|
3943 |
|
3944 |
public function seopress_titles_noimageindex_callback()
|
3945 |
{
|
3946 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3947 |
|
3948 |
+
$check = isset($options['seopress_titles_noimageindex']);
|
3949 |
|
3950 |
echo '<input id="seopress_titles_noimageindex" name="seopress_titles_option_name[seopress_titles_noimageindex]" type="checkbox"';
|
3951 |
if ('1' == $check) echo 'checked="yes"';
|
3962 |
|
3963 |
public function seopress_titles_noarchive_callback()
|
3964 |
{
|
3965 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3966 |
|
3967 |
+
$check = isset($options['seopress_titles_noarchive']);
|
3968 |
|
3969 |
echo '<input id="seopress_titles_noarchive" name="seopress_titles_option_name[seopress_titles_noarchive]" type="checkbox"';
|
3970 |
if ('1' == $check) echo 'checked="yes"';
|
3981 |
|
3982 |
public function seopress_titles_nosnippet_callback()
|
3983 |
{
|
3984 |
+
$options = get_option( 'seopress_titles_option_name' );
|
3985 |
|
3986 |
+
$check = isset($options['seopress_titles_nosnippet']);
|
3987 |
|
3988 |
echo '<input id="seopress_titles_nosnippet" name="seopress_titles_option_name[seopress_titles_nosnippet]" type="checkbox"';
|
3989 |
if ('1' == $check) echo 'checked="yes"';
|
4000 |
|
4001 |
public function seopress_titles_nositelinkssearchbox_callback()
|
4002 |
{
|
4003 |
+
$options = get_option( 'seopress_titles_option_name' );
|
4004 |
|
4005 |
+
$check = isset($options['seopress_titles_nositelinkssearchbox']);
|
4006 |
|
4007 |
echo '<input id="seopress_titles_nositelinkssearchbox" name="seopress_titles_option_name[seopress_titles_nositelinkssearchbox]" type="checkbox"';
|
4008 |
if ('1' == $check) echo 'checked="yes"';
|
4080 |
|
4081 |
public function seopress_xml_sitemap_img_enable_callback()
|
4082 |
{
|
4083 |
+
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4084 |
|
4085 |
+
$check = isset($options['seopress_xml_sitemap_img_enable']);
|
4086 |
|
4087 |
echo '<input id="seopress_xml_sitemap_img_enable" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_img_enable]" type="checkbox"';
|
4088 |
if ('1' == $check) echo 'checked="yes"';
|
4108 |
public function seopress_xml_sitemap_video_enable_callback()
|
4109 |
{
|
4110 |
if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
4111 |
+
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4112 |
|
4113 |
+
$check = isset($options['seopress_xml_sitemap_video_enable']);
|
4114 |
|
4115 |
echo '<input id="seopress_xml_sitemap_video_enable" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_video_enable]" type="checkbox"';
|
4116 |
if ('1' == $check) echo 'checked="yes"';
|
4136 |
|
4137 |
public function seopress_xml_sitemap_author_enable_callback()
|
4138 |
{
|
4139 |
+
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4140 |
|
4141 |
+
$check = isset($options['seopress_xml_sitemap_author_enable']);
|
4142 |
|
4143 |
echo '<input id="seopress_xml_sitemap_author_enable" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_author_enable]" type="checkbox"';
|
4144 |
if ('1' == $check) echo 'checked="yes"';
|
4155 |
|
4156 |
public function seopress_xml_sitemap_html_enable_callback()
|
4157 |
{
|
4158 |
+
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4159 |
|
4160 |
+
$check = isset($options['seopress_xml_sitemap_html_enable']);
|
4161 |
|
4162 |
echo '<input id="seopress_xml_sitemap_html_enable" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_html_enable]" type="checkbox"';
|
4163 |
if ('1' == $check) echo 'checked="yes"';
|
4180 |
|
4181 |
public function seopress_xml_sitemap_post_types_list_callback()
|
4182 |
{
|
4183 |
+
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4184 |
|
4185 |
+
$check = isset($options['seopress_xml_sitemap_post_types_list']);
|
4186 |
|
4187 |
global $wp_post_types;
|
4188 |
|
4203 |
//List all post types
|
4204 |
echo '<div class="seopress_wrap_single_cpt">';
|
4205 |
|
4206 |
+
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4207 |
|
4208 |
+
$check = isset($options['seopress_xml_sitemap_post_types_list'][$seopress_cpt_key]['include']);
|
4209 |
|
4210 |
echo '<input id="seopress_xml_sitemap_post_types_list_include['.$seopress_cpt_key.']" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_post_types_list]['.$seopress_cpt_key.'][include]" type="checkbox"';
|
4211 |
if ('1' == $check) echo 'checked="yes"';
|
4227 |
|
4228 |
public function seopress_xml_sitemap_taxonomies_list_callback()
|
4229 |
{
|
4230 |
+
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4231 |
|
4232 |
+
$check = isset($options['seopress_xml_sitemap_taxonomies_list']);
|
4233 |
|
4234 |
$args = array(
|
4235 |
'show_ui' => true,
|
4236 |
'public' => true,
|
4237 |
+
|
4238 |
);
|
4239 |
$output = 'objects'; // or objects
|
4240 |
$operator = 'and'; // 'and' or 'or'
|
4241 |
+
$taxonomies = get_taxonomies( $args, $output, $operator );
|
4242 |
|
4243 |
foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) {
|
4244 |
|
4247 |
//List all taxonomies
|
4248 |
echo '<div class="seopress_wrap_single_tax">';
|
4249 |
|
4250 |
+
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4251 |
|
4252 |
+
$check = isset($options['seopress_xml_sitemap_taxonomies_list'][$seopress_tax_key]['include']);
|
4253 |
|
4254 |
echo '<input id="seopress_xml_sitemap_taxonomies_list_include['.$seopress_tax_key.']" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_taxonomies_list]['.$seopress_tax_key.'][include]" type="checkbox"';
|
4255 |
if ('1' == $check) echo 'checked="yes"';
|
4294 |
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4295 |
|
4296 |
$selected = isset($options['seopress_xml_sitemap_html_order']) ? $options['seopress_xml_sitemap_html_order'] : NULL;
|
4297 |
+
|
4298 |
echo '<select id="seopress_xml_sitemap_html_order" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_html_order]">';
|
4299 |
echo ' <option ';
|
4300 |
if ('DESC' == $selected) echo 'selected="selected"';
|
4314 |
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4315 |
|
4316 |
$selected = isset($options['seopress_xml_sitemap_html_orderby']) ? $options['seopress_xml_sitemap_html_orderby'] : NULL;
|
4317 |
+
|
4318 |
echo '<select id="seopress_xml_sitemap_html_orderby" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_html_orderby]">';
|
4319 |
echo ' <option ';
|
4320 |
if ('date' == $selected) echo 'selected="selected"';
|
4340 |
|
4341 |
public function seopress_xml_sitemap_html_date_callback()
|
4342 |
{
|
4343 |
+
$options = get_option( 'seopress_xml_sitemap_option_name' );
|
4344 |
|
4345 |
+
$check = isset($options['seopress_xml_sitemap_html_date']);
|
4346 |
|
4347 |
echo '<input id="seopress_xml_sitemap_html_date" name="seopress_xml_sitemap_option_name[seopress_xml_sitemap_html_date]" type="checkbox"';
|
4348 |
if ('1' == $check) echo 'checked="yes"';
|
4357 |
|
4358 |
public function seopress_social_knowledge_type_callback()
|
4359 |
{
|
4360 |
+
$options = get_option( 'seopress_social_option_name' );
|
4361 |
|
4362 |
$selected = isset($options['seopress_social_knowledge_type']) ? $options['seopress_social_knowledge_type'] : NULL;
|
4363 |
|
4396 |
|
4397 |
$check = isset($options['seopress_social_knowledge_img']);
|
4398 |
|
4399 |
+
echo '<input id="seopress_social_knowledge_img_meta" type="text" value="'.$options_set.'" name="seopress_social_option_name[seopress_social_knowledge_img]" aria-label="'.__('Your photo/organization logo','wp-seopress').'" placeholder="'.esc_html__('Select your logo','wp-seopress').'"/>
|
4400 |
|
4401 |
<input id="seopress_social_knowledge_img_upload" class="button" type="button" value="'.__('Upload an Image','wp-seopress').'" />';
|
4402 |
|
4434 |
|
4435 |
public function seopress_social_knowledge_contact_type_callback()
|
4436 |
{
|
4437 |
+
$options = get_option( 'seopress_social_option_name' );
|
4438 |
|
4439 |
$selected = isset($options['seopress_social_knowledge_contact_type']) ? $options['seopress_social_knowledge_contact_type'] : NULL;
|
4440 |
|
4478 |
|
4479 |
public function seopress_social_knowledge_contact_option_callback()
|
4480 |
{
|
4481 |
+
$options = get_option( 'seopress_social_option_name' );
|
4482 |
|
4483 |
$selected = isset($options['seopress_social_knowledge_contact_option']) ? $options['seopress_social_knowledge_contact_option'] : NULL;
|
4484 |
|
4522 |
|
4523 |
);
|
4524 |
|
4525 |
+
}
|
4526 |
|
4527 |
public function seopress_social_accounts_pinterest_callback()
|
4528 |
{
|
4610 |
|
4611 |
public function seopress_social_facebook_og_callback()
|
4612 |
{
|
4613 |
+
$options = get_option( 'seopress_social_option_name' );
|
4614 |
|
4615 |
+
$check = isset($options['seopress_social_facebook_og']);
|
4616 |
|
4617 |
echo '<input id="seopress_social_facebook_og" name="seopress_social_option_name[seopress_social_facebook_og]" type="checkbox"';
|
4618 |
if ('1' == $check) echo 'checked="yes"';
|
4631 |
|
4632 |
$options_set = isset($options['seopress_social_facebook_img']) ? esc_attr($options['seopress_social_facebook_img']) : NULL;
|
4633 |
|
4634 |
+
echo '<input id="seopress_social_fb_img_meta" type="text" value="'.$options_set.'" name="seopress_social_option_name[seopress_social_facebook_img]" aria-label="'.__('Select a default image','wp-seopress').'" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'"/>
|
4635 |
|
4636 |
<input id="seopress_social_fb_img_upload" class="button" type="button" value="'.__('Upload an Image','wp-seopress').'" />';
|
4637 |
|
4667 |
|
4668 |
public function seopress_social_facebook_img_cpt_callback()
|
4669 |
{
|
4670 |
+
if(!empty( seopress_get_post_types() ) ) {
|
4671 |
$post_types = seopress_get_post_types();
|
4672 |
unset($post_types['post'], $post_types['page']);
|
4673 |
|
4674 |
+
if(!empty( $post_types ) ) {
|
4675 |
foreach ($post_types as $seopress_cpt_key => $seopress_cpt_value) {
|
4676 |
echo '<h2>'.$seopress_cpt_value->labels->name.' <em><small>['.$seopress_cpt_value->name.']</small></em></h2>';
|
4677 |
|
4680 |
$options_set = isset($options['seopress_social_facebook_img_cpt'][$seopress_cpt_key]['url']) ? esc_attr($options['seopress_social_facebook_img_cpt'][$seopress_cpt_key]['url']) : NULL;
|
4681 |
|
4682 |
echo '<p>
|
4683 |
+
<input id="seopress_social_facebook_img_cpt_meta['.$seopress_cpt_key.']" class="seopress_social_facebook_img_cpt_meta" type="text" value="'.$options_set.'" name="seopress_social_option_name[seopress_social_facebook_img_cpt]['.$seopress_cpt_key.'][url]" aria-label="'.__('Select a default image','wp-seopress').'" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'"/>
|
4684 |
|
4685 |
<input id="seopress_social_facebook_img_cpt['.$seopress_cpt_key.']" class="seopress_social_facebook_img_cpt button" type="button" value="'.__('Upload an Image','wp-seopress').'" />
|
4686 |
</p>';
|
4737 |
|
4738 |
public function seopress_social_twitter_card_callback()
|
4739 |
{
|
4740 |
+
$options = get_option( 'seopress_social_option_name' );
|
4741 |
|
4742 |
+
$check = isset($options['seopress_social_twitter_card']);
|
4743 |
|
4744 |
echo '<input id="seopress_social_twitter_card" name="seopress_social_option_name[seopress_social_twitter_card]" type="checkbox"';
|
4745 |
if ('1' == $check) echo 'checked="yes"';
|
4754 |
|
4755 |
public function seopress_social_twitter_card_og_callback()
|
4756 |
{
|
4757 |
+
$options = get_option( 'seopress_social_option_name' );
|
4758 |
|
4759 |
+
$check = isset($options['seopress_social_twitter_card_og']);
|
4760 |
|
4761 |
echo '<input id="seopress_social_twitter_card_og" name="seopress_social_option_name[seopress_social_twitter_card_og]" type="checkbox"';
|
4762 |
if ('1' == $check) echo 'checked="yes"';
|
4770 |
}
|
4771 |
|
4772 |
public function seopress_social_twitter_card_img_callback()
|
4773 |
+
{
|
4774 |
$options = get_option( 'seopress_social_option_name' );
|
4775 |
|
4776 |
$options_set = isset($options['seopress_social_twitter_card_img']) ? esc_attr($options['seopress_social_twitter_card_img']) : NULL;
|
4777 |
|
4778 |
+
$check = isset($options['seopress_social_twitter_card_img']);
|
4779 |
|
4780 |
+
echo '<input id="seopress_social_twitter_img_meta" type="text" value="'.$options_set.'" name="seopress_social_option_name[seopress_social_twitter_card_img]" aria-label="'.__('Default Twitter Image','wp-seopress').'" placeholder="'.esc_html__('Select your default thumbnail','wp-seopress').'"/>
|
4781 |
|
4782 |
<input id="seopress_social_twitter_img_upload" class="button" type="button" value="'.__('Upload an Image','wp-seopress').'" />';
|
4783 |
|
4789 |
}
|
4790 |
|
4791 |
public function seopress_social_twitter_card_img_size_callback()
|
4792 |
+
{
|
4793 |
+
$options = get_option( 'seopress_social_option_name' );
|
4794 |
|
4795 |
$selected = isset($options['seopress_social_twitter_card_img_size']) ? $options['seopress_social_twitter_card_img_size'] : NULL;
|
4796 |
|
4810 |
|
4811 |
public function seopress_google_analytics_enable_callback()
|
4812 |
{
|
4813 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
4814 |
|
4815 |
+
$check = isset($options['seopress_google_analytics_enable']);
|
4816 |
|
4817 |
echo '<input id="seopress_google_analytics_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_enable]" type="checkbox"';
|
4818 |
if ('1' == $check) echo 'checked="yes"';
|
4840 |
|
4841 |
public function seopress_google_analytics_disable_callback()
|
4842 |
{
|
4843 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
4844 |
|
4845 |
+
$check = isset($options['seopress_google_analytics_disable']);
|
4846 |
|
4847 |
echo '<input id="seopress_google_analytics_disable" name="seopress_google_analytics_option_name[seopress_google_analytics_disable]" type="checkbox"';
|
4848 |
if ('1' == $check) echo 'checked="yes"';
|
5059 |
|
5060 |
public function seopress_google_analytics_roles_callback()
|
5061 |
{
|
5062 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5063 |
|
5064 |
global $wp_roles;
|
5065 |
|
5068 |
|
5069 |
foreach ($wp_roles->get_names() as $key => $value) {
|
5070 |
|
5071 |
+
$check = isset($options['seopress_google_analytics_roles'][$key]);
|
5072 |
|
5073 |
echo '<input id="seopress_google_analytics_roles_'.$key.'" name="seopress_google_analytics_option_name[seopress_google_analytics_roles]['.$key.']" type="checkbox"';
|
5074 |
if ('1' == $check) echo 'checked="yes"';
|
5190 |
|
5191 |
public function seopress_google_analytics_link_attribution_callback()
|
5192 |
{
|
5193 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5194 |
|
5195 |
+
$check = isset($options['seopress_google_analytics_link_attribution']);
|
5196 |
|
5197 |
echo '<input id="seopress_google_analytics_link_attribution" name="seopress_google_analytics_option_name[seopress_google_analytics_link_attribution]" type="checkbox"';
|
5198 |
if ('1' == $check) echo 'checked="yes"';
|
5208 |
if (isset($this->options['seopress_google_analytics_link_attribution'])) {
|
5209 |
esc_attr( $this->options['seopress_google_analytics_link_attribution']);
|
5210 |
}
|
5211 |
+
}
|
5212 |
|
5213 |
public function seopress_google_analytics_cross_enable_callback()
|
5214 |
{
|
5215 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5216 |
|
5217 |
+
$check = isset($options['seopress_google_analytics_cross_enable']);
|
5218 |
|
5219 |
echo '<input id="seopress_google_analytics_cross_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_cross_enable]" type="checkbox"';
|
5220 |
if ('1' == $check) echo 'checked="yes"';
|
5246 |
|
5247 |
public function seopress_google_analytics_link_tracking_enable_callback()
|
5248 |
{
|
5249 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5250 |
|
5251 |
+
$check = isset($options['seopress_google_analytics_link_tracking_enable']);
|
5252 |
|
5253 |
echo '<input id="seopress_google_analytics_link_tracking_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_link_tracking_enable]" type="checkbox"';
|
5254 |
if ('1' == $check) echo 'checked="yes"';
|
5263 |
|
5264 |
public function seopress_google_analytics_download_tracking_enable_callback()
|
5265 |
{
|
5266 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5267 |
|
5268 |
+
$check = isset($options['seopress_google_analytics_download_tracking_enable']);
|
5269 |
|
5270 |
echo '<input id="seopress_google_analytics_download_tracking_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_download_tracking_enable]" type="checkbox"';
|
5271 |
if ('1' == $check) echo 'checked="yes"';
|
5294 |
|
5295 |
public function seopress_google_analytics_affiliate_tracking_enable_callback()
|
5296 |
{
|
5297 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5298 |
|
5299 |
+
$check = isset($options['seopress_google_analytics_affiliate_tracking_enable']);
|
5300 |
|
5301 |
echo '<input id="seopress_google_analytics_affiliate_tracking_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_affiliate_tracking_enable]" type="checkbox"';
|
5302 |
if ('1' == $check) echo 'checked="yes"';
|
5325 |
|
5326 |
public function seopress_google_analytics_cd_author_callback()
|
5327 |
{
|
5328 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5329 |
|
5330 |
$selected = isset($options['seopress_google_analytics_cd_author']) ? $options['seopress_google_analytics_cd_author'] : NULL;
|
5331 |
|
5348 |
|
5349 |
public function seopress_google_analytics_cd_category_callback()
|
5350 |
{
|
5351 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5352 |
|
5353 |
$selected = isset($options['seopress_google_analytics_cd_category']) ? $options['seopress_google_analytics_cd_category'] : NULL;
|
5354 |
|
5371 |
|
5372 |
public function seopress_google_analytics_cd_tag_callback()
|
5373 |
{
|
5374 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5375 |
|
5376 |
$selected = isset($options['seopress_google_analytics_cd_tag']) ? $options['seopress_google_analytics_cd_tag'] : NULL;
|
5377 |
|
5394 |
|
5395 |
public function seopress_google_analytics_cd_post_type_callback()
|
5396 |
{
|
5397 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5398 |
|
5399 |
$selected = isset($options['seopress_google_analytics_cd_post_type']) ? $options['seopress_google_analytics_cd_post_type'] : NULL;
|
5400 |
|
5417 |
|
5418 |
public function seopress_google_analytics_cd_logged_in_user_callback()
|
5419 |
{
|
5420 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5421 |
|
5422 |
$selected = isset($options['seopress_google_analytics_cd_logged_in_user']) ? $options['seopress_google_analytics_cd_logged_in_user'] : NULL;
|
5423 |
|
5440 |
|
5441 |
public function seopress_google_analytics_matomo_enable_callback()
|
5442 |
{
|
5443 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5444 |
|
5445 |
+
$check = isset($options['seopress_google_analytics_matomo_enable']);
|
5446 |
|
5447 |
echo '<input id="seopress_google_analytics_matomo_enable" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_enable]" type="checkbox"';
|
5448 |
if ('1' == $check) echo 'checked="yes"';
|
5485 |
|
5486 |
public function seopress_google_analytics_matomo_subdomains_callback()
|
5487 |
{
|
5488 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5489 |
|
5490 |
+
$check = isset($options['seopress_google_analytics_matomo_subdomains']);
|
5491 |
|
5492 |
echo '<input id="seopress_google_analytics_matomo_subdomains" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_subdomains]" type="checkbox"';
|
5493 |
if ('1' == $check) echo 'checked="yes"';
|
5504 |
|
5505 |
public function seopress_google_analytics_matomo_site_domain_callback()
|
5506 |
{
|
5507 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5508 |
|
5509 |
+
$check = isset($options['seopress_google_analytics_matomo_site_domain']);
|
5510 |
|
5511 |
echo '<input id="seopress_google_analytics_matomo_site_domain" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_site_domain]" type="checkbox"';
|
5512 |
if ('1' == $check) echo 'checked="yes"';
|
5523 |
|
5524 |
public function seopress_google_analytics_matomo_no_js_callback()
|
5525 |
{
|
5526 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5527 |
|
5528 |
+
$check = isset($options['seopress_google_analytics_matomo_no_js']);
|
5529 |
|
5530 |
echo '<input id="seopress_google_analytics_matomo_no_js" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_no_js]" type="checkbox"';
|
5531 |
if ('1' == $check) echo 'checked="yes"';
|
5540 |
|
5541 |
public function seopress_google_analytics_matomo_cross_domain_callback()
|
5542 |
{
|
5543 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5544 |
|
5545 |
+
$check = isset($options['seopress_google_analytics_matomo_cross_domain']);
|
5546 |
|
5547 |
echo '<input id="seopress_google_analytics_matomo_cross_domain" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_cross_domain]" type="checkbox"';
|
5548 |
if ('1' == $check) echo 'checked="yes"';
|
5571 |
|
5572 |
public function seopress_google_analytics_matomo_dnt_callback()
|
5573 |
{
|
5574 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5575 |
|
5576 |
+
$check = isset($options['seopress_google_analytics_matomo_dnt']);
|
5577 |
|
5578 |
echo '<input id="seopress_google_analytics_matomo_dnt" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_dnt]" type="checkbox"';
|
5579 |
if ('1' == $check) echo 'checked="yes"';
|
5590 |
|
5591 |
public function seopress_google_analytics_matomo_no_cookies_callback()
|
5592 |
{
|
5593 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5594 |
|
5595 |
+
$check = isset($options['seopress_google_analytics_matomo_no_cookies']);
|
5596 |
|
5597 |
echo '<input id="seopress_google_analytics_matomo_no_cookies" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_no_cookies]" type="checkbox"';
|
5598 |
if ('1' == $check) echo 'checked="yes"';
|
5607 |
|
5608 |
public function seopress_google_analytics_matomo_link_tracking_callback()
|
5609 |
{
|
5610 |
+
$options = get_option( 'seopress_google_analytics_option_name' );
|
5611 |
|
5612 |
+
$check = isset($options['seopress_google_analytics_matomo_link_tracking']);
|
5613 |
|
5614 |
echo '<input id="seopress_google_analytics_matomo_link_tracking" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_link_tracking]" type="checkbox"';
|
5615 |
if ('1' == $check) echo 'checked="yes"';
|
5630 |
|
5631 |
public function seopress_advanced_advanced_attachments_callback()
|
5632 |
{
|
5633 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5634 |
|
5635 |
+
$check = isset($options['seopress_advanced_advanced_attachments']);
|
5636 |
|
5637 |
echo '<input id="seopress_advanced_advanced_attachments" name="seopress_advanced_option_name[seopress_advanced_advanced_attachments]" type="checkbox"';
|
5638 |
if ('1' == $check) echo 'checked="yes"';
|
5647 |
|
5648 |
public function seopress_advanced_advanced_attachments_file_callback()
|
5649 |
{
|
5650 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5651 |
|
5652 |
+
$check = isset($options['seopress_advanced_advanced_attachments_file']);
|
5653 |
|
5654 |
echo '<input id="seopress_advanced_advanced_attachments_file" name="seopress_advanced_option_name[seopress_advanced_advanced_attachments_file]" type="checkbox"';
|
5655 |
if ('1' == $check) echo 'checked="yes"';
|
5662 |
if (isset($this->options['seopress_advanced_advanced_attachments_file'])) {
|
5663 |
esc_attr( $this->options['seopress_advanced_advanced_attachments_file']);
|
5664 |
}
|
5665 |
+
}
|
5666 |
|
5667 |
public function seopress_advanced_advanced_replytocom_callback()
|
5668 |
{
|
5669 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5670 |
|
5671 |
+
$check = isset($options['seopress_advanced_advanced_replytocom']);
|
5672 |
|
5673 |
echo '<input id="seopress_advanced_advanced_replytocom" name="seopress_advanced_option_name[seopress_advanced_advanced_replytocom]" type="checkbox"';
|
5674 |
if ('1' == $check) echo 'checked="yes"';
|
5683 |
|
5684 |
public function seopress_advanced_advanced_image_auto_title_editor_callback()
|
5685 |
{
|
5686 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5687 |
|
5688 |
+
$check = isset($options['seopress_advanced_advanced_image_auto_title_editor']);
|
5689 |
|
5690 |
echo '<input id="seopress_advanced_advanced_image_auto_title_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_image_auto_title_editor]" type="checkbox"';
|
5691 |
if ('1' == $check) echo 'checked="yes"';
|
5700 |
|
5701 |
public function seopress_advanced_advanced_image_auto_alt_editor_callback()
|
5702 |
{
|
5703 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5704 |
|
5705 |
+
$check = isset($options['seopress_advanced_advanced_image_auto_alt_editor']);
|
5706 |
|
5707 |
echo '<input id="seopress_advanced_advanced_image_auto_alt_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_image_auto_alt_editor]" type="checkbox"';
|
5708 |
if ('1' == $check) echo 'checked="yes"';
|
5721 |
|
5722 |
public function seopress_advanced_advanced_image_auto_alt_target_kw_callback()
|
5723 |
{
|
5724 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5725 |
|
5726 |
$check = isset($options['seopress_advanced_advanced_image_auto_alt_target_kw']);
|
5727 |
|
5740 |
|
5741 |
public function seopress_advanced_advanced_image_auto_caption_editor_callback()
|
5742 |
{
|
5743 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5744 |
|
5745 |
+
$check = isset($options['seopress_advanced_advanced_image_auto_caption_editor']);
|
5746 |
|
5747 |
echo '<input id="seopress_advanced_advanced_image_auto_caption_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_image_auto_caption_editor]" type="checkbox"';
|
5748 |
if ('1' == $check) echo 'checked="yes"';
|
5757 |
|
5758 |
public function seopress_advanced_advanced_image_auto_desc_editor_callback()
|
5759 |
{
|
5760 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5761 |
|
5762 |
+
$check = isset($options['seopress_advanced_advanced_image_auto_desc_editor']);
|
5763 |
|
5764 |
echo '<input id="seopress_advanced_advanced_image_auto_desc_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_image_auto_desc_editor]" type="checkbox"';
|
5765 |
if ('1' == $check) echo 'checked="yes"';
|
5774 |
|
5775 |
public function seopress_advanced_advanced_tax_desc_editor_callback()
|
5776 |
{
|
5777 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5778 |
|
5779 |
+
$check = isset($options['seopress_advanced_advanced_tax_desc_editor']);
|
5780 |
|
5781 |
echo '<input id="seopress_advanced_advanced_tax_desc_editor" name="seopress_advanced_option_name[seopress_advanced_advanced_tax_desc_editor]" type="checkbox"';
|
5782 |
if ('1' == $check) echo 'checked="yes"';
|
5791 |
|
5792 |
public function seopress_advanced_advanced_category_url_callback()
|
5793 |
{
|
5794 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5795 |
|
5796 |
+
$check = isset($options['seopress_advanced_advanced_category_url']);
|
5797 |
|
5798 |
echo '<input id="seopress_advanced_advanced_category_url" name="seopress_advanced_option_name[seopress_advanced_advanced_category_url]" type="checkbox"';
|
5799 |
if ('1' == $check) echo 'checked="yes"';
|
5808 |
|
5809 |
public function seopress_advanced_advanced_trailingslash_callback()
|
5810 |
{
|
5811 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5812 |
|
5813 |
+
$check = isset($options['seopress_advanced_advanced_trailingslash']);
|
5814 |
|
5815 |
echo '<input id="seopress_advanced_advanced_trailingslash" name="seopress_advanced_option_name[seopress_advanced_advanced_trailingslash]" type="checkbox"';
|
5816 |
if ('1' == $check) echo 'checked="yes"';
|
5825 |
|
5826 |
public function seopress_advanced_advanced_wp_generator_callback()
|
5827 |
{
|
5828 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5829 |
|
5830 |
+
$check = isset($options['seopress_advanced_advanced_wp_generator']);
|
5831 |
|
5832 |
echo '<input id="seopress_advanced_advanced_wp_generator" name="seopress_advanced_option_name[seopress_advanced_advanced_wp_generator]" type="checkbox"';
|
5833 |
if ('1' == $check) echo 'checked="yes"';
|
5842 |
|
5843 |
public function seopress_advanced_advanced_hentry_callback()
|
5844 |
{
|
5845 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5846 |
|
5847 |
+
$check = isset($options['seopress_advanced_advanced_hentry']);
|
5848 |
|
5849 |
echo '<input id="seopress_advanced_advanced_hentry" name="seopress_advanced_option_name[seopress_advanced_advanced_hentry]" type="checkbox"';
|
5850 |
if ('1' == $check) echo 'checked="yes"';
|
5876 |
|
5877 |
public function seopress_advanced_advanced_comments_website_callback()
|
5878 |
{
|
5879 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5880 |
|
5881 |
$check = isset($options['seopress_advanced_advanced_comments_website']);
|
5882 |
|
5893 |
|
5894 |
public function seopress_advanced_advanced_wp_shortlink_callback()
|
5895 |
{
|
5896 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5897 |
|
5898 |
+
$check = isset($options['seopress_advanced_advanced_wp_shortlink']);
|
5899 |
|
5900 |
echo '<input id="seopress_advanced_advanced_wp_shortlink" name="seopress_advanced_option_name[seopress_advanced_advanced_wp_shortlink]" type="checkbox"';
|
5901 |
if ('1' == $check) echo 'checked="yes"';
|
5958 |
|
5959 |
public function seopress_advanced_advanced_bing_callback()
|
5960 |
{
|
5961 |
+
$check = isset($this->options['seopress_advanced_advanced_bing']) ? $this->options['seopress_advanced_advanced_bing'] : NULL;
|
5962 |
|
5963 |
+
printf(
|
5964 |
'<input type="text" name="seopress_advanced_option_name[seopress_advanced_advanced_bing]" placeholder="'.esc_html__('Enter Bing meta value site verification','wp-seopress').'" aria-label="'.__('Bing site verification','wp-seopress').'" value="%s"/>',
|
5965 |
esc_html( $check )
|
5966 |
|
5967 |
);
|
5968 |
+
echo '<p class="description">'.__('If your site is already verified in <strong>Bing Webmaster tools</strong>, you can leave this field empty.','wp-seopress').'</p>';
|
5969 |
|
5970 |
}
|
5971 |
|
5972 |
public function seopress_advanced_advanced_pinterest_callback()
|
5973 |
{
|
5974 |
$check = isset($this->options['seopress_advanced_advanced_pinterest']) ? $this->options['seopress_advanced_advanced_pinterest'] : NULL;
|
5975 |
+
|
5976 |
printf(
|
5977 |
'<input type="text" name="seopress_advanced_option_name[seopress_advanced_advanced_pinterest]" placeholder="'.esc_html__('Enter Pinterest meta value site verification','wp-seopress').'" aria-label="'.__('Pinterest site verification','wp-seopress').'" value="%s"/>',
|
5978 |
esc_html( $check )
|
5995 |
|
5996 |
public function seopress_advanced_appearance_adminbar_callback()
|
5997 |
{
|
5998 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
5999 |
|
6000 |
+
$check = isset($options['seopress_advanced_appearance_adminbar']);
|
6001 |
|
6002 |
echo '<input id="seopress_advanced_appearance_adminbar" name="seopress_advanced_option_name[seopress_advanced_appearance_adminbar]" type="checkbox"';
|
6003 |
if ('1' == $check) echo 'checked="yes"';
|
6012 |
|
6013 |
public function seopress_advanced_appearance_metaboxe_position_callback()
|
6014 |
{
|
6015 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6016 |
|
6017 |
$selected = isset($options['seopress_advanced_appearance_metaboxe_position']) ? $options['seopress_advanced_appearance_metaboxe_position'] : NULL;
|
6018 |
|
6057 |
|
6058 |
public function seopress_advanced_appearance_notifications_callback()
|
6059 |
{
|
6060 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6061 |
|
6062 |
+
$check = isset($options['seopress_advanced_appearance_notifications']);
|
6063 |
|
6064 |
echo '<input id="seopress_advanced_appearance_notifications" name="seopress_advanced_option_name[seopress_advanced_appearance_notifications]" type="checkbox"';
|
6065 |
if ('1' == $check) echo 'checked="yes"';
|
6070 |
if (isset($this->options['seopress_advanced_appearance_notifications'])) {
|
6071 |
esc_attr( $this->options['seopress_advanced_appearance_notifications']);
|
6072 |
}
|
6073 |
+
}
|
6074 |
|
6075 |
public function seopress_advanced_appearance_seo_tools_callback()
|
6076 |
{
|
6077 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6078 |
|
6079 |
+
$check = isset($options['seopress_advanced_appearance_seo_tools']);
|
6080 |
|
6081 |
echo '<input id="seopress_advanced_appearance_seo_tools" name="seopress_advanced_option_name[seopress_advanced_appearance_seo_tools]" type="checkbox"';
|
6082 |
if ('1' == $check) echo 'checked="yes"';
|
6087 |
if (isset($this->options['seopress_advanced_appearance_seo_tools'])) {
|
6088 |
esc_attr( $this->options['seopress_advanced_appearance_seo_tools']);
|
6089 |
}
|
6090 |
+
}
|
6091 |
|
6092 |
public function seopress_advanced_appearance_useful_links_callback()
|
6093 |
{
|
6094 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6095 |
|
6096 |
+
$check = isset($options['seopress_advanced_appearance_useful_links']);
|
6097 |
|
6098 |
echo '<input id="seopress_advanced_appearance_useful_links" name="seopress_advanced_option_name[seopress_advanced_appearance_useful_links]" type="checkbox"';
|
6099 |
if ('1' == $check) echo 'checked="yes"';
|
6108 |
|
6109 |
public function seopress_advanced_appearance_title_col_callback()
|
6110 |
{
|
6111 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6112 |
|
6113 |
+
$check = isset($options['seopress_advanced_appearance_title_col']);
|
6114 |
|
6115 |
echo '<input id="seopress_advanced_appearance_title_col" name="seopress_advanced_option_name[seopress_advanced_appearance_title_col]" type="checkbox"';
|
6116 |
if ('1' == $check) echo 'checked="yes"';
|
6125 |
|
6126 |
public function seopress_advanced_appearance_meta_desc_col_callback()
|
6127 |
{
|
6128 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6129 |
|
6130 |
+
$check = isset($options['seopress_advanced_appearance_meta_desc_col']);
|
6131 |
|
6132 |
echo '<input id="seopress_advanced_appearance_meta_desc_col" name="seopress_advanced_option_name[seopress_advanced_appearance_meta_desc_col]" type="checkbox"';
|
6133 |
if ('1' == $check) echo 'checked="yes"';
|
6142 |
|
6143 |
public function seopress_advanced_appearance_redirect_enable_col_callback()
|
6144 |
{
|
6145 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6146 |
|
6147 |
+
$check = isset($options['seopress_advanced_appearance_redirect_enable_col']);
|
6148 |
|
6149 |
echo '<input id="seopress_advanced_appearance_redirect_enable_col" name="seopress_advanced_option_name[seopress_advanced_appearance_redirect_enable_col]" type="checkbox"';
|
6150 |
if ('1' == $check) echo 'checked="yes"';
|
6155 |
if (isset($this->options['seopress_advanced_appearance_redirect_enable_col'])) {
|
6156 |
esc_attr( $this->options['seopress_advanced_appearance_redirect_enable_col']);
|
6157 |
}
|
6158 |
+
}
|
6159 |
|
6160 |
public function seopress_advanced_appearance_redirect_url_col_callback()
|
6161 |
{
|
6162 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6163 |
|
6164 |
+
$check = isset($options['seopress_advanced_appearance_redirect_url_col']);
|
6165 |
|
6166 |
echo '<input id="seopress_advanced_appearance_redirect_url_col" name="seopress_advanced_option_name[seopress_advanced_appearance_redirect_url_col]" type="checkbox"';
|
6167 |
if ('1' == $check) echo 'checked="yes"';
|
6176 |
|
6177 |
public function seopress_advanced_appearance_canonical_callback()
|
6178 |
{
|
6179 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6180 |
|
6181 |
+
$check = isset($options['seopress_advanced_appearance_canonical']);
|
6182 |
|
6183 |
echo '<input id="seopress_advanced_appearance_canonical" name="seopress_advanced_option_name[seopress_advanced_appearance_canonical]" type="checkbox"';
|
6184 |
if ('1' == $check) echo 'checked="yes"';
|
6193 |
|
6194 |
public function seopress_advanced_appearance_target_kw_col_callback()
|
6195 |
{
|
6196 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6197 |
|
6198 |
+
$check = isset($options['seopress_advanced_appearance_target_kw_col']);
|
6199 |
|
6200 |
echo '<input id="seopress_advanced_appearance_target_kw_col" name="seopress_advanced_option_name[seopress_advanced_appearance_target_kw_col]" type="checkbox"';
|
6201 |
if ('1' == $check) echo 'checked="yes"';
|
6210 |
|
6211 |
public function seopress_advanced_appearance_noindex_col_callback()
|
6212 |
{
|
6213 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6214 |
|
6215 |
+
$check = isset($options['seopress_advanced_appearance_noindex_col']);
|
6216 |
|
6217 |
echo '<input id="seopress_advanced_appearance_noindex_col" name="seopress_advanced_option_name[seopress_advanced_appearance_noindex_col]" type="checkbox"';
|
6218 |
if ('1' == $check) echo 'checked="yes"';
|
6227 |
|
6228 |
public function seopress_advanced_appearance_nofollow_col_callback()
|
6229 |
{
|
6230 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6231 |
|
6232 |
+
$check = isset($options['seopress_advanced_appearance_nofollow_col']);
|
6233 |
|
6234 |
echo '<input id="seopress_advanced_appearance_nofollow_col" name="seopress_advanced_option_name[seopress_advanced_appearance_nofollow_col]" type="checkbox"';
|
6235 |
if ('1' == $check) echo 'checked="yes"';
|
6244 |
|
6245 |
public function seopress_advanced_appearance_words_col_callback()
|
6246 |
{
|
6247 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6248 |
|
6249 |
+
$check = isset($options['seopress_advanced_appearance_words_col']);
|
6250 |
|
6251 |
echo '<input id="seopress_advanced_appearance_words_col" name="seopress_advanced_option_name[seopress_advanced_appearance_words_col]" type="checkbox"';
|
6252 |
if ('1' == $check) echo 'checked="yes"';
|
6261 |
|
6262 |
public function seopress_advanced_appearance_w3c_col_callback()
|
6263 |
{
|
6264 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6265 |
|
6266 |
+
$check = isset($options['seopress_advanced_appearance_w3c_col']);
|
6267 |
|
6268 |
echo '<input id="seopress_advanced_appearance_w3c_col" name="seopress_advanced_option_name[seopress_advanced_appearance_w3c_col]" type="checkbox"';
|
6269 |
if ('1' == $check) echo 'checked="yes"';
|
6352 |
|
6353 |
public function seopress_advanced_appearance_genesis_seo_menu_callback()
|
6354 |
{
|
6355 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6356 |
|
6357 |
$check = isset($options['seopress_advanced_appearance_genesis_seo_menu']);
|
6358 |
|
6365 |
if (isset($this->options['seopress_advanced_appearance_genesis_seo_menu'])) {
|
6366 |
esc_attr( $this->options['seopress_advanced_appearance_genesis_seo_menu']);
|
6367 |
}
|
6368 |
+
}
|
6369 |
|
6370 |
public function seopress_advanced_appearance_advice_schema_callback()
|
6371 |
{
|
6372 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6373 |
|
6374 |
$check = isset($options['seopress_advanced_appearance_advice_schema']);
|
6375 |
|
6386 |
|
6387 |
public function seopress_advanced_security_metaboxe_role_callback()
|
6388 |
{
|
6389 |
+
$options = get_option( 'seopress_advanced_option_name' );
|
6390 |
|
6391 |
global $wp_roles;
|
6392 |
|
6428 |
|
6429 |
foreach ($wp_roles->get_names() as $key => $value) {
|
6430 |
|
6431 |
+
$check = isset($options['seopress_advanced_security_metaboxe_ca_role'][$key]);
|
6432 |
|
6433 |
echo '<input id="seopress_advanced_security_metaboxe_ca_role_'.$key.'" name="seopress_advanced_option_name[seopress_advanced_security_metaboxe_ca_role]['.$key.']" type="checkbox"';
|
6434 |
if ('1' == $check) echo 'checked="yes"';
|
@@ -2,9 +2,28 @@
|
|
2 |
defined( 'ABSPATH' ) or die( 'Please don’t call the plugin directly. Thanks :)' );
|
3 |
|
4 |
/**
|
5 |
-
*
|
|
|
|
|
|
|
|
|
6 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
|
|
|
|
|
|
8 |
function seopress_admin_bar_links() {
|
9 |
if ( current_user_can( seopress_capability( 'manage_options', 'admin_bar' ) ) ) {
|
10 |
if (function_exists('seopress_advanced_appearance_adminbar_option') && seopress_advanced_appearance_adminbar_option() !='1') {
|
@@ -13,6 +32,13 @@ function seopress_admin_bar_links() {
|
|
13 |
$title = '<span class="ab-icon icon-seopress-seopress"></span> '.__( 'SEO', 'wp-seopress' );
|
14 |
$title = apply_filters('seopress_adminbar_icon',$title);
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
// Adds a new top level admin bar link and a submenu to it
|
17 |
$wp_admin_bar->add_menu( array(
|
18 |
'parent' => false,
|
@@ -20,6 +46,49 @@ function seopress_admin_bar_links() {
|
|
20 |
'title' => $title,
|
21 |
'href' => admin_url( 'admin.php?page=seopress-option' ),
|
22 |
));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
$wp_admin_bar->add_menu( array(
|
24 |
'parent' => 'seopress_custom_top_level',
|
25 |
'id' => 'seopress_custom_sub_menu_titles',
|
2 |
defined( 'ABSPATH' ) or die( 'Please don’t call the plugin directly. Thanks :)' );
|
3 |
|
4 |
/**
|
5 |
+
* Global noindex from SEO, Titles settings
|
6 |
+
* @since 4.0
|
7 |
+
* @param string $feature
|
8 |
+
* @return string 1 if true
|
9 |
+
* @author Benjamin
|
10 |
*/
|
11 |
+
if (!function_exists('seopress_global_noindex_option')) {
|
12 |
+
function seopress_global_noindex_option() {
|
13 |
+
$seopress_titles_noindex_option = get_option("seopress_titles_option_name");
|
14 |
+
if ( ! empty ( $seopress_titles_noindex_option ) ) {
|
15 |
+
foreach ($seopress_titles_noindex_option as $key => $seopress_titles_noindex_value)
|
16 |
+
$options[$key] = $seopress_titles_noindex_value;
|
17 |
+
if (isset($seopress_titles_noindex_option['seopress_titles_noindex'])) {
|
18 |
+
return $seopress_titles_noindex_option['seopress_titles_noindex'];
|
19 |
+
}
|
20 |
+
}
|
21 |
+
}
|
22 |
+
}
|
23 |
|
24 |
+
/**
|
25 |
+
* Admin bar customization
|
26 |
+
*/
|
27 |
function seopress_admin_bar_links() {
|
28 |
if ( current_user_can( seopress_capability( 'manage_options', 'admin_bar' ) ) ) {
|
29 |
if (function_exists('seopress_advanced_appearance_adminbar_option') && seopress_advanced_appearance_adminbar_option() !='1') {
|
32 |
$title = '<span class="ab-icon icon-seopress-seopress"></span> '.__( 'SEO', 'wp-seopress' );
|
33 |
$title = apply_filters('seopress_adminbar_icon',$title);
|
34 |
|
35 |
+
if (seopress_global_noindex_option()=='1' || get_option('blog_public') !='1') {
|
36 |
+
$title .= '<span class="wrap-seopress-noindex">';
|
37 |
+
$title .= '<span class="ab-icon dashicons dashicons-hidden"></span>';
|
38 |
+
$title .= __('noindex is on!', 'wp-seopress');
|
39 |
+
$title .= '</span>';
|
40 |
+
}
|
41 |
+
|
42 |
// Adds a new top level admin bar link and a submenu to it
|
43 |
$wp_admin_bar->add_menu( array(
|
44 |
'parent' => false,
|
46 |
'title' => $title,
|
47 |
'href' => admin_url( 'admin.php?page=seopress-option' ),
|
48 |
));
|
49 |
+
|
50 |
+
//noindex/nofollow per CPT
|
51 |
+
if (function_exists('get_current_screen') && get_current_screen()->post_type !='') {
|
52 |
+
$robots = '';
|
53 |
+
|
54 |
+
$options = get_option( 'seopress_titles_option_name' );
|
55 |
+
|
56 |
+
$noindex = isset($options['seopress_titles_single_titles'][get_current_screen()->post_type]['noindex']);
|
57 |
+
$nofollow = isset($options['seopress_titles_single_titles'][get_current_screen()->post_type]['nofollow']);
|
58 |
+
|
59 |
+
$robots .= '<span class="wrap-seopress-cpt-seo">'.sprintf(__('SEO for %s','wp-seopress'), get_current_screen()->post_type).'</span>';
|
60 |
+
$robots .= '<span class="wrap-seopress-cpt-noindex">';
|
61 |
+
|
62 |
+
if ($noindex === true) {
|
63 |
+
$robots .= '<span class="ab-icon dashicons dashicons-marker on"></span>';
|
64 |
+
$robots .= __('noindex is on!', 'wp-seopress');
|
65 |
+
} else {
|
66 |
+
$robots .= '<span class="ab-icon dashicons dashicons-marker off"></span>';
|
67 |
+
$robots .= __('noindex is off.', 'wp-seopress');
|
68 |
+
}
|
69 |
+
|
70 |
+
$robots .= '</span>';
|
71 |
+
|
72 |
+
$robots .= '<span class="wrap-seopress-cpt-nofollow">';
|
73 |
+
|
74 |
+
if ($nofollow === true) {
|
75 |
+
$robots .= '<span class="ab-icon dashicons dashicons-marker on"></span>';
|
76 |
+
$robots .= __('nofollow is on!', 'wp-seopress');
|
77 |
+
} else {
|
78 |
+
$robots .= '<span class="ab-icon dashicons dashicons-marker off"></span>';
|
79 |
+
$robots .= __('nofollow is off.', 'wp-seopress');
|
80 |
+
}
|
81 |
+
|
82 |
+
$robots .= '</span>';
|
83 |
+
|
84 |
+
$wp_admin_bar->add_menu( array(
|
85 |
+
'parent' => 'seopress_custom_top_level',
|
86 |
+
'id' => 'seopress_custom_sub_menu_meta_robots',
|
87 |
+
'title' => $robots,
|
88 |
+
'href' => admin_url( 'admin.php?page=seopress-titles' ),
|
89 |
+
));
|
90 |
+
}
|
91 |
+
|
92 |
$wp_admin_bar->add_menu( array(
|
93 |
'parent' => 'seopress_custom_top_level',
|
94 |
'id' => 'seopress_custom_sub_menu_titles',
|
@@ -1440,6 +1440,132 @@ function seopress_premium_seo_pack_migration() {
|
|
1440 |
}
|
1441 |
add_action('wp_ajax_seopress_premium_seo_pack_migration', 'seopress_premium_seo_pack_migration');
|
1442 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1443 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
1444 |
//Export SEOPress metadata to CSV
|
1445 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
1440 |
}
|
1441 |
add_action('wp_ajax_seopress_premium_seo_pack_migration', 'seopress_premium_seo_pack_migration');
|
1442 |
|
1443 |
+
///////////////////////////////////////////////////////////////////////////////////////////////////
|
1444 |
+
/* wpSEO migration
|
1445 |
+
* @since 4.0
|
1446 |
+
* @author Benjamin Denis
|
1447 |
+
*/
|
1448 |
+
///////////////////////////////////////////////////////////////////////////////////////////////////
|
1449 |
+
function seopress_wpseo_migration() {
|
1450 |
+
check_ajax_referer( 'seopress_wpseo_migrate_nonce', $_POST['_ajax_nonce'], true );
|
1451 |
+
|
1452 |
+
if ( current_user_can( seopress_capability( 'manage_options', 'migration' ) ) && is_admin() ) {
|
1453 |
+
|
1454 |
+
if ( isset( $_POST['offset']) && isset( $_POST['offset'] )) {
|
1455 |
+
$offset = absint($_POST['offset']);
|
1456 |
+
}
|
1457 |
+
|
1458 |
+
global $wpdb;
|
1459 |
+
|
1460 |
+
$total_count_posts = (int)$wpdb->get_var( "SELECT count(*) FROM {$wpdb->posts}" );
|
1461 |
+
|
1462 |
+
$increment = 200;
|
1463 |
+
global $post;
|
1464 |
+
|
1465 |
+
if ($offset > $total_count_posts) {
|
1466 |
+
wp_reset_query();
|
1467 |
+
|
1468 |
+
$args = array(
|
1469 |
+
'hide_empty' => false,
|
1470 |
+
'fields' => 'ids',
|
1471 |
+
);
|
1472 |
+
$wpseo_query_terms = get_terms($args);
|
1473 |
+
|
1474 |
+
if ($wpseo_query_terms) {
|
1475 |
+
foreach ($wpseo_query_terms as $term_id) {
|
1476 |
+
if (get_option('wpseo_category_'.$term_id.'_title') !='') { //Import title tag
|
1477 |
+
update_term_meta($term_id, '_seopress_titles_title', get_option('wpseo_category_'.$term_id.'_title'));
|
1478 |
+
}
|
1479 |
+
if (get_option('wpseo_category_'.$term_id) !='') { //Import meta desc
|
1480 |
+
update_term_meta($term_id, '_seopress_titles_desc', get_option('wpseo_category_'.$term_id));
|
1481 |
+
}
|
1482 |
+
if (get_option('wpseo_category_'.$term_id.'_og_title') !='') { //Import Facebook Title
|
1483 |
+
update_term_meta($term_id, '_seopress_social_fb_title', get_option('wpseo_category_'.$term_id.'_og_title'));
|
1484 |
+
update_term_meta($term_id, '_seopress_social_twitter_title', get_option('wpseo_category_'.$term_id.'_og_title'));
|
1485 |
+
}
|
1486 |
+
if (get_option('wpseo_category_'.$term_id.'_og_desc') !='') { //Import Facebook Desc
|
1487 |
+
update_term_meta($term_id, '_seopress_social_fb_desc', get_option('wpseo_category_'.$term_id.'_og_desc'));
|
1488 |
+
update_term_meta($term_id, '_seopress_social_twitter_desc', get_option('wpseo_category_'.$term_id.'_og_desc'));
|
1489 |
+
}
|
1490 |
+
if (get_option('wpseo_category_'.$term_id.'_og_image') !='') { //Import Facebook Image
|
1491 |
+
update_term_meta($term_id, '_seopress_social_fb_img', get_option('wpseo_category_'.$term_id.'_og_image'));
|
1492 |
+
update_term_meta($term_id, '_seopress_social_twitter_img', get_option('wpseo_category_'.$term_id.'_og_image'));
|
1493 |
+
}
|
1494 |
+
if (get_option('wpseo_category_'.$term_id.'_canonical') !='') { //Import Canonical URL
|
1495 |
+
update_term_meta($term_id, '_seopress_robots_canonical', get_option('wpseo_category_'.$term_id.'_canonical'));
|
1496 |
+
}
|
1497 |
+
if (get_option('wpseo_category_'.$term_id.'_redirect') !='') { //Import Redirect URL
|
1498 |
+
update_term_meta($term_id, '_seopress_redirections_value', get_option('wpseo_category_'.$term_id.'_redirect'));
|
1499 |
+
update_term_meta($term_id, '_seopress_redirections_enabled', 'yes');
|
1500 |
+
}
|
1501 |
+
if (get_option('wpseo_category_'.$term_id.'_robots') =='4' || get_option('wpseo_category_'.$term_id.'_robots') =='5' || get_option('wpseo_category_'.$term_id.'_robots') =='3') { //Import Robots NoIndex
|
1502 |
+
update_term_meta($term_id, '_seopress_robots_index', "yes");
|
1503 |
+
}
|
1504 |
+
if (get_option('wpseo_category_'.$term_id.'_robots') =='2') { //Import Robots NoFollow
|
1505 |
+
update_term_meta($term_id, '_seopress_robots_follow', "yes");
|
1506 |
+
}
|
1507 |
+
}
|
1508 |
+
}
|
1509 |
+
$offset = 'done';
|
1510 |
+
wp_reset_query();
|
1511 |
+
} else {
|
1512 |
+
$args = array(
|
1513 |
+
'posts_per_page' => $increment,
|
1514 |
+
'post_type' => 'any',
|
1515 |
+
'post_status' => 'any',
|
1516 |
+
'offset' => $offset,
|
1517 |
+
);
|
1518 |
+
|
1519 |
+
$wpseo_query = get_posts( $args );
|
1520 |
+
|
1521 |
+
if ($wpseo_query) {
|
1522 |
+
foreach ($wpseo_query as $post) {
|
1523 |
+
if (get_post_meta($post->ID, '_wpseo_edit_title', true) !='') { //Import title tag
|
1524 |
+
update_post_meta($post->ID, '_seopress_titles_title', get_post_meta($post->ID, '_wpseo_edit_title', true));
|
1525 |
+
}
|
1526 |
+
if (get_post_meta($post->ID, '_wpseo_edit_description', true) !='') { //Import meta desc
|
1527 |
+
update_post_meta($post->ID, '_seopress_titles_desc', get_post_meta($post->ID, '_wpseo_edit_description', true));
|
1528 |
+
}
|
1529 |
+
if (get_post_meta($post->ID, '_wpseo_edit_og_title', true) !='') { //Import Facebook Title
|
1530 |
+
update_post_meta($post->ID, '_seopress_social_fb_title', get_post_meta($post->ID, '_wpseo_edit_og_title', true));
|
1531 |
+
update_post_meta($post->ID, '_seopress_social_twitter_title', get_post_meta($post->ID, '_wpseo_edit_og_title', true));
|
1532 |
+
}
|
1533 |
+
if (get_post_meta($post->ID, '_wpseo_edit_og_description', true) !='') { //Import Facebook Desc
|
1534 |
+
update_post_meta($post->ID, '_seopress_social_fb_desc', get_post_meta($post->ID, '_wpseo_edit_og_description', true));
|
1535 |
+
update_post_meta($post->ID, '_seopress_social_twitter_desc', get_post_meta($post->ID, '_wpseo_edit_og_description', true));
|
1536 |
+
}
|
1537 |
+
if (get_post_meta($post->ID, '_wpseo_edit_og_image', true) !='') { //Import Facebook Image
|
1538 |
+
update_post_meta($post->ID, '_seopress_social_fb_img', get_post_meta($post->ID, '_wpseo_edit_og_image', true));
|
1539 |
+
update_post_meta($post->ID, '_seopress_social_twitter_img', get_post_meta($post->ID, '_wpseo_edit_og_image', true));
|
1540 |
+
}
|
1541 |
+
if (get_post_meta($post->ID, '_wpseo_edit_keyword_0', true) !='') { //Import Target Keyword
|
1542 |
+
update_post_meta($post->ID, '_seopress_analysis_target_kw', get_post_meta($post->ID, '_wpseo_edit_keyword_0', true));
|
1543 |
+
}
|
1544 |
+
if (get_post_meta($post->ID, '_wpseo_edit_canonical', true) !='') { //Import Canonical URL
|
1545 |
+
update_post_meta($post->ID, '_seopress_robots_canonical', get_post_meta($post->ID, '_wpseo_edit_canonical', true));
|
1546 |
+
}
|
1547 |
+
if (get_post_meta($post->ID, '_wpseo_edit_redirect', true) !='') { //Import Redirect URL
|
1548 |
+
update_post_meta($post->ID, '_seopress_redirections_value', get_post_meta($post->ID, '_wpseo_edit_redirect', true));
|
1549 |
+
update_post_meta($post->ID, '_seopress_redirections_enabled', 'yes');//Enable the redirect
|
1550 |
+
}
|
1551 |
+
if (get_post_meta($post->ID, '_wpseo_edit_robots', true) =='4' || get_post_meta($post->ID, '_wpseo_edit_robots', true) =='5' || get_post_meta($post->ID, '_wpseo_edit_robots', true) =='3') { //Import Robots NoIndex
|
1552 |
+
update_post_meta($post->ID, '_seopress_robots_index', "yes");
|
1553 |
+
}
|
1554 |
+
if (get_post_meta($post->ID, '_wpseo_edit_robots', true) =='2') { //Import Robots NoFollow
|
1555 |
+
update_post_meta($post->ID, '_seopress_robots_follow', "yes");
|
1556 |
+
}
|
1557 |
+
}
|
1558 |
+
}
|
1559 |
+
$offset += $increment;
|
1560 |
+
}
|
1561 |
+
$data = array();
|
1562 |
+
$data['offset'] = $offset;
|
1563 |
+
wp_send_json_success($data);
|
1564 |
+
die();
|
1565 |
+
}
|
1566 |
+
}
|
1567 |
+
add_action('wp_ajax_seopress_wpseo_migration', 'seopress_wpseo_migration');
|
1568 |
+
|
1569 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
1570 |
//Export SEOPress metadata to CSV
|
1571 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -387,209 +387,208 @@ if (seopress_advanced_appearance_title_col_option() !=''
|
|
387 |
}
|
388 |
}
|
389 |
}
|
390 |
-
}
|
391 |
-
|
392 |
-
function seopress_title_columns($columns) {
|
393 |
-
if(seopress_advanced_appearance_title_col_option() !='') {
|
394 |
-
$columns['seopress_title'] = __('Title tag', 'wp-seopress');
|
395 |
-
}
|
396 |
-
if(seopress_advanced_appearance_meta_desc_col_option() !='') {
|
397 |
-
$columns['seopress_desc'] = __('Meta Desc.', 'wp-seopress');
|
398 |
-
}
|
399 |
-
if(seopress_advanced_appearance_redirect_enable_col_option() !='') {
|
400 |
-
$columns['seopress_redirect_enable'] = __('Redirect?', 'wp-seopress');
|
401 |
-
}
|
402 |
-
if(seopress_advanced_appearance_redirect_url_col_option() !='') {
|
403 |
-
$columns['seopress_redirect_url'] = __('Redirect URL', 'wp-seopress');
|
404 |
-
}
|
405 |
-
if(seopress_advanced_appearance_canonical_option() !='') {
|
406 |
-
$columns['seopress_canonical'] = __('Canonical', 'wp-seopress');
|
407 |
-
}
|
408 |
-
if(seopress_advanced_appearance_target_kw_col_option() !='') {
|
409 |
-
$columns['seopress_tkw'] = __('Target Kw', 'wp-seopress');
|
410 |
-
}
|
411 |
-
if(seopress_advanced_appearance_noindex_col_option() !='') {
|
412 |
-
$columns['seopress_noindex'] = __('Noindex?', 'wp-seopress');
|
413 |
-
}
|
414 |
-
if(seopress_advanced_appearance_nofollow_col_option() !='') {
|
415 |
-
$columns['seopress_nofollow'] = __('Nofollow?', 'wp-seopress');
|
416 |
-
}
|
417 |
-
if(seopress_advanced_appearance_score_col_option() !='') {
|
418 |
-
$columns['seopress_score'] = __('Score', 'wp-seopress');
|
419 |
-
}
|
420 |
-
if(seopress_advanced_appearance_words_col_option() !='') {
|
421 |
-
$columns['seopress_words'] = __('Words', 'wp-seopress');
|
422 |
-
}
|
423 |
-
if(seopress_advanced_appearance_w3c_col_option() !='') {
|
424 |
-
$columns['seopress_w3c'] = __('W3C check', 'wp-seopress');
|
425 |
-
}
|
426 |
-
if(seopress_advanced_appearance_ps_col_option() !='') {
|
427 |
-
$columns['seopress_ps'] = __('Page Speed', 'wp-seopress');
|
428 |
-
}
|
429 |
-
if(seopress_advanced_appearance_insights_col_option() !='') {
|
430 |
-
$columns['seopress_insights'] = __('Insights', 'wp-seopress');
|
431 |
-
}
|
432 |
-
return $columns;
|
433 |
-
}
|
434 |
-
|
435 |
-
function seopress_title_display_column($column, $post_id) {
|
436 |
-
switch ( $column ) {
|
437 |
-
case 'seopress_title' :
|
438 |
-
echo '<div id="seopress_title-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_titles_title", true)).'</div>';
|
439 |
-
break;
|
440 |
-
|
441 |
-
case 'seopress_desc';
|
442 |
-
echo '<div id="seopress_desc-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_titles_desc", true)).'</div>';
|
443 |
-
break;
|
444 |
-
|
445 |
-
case 'seopress_redirect_enable';
|
446 |
-
if (get_post_meta($post_id, "_seopress_redirections_enabled", true) =='yes') {
|
447 |
-
echo '<div id="seopress_redirect_enable-' . esc_attr($post_id) . '"><span class="dashicons dashicons-yes"></span></div>';
|
448 |
-
}
|
449 |
-
break;
|
450 |
-
case 'seopress_redirect_url';
|
451 |
-
echo '<div id="seopress_redirect_url-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_redirections_value", true)).'</div>';
|
452 |
-
break;
|
453 |
-
|
454 |
-
case 'seopress_canonical';
|
455 |
-
echo '<div id="seopress_canonical-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_robots_canonical", true)).'</div>';
|
456 |
-
break;
|
457 |
-
|
458 |
-
case 'seopress_tkw' :
|
459 |
-
echo '<div id="seopress_tkw-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_analysis_target_kw", true)).'</div>';
|
460 |
-
break;
|
461 |
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
|
478 |
-
|
479 |
-
|
480 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
|
482 |
-
|
483 |
-
|
484 |
-
|
|
|
|
|
485 |
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
case 'seopress_score' :
|
491 |
-
if (get_post_meta($post_id, "_seopress_analysis_data")) {
|
492 |
-
$ca = get_post_meta($post_id, "_seopress_analysis_data");
|
493 |
-
echo '<div class="analysis-score">';
|
494 |
-
if (isset($ca[0]["score"]) && $ca[0]["score"] == 1) {
|
495 |
-
echo '<p><svg role="img" aria-hidden="true" focusable="false" width="100%" height="100%" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
496 |
-
<circle r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0"></circle>
|
497 |
-
<circle id="bar" class="good" r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0" style="stroke-dashoffset: 50.8938px;"></circle>
|
498 |
-
</svg><span class="screen-reader-text">'.__('Good','wp-seopress').'</span></p>';
|
499 |
-
} elseif (isset($ca[0]["score"]) && $ca[0]["score"] =='') {
|
500 |
-
echo '<p><svg role="img" aria-hidden="true" focusable="false" width="100%" height="100%" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
501 |
-
<circle r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0"></circle>
|
502 |
-
<circle id="bar" class="notgood" r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0" style="stroke-dashoffset: 101.788px;"></circle>
|
503 |
-
</svg><span class="screen-reader-text">'.__('Should be improved','wp-seopress').'</span></p>';
|
504 |
-
}
|
505 |
-
echo '</div>';
|
506 |
-
}
|
507 |
-
break;
|
508 |
|
509 |
-
|
510 |
-
if ( is_plugin_active( 'wp-seopress-insights/seopress-insights.php' ) ) {
|
511 |
-
foreach( seopress_insights_query_all_rankings() as $key => $value ) {
|
512 |
-
if( !empty( $value ) && $value['url'] == get_the_permalink( $post_id ) ) {
|
513 |
-
$rankings[$value['ts']][] = [
|
514 |
-
'keyword' => get_the_title(),
|
515 |
-
'p' => $value['p'],
|
516 |
-
'url' => $value['url'],
|
517 |
-
'search_volume' => $value['search_volume'],
|
518 |
-
'cpc' => $value['cpc'],
|
519 |
-
'competition' => $value['competition'],
|
520 |
-
'date' => date('Y/m/d',$value['ts']),
|
521 |
-
];
|
522 |
-
}
|
523 |
}
|
|
|
524 |
|
525 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
|
527 |
-
|
528 |
-
|
529 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
530 |
}
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
$kws = array_unique($kws);
|
539 |
-
|
540 |
-
$html = '<ul>';
|
541 |
-
foreach( $kws as $kw ) {
|
542 |
-
$html .= '<li><span class="dashicons dashicons-minus"></span>' . $kw . '</li>';
|
543 |
-
}
|
544 |
-
$html .= '</ul>';
|
545 |
-
|
546 |
-
echo seopress_tooltip( __( 'Insights from these keywords:', 'wp-seopress-insights' ), sprintf( '%s', $html ), '' );
|
547 |
}
|
548 |
-
|
549 |
-
echo '
|
550 |
-
|
551 |
-
|
552 |
-
echo '<p class="widget-insights-title">'. __( 'Average position: ', 'wp-seopress-insights' ) . '</p>';
|
553 |
-
|
554 |
-
if ( !empty($avg_pos ) ) {
|
555 |
-
echo '<p>';
|
556 |
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
$
|
562 |
-
|
563 |
-
|
564 |
-
$p_variation_rel = '<span class="up"><span class="dashicons dashicons-arrow-up-alt"></span> '. abs( $p_variation ) . '</span>';
|
565 |
-
} elseif ($avg_pos[0] == $avg_pos[1]) {
|
566 |
-
$p_variation_rel = '<span class="stable">=</span>';
|
567 |
-
} else {
|
568 |
-
$p_variation_rel = '<span class="down"><span class="dashicons dashicons-arrow-up-alt"></span> ' . abs( $p_variation ) . '</span>';
|
569 |
}
|
570 |
-
|
571 |
-
|
|
|
572 |
}
|
573 |
-
|
574 |
echo '</p>';
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
583 |
}
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
}
|
590 |
}
|
591 |
|
592 |
-
|
593 |
|
594 |
//Sortable columns
|
595 |
foreach (seopress_get_post_types() as $key => $value) {
|
387 |
}
|
388 |
}
|
389 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
|
391 |
+
function seopress_title_columns($columns) {
|
392 |
+
if(seopress_advanced_appearance_title_col_option() !='') {
|
393 |
+
$columns['seopress_title'] = __('Title tag', 'wp-seopress');
|
394 |
+
}
|
395 |
+
if(seopress_advanced_appearance_meta_desc_col_option() !='') {
|
396 |
+
$columns['seopress_desc'] = __('Meta Desc.', 'wp-seopress');
|
397 |
+
}
|
398 |
+
if(seopress_advanced_appearance_redirect_enable_col_option() !='') {
|
399 |
+
$columns['seopress_redirect_enable'] = __('Redirect?', 'wp-seopress');
|
400 |
+
}
|
401 |
+
if(seopress_advanced_appearance_redirect_url_col_option() !='') {
|
402 |
+
$columns['seopress_redirect_url'] = __('Redirect URL', 'wp-seopress');
|
403 |
+
}
|
404 |
+
if(seopress_advanced_appearance_canonical_option() !='') {
|
405 |
+
$columns['seopress_canonical'] = __('Canonical', 'wp-seopress');
|
406 |
+
}
|
407 |
+
if(seopress_advanced_appearance_target_kw_col_option() !='') {
|
408 |
+
$columns['seopress_tkw'] = __('Target Kw', 'wp-seopress');
|
409 |
+
}
|
410 |
+
if(seopress_advanced_appearance_noindex_col_option() !='') {
|
411 |
+
$columns['seopress_noindex'] = __('Noindex?', 'wp-seopress');
|
412 |
+
}
|
413 |
+
if(seopress_advanced_appearance_nofollow_col_option() !='') {
|
414 |
+
$columns['seopress_nofollow'] = __('Nofollow?', 'wp-seopress');
|
415 |
+
}
|
416 |
+
if(seopress_advanced_appearance_score_col_option() !='') {
|
417 |
+
$columns['seopress_score'] = __('Score', 'wp-seopress');
|
418 |
+
}
|
419 |
+
if(seopress_advanced_appearance_words_col_option() !='') {
|
420 |
+
$columns['seopress_words'] = __('Words', 'wp-seopress');
|
421 |
+
}
|
422 |
+
if(seopress_advanced_appearance_w3c_col_option() !='') {
|
423 |
+
$columns['seopress_w3c'] = __('W3C check', 'wp-seopress');
|
424 |
+
}
|
425 |
+
if(seopress_advanced_appearance_ps_col_option() !='') {
|
426 |
+
$columns['seopress_ps'] = __('Page Speed', 'wp-seopress');
|
427 |
+
}
|
428 |
+
if(seopress_advanced_appearance_insights_col_option() !='') {
|
429 |
+
$columns['seopress_insights'] = __('Insights', 'wp-seopress');
|
430 |
+
}
|
431 |
+
return $columns;
|
432 |
+
}
|
433 |
|
434 |
+
function seopress_title_display_column($column, $post_id) {
|
435 |
+
switch ( $column ) {
|
436 |
+
case 'seopress_title' :
|
437 |
+
echo '<div id="seopress_title-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_titles_title", true)).'</div>';
|
438 |
+
break;
|
439 |
|
440 |
+
case 'seopress_desc';
|
441 |
+
echo '<div id="seopress_desc-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_titles_desc", true)).'</div>';
|
442 |
+
break;
|
443 |
|
444 |
+
case 'seopress_redirect_enable';
|
445 |
+
if (get_post_meta($post_id, "_seopress_redirections_enabled", true) =='yes') {
|
446 |
+
echo '<div id="seopress_redirect_enable-' . esc_attr($post_id) . '"><span class="dashicons dashicons-yes"></span></div>';
|
447 |
+
}
|
448 |
+
break;
|
449 |
+
case 'seopress_redirect_url';
|
450 |
+
echo '<div id="seopress_redirect_url-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_redirections_value", true)).'</div>';
|
451 |
+
break;
|
452 |
+
|
453 |
+
case 'seopress_canonical';
|
454 |
+
echo '<div id="seopress_canonical-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_robots_canonical", true)).'</div>';
|
455 |
+
break;
|
456 |
+
|
457 |
+
case 'seopress_tkw' :
|
458 |
+
echo '<div id="seopress_tkw-' . esc_attr($post_id) . '">'.esc_html(get_post_meta($post_id, "_seopress_analysis_target_kw", true)).'</div>';
|
459 |
+
break;
|
460 |
+
|
461 |
+
case 'seopress_noindex' :
|
462 |
+
if (get_post_meta($post_id, "_seopress_robots_index", true) =='yes') {
|
463 |
+
echo '<span class="dashicons dashicons-yes"></span>';
|
464 |
+
}
|
465 |
+
break;
|
466 |
|
467 |
+
case 'seopress_nofollow' :
|
468 |
+
if (get_post_meta($post_id, "_seopress_robots_follow", true) =='yes') {
|
469 |
+
echo '<span class="dashicons dashicons-yes"></span>';
|
470 |
+
}
|
471 |
+
break;
|
472 |
|
473 |
+
case 'seopress_words' :
|
474 |
+
if (get_the_content() !='') {
|
475 |
+
$seopress_analysis_data['words_counter'] = preg_match_all("/\p{L}[\p{L}\p{Mn}\p{Pd}'\x{2019}]*/u", strip_tags(wp_filter_nohtml_kses(get_the_content())), $matches);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
|
477 |
+
echo $seopress_analysis_data['words_counter'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
478 |
}
|
479 |
+
break;
|
480 |
|
481 |
+
case 'seopress_w3c' :
|
482 |
+
echo '<a class="seopress-button" href="https://validator.w3.org/nu/?doc='.esc_url(get_the_permalink()).'" title="'.esc_attr(__('Check code quality of this page','wp-seopress')).'" target="_blank"><span class="dashicons dashicons-clipboard"></span></a>';
|
483 |
+
break;
|
484 |
+
|
485 |
+
case 'seopress_ps' :
|
486 |
+
echo '<div class="seopress-request-page-speed seopress-button" data_permalink="'.esc_url(get_the_permalink()).'" title="'.esc_attr(__('Analyze this page with Google Page Speed','wp-seopress')).'"><span class="dashicons dashicons-dashboard"></span></div>';
|
487 |
+
break;
|
488 |
|
489 |
+
case 'seopress_score' :
|
490 |
+
if (get_post_meta($post_id, "_seopress_analysis_data")) {
|
491 |
+
$ca = get_post_meta($post_id, "_seopress_analysis_data");
|
492 |
+
echo '<div class="analysis-score">';
|
493 |
+
if (isset($ca[0]["score"]) && $ca[0]["score"] == 1) {
|
494 |
+
echo '<p><svg role="img" aria-hidden="true" focusable="false" width="100%" height="100%" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
495 |
+
<circle r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0"></circle>
|
496 |
+
<circle id="bar" class="good" r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0" style="stroke-dashoffset: 50.8938px;"></circle>
|
497 |
+
</svg><span class="screen-reader-text">'.__('Good','wp-seopress').'</span></p>';
|
498 |
+
} elseif (isset($ca[0]["score"]) && $ca[0]["score"] =='') {
|
499 |
+
echo '<p><svg role="img" aria-hidden="true" focusable="false" width="100%" height="100%" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
500 |
+
<circle r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0"></circle>
|
501 |
+
<circle id="bar" class="notgood" r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0" style="stroke-dashoffset: 101.788px;"></circle>
|
502 |
+
</svg><span class="screen-reader-text">'.__('Should be improved','wp-seopress').'</span></p>';
|
503 |
+
}
|
504 |
+
echo '</div>';
|
505 |
+
}
|
506 |
+
break;
|
507 |
+
|
508 |
+
case 'seopress_insights' :
|
509 |
+
if ( is_plugin_active( 'wp-seopress-insights/seopress-insights.php' ) ) {
|
510 |
+
foreach( seopress_insights_query_all_rankings() as $key => $value ) {
|
511 |
+
if( !empty( $value ) && $value['url'] == get_the_permalink( $post_id ) ) {
|
512 |
+
$rankings[$value['ts']][] = [
|
513 |
+
'keyword' => get_the_title(),
|
514 |
+
'p' => $value['p'],
|
515 |
+
'url' => $value['url'],
|
516 |
+
'search_volume' => $value['search_volume'],
|
517 |
+
'cpc' => $value['cpc'],
|
518 |
+
'competition' => $value['competition'],
|
519 |
+
'date' => date('Y/m/d',$value['ts']),
|
520 |
+
];
|
521 |
+
}
|
522 |
}
|
523 |
+
|
524 |
+
if ( !empty( $rankings ) ) {
|
525 |
+
|
526 |
+
foreach( $rankings as $key => $value ) {
|
527 |
+
$avg_pos[] = $value[0]['p'];
|
528 |
+
$kws[] = $value[0]['keyword'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
}
|
530 |
+
|
531 |
+
echo '<div class="wrap-insights-post">';
|
532 |
+
|
533 |
+
echo '<p><span class="dashicons dashicons-chart-line"></span>';
|
|
|
|
|
|
|
|
|
534 |
|
535 |
+
if ( !empty( $kws ) ) {
|
536 |
+
|
537 |
+
$kws = array_unique($kws);
|
538 |
+
|
539 |
+
$html = '<ul>';
|
540 |
+
foreach( $kws as $kw ) {
|
541 |
+
$html .= '<li><span class="dashicons dashicons-minus"></span>' . $kw . '</li>';
|
|
|
|
|
|
|
|
|
|
|
542 |
}
|
543 |
+
$html .= '</ul>';
|
544 |
+
|
545 |
+
echo seopress_tooltip( __( 'Insights from these keywords:', 'wp-seopress-insights' ), sprintf( '%s', $html ), '' );
|
546 |
}
|
547 |
+
|
548 |
echo '</p>';
|
549 |
+
|
550 |
+
//Average position
|
551 |
+
echo '<p class="widget-insights-title">'. __( 'Average position: ', 'wp-seopress-insights' ) . '</p>';
|
552 |
+
|
553 |
+
if ( !empty($avg_pos ) ) {
|
554 |
+
echo '<p>';
|
555 |
+
|
556 |
+
echo '<span>' . round( array_sum( $avg_pos ) / count( $avg_pos ), 2 ) . '</span>';
|
557 |
+
|
558 |
+
//Variation
|
559 |
+
if ( isset( $avg_pos[0]) && $avg_pos[1] ) {
|
560 |
+
$p_variation = $avg_pos[0] - $avg_pos[1];
|
561 |
+
|
562 |
+
if ($avg_pos[0] < $avg_pos[1]) {
|
563 |
+
$p_variation_rel = '<span class="up"><span class="dashicons dashicons-arrow-up-alt"></span> '. abs( $p_variation ) . '</span>';
|
564 |
+
} elseif ($avg_pos[0] == $avg_pos[1]) {
|
565 |
+
$p_variation_rel = '<span class="stable">=</span>';
|
566 |
+
} else {
|
567 |
+
$p_variation_rel = '<span class="down"><span class="dashicons dashicons-arrow-up-alt"></span> ' . abs( $p_variation ) . '</span>';
|
568 |
+
}
|
569 |
+
|
570 |
+
echo $p_variation_rel;
|
571 |
+
}
|
572 |
+
|
573 |
+
echo '</p>';
|
574 |
+
}
|
575 |
+
|
576 |
+
//Latest position
|
577 |
+
echo '<p class="widget-insights-title">'. __( 'Latest position: ', 'wp-seopress-insights' ) .'</p>';
|
578 |
+
|
579 |
+
$p = array_key_first($rankings);
|
580 |
+
echo '<p><span>' . $rankings[$p][0]['p'] . '</span></p>';
|
581 |
+
echo '</div>';
|
582 |
+
}
|
583 |
}
|
584 |
+
break;
|
585 |
+
|
586 |
+
default :
|
587 |
+
break;
|
588 |
+
}
|
589 |
}
|
590 |
}
|
591 |
|
|
|
592 |
|
593 |
//Sortable columns
|
594 |
foreach (seopress_get_post_types() as $key => $value) {
|
@@ -148,6 +148,9 @@ function seopress_import_redirections_settings() {
|
|
148 |
return str_getcsv( $v, $sep, '\"' );
|
149 |
}, file( $import_file,FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES ) );
|
150 |
|
|
|
|
|
|
|
151 |
foreach ($csv as $key => $value) {
|
152 |
$csv_line = $value;
|
153 |
|
148 |
return str_getcsv( $v, $sep, '\"' );
|
149 |
}, file( $import_file,FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES ) );
|
150 |
|
151 |
+
//Remove duplicates from CSV
|
152 |
+
$csv = array_unique($csv, SORT_REGULAR);
|
153 |
+
|
154 |
foreach ($csv as $key => $value) {
|
155 |
$csv_line = $value;
|
156 |
|
@@ -86,6 +86,18 @@ function seopress_titles_archives_author_title_option() {
|
|
86 |
}
|
87 |
};
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
//Date archive Titles
|
90 |
function seopress_titles_archives_date_title_option() {
|
91 |
$seopress_titles_archives_date_title_option = get_option("seopress_titles_option_name");
|
@@ -203,6 +215,18 @@ function seopress_titles_archives_author_desc_option() {
|
|
203 |
}
|
204 |
};
|
205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
//Date archives Desc
|
207 |
function seopress_titles_archives_date_desc_option() {
|
208 |
$seopress_titles_archives_date_desc_option = get_option("seopress_titles_option_name");
|
@@ -295,7 +319,27 @@ function seopress_titles_the_title() {
|
|
295 |
|
296 |
$seopress_titles_title_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_title);
|
297 |
}
|
298 |
-
} elseif (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
if (get_post_meta($post->ID,'_seopress_titles_title',true)) { //IS METABOXE
|
300 |
$seopress_titles_the_title = esc_attr(get_post_meta($post->ID,'_seopress_titles_title',true));
|
301 |
|
@@ -347,7 +391,7 @@ function seopress_titles_the_title() {
|
|
347 |
}
|
348 |
}
|
349 |
else { //DEFAULT GLOBAL
|
350 |
-
|
351 |
$seopress_titles_single_titles_option = esc_attr(seopress_titles_single_titles_option());
|
352 |
|
353 |
preg_match_all('/%%_cf_(.*?)%%/', $seopress_titles_single_titles_option, $matches); //custom fields
|
@@ -491,7 +535,13 @@ function seopress_titles_the_description_content() {
|
|
491 |
|
492 |
$seopress_titles_description_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_description);
|
493 |
}
|
494 |
-
} elseif (
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
if (get_post_meta($post->ID,'_seopress_titles_desc',true)) { //IS METABOXE
|
496 |
$seopress_titles_the_description = esc_attr(get_post_meta($post->ID,'_seopress_titles_desc',true));
|
497 |
|
@@ -708,6 +758,18 @@ function seopress_titles_archives_author_noindex_option() {
|
|
708 |
}
|
709 |
};
|
710 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
711 |
//noindex Date archives
|
712 |
function seopress_titles_archives_date_noindex_option() {
|
713 |
$seopress_titles_archives_date_noindex_option = get_option("seopress_titles_option_name");
|
@@ -823,6 +885,8 @@ function seopress_titles_noindex_bypass() {
|
|
823 |
$seopress_titles_noindex = seopress_titles_tax_noindex_option();
|
824 |
} elseif (is_author() && seopress_titles_archives_author_noindex_option()) { //Is Author archive
|
825 |
$seopress_titles_noindex = seopress_titles_archives_author_noindex_option();
|
|
|
|
|
826 |
} elseif (is_date() && seopress_titles_archives_date_noindex_option()) { //Is Date archive
|
827 |
$seopress_titles_noindex = seopress_titles_archives_date_noindex_option();
|
828 |
} elseif (is_search() && seopress_titles_archives_search_title_noindex_option()) {//Is Search
|
@@ -1393,7 +1457,7 @@ if (function_exists('seopress_titles_noindex_bypass') && seopress_titles_noindex
|
|
1393 |
if (is_search()) {
|
1394 |
$seopress_titles_canonical = '<link rel="canonical" href="'.htmlspecialchars(urldecode(get_home_url().'/search/'.get_search_query())).'" />';
|
1395 |
} elseif (is_paged()){
|
1396 |
-
$seopress_titles_canonical = '<link rel="canonical" href="'.htmlspecialchars(urldecode(
|
1397 |
} elseif (is_singular()) {
|
1398 |
$seopress_titles_canonical = '<link rel="canonical" href="'.htmlspecialchars(urldecode(get_permalink())).'" />';
|
1399 |
} else {
|
86 |
}
|
87 |
};
|
88 |
|
89 |
+
//BuddyPress Groups single Titles
|
90 |
+
function seopress_titles_bp_groups_title_option() {
|
91 |
+
$seopress_titles_bp_groups_title_option = get_option("seopress_titles_option_name");
|
92 |
+
if ( ! empty ( $seopress_titles_bp_groups_title_option ) ) {
|
93 |
+
foreach ($seopress_titles_bp_groups_title_option as $key => $seopress_titles_bp_groups_title_value)
|
94 |
+
$options[$key] = $seopress_titles_bp_groups_title_value;
|
95 |
+
if (isset($seopress_titles_bp_groups_title_option['seopress_titles_bp_groups_title'])) {
|
96 |
+
return $seopress_titles_bp_groups_title_option['seopress_titles_bp_groups_title'];
|
97 |
+
}
|
98 |
+
}
|
99 |
+
};
|
100 |
+
|
101 |
//Date archive Titles
|
102 |
function seopress_titles_archives_date_title_option() {
|
103 |
$seopress_titles_archives_date_title_option = get_option("seopress_titles_option_name");
|
215 |
}
|
216 |
};
|
217 |
|
218 |
+
//Author archives Desc
|
219 |
+
function seopress_titles_bp_groups_desc_option() {
|
220 |
+
$seopress_titles_bp_groups_desc_option = get_option("seopress_titles_option_name");
|
221 |
+
if ( ! empty ( $seopress_titles_bp_groups_desc_option ) ) {
|
222 |
+
foreach ($seopress_titles_bp_groups_desc_option as $key => $seopress_titles_bp_groups_desc_value)
|
223 |
+
$options[$key] = $seopress_titles_bp_groups_desc_value;
|
224 |
+
if (isset($seopress_titles_bp_groups_desc_option['seopress_titles_bp_groups_desc'])) {
|
225 |
+
return $seopress_titles_bp_groups_desc_option['seopress_titles_bp_groups_desc'];
|
226 |
+
}
|
227 |
+
}
|
228 |
+
};
|
229 |
+
|
230 |
//Date archives Desc
|
231 |
function seopress_titles_archives_date_desc_option() {
|
232 |
$seopress_titles_archives_date_desc_option = get_option("seopress_titles_option_name");
|
319 |
|
320 |
$seopress_titles_title_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_title);
|
321 |
}
|
322 |
+
} elseif (function_exists('bp_is_group') && bp_is_group()) {
|
323 |
+
if (seopress_titles_bp_groups_title_option() !='') {
|
324 |
+
$seopress_titles_the_title = esc_attr(seopress_titles_bp_groups_title_option());
|
325 |
+
|
326 |
+
$seopress_titles_title_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_title);
|
327 |
+
}
|
328 |
+
} elseif (is_singular()) { //IS SINGULAR
|
329 |
+
//IS BUDDYPRESS ACTIVITY PAGE
|
330 |
+
if (function_exists('bp_is_current_component') && bp_is_current_component( 'activity' ) == true) {
|
331 |
+
$post->ID = buddypress()->pages->activity->id;
|
332 |
+
}
|
333 |
+
//IS BUDDYPRESS MEMBERS PAGE
|
334 |
+
if (function_exists('bp_is_current_component') && bp_is_current_component( 'members' ) == true) {
|
335 |
+
$post->ID = buddypress()->pages->members->id;
|
336 |
+
}
|
337 |
+
|
338 |
+
//IS BUDDYPRESS GROUPS PAGE
|
339 |
+
if (function_exists('bp_is_current_component') && bp_is_current_component( 'groups' ) == true) {
|
340 |
+
$post->ID = buddypress()->pages->groups->id;
|
341 |
+
}
|
342 |
+
|
343 |
if (get_post_meta($post->ID,'_seopress_titles_title',true)) { //IS METABOXE
|
344 |
$seopress_titles_the_title = esc_attr(get_post_meta($post->ID,'_seopress_titles_title',true));
|
345 |
|
391 |
}
|
392 |
}
|
393 |
else { //DEFAULT GLOBAL
|
394 |
+
|
395 |
$seopress_titles_single_titles_option = esc_attr(seopress_titles_single_titles_option());
|
396 |
|
397 |
preg_match_all('/%%_cf_(.*?)%%/', $seopress_titles_single_titles_option, $matches); //custom fields
|
535 |
|
536 |
$seopress_titles_description_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_description);
|
537 |
}
|
538 |
+
} elseif (function_exists('bp_is_group') && bp_is_group()) {
|
539 |
+
if (seopress_titles_bp_groups_desc_option() !='') {
|
540 |
+
$seopress_titles_the_description = esc_attr(seopress_titles_bp_groups_desc_option());
|
541 |
+
|
542 |
+
$seopress_titles_description_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_description);
|
543 |
+
}
|
544 |
+
} elseif (is_singular()) { //IS SINGLE
|
545 |
if (get_post_meta($post->ID,'_seopress_titles_desc',true)) { //IS METABOXE
|
546 |
$seopress_titles_the_description = esc_attr(get_post_meta($post->ID,'_seopress_titles_desc',true));
|
547 |
|
758 |
}
|
759 |
};
|
760 |
|
761 |
+
//noindex Author archives
|
762 |
+
function seopress_titles_bp_groups_noindex_option() {
|
763 |
+
$seopress_titles_bp_groups_noindex_option = get_option("seopress_titles_option_name");
|
764 |
+
if ( ! empty ( $seopress_titles_bp_groups_noindex_option ) ) {
|
765 |
+
foreach ($seopress_titles_bp_groups_noindex_option as $key => $seopress_titles_bp_groups_noindex_value)
|
766 |
+
$options[$key] = $seopress_titles_bp_groups_noindex_value;
|
767 |
+
if (isset($seopress_titles_bp_groups_noindex_option['seopress_titles_bp_groups_noindex'])) {
|
768 |
+
return $seopress_titles_bp_groups_noindex_option['seopress_titles_bp_groups_noindex'];
|
769 |
+
}
|
770 |
+
}
|
771 |
+
};
|
772 |
+
|
773 |
//noindex Date archives
|
774 |
function seopress_titles_archives_date_noindex_option() {
|
775 |
$seopress_titles_archives_date_noindex_option = get_option("seopress_titles_option_name");
|
885 |
$seopress_titles_noindex = seopress_titles_tax_noindex_option();
|
886 |
} elseif (is_author() && seopress_titles_archives_author_noindex_option()) { //Is Author archive
|
887 |
$seopress_titles_noindex = seopress_titles_archives_author_noindex_option();
|
888 |
+
} elseif (function_exists('bp_is_group') && bp_is_group() && seopress_titles_bp_groups_noindex_option()) { //Is BuddyPress group single
|
889 |
+
$seopress_titles_noindex = seopress_titles_bp_groups_noindex_option();
|
890 |
} elseif (is_date() && seopress_titles_archives_date_noindex_option()) { //Is Date archive
|
891 |
$seopress_titles_noindex = seopress_titles_archives_date_noindex_option();
|
892 |
} elseif (is_search() && seopress_titles_archives_search_title_noindex_option()) {//Is Search
|
1457 |
if (is_search()) {
|
1458 |
$seopress_titles_canonical = '<link rel="canonical" href="'.htmlspecialchars(urldecode(get_home_url().'/search/'.get_search_query())).'" />';
|
1459 |
} elseif (is_paged()){
|
1460 |
+
$seopress_titles_canonical = '<link rel="canonical" href="'.htmlspecialchars(urldecode($current_url)).'" />';
|
1461 |
} elseif (is_singular()) {
|
1462 |
$seopress_titles_canonical = '<link rel="canonical" href="'.htmlspecialchars(urldecode(get_permalink())).'" />';
|
1463 |
} else {
|
@@ -153,7 +153,8 @@ if (seopress_get_toggle_option('social') =='1') {
|
|
153 |
add_action('wp_head', 'seopress_load_social_options', 0);
|
154 |
function seopress_load_social_options() {
|
155 |
if (!is_admin()){
|
156 |
-
|
|
|
157 |
//do nothing
|
158 |
} else {
|
159 |
require_once ( dirname( __FILE__ ) . '/options-social.php'); //Social
|
153 |
add_action('wp_head', 'seopress_load_social_options', 0);
|
154 |
function seopress_load_social_options() {
|
155 |
if (!is_admin()){
|
156 |
+
//disable on wpForo, LifterLMS private area, Ecwid store pages to avoid conflicts
|
157 |
+
if( (function_exists( 'is_llms_private_area' ) && is_llms_private_area()) || (function_exists('is_wpforo_page') && is_wpforo_page()) || ( class_exists('Ecwid_Store_Page') && Ecwid_Store_Page::is_store_page()) ) {
|
158 |
//do nothing
|
159 |
} else {
|
160 |
require_once ( dirname( __FILE__ ) . '/options-social.php'); //Social
|
@@ -16,6 +16,7 @@ $seopress_get_post_title = '';
|
|
16 |
$seopress_excerpt ='';
|
17 |
$seopress_content ='';
|
18 |
$post_thumbnail_url ='';
|
|
|
19 |
$post_category ='';
|
20 |
$post_tag ='';
|
21 |
$get_search_query ='';
|
@@ -82,6 +83,11 @@ if (is_singular() && isset($post)) {
|
|
82 |
$post_thumbnail_url = apply_filters('seopress_titles_post_thumbnail_url', $post_thumbnail_url);
|
83 |
}
|
84 |
|
|
|
|
|
|
|
|
|
|
|
85 |
if (is_single() && has_category()) {
|
86 |
$post_category_array = get_the_terms(get_the_id(), 'category');
|
87 |
$post_category = $post_category_array[0]->name;
|
@@ -192,6 +198,7 @@ $seopress_titles_template_variables_array = array(
|
|
192 |
'%%excerpt%%',
|
193 |
'%%post_content%%',
|
194 |
'%%post_thumbnail_url%%',
|
|
|
195 |
'%%post_date%%',
|
196 |
'%%date%%',
|
197 |
'%%post_modified_date%%',
|
@@ -243,6 +250,7 @@ $seopress_titles_template_replace_array = array(
|
|
243 |
$seopress_get_the_excerpt,
|
244 |
$seopress_content,
|
245 |
$post_thumbnail_url,
|
|
|
246 |
get_the_date(),
|
247 |
get_the_date(),
|
248 |
get_the_modified_date(),
|
@@ -295,6 +303,7 @@ $variables = array(
|
|
295 |
'post_category' => $post_category,
|
296 |
'post_tag' => $post_tag,
|
297 |
'post_thumbnail_url' => $post_thumbnail_url,
|
|
|
298 |
'get_search_query' => $get_search_query,
|
299 |
'woo_single_cat_html' => $woo_single_cat_html,
|
300 |
'woo_single_tag_html' => $woo_single_tag_html,
|
16 |
$seopress_excerpt ='';
|
17 |
$seopress_content ='';
|
18 |
$post_thumbnail_url ='';
|
19 |
+
$post_url ='';
|
20 |
$post_category ='';
|
21 |
$post_tag ='';
|
22 |
$get_search_query ='';
|
83 |
$post_thumbnail_url = apply_filters('seopress_titles_post_thumbnail_url', $post_thumbnail_url);
|
84 |
}
|
85 |
|
86 |
+
if (is_singular() && isset($post)) {
|
87 |
+
$post_url = esc_url(get_permalink($post));
|
88 |
+
$post_url = apply_filters('seopress_titles_post_url', $post_url);
|
89 |
+
}
|
90 |
+
|
91 |
if (is_single() && has_category()) {
|
92 |
$post_category_array = get_the_terms(get_the_id(), 'category');
|
93 |
$post_category = $post_category_array[0]->name;
|
198 |
'%%excerpt%%',
|
199 |
'%%post_content%%',
|
200 |
'%%post_thumbnail_url%%',
|
201 |
+
'%%post_url%%',
|
202 |
'%%post_date%%',
|
203 |
'%%date%%',
|
204 |
'%%post_modified_date%%',
|
250 |
$seopress_get_the_excerpt,
|
251 |
$seopress_content,
|
252 |
$post_thumbnail_url,
|
253 |
+
$post_url,
|
254 |
get_the_date(),
|
255 |
get_the_date(),
|
256 |
get_the_modified_date(),
|
303 |
'post_category' => $post_category,
|
304 |
'post_tag' => $post_tag,
|
305 |
'post_thumbnail_url' => $post_thumbnail_url,
|
306 |
+
'post_url' => $post_url,
|
307 |
'get_search_query' => $get_search_query,
|
308 |
'woo_single_cat_html' => $woo_single_cat_html,
|
309 |
'woo_single_tag_html' => $woo_single_tag_html,
|
Binary file
|
@@ -1,3493 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: SEOPress\n"
|
4 |
-
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
|
5 |
-
"POT-Creation-Date: 2017-09-18 19:42+0200\n"
|
6 |
-
"PO-Revision-Date: 2017-10-21 15:01+0200\n"
|
7 |
-
"Last-Translator: \n"
|
8 |
-
"Language-Team: contact@seopress.org\n"
|
9 |
-
"Language: pt_BR\n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 2.0.1\n"
|
14 |
-
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-WPHeader: style.css\n"
|
16 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
-
|
22 |
-
#: inc/admin/admin-header.php:11
|
23 |
-
msgid "SEOPress"
|
24 |
-
msgstr "SEOPress"
|
25 |
-
|
26 |
-
#: inc/admin/admin-header.php:15 inc/admin/adminbar.php:72
|
27 |
-
msgid "PRO"
|
28 |
-
msgstr "PRO"
|
29 |
-
|
30 |
-
#: inc/admin/admin-header.php:27 inc/admin/admin.php:185
|
31 |
-
#: inc/admin/adminbar.php:22
|
32 |
-
msgid "Titles & Metas"
|
33 |
-
msgstr "Títulos e Metas"
|
34 |
-
|
35 |
-
#: inc/admin/admin-header.php:33 inc/admin/admin.php:186
|
36 |
-
#: inc/admin/adminbar.php:28
|
37 |
-
msgid "XML / HTML Sitemap"
|
38 |
-
msgstr "Mapa do site XML / HTML"
|
39 |
-
|
40 |
-
#: inc/admin/admin-header.php:39 inc/admin/admin.php:187
|
41 |
-
#: inc/admin/admin.php:1329 inc/admin/adminbar.php:34
|
42 |
-
msgid "Social Networks"
|
43 |
-
msgstr "Redes sociais"
|
44 |
-
|
45 |
-
#: inc/admin/admin-header.php:45 inc/admin/admin.php:188
|
46 |
-
#: inc/admin/admin.php:1367 inc/admin/adminbar.php:40
|
47 |
-
msgid "Google Analytics"
|
48 |
-
msgstr "Google Analytics"
|
49 |
-
|
50 |
-
#: inc/admin/admin-header.php:51 inc/admin/admin-metaboxes-form.php:124
|
51 |
-
#: inc/admin/admin.php:189 inc/admin/admin.php:302 inc/admin/admin.php:576
|
52 |
-
#: inc/admin/admin.php:1405 inc/admin/adminbar.php:46
|
53 |
-
msgid "Advanced"
|
54 |
-
msgstr "Avançado"
|
55 |
-
|
56 |
-
#: inc/admin/admin-header.php:59 inc/admin/admin.php:1434
|
57 |
-
msgid "WooCommerce"
|
58 |
-
msgstr "WooCommerce"
|
59 |
-
|
60 |
-
#: inc/admin/admin-header.php:65 inc/admin/admin.php:1462
|
61 |
-
msgid "Local Business"
|
62 |
-
msgstr "Negócio local"
|
63 |
-
|
64 |
-
#: inc/admin/admin-header.php:71 inc/admin/admin.php:1490
|
65 |
-
msgid "Dublin Core"
|
66 |
-
msgstr "Dublin Core"
|
67 |
-
|
68 |
-
#: inc/admin/admin-header.php:77 inc/admin/admin.php:1518
|
69 |
-
msgid "Structured Data Types"
|
70 |
-
msgstr "Tipos de dados estruturados"
|
71 |
-
|
72 |
-
#: inc/admin/admin-header.php:83 inc/admin/admin.php:1546
|
73 |
-
msgid "Breadcrumbs"
|
74 |
-
msgstr "Breadcrumbs"
|
75 |
-
|
76 |
-
#: inc/admin/admin-header.php:89 inc/admin/admin.php:1584
|
77 |
-
msgid "Google Page Speed"
|
78 |
-
msgstr "Google Page Speed"
|
79 |
-
|
80 |
-
#: inc/admin/admin-header.php:96 inc/admin/admin.php:745
|
81 |
-
#: inc/admin/admin.php:1605
|
82 |
-
msgid "robots.txt"
|
83 |
-
msgstr "robots.txt"
|
84 |
-
|
85 |
-
#: inc/admin/admin-header.php:103 inc/admin/admin.php:1644
|
86 |
-
msgid "Google News Sitemap"
|
87 |
-
msgstr "Mapa do Google News"
|
88 |
-
|
89 |
-
#: inc/admin/admin-header.php:109 inc/admin/admin.php:1672
|
90 |
-
#: inc/admin/adminbar.php:78
|
91 |
-
msgid "Redirections"
|
92 |
-
msgstr "Redirecionamentos"
|
93 |
-
|
94 |
-
#: inc/admin/admin-header.php:115 inc/admin/admin.php:1711
|
95 |
-
msgid "SEOPress BOT - Broken links"
|
96 |
-
msgstr "SEOPress BOT - links quebrados"
|
97 |
-
|
98 |
-
#: inc/admin/admin-header.php:121 inc/admin/admin.php:1722
|
99 |
-
#: inc/admin/adminbar.php:90
|
100 |
-
msgid "Backlinks"
|
101 |
-
msgstr "Backlinks"
|
102 |
-
|
103 |
-
#: inc/admin/admin-header.php:128 inc/admin/admin.php:746
|
104 |
-
#: inc/admin/admin.php:1734
|
105 |
-
msgid ".htaccess"
|
106 |
-
msgstr ".htaccess"
|
107 |
-
|
108 |
-
#: inc/admin/admin-header.php:135 inc/admin/admin.php:1746
|
109 |
-
msgid "RSS"
|
110 |
-
msgstr "RSS"
|
111 |
-
|
112 |
-
#: inc/admin/admin-header.php:141 inc/admin/admin.php:1779
|
113 |
-
#: inc/admin/adminbar.php:66
|
114 |
-
msgid "License"
|
115 |
-
msgstr "Licença"
|
116 |
-
|
117 |
-
#: inc/admin/admin-header.php:148 inc/admin/admin.php:190
|
118 |
-
#: inc/admin/admin.php:1758 inc/admin/adminbar.php:52
|
119 |
-
msgid "Tools"
|
120 |
-
msgstr "Ferramentas"
|
121 |
-
|
122 |
-
#: inc/admin/admin-header.php:170
|
123 |
-
msgid "See the changelog (new window)"
|
124 |
-
msgstr "Veja o changelog (nova janela)"
|
125 |
-
|
126 |
-
#: inc/admin/admin-header.php:172
|
127 |
-
msgid "See the changelog"
|
128 |
-
msgstr "Veja o changelog"
|
129 |
-
|
130 |
-
#: inc/admin/admin-header.php:174 inc/admin/admin-header.php:176
|
131 |
-
msgid "Send feedback"
|
132 |
-
msgstr "Enviar comentários"
|
133 |
-
|
134 |
-
#: inc/admin/admin-header.php:178
|
135 |
-
msgid "Follow us on Twitter (new window)"
|
136 |
-
msgstr "Siga-nos no Twitter (nova janela)"
|
137 |
-
|
138 |
-
#: inc/admin/admin-header.php:180
|
139 |
-
msgid "Follow us on Twitter"
|
140 |
-
msgstr "Siga-nos no Twitter"
|
141 |
-
|
142 |
-
#: inc/admin/admin-header.php:182
|
143 |
-
msgid "Follow us on YouTube (new window)"
|
144 |
-
msgstr "Siga-nos no YouTube (nova janela)"
|
145 |
-
|
146 |
-
#: inc/admin/admin-header.php:184
|
147 |
-
msgid "Follow us on YouTube"
|
148 |
-
msgstr "Siga-nos no YouTube"
|
149 |
-
|
150 |
-
#: inc/admin/admin-header.php:186
|
151 |
-
msgid "Official website (new window)"
|
152 |
-
msgstr "Site oficial (nova janela)"
|
153 |
-
|
154 |
-
#: inc/admin/admin-header.php:188
|
155 |
-
msgid "Official website"
|
156 |
-
msgstr "Website oficial"
|
157 |
-
|
158 |
-
#: inc/admin/admin-header.php:190
|
159 |
-
msgid "Support (new window)"
|
160 |
-
msgstr "Suporte (nova janela)"
|
161 |
-
|
162 |
-
#: inc/admin/admin-header.php:192
|
163 |
-
msgid "Support"
|
164 |
-
msgstr "Suporte"
|
165 |
-
|
166 |
-
#: inc/admin/admin-metaboxes-form.php:114 inc/admin/admin-metaboxes.php:31
|
167 |
-
#: inc/admin/admin-metaboxes.php:33 inc/admin/adminbar.php:16
|
168 |
-
#: inc/functions/options-advanced-admin.php:528
|
169 |
-
msgid "SEO"
|
170 |
-
msgstr "SEO"
|
171 |
-
|
172 |
-
#: inc/admin/admin-metaboxes-form.php:123
|
173 |
-
msgid "Titles settings"
|
174 |
-
msgstr "Configurações de títulos"
|
175 |
-
|
176 |
-
#: inc/admin/admin-metaboxes-form.php:125
|
177 |
-
msgid "Social"
|
178 |
-
msgstr "Social"
|
179 |
-
|
180 |
-
#: inc/admin/admin-metaboxes-form.php:127
|
181 |
-
msgid "Redirection"
|
182 |
-
msgstr "Redirecionamento"
|
183 |
-
|
184 |
-
#: inc/admin/admin-metaboxes-form.php:132
|
185 |
-
msgid "Google News"
|
186 |
-
msgstr "Google News"
|
187 |
-
|
188 |
-
#: inc/admin/admin-metaboxes-form.php:143
|
189 |
-
msgid "Title"
|
190 |
-
msgstr "Título"
|
191 |
-
|
192 |
-
#: inc/admin/admin-metaboxes-form.php:144
|
193 |
-
msgid "Enter your title"
|
194 |
-
msgstr "Digite seu título"
|
195 |
-
|
196 |
-
#: inc/admin/admin-metaboxes-form.php:148
|
197 |
-
#: inc/admin/admin-metaboxes-form.php:156
|
198 |
-
msgid "(maximum recommended limit)"
|
199 |
-
msgstr "(limite máximo recomendado)"
|
200 |
-
|
201 |
-
#: inc/admin/admin-metaboxes-form.php:151 inc/admin/admin.php:670
|
202 |
-
#: inc/admin/admin.php:1866 inc/functions/options-advanced-admin.php:538
|
203 |
-
msgid "Meta description"
|
204 |
-
msgstr "Descrição do Meta"
|
205 |
-
|
206 |
-
#: inc/admin/admin-metaboxes-form.php:152
|
207 |
-
msgid "Enter your meta description"
|
208 |
-
msgstr "Digite sua descrição do meta"
|
209 |
-
|
210 |
-
#: inc/admin/admin-metaboxes-form.php:161
|
211 |
-
msgid "Google Snippet Preview"
|
212 |
-
msgstr "Google Snippet Preview"
|
213 |
-
|
214 |
-
#: inc/admin/admin-metaboxes-form.php:162
|
215 |
-
msgid "This is what your page will look like in Google search results"
|
216 |
-
msgstr "Isto é o que a sua página se parecerá nos resultados de pesquisa do Google"
|
217 |
-
|
218 |
-
#: inc/admin/admin-metaboxes-form.php:187 inc/admin/admin.php:2042
|
219 |
-
#: inc/admin/admin.php:3068 inc/admin/admin.php:3201 inc/admin/admin.php:3293
|
220 |
-
#: inc/admin/admin.php:3368 inc/admin/admin.php:3437 inc/admin/admin.php:3539
|
221 |
-
msgid "noindex"
|
222 |
-
msgstr "sem indice"
|
223 |
-
|
224 |
-
#: inc/admin/admin-metaboxes-form.php:188 inc/admin/admin.php:3541
|
225 |
-
msgid "Do not display all pages of the site in Google search results and do not display \"Cached\" links in search results."
|
226 |
-
msgstr "Não exiba todas as páginas do site nos resultados de pesquisa do Google e não exiba links \\ \"Cached \" nos resultados de pesquisa."
|
227 |
-
|
228 |
-
#: inc/admin/admin-metaboxes-form.php:193 inc/admin/admin.php:2050
|
229 |
-
#: inc/admin/admin.php:3087 inc/admin/admin.php:3220 inc/admin/admin.php:3312
|
230 |
-
#: inc/admin/admin.php:3558
|
231 |
-
msgid "nofollow"
|
232 |
-
msgstr "não siga"
|
233 |
-
|
234 |
-
#: inc/admin/admin-metaboxes-form.php:194 inc/admin/admin.php:3560
|
235 |
-
msgid "Do not follow links for all pages."
|
236 |
-
msgstr "Não siga links para todas as páginas."
|
237 |
-
|
238 |
-
#: inc/admin/admin-metaboxes-form.php:199 inc/admin/admin.php:2058
|
239 |
-
#: inc/admin/admin.php:3577
|
240 |
-
msgid "noodp"
|
241 |
-
msgstr "noodp"
|
242 |
-
|
243 |
-
#: inc/admin/admin-metaboxes-form.php:200 inc/admin/admin.php:3579
|
244 |
-
msgid "Do not use Open Directory project metadata for titles or excerpts for all pages."
|
245 |
-
msgstr "Não use metadados do projeto do Open Directory para títulos ou trechos para todas as páginas."
|
246 |
-
|
247 |
-
#: inc/admin/admin-metaboxes-form.php:205 inc/admin/admin.php:2066
|
248 |
-
#: inc/admin/admin.php:3596
|
249 |
-
msgid "noimageindex"
|
250 |
-
msgstr "noimageindex"
|
251 |
-
|
252 |
-
#: inc/admin/admin-metaboxes-form.php:206 inc/admin/admin.php:3598
|
253 |
-
msgid "Do not index images from the entire site."
|
254 |
-
msgstr "Não indexe imagens de todo o site."
|
255 |
-
|
256 |
-
#: inc/admin/admin-metaboxes-form.php:211 inc/admin/admin.php:2074
|
257 |
-
#: inc/admin/admin.php:3615
|
258 |
-
msgid "noarchive"
|
259 |
-
msgstr "noarchive"
|
260 |
-
|
261 |
-
#: inc/admin/admin-metaboxes-form.php:212 inc/admin/admin.php:3617
|
262 |
-
msgid "Do not display a \"Cached\" link in the Google search results."
|
263 |
-
msgstr "Não exiba um link \"Cached \" nos resultados de pesquisa do Google."
|
264 |
-
|
265 |
-
#: inc/admin/admin-metaboxes-form.php:217 inc/admin/admin.php:2082
|
266 |
-
#: inc/admin/admin.php:3634
|
267 |
-
msgid "nosnippet"
|
268 |
-
msgstr "nosnippet"
|
269 |
-
|
270 |
-
#: inc/admin/admin-metaboxes-form.php:218 inc/admin/admin.php:3636
|
271 |
-
msgid "Do not display a description in the Google search results for all pages."
|
272 |
-
msgstr "Não exiba uma descrição nos resultados de pesquisa do Google para todas as páginas."
|
273 |
-
|
274 |
-
#: inc/admin/admin-metaboxes-form.php:221 inc/admin/admin.php:674
|
275 |
-
msgid "Canonical URL"
|
276 |
-
msgstr "URL canônica"
|
277 |
-
|
278 |
-
#: inc/admin/admin-metaboxes-form.php:222
|
279 |
-
msgid "Default value: "
|
280 |
-
msgstr "Valor padrão: "
|
281 |
-
|
282 |
-
#: inc/admin/admin-metaboxes-form.php:228
|
283 |
-
msgid "Ask Facebook to update his cache"
|
284 |
-
msgstr "Peça ao Facebook para atualizar seu cache"
|
285 |
-
|
286 |
-
#: inc/admin/admin-metaboxes-form.php:230
|
287 |
-
msgid "Facebook Title"
|
288 |
-
msgstr "Titulo do Facebook"
|
289 |
-
|
290 |
-
#: inc/admin/admin-metaboxes-form.php:231
|
291 |
-
msgid "Enter your Facebook title"
|
292 |
-
msgstr "Digite seu título no Facebook"
|
293 |
-
|
294 |
-
#: inc/admin/admin-metaboxes-form.php:234
|
295 |
-
msgid "Facebook description"
|
296 |
-
msgstr "Descrição do Facebook"
|
297 |
-
|
298 |
-
#: inc/admin/admin-metaboxes-form.php:235
|
299 |
-
msgid "Enter your Facebook description"
|
300 |
-
msgstr "Insira sua descrição do Facebook"
|
301 |
-
|
302 |
-
#: inc/admin/admin-metaboxes-form.php:238
|
303 |
-
msgid "Facebook Thumbnail"
|
304 |
-
msgstr "Miniatura do Facebook"
|
305 |
-
|
306 |
-
#: inc/admin/admin-metaboxes-form.php:239
|
307 |
-
msgid "Minimum size: 200x200px"
|
308 |
-
msgstr "Tamanho mínimo: 200x200px"
|
309 |
-
|
310 |
-
#: inc/admin/admin-metaboxes-form.php:240
|
311 |
-
#: inc/admin/admin-metaboxes-form.php:256 inc/admin/admin.php:4149
|
312 |
-
#: inc/admin/admin.php:4226
|
313 |
-
msgid "Select your default thumbnail"
|
314 |
-
msgstr "Selecione sua miniatura padrão"
|
315 |
-
|
316 |
-
#: inc/admin/admin-metaboxes-form.php:241
|
317 |
-
#: inc/admin/admin-metaboxes-form.php:257 inc/admin/admin.php:3907
|
318 |
-
#: inc/admin/admin.php:4151 inc/admin/admin.php:4228
|
319 |
-
msgid "Upload an Image"
|
320 |
-
msgstr "Carregar uma imagem"
|
321 |
-
|
322 |
-
#: inc/admin/admin-metaboxes-form.php:246
|
323 |
-
msgid "Twitter Title"
|
324 |
-
msgstr "Título do Twitter"
|
325 |
-
|
326 |
-
#: inc/admin/admin-metaboxes-form.php:247
|
327 |
-
msgid "Enter your Twitter title"
|
328 |
-
msgstr "Digite seu título do Twitter"
|
329 |
-
|
330 |
-
#: inc/admin/admin-metaboxes-form.php:250
|
331 |
-
msgid "Twitter description"
|
332 |
-
msgstr "Descrição do Twitter"
|
333 |
-
|
334 |
-
#: inc/admin/admin-metaboxes-form.php:251
|
335 |
-
msgid "Enter your Twitter description"
|
336 |
-
msgstr "Digite sua descrição do Twitter"
|
337 |
-
|
338 |
-
#: inc/admin/admin-metaboxes-form.php:254
|
339 |
-
msgid "Twitter Thumbnail"
|
340 |
-
msgstr "Miniatura do Twitter"
|
341 |
-
|
342 |
-
#: inc/admin/admin-metaboxes-form.php:255
|
343 |
-
msgid "Minimum size: 160x160px"
|
344 |
-
msgstr "Tamanho mínimo: 160x160px"
|
345 |
-
|
346 |
-
#: inc/admin/admin-metaboxes-form.php:266
|
347 |
-
msgid "Enable redirection?"
|
348 |
-
msgstr "Ativar redirecionamento?"
|
349 |
-
|
350 |
-
#: inc/admin/admin-metaboxes-form.php:270
|
351 |
-
msgid "URL redirection"
|
352 |
-
msgstr "Redirecionamento de URL"
|
353 |
-
|
354 |
-
#: inc/admin/admin-metaboxes-form.php:272
|
355 |
-
msgid "301 Moved Permanently"
|
356 |
-
msgstr "301 Movido Permanentemente"
|
357 |
-
|
358 |
-
#: inc/admin/admin-metaboxes-form.php:273
|
359 |
-
msgid "302 Found (HTTP 1.1) / Moved Temporarily (HTTP 1.0)"
|
360 |
-
msgstr "302 Encontrado (HTTP 1.1) / Movido temporariamente (HTTP 1.0)"
|
361 |
-
|
362 |
-
#: inc/admin/admin-metaboxes-form.php:274
|
363 |
-
msgid "307 Moved Temporarily (HTTP 1.1 Only)"
|
364 |
-
msgstr "307 Movido Temporariamente (apenas HTTP 1.1)"
|
365 |
-
|
366 |
-
#: inc/admin/admin-metaboxes-form.php:276
|
367 |
-
msgid "Enter your new URL"
|
368 |
-
msgstr "Digite seu novo URL"
|
369 |
-
|
370 |
-
#: inc/admin/admin-metaboxes-form.php:279
|
371 |
-
#: inc/admin/admin-metaboxes-form.php:281
|
372 |
-
msgid "Test your URL"
|
373 |
-
msgstr "Teste seu URL"
|
374 |
-
|
375 |
-
#: inc/admin/admin-metaboxes-form.php:292
|
376 |
-
msgid "Exclude this post from Google News Sitemap?"
|
377 |
-
msgstr "Excluir esta postagem do Google Sitemap de notícias?"
|
378 |
-
|
379 |
-
#: inc/admin/admin-metaboxes-form.php:296
|
380 |
-
msgid "Google News Genres"
|
381 |
-
msgstr "Google News Genres"
|
382 |
-
|
383 |
-
#: inc/admin/admin-metaboxes-form.php:298 inc/admin/admin.php:4490
|
384 |
-
#: inc/admin/admin.php:4567 inc/admin/admin.php:4644 inc/admin/admin.php:4721
|
385 |
-
#: inc/admin/admin.php:4798
|
386 |
-
msgid "None"
|
387 |
-
msgstr "Nenhum"
|
388 |
-
|
389 |
-
#: inc/admin/admin-metaboxes-form.php:299
|
390 |
-
msgid "Press Release"
|
391 |
-
msgstr "Comunicado de imprensa"
|
392 |
-
|
393 |
-
#: inc/admin/admin-metaboxes-form.php:300
|
394 |
-
msgid "Satire"
|
395 |
-
msgstr "Sátira"
|
396 |
-
|
397 |
-
#: inc/admin/admin-metaboxes-form.php:301
|
398 |
-
msgid "Blog"
|
399 |
-
msgstr "Blog"
|
400 |
-
|
401 |
-
#: inc/admin/admin-metaboxes-form.php:302
|
402 |
-
msgid "OpEd"
|
403 |
-
msgstr "OpEd"
|
404 |
-
|
405 |
-
#: inc/admin/admin-metaboxes-form.php:303
|
406 |
-
msgid "Opinion"
|
407 |
-
msgstr "Opinião"
|
408 |
-
|
409 |
-
#: inc/admin/admin-metaboxes-form.php:304
|
410 |
-
msgid "UserGenerated"
|
411 |
-
msgstr "UserGenerated"
|
412 |
-
|
413 |
-
#: inc/admin/admin-metaboxes-form.php:309
|
414 |
-
msgid "Google News Keywords <em>(max recommended limit: 12)</em>"
|
415 |
-
msgstr "Palavras-chave do Google News <em> (limite máximo recomendado: 12) </ em>"
|
416 |
-
|
417 |
-
#: inc/admin/admin-metaboxes-form.php:310
|
418 |
-
msgid "Enter your Google News Keywords"
|
419 |
-
msgstr "Digite suas palavras-chave do Google Notícias"
|
420 |
-
|
421 |
-
#: inc/admin/admin.php:108
|
422 |
-
msgid "404 - Page not found"
|
423 |
-
msgstr "404 Página Não Encontrada"
|
424 |
-
|
425 |
-
#: inc/admin/admin.php:177
|
426 |
-
msgid "SEOPress Network settings"
|
427 |
-
msgstr "Configurações de rede do SEOPress"
|
428 |
-
|
429 |
-
#: inc/admin/admin.php:184
|
430 |
-
msgid "Dashboard"
|
431 |
-
msgstr "Painel de controle"
|
432 |
-
|
433 |
-
#: inc/admin/admin.php:186 inc/admin/admin.php:1291
|
434 |
-
msgid "XML / Image / HTML Sitemap"
|
435 |
-
msgstr "Mapa do Website XML / Image / HTML"
|
436 |
-
|
437 |
-
#: inc/admin/admin.php:197
|
438 |
-
#, php-format
|
439 |
-
msgid "%%sitetitle%%"
|
440 |
-
msgstr "%%sitetitle%%"
|
441 |
-
|
442 |
-
#: inc/admin/admin.php:197 inc/admin/admin.php:2985 inc/admin/admin.php:3036
|
443 |
-
#: inc/admin/admin.php:3153 inc/admin/admin.php:3261 inc/admin/admin.php:3337
|
444 |
-
#: inc/admin/admin.php:3407 inc/admin/admin.php:3476 inc/admin/admin.php:3508
|
445 |
-
msgid "Site Title"
|
446 |
-
msgstr "Titulo do site"
|
447 |
-
|
448 |
-
#: inc/admin/admin.php:198
|
449 |
-
#, php-format
|
450 |
-
msgid "%%tagline%%"
|
451 |
-
msgstr "%%tagline%%"
|
452 |
-
|
453 |
-
#: inc/admin/admin.php:198 inc/admin/admin.php:2986 inc/admin/admin.php:2997
|
454 |
-
msgid "Tagline"
|
455 |
-
msgstr "Tagline"
|
456 |
-
|
457 |
-
#: inc/admin/admin.php:199
|
458 |
-
#, php-format
|
459 |
-
msgid "%%post_title%%"
|
460 |
-
msgstr "%% post_title %%"
|
461 |
-
|
462 |
-
#: inc/admin/admin.php:199
|
463 |
-
msgid "Post Title (post, page, custom post type)"
|
464 |
-
msgstr "Título do post (publicação, página, tipo de postagem personalizado)"
|
465 |
-
|
466 |
-
#: inc/admin/admin.php:200
|
467 |
-
#, php-format
|
468 |
-
msgid "%%post_excerpt%%"
|
469 |
-
msgstr "%%post_excerpt%%"
|
470 |
-
|
471 |
-
#: inc/admin/admin.php:200
|
472 |
-
msgid "Post excerpt"
|
473 |
-
msgstr "Excerto do post"
|
474 |
-
|
475 |
-
#: inc/admin/admin.php:201
|
476 |
-
#, php-format
|
477 |
-
msgid "%%post_date%%"
|
478 |
-
msgstr "%%post_date%%"
|
479 |
-
|
480 |
-
#: inc/admin/admin.php:201
|
481 |
-
msgid "Post date"
|
482 |
-
msgstr "Data de postagem"
|
483 |
-
|
484 |
-
#: inc/admin/admin.php:202
|
485 |
-
#, php-format
|
486 |
-
msgid "%%post_author%%"
|
487 |
-
msgstr "%%post_author%%"
|
488 |
-
|
489 |
-
#: inc/admin/admin.php:202 inc/admin/admin.php:3336
|
490 |
-
msgid "Post author"
|
491 |
-
msgstr "Autor do post"
|
492 |
-
|
493 |
-
#: inc/admin/admin.php:203
|
494 |
-
#, php-format
|
495 |
-
msgid "%%_category_title%%"
|
496 |
-
msgstr "%%_category_title%%"
|
497 |
-
|
498 |
-
#: inc/admin/admin.php:203
|
499 |
-
msgid "Category title"
|
500 |
-
msgstr "Título da categoria"
|
501 |
-
|
502 |
-
#: inc/admin/admin.php:204
|
503 |
-
#, php-format
|
504 |
-
msgid "%%_category_description%%"
|
505 |
-
msgstr "%%_category_description%%"
|
506 |
-
|
507 |
-
#: inc/admin/admin.php:204
|
508 |
-
msgid "Category description"
|
509 |
-
msgstr "Descrição da categoria"
|
510 |
-
|
511 |
-
#: inc/admin/admin.php:205
|
512 |
-
#, php-format
|
513 |
-
msgid "%%tag_title%%"
|
514 |
-
msgstr "%%tag_title%%"
|
515 |
-
|
516 |
-
#: inc/admin/admin.php:205
|
517 |
-
msgid "Tag title"
|
518 |
-
msgstr "Título da etiqueta"
|
519 |
-
|
520 |
-
#: inc/admin/admin.php:206
|
521 |
-
#, php-format
|
522 |
-
msgid "%%tag_description%%"
|
523 |
-
msgstr "%%tag_description%%"
|
524 |
-
|
525 |
-
#: inc/admin/admin.php:206
|
526 |
-
msgid "Tag description"
|
527 |
-
msgstr "Descrição do Tag"
|
528 |
-
|
529 |
-
#: inc/admin/admin.php:207
|
530 |
-
#, php-format
|
531 |
-
msgid "%%term_title%%"
|
532 |
-
msgstr "%%term_title%%"
|
533 |
-
|
534 |
-
#: inc/admin/admin.php:207
|
535 |
-
msgid "Term title"
|
536 |
-
msgstr "Termo título"
|
537 |
-
|
538 |
-
#: inc/admin/admin.php:208
|
539 |
-
#, php-format
|
540 |
-
msgid "%%term_description%%"
|
541 |
-
msgstr "%%term_description%%"
|
542 |
-
|
543 |
-
#: inc/admin/admin.php:208
|
544 |
-
msgid "Term description"
|
545 |
-
msgstr "Descrição do termo"
|
546 |
-
|
547 |
-
#: inc/admin/admin.php:209
|
548 |
-
#, php-format
|
549 |
-
msgid "%%search_keywords%%"
|
550 |
-
msgstr "%%search_keywords%%"
|
551 |
-
|
552 |
-
#: inc/admin/admin.php:209
|
553 |
-
msgid "Search keywords"
|
554 |
-
msgstr "Procure por palavras-chave"
|
555 |
-
|
556 |
-
#: inc/admin/admin.php:210
|
557 |
-
#, php-format
|
558 |
-
msgid "%%current_pagination%%"
|
559 |
-
msgstr "%%current_pagination%%"
|
560 |
-
|
561 |
-
#: inc/admin/admin.php:210
|
562 |
-
msgid "Current number page"
|
563 |
-
msgstr "Número da página atual"
|
564 |
-
|
565 |
-
#: inc/admin/admin.php:211
|
566 |
-
#, php-format
|
567 |
-
msgid "%%cpt_plural%%"
|
568 |
-
msgstr "%%cpt_plural%%"
|
569 |
-
|
570 |
-
#: inc/admin/admin.php:211
|
571 |
-
msgid "Plural Post Type Archive name"
|
572 |
-
msgstr "Nome do arquivo do tipo de postagem plural"
|
573 |
-
|
574 |
-
#: inc/admin/admin.php:212
|
575 |
-
#, php-format
|
576 |
-
msgid "%%date_archive%%"
|
577 |
-
msgstr "%%date_archive%%"
|
578 |
-
|
579 |
-
#: inc/admin/admin.php:212
|
580 |
-
msgid "Date Archive"
|
581 |
-
msgstr "Data do Arquivo"
|
582 |
-
|
583 |
-
#: inc/admin/admin.php:213
|
584 |
-
#, php-format
|
585 |
-
msgid "%%wc_single_cat%%"
|
586 |
-
msgstr "%%wc_single_cat%%"
|
587 |
-
|
588 |
-
#: inc/admin/admin.php:213
|
589 |
-
msgid "Single product category"
|
590 |
-
msgstr "Categoria de produto único"
|
591 |
-
|
592 |
-
#: inc/admin/admin.php:214
|
593 |
-
#, php-format
|
594 |
-
msgid "%%wc_single_tag%%"
|
595 |
-
msgstr "%%wc_single_tag%%"
|
596 |
-
|
597 |
-
#: inc/admin/admin.php:214
|
598 |
-
msgid "Single product tag"
|
599 |
-
msgstr "Etiqueta de produto único"
|
600 |
-
|
601 |
-
#: inc/admin/admin.php:215
|
602 |
-
#, php-format
|
603 |
-
msgid "%%wc_single_short_desc%%"
|
604 |
-
msgstr "%%wc_single_short_desc%%"
|
605 |
-
|
606 |
-
#: inc/admin/admin.php:215
|
607 |
-
msgid "Single product short description"
|
608 |
-
msgstr "Breve descrição do produto"
|
609 |
-
|
610 |
-
#: inc/admin/admin.php:221
|
611 |
-
msgid "Templates variables"
|
612 |
-
msgstr "Variáveis dos modelos"
|
613 |
-
|
614 |
-
#: inc/admin/admin.php:229 inc/admin/admin.php:237
|
615 |
-
msgid "Browse our guides"
|
616 |
-
msgstr "Navegue pelos nossos guias"
|
617 |
-
|
618 |
-
#: inc/admin/admin.php:230 inc/admin/admin.php:238
|
619 |
-
msgid "Read our FAQ"
|
620 |
-
msgstr "Leia nossas FAQ"
|
621 |
-
|
622 |
-
#: inc/admin/admin.php:231 inc/admin/admin.php:239
|
623 |
-
msgid "Check our website"
|
624 |
-
msgstr "Verifique o nosso site"
|
625 |
-
|
626 |
-
#: inc/admin/admin.php:259 inc/admin/admin.php:728
|
627 |
-
msgid "Discourage search engines from indexing this site is <strong>ON!</strong> None of the following settings will be applied."
|
628 |
-
msgstr "Desalentar os mecanismos de busca de indexar este site é <strong> ON! </ Strong> Nenhuma das seguintes configurações será aplicada."
|
629 |
-
|
630 |
-
#: inc/admin/admin.php:260 inc/admin/admin.php:729 inc/admin/admin.php:2858
|
631 |
-
msgid "Change this settings"
|
632 |
-
msgstr "Altere estas configurações"
|
633 |
-
|
634 |
-
#: inc/admin/admin.php:280 inc/admin/admin.php:284 inc/admin/admin.php:347
|
635 |
-
#: inc/admin/admin.php:351 inc/admin/admin.php:412 inc/admin/admin.php:416
|
636 |
-
#: inc/admin/admin.php:479 inc/admin/admin.php:483 inc/admin/admin.php:558
|
637 |
-
#: inc/admin/admin.php:562 inc/admin/admin.php:1267 inc/admin/admin.php:1271
|
638 |
-
#: inc/admin/admin.php:1305 inc/admin/admin.php:1309 inc/admin/admin.php:1343
|
639 |
-
#: inc/admin/admin.php:1347 inc/admin/admin.php:1381 inc/admin/admin.php:1385
|
640 |
-
#: inc/admin/admin.php:1419 inc/admin/admin.php:1423 inc/admin/admin.php:1448
|
641 |
-
#: inc/admin/admin.php:1452 inc/admin/admin.php:1476 inc/admin/admin.php:1480
|
642 |
-
#: inc/admin/admin.php:1504 inc/admin/admin.php:1508 inc/admin/admin.php:1532
|
643 |
-
#: inc/admin/admin.php:1536 inc/admin/admin.php:1560 inc/admin/admin.php:1564
|
644 |
-
#: inc/admin/admin.php:1619 inc/admin/admin.php:1623 inc/admin/admin.php:1658
|
645 |
-
#: inc/admin/admin.php:1662 inc/admin/admin.php:1687 inc/admin/admin.php:1691
|
646 |
-
msgid "Click to disable this feature"
|
647 |
-
msgstr "Clique para desativar esse recurso"
|
648 |
-
|
649 |
-
#: inc/admin/admin.php:281 inc/admin/admin.php:283 inc/admin/admin.php:348
|
650 |
-
#: inc/admin/admin.php:350 inc/admin/admin.php:413 inc/admin/admin.php:415
|
651 |
-
#: inc/admin/admin.php:480 inc/admin/admin.php:482 inc/admin/admin.php:559
|
652 |
-
#: inc/admin/admin.php:561 inc/admin/admin.php:1268 inc/admin/admin.php:1270
|
653 |
-
#: inc/admin/admin.php:1306 inc/admin/admin.php:1308 inc/admin/admin.php:1344
|
654 |
-
#: inc/admin/admin.php:1346 inc/admin/admin.php:1382 inc/admin/admin.php:1384
|
655 |
-
#: inc/admin/admin.php:1420 inc/admin/admin.php:1422 inc/admin/admin.php:1449
|
656 |
-
#: inc/admin/admin.php:1451 inc/admin/admin.php:1477 inc/admin/admin.php:1479
|
657 |
-
#: inc/admin/admin.php:1505 inc/admin/admin.php:1507 inc/admin/admin.php:1533
|
658 |
-
#: inc/admin/admin.php:1535 inc/admin/admin.php:1561 inc/admin/admin.php:1563
|
659 |
-
#: inc/admin/admin.php:1620 inc/admin/admin.php:1622 inc/admin/admin.php:1659
|
660 |
-
#: inc/admin/admin.php:1661 inc/admin/admin.php:1688 inc/admin/admin.php:1690
|
661 |
-
msgid "Click to enable this feature"
|
662 |
-
msgstr "Clique para ativar esse recurso"
|
663 |
-
|
664 |
-
#: inc/admin/admin.php:298
|
665 |
-
msgid "Home"
|
666 |
-
msgstr "Inicio"
|
667 |
-
|
668 |
-
#: inc/admin/admin.php:299
|
669 |
-
msgid "Single Post Types"
|
670 |
-
msgstr "Tipos de postagem única"
|
671 |
-
|
672 |
-
#: inc/admin/admin.php:300
|
673 |
-
msgid "Archives"
|
674 |
-
msgstr "Tag Archives: %s"
|
675 |
-
|
676 |
-
#: inc/admin/admin.php:301 inc/admin/admin.php:367
|
677 |
-
msgid "Taxonomies"
|
678 |
-
msgstr "Taxonomias"
|
679 |
-
|
680 |
-
#: inc/admin/admin.php:365 inc/admin/admin.php:498 inc/admin/admin.php:506
|
681 |
-
msgid "General"
|
682 |
-
msgstr "Geral"
|
683 |
-
|
684 |
-
#: inc/admin/admin.php:366
|
685 |
-
msgid "Post Types"
|
686 |
-
msgstr "Tipos de postagem"
|
687 |
-
|
688 |
-
#: inc/admin/admin.php:368
|
689 |
-
msgid "HTML Sitemap"
|
690 |
-
msgstr "HTML Sitemap"
|
691 |
-
|
692 |
-
#: inc/admin/admin.php:430
|
693 |
-
msgid "Knowledge Graph"
|
694 |
-
msgstr "Gráfico de conhecimento"
|
695 |
-
|
696 |
-
#: inc/admin/admin.php:431
|
697 |
-
msgid "Your social accounts"
|
698 |
-
msgstr "Suas contas sociais"
|
699 |
-
|
700 |
-
#: inc/admin/admin.php:432
|
701 |
-
msgid "Facebook"
|
702 |
-
msgstr "Facebook"
|
703 |
-
|
704 |
-
#: inc/admin/admin.php:433
|
705 |
-
msgid "Twitter"
|
706 |
-
msgstr "Twitter"
|
707 |
-
|
708 |
-
#: inc/admin/admin.php:499 inc/admin/admin.php:507
|
709 |
-
msgid "Tracking"
|
710 |
-
msgstr "Rastreamento"
|
711 |
-
|
712 |
-
#: inc/admin/admin.php:500 inc/admin/admin.php:508
|
713 |
-
msgid "Events"
|
714 |
-
msgstr "Eventos"
|
715 |
-
|
716 |
-
#: inc/admin/admin.php:501 inc/admin/admin.php:509
|
717 |
-
msgid "Custom Dimensions"
|
718 |
-
msgstr "Dimensões customizadas"
|
719 |
-
|
720 |
-
#: inc/admin/admin.php:502
|
721 |
-
msgid "Stats in Dashboard"
|
722 |
-
msgstr "Estatísticas no Painel de Controle"
|
723 |
-
|
724 |
-
#: inc/admin/admin.php:577
|
725 |
-
msgid "Appearance"
|
726 |
-
msgstr "Aparência"
|
727 |
-
|
728 |
-
#: inc/admin/admin.php:578
|
729 |
-
msgid "Security"
|
730 |
-
msgstr "Segurança"
|
731 |
-
|
732 |
-
#: inc/admin/admin.php:610
|
733 |
-
msgid "Export Settings"
|
734 |
-
msgstr "Configurações de exportação"
|
735 |
-
|
736 |
-
#: inc/admin/admin.php:612
|
737 |
-
msgid "Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site."
|
738 |
-
msgstr "Exporte as configurações do plugin para este site como um arquivo .json. Isso permite que você importe facilmente a configuração para outro site."
|
739 |
-
|
740 |
-
#: inc/admin/admin.php:617
|
741 |
-
msgid "Export"
|
742 |
-
msgstr "Exportar"
|
743 |
-
|
744 |
-
#: inc/admin/admin.php:624
|
745 |
-
msgid "Import Settings"
|
746 |
-
msgstr "Configurações de importação"
|
747 |
-
|
748 |
-
#: inc/admin/admin.php:626
|
749 |
-
msgid "Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above."
|
750 |
-
msgstr "Importe as configurações do plugin de um arquivo .json. Este arquivo pode ser obtido exportando as configurações em outro site usando o formulário acima."
|
751 |
-
|
752 |
-
#: inc/admin/admin.php:634 inc/admin/admin.php:657
|
753 |
-
msgid "Import"
|
754 |
-
msgstr "Importar"
|
755 |
-
|
756 |
-
#: inc/admin/admin.php:642
|
757 |
-
msgid "Import Redirections"
|
758 |
-
msgstr "Redirecionamentos de importação"
|
759 |
-
|
760 |
-
#: inc/admin/admin.php:644
|
761 |
-
msgid "Import your own redirections from a .csv file (separator \";\"). You must have 3 columns in this order: url to match (without your domain name), url to redirect in absolute and type of redirection (301, 302 or 307)."
|
762 |
-
msgstr "Importe seus próprios redirecionamentos a partir de um arquivo .csv (separador \\ \"; \"). Você deve ter 3 colunas nesta ordem: url para combinar (sem seu nome de domínio), url para redirecionar em absoluto e tipo de redirecionamento (301, 302 ou 307)."
|
763 |
-
|
764 |
-
#: inc/admin/admin.php:647
|
765 |
-
msgid "Download a CSV example"
|
766 |
-
msgstr "Faça o download de um exemplo CSV"
|
767 |
-
|
768 |
-
#: inc/admin/admin.php:665
|
769 |
-
msgid "Import posts and terms metadata from Yoast"
|
770 |
-
msgstr "Importar posts e termos metadados de Yoast"
|
771 |
-
|
772 |
-
#: inc/admin/admin.php:667
|
773 |
-
msgid "By clicking Migrate, we'll import:"
|
774 |
-
msgstr "Ao clicar em Migrar, importaremos:"
|
775 |
-
|
776 |
-
#: inc/admin/admin.php:669
|
777 |
-
msgid "Title tags"
|
778 |
-
msgstr "Título"
|
779 |
-
|
780 |
-
#: inc/admin/admin.php:671
|
781 |
-
msgid "Facebook Open Graph tags (title, description and image thumbnail)"
|
782 |
-
msgstr "Etiquetas do Facebook Open Graph (título, descrição e miniatura da imagem)"
|
783 |
-
|
784 |
-
#: inc/admin/admin.php:672
|
785 |
-
msgid "Twitter tags (title, description and image thumbnail)"
|
786 |
-
msgstr "Tags do Twitter (título, descrição e miniatura da imagem)"
|
787 |
-
|
788 |
-
#: inc/admin/admin.php:673
|
789 |
-
msgid "Meta Robots (noindex, nofollow...)"
|
790 |
-
msgstr "Meta Robots (noindex, nofollow ...)"
|
791 |
-
|
792 |
-
#: inc/admin/admin.php:676
|
793 |
-
msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
794 |
-
msgstr "<strong>AVISO: </strong> A migração apagará todos os metadados das postagens do SEOPress"
|
795 |
-
|
796 |
-
#: inc/admin/admin.php:677
|
797 |
-
msgid "Migrate now"
|
798 |
-
msgstr "Migre agora"
|
799 |
-
|
800 |
-
#: inc/admin/admin.php:684
|
801 |
-
msgid "Reset All Notices From Notifications Center"
|
802 |
-
msgstr "Redefinir todos os avisos do Centro de notificações"
|
803 |
-
|
804 |
-
#: inc/admin/admin.php:686
|
805 |
-
msgid "By clicking Reset Notices, you'll see all notices again in notifications center."
|
806 |
-
msgstr "Ao clicar em Repor Avisos, você verá todos os avisos novamente no centro de notificações."
|
807 |
-
|
808 |
-
#: inc/admin/admin.php:691
|
809 |
-
msgid "Reset notices"
|
810 |
-
msgstr "Repor avisos"
|
811 |
-
|
812 |
-
#: inc/admin/admin.php:698
|
813 |
-
msgid "Reset All Settings"
|
814 |
-
msgstr "Redefinir todas as configurações"
|
815 |
-
|
816 |
-
#: inc/admin/admin.php:700
|
817 |
-
msgid "<strong>WARNING:</strong> Delete all options related to SEOPress in your database AND set settings to their default values."
|
818 |
-
msgstr "<strong>AVISO:</strong> Exclua todas as opções relacionadas ao SEOPress em seu banco de dados e configure as configurações para seus valores padrão."
|
819 |
-
|
820 |
-
#: inc/admin/admin.php:705
|
821 |
-
msgid "Reset settings"
|
822 |
-
msgstr "Redefinir configurações"
|
823 |
-
|
824 |
-
#: inc/admin/admin.php:797 inc/admin/admin.php:803
|
825 |
-
msgid "SEO Tools"
|
826 |
-
msgstr "Ferramentas de SEO"
|
827 |
-
|
828 |
-
#: inc/admin/admin.php:798 inc/admin/admin.php:804 inc/admin/admin.php:810
|
829 |
-
#: inc/admin/admin.php:815
|
830 |
-
msgid "Useful links"
|
831 |
-
msgstr "Links Úteis"
|
832 |
-
|
833 |
-
#: inc/admin/admin.php:802 inc/admin/admin.php:814
|
834 |
-
msgid "Notifications Center"
|
835 |
-
msgstr "Centro de Notificações"
|
836 |
-
|
837 |
-
#: inc/admin/admin.php:835
|
838 |
-
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
839 |
-
msgstr "Seu tema não usa <strong>add_theme_support('title-tag');</strong>"
|
840 |
-
|
841 |
-
#: inc/admin/admin.php:836 inc/admin/admin.php:891 inc/admin/admin.php:901
|
842 |
-
#: inc/admin/admin.php:911
|
843 |
-
msgid "High impact"
|
844 |
-
msgstr "Alto impacto"
|
845 |
-
|
846 |
-
#: inc/admin/admin.php:846 inc/admin/admin.php:877 inc/admin/admin.php:4321
|
847 |
-
#: inc/admin/admin.php:4342 inc/admin/admin.php:4363 inc/admin/admin.php:4384
|
848 |
-
msgid "Learn more"
|
849 |
-
msgstr "Consulte mais Informação"
|
850 |
-
|
851 |
-
#: inc/admin/admin.php:853
|
852 |
-
msgid "We notice that you use Yoast SEO plugin. <br>Do you want to migrate all your posts metadata to SEOPress?"
|
853 |
-
msgstr "Percebemos que você usa o plug-in Yoast SEO. <br>Você quer migrar todas as suas metadatas de posts para o SEOPress?"
|
854 |
-
|
855 |
-
#: inc/admin/admin.php:855
|
856 |
-
msgid "Migrate!"
|
857 |
-
msgstr "Migrar!"
|
858 |
-
|
859 |
-
#: inc/admin/admin.php:876
|
860 |
-
msgid "Your site doesn't use an SSL certificate!"
|
861 |
-
msgstr "Seu site não usa um certificado SSL!"
|
862 |
-
|
863 |
-
#: inc/admin/admin.php:878
|
864 |
-
msgid "Low impact"
|
865 |
-
msgstr "Baixo impacto"
|
866 |
-
|
867 |
-
#: inc/admin/admin.php:880
|
868 |
-
msgid "Buy an SSL!"
|
869 |
-
msgstr "Compre um SSL!"
|
870 |
-
|
871 |
-
#: inc/admin/admin.php:890
|
872 |
-
msgid "Your site is not visible to Search Engines!"
|
873 |
-
msgstr "Seu site não está visível para os motores de busca!"
|
874 |
-
|
875 |
-
#: inc/admin/admin.php:893 inc/admin/admin.php:903 inc/admin/admin.php:913
|
876 |
-
#: inc/admin/admin.php:937 inc/admin/admin.php:991 inc/admin/admin.php:1004
|
877 |
-
#: inc/admin/admin.php:1076
|
878 |
-
msgid "Fix this!"
|
879 |
-
msgstr "Corrijir isso!"
|
880 |
-
|
881 |
-
#: inc/admin/admin.php:900
|
882 |
-
msgid "Your site title is empty!"
|
883 |
-
msgstr "O título do seu site está vazio!"
|
884 |
-
|
885 |
-
#: inc/admin/admin.php:910 inc/admin/admin.php:2857
|
886 |
-
msgid "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
887 |
-
msgstr "Os seus permalinks não são SEO Friendly! Habilite belos permalinks para corrigir isso."
|
888 |
-
|
889 |
-
#: inc/admin/admin.php:934
|
890 |
-
msgid "You RSS feed show full text!"
|
891 |
-
msgstr "Você RSS feed mostra o texto completo!"
|
892 |
-
|
893 |
-
#: inc/admin/admin.php:935 inc/admin/admin.php:989 inc/admin/admin.php:1002
|
894 |
-
msgid "Medium impact"
|
895 |
-
msgstr "Médio 500"
|
896 |
-
|
897 |
-
#: inc/admin/admin.php:961
|
898 |
-
msgid "Break comments into pages is ON!"
|
899 |
-
msgstr "Os comentários de quebra nas páginas são ON!"
|
900 |
-
|
901 |
-
#: inc/admin/admin.php:962 inc/admin/admin.php:1026 inc/admin/admin.php:1062
|
902 |
-
msgid "Huge impact"
|
903 |
-
msgstr "Grande impacto"
|
904 |
-
|
905 |
-
#: inc/admin/admin.php:964
|
906 |
-
msgid "Disable this!"
|
907 |
-
msgstr "Desativar!"
|
908 |
-
|
909 |
-
#: inc/admin/admin.php:988
|
910 |
-
msgid "Display more posts per page on homepage and archives"
|
911 |
-
msgstr "Mostrar Post Meta no Arquivo"
|
912 |
-
|
913 |
-
#: inc/admin/admin.php:1001
|
914 |
-
msgid "You don't have an XML Sitemap!"
|
915 |
-
msgstr "Você não tem um Sitemap XML!"
|
916 |
-
|
917 |
-
#: inc/admin/admin.php:1025
|
918 |
-
msgid "Do you have a Google Business page? It's free!"
|
919 |
-
msgstr "Você tem uma página do Google Business? É grátis!"
|
920 |
-
|
921 |
-
#: inc/admin/admin.php:1028
|
922 |
-
msgid "Create your page now!"
|
923 |
-
msgstr "Crie sua página agora!"
|
924 |
-
|
925 |
-
#: inc/admin/admin.php:1061
|
926 |
-
msgid "Add your site to Google. It's free!"
|
927 |
-
msgstr "Adicione seu site ao Google. É grátis!"
|
928 |
-
|
929 |
-
#: inc/admin/admin.php:1064
|
930 |
-
msgid "Add your site to Search Console!"
|
931 |
-
msgstr "Adicione seu site ao Search Console!"
|
932 |
-
|
933 |
-
#: inc/admin/admin.php:1074
|
934 |
-
msgid "You have to enter your licence key to get updates and support"
|
935 |
-
msgstr "Você deve inserir sua chave de licença para obter atualizações e suporte"
|
936 |
-
|
937 |
-
#: inc/admin/admin.php:1089
|
938 |
-
msgid "Check websites setup on your server"
|
939 |
-
msgstr "Verifique a configuração dos sites em seu servidor"
|
940 |
-
|
941 |
-
#: inc/admin/admin.php:1091
|
942 |
-
msgid "Host IP: "
|
943 |
-
msgstr "Host IP: "
|
944 |
-
|
945 |
-
#: inc/admin/admin.php:1097
|
946 |
-
msgid "Server IP Address: "
|
947 |
-
msgstr "Endereço IP do servidor: "
|
948 |
-
|
949 |
-
#: inc/admin/admin.php:1099
|
950 |
-
msgid "Last scrape: "
|
951 |
-
msgstr "Última raspa: "
|
952 |
-
|
953 |
-
#: inc/admin/admin.php:1100
|
954 |
-
msgid "Number of websites on your server: "
|
955 |
-
msgstr "Número de sites no seu servidor: "
|
956 |
-
|
957 |
-
#: inc/admin/admin.php:1112
|
958 |
-
msgid "Get list"
|
959 |
-
msgstr "Obter lista"
|
960 |
-
|
961 |
-
#: inc/admin/admin.php:1120
|
962 |
-
msgid "Check your domain expiration date"
|
963 |
-
msgstr "Verifique a data de validade do seu domínio"
|
964 |
-
|
965 |
-
#: inc/admin/admin.php:1151
|
966 |
-
msgid "Your domain name: "
|
967 |
-
msgstr "Seu nome: "
|
968 |
-
|
969 |
-
#: inc/admin/admin.php:1154
|
970 |
-
msgid "Your registrar: "
|
971 |
-
msgstr "Seu registrador: "
|
972 |
-
|
973 |
-
#: inc/admin/admin.php:1157
|
974 |
-
msgid "Last updated date: "
|
975 |
-
msgstr "Exibir data atualizada: "
|
976 |
-
|
977 |
-
#: inc/admin/admin.php:1160
|
978 |
-
msgid "Domain creation date: "
|
979 |
-
msgstr "Data de criação do domínio: "
|
980 |
-
|
981 |
-
#: inc/admin/admin.php:1163
|
982 |
-
msgid "Your domain expires: "
|
983 |
-
msgstr "Seu domínio expira: "
|
984 |
-
|
985 |
-
#: inc/admin/admin.php:1168
|
986 |
-
msgid "Sorry, you domain name can't be verified :("
|
987 |
-
msgstr "Desculpe, o seu nome de domínio não pode ser verificado :("
|
988 |
-
|
989 |
-
#: inc/admin/admin.php:1171
|
990 |
-
msgid "Email me before expiration"
|
991 |
-
msgstr "Envie-me um email antes do vencimento"
|
992 |
-
|
993 |
-
#: inc/admin/admin.php:1180
|
994 |
-
msgid "Check your Alexa Rank (Amazon index)"
|
995 |
-
msgstr "Verifique o seu ranking Alexa (índice Amazon)"
|
996 |
-
|
997 |
-
#: inc/admin/admin.php:1195
|
998 |
-
msgid "Your Alexa Rank"
|
999 |
-
msgstr "Sua avaliação"
|
1000 |
-
|
1001 |
-
#: inc/admin/admin.php:1217
|
1002 |
-
msgid "Country Rank: "
|
1003 |
-
msgstr "Classificação do país: "
|
1004 |
-
|
1005 |
-
#: inc/admin/admin.php:1226
|
1006 |
-
msgid "The lower, the best"
|
1007 |
-
msgstr "O mais baixo, o melhor"
|
1008 |
-
|
1009 |
-
#: inc/admin/admin.php:1230
|
1010 |
-
msgid "Get Alexa Rank"
|
1011 |
-
msgstr "Obter Alexa Rank"
|
1012 |
-
|
1013 |
-
#: inc/admin/admin.php:1238
|
1014 |
-
msgid "Upload a list of links to disavow to Google"
|
1015 |
-
msgstr "Carregar uma lista de links para desautorizar o Google"
|
1016 |
-
|
1017 |
-
#: inc/admin/admin.php:1239
|
1018 |
-
msgid "Google Trends"
|
1019 |
-
msgstr "Google Plus"
|
1020 |
-
|
1021 |
-
#: inc/admin/admin.php:1240
|
1022 |
-
msgid "Google Campaign URL Builder tool"
|
1023 |
-
msgstr "Ferramenta Google Builder URL da campanha"
|
1024 |
-
|
1025 |
-
#: inc/admin/admin.php:1253
|
1026 |
-
msgid "Titles & metas"
|
1027 |
-
msgstr "Títulos e metas"
|
1028 |
-
|
1029 |
-
#: inc/admin/admin.php:1254
|
1030 |
-
msgid "Manage all your titles & metas"
|
1031 |
-
msgstr "Gerencie todos os seus títulos e metas"
|
1032 |
-
|
1033 |
-
#: inc/admin/admin.php:1255 inc/admin/admin.php:1293 inc/admin/admin.php:1331
|
1034 |
-
#: inc/admin/admin.php:1369 inc/admin/admin.php:1407 inc/admin/admin.php:1436
|
1035 |
-
#: inc/admin/admin.php:1464 inc/admin/admin.php:1492 inc/admin/admin.php:1520
|
1036 |
-
#: inc/admin/admin.php:1548 inc/admin/admin.php:1586 inc/admin/admin.php:1607
|
1037 |
-
#: inc/admin/admin.php:1646 inc/admin/admin.php:1675 inc/admin/admin.php:1725
|
1038 |
-
#: inc/admin/admin.php:1736 inc/admin/admin.php:1748 inc/admin/admin.php:1760
|
1039 |
-
#: inc/admin/admin.php:1781
|
1040 |
-
msgid "Manage"
|
1041 |
-
msgstr "Gerir"
|
1042 |
-
|
1043 |
-
#: inc/admin/admin.php:1292
|
1044 |
-
msgid "Manage your XML / Image / HTML Sitemap"
|
1045 |
-
msgstr "Gerencie seu mapa do site XML / Image / HTML"
|
1046 |
-
|
1047 |
-
#: inc/admin/admin.php:1330
|
1048 |
-
msgid "Open Graph, Twitter Card, Google Knowledge Graph and more..."
|
1049 |
-
msgstr "Gráfico aberto, Cartão Twitter, Gráfico de conhecimento do Google e mais ..."
|
1050 |
-
|
1051 |
-
#: inc/admin/admin.php:1368
|
1052 |
-
msgid "Track everything about your visitors with Google Analytics"
|
1053 |
-
msgstr "Acompanhe tudo sobre seus visitantes com o Google Analytics"
|
1054 |
-
|
1055 |
-
#: inc/admin/admin.php:1406
|
1056 |
-
msgid "Advanced SEO options for advanced users!"
|
1057 |
-
msgstr "Opções avançadas de SEO para usuários avançados!"
|
1058 |
-
|
1059 |
-
#: inc/admin/admin.php:1435
|
1060 |
-
msgid "Improve WooCommerce SEO"
|
1061 |
-
msgstr "Melhore o SEO do WooCommerce"
|
1062 |
-
|
1063 |
-
#: inc/admin/admin.php:1463
|
1064 |
-
msgid "Add Google Local Business data type"
|
1065 |
-
msgstr "Adicionar tipo de dados do Google Local Business"
|
1066 |
-
|
1067 |
-
#: inc/admin/admin.php:1491
|
1068 |
-
msgid "Add Dublin Core meta tags"
|
1069 |
-
msgstr "Adicionar anotações de Dublin Core"
|
1070 |
-
|
1071 |
-
#: inc/admin/admin.php:1519
|
1072 |
-
msgid "Add data types to your content: articles, courses, recipes, videos, events and products"
|
1073 |
-
msgstr "Adicione tipos de dados ao seu conteúdo: artigos, cursos, receitas, vídeos, eventos e produtos"
|
1074 |
-
|
1075 |
-
#: inc/admin/admin.php:1547
|
1076 |
-
msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs"
|
1077 |
-
msgstr "Permita Breadcrumbs para o seu tema e melhore o seu SEO em SERPs"
|
1078 |
-
|
1079 |
-
#: inc/admin/admin.php:1585
|
1080 |
-
msgid "Track your website performance to improve SEO with Google Page Speed"
|
1081 |
-
msgstr "Acompanhe o desempenho do seu site para melhorar o SEO com o Google Page Speed"
|
1082 |
-
|
1083 |
-
#: inc/admin/admin.php:1606
|
1084 |
-
msgid "Edit your robots.txt file"
|
1085 |
-
msgstr "Edite seu arquivo robots.txt"
|
1086 |
-
|
1087 |
-
#: inc/admin/admin.php:1645
|
1088 |
-
msgid "Optimize your site for Google News"
|
1089 |
-
msgstr "Otimize seu site para o Google News"
|
1090 |
-
|
1091 |
-
#: inc/admin/admin.php:1673
|
1092 |
-
msgid "Monitor 404, create 301, 302 and 307 redirections"
|
1093 |
-
msgstr "Monitor 404, crie redirecionamentos 301, 302 e 307"
|
1094 |
-
|
1095 |
-
#: inc/admin/admin.php:1674
|
1096 |
-
msgid "See redirects"
|
1097 |
-
msgstr "Ver redirecionamentos"
|
1098 |
-
|
1099 |
-
#: inc/admin/admin.php:1712
|
1100 |
-
msgid "Scan your site to find SEO problems."
|
1101 |
-
msgstr "Digitalize seu site para encontrar problemas de SEO."
|
1102 |
-
|
1103 |
-
#: inc/admin/admin.php:1713
|
1104 |
-
msgid "See broken links"
|
1105 |
-
msgstr "Veja links quebrados"
|
1106 |
-
|
1107 |
-
#: inc/admin/admin.php:1714
|
1108 |
-
msgid "Scan"
|
1109 |
-
msgstr "Digitalizar"
|
1110 |
-
|
1111 |
-
#: inc/admin/admin.php:1723
|
1112 |
-
msgid "Check your backlinks with Majestic API."
|
1113 |
-
msgstr "Verifique os seus backlinks com a Majestic API."
|
1114 |
-
|
1115 |
-
#: inc/admin/admin.php:1724
|
1116 |
-
msgid "See backlinks"
|
1117 |
-
msgstr "Ver backlinks"
|
1118 |
-
|
1119 |
-
#: inc/admin/admin.php:1735
|
1120 |
-
msgid "Edit your htaccess file."
|
1121 |
-
msgstr "Edite seu arquivo htaccess."
|
1122 |
-
|
1123 |
-
#: inc/admin/admin.php:1747
|
1124 |
-
msgid "Configure default WordPress RSS."
|
1125 |
-
msgstr "Configure o RSS WordPress padrão."
|
1126 |
-
|
1127 |
-
#: inc/admin/admin.php:1759
|
1128 |
-
msgid "Import / export SEOPress settings from site to site."
|
1129 |
-
msgstr "Importar / exportar as configurações do SEOPress de um site para outro."
|
1130 |
-
|
1131 |
-
#: inc/admin/admin.php:1780
|
1132 |
-
msgid "Edit your SEOPress license key."
|
1133 |
-
msgstr "Edite sua chave de licença SEOPress."
|
1134 |
-
|
1135 |
-
#: inc/admin/admin.php:1858
|
1136 |
-
msgid "Site title"
|
1137 |
-
msgstr "Titulo do site"
|
1138 |
-
|
1139 |
-
#: inc/admin/admin.php:2090
|
1140 |
-
msgid "Indicate paginated content to Google"
|
1141 |
-
msgstr "Indique conteúdo paginado ao Google"
|
1142 |
-
|
1143 |
-
#: inc/admin/admin.php:2107 inc/admin/admin.php:3672
|
1144 |
-
msgid "Enable XML Sitemap"
|
1145 |
-
msgstr "Ativar mapa do site XML"
|
1146 |
-
|
1147 |
-
#: inc/admin/admin.php:2115
|
1148 |
-
msgid "Enable XML Image Sitemaps"
|
1149 |
-
msgstr "Ativar mapa do site de Imagem XML"
|
1150 |
-
|
1151 |
-
#: inc/admin/admin.php:2123 inc/admin/admin.php:3726
|
1152 |
-
msgid "Enable HTML Sitemap"
|
1153 |
-
msgstr "Habilitar mapa HTML"
|
1154 |
-
|
1155 |
-
#: inc/admin/admin.php:2139
|
1156 |
-
msgid "Check to INCLUDE Post Types"
|
1157 |
-
msgstr "Verifique INCLUIR Tipos de postagem"
|
1158 |
-
|
1159 |
-
#: inc/admin/admin.php:2155
|
1160 |
-
msgid "Check to INCLUDE Taxonomies"
|
1161 |
-
msgstr "Verifique para INCLUIR Taxonomias"
|
1162 |
-
|
1163 |
-
#: inc/admin/admin.php:2171
|
1164 |
-
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
1165 |
-
msgstr "Digite uma ou mais postagens, página ou ID (s) do tipo de postagem personalizado para exibir o sitemap"
|
1166 |
-
|
1167 |
-
#: inc/admin/admin.php:2179
|
1168 |
-
msgid "Exclude some Posts, Pages or Custom Post Types"
|
1169 |
-
msgstr "Excluir algumas postagens, páginas ou tipos de postagem personalizados"
|
1170 |
-
|
1171 |
-
#: inc/admin/admin.php:2187
|
1172 |
-
msgid "Disable the display of the publication date"
|
1173 |
-
msgstr "Desativar a exibição da data de publicação"
|
1174 |
-
|
1175 |
-
#: inc/admin/admin.php:2204
|
1176 |
-
msgid "Person or organization"
|
1177 |
-
msgstr "Pessoa ou organização"
|
1178 |
-
|
1179 |
-
#: inc/admin/admin.php:2212
|
1180 |
-
msgid "Your name / organization"
|
1181 |
-
msgstr "Seu nome / organização"
|
1182 |
-
|
1183 |
-
#: inc/admin/admin.php:2220
|
1184 |
-
msgid "Your photo / organization logo"
|
1185 |
-
msgstr "Seu logotipo de foto / organização"
|
1186 |
-
|
1187 |
-
#: inc/admin/admin.php:2228
|
1188 |
-
msgid "Organization Phone number (only for Organization)"
|
1189 |
-
msgstr "Organização Número de telefone (somente para Organização)"
|
1190 |
-
|
1191 |
-
#: inc/admin/admin.php:2236
|
1192 |
-
msgid "Contact type (only for Organization)"
|
1193 |
-
msgstr "Tipo de contato (somente para Organização)"
|
1194 |
-
|
1195 |
-
#: inc/admin/admin.php:2244
|
1196 |
-
msgid "Contact option (only for Organization)"
|
1197 |
-
msgstr "Opção de contato (somente para Organização)"
|
1198 |
-
|
1199 |
-
#: inc/admin/admin.php:2261
|
1200 |
-
msgid "Facebook Page URL"
|
1201 |
-
msgstr "Link do Facebook"
|
1202 |
-
|
1203 |
-
#: inc/admin/admin.php:2269
|
1204 |
-
msgid "Twitter Username"
|
1205 |
-
msgstr "Usuário no Twitter"
|
1206 |
-
|
1207 |
-
#: inc/admin/admin.php:2277
|
1208 |
-
msgid "Google + URL"
|
1209 |
-
msgstr "Link do Google Plus"
|
1210 |
-
|
1211 |
-
#: inc/admin/admin.php:2285
|
1212 |
-
msgid "Pinterest URL"
|
1213 |
-
msgstr "Pinterest"
|
1214 |
-
|
1215 |
-
#: inc/admin/admin.php:2293
|
1216 |
-
msgid "Instagram URL"
|
1217 |
-
msgstr "Link do Instagram"
|
1218 |
-
|
1219 |
-
#: inc/admin/admin.php:2301
|
1220 |
-
msgid "YouTube URL"
|
1221 |
-
msgstr "Link do YouTube"
|
1222 |
-
|
1223 |
-
#: inc/admin/admin.php:2309
|
1224 |
-
msgid "LinkedIn URL"
|
1225 |
-
msgstr "Link do Linkedin"
|
1226 |
-
|
1227 |
-
#: inc/admin/admin.php:2317
|
1228 |
-
msgid "MySpace URL"
|
1229 |
-
msgstr "URL do MySpace"
|
1230 |
-
|
1231 |
-
#: inc/admin/admin.php:2325
|
1232 |
-
msgid "Soundcloud URL"
|
1233 |
-
msgstr "URL do Soundcloud"
|
1234 |
-
|
1235 |
-
#: inc/admin/admin.php:2333
|
1236 |
-
msgid "Tumblr URL"
|
1237 |
-
msgstr "Link Tumblr"
|
1238 |
-
|
1239 |
-
#: inc/admin/admin.php:2350
|
1240 |
-
msgid "Enable Open Graph Data"
|
1241 |
-
msgstr "Habilitar dados do gráfico aberto"
|
1242 |
-
|
1243 |
-
#: inc/admin/admin.php:2358
|
1244 |
-
msgid "Select a default image"
|
1245 |
-
msgstr "Selecione uma imagem padrão"
|
1246 |
-
|
1247 |
-
#: inc/admin/admin.php:2366
|
1248 |
-
msgid "Facebook Admin ID"
|
1249 |
-
msgstr "Admin ID do Facebook"
|
1250 |
-
|
1251 |
-
#: inc/admin/admin.php:2374
|
1252 |
-
msgid "Facebook App ID"
|
1253 |
-
msgstr "App ID do Facebook"
|
1254 |
-
|
1255 |
-
#: inc/admin/admin.php:2391
|
1256 |
-
msgid "Enable Twitter Card"
|
1257 |
-
msgstr "Ativar cartão do Twitter"
|
1258 |
-
|
1259 |
-
#: inc/admin/admin.php:2399
|
1260 |
-
msgid "Use Open Graph if no Twitter Cards filled"
|
1261 |
-
msgstr "Use Gráfico aberto se nenhum cartão do Twitter preenchido"
|
1262 |
-
|
1263 |
-
#: inc/admin/admin.php:2407
|
1264 |
-
msgid "Default Twitter Image"
|
1265 |
-
msgstr "Imagem padrão do Twitter"
|
1266 |
-
|
1267 |
-
#: inc/admin/admin.php:2415
|
1268 |
-
msgid "Image size for Twitter Summary card"
|
1269 |
-
msgstr "Tamanho da imagem para o Twitter Summary Card"
|
1270 |
-
|
1271 |
-
#: inc/admin/admin.php:2432 inc/admin/admin.php:4265
|
1272 |
-
msgid "Enable Google Analytics tracking"
|
1273 |
-
msgstr "Habilitar o acompanhamento do Google Analytics"
|
1274 |
-
|
1275 |
-
#: inc/admin/admin.php:2440
|
1276 |
-
msgid "Enter your tracking ID"
|
1277 |
-
msgstr "Digite seu ID de rastreamento"
|
1278 |
-
|
1279 |
-
#: inc/admin/admin.php:2448
|
1280 |
-
msgid "Exclude user roles from tracking"
|
1281 |
-
msgstr "Exclua as funções dos usuários do rastreamento"
|
1282 |
-
|
1283 |
-
#: inc/admin/admin.php:2466 inc/admin/admin.php:4318
|
1284 |
-
msgid "Enable remarketing, demographics and interest reporting"
|
1285 |
-
msgstr "Permitir remarketing, dados demográficos e relatórios de interesse"
|
1286 |
-
|
1287 |
-
#: inc/admin/admin.php:2474 inc/admin/admin.php:4339
|
1288 |
-
msgid "Enable IP Anonymization"
|
1289 |
-
msgstr "Ativar anonimato de IP"
|
1290 |
-
|
1291 |
-
#: inc/admin/admin.php:2482 inc/admin/admin.php:4360
|
1292 |
-
msgid "Enhanced Link Attribution"
|
1293 |
-
msgstr "Atribuição de Link melhorada"
|
1294 |
-
|
1295 |
-
#: inc/admin/admin.php:2490 inc/admin/admin.php:4381
|
1296 |
-
msgid "Enable cross-domain tracking"
|
1297 |
-
msgstr "Habilitar rastreamento entre domínios"
|
1298 |
-
|
1299 |
-
#: inc/admin/admin.php:2498
|
1300 |
-
msgid "Cross domains"
|
1301 |
-
msgstr "Cross-Domain"
|
1302 |
-
|
1303 |
-
#: inc/admin/admin.php:2516
|
1304 |
-
msgid "Enable external links tracking (all links with target _blank attribute)"
|
1305 |
-
msgstr "Ativar rastreamento de links externos (todos os links com o atributo _blank do alvo)"
|
1306 |
-
|
1307 |
-
#: inc/admin/admin.php:2524
|
1308 |
-
msgid "Enable downloads tracking (eg: PDF, XLSX, DOCX...)"
|
1309 |
-
msgstr "Habilite o rastreamento de downloads (por exemplo: PDF, XLSX, DOCX ...)"
|
1310 |
-
|
1311 |
-
#: inc/admin/admin.php:2532
|
1312 |
-
msgid "Track click downloads"
|
1313 |
-
msgstr "Acompanhar downloads de cliques"
|
1314 |
-
|
1315 |
-
#: inc/admin/admin.php:2540
|
1316 |
-
msgid "Enable affiliate / outbound links tracking (eg: aff, go, out, recommends"
|
1317 |
-
msgstr "Ative o rastreamento de links afiliados / de saída (por exemplo: aff, go, out, recommend"
|
1318 |
-
|
1319 |
-
#: inc/admin/admin.php:2548
|
1320 |
-
msgid "Track affiliate / outbound links"
|
1321 |
-
msgstr "Acompanhar links afiliados / de saída"
|
1322 |
-
|
1323 |
-
#: inc/admin/admin.php:2566
|
1324 |
-
msgid "Track Authors"
|
1325 |
-
msgstr "Acompanhar Autores"
|
1326 |
-
|
1327 |
-
#: inc/admin/admin.php:2574
|
1328 |
-
msgid "Track Categories"
|
1329 |
-
msgstr "Categorias de trilha"
|
1330 |
-
|
1331 |
-
#: inc/admin/admin.php:2582
|
1332 |
-
msgid "Track Tags"
|
1333 |
-
msgstr "Etiquetas de faixa"
|
1334 |
-
|
1335 |
-
#: inc/admin/admin.php:2590
|
1336 |
-
msgid "Track Post Types"
|
1337 |
-
msgstr "Tipos de postagem de pista"
|
1338 |
-
|
1339 |
-
#: inc/admin/admin.php:2598
|
1340 |
-
msgid "Track Logged In Users"
|
1341 |
-
msgstr "Controlar usuários registrados"
|
1342 |
-
|
1343 |
-
#: inc/admin/admin.php:2615
|
1344 |
-
msgid "Redirect attachment pages to post parent"
|
1345 |
-
msgstr "Redirecionar páginas de anexos para postar o pai"
|
1346 |
-
|
1347 |
-
#: inc/admin/admin.php:2623
|
1348 |
-
msgid "Remove stop words from URL"
|
1349 |
-
msgstr "Remova as palavras de parada do URL"
|
1350 |
-
|
1351 |
-
#: inc/admin/admin.php:2631
|
1352 |
-
msgid "Remove /category/ in URL"
|
1353 |
-
msgstr "Remover / categoria / em URL"
|
1354 |
-
|
1355 |
-
#: inc/admin/admin.php:2639 inc/admin/admin.php:4927
|
1356 |
-
msgid "Disable trailing slash for metas"
|
1357 |
-
msgstr "Desativar a barra diagonal para metas"
|
1358 |
-
|
1359 |
-
#: inc/admin/admin.php:2647
|
1360 |
-
msgid "Google site verification"
|
1361 |
-
msgstr "Verificação do site do Google"
|
1362 |
-
|
1363 |
-
#: inc/admin/admin.php:2655
|
1364 |
-
msgid "Bing site verification"
|
1365 |
-
msgstr "Verificação do site Bing"
|
1366 |
-
|
1367 |
-
#: inc/admin/admin.php:2663
|
1368 |
-
msgid "Pinterest site verification"
|
1369 |
-
msgstr "Verificação do site Pinterest"
|
1370 |
-
|
1371 |
-
#: inc/admin/admin.php:2671
|
1372 |
-
msgid "Yandex site verification"
|
1373 |
-
msgstr "Verificação do site Yandex"
|
1374 |
-
|
1375 |
-
#: inc/admin/admin.php:2688
|
1376 |
-
msgid "SEOPress in admin bar"
|
1377 |
-
msgstr "SEOPress na barra de administração"
|
1378 |
-
|
1379 |
-
#: inc/admin/admin.php:2696
|
1380 |
-
msgid "Move SEOPress metaboxe position"
|
1381 |
-
msgstr "Mover a posição do metaboxe SEOPress"
|
1382 |
-
|
1383 |
-
#: inc/admin/admin.php:2704
|
1384 |
-
msgid "Hide SEOPress Notifications Center"
|
1385 |
-
msgstr "Ocultar Centro de notificações SEOPress"
|
1386 |
-
|
1387 |
-
#: inc/admin/admin.php:2712
|
1388 |
-
msgid "Show Title tag column in post types"
|
1389 |
-
msgstr "Mostrar coluna de tag de título em tipos de postagem"
|
1390 |
-
|
1391 |
-
#: inc/admin/admin.php:2720
|
1392 |
-
msgid "Show Meta description column in post types"
|
1393 |
-
msgstr "Mostrar coluna de descrição Meta em tipos de postagem"
|
1394 |
-
|
1395 |
-
#: inc/admin/admin.php:2728
|
1396 |
-
msgid "Show noindex column in post types"
|
1397 |
-
msgstr "Mostrar coluna noindex em tipos de postagem"
|
1398 |
-
|
1399 |
-
#: inc/admin/admin.php:2736
|
1400 |
-
msgid "Show nofollow column in post types"
|
1401 |
-
msgstr "Mostrar coluna nofollow em tipos de postagem"
|
1402 |
-
|
1403 |
-
#: inc/admin/admin.php:2744
|
1404 |
-
msgid "Show total number of words column in post types"
|
1405 |
-
msgstr "Mostrar número total de coluna de palavras em tipos de publicação"
|
1406 |
-
|
1407 |
-
#: inc/admin/admin.php:2752
|
1408 |
-
msgid "Show W3C validator column in post types"
|
1409 |
-
msgstr "Mostrar coluna do validador W3C em tipos de postagem"
|
1410 |
-
|
1411 |
-
#: inc/admin/admin.php:2760
|
1412 |
-
msgid "Show Google Page Speed column in post types"
|
1413 |
-
msgstr "Mostrar coluna de velocidade da página do Google em tipos de postagem"
|
1414 |
-
|
1415 |
-
#: inc/admin/admin.php:2769
|
1416 |
-
msgid "Hide Genesis SEO Metaboxe"
|
1417 |
-
msgstr "Ocultar Genesis SEO Metaboxe"
|
1418 |
-
|
1419 |
-
#: inc/admin/admin.php:2786
|
1420 |
-
msgid "Block SEO metaboxe to user roles"
|
1421 |
-
msgstr "Bloqueie metaboxe de SEO para funções de usuário"
|
1422 |
-
|
1423 |
-
#: inc/admin/admin.php:2830
|
1424 |
-
msgid "<p>Customize your titles & metas for homepage</p>"
|
1425 |
-
msgstr "<p>Personalizar seus títulos e metas para a página inicial</p>"
|
1426 |
-
|
1427 |
-
#: inc/admin/admin.php:2835
|
1428 |
-
msgid "<p>Customize your titles & metas for Single Custom Post Types</p>"
|
1429 |
-
msgstr "<p>Personalize seus títulos e metas para Tipos de postagem personalizados simples</p>"
|
1430 |
-
|
1431 |
-
#: inc/admin/admin.php:2840
|
1432 |
-
msgid "<p>Customize your metas for all pages</p>"
|
1433 |
-
msgstr "<p>Personalize suas metas para todas as páginas</p>"
|
1434 |
-
|
1435 |
-
#: inc/admin/admin.php:2845
|
1436 |
-
msgid "<p>Customize your metas for all taxonomies archives</p>"
|
1437 |
-
msgstr "<p>Personalize suas metas para todos os arquivos de taxonomias</p>"
|
1438 |
-
|
1439 |
-
#: inc/admin/admin.php:2850
|
1440 |
-
msgid "<p>Customize your metas for all archives</p>"
|
1441 |
-
msgstr "<p>Personalize seus metas para todos os arquivos</p>"
|
1442 |
-
|
1443 |
-
#: inc/admin/admin.php:2861
|
1444 |
-
msgid "To view your sitemap, enable permalinks (not default one), and save settings to flush them."
|
1445 |
-
msgstr "Para visualizar o seu sitemap, habilite permalinks (não padrão) e salve as configurações para liberá-los."
|
1446 |
-
|
1447 |
-
#: inc/admin/admin.php:2862
|
1448 |
-
msgid "Only the last 1000 items are listed in Sitemaps for performances issues."
|
1449 |
-
msgstr "Somente os últimos 1000 itens estão listados em Sitemaps para problemas de desempenho."
|
1450 |
-
|
1451 |
-
#: inc/admin/admin.php:2864
|
1452 |
-
msgid "Your server use NGINX. If XML Sitemaps doesn't work, you have to add this rules to your configuration:"
|
1453 |
-
msgstr "Seu servidor usa NGINX. Se XML Sitemaps não funcionar, você deve adicionar estas regras à sua configuração:"
|
1454 |
-
|
1455 |
-
#: inc/admin/admin.php:2874
|
1456 |
-
msgid "Noindex content will not be displayed in Sitemaps."
|
1457 |
-
msgstr "O conteúdo do Noindex não será exibido nos Sitemaps."
|
1458 |
-
|
1459 |
-
#: inc/admin/admin.php:2876
|
1460 |
-
msgid "View your sitemap"
|
1461 |
-
msgstr "Veja seu sitemap"
|
1462 |
-
|
1463 |
-
#: inc/admin/admin.php:2878
|
1464 |
-
msgid "Ping Google manually"
|
1465 |
-
msgstr "Ping Google manualmente"
|
1466 |
-
|
1467 |
-
#: inc/admin/admin.php:2880
|
1468 |
-
msgid "Flush permalinks"
|
1469 |
-
msgstr "Descarregar os links permanentes"
|
1470 |
-
|
1471 |
-
#: inc/admin/admin.php:2886
|
1472 |
-
msgid "<p>Create an HTML for your visitors and boost your SEO.</p>"
|
1473 |
-
msgstr "<p>Crie um HTML para seus visitantes e turbine seu SEO.</p>"
|
1474 |
-
|
1475 |
-
#: inc/admin/admin.php:2901
|
1476 |
-
msgid "<p>Include / Exclude Post Types</p>"
|
1477 |
-
msgstr "<p>Incluir / Excluir tipos de postagem</p>"
|
1478 |
-
|
1479 |
-
#: inc/admin/admin.php:2906
|
1480 |
-
msgid "<p>Include / Exclude Taxonomies</p>"
|
1481 |
-
msgstr "<p>Incluir / Excluir Taxonomias</p>"
|
1482 |
-
|
1483 |
-
#: inc/admin/admin.php:2911
|
1484 |
-
msgid "<p>Configure Google Knowledge Graph</p>"
|
1485 |
-
msgstr "<p>Configure o Google Knowledge Graph</p>"
|
1486 |
-
|
1487 |
-
#: inc/admin/admin.php:2916
|
1488 |
-
msgid "<p>Link your site with your social accounts</p>"
|
1489 |
-
msgstr "<p>Vincule seu site com suas contas sociais</p>"
|
1490 |
-
|
1491 |
-
#: inc/admin/admin.php:2921
|
1492 |
-
msgid "<p>Manage Open Graph datas</p>"
|
1493 |
-
msgstr "<p>Gerenciar Dados do Gráfico Aberto</p>"
|
1494 |
-
|
1495 |
-
#: inc/admin/admin.php:2926
|
1496 |
-
msgid "<p>Manage your Twitter card</p>"
|
1497 |
-
msgstr "<p>Gerencie seu cartão do Twitter</p>"
|
1498 |
-
|
1499 |
-
#: inc/admin/admin.php:2931
|
1500 |
-
msgid "<p>Link your Google Analytics to your website</p>"
|
1501 |
-
msgstr "<p>Vincule seu Google Analytics ao seu site</p>"
|
1502 |
-
|
1503 |
-
#: inc/admin/admin.php:2936
|
1504 |
-
msgid "<p>Configure your Google Analytics tracking code</p>"
|
1505 |
-
msgstr "<p>Configure seu código de rastreamento do Google Analytics</p>"
|
1506 |
-
|
1507 |
-
#: inc/admin/admin.php:2941
|
1508 |
-
msgid "<p>Track events in Google Analytics</p>"
|
1509 |
-
msgstr "<p>Acompanha eventos no Google Analytics</p>"
|
1510 |
-
|
1511 |
-
#: inc/admin/admin.php:2946
|
1512 |
-
msgid "<p>Configure your Google Analytics custom dimensions. <br>Custom dimensions and custom metrics are like default dimensions and metrics in your Analytics account,<br> except you create them yourself. You can use them to collect and analyze data that Analytics doesn't automatically track.<br> Notice that you have to setup your custom dimensions in your Google Analytics account too. More info by clicking on help icon."
|
1513 |
-
msgstr "<p>Configure as suas dimensões personalizadas do Google Analytics. <br> As dimensões personalizadas e métricas personalizadas são como dimensões e métricas padrão em sua conta do Google Analytics, exceto você criá-las você mesmo. Você pode usá-los para coletar e analisar dados que o Analytics não acompanha automaticamente. <br> Observe que você também precisa configurar suas dimensões personalizadas em sua conta do Google Analytics. Mais informações clicando no ícone de ajuda."
|
1514 |
-
|
1515 |
-
#: inc/admin/admin.php:2961
|
1516 |
-
msgid "<p>Advanced SEO options</p>"
|
1517 |
-
msgstr "<p>Opções avançadas de SEO</p>"
|
1518 |
-
|
1519 |
-
#: inc/admin/admin.php:2966
|
1520 |
-
msgid "<p>Customize SEOPress to fit your needs</p>"
|
1521 |
-
msgstr "<p>Personalizar o SEOPress para atender às suas necessidades</p>"
|
1522 |
-
|
1523 |
-
#: inc/admin/admin.php:2971
|
1524 |
-
msgid "<p>Manage security</p>"
|
1525 |
-
msgstr "<p>Gerenciar segurança</p>"
|
1526 |
-
|
1527 |
-
#: inc/admin/admin.php:2982
|
1528 |
-
msgid "My awesome website"
|
1529 |
-
msgstr "Seu website"
|
1530 |
-
|
1531 |
-
#: inc/admin/admin.php:2987 inc/admin/admin.php:2998 inc/admin/admin.php:3038
|
1532 |
-
#: inc/admin/admin.php:3155 inc/admin/admin.php:3186 inc/admin/admin.php:3263
|
1533 |
-
#: inc/admin/admin.php:3338 inc/admin/admin.php:3408 inc/admin/admin.php:3477
|
1534 |
-
#: inc/admin/admin.php:3509
|
1535 |
-
msgid "More tags"
|
1536 |
-
msgstr "Mais opções"
|
1537 |
-
|
1538 |
-
#: inc/admin/admin.php:2993
|
1539 |
-
msgid "This is a cool website about Wookiees"
|
1540 |
-
msgstr "Este é um site legal sobre Wookiees"
|
1541 |
-
|
1542 |
-
#: inc/admin/admin.php:3001
|
1543 |
-
msgid "Looking for editing your blog page?"
|
1544 |
-
msgstr "Procurando a edição da página do seu blog?"
|
1545 |
-
|
1546 |
-
#: inc/admin/admin.php:3015 inc/admin/admin.php:3126 inc/admin/admin.php:3240
|
1547 |
-
#: inc/admin/admin.php:3327 inc/admin/admin.php:3397 inc/admin/admin.php:3466
|
1548 |
-
#: inc/admin/admin.php:3500
|
1549 |
-
msgid "Title template"
|
1550 |
-
msgstr "Modelo de título"
|
1551 |
-
|
1552 |
-
#: inc/admin/admin.php:3034
|
1553 |
-
msgid "Post Title"
|
1554 |
-
msgstr "Título da postagem"
|
1555 |
-
|
1556 |
-
#: inc/admin/admin.php:3045 inc/admin/admin.php:3162 inc/admin/admin.php:3270
|
1557 |
-
#: inc/admin/admin.php:3344 inc/admin/admin.php:3414 inc/admin/admin.php:3483
|
1558 |
-
#: inc/admin/admin.php:3515
|
1559 |
-
msgid "Meta description template"
|
1560 |
-
msgstr "Modelo de descrição meta"
|
1561 |
-
|
1562 |
-
#: inc/admin/admin.php:3106
|
1563 |
-
msgid "Display date in Google search results?"
|
1564 |
-
msgstr "Exibir data nos resultados de pesquisa do Google?"
|
1565 |
-
|
1566 |
-
#: inc/admin/admin.php:3146
|
1567 |
-
msgid "Category Title"
|
1568 |
-
msgstr "Categoria"
|
1569 |
-
|
1570 |
-
#: inc/admin/admin.php:3148
|
1571 |
-
msgid "Tag Title"
|
1572 |
-
msgstr "Título"
|
1573 |
-
|
1574 |
-
#: inc/admin/admin.php:3150
|
1575 |
-
msgid "Term Title"
|
1576 |
-
msgstr "Título"
|
1577 |
-
|
1578 |
-
#: inc/admin/admin.php:3179
|
1579 |
-
msgid "Category Description"
|
1580 |
-
msgstr "Categoria"
|
1581 |
-
|
1582 |
-
#: inc/admin/admin.php:3181
|
1583 |
-
msgid "Tag Description"
|
1584 |
-
msgstr "Descrição do Tag"
|
1585 |
-
|
1586 |
-
#: inc/admin/admin.php:3183
|
1587 |
-
msgid "Term Description"
|
1588 |
-
msgstr "Descrição do Termo"
|
1589 |
-
|
1590 |
-
#: inc/admin/admin.php:3259
|
1591 |
-
msgid "Post Type Archive Name"
|
1592 |
-
msgstr "Tipo de Postagem Nome do arquivo"
|
1593 |
-
|
1594 |
-
#: inc/admin/admin.php:3325
|
1595 |
-
msgid "Author archives"
|
1596 |
-
msgstr "Arquivos do autor"
|
1597 |
-
|
1598 |
-
#: inc/admin/admin.php:3386
|
1599 |
-
msgid "Disable author archives"
|
1600 |
-
msgstr "Desabilitar arquivos do autor"
|
1601 |
-
|
1602 |
-
#: inc/admin/admin.php:3395
|
1603 |
-
msgid "Date archives"
|
1604 |
-
msgstr "Arquivos de data"
|
1605 |
-
|
1606 |
-
#: inc/admin/admin.php:3406
|
1607 |
-
msgid "Archive date"
|
1608 |
-
msgstr "Data do arquivo"
|
1609 |
-
|
1610 |
-
#: inc/admin/admin.php:3455
|
1611 |
-
msgid "Disable date archives"
|
1612 |
-
msgstr "Desabilitar arquivos de data"
|
1613 |
-
|
1614 |
-
#: inc/admin/admin.php:3464
|
1615 |
-
msgid "Search archives"
|
1616 |
-
msgstr "Procurar arquivos"
|
1617 |
-
|
1618 |
-
#: inc/admin/admin.php:3475
|
1619 |
-
msgid "Search Keywords"
|
1620 |
-
msgstr "Procure palavras-chave"
|
1621 |
-
|
1622 |
-
#: inc/admin/admin.php:3498
|
1623 |
-
msgid "404 archives"
|
1624 |
-
msgstr "404 arquivos"
|
1625 |
-
|
1626 |
-
#: inc/admin/admin.php:3653
|
1627 |
-
msgid "Add rel next/prev link in head of paginated archive pages"
|
1628 |
-
msgstr "Adicione rel next / prev no cabeçalho das páginas de arquivo paginadas"
|
1629 |
-
|
1630 |
-
#: inc/admin/admin.php:3655
|
1631 |
-
msgid "Learn more on Google website"
|
1632 |
-
msgstr "Saiba mais no site do Google"
|
1633 |
-
|
1634 |
-
#: inc/admin/admin.php:3699
|
1635 |
-
msgid "Enable Image Sitemaps"
|
1636 |
-
msgstr "Ativar imagem do mapa do site"
|
1637 |
-
|
1638 |
-
#: inc/admin/admin.php:3776 inc/admin/admin.php:3816
|
1639 |
-
msgid "Include"
|
1640 |
-
msgstr "Incluir"
|
1641 |
-
|
1642 |
-
#: inc/admin/admin.php:3831
|
1643 |
-
msgid "eg: 2, 28, 68"
|
1644 |
-
msgstr "por exemplo: 2, 28, 68"
|
1645 |
-
|
1646 |
-
#: inc/admin/admin.php:3835
|
1647 |
-
msgid "You can also use this shorcode:"
|
1648 |
-
msgstr "Você também pode usar esse shorcode:"
|
1649 |
-
|
1650 |
-
#: inc/admin/admin.php:3845
|
1651 |
-
msgid "eg: 13, 8, 38"
|
1652 |
-
msgstr "por exemplo: 13, 8, 38"
|
1653 |
-
|
1654 |
-
#: inc/admin/admin.php:3860
|
1655 |
-
msgid "Disable date after each post, page, post type?"
|
1656 |
-
msgstr "Desativar data após cada postagem, página, tipo de publicação?"
|
1657 |
-
|
1658 |
-
#: inc/admin/admin.php:3876
|
1659 |
-
msgid "Person"
|
1660 |
-
msgstr "Pessoa"
|
1661 |
-
|
1662 |
-
#: inc/admin/admin.php:3879
|
1663 |
-
msgid "Organization"
|
1664 |
-
msgstr "Empresa"
|
1665 |
-
|
1666 |
-
#: inc/admin/admin.php:3892
|
1667 |
-
msgid "eg: Apple"
|
1668 |
-
msgstr "por exemplo: Apple"
|
1669 |
-
|
1670 |
-
#: inc/admin/admin.php:3905
|
1671 |
-
msgid "Select your logo"
|
1672 |
-
msgstr "Selecione seu logotipo"
|
1673 |
-
|
1674 |
-
#: inc/admin/admin.php:3933
|
1675 |
-
msgid "eg: +33123456789 (internationalized version required)"
|
1676 |
-
msgstr "por exemplo: +33123456789 (versão internacionalizada necessária)"
|
1677 |
-
|
1678 |
-
#: inc/admin/admin.php:3948
|
1679 |
-
msgid "Customer support"
|
1680 |
-
msgstr "Suporte ao cliente"
|
1681 |
-
|
1682 |
-
#: inc/admin/admin.php:3951
|
1683 |
-
msgid "Technical support"
|
1684 |
-
msgstr "Suporte técnico"
|
1685 |
-
|
1686 |
-
#: inc/admin/admin.php:3954
|
1687 |
-
msgid "Billing support"
|
1688 |
-
msgstr "Suporte de faturamento"
|
1689 |
-
|
1690 |
-
#: inc/admin/admin.php:3957
|
1691 |
-
msgid "Bill payment"
|
1692 |
-
msgstr "Pagamento de conta"
|
1693 |
-
|
1694 |
-
#: inc/admin/admin.php:3960
|
1695 |
-
msgid "Sales"
|
1696 |
-
msgstr "Vendas"
|
1697 |
-
|
1698 |
-
#: inc/admin/admin.php:3963
|
1699 |
-
msgid "Credit card support"
|
1700 |
-
msgstr "Suporte ao cartão de crédito"
|
1701 |
-
|
1702 |
-
#: inc/admin/admin.php:3966
|
1703 |
-
msgid "Emergency"
|
1704 |
-
msgstr "Emergência"
|
1705 |
-
|
1706 |
-
#: inc/admin/admin.php:3969
|
1707 |
-
msgid "Baggage tracking"
|
1708 |
-
msgstr "Acompanhamento de Bagagem"
|
1709 |
-
|
1710 |
-
#: inc/admin/admin.php:3972
|
1711 |
-
msgid "Roadside assistance"
|
1712 |
-
msgstr "Assistência rodoviária"
|
1713 |
-
|
1714 |
-
#: inc/admin/admin.php:3975
|
1715 |
-
msgid "Package tracking"
|
1716 |
-
msgstr "Acompanhamento de pacotes"
|
1717 |
-
|
1718 |
-
#: inc/admin/admin.php:3992
|
1719 |
-
msgid "Toll Free"
|
1720 |
-
msgstr "Grátis"
|
1721 |
-
|
1722 |
-
#: inc/admin/admin.php:3995
|
1723 |
-
msgid "Hearing impaired supported"
|
1724 |
-
msgstr "Deficientes auditivos suportados"
|
1725 |
-
|
1726 |
-
#: inc/admin/admin.php:4008
|
1727 |
-
msgid "eg: https://www.facebook.com/your-page"
|
1728 |
-
msgstr "por exemplo: https://www.facebook.com/your-page"
|
1729 |
-
|
1730 |
-
#: inc/admin/admin.php:4021
|
1731 |
-
msgid "eg: @wp_seopress"
|
1732 |
-
msgstr "por exemplo: @wp_seopress"
|
1733 |
-
|
1734 |
-
#: inc/admin/admin.php:4033
|
1735 |
-
msgid "eg: https://plus.google.com/+BenjaminDenis"
|
1736 |
-
msgstr "por exemplo: https://plus.google.com/+BenjaminDenis"
|
1737 |
-
|
1738 |
-
#: inc/admin/admin.php:4045
|
1739 |
-
msgid "eg: https://pinterest.com/wpbuy/"
|
1740 |
-
msgstr "por exemplo: https://pinterest.com/wpbuy/"
|
1741 |
-
|
1742 |
-
#: inc/admin/admin.php:4057
|
1743 |
-
msgid "eg: https://www.instagram.com/rainbowgeek64/"
|
1744 |
-
msgstr "por exemplo: https://www.instagram.com/rainbowgeek64/"
|
1745 |
-
|
1746 |
-
#: inc/admin/admin.php:4069
|
1747 |
-
msgid "eg: https://www.youtube.com/channel/UCpQzarWu55UzCIH7-OW6pwA"
|
1748 |
-
msgstr "por exemplo: https://www.youtube.com/channel/UCpQzarWu55UzCIH7 -OW6pwA"
|
1749 |
-
|
1750 |
-
#: inc/admin/admin.php:4081
|
1751 |
-
msgid "eg: https://www.linkedin.com/in/benjamin-denis-70672b3b"
|
1752 |
-
msgstr "por exemplo: https://www.linkedin.com/in/benjamin-denis-70672b3b"
|
1753 |
-
|
1754 |
-
#: inc/admin/admin.php:4093
|
1755 |
-
msgid "eg: https://myspace.com/your-page"
|
1756 |
-
msgstr "por exemplo: https://myspace.com/your-page"
|
1757 |
-
|
1758 |
-
#: inc/admin/admin.php:4105
|
1759 |
-
msgid "eg: https://soundcloud.com/michaelmccannmusic"
|
1760 |
-
msgstr "por exemplo: https://soundcloud.com/michaelmccannmusic"
|
1761 |
-
|
1762 |
-
#: inc/admin/admin.php:4117
|
1763 |
-
msgid "eg: https://your-site.tumblr.com"
|
1764 |
-
msgstr "por exemplo: https://your-site.tumblr.com"
|
1765 |
-
|
1766 |
-
#: inc/admin/admin.php:4134
|
1767 |
-
msgid "Enable OG data"
|
1768 |
-
msgstr "Habilitar dados OG"
|
1769 |
-
|
1770 |
-
#: inc/admin/admin.php:4180
|
1771 |
-
msgid "How-to create a Facebook App ID"
|
1772 |
-
msgstr "Como criar um ID de aplicativo do Facebook"
|
1773 |
-
|
1774 |
-
#: inc/admin/admin.php:4194
|
1775 |
-
msgid "Enable Twitter card"
|
1776 |
-
msgstr "Ativar cartão Twitter"
|
1777 |
-
|
1778 |
-
#: inc/admin/admin.php:4211
|
1779 |
-
msgid "Use OG if no Twitter Cards"
|
1780 |
-
msgstr "Use OG se nenhum cartão do Twitter"
|
1781 |
-
|
1782 |
-
#: inc/admin/admin.php:4244
|
1783 |
-
msgid "Default"
|
1784 |
-
msgstr "Padrão"
|
1785 |
-
|
1786 |
-
#: inc/admin/admin.php:4247
|
1787 |
-
msgid "Large"
|
1788 |
-
msgstr "Ampla"
|
1789 |
-
|
1790 |
-
#: inc/admin/admin.php:4275
|
1791 |
-
msgid "Enter your Tracking ID (UA-XXXX-XX)"
|
1792 |
-
msgstr "Digite seu ID de rastreamento (UA-XXXX-XX)"
|
1793 |
-
|
1794 |
-
#: inc/admin/admin.php:4279
|
1795 |
-
msgid "Find your tracking ID"
|
1796 |
-
msgstr "Encontre seu ID de rastreamento"
|
1797 |
-
|
1798 |
-
#: inc/admin/admin.php:4320
|
1799 |
-
msgid "A remarketing audience is a list of cookies or mobile-advertising IDs that represents a group of users you want to re-engage because of their likelihood to convert."
|
1800 |
-
msgstr "Um público de remarketing é uma lista de cookies ou IDs de publicidade móvel que representa um grupo de usuários que deseja re-engajar devido à sua probabilidade de se converter."
|
1801 |
-
|
1802 |
-
#: inc/admin/admin.php:4341
|
1803 |
-
msgid "When a customer of Analytics requests IP address anonymization, Analytics anonymizes the address as soon as technically feasible at the earliest possible stage of the collection network."
|
1804 |
-
msgstr "Quando um cliente do Analytics solicita anonimato de endereço IP, o Analytics anonimiza o endereço, logo que tecnicamente viável, na fase mais antiga possível da rede de coleta."
|
1805 |
-
|
1806 |
-
#: inc/admin/admin.php:4362
|
1807 |
-
msgid "Enhanced Link Attribution improves the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
|
1808 |
-
msgstr "O Atributo de Link Melhorado melhora a precisão do seu relatório In-Page Analytics, diferenciando automaticamente vários links para o mesmo URL em uma única página, usando IDs de elementos de link."
|
1809 |
-
|
1810 |
-
#: inc/admin/admin.php:4383
|
1811 |
-
msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites (such as an ecommerce site and a separate shopping cart site) as a single session. This is sometimes called site linking."
|
1812 |
-
msgstr "O rastreamento de domínio cruzado permite que o Google Analytics veja sessões em dois sites relacionados (como um site de comércio eletrônico e um site de carrinho de compras separado) como uma única sessão. Isso às vezes é chamado de link do site."
|
1813 |
-
|
1814 |
-
#: inc/admin/admin.php:4395
|
1815 |
-
msgid "Enter yours domains"
|
1816 |
-
msgstr "Digite seus domínios"
|
1817 |
-
|
1818 |
-
#: inc/admin/admin.php:4412
|
1819 |
-
msgid "Enable external links tracking"
|
1820 |
-
msgstr "Ativar rastreamento de links externos"
|
1821 |
-
|
1822 |
-
#: inc/admin/admin.php:4429
|
1823 |
-
msgid "Enable download tracking"
|
1824 |
-
msgstr "Ativar o rastreamento do download"
|
1825 |
-
|
1826 |
-
#: inc/admin/admin.php:4441
|
1827 |
-
msgid "pdf|docx|pptx|zip"
|
1828 |
-
msgstr "pdf|docx|pptx|zip"
|
1829 |
-
|
1830 |
-
#: inc/admin/admin.php:4445
|
1831 |
-
msgid "Separate each file type extensions with a pipe \"|\""
|
1832 |
-
msgstr "Separar cada extensão de tipo de arquivo com um pipe \"| \""
|
1833 |
-
|
1834 |
-
#: inc/admin/admin.php:4460
|
1835 |
-
msgid "Enable affiliate / outbound tracking"
|
1836 |
-
msgstr "Ativar acompanhamento de afiliados / saída"
|
1837 |
-
|
1838 |
-
#: inc/admin/admin.php:4472
|
1839 |
-
msgid "aff|go|out"
|
1840 |
-
msgstr "aff|go|out"
|
1841 |
-
|
1842 |
-
#: inc/admin/admin.php:4476
|
1843 |
-
msgid "Separate each keyword with a pipe \"|\""
|
1844 |
-
msgstr "Separe cada palavra-chave com um pipe \"| \""
|
1845 |
-
|
1846 |
-
#: inc/admin/admin.php:4493 inc/admin/admin.php:4570 inc/admin/admin.php:4647
|
1847 |
-
#: inc/admin/admin.php:4724 inc/admin/admin.php:4801
|
1848 |
-
msgid "Custom Dimension #1"
|
1849 |
-
msgstr "Dimensão personalizada #1"
|
1850 |
-
|
1851 |
-
#: inc/admin/admin.php:4496 inc/admin/admin.php:4573 inc/admin/admin.php:4650
|
1852 |
-
#: inc/admin/admin.php:4727 inc/admin/admin.php:4804
|
1853 |
-
msgid "Custom Dimension #2"
|
1854 |
-
msgstr "Dimensão personalizada #2"
|
1855 |
-
|
1856 |
-
#: inc/admin/admin.php:4499 inc/admin/admin.php:4576 inc/admin/admin.php:4653
|
1857 |
-
#: inc/admin/admin.php:4730 inc/admin/admin.php:4807
|
1858 |
-
msgid "Custom Dimension #3"
|
1859 |
-
msgstr "Dimensão personalizada #3"
|
1860 |
-
|
1861 |
-
#: inc/admin/admin.php:4502 inc/admin/admin.php:4579 inc/admin/admin.php:4656
|
1862 |
-
#: inc/admin/admin.php:4733 inc/admin/admin.php:4810
|
1863 |
-
msgid "Custom Dimension #4"
|
1864 |
-
msgstr "Dimensão personalizada #4"
|
1865 |
-
|
1866 |
-
#: inc/admin/admin.php:4505 inc/admin/admin.php:4582 inc/admin/admin.php:4659
|
1867 |
-
#: inc/admin/admin.php:4736 inc/admin/admin.php:4813
|
1868 |
-
msgid "Custom Dimension #5"
|
1869 |
-
msgstr "Dimensão personalizada #5"
|
1870 |
-
|
1871 |
-
#: inc/admin/admin.php:4508 inc/admin/admin.php:4585 inc/admin/admin.php:4662
|
1872 |
-
#: inc/admin/admin.php:4739 inc/admin/admin.php:4816
|
1873 |
-
msgid "Custom Dimension #6"
|
1874 |
-
msgstr "Dimensão personalizada #6"
|
1875 |
-
|
1876 |
-
#: inc/admin/admin.php:4511 inc/admin/admin.php:4588 inc/admin/admin.php:4665
|
1877 |
-
#: inc/admin/admin.php:4742 inc/admin/admin.php:4819
|
1878 |
-
msgid "Custom Dimension #7"
|
1879 |
-
msgstr "Dimensão personalizada #7"
|
1880 |
-
|
1881 |
-
#: inc/admin/admin.php:4514 inc/admin/admin.php:4591 inc/admin/admin.php:4668
|
1882 |
-
#: inc/admin/admin.php:4745 inc/admin/admin.php:4822
|
1883 |
-
msgid "Custom Dimension #8"
|
1884 |
-
msgstr "Dimensão personalizada #8"
|
1885 |
-
|
1886 |
-
#: inc/admin/admin.php:4517 inc/admin/admin.php:4594 inc/admin/admin.php:4671
|
1887 |
-
#: inc/admin/admin.php:4748 inc/admin/admin.php:4825
|
1888 |
-
msgid "Custom Dimension #9"
|
1889 |
-
msgstr "Dimensão personalizada #9"
|
1890 |
-
|
1891 |
-
#: inc/admin/admin.php:4520 inc/admin/admin.php:4597 inc/admin/admin.php:4674
|
1892 |
-
#: inc/admin/admin.php:4751 inc/admin/admin.php:4828
|
1893 |
-
msgid "Custom Dimension #10"
|
1894 |
-
msgstr "Dimensão personalizada #10"
|
1895 |
-
|
1896 |
-
#: inc/admin/admin.php:4523 inc/admin/admin.php:4600 inc/admin/admin.php:4677
|
1897 |
-
#: inc/admin/admin.php:4754 inc/admin/admin.php:4831
|
1898 |
-
msgid "Custom Dimension #11"
|
1899 |
-
msgstr "Dimensão personalizada #11"
|
1900 |
-
|
1901 |
-
#: inc/admin/admin.php:4526 inc/admin/admin.php:4603 inc/admin/admin.php:4680
|
1902 |
-
#: inc/admin/admin.php:4757 inc/admin/admin.php:4834
|
1903 |
-
msgid "Custom Dimension #12"
|
1904 |
-
msgstr "Dimensão personalizada #12"
|
1905 |
-
|
1906 |
-
#: inc/admin/admin.php:4529 inc/admin/admin.php:4606 inc/admin/admin.php:4683
|
1907 |
-
#: inc/admin/admin.php:4760 inc/admin/admin.php:4837
|
1908 |
-
msgid "Custom Dimension #13"
|
1909 |
-
msgstr "Dimensão personalizada #13"
|
1910 |
-
|
1911 |
-
#: inc/admin/admin.php:4532 inc/admin/admin.php:4609 inc/admin/admin.php:4686
|
1912 |
-
#: inc/admin/admin.php:4763 inc/admin/admin.php:4840
|
1913 |
-
msgid "Custom Dimension #14"
|
1914 |
-
msgstr "Dimensão personalizada #14"
|
1915 |
-
|
1916 |
-
#: inc/admin/admin.php:4535 inc/admin/admin.php:4612 inc/admin/admin.php:4689
|
1917 |
-
#: inc/admin/admin.php:4766 inc/admin/admin.php:4843
|
1918 |
-
msgid "Custom Dimension #15"
|
1919 |
-
msgstr "Dimensão personalizada #15"
|
1920 |
-
|
1921 |
-
#: inc/admin/admin.php:4538 inc/admin/admin.php:4615 inc/admin/admin.php:4692
|
1922 |
-
#: inc/admin/admin.php:4769 inc/admin/admin.php:4846
|
1923 |
-
msgid "Custom Dimension #16"
|
1924 |
-
msgstr "Dimensão personalizada #16"
|
1925 |
-
|
1926 |
-
#: inc/admin/admin.php:4541 inc/admin/admin.php:4618 inc/admin/admin.php:4695
|
1927 |
-
#: inc/admin/admin.php:4772 inc/admin/admin.php:4849
|
1928 |
-
msgid "Custom Dimension #17"
|
1929 |
-
msgstr "Dimensão personalizada #17"
|
1930 |
-
|
1931 |
-
#: inc/admin/admin.php:4544 inc/admin/admin.php:4621 inc/admin/admin.php:4698
|
1932 |
-
#: inc/admin/admin.php:4775 inc/admin/admin.php:4852
|
1933 |
-
msgid "Custom Dimension #18"
|
1934 |
-
msgstr "Dimensão personalizada #18"
|
1935 |
-
|
1936 |
-
#: inc/admin/admin.php:4547 inc/admin/admin.php:4624 inc/admin/admin.php:4701
|
1937 |
-
#: inc/admin/admin.php:4778 inc/admin/admin.php:4855
|
1938 |
-
msgid "Custom Dimension #19"
|
1939 |
-
msgstr "Dimensão personalizada #19"
|
1940 |
-
|
1941 |
-
#: inc/admin/admin.php:4550 inc/admin/admin.php:4627 inc/admin/admin.php:4704
|
1942 |
-
#: inc/admin/admin.php:4781 inc/admin/admin.php:4858
|
1943 |
-
msgid "Custom Dimension #20"
|
1944 |
-
msgstr "Dimensão personalizada #20"
|
1945 |
-
|
1946 |
-
#: inc/admin/admin.php:4876
|
1947 |
-
msgid "Redirect attachment pages to post parent (or homepage if none)"
|
1948 |
-
msgstr "Redirecionar páginas de anexos para postar pai (ou página inicial, se não houver)"
|
1949 |
-
|
1950 |
-
#: inc/admin/admin.php:4893
|
1951 |
-
msgid "Remove stop words in permalinks"
|
1952 |
-
msgstr "Remova palavras de parada em permalinks"
|
1953 |
-
|
1954 |
-
#: inc/admin/admin.php:4893
|
1955 |
-
msgid "Setting based on site language. Supported language EN, FR, ES, DE, IT, PT."
|
1956 |
-
msgstr "Configuração baseada no idioma do site. Idioma suportado EN, FR, ES, DE, IT, PT."
|
1957 |
-
|
1958 |
-
#: inc/admin/admin.php:4910
|
1959 |
-
msgid "Remove /category/ in your permalinks"
|
1960 |
-
msgstr "Remover /categoria/ em seus permalinks"
|
1961 |
-
|
1962 |
-
#: inc/admin/admin.php:4910
|
1963 |
-
msgid "You have to flush your permalinks each time you change this settings"
|
1964 |
-
msgstr "Você deve liberar seus permalinks cada vez que você altera essas configurações"
|
1965 |
-
|
1966 |
-
#: inc/admin/admin.php:4927
|
1967 |
-
msgid "You must check this box if the structure of your permalinks DOES NOT contain a slash at the end (eg: /%postname%)"
|
1968 |
-
msgstr "Você deve marcar esta caixa se a estrutura de seus permalinks NÃO contiver uma barra no final (por exemplo: /%postname%)"
|
1969 |
-
|
1970 |
-
#: inc/admin/admin.php:4939
|
1971 |
-
msgid "Enter Google meta value site verification"
|
1972 |
-
msgstr "Digite a verificação do site do valor meta do Google"
|
1973 |
-
|
1974 |
-
#: inc/admin/admin.php:4951
|
1975 |
-
msgid "Enter Bing meta value site verification"
|
1976 |
-
msgstr "Digite a verificação do site do valor meta do Bing"
|
1977 |
-
|
1978 |
-
#: inc/admin/admin.php:4963
|
1979 |
-
msgid "Enter Pinterest meta value site verification"
|
1980 |
-
msgstr "Insira a verificação do site do meta valor de Pinterest"
|
1981 |
-
|
1982 |
-
#: inc/admin/admin.php:4975
|
1983 |
-
msgid "Enter Yandex meta value site verification"
|
1984 |
-
msgstr "Digite a verificação do site do valor meta Yandex"
|
1985 |
-
|
1986 |
-
#: inc/admin/admin.php:4992
|
1987 |
-
msgid "Remove SEOPress from Admin Bar in backend and frontend"
|
1988 |
-
msgstr "Remova o SEOPress da barra de administração no backend e no frontend"
|
1989 |
-
|
1990 |
-
#: inc/admin/admin.php:5008
|
1991 |
-
msgid "High priority (top)"
|
1992 |
-
msgstr "Alta prioridade (superior)"
|
1993 |
-
|
1994 |
-
#: inc/admin/admin.php:5011
|
1995 |
-
msgid "Normal priority (default)"
|
1996 |
-
msgstr "Prioridade normal (padrão)"
|
1997 |
-
|
1998 |
-
#: inc/admin/admin.php:5014
|
1999 |
-
msgid "Low priority"
|
2000 |
-
msgstr "Baixa prioridade"
|
2001 |
-
|
2002 |
-
#: inc/admin/admin.php:5032
|
2003 |
-
msgid "Hide Notifications Center in SEOPress Dashboard page"
|
2004 |
-
msgstr "Ocultar Centro de Notificações na página do Painel SEOPress"
|
2005 |
-
|
2006 |
-
#: inc/admin/admin.php:5049
|
2007 |
-
msgid "Add title column"
|
2008 |
-
msgstr "Adicionar coluna de título"
|
2009 |
-
|
2010 |
-
#: inc/admin/admin.php:5066
|
2011 |
-
msgid "Add meta description column"
|
2012 |
-
msgstr "Adicionar coluna de descrição de meta"
|
2013 |
-
|
2014 |
-
#: inc/admin/admin.php:5083
|
2015 |
-
msgid "Display noindex status"
|
2016 |
-
msgstr "Exibir status de nonddex"
|
2017 |
-
|
2018 |
-
#: inc/admin/admin.php:5100
|
2019 |
-
msgid "Display nofollow status"
|
2020 |
-
msgstr "Exibir status nofollow"
|
2021 |
-
|
2022 |
-
#: inc/admin/admin.php:5117
|
2023 |
-
msgid "Display total number of words in content"
|
2024 |
-
msgstr "Exibir o número total de palavras no conteúdo"
|
2025 |
-
|
2026 |
-
#: inc/admin/admin.php:5134
|
2027 |
-
msgid "Display W3C column to check code quality"
|
2028 |
-
msgstr "Exibir coluna W3C para verificar a qualidade do código"
|
2029 |
-
|
2030 |
-
#: inc/admin/admin.php:5152
|
2031 |
-
msgid "Display Page Speed column to check performances"
|
2032 |
-
msgstr "Mostrar coluna de velocidade da página para verificar performances"
|
2033 |
-
|
2034 |
-
#: inc/admin/admin.php:5170
|
2035 |
-
msgid "Remove Genesis SEO Metaboxe"
|
2036 |
-
msgstr "Remove Genesis SEO Metaboxe"
|
2037 |
-
|
2038 |
-
#: inc/admin/adminbar.php:60
|
2039 |
-
msgid "BOT"
|
2040 |
-
msgstr "BOT"
|
2041 |
-
|
2042 |
-
#: inc/admin/adminbar.php:84
|
2043 |
-
msgid "Broken Links"
|
2044 |
-
msgstr "Links Quabrados"
|
2045 |
-
|
2046 |
-
#: inc/functions/options-advanced-admin.php:100
|
2047 |
-
#: inc/functions/options-advanced-admin.php:530
|
2048 |
-
msgid "Title tag"
|
2049 |
-
msgstr "Título da etiqueta"
|
2050 |
-
|
2051 |
-
#: inc/functions/options-advanced-admin.php:103
|
2052 |
-
msgid "Meta Desc."
|
2053 |
-
msgstr "Meta Desc."
|
2054 |
-
|
2055 |
-
#: inc/functions/options-advanced-admin.php:106
|
2056 |
-
msgid "Noindex?"
|
2057 |
-
msgstr "Noindex?"
|
2058 |
-
|
2059 |
-
#: inc/functions/options-advanced-admin.php:109
|
2060 |
-
msgid "Nofollow?"
|
2061 |
-
msgstr "Nofollow?"
|
2062 |
-
|
2063 |
-
#: inc/functions/options-advanced-admin.php:112
|
2064 |
-
msgid "Count words?"
|
2065 |
-
msgstr "Contar palavras?"
|
2066 |
-
|
2067 |
-
#: inc/functions/options-advanced-admin.php:115
|
2068 |
-
msgid "W3C check"
|
2069 |
-
msgstr "Verificação do W3C"
|
2070 |
-
|
2071 |
-
#: inc/functions/options-advanced-admin.php:118
|
2072 |
-
msgid "Page Speed"
|
2073 |
-
msgstr "Velocidade da página"
|
2074 |
-
|
2075 |
-
#: inc/functions/options-advanced-admin.php:146
|
2076 |
-
msgid "Check code quality of this page"
|
2077 |
-
msgstr "Verifique a qualidade do código desta página"
|
2078 |
-
|
2079 |
-
#: inc/functions/options-advanced-admin.php:149
|
2080 |
-
msgid "Analyse this page with Google Page Speed"
|
2081 |
-
msgstr "Analise esta página com Google Page Speed"
|
2082 |
-
|
2083 |
-
#: inc/functions/options-advanced-admin.php:357
|
2084 |
-
msgid "Enable noindex"
|
2085 |
-
msgstr "Ativar noindex"
|
2086 |
-
|
2087 |
-
#: inc/functions/options-advanced-admin.php:396
|
2088 |
-
msgid "Enable index"
|
2089 |
-
msgstr "Habilitar índice"
|
2090 |
-
|
2091 |
-
#: inc/functions/options-advanced-admin.php:436
|
2092 |
-
msgid "Enable nofollow"
|
2093 |
-
msgstr "Habilite nofollow"
|
2094 |
-
|
2095 |
-
#: inc/functions/options-advanced-admin.php:475
|
2096 |
-
msgid "Enable follow"
|
2097 |
-
msgstr "Habilitar follow"
|
2098 |
-
|
2099 |
-
#: inc/functions/options-import-export.php:49
|
2100 |
-
msgid "Please upload a valid .json file"
|
2101 |
-
msgstr "Faça o upload de um arquivo .json válido"
|
2102 |
-
|
2103 |
-
#: inc/functions/options-import-export.php:53
|
2104 |
-
#: inc/functions/options-import-export.php:88
|
2105 |
-
msgid "Please upload a file to import"
|
2106 |
-
msgstr "Carregue um arquivo para importar"
|
2107 |
-
|
2108 |
-
#: inc/functions/options-import-export.php:84
|
2109 |
-
msgid "Please upload a valid .csv file"
|
2110 |
-
msgstr "Carregue um arquivo .csv válido"
|
2111 |
-
|
2112 |
-
#: inc/functions/options-redirections.php:120
|
2113 |
-
msgid "Once per day"
|
2114 |
-
msgstr "Uma vez por dia"
|
2115 |
-
|
2116 |
-
#: inc/functions/sitemap/template-xml-sitemaps-xsl.php:113
|
2117 |
-
msgid "XML Sitemaps"
|
2118 |
-
msgstr "Mapa do site XML"
|
2119 |
-
|
2120 |
-
#: seopress.php:304
|
2121 |
-
msgid "You like SEOPress? Don't forget to rate it 5 stars!"
|
2122 |
-
msgstr "Você gosta de SEOPress? Não se esqueça de classificar 5 estrelas!"
|
2123 |
-
|
2124 |
-
#: seopress.php:351
|
2125 |
-
msgid "Settings"
|
2126 |
-
msgstr "Configurações"
|
2127 |
-
|
2128 |
-
#: seopress.php:352
|
2129 |
-
msgid "SEOPress.org"
|
2130 |
-
msgstr "SEOPress.org"
|
2131 |
-
|
2132 |
-
#: seopress.php:354
|
2133 |
-
msgid "GO PRO!"
|
2134 |
-
msgstr "SEJA PRO!"
|
2135 |
-
|
2136 |
-
#: seopress.php:607
|
2137 |
-
msgid "The PRO release of SEOPress with Google Local Business, Dublin Core, WooCommerce, Google Structured Data Types, Breadcrumbs, Google Page Speed, robots.txt, Google News, 404 monitoring, .htaccess, RSS, Broken links, Redirections and more..."
|
2138 |
-
msgstr "O lançamento PRO do SEOPress com o Google Local Business, Dublin Core, WooCommerce, Tipos de dados estruturados do Google, Breadcrumbs, Google Page Speed, robots.txt, Google News, monitoramento 404, .htaccess, RSS, links quebrados, Redirecionamentos e muito mais ..."
|
2139 |
-
|
2140 |
-
#: seopress.php:626
|
2141 |
-
msgid "Buy now"
|
2142 |
-
msgstr "Compre agora"
|
2143 |
-
|
2144 |
-
#: seopress.php:627
|
2145 |
-
msgid "More details"
|
2146 |
-
msgstr "Mais detalhes"
|
2147 |
-
|
2148 |
-
#~ msgid "Oops! That page can not be found."
|
2149 |
-
#~ msgstr "Opa! Página não pode ser encontrada."
|
2150 |
-
|
2151 |
-
#~ msgid "It looks like nothing was found at this location. Maybe try a search?"
|
2152 |
-
#~ msgstr "Parece que nada foi encontrado neste local. Talvez tente uma pesquisa?"
|
2153 |
-
|
2154 |
-
#~ msgctxt "comments title"
|
2155 |
-
#~ msgid "%3$s comment on “%2$s”"
|
2156 |
-
#~ msgid_plural "%1$s comments on “%2$s”"
|
2157 |
-
#~ msgstr[0] "%1$s comentarios sobre “%2$s”"
|
2158 |
-
#~ msgstr[1] "%1$s comentarios sobre “%2$s”"
|
2159 |
-
|
2160 |
-
#~ msgid "One"
|
2161 |
-
#~ msgstr "Um"
|
2162 |
-
|
2163 |
-
#~ msgid "← Older Comments"
|
2164 |
-
#~ msgstr "← Comentários mais antigos"
|
2165 |
-
|
2166 |
-
#~ msgid "Newer Comments →"
|
2167 |
-
#~ msgstr "Comentários mais recentes →"
|
2168 |
-
|
2169 |
-
#~ msgid "Comments are closed for this post !!"
|
2170 |
-
#~ msgstr "Os comentários estão fechados para esta publicação !!"
|
2171 |
-
|
2172 |
-
#~ msgid "Pages:"
|
2173 |
-
#~ msgstr "Páginas:"
|
2174 |
-
|
2175 |
-
#~ msgid "← Next Image"
|
2176 |
-
#~ msgstr "← Próxima"
|
2177 |
-
|
2178 |
-
#~ msgid "Previous Image →"
|
2179 |
-
#~ msgstr "Imagem anterior →"
|
2180 |
-
|
2181 |
-
#~ msgid "Thank you for activating SEOPress theme. Let start from <a target=\"_blank\" href=\"%4$s\">Getting Started Video</a> | <a target=\"_blank\" href=\"%1$s\">Documentation</a> | <a target=\"_blank\" href=\"%2$s\">Visit Demo</a> | <a href=\"%3$s\">Hide it</a>"
|
2182 |
-
#~ msgstr "Obrigado por ativar o tema SEOPress. Deixe começar de <a target=\"_blank\" href=\" %4$s \"> Vídeo de Iniciando </a> </a> | <a target=\"_blank\" href=\" %1$s \"> Documentação </a> | <a target=\"_blank\" href=\" %2$s \"> Visite Demo </a> | <a href=\" %3$s \"> Esconda-o </a>"
|
2183 |
-
|
2184 |
-
#~ msgid "Name"
|
2185 |
-
#~ msgstr "Nome"
|
2186 |
-
|
2187 |
-
#~ msgid "Email"
|
2188 |
-
#~ msgstr "E-mail"
|
2189 |
-
|
2190 |
-
#~ msgid "Your email"
|
2191 |
-
#~ msgstr "Seu e-mail"
|
2192 |
-
|
2193 |
-
#~ msgid "Website"
|
2194 |
-
#~ msgstr "Website"
|
2195 |
-
|
2196 |
-
#~ msgctxt "noun"
|
2197 |
-
#~ msgid "Comment"
|
2198 |
-
#~ msgstr "Comentário"
|
2199 |
-
|
2200 |
-
#~ msgid "Your comment"
|
2201 |
-
#~ msgstr "Seu comentário"
|
2202 |
-
|
2203 |
-
#~ msgid "Display social profile. Social link will be fetch from customize."
|
2204 |
-
#~ msgstr "Mostrar perfil social. O link social será buscado para personalizar."
|
2205 |
-
|
2206 |
-
#~ msgid "SEOPress Social Profile"
|
2207 |
-
#~ msgstr "Perfil social de SEOPress"
|
2208 |
-
|
2209 |
-
#~ msgid "YouTube"
|
2210 |
-
#~ msgstr "YouTube"
|
2211 |
-
|
2212 |
-
#~ msgid "VK"
|
2213 |
-
#~ msgstr "VK"
|
2214 |
-
|
2215 |
-
#~ msgid "Linkedin"
|
2216 |
-
#~ msgstr "Linkedin"
|
2217 |
-
|
2218 |
-
#~ msgid "Telegram"
|
2219 |
-
#~ msgstr "Telegram"
|
2220 |
-
|
2221 |
-
#~ msgid "Snapchat"
|
2222 |
-
#~ msgstr "Snapchat"
|
2223 |
-
|
2224 |
-
#~ msgid "Flickr"
|
2225 |
-
#~ msgstr "Flickr"
|
2226 |
-
|
2227 |
-
#~ msgid "Reddit"
|
2228 |
-
#~ msgstr "Reddit"
|
2229 |
-
|
2230 |
-
#~ msgid "Tumblr"
|
2231 |
-
#~ msgstr "Tumblr"
|
2232 |
-
|
2233 |
-
#~ msgid "Yelp"
|
2234 |
-
#~ msgstr "Yelp"
|
2235 |
-
|
2236 |
-
#~ msgid "WhatsApp"
|
2237 |
-
#~ msgstr "WhatsApp"
|
2238 |
-
|
2239 |
-
#~ msgid "Skype"
|
2240 |
-
#~ msgstr "Skype"
|
2241 |
-
|
2242 |
-
#~ msgid "Open links in:"
|
2243 |
-
#~ msgstr "Abrir links em:"
|
2244 |
-
|
2245 |
-
#~ msgid "New Tab"
|
2246 |
-
#~ msgstr "Nova Aba"
|
2247 |
-
|
2248 |
-
#~ msgid "Same Tab"
|
2249 |
-
#~ msgstr "Mesma Aba"
|
2250 |
-
|
2251 |
-
#~ msgid "← Older Entries "
|
2252 |
-
#~ msgstr "← Comentarios antigos "
|
2253 |
-
|
2254 |
-
#~ msgid "Newer Entries →"
|
2255 |
-
#~ msgstr "Entradas mais recentes e rarr;"
|
2256 |
-
|
2257 |
-
#~ msgid "«"
|
2258 |
-
#~ msgstr "«"
|
2259 |
-
|
2260 |
-
#~ msgid "»"
|
2261 |
-
#~ msgstr "»"
|
2262 |
-
|
2263 |
-
#~ msgid "Tag: "
|
2264 |
-
#~ msgstr "Tag: "
|
2265 |
-
|
2266 |
-
#~ msgid "Author: "
|
2267 |
-
#~ msgstr "Autor: "
|
2268 |
-
|
2269 |
-
#~ msgid "Page: "
|
2270 |
-
#~ msgstr "Página: "
|
2271 |
-
|
2272 |
-
#~ msgid "Search: "
|
2273 |
-
#~ msgstr "Pesquisar: "
|
2274 |
-
|
2275 |
-
#~ msgid "Error 404"
|
2276 |
-
#~ msgstr "Erro 404"
|
2277 |
-
|
2278 |
-
#~ msgid "Untitled"
|
2279 |
-
#~ msgstr "Sem título"
|
2280 |
-
|
2281 |
-
#~ msgid "Have any Question or Comment?"
|
2282 |
-
#~ msgstr "Tem alguma pergunta ou comentário?"
|
2283 |
-
|
2284 |
-
#~ msgid "Responsive"
|
2285 |
-
#~ msgstr "Responsivo"
|
2286 |
-
|
2287 |
-
#~ msgid "Fast"
|
2288 |
-
#~ msgstr "Rápido"
|
2289 |
-
|
2290 |
-
#~ msgid "Adsense"
|
2291 |
-
#~ msgstr "Adsense"
|
2292 |
-
|
2293 |
-
#~ msgid "Mega Menu"
|
2294 |
-
#~ msgstr "Mega Menu"
|
2295 |
-
|
2296 |
-
#~ msgid "Page Builder"
|
2297 |
-
#~ msgstr "Page Builder"
|
2298 |
-
|
2299 |
-
#~ msgid "Slider"
|
2300 |
-
#~ msgstr "Slider"
|
2301 |
-
|
2302 |
-
#~ msgid "Add Menu"
|
2303 |
-
#~ msgstr "Adicionar Menu"
|
2304 |
-
|
2305 |
-
#~ msgid "Your comment is awaiting approval."
|
2306 |
-
#~ msgstr "Seu comentário está aguardando aprovação."
|
2307 |
-
|
2308 |
-
#~ msgid "%1$s at %2$s"
|
2309 |
-
#~ msgstr "%1$s em %2$s"
|
2310 |
-
|
2311 |
-
#~ msgid "Reply"
|
2312 |
-
#~ msgstr "Resposta"
|
2313 |
-
|
2314 |
-
#~ msgid "Edit"
|
2315 |
-
#~ msgstr "Editar"
|
2316 |
-
|
2317 |
-
#~ msgid "SEOPress Options for this Page"
|
2318 |
-
#~ msgstr "Opcoes SEOPress para essa pagina"
|
2319 |
-
|
2320 |
-
#~ msgid "Slider Shortcode : "
|
2321 |
-
#~ msgstr "Slider Shortcode: "
|
2322 |
-
|
2323 |
-
#~ msgid "Info: Use any slider plugin to create slider and copy slider shortcode."
|
2324 |
-
#~ msgstr "Info: use qualquer plugin do slider para criar slider e copiar shortcode do slider."
|
2325 |
-
|
2326 |
-
#~ msgid "Want to hide Headline/Title? "
|
2327 |
-
#~ msgstr "Deseja ocultar Headline / Title? "
|
2328 |
-
|
2329 |
-
#~ msgid "Info: This will hide page title above content."
|
2330 |
-
#~ msgstr "Info: Isto irá ocultar o título da página acima do conteúdo."
|
2331 |
-
|
2332 |
-
#~ msgid "Want to hide Footer Widgets? "
|
2333 |
-
#~ msgstr "Deseja ocultar Widgets do rodapé? "
|
2334 |
-
|
2335 |
-
#~ msgid "Info: This will hide footer widget section, if you are using footer widget."
|
2336 |
-
#~ msgstr "Info: isso irá ocultar a seção do widget do rodapé, se você estiver usando o widget do rodapé."
|
2337 |
-
|
2338 |
-
#~ msgid "Want to show Breadcrumb? "
|
2339 |
-
#~ msgstr "Quer mostrar Breadcrumb? "
|
2340 |
-
|
2341 |
-
#~ msgid "Info: This will display breadcrumb on this page."
|
2342 |
-
#~ msgstr "Info: Isso exibirá o breadcrumb nesta página."
|
2343 |
-
|
2344 |
-
#~ msgid "SEOPress Options for this Post"
|
2345 |
-
#~ msgstr "Opções de SEOPress para este Post"
|
2346 |
-
|
2347 |
-
#~ msgid "Blog Sidebar"
|
2348 |
-
#~ msgstr "Barra lateral do blog"
|
2349 |
-
|
2350 |
-
#~ msgid "Widgets for Blog sidebar. If you are using Full Width Layout in customize, then this sidebar will not display."
|
2351 |
-
#~ msgstr "Barra lateral Widgets for Blog. Se você estiver usando Layout de largura total em personalizar, essa barra lateral não será exibida."
|
2352 |
-
|
2353 |
-
#~ msgid "Widgets for Page sidebar. If you are using Full Width No Sidebar Template, then this sidebar will not display."
|
2354 |
-
#~ msgstr "Widgets para barra lateral da página. Se você estiver usando Full Width No Sidebar Template, essa barra lateral não será exibida."
|
2355 |
-
|
2356 |
-
#~ msgid "Widgets for Woocommerce Pages (For:- Product Loop, Product Search and Product Single Page). If you are using Full Width Layout in customize, then this sidebar will not display."
|
2357 |
-
#~ msgstr "Widgets para páginas do Woocommerce (para: - Loop do produto, Pesquisa de produtos e Página única do produto). Se você estiver usando Layout de largura total em personalizar, essa barra lateral não será exibida."
|
2358 |
-
|
2359 |
-
#~ msgid "Top Header right"
|
2360 |
-
#~ msgstr "Cabeçalho superior direito"
|
2361 |
-
|
2362 |
-
#~ msgid "Widgets for top header right. You can select header layout accordingly here: Dashboard > Appearance > Customize > SEOPress Options > Header Layout Options."
|
2363 |
-
#~ msgstr "Widgets para o cabeçalho superior direito. Você pode selecionar o layout do cabeçalho de acordo aqui: Painel de controle> Aparência> Personalizar> Opções do SEOPress> Opções de layout do cabeçalho."
|
2364 |
-
|
2365 |
-
#~ msgid "Top Header Left"
|
2366 |
-
#~ msgstr "Cabeçalho superior à esquerda"
|
2367 |
-
|
2368 |
-
#~ msgid "Widgets for top header left. You can select header layout accordingly here: Dashboard > Appearance > Customize > SEOPress Options > Header Layout Options."
|
2369 |
-
#~ msgstr "Widgets para o cabeçalho superior esquerdo. Você pode selecionar o layout do cabeçalho de acordo aqui: Painel de controle> Aparência> Personalizar> Opções do SEOPress> Opções de layout do cabeçalho."
|
2370 |
-
|
2371 |
-
#~ msgid "Footer Widget "
|
2372 |
-
#~ msgstr "Widget de rodapé "
|
2373 |
-
|
2374 |
-
#~ msgid "Widgets for footer "
|
2375 |
-
#~ msgstr "Widgets para rodapé "
|
2376 |
-
|
2377 |
-
#~ msgid "Top Main Menu"
|
2378 |
-
#~ msgstr "Top Menu Principal"
|
2379 |
-
|
2380 |
-
#~ msgid "Sidebar Menu"
|
2381 |
-
#~ msgstr "Menu barra lateral"
|
2382 |
-
|
2383 |
-
#~ msgid "SEOPress Theme by <a target=\"_blank\" href=\"http://ewptheme.com/\">EWP Theme</a>."
|
2384 |
-
#~ msgstr "Tema SEOPress por <a target=\"_blank\" href=\"http://ewptheme.com/\"> Tema EWP </a>."
|
2385 |
-
|
2386 |
-
#~ msgid "All options of SEOPress theme"
|
2387 |
-
#~ msgstr "Todas as opções do tema SEOPress"
|
2388 |
-
|
2389 |
-
#~ msgid "Typography Options"
|
2390 |
-
#~ msgstr "Opções de tipografia"
|
2391 |
-
|
2392 |
-
#~ msgid "Body Typography"
|
2393 |
-
#~ msgstr "Tipografia de corpo"
|
2394 |
-
|
2395 |
-
#~ msgid "H1 / Headline 1 Typography"
|
2396 |
-
#~ msgstr "H1 / Título 1 Tipografia"
|
2397 |
-
|
2398 |
-
#~ msgid "H2 / Headline 2 Typography"
|
2399 |
-
#~ msgstr "Tipografia H2 / Headline 2"
|
2400 |
-
|
2401 |
-
#~ msgid "H3 / Headline 3 Typography"
|
2402 |
-
#~ msgstr "H3 / Título 3 Tipografia"
|
2403 |
-
|
2404 |
-
#~ msgid "H4 / Headline 4 Typography"
|
2405 |
-
#~ msgstr "H4 / Título 4 Tipografia"
|
2406 |
-
|
2407 |
-
#~ msgid "H5 / Headline 5 Typography"
|
2408 |
-
#~ msgstr "H5 / Headline 5 Typography"
|
2409 |
-
|
2410 |
-
#~ msgid "H6 / Headline 6 Typography"
|
2411 |
-
#~ msgstr "H6 / Título 6 Tipografia"
|
2412 |
-
|
2413 |
-
#~ msgid "Paragraph Typography"
|
2414 |
-
#~ msgstr "Tipografia de parágrafo"
|
2415 |
-
|
2416 |
-
#~ msgid "Top Bar Typography"
|
2417 |
-
#~ msgstr "Tipografia Top Bar"
|
2418 |
-
|
2419 |
-
#~ msgid "Main Menu Typography"
|
2420 |
-
#~ msgstr "Tipografia de menu principal"
|
2421 |
-
|
2422 |
-
#~ msgid "Sidebar Menu Typography"
|
2423 |
-
#~ msgstr "Tipografia do menu da barra lateral"
|
2424 |
-
|
2425 |
-
#~ msgid "Widgets UL/OL Typography"
|
2426 |
-
#~ msgstr "Widgets Tipografia UL / OL"
|
2427 |
-
|
2428 |
-
#~ msgid "Widgets Unordered List / Ordered List Typography"
|
2429 |
-
#~ msgstr "Widgets Lista não ordenada / Lista ordenada Tipografia"
|
2430 |
-
|
2431 |
-
#~ msgid "Container UL/OL Typography"
|
2432 |
-
#~ msgstr "Container UL / OL Typography"
|
2433 |
-
|
2434 |
-
#~ msgid "Typography for list in main contents."
|
2435 |
-
#~ msgstr "Tipografia para lista nos principais conteúdos."
|
2436 |
-
|
2437 |
-
#~ msgid "Footer Widgets Typography"
|
2438 |
-
#~ msgstr "Footer Widgets Typography"
|
2439 |
-
|
2440 |
-
#~ msgid "Footer Copyright Typography"
|
2441 |
-
#~ msgstr "Tipologia de direitos autorais do rodapé"
|
2442 |
-
|
2443 |
-
#~ msgid "Top Bar Options"
|
2444 |
-
#~ msgstr "Top Bar Options"
|
2445 |
-
|
2446 |
-
#~ msgid "Top Bar Feature"
|
2447 |
-
#~ msgstr "Topo da barra"
|
2448 |
-
|
2449 |
-
#~ msgid "Enable/Disable Top Bar"
|
2450 |
-
#~ msgstr "Enable / Disable Top Bar"
|
2451 |
-
|
2452 |
-
#~ msgid "Enable/Disable Social Icons"
|
2453 |
-
#~ msgstr "Ativar / Desativar ícones sociais"
|
2454 |
-
|
2455 |
-
#~ msgid "Social Links in New Tab?"
|
2456 |
-
#~ msgstr "Links Sociais em Nova Guia?"
|
2457 |
-
|
2458 |
-
#~ msgid "Open social links in new tab or same."
|
2459 |
-
#~ msgstr "Abra links sociais em uma nova aba ou o mesmo."
|
2460 |
-
|
2461 |
-
#~ msgid "Top Bar Left Content View"
|
2462 |
-
#~ msgstr "Top Bar Left Content View"
|
2463 |
-
|
2464 |
-
#~ msgid "Simply phone, email or Text/HTML or Disable ?"
|
2465 |
-
#~ msgstr "Simplesmente telefone, e-mail ou Texto / HTML ou Desativar?"
|
2466 |
-
|
2467 |
-
#~ msgid "Text / HTML"
|
2468 |
-
#~ msgstr "Texto / HTML"
|
2469 |
-
|
2470 |
-
#~ msgid "Phone and Email"
|
2471 |
-
#~ msgstr "Telefone e e-mail"
|
2472 |
-
|
2473 |
-
#~ msgid "Phone Number"
|
2474 |
-
#~ msgstr "Número de telefone"
|
2475 |
-
|
2476 |
-
#~ msgid "Leave empty for disable."
|
2477 |
-
#~ msgstr "Deixe vazio para desativar."
|
2478 |
-
|
2479 |
-
#~ msgid "Email Address"
|
2480 |
-
#~ msgstr "Endereco de E-mail"
|
2481 |
-
|
2482 |
-
#~ msgid "Top Bar Left Content"
|
2483 |
-
#~ msgstr "Top Bar Left Content"
|
2484 |
-
|
2485 |
-
#~ msgid "Content/HTML of Top Bar Left Side. Leave empty for disable."
|
2486 |
-
#~ msgstr "Conteúdo / HTML do lado superior da barra superior. Deixe vazio para desativar."
|
2487 |
-
|
2488 |
-
#~ msgid "Search Icon"
|
2489 |
-
#~ msgstr "Procurar Icone"
|
2490 |
-
|
2491 |
-
#~ msgid "Enable/Disable Search Icon"
|
2492 |
-
#~ msgstr "Ativar / Desativar ícone de pesquisa"
|
2493 |
-
|
2494 |
-
#~ msgid "Header Layout Options"
|
2495 |
-
#~ msgstr "Opções de layout de cabeçalho"
|
2496 |
-
|
2497 |
-
#~ msgid "Select Header Layout"
|
2498 |
-
#~ msgstr "Selecionar layout de cabeçalho"
|
2499 |
-
|
2500 |
-
#~ msgid "Save and reload front page for alignment"
|
2501 |
-
#~ msgstr "Salvar e recarregar a página inicial para alinhamento"
|
2502 |
-
|
2503 |
-
#~ msgid "Logo Width"
|
2504 |
-
#~ msgstr "Largura do logotipo"
|
2505 |
-
|
2506 |
-
#~ msgid "Width will be set in Pixel. Height is automatic to maintain quality of Logo"
|
2507 |
-
#~ msgstr "A largura será definida em Pixel. Altura é automática para manter a qualidade do logotipo"
|
2508 |
-
|
2509 |
-
#~ msgid "Color Options"
|
2510 |
-
#~ msgstr "Opções de cores"
|
2511 |
-
|
2512 |
-
#~ msgid "Default Color of Links"
|
2513 |
-
#~ msgstr "Cor Padrão de Links"
|
2514 |
-
|
2515 |
-
#~ msgid "Default Color of Mouse Over Links"
|
2516 |
-
#~ msgstr "Cor padrão do mouse sobre links"
|
2517 |
-
|
2518 |
-
#~ msgid "More color options"
|
2519 |
-
#~ msgstr "Mais opções de cores"
|
2520 |
-
|
2521 |
-
#~ msgid "Social Profile"
|
2522 |
-
#~ msgstr "Perfil Social"
|
2523 |
-
|
2524 |
-
#~ msgid "Leave empty for disable"
|
2525 |
-
#~ msgstr "Deixe vazio para desativar"
|
2526 |
-
|
2527 |
-
#~ msgid "VK Link"
|
2528 |
-
#~ msgstr "Link VK"
|
2529 |
-
|
2530 |
-
#~ msgid "Pinterest Link"
|
2531 |
-
#~ msgstr "Link do Pinterest"
|
2532 |
-
|
2533 |
-
#~ msgid "Instagram Link"
|
2534 |
-
#~ msgstr "Link Instagram"
|
2535 |
-
|
2536 |
-
#~ msgid "Telegram Link"
|
2537 |
-
#~ msgstr "Link Telegram"
|
2538 |
-
|
2539 |
-
#~ msgid "Snapchat Link"
|
2540 |
-
#~ msgstr "Link Snapchat"
|
2541 |
-
|
2542 |
-
#~ msgid "Flickr Link"
|
2543 |
-
#~ msgstr "Link Flickr"
|
2544 |
-
|
2545 |
-
#~ msgid "Reddit Link"
|
2546 |
-
#~ msgstr "Link Reddit"
|
2547 |
-
|
2548 |
-
#~ msgid "Yelp Link"
|
2549 |
-
#~ msgstr "Link Yelp"
|
2550 |
-
|
2551 |
-
#~ msgid "WhatsApp Number"
|
2552 |
-
#~ msgstr "Link WhatsApp"
|
2553 |
-
|
2554 |
-
#~ msgid "Skype Id"
|
2555 |
-
#~ msgstr "Skype ID"
|
2556 |
-
|
2557 |
-
#~ msgid "Blog Options"
|
2558 |
-
#~ msgstr "Opções de Blog"
|
2559 |
-
|
2560 |
-
#~ msgid "Enable/Disable Breadcrumb"
|
2561 |
-
#~ msgstr "Ativar / Desativar Breadcrumb"
|
2562 |
-
|
2563 |
-
#~ msgid "Thumbnail on Archive Post"
|
2564 |
-
#~ msgstr "Thumbnail em Arquivo Postar"
|
2565 |
-
|
2566 |
-
#~ msgid "Enable/Disable Thumbnail on Archive/Loop Page"
|
2567 |
-
#~ msgstr "Ativar / Desativar miniatura na página Arquivo / Loop"
|
2568 |
-
|
2569 |
-
#~ msgid "Thumbnail on Single Post"
|
2570 |
-
#~ msgstr "Thumbnail em Single Post"
|
2571 |
-
|
2572 |
-
#~ msgid "Enable/Disable Thumbnail on Single Post"
|
2573 |
-
#~ msgstr "Ativar / Desativar miniatura no único post"
|
2574 |
-
|
2575 |
-
#~ msgid "Show/Hide post meta on archive / loop posts like: author, category, date."
|
2576 |
-
#~ msgstr "Mostrar / Ocultar postar meta em arquivo / loops como: autor, categoria, data."
|
2577 |
-
|
2578 |
-
#~ msgid "Display Post Meta on Single Post"
|
2579 |
-
#~ msgstr "Visualizar o Post Meta no Single Post"
|
2580 |
-
|
2581 |
-
#~ msgid "Show/Hide post meta on single post like: author, category, date."
|
2582 |
-
#~ msgstr "Mostrar / Ocultar meta de publicação em uma única publicação como: autor, categoria, data."
|
2583 |
-
|
2584 |
-
#~ msgid "Display Sticky Post Date"
|
2585 |
-
#~ msgstr "Exibir a Data de Postagem Fixa"
|
2586 |
-
|
2587 |
-
#~ msgid "Show/Hide date of sticky post on archive/loop page."
|
2588 |
-
#~ msgstr "Mostrar / Ocultar a data da publicação pegajosa no arquivo / página de loop."
|
2589 |
-
|
2590 |
-
#~ msgid "Which date do you want to display for single post?"
|
2591 |
-
#~ msgstr "Qual data você deseja exibir para uma única publicação?"
|
2592 |
-
|
2593 |
-
#~ msgid "Display Publish Date"
|
2594 |
-
#~ msgstr "Data de publicação do display"
|
2595 |
-
|
2596 |
-
#~ msgid "Display Excerpt or Content on Archive"
|
2597 |
-
#~ msgstr "Exibir extrato ou conteúdo no arquivo"
|
2598 |
-
|
2599 |
-
#~ msgid "Display Excerpt"
|
2600 |
-
#~ msgstr "Excerto de exibição"
|
2601 |
-
|
2602 |
-
#~ msgid "Excerpt Length"
|
2603 |
-
#~ msgstr "Comprimento do trecho"
|
2604 |
-
|
2605 |
-
#~ msgid "How much words you want to display on Archive page?"
|
2606 |
-
#~ msgstr "Quantas palavras você deseja exibir na página Arquivo?"
|
2607 |
-
|
2608 |
-
#~ msgid "Display Pagination on Archive"
|
2609 |
-
#~ msgstr "Exibir Paginação em Arquivo"
|
2610 |
-
|
2611 |
-
#~ msgid "Which type of pagination, you want to display?"
|
2612 |
-
#~ msgstr "Qual tipo de paginação, você quer exibir?"
|
2613 |
-
|
2614 |
-
#~ msgid "Next Previous Pagination"
|
2615 |
-
#~ msgstr "Próxima Paginação Anterior"
|
2616 |
-
|
2617 |
-
#~ msgid "Number Pagination"
|
2618 |
-
#~ msgstr "Paginação de números"
|
2619 |
-
|
2620 |
-
#~ msgid "Comment Box Headline"
|
2621 |
-
#~ msgstr "Cabeçalho da caixa de comentários"
|
2622 |
-
|
2623 |
-
#~ msgid "Sidebar Menu Options"
|
2624 |
-
#~ msgstr "Opções do menu barra lateral"
|
2625 |
-
|
2626 |
-
#~ msgid "Side Bar Menu"
|
2627 |
-
#~ msgstr "Menu do menu lateral"
|
2628 |
-
|
2629 |
-
#~ msgid "Enable/Disable Side Bar Menu"
|
2630 |
-
#~ msgstr "Ativar / Desativar o menu da barra lateral"
|
2631 |
-
|
2632 |
-
#~ msgid "Woocommerce Options"
|
2633 |
-
#~ msgstr "Opções de Woocommerce"
|
2634 |
-
|
2635 |
-
#~ msgid "Display shop icon in Top Bar?"
|
2636 |
-
#~ msgstr "Ícone do display shop na Top Bar?"
|
2637 |
-
|
2638 |
-
#~ msgid "Enable/Disable shop icon in Top Bar"
|
2639 |
-
#~ msgstr "Ativar / Desativar o ícone da loja na Barra superior"
|
2640 |
-
|
2641 |
-
#~ msgid "Display cart icon in Top Bar?"
|
2642 |
-
#~ msgstr "Ícone do carrinho de exibição no Top Bar?"
|
2643 |
-
|
2644 |
-
#~ msgid "Enable/Disable cart icon in Top Bar"
|
2645 |
-
#~ msgstr "Ativar / Desativar ícone do carrinho na barra superior"
|
2646 |
-
|
2647 |
-
#~ msgid "Display My Account icon in Top Bar?"
|
2648 |
-
#~ msgstr "Exibir o ícone da minha conta na barra superior?"
|
2649 |
-
|
2650 |
-
#~ msgid "Enable/Disable My Account icon in Top Bar"
|
2651 |
-
#~ msgstr "Ativar / Desativar o ícone da minha conta na barra superior"
|
2652 |
-
|
2653 |
-
#~ msgid "WC Breadcrumbs"
|
2654 |
-
#~ msgstr "Panelas de panela"
|
2655 |
-
|
2656 |
-
#~ msgid "Enable/Disable WooCommerce Breadcrumbs."
|
2657 |
-
#~ msgstr "Ativar / Desativar WooCommerce Breadcrumbs."
|
2658 |
-
|
2659 |
-
#~ msgid "Related Products"
|
2660 |
-
#~ msgstr "Produtos relacionados"
|
2661 |
-
|
2662 |
-
#~ msgid "Enable/Disable WooCommerce Related Products."
|
2663 |
-
#~ msgstr "Ativar / Desativar produtos relacionados do WooCommerce."
|
2664 |
-
|
2665 |
-
#~ msgid "Gallery Zoom"
|
2666 |
-
#~ msgstr "Galeria Zoom"
|
2667 |
-
|
2668 |
-
#~ msgid "Enable/Disable gallery zoom support on single product."
|
2669 |
-
#~ msgstr "Ativar / Desativar o suporte ao zoom da galeria em um único produto."
|
2670 |
-
|
2671 |
-
#~ msgid "Gallery Light Box"
|
2672 |
-
#~ msgstr "Galeria Light Box"
|
2673 |
-
|
2674 |
-
#~ msgid "Enable/Disable gallery light box support on single product."
|
2675 |
-
#~ msgstr "Ativar / Desativar o suporte da caixa de luz da galeria em um único produto."
|
2676 |
-
|
2677 |
-
#~ msgid "Gallery Slider"
|
2678 |
-
#~ msgstr "Slider da galeria"
|
2679 |
-
|
2680 |
-
#~ msgid "Enable/Disable gallery slider support on single product."
|
2681 |
-
#~ msgstr "Ativar / Desativar o suporte do controle deslizante da galeria em um único produto."
|
2682 |
-
|
2683 |
-
#~ msgid "Number of products display on loop page"
|
2684 |
-
#~ msgstr "Número de produtos exibidos na página do loop"
|
2685 |
-
|
2686 |
-
#~ msgid "How much products you want to display on loop page?"
|
2687 |
-
#~ msgstr "Quantos produtos você deseja exibir na página do loop?"
|
2688 |
-
|
2689 |
-
#~ msgid "Number of products display per column"
|
2690 |
-
#~ msgstr "Número de produtos exibidos por coluna"
|
2691 |
-
|
2692 |
-
#~ msgid "How much products you want to display in single line?"
|
2693 |
-
#~ msgstr "Quantos produtos você deseja exibir em uma única linha?"
|
2694 |
-
|
2695 |
-
#~ msgid "This layout will apply on Shop, Single Product and Product Search Pages. If you want to set full width for Cart, Checkout and My Account pages, then edit these pages and select Full Width No Sidebar Template."
|
2696 |
-
#~ msgstr "Este layout será aplicado nas Páginas de Pesquisa de Produtos, Produtos Únicos e Produtos. Se você quiser definir a largura total para as páginas de Cart, Checkout e Minha Conta, edite estas páginas e selecione Largura Completa Nenhum Modelo de Barra Lateral."
|
2697 |
-
|
2698 |
-
#~ msgid "WooCommerce Page Layout"
|
2699 |
-
#~ msgstr "WooCommerce Page Layout"
|
2700 |
-
|
2701 |
-
#~ msgid "Footer Widget Options"
|
2702 |
-
#~ msgstr "Opções do Widget do rodapé"
|
2703 |
-
|
2704 |
-
#~ msgid "Footer Widgets"
|
2705 |
-
#~ msgstr "Widgets de rodapé"
|
2706 |
-
|
2707 |
-
#~ msgid "How much Widgets you want? (please save and go to Widgets page to add.)"
|
2708 |
-
#~ msgstr "Quanto Widgets você quer? (salve e vá para a página Widgets para adicionar.)"
|
2709 |
-
|
2710 |
-
#~ msgid "Footer Copyright Options"
|
2711 |
-
#~ msgstr "Opções de direitos autorais do rodapé"
|
2712 |
-
|
2713 |
-
#~ msgid "Footer Left Content"
|
2714 |
-
#~ msgstr "Conteúdo esquerdo do rodapé"
|
2715 |
-
|
2716 |
-
#~ msgid "Content of Footer Left Side"
|
2717 |
-
#~ msgstr "Conteúdo do rodapé lado esquerdo"
|
2718 |
-
|
2719 |
-
#~ msgid "Footer Center Content"
|
2720 |
-
#~ msgstr "Conteúdo do Centro de rodapé"
|
2721 |
-
|
2722 |
-
#~ msgid "Content of Footer Center Side"
|
2723 |
-
#~ msgstr "Conteúdo do Footer Center Side"
|
2724 |
-
|
2725 |
-
#~ msgid "Footer Right Content"
|
2726 |
-
#~ msgstr "Footer Right Content"
|
2727 |
-
|
2728 |
-
#~ msgid "MISC Options"
|
2729 |
-
#~ msgstr "Opções do MISC"
|
2730 |
-
|
2731 |
-
#~ msgid "Sticky Menu"
|
2732 |
-
#~ msgstr "Menu Sticky"
|
2733 |
-
|
2734 |
-
#~ msgid "Enable/Disable Sticky Menu (This will not work for small devices)"
|
2735 |
-
#~ msgstr "Ativar / Desativar o Menu Fixo (Isso não funcionará para dispositivos pequenos)"
|
2736 |
-
|
2737 |
-
#~ msgid "Back To Top Button"
|
2738 |
-
#~ msgstr "Botão Voltar ao Topo"
|
2739 |
-
|
2740 |
-
#~ msgid "Enable/Disable Back To Top Button"
|
2741 |
-
#~ msgstr "Ativar / Desativar Botão Voltar ao Início"
|
2742 |
-
|
2743 |
-
#~ msgid "Page Loading Icon"
|
2744 |
-
#~ msgstr "Icone lendo pagina"
|
2745 |
-
|
2746 |
-
#~ msgid "Enable/Disable Page Loading Icon"
|
2747 |
-
#~ msgstr "Ativar / Desativar Ícone de carregamento da página"
|
2748 |
-
|
2749 |
-
#~ msgid "Upload Custom Loading Icon"
|
2750 |
-
#~ msgstr "Carregar ícone de carregamento personalizado"
|
2751 |
-
|
2752 |
-
#~ msgid "It will replace default loading icon."
|
2753 |
-
#~ msgstr "Ele irá substituir o ícone de carregamento padrão."
|
2754 |
-
|
2755 |
-
#~ msgid "Theme Info"
|
2756 |
-
#~ msgstr "Informaçoes do Tema"
|
2757 |
-
|
2758 |
-
#~ msgid "SEOPress DOCS"
|
2759 |
-
#~ msgstr "SEOPress DOCS"
|
2760 |
-
|
2761 |
-
#~ msgid "SEOPress Demo"
|
2762 |
-
#~ msgstr "Demonstração SEOPress"
|
2763 |
-
|
2764 |
-
#~ msgid "Background Color"
|
2765 |
-
#~ msgstr "Cor de fundo"
|
2766 |
-
|
2767 |
-
#~ msgid "Background Image"
|
2768 |
-
#~ msgstr "Imagem de fundo"
|
2769 |
-
|
2770 |
-
#~ msgid "No File Selected"
|
2771 |
-
#~ msgstr "Nenhum arquivo selecionado"
|
2772 |
-
|
2773 |
-
#~ msgid "Remove"
|
2774 |
-
#~ msgstr "Remover"
|
2775 |
-
|
2776 |
-
#~ msgid "Select File"
|
2777 |
-
#~ msgstr "Selecione o arquivo"
|
2778 |
-
|
2779 |
-
#~ msgid "Background Repeat"
|
2780 |
-
#~ msgstr "Repetição ativa"
|
2781 |
-
|
2782 |
-
#~ msgid "No Repeat"
|
2783 |
-
#~ msgstr "Sem repetição"
|
2784 |
-
|
2785 |
-
#~ msgid "Repeat All"
|
2786 |
-
#~ msgstr "Repita tudo"
|
2787 |
-
|
2788 |
-
#~ msgid "Repeat Horizontally"
|
2789 |
-
#~ msgstr "Repita horizontalmente"
|
2790 |
-
|
2791 |
-
#~ msgid "Repeat Vertically"
|
2792 |
-
#~ msgstr "Repita verticalmente"
|
2793 |
-
|
2794 |
-
#~ msgid "Background Position"
|
2795 |
-
#~ msgstr "Posição de fundo"
|
2796 |
-
|
2797 |
-
#~ msgid "Left Top"
|
2798 |
-
#~ msgstr "Superior esquerdo"
|
2799 |
-
|
2800 |
-
#~ msgid "Left Center"
|
2801 |
-
#~ msgstr "Centro esquerdo"
|
2802 |
-
|
2803 |
-
#~ msgid "Left Bottom"
|
2804 |
-
#~ msgstr "Inferior esquerdo"
|
2805 |
-
|
2806 |
-
#~ msgid "Right Top"
|
2807 |
-
#~ msgstr "Right Top"
|
2808 |
-
|
2809 |
-
#~ msgid "Right Center"
|
2810 |
-
#~ msgstr "Centro Direito"
|
2811 |
-
|
2812 |
-
#~ msgid "Right Bottom"
|
2813 |
-
#~ msgstr "Inferior direito"
|
2814 |
-
|
2815 |
-
#~ msgid "Center Top"
|
2816 |
-
#~ msgstr "Topo do centro"
|
2817 |
-
|
2818 |
-
#~ msgid "Center Center"
|
2819 |
-
#~ msgstr "Centro Centro"
|
2820 |
-
|
2821 |
-
#~ msgid "Center Bottom"
|
2822 |
-
#~ msgstr "Centro de fundo"
|
2823 |
-
|
2824 |
-
#~ msgid "Background Size"
|
2825 |
-
#~ msgstr "Tamanho do fundo"
|
2826 |
-
|
2827 |
-
#~ msgid "Cover"
|
2828 |
-
#~ msgstr "Tampa"
|
2829 |
-
|
2830 |
-
#~ msgid "Contain"
|
2831 |
-
#~ msgstr "Conter"
|
2832 |
-
|
2833 |
-
#~ msgid "Auto"
|
2834 |
-
#~ msgstr "Auto"
|
2835 |
-
|
2836 |
-
#~ msgid "Background Attachment"
|
2837 |
-
#~ msgstr "Anexo de fundo"
|
2838 |
-
|
2839 |
-
#~ msgid "Scroll"
|
2840 |
-
#~ msgstr "Rolagem"
|
2841 |
-
|
2842 |
-
#~ msgid "Fixed"
|
2843 |
-
#~ msgstr "Fixo"
|
2844 |
-
|
2845 |
-
#~ msgid "Invalid Value"
|
2846 |
-
#~ msgstr "Valor inválido"
|
2847 |
-
|
2848 |
-
#~ msgid "Font Size"
|
2849 |
-
#~ msgstr "Tamanho da fonte"
|
2850 |
-
|
2851 |
-
#~ msgid "Font Weight"
|
2852 |
-
#~ msgstr "Largura da FONTE"
|
2853 |
-
|
2854 |
-
#~ msgid "Line Height"
|
2855 |
-
#~ msgstr "Altura da linha"
|
2856 |
-
|
2857 |
-
#~ msgid "Font Style"
|
2858 |
-
#~ msgstr "Estilo de fonte"
|
2859 |
-
|
2860 |
-
#~ msgid "Letter Spacing"
|
2861 |
-
#~ msgstr "Espaçamento das letras"
|
2862 |
-
|
2863 |
-
#~ msgid "Word Spacing"
|
2864 |
-
#~ msgstr "Espaçamento de palavras"
|
2865 |
-
|
2866 |
-
#~ msgid "Top"
|
2867 |
-
#~ msgstr "Topo"
|
2868 |
-
|
2869 |
-
#~ msgid "Bottom"
|
2870 |
-
#~ msgstr "Inferior"
|
2871 |
-
|
2872 |
-
#~ msgid "Left"
|
2873 |
-
#~ msgstr "Esquerda"
|
2874 |
-
|
2875 |
-
#~ msgid "Right"
|
2876 |
-
#~ msgstr "Certo"
|
2877 |
-
|
2878 |
-
#~ msgid "Center"
|
2879 |
-
#~ msgstr "Centro"
|
2880 |
-
|
2881 |
-
#~ msgid "Size"
|
2882 |
-
#~ msgstr "Tamanho"
|
2883 |
-
|
2884 |
-
#~ msgid "Height"
|
2885 |
-
#~ msgstr "Altura"
|
2886 |
-
|
2887 |
-
#~ msgid "Spacing"
|
2888 |
-
#~ msgstr "Espaçamento"
|
2889 |
-
|
2890 |
-
#~ msgid "Width"
|
2891 |
-
#~ msgstr "Largura"
|
2892 |
-
|
2893 |
-
#~ msgid "Open Editor"
|
2894 |
-
#~ msgstr "Editar"
|
2895 |
-
|
2896 |
-
#~ msgid "Close Editor"
|
2897 |
-
#~ msgstr "Fechar editor"
|
2898 |
-
|
2899 |
-
#~ msgid "Switch Editor"
|
2900 |
-
#~ msgstr "Editor alternar"
|
2901 |
-
|
2902 |
-
#~ msgid "Mode"
|
2903 |
-
#~ msgstr "Modo"
|
2904 |
-
|
2905 |
-
#~ msgid "Linear"
|
2906 |
-
#~ msgstr "Linear"
|
2907 |
-
|
2908 |
-
#~ msgid "Radial"
|
2909 |
-
#~ msgstr "Radial"
|
2910 |
-
|
2911 |
-
#~ msgid "Angle"
|
2912 |
-
#~ msgstr "Ângulo"
|
2913 |
-
|
2914 |
-
#~ msgid "Start Color"
|
2915 |
-
#~ msgstr "Início da cor"
|
2916 |
-
|
2917 |
-
#~ msgid "Color Stop"
|
2918 |
-
#~ msgstr "Parada de cores"
|
2919 |
-
|
2920 |
-
#~ msgid "End Color"
|
2921 |
-
#~ msgstr "Cor de fim"
|
2922 |
-
|
2923 |
-
#~ msgid "Value lower than allowed minimum"
|
2924 |
-
#~ msgstr "Valor inferior ao mínimo permitido"
|
2925 |
-
|
2926 |
-
#~ msgid "Value higher than allowed maximum"
|
2927 |
-
#~ msgstr "Valor superior ao permitido máximo"
|
2928 |
-
|
2929 |
-
#~ msgid "row"
|
2930 |
-
#~ msgstr "linha"
|
2931 |
-
|
2932 |
-
#~ msgid "Add new %s"
|
2933 |
-
#~ msgstr "Adicionar novos %s"
|
2934 |
-
|
2935 |
-
#~ msgid "Limit: %s rows"
|
2936 |
-
#~ msgstr "Limite: %s linhas"
|
2937 |
-
|
2938 |
-
#~ msgid "Hex Value"
|
2939 |
-
#~ msgstr "Valor Hex"
|
2940 |
-
|
2941 |
-
#~ msgid "No Image Selected"
|
2942 |
-
#~ msgstr "Nenhuma imagem selecionada"
|
2943 |
-
|
2944 |
-
#~ msgid "Add Image"
|
2945 |
-
#~ msgstr "Adicionar Imagem"
|
2946 |
-
|
2947 |
-
#~ msgid "Change Image"
|
2948 |
-
#~ msgstr "Alterar Imagem"
|
2949 |
-
|
2950 |
-
#~ msgid "Add File"
|
2951 |
-
#~ msgstr "Adicionar Arquivo"
|
2952 |
-
|
2953 |
-
#~ msgid "Change File"
|
2954 |
-
#~ msgstr "Alterar arquivo"
|
2955 |
-
|
2956 |
-
#~ msgid "Font Family"
|
2957 |
-
#~ msgstr "Família de fontes"
|
2958 |
-
|
2959 |
-
#~ msgid "Select Font Family"
|
2960 |
-
#~ msgstr "Selecione a família de fontes"
|
2961 |
-
|
2962 |
-
#~ msgid "Backup Font"
|
2963 |
-
#~ msgstr "Fonte de backup"
|
2964 |
-
|
2965 |
-
#~ msgid "Variant"
|
2966 |
-
#~ msgstr "Variante"
|
2967 |
-
|
2968 |
-
#~ msgid "Subset(s)"
|
2969 |
-
#~ msgstr "Subconjunto (s)"
|
2970 |
-
|
2971 |
-
#~ msgid "Text Align"
|
2972 |
-
#~ msgstr "Alinhamento de texto"
|
2973 |
-
|
2974 |
-
#~ msgid "Inherit"
|
2975 |
-
#~ msgstr "Herdar"
|
2976 |
-
|
2977 |
-
#~ msgid "Justify"
|
2978 |
-
#~ msgstr "Justificar"
|
2979 |
-
|
2980 |
-
#~ msgid "Text Transform"
|
2981 |
-
#~ msgstr "Transformação de texto"
|
2982 |
-
|
2983 |
-
#~ msgid "Capitalize"
|
2984 |
-
#~ msgstr "Capitalizar"
|
2985 |
-
|
2986 |
-
#~ msgid "Uppercase"
|
2987 |
-
#~ msgstr "Maiúscula"
|
2988 |
-
|
2989 |
-
#~ msgid "Lowercase"
|
2990 |
-
#~ msgstr "Minúsculas"
|
2991 |
-
|
2992 |
-
#~ msgid "Initial"
|
2993 |
-
#~ msgstr "Inicial"
|
2994 |
-
|
2995 |
-
#~ msgid "Color"
|
2996 |
-
#~ msgstr "Cor"
|
2997 |
-
|
2998 |
-
#~ msgid "Margin Top"
|
2999 |
-
#~ msgstr "Top de Margem"
|
3000 |
-
|
3001 |
-
#~ msgid "Margin Bottom"
|
3002 |
-
#~ msgstr "Margem inferior"
|
3003 |
-
|
3004 |
-
#~ msgid "On"
|
3005 |
-
#~ msgstr "Em"
|
3006 |
-
|
3007 |
-
#~ msgid "Off"
|
3008 |
-
#~ msgstr "Fora"
|
3009 |
-
|
3010 |
-
#~ msgid "Customizing ▸ %s"
|
3011 |
-
#~ msgstr "Customizing & # 9656; % s"
|
3012 |
-
|
3013 |
-
#~ msgid "%s Reset"
|
3014 |
-
#~ msgstr "%s Redefinir"
|
3015 |
-
|
3016 |
-
#~ msgid "Ultra-Light 100"
|
3017 |
-
#~ msgstr "Ultra-Light 100"
|
3018 |
-
|
3019 |
-
#~ msgid "Ultra-Light 100 Italic"
|
3020 |
-
#~ msgstr "Ultra-Light 100 Itálico"
|
3021 |
-
|
3022 |
-
#~ msgid "Light 200"
|
3023 |
-
#~ msgstr "Luz 200"
|
3024 |
-
|
3025 |
-
#~ msgid "Light 200 Italic"
|
3026 |
-
#~ msgstr "Light 200 Itálico"
|
3027 |
-
|
3028 |
-
#~ msgid "Book 300"
|
3029 |
-
#~ msgstr "Livro 300"
|
3030 |
-
|
3031 |
-
#~ msgid "Book 300 Italic"
|
3032 |
-
#~ msgstr "Livro 300 Itálico"
|
3033 |
-
|
3034 |
-
#~ msgid "Normal 400"
|
3035 |
-
#~ msgstr "Normal 400"
|
3036 |
-
|
3037 |
-
#~ msgid "Normal 400 Italic"
|
3038 |
-
#~ msgstr "Normal 400 Itálico"
|
3039 |
-
|
3040 |
-
#~ msgid "Medium 500 Italic"
|
3041 |
-
#~ msgstr "Medium 500 Itálico"
|
3042 |
-
|
3043 |
-
#~ msgid "Semi-Bold 600"
|
3044 |
-
#~ msgstr "Semi-Negrito 600"
|
3045 |
-
|
3046 |
-
#~ msgid "Semi-Bold 600 Italic"
|
3047 |
-
#~ msgstr "Semi-Bold 600 Itálico"
|
3048 |
-
|
3049 |
-
#~ msgid "Bold 700"
|
3050 |
-
#~ msgstr "Negrito 700"
|
3051 |
-
|
3052 |
-
#~ msgid "Bold 700 Italic"
|
3053 |
-
#~ msgstr "Bold 700 Itálico"
|
3054 |
-
|
3055 |
-
#~ msgid "Extra-Bold 800"
|
3056 |
-
#~ msgstr "Extra-Bold 800"
|
3057 |
-
|
3058 |
-
#~ msgid "Extra-Bold 800 Italic"
|
3059 |
-
#~ msgstr "Extra-Bold 800 Itálico"
|
3060 |
-
|
3061 |
-
#~ msgid "Ultra-Bold 900"
|
3062 |
-
#~ msgstr "Ultra-Bold 900"
|
3063 |
-
|
3064 |
-
#~ msgid "Ultra-Bold 900 Italic"
|
3065 |
-
#~ msgstr "Ultra-Bold 900 Itálico"
|
3066 |
-
|
3067 |
-
#~ msgid "Important Upgrade Notice:"
|
3068 |
-
#~ msgstr "Aviso Importante de Upgrade:"
|
3069 |
-
|
3070 |
-
#~ msgid "Install Required Plugins"
|
3071 |
-
#~ msgstr "Instalar Plugins Requeridos"
|
3072 |
-
|
3073 |
-
#~ msgid "Install Plugins"
|
3074 |
-
#~ msgstr "Instalar Plugins"
|
3075 |
-
|
3076 |
-
#~ msgid "Installing Plugin: %s"
|
3077 |
-
#~ msgstr "Instalando o Plugin: %s"
|
3078 |
-
|
3079 |
-
#~ msgid "Updating Plugin: %s"
|
3080 |
-
#~ msgstr "Actualização do Plugin: %s"
|
3081 |
-
|
3082 |
-
#~ msgid "Something went wrong with the plugin API."
|
3083 |
-
#~ msgstr "Algo deu errado com a API do plugin."
|
3084 |
-
|
3085 |
-
#~ msgid "This theme requires the following plugin: %1$s."
|
3086 |
-
#~ msgid_plural "This theme requires the following plugins: %1$s."
|
3087 |
-
#~ msgstr[0] "Este tema requer o seguinte plug-in: %1$s ."
|
3088 |
-
#~ msgstr[1] "Este tema requer o seguinte plug-in: %1$s ."
|
3089 |
-
|
3090 |
-
#~ msgid "This theme recommends the following plugin: %1$s."
|
3091 |
-
#~ msgid_plural "This theme recommends the following plugins: %1$s."
|
3092 |
-
#~ msgstr[0] "Este tema recomenda o seguinte plug-in: %1$s ."
|
3093 |
-
#~ msgstr[1] "Este tema recomenda o seguinte plug-in: %1$s ."
|
3094 |
-
|
3095 |
-
#~ msgid "The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s."
|
3096 |
-
#~ msgid_plural "The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s."
|
3097 |
-
#~ msgstr[0] "O seguinte plug-in precisa ser atualizado para sua versão mais recente para garantir a máxima compatibilidade com este tema: %1$s ."
|
3098 |
-
#~ msgstr[1] "O seguinte plug-in precisa ser atualizado para sua versão mais recente para garantir a máxima compatibilidade com este tema: %1$s ."
|
3099 |
-
|
3100 |
-
#~ msgid "There is an update available for: %1$s."
|
3101 |
-
#~ msgid_plural "There are updates available for the following plugins: %1$s."
|
3102 |
-
#~ msgstr[0] "Existe uma atualização disponível para: %1$s ."
|
3103 |
-
#~ msgstr[1] "Existe uma atualização disponível para: %1$s ."
|
3104 |
-
|
3105 |
-
#~ msgid "The following required plugin is currently inactive: %1$s."
|
3106 |
-
#~ msgid_plural "The following required plugins are currently inactive: %1$s."
|
3107 |
-
#~ msgstr[0] "O seguinte plugin necessário está atualmente inativo: %1$s ."
|
3108 |
-
#~ msgstr[1] "O seguinte plugin necessário está atualmente inativo: %1$s ."
|
3109 |
-
|
3110 |
-
#~ msgid "The following recommended plugin is currently inactive: %1$s."
|
3111 |
-
#~ msgid_plural "The following recommended plugins are currently inactive: %1$s."
|
3112 |
-
#~ msgstr[0] "O seguinte complemento recomendado está atualmente inativo: %1$s ."
|
3113 |
-
#~ msgstr[1] "O seguinte complemento recomendado está atualmente inativo: %1$s ."
|
3114 |
-
|
3115 |
-
#~ msgid "Begin installing plugin"
|
3116 |
-
#~ msgid_plural "Begin installing plugins"
|
3117 |
-
#~ msgstr[0] "Comece a instalar o plugin"
|
3118 |
-
#~ msgstr[1] "Comece a instalar o plugin"
|
3119 |
-
|
3120 |
-
#~ msgid "Begin updating plugin"
|
3121 |
-
#~ msgid_plural "Begin updating plugins"
|
3122 |
-
#~ msgstr[0] "Inicie o plugin de atualização"
|
3123 |
-
#~ msgstr[1] "Inicie o plugin de atualização"
|
3124 |
-
|
3125 |
-
#~ msgid "Begin activating plugin"
|
3126 |
-
#~ msgid_plural "Begin activating plugins"
|
3127 |
-
#~ msgstr[0] "Comece a ativar o plugin"
|
3128 |
-
#~ msgstr[1] "Comece a ativar o plugin"
|
3129 |
-
|
3130 |
-
#~ msgid "Return to Required Plugins Installer"
|
3131 |
-
#~ msgstr "Voltar para instalador de Plugins necessários"
|
3132 |
-
|
3133 |
-
#~ msgid "Plugin activated successfully."
|
3134 |
-
#~ msgstr "Plugin ativado com sucesso."
|
3135 |
-
|
3136 |
-
#~ msgid "The following plugin was activated successfully:"
|
3137 |
-
#~ msgid_plural "The following plugins were activated successfully:"
|
3138 |
-
#~ msgstr[0] "O seguinte plug-in foi ativado com sucesso:"
|
3139 |
-
#~ msgstr[1] "O seguinte plug-in foi ativado com sucesso:"
|
3140 |
-
|
3141 |
-
#~ msgid "No action taken. Plugin %1$s was already active."
|
3142 |
-
#~ msgstr "Nenhuma ação tomada. O plugin %1$s já estava ativo."
|
3143 |
-
|
3144 |
-
#~ msgid "Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin."
|
3145 |
-
#~ msgstr "Plugin não ativado. É necessária uma versão mais alta de %s para este tema. Atualize o plugin."
|
3146 |
-
|
3147 |
-
#~ msgid "All plugins installed and activated successfully. %1$s"
|
3148 |
-
#~ msgstr "Todos os plugins instalados e ativados com sucesso. %1$s"
|
3149 |
-
|
3150 |
-
#~ msgid "Dismiss this notice"
|
3151 |
-
#~ msgstr "Descartar essa notificação"
|
3152 |
-
|
3153 |
-
#~ msgid "There are one or more required or recommended plugins to install, update or activate."
|
3154 |
-
#~ msgstr "Há um ou mais plugins necessários ou recomendados para instalar, atualizar ou ativar."
|
3155 |
-
|
3156 |
-
#~ msgid "Please contact the administrator of this site for help."
|
3157 |
-
#~ msgstr "Entre em contato com o administrador deste site para obter ajuda."
|
3158 |
-
|
3159 |
-
#~ msgid "This plugin needs to be updated to be compatible with your theme."
|
3160 |
-
#~ msgstr "Este plugin precisa ser atualizado para ser compatível com seu tema."
|
3161 |
-
|
3162 |
-
#~ msgid "Update Required"
|
3163 |
-
#~ msgstr "Atualização necessária"
|
3164 |
-
|
3165 |
-
#~ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
3166 |
-
#~ msgstr "O pacote de plugin remoto não contém uma pasta com o slug desejado e a renomeação não funcionou."
|
3167 |
-
|
3168 |
-
#~ msgid "Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines."
|
3169 |
-
#~ msgstr "Entre em contato com o provedor de plugins e peça-lhes para empacotar seu plugin de acordo com as diretrizes do WordPress."
|
3170 |
-
|
3171 |
-
#~ msgid "The remote plugin package consists of more than one file, but the files are not packaged in a folder."
|
3172 |
-
#~ msgstr "O pacote de plugin remoto consiste em mais de um arquivo, mas os arquivos não são empacotados em uma pasta."
|
3173 |
-
|
3174 |
-
#~ msgctxt "plugin A *and* plugin B"
|
3175 |
-
#~ msgid "and"
|
3176 |
-
#~ msgstr "e"
|
3177 |
-
|
3178 |
-
#~ msgid "TGMPA v%s"
|
3179 |
-
#~ msgstr "TGMPA v %s"
|
3180 |
-
|
3181 |
-
#~ msgid "Required"
|
3182 |
-
#~ msgstr "Requeridos"
|
3183 |
-
|
3184 |
-
#~ msgid "Recommended"
|
3185 |
-
#~ msgstr "Recomendado"
|
3186 |
-
|
3187 |
-
#~ msgid "WordPress Repository"
|
3188 |
-
#~ msgstr "Repositorio WordPress"
|
3189 |
-
|
3190 |
-
#~ msgid "External Source"
|
3191 |
-
#~ msgstr "Fonte externa"
|
3192 |
-
|
3193 |
-
#~ msgid "Pre-Packaged"
|
3194 |
-
#~ msgstr "Pré-embalados"
|
3195 |
-
|
3196 |
-
#~ msgid "Not Installed"
|
3197 |
-
#~ msgstr "Não instalado"
|
3198 |
-
|
3199 |
-
#~ msgid "Installed But Not Activated"
|
3200 |
-
#~ msgstr "Instalado, mas não ativado"
|
3201 |
-
|
3202 |
-
#~ msgid "Active"
|
3203 |
-
#~ msgstr "Ativo"
|
3204 |
-
|
3205 |
-
#~ msgid "Required Update not Available"
|
3206 |
-
#~ msgstr "Atualização necessária não disponível"
|
3207 |
-
|
3208 |
-
#~ msgid "Requires Update"
|
3209 |
-
#~ msgstr "Requer atualização"
|
3210 |
-
|
3211 |
-
#~ msgid "Update recommended"
|
3212 |
-
#~ msgstr "Atualização recomendada"
|
3213 |
-
|
3214 |
-
#~ msgctxt "Install/Update Status"
|
3215 |
-
#~ msgid "%1$s, %2$s"
|
3216 |
-
#~ msgstr "%1$s , %2$s"
|
3217 |
-
|
3218 |
-
#~ msgctxt "plugins"
|
3219 |
-
#~ msgid "All <span class=\"count\">(%s)</span>"
|
3220 |
-
#~ msgid_plural "All <span class=\"count\">(%s)</span>"
|
3221 |
-
#~ msgstr[0] "Todos <span class = \\ \"count \"> ( %s ) </ span>"
|
3222 |
-
#~ msgstr[1] "Todos <span class = \\ \"count \"> ( %s ) </ span>"
|
3223 |
-
|
3224 |
-
#~ msgid "To Install <span class=\"count\">(%s)</span>"
|
3225 |
-
#~ msgid_plural "To Install <span class=\"count\">(%s)</span>"
|
3226 |
-
#~ msgstr[0] "Para instalar <span class = \\ \"count \"> ( %s ) </ span>"
|
3227 |
-
#~ msgstr[1] "Para instalar <span class = \\ \"count \"> ( %s ) </ span>"
|
3228 |
-
|
3229 |
-
#~ msgid "Update Available <span class=\"count\">(%s)</span>"
|
3230 |
-
#~ msgid_plural "Update Available <span class=\"count\">(%s)</span>"
|
3231 |
-
#~ msgstr[0] "Atualização disponível <span class = \\ \"count \"> ( %s ) </ span>"
|
3232 |
-
#~ msgstr[1] "Atualização disponível <span class = \\ \"count \"> ( %s ) </ span>"
|
3233 |
-
|
3234 |
-
#~ msgid "To Activate <span class=\"count\">(%s)</span>"
|
3235 |
-
#~ msgid_plural "To Activate <span class=\"count\">(%s)</span>"
|
3236 |
-
#~ msgstr[0] "Para ativar <span class = \\ \"count \"> ( %s ) </ span>"
|
3237 |
-
#~ msgstr[1] "Para ativar <span class = \\ \"count \"> ( %s ) </ span>"
|
3238 |
-
|
3239 |
-
#~ msgctxt "as in: \"version nr unknown\""
|
3240 |
-
#~ msgid "unknown"
|
3241 |
-
#~ msgstr "desconhecido"
|
3242 |
-
|
3243 |
-
#~ msgid "Installed version:"
|
3244 |
-
#~ msgstr "Versão instalada:"
|
3245 |
-
|
3246 |
-
#~ msgid "Minimum required version:"
|
3247 |
-
#~ msgstr "Versão mínima exigida:"
|
3248 |
-
|
3249 |
-
#~ msgid "Available version:"
|
3250 |
-
#~ msgstr "Versão disponível:"
|
3251 |
-
|
3252 |
-
#~ msgid "No plugins to install, update or activate."
|
3253 |
-
#~ msgstr "Não há plugins para instalar, atualizar ou ativar."
|
3254 |
-
|
3255 |
-
#~ msgid "Plugin"
|
3256 |
-
#~ msgstr "Plugar"
|
3257 |
-
|
3258 |
-
#~ msgid "Source"
|
3259 |
-
#~ msgstr "Fonte"
|
3260 |
-
|
3261 |
-
#~ msgid "Type"
|
3262 |
-
#~ msgstr "Tipo"
|
3263 |
-
|
3264 |
-
#~ msgid "Version"
|
3265 |
-
#~ msgstr "Versão"
|
3266 |
-
|
3267 |
-
#~ msgid "Status"
|
3268 |
-
#~ msgstr "Status"
|
3269 |
-
|
3270 |
-
#~ msgid "Install %2$s"
|
3271 |
-
#~ msgstr "Instalar %2$s"
|
3272 |
-
|
3273 |
-
#~ msgid "Update %2$s"
|
3274 |
-
#~ msgstr "Atualização %2$s"
|
3275 |
-
|
3276 |
-
#~ msgid "Activate %2$s"
|
3277 |
-
#~ msgstr "Ativar %2$s"
|
3278 |
-
|
3279 |
-
#~ msgid "Upgrade message from the plugin author:"
|
3280 |
-
#~ msgstr "Mensagem de atualização do autor do plugin:"
|
3281 |
-
|
3282 |
-
#~ msgid "Install"
|
3283 |
-
#~ msgstr "Instalar"
|
3284 |
-
|
3285 |
-
#~ msgid "Update"
|
3286 |
-
#~ msgstr "Atualizar"
|
3287 |
-
|
3288 |
-
#~ msgid "Activate"
|
3289 |
-
#~ msgstr "Ativar"
|
3290 |
-
|
3291 |
-
#~ msgid "No plugins were selected to be installed. No action taken."
|
3292 |
-
#~ msgstr "Nenhum plugin foi selecionado para ser instalado. Nenhuma ação tomada."
|
3293 |
-
|
3294 |
-
#~ msgid "No plugins were selected to be updated. No action taken."
|
3295 |
-
#~ msgstr "Nenhum plugin foi selecionado para ser atualizado. Nenhuma ação tomada."
|
3296 |
-
|
3297 |
-
#~ msgid "No plugins are available to be installed at this time."
|
3298 |
-
#~ msgstr "Nenhum plugin está disponível para ser instalado no momento."
|
3299 |
-
|
3300 |
-
#~ msgid "No plugins are available to be updated at this time."
|
3301 |
-
#~ msgstr "Nenhum plug-in está disponível para ser atualizado neste momento."
|
3302 |
-
|
3303 |
-
#~ msgid "No plugins were selected to be activated. No action taken."
|
3304 |
-
#~ msgstr "Nenhum plugin foi selecionado para ser ativado. Nenhuma ação tomada."
|
3305 |
-
|
3306 |
-
#~ msgid "No plugins are available to be activated at this time."
|
3307 |
-
#~ msgstr "Nenhum plug-in está disponível para ser ativado neste momento."
|
3308 |
-
|
3309 |
-
#~ msgid "Plugin activation failed."
|
3310 |
-
#~ msgstr "A ativação do plugin falhou."
|
3311 |
-
|
3312 |
-
#~ msgid "Updating Plugin %1$s (%2$d/%3$d)"
|
3313 |
-
#~ msgstr "Actualização do Plugin %1$s ( %2$d / %3$d )"
|
3314 |
-
|
3315 |
-
#~ msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
|
3316 |
-
#~ msgstr "Ocorreu um erro ao instalar %1$s : <strong> %2$s </ strong>."
|
3317 |
-
|
3318 |
-
#~ msgid "The installation of %1$s failed."
|
3319 |
-
#~ msgstr "A instalação do %1$s falhou."
|
3320 |
-
|
3321 |
-
#~ msgid "The installation and activation process is starting. This process may take a while on some hosts, so please be patient."
|
3322 |
-
#~ msgstr "O processo de instalação e ativação está começando. Este processo pode demorar um pouco em alguns hosts, então seja paciente."
|
3323 |
-
|
3324 |
-
#~ msgid "%1$s installed and activated successfully."
|
3325 |
-
#~ msgstr "%1$s instalado e ativado com sucesso."
|
3326 |
-
|
3327 |
-
#~ msgid "Hide Details"
|
3328 |
-
#~ msgstr "Detalhes ocultos"
|
3329 |
-
|
3330 |
-
#~ msgid "All installations and activations have been completed."
|
3331 |
-
#~ msgstr "Todas as instalações e ativações foram concluídas."
|
3332 |
-
|
3333 |
-
#~ msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
|
3334 |
-
#~ msgstr "Instalando e Ativando o Plugin %1$s ( %2$d / %3$d )"
|
3335 |
-
|
3336 |
-
#~ msgid "The installation process is starting. This process may take a while on some hosts, so please be patient."
|
3337 |
-
#~ msgstr "O processo de instalação está começando. Este processo pode demorar um pouco em alguns hosts, então seja paciente."
|
3338 |
-
|
3339 |
-
#~ msgid "%1$s installed successfully."
|
3340 |
-
#~ msgstr "%1$s instalado com sucesso."
|
3341 |
-
|
3342 |
-
#~ msgid "All installations have been completed."
|
3343 |
-
#~ msgstr "Todas as instalações foram concluídas."
|
3344 |
-
|
3345 |
-
#~ msgid "Installing Plugin %1$s (%2$d/%3$d)"
|
3346 |
-
#~ msgstr "Instalando o Plugin %1$s ( %2$d / %3$d )"
|
3347 |
-
|
3348 |
-
#~ msgid "Meta Slider (for Slider)"
|
3349 |
-
#~ msgstr "Meta Slider (para Slider)"
|
3350 |
-
|
3351 |
-
#~ msgid "Max Mega Menu (for Mega Menu)"
|
3352 |
-
#~ msgstr "Menu Max Mega (para Mega Menu)"
|
3353 |
-
|
3354 |
-
#~ msgid "Page Builder by SiteOrigin (Page Builder)"
|
3355 |
-
#~ msgstr "Construtor de Páginas por SiteOrigin (Page Builder)"
|
3356 |
-
|
3357 |
-
#~ msgid "SiteOrigin Widgets Bundle (Page Builder Widgets)"
|
3358 |
-
#~ msgstr "Pacote de Widgets do SiteOrigin (Widgets do Builder da Página)"
|
3359 |
-
|
3360 |
-
#~ msgid "WooCommerce (For E-Commerce)"
|
3361 |
-
#~ msgstr "WooCommerce (For E-Commerce)"
|
3362 |
-
|
3363 |
-
#~ msgid "Contact Form 7 (For Forms)"
|
3364 |
-
#~ msgstr "Formulário de contato 7 (para formulários)"
|
3365 |
-
|
3366 |
-
#~ msgid "SEO (Search Engine Optimization)"
|
3367 |
-
#~ msgstr "SEO (Search Engine Optimization)"
|
3368 |
-
|
3369 |
-
#~ msgid "Search Results for: %s"
|
3370 |
-
#~ msgstr "Procurar produtos por: %s"
|
3371 |
-
|
3372 |
-
#~ msgid "Search »"
|
3373 |
-
#~ msgstr "Procurar »"
|
3374 |
-
|
3375 |
-
#~ msgid "Posts Not Found"
|
3376 |
-
#~ msgstr "Post nao encontrado"
|
3377 |
-
|
3378 |
-
#~ msgid "Maybe try a search?"
|
3379 |
-
#~ msgstr "Procurar produtos ?"
|
3380 |
-
|
3381 |
-
#~ msgid "All right reserved."
|
3382 |
-
#~ msgstr "Todos os direitos reservados."
|
3383 |
-
|
3384 |
-
#~ msgid "Terms of Use - Privacy Policy"
|
3385 |
-
#~ msgstr "Termos de Uso - Politica de Privacidade"
|
3386 |
-
|
3387 |
-
#~ msgid "WordPress"
|
3388 |
-
#~ msgstr "WordPress"
|
3389 |
-
|
3390 |
-
#~ msgid "Theme"
|
3391 |
-
#~ msgstr "Tema"
|
3392 |
-
|
3393 |
-
#~ msgid "Toggle navigation"
|
3394 |
-
#~ msgstr "Alternar de navegação"
|
3395 |
-
|
3396 |
-
#~ msgid "Call:"
|
3397 |
-
#~ msgstr "Ligar:"
|
3398 |
-
|
3399 |
-
#~ msgid "Email:"
|
3400 |
-
#~ msgstr "E-mail:"
|
3401 |
-
|
3402 |
-
#~ msgid " Call: "
|
3403 |
-
#~ msgstr " Ligar: "
|
3404 |
-
|
3405 |
-
#~ msgid " | "
|
3406 |
-
#~ msgstr " | "
|
3407 |
-
|
3408 |
-
#~ msgid " Email: "
|
3409 |
-
#~ msgstr " E-mail: "
|
3410 |
-
|
3411 |
-
#~ msgid "Shop"
|
3412 |
-
#~ msgstr "Comprar"
|
3413 |
-
|
3414 |
-
#~ msgid "Cart"
|
3415 |
-
#~ msgstr "Carrinho"
|
3416 |
-
|
3417 |
-
#~ msgid "My Account "
|
3418 |
-
#~ msgstr "Minha conta "
|
3419 |
-
|
3420 |
-
#~ msgid "Search Website"
|
3421 |
-
#~ msgstr "Procurar no Website"
|
3422 |
-
|
3423 |
-
#~ msgid "Keywords..."
|
3424 |
-
#~ msgstr "Palavras-chave..."
|
3425 |
-
|
3426 |
-
#~ msgid "Hit enter to search or ESC to close"
|
3427 |
-
#~ msgstr "Pressione Enter para procurar ou ESC para fechar"
|
3428 |
-
|
3429 |
-
#~ msgid "%1$s review for %2$s"
|
3430 |
-
#~ msgid_plural "%1$s reviews for %2$s"
|
3431 |
-
#~ msgstr[0] "%1$s revisão por %2$s"
|
3432 |
-
#~ msgstr[1] "%1$s revisão por %2$s"
|
3433 |
-
|
3434 |
-
#~ msgid "Reviews"
|
3435 |
-
#~ msgstr "Rever"
|
3436 |
-
|
3437 |
-
#~ msgid "There are no reviews yet."
|
3438 |
-
#~ msgstr "Não há comentários ainda."
|
3439 |
-
|
3440 |
-
#~ msgid "Add a review"
|
3441 |
-
#~ msgstr "Adicionar uma revisão"
|
3442 |
-
|
3443 |
-
#~ msgid "Be the first to review “%s”"
|
3444 |
-
#~ msgstr "Seja o primeiro a avaliar o & ldquo; %s”"
|
3445 |
-
|
3446 |
-
#~ msgid "Leave a Reply to %s"
|
3447 |
-
#~ msgstr "Deixe uma resposta para %s"
|
3448 |
-
|
3449 |
-
#~ msgid "Submit"
|
3450 |
-
#~ msgstr "Enviar"
|
3451 |
-
|
3452 |
-
#~ msgid "You must be <a href=\"%s\">logged in</a> to post a review."
|
3453 |
-
#~ msgstr "Você deve ser <a href=\" %s \"> logado </a> para publicar uma revisão."
|
3454 |
-
|
3455 |
-
#~ msgid "Rate…"
|
3456 |
-
#~ msgstr "Rate & hellip;"
|
3457 |
-
|
3458 |
-
#~ msgid "Perfect"
|
3459 |
-
#~ msgstr "Perfeito"
|
3460 |
-
|
3461 |
-
#~ msgid "Good"
|
3462 |
-
#~ msgstr "Boa"
|
3463 |
-
|
3464 |
-
#~ msgid "Average"
|
3465 |
-
#~ msgstr "Média"
|
3466 |
-
|
3467 |
-
#~ msgid "Not that bad"
|
3468 |
-
#~ msgstr "Não tão ruim assim"
|
3469 |
-
|
3470 |
-
#~ msgid "Very Poor"
|
3471 |
-
#~ msgstr "Muito ruim"
|
3472 |
-
|
3473 |
-
#~ msgid "Your Review"
|
3474 |
-
#~ msgstr "Sua revisão"
|
3475 |
-
|
3476 |
-
#~ msgid "Only logged in customers who have purchased this product may leave a review."
|
3477 |
-
#~ msgstr "Apenas usuários registrados que compraram este produto podem deixar uma revisão."
|
3478 |
-
|
3479 |
-
#~ msgid "SKU:"
|
3480 |
-
#~ msgstr "Unidade de Manutenção de Estoque:"
|
3481 |
-
|
3482 |
-
#~ msgid "N/A"
|
3483 |
-
#~ msgstr "N/D"
|
3484 |
-
|
3485 |
-
#~ msgid "Category:"
|
3486 |
-
#~ msgid_plural "Categories:"
|
3487 |
-
#~ msgstr[0] "Categoria:"
|
3488 |
-
#~ msgstr[1] "Categorias:"
|
3489 |
-
|
3490 |
-
#~ msgid "Tag:"
|
3491 |
-
#~ msgid_plural "Tags:"
|
3492 |
-
#~ msgstr[0] "Tag:"
|
3493 |
-
#~ msgstr[1] "Tag:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,21 +4,25 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: SEOPress 2.1.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
|
7 |
-
"POT-Creation-Date: 2020-
|
8 |
-
"PO-Revision-Date: 2020-
|
9 |
"Last-Translator: Manojkumar(INDIA) <Manojkumar09051993@gmail.com>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: te_IN\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Generator: Poedit 2.
|
16 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_x;esc_attr_e;esc_attr__;esc_html__;esc_html_e\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
|
|
|
|
|
|
|
|
22 |
#: inc/admin/admin-features-list.php:15
|
23 |
msgid "Titles & metas"
|
24 |
msgstr "శీర్షికలు & Meta"
|
@@ -32,25 +36,26 @@ msgstr "మీ శీర్షికలు & meta నిర్వహించం
|
|
32 |
#: inc/admin/admin-features-list.php:18 inc/admin/admin-features-list.php:34
|
33 |
#: inc/admin/admin-features-list.php:50 inc/admin/admin-features-list.php:66
|
34 |
#: inc/admin/admin-features-list.php:82 inc/admin/admin-features-list.php:93
|
35 |
-
#: inc/admin/admin-features-list.php:
|
36 |
-
#: inc/admin/admin-features-list.php:
|
37 |
-
#: inc/admin/admin-features-list.php:155 inc/admin/admin-features-list.php:
|
38 |
-
#: inc/admin/admin-features-list.php:
|
39 |
#: inc/admin/admin-features-list.php:228 inc/admin/admin-features-list.php:247
|
40 |
-
#: inc/admin/admin-features-list.php:
|
41 |
-
#: inc/admin/admin-features-list.php:
|
42 |
-
#: inc/admin/admin-features-list.php:
|
43 |
msgid "Manage"
|
44 |
msgstr "నిర్వహింౘు"
|
45 |
|
46 |
#: inc/admin/admin-features-list.php:23 inc/admin/admin-features-list.php:39
|
47 |
#: inc/admin/admin-features-list.php:55 inc/admin/admin-features-list.php:71
|
48 |
-
#: inc/admin/admin-features-list.php:98 inc/admin/admin-features-list.php:
|
49 |
-
#: inc/admin/admin-features-list.php:
|
50 |
-
#: inc/admin/admin-features-list.php:
|
51 |
#: inc/admin/admin-features-list.php:233 inc/admin/admin-features-list.php:252
|
52 |
-
#: inc/admin/admin-features-list.php:271 inc/admin/admin-features-list.php:
|
53 |
-
#: inc/admin/admin-features-list.php:
|
|
|
54 |
msgid "Read our guide"
|
55 |
msgstr ""
|
56 |
|
@@ -76,8 +81,8 @@ msgstr "మీ XML / ఇమేజ్ / HTML సైట్ మాప్ ను న
|
|
76 |
msgid "Guide to enable your XML Sitemaps - new window"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/admin/admin-features-list.php:47 inc/admin/admin-header.php:
|
80 |
-
#: inc/admin/adminbar.php:
|
81 |
msgid "Social Networks"
|
82 |
msgstr "సామాజిక నెట్వర్క్స్"
|
83 |
|
@@ -89,20 +94,25 @@ msgstr "ఓపెన్ గ్రాఫ్, ట్విట్టర్ కా
|
|
89 |
msgid "Guide to enable Google Knowledge Graph - new window"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: inc/admin/admin-features-list.php:63 inc/admin/admin-header.php:
|
93 |
-
|
|
|
|
|
|
|
94 |
msgstr "గూగుల్ విశ్లేషణలు"
|
95 |
|
96 |
#: inc/admin/admin-features-list.php:64
|
97 |
-
|
|
|
|
|
98 |
msgstr "Google Analytics తో మీ సందర్శకుల గురించి ప్రతిదీ ట్రాక్ చేయండి"
|
99 |
|
100 |
#: inc/admin/admin-features-list.php:72
|
101 |
msgid "Guide to getting started with Google Analytics - new window"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: inc/admin/admin-features-list.php:79 inc/admin/admin-header.php:
|
105 |
-
#: inc/admin/admin.php:195 inc/admin/admin.php:
|
106 |
msgid "Advanced"
|
107 |
msgstr "ఉన్నతస్థాయి"
|
108 |
|
@@ -110,238 +120,241 @@ msgstr "ఉన్నతస్థాయి"
|
|
110 |
msgid "Advanced SEO options for advanced users!"
|
111 |
msgstr "ఆధునిక వినియోగదారులకు ఆధునిక SEO ఎంపికలు!"
|
112 |
|
113 |
-
#: inc/admin/admin-features-list.php:90 inc/admin/admin-header.php:
|
114 |
-
|
115 |
-
|
|
|
116 |
|
117 |
#: inc/admin/admin-features-list.php:91
|
118 |
-
msgid "
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#: inc/admin/admin-features-list.php:99
|
122 |
msgid "Guide to optimize your WooCommerce SEO - new window"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: inc/admin/admin-features-list.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "Easy Digital Downloads"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: inc/admin/admin-features-list.php:
|
130 |
msgid "Improve Easy Digital Downloads SEO"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: inc/admin/admin-features-list.php:
|
134 |
msgid "Local Business"
|
135 |
msgstr "స్థానిక వ్యాపారం"
|
136 |
|
137 |
-
#: inc/admin/admin-features-list.php:
|
138 |
msgid "Add Google Local Business data type"
|
139 |
msgstr "Google స్థానిక వ్యాపార డేటా రకాన్ని జోడించండి"
|
140 |
|
141 |
-
#: inc/admin/admin-features-list.php:
|
142 |
msgid "Dublin Core"
|
143 |
msgstr "Dublin Core (డబ్లిన్ కోర్)"
|
144 |
|
145 |
-
#: inc/admin/admin-features-list.php:
|
146 |
msgid "Add Dublin Core meta tags"
|
147 |
msgstr "డబ్లిన్ కోర్ మెటా ట్యాగ్లను జోడించండి"
|
148 |
|
149 |
-
#: inc/admin/admin-features-list.php:
|
150 |
msgid "Structured Data Types"
|
151 |
msgstr "నిర్మాణాత్మక డేటా రకాలు"
|
152 |
|
153 |
-
#: inc/admin/admin-features-list.php:
|
154 |
#, fuzzy
|
155 |
#| msgid "Add data types to your content: articles, courses, recipes, videos, events and products"
|
156 |
msgid "Add data types to your content: articles, courses, recipes, videos, events, products and more."
|
157 |
msgstr "మీ కంటెంట్ డేటా రకాలను జోడించండి: కథనాలు, కోర్సులు, వంటకాలు, వీడియోలు, ఈవెంట్లు మరియు ఉత్పత్తులు"
|
158 |
|
159 |
-
#: inc/admin/admin-features-list.php:
|
160 |
msgid "See schemas"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/admin/admin-features-list.php:
|
164 |
msgid "Guide to add schemas with SEOPress PRO - new window"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/admin/admin-features-list.php:
|
168 |
msgid "Breadcrumbs"
|
169 |
msgstr "Breadcrumbs"
|
170 |
|
171 |
-
#: inc/admin/admin-features-list.php:
|
172 |
msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs"
|
173 |
msgstr "మీ థీమ్ కోసం Breadcrumbs ప్రారంభించు మరియు SERP లలో మీ SEO ను మెరుగుపరచండి"
|
174 |
|
175 |
-
#: inc/admin/admin-features-list.php:
|
176 |
msgid "Guide to enable Breadcrumbs - new window"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/admin/admin-features-list.php:
|
180 |
msgid "Google Page Speed"
|
181 |
msgstr "గూగుల్ పేజ్ స్పీడ్"
|
182 |
|
183 |
-
#: inc/admin/admin-features-list.php:
|
184 |
msgid "Track your website performance to improve SEO with Google Page Speed"
|
185 |
msgstr "గూగుల్ పేజీ వేగంతో SEO మెరుగుపరచడానికి మీ వెబ్సైట్ పనితీరుని ట్రాక్ చేయండి"
|
186 |
|
187 |
-
#: inc/admin/admin-features-list.php:
|
188 |
#, fuzzy
|
189 |
#| msgid "Analyse this page with Google Page Speed"
|
190 |
msgid "Guide to analyze your site with Google Page Speed - new window"
|
191 |
msgstr "ఈ పేజీని Google Page Speed తో విశ్లేషించండి"
|
192 |
|
193 |
-
#: inc/admin/admin-features-list.php:
|
194 |
msgid "robots.txt"
|
195 |
msgstr "robots.txt (రోబోట్స్.txt)"
|
196 |
|
197 |
-
#: inc/admin/admin-features-list.php:
|
198 |
msgid "Edit your robots.txt file"
|
199 |
msgstr "మీ robots.txt ఫైల్ను సవరించండి"
|
200 |
|
201 |
-
#: inc/admin/admin-features-list.php:
|
202 |
#, fuzzy
|
203 |
#| msgid "Edit your robots.txt file"
|
204 |
msgid "View your robots.txt"
|
205 |
msgstr "మీ robots.txt ఫైల్ను సవరించండి"
|
206 |
|
207 |
-
#: inc/admin/admin-features-list.php:
|
208 |
#, fuzzy
|
209 |
#| msgid "Edit your robots.txt file"
|
210 |
msgid "Guide to edit your robots.txt file - new window"
|
211 |
msgstr "మీ robots.txt ఫైల్ను సవరించండి"
|
212 |
|
213 |
-
#: inc/admin/admin-features-list.php:
|
214 |
msgid "Google News Sitemap"
|
215 |
msgstr "Google వార్తలు సైట్ మ్యాప్"
|
216 |
|
217 |
-
#: inc/admin/admin-features-list.php:
|
218 |
msgid "Optimize your site for Google News"
|
219 |
msgstr "Google వార్తల కోసం మీ సైట్ను ఆప్టిమైజ్ చేయండి"
|
220 |
|
221 |
-
#: inc/admin/admin-features-list.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
msgid "Schemas"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/admin/admin-features-list.php:
|
226 |
msgid "Create / manage your schemas"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/admin/admin-features-list.php:
|
230 |
-
#: inc/admin/adminbar.php:
|
231 |
msgid "Redirections"
|
232 |
msgstr "Redirections (మళ్లింపులు)"
|
233 |
|
234 |
-
#: inc/admin/admin-features-list.php:
|
235 |
msgid "Monitor 404, create 301, 302 and 307 redirections"
|
236 |
msgstr "మానిటర్ 404, 301, 302 మరియు 307 మళ్లింపులను సృష్టించండి"
|
237 |
|
238 |
-
#: inc/admin/admin-features-list.php:
|
239 |
msgid "See redirects"
|
240 |
msgstr "దారిమార్పులను(redirects) చూడండి"
|
241 |
|
242 |
-
#: inc/admin/admin-features-list.php:
|
243 |
msgid "Guide to enable 301 redirections and 404 monitoring - new window"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/admin/admin-features-list.php:
|
247 |
#, fuzzy
|
248 |
#| msgid "Broken Links"
|
249 |
msgid "Broken links"
|
250 |
msgstr "బ్రోకెన్ లింక్స్"
|
251 |
|
252 |
-
#: inc/admin/admin-features-list.php:
|
253 |
msgid "Scan your site to find SEO problems."
|
254 |
msgstr "SEO సమస్యలను కనుగొనడానికి మీ సైట్ను స్కాన్ చేయండి."
|
255 |
|
256 |
-
#: inc/admin/admin-features-list.php:
|
257 |
msgid "See broken links"
|
258 |
msgstr "విరిగిన లింక్లను చూడండి ( broken links)"
|
259 |
|
260 |
-
#: inc/admin/admin-features-list.php:
|
261 |
msgid "Scan"
|
262 |
msgstr "స్కాన్"
|
263 |
|
264 |
-
#: inc/admin/admin-features-list.php:
|
265 |
msgid "Guide to find broken links with SEOPress PRO - new window"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/admin/admin-features-list.php:
|
269 |
-
msgid "Backlinks"
|
270 |
-
msgstr "బ్యాక్ లింక్"
|
271 |
-
|
272 |
-
#: inc/admin/admin-features-list.php:280
|
273 |
-
msgid "Check your backlinks with Majestic API."
|
274 |
-
msgstr "మెజెస్టిక్ API తో మీ బ్యాక్లింక్లను తనిఖీ చేయండి."
|
275 |
-
|
276 |
-
#: inc/admin/admin-features-list.php:282
|
277 |
-
msgid "See backlinks"
|
278 |
-
msgstr "బ్యాక్ లింక్లను చూడండి"
|
279 |
-
|
280 |
-
#: inc/admin/admin-features-list.php:292 inc/admin/admin-header.php:142
|
281 |
#, fuzzy
|
282 |
#| msgid "URL redirection"
|
283 |
msgid "URL Rewriting"
|
284 |
msgstr "URL redirection (URL దారి మళ్లింపు)"
|
285 |
|
286 |
-
#: inc/admin/admin-features-list.php:
|
287 |
#, fuzzy
|
288 |
#| msgid "Flush permalinks"
|
289 |
msgid "Customize your permalinks."
|
290 |
msgstr "ఫ్లష్ permalinks"
|
291 |
|
292 |
-
#: inc/admin/admin-features-list.php:
|
293 |
msgid ".htaccess"
|
294 |
msgstr ".htaccess"
|
295 |
|
296 |
-
#: inc/admin/admin-features-list.php:
|
297 |
msgid "Edit your htaccess file."
|
298 |
msgstr "మీ htaccess ఫైల్ను సవరించండి."
|
299 |
|
300 |
-
#: inc/admin/admin-features-list.php:
|
301 |
msgid "RSS"
|
302 |
msgstr "RSS (రియల్లీ సింపుల్ సిండికేషన్)"
|
303 |
|
304 |
-
#: inc/admin/admin-features-list.php:
|
305 |
msgid "Configure default WordPress RSS."
|
306 |
msgstr "డిఫాల్ట్ WordPress RSS ఆకృతీకరించుము."
|
307 |
|
308 |
-
#: inc/admin/admin-features-list.php:
|
309 |
-
#: inc/admin/adminbar.php:
|
310 |
msgid "Tools"
|
311 |
msgstr "Tools - (టూల్స్)"
|
312 |
|
313 |
-
#: inc/admin/admin-features-list.php:
|
314 |
#, fuzzy
|
315 |
#| msgid "Import / export SEOPress settings from site to site."
|
316 |
msgid "Import/Export plugin settings from site to site."
|
317 |
msgstr "సైట్ నుండి సైట్ దిగుమతి / ఎగుమతి SEOPress సెట్టింగులు."
|
318 |
|
319 |
-
#: inc/admin/admin-features-list.php:
|
320 |
msgid "Guide to Export/Import/Reset settings - new window"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: inc/admin/admin-features-list.php:
|
324 |
-
#: inc/admin/admin-notifications-center.php:
|
325 |
msgid "License"
|
326 |
msgstr "అధికారపూరిత అనుమతి"
|
327 |
|
328 |
-
#: inc/admin/admin-features-list.php:
|
329 |
#, fuzzy
|
330 |
#| msgid "Edit your SEOPress license key."
|
331 |
msgid "Edit your license key."
|
332 |
msgstr "మీ SEO ప్రెస్ లైసెన్స్ కీని సవరించండి."
|
333 |
|
334 |
-
#: inc/admin/admin-features-list.php:
|
335 |
msgid "Guide to activate SEOPress PRO - new window"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: inc/admin/admin-features-list.php:
|
339 |
#, fuzzy
|
340 |
#| msgid "Click to disable this feature"
|
341 |
msgid "Click to disable"
|
342 |
msgstr "ఈ లక్షణాన్ని నిలిపివేయడానికి క్లిక్ చేయండి"
|
343 |
|
344 |
-
#: inc/admin/admin-features-list.php:
|
345 |
#, fuzzy
|
346 |
#| msgid "Click to enable this feature"
|
347 |
msgid "Click to enable"
|
@@ -372,7 +385,7 @@ msgstr "జాబితా పొందండి"
|
|
372 |
msgid "Watch our video guides"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: inc/admin/admin-get-started.php:
|
376 |
msgid "Our support center"
|
377 |
msgstr ""
|
378 |
|
@@ -380,77 +393,59 @@ msgstr ""
|
|
380 |
msgid "SEOPress"
|
381 |
msgstr "SEOPress"
|
382 |
|
383 |
-
#: inc/admin/admin-header.php:
|
384 |
msgid "PRO"
|
385 |
msgstr "PRO"
|
386 |
|
387 |
-
#: inc/admin/admin-header.php:
|
388 |
msgid "FREE"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/admin/admin-header.php:
|
392 |
msgid "Titles & Metas"
|
393 |
msgstr "శీర్షిక & మెటా (ఉన్నత స్థాయి వివరణ)"
|
394 |
|
395 |
-
#: inc/admin/admin-header.php:
|
396 |
msgid "XML / HTML Sitemap"
|
397 |
msgstr "XML / HTML సైట్ మ్యాప్"
|
398 |
|
399 |
-
#: inc/admin/admin-header.php:
|
400 |
#, fuzzy
|
401 |
#| msgid "Structured Data Types"
|
402 |
msgid "Structured Data Types (schema.org)"
|
403 |
msgstr "నిర్మాణాత్మక డేటా రకాలు"
|
404 |
|
405 |
-
#: inc/admin/admin-header.php:
|
406 |
msgid "White Label"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: inc/admin/admin-header.php:
|
410 |
-
msgid "See the changelog (new window)"
|
411 |
-
msgstr "మార్పులు చూడండి (కొత్త విండో)"
|
412 |
-
|
413 |
-
#: inc/admin/admin-header.php:202
|
414 |
msgid "See the changelog"
|
415 |
msgstr "మార్పులు చూడండి"
|
416 |
|
417 |
-
#: inc/admin/admin-header.php:
|
418 |
msgid "Send feedback"
|
419 |
msgstr "అభిప్రాయాన్ని పంపండి"
|
420 |
|
421 |
-
#: inc/admin/admin-header.php:
|
422 |
-
msgid "
|
423 |
-
msgstr "
|
424 |
|
425 |
-
#: inc/admin/admin-header.php:
|
426 |
msgid "Follow us on Twitter"
|
427 |
msgstr "ట్విట్టర్ లో మమల్ని అనుసరించండి"
|
428 |
|
429 |
-
#: inc/admin/admin-header.php:
|
430 |
-
#, fuzzy
|
431 |
-
#| msgid "Follow us on Twitter (new window)"
|
432 |
-
msgid "Follow us on YouTube (new window)"
|
433 |
-
msgstr "ట్విట్టర్ లో మమల్ని అనుసరించండి (కొత్త విండో)"
|
434 |
-
|
435 |
-
#: inc/admin/admin-header.php:214
|
436 |
#, fuzzy
|
437 |
#| msgid "Follow us on Twitter"
|
438 |
msgid "Follow us on YouTube"
|
439 |
msgstr "ట్విట్టర్ లో మమల్ని అనుసరించండి"
|
440 |
|
441 |
-
#: inc/admin/admin-header.php:
|
442 |
-
msgid "Official website (new window)"
|
443 |
-
msgstr "అధికారిక వెబ్సైట్ (కొత్త విండో)"
|
444 |
-
|
445 |
-
#: inc/admin/admin-header.php:218
|
446 |
msgid "Official website"
|
447 |
msgstr "అధికారిక వెబ్సైట్"
|
448 |
|
449 |
-
#: inc/admin/admin-header.php:
|
450 |
-
msgid "Support (new window)"
|
451 |
-
msgstr "సహాయము (కొత్త విండో)"
|
452 |
-
|
453 |
-
#: inc/admin/admin-header.php:222
|
454 |
msgid "Support"
|
455 |
msgstr "సహాయము"
|
456 |
|
@@ -458,6 +453,10 @@ msgstr "సహాయము"
|
|
458 |
msgid "Enter a few keywords for analysis to help you write optimized content."
|
459 |
msgstr ""
|
460 |
|
|
|
|
|
|
|
|
|
461 |
#: inc/admin/admin-metaboxes-content-analysis-form.php:8
|
462 |
msgid ""
|
463 |
"Writing content for your users is the most important thing! If it doesn‘t feel natural, your visitors will "
|
@@ -465,1303 +464,1358 @@ msgid ""
|
|
465 |
msgstr ""
|
466 |
|
467 |
#: inc/admin/admin-metaboxes-content-analysis-form.php:12
|
468 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:
|
|
|
|
|
|
|
469 |
#, fuzzy
|
470 |
#| msgid "Search keywords"
|
471 |
msgid "Target keywords"
|
472 |
msgstr "కీలక పదాలను శోధించండి"
|
473 |
|
474 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:
|
|
|
475 |
msgid ""
|
476 |
-
"Separate target keywords with commas. Do not use spaces after the commas, unless you want to include them
|
477 |
-
"(eg: \"my super keyword,another keyword,keyword\")"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:
|
481 |
#, fuzzy
|
482 |
#| msgid "Enter your Google News Keywords"
|
483 |
msgid "Enter your target keywords"
|
484 |
msgstr "మీ Google వార్తల కీలక పదాలను నమోదు చేయండి"
|
485 |
|
486 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:
|
487 |
msgid "Analyze my content"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:
|
491 |
msgid "Refresh analysis"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:
|
495 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:
|
|
|
499 |
#, fuzzy
|
500 |
#| msgid "Google Trends"
|
501 |
msgid "Google suggestions"
|
502 |
msgstr "Google ట్రెండ్లు"
|
503 |
|
504 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:
|
505 |
msgid ""
|
506 |
"Enter a keyword, or a phrase, to find the top 10 Google suggestions instantly. This is useful if you want "
|
507 |
"to work with the long tail technique."
|
508 |
msgstr ""
|
509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
#: inc/admin/admin-metaboxes-content-analysis-form.php:39
|
511 |
#, fuzzy
|
512 |
#| msgid "Reset settings"
|
513 |
msgid "Get suggestions!"
|
514 |
msgstr "సెట్టింగ్లను పునఃపరిష్కారం (RESET) చేయండి"
|
515 |
|
516 |
-
#: inc/admin/admin-metaboxes-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
msgstr "నిర్మాణాత్మక డేటా రకాలు"
|
521 |
|
522 |
-
#: inc/admin/admin-metaboxes-
|
523 |
-
|
524 |
-
|
525 |
-
msgid "Last modified date"
|
526 |
-
msgstr "చివరిగా నవీకరించబడిన తేదీ :"
|
527 |
|
528 |
-
#: inc/admin/admin-metaboxes-
|
529 |
-
msgid "
|
530 |
-
msgstr ""
|
531 |
|
532 |
-
#: inc/admin/admin-metaboxes-
|
533 |
-
msgid "
|
534 |
-
msgstr ""
|
535 |
|
536 |
-
#: inc/admin/admin-metaboxes-
|
|
|
|
|
|
|
|
|
537 |
#, fuzzy
|
538 |
-
#| msgid "
|
539 |
-
msgid "
|
540 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
541 |
|
542 |
-
#: inc/admin/admin-metaboxes-
|
543 |
#, fuzzy
|
544 |
-
#| msgid "
|
545 |
-
msgid "
|
546 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
547 |
|
548 |
-
#: inc/admin/admin-metaboxes-
|
549 |
#, fuzzy
|
550 |
#| msgid "Tag title"
|
551 |
msgid "Meta title"
|
552 |
msgstr "ట్యాగ్ శీర్షిక"
|
553 |
|
554 |
-
#: inc/admin/admin-metaboxes-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
#: inc/admin/admin.php:834 inc/admin/admin.php:855 inc/admin/admin.php:875 inc/admin/admin.php:894
|
560 |
-
#: inc/admin/admin.php:1190 inc/admin/admin.php:2952 inc/functions/options-advanced-admin.php:814
|
561 |
-
msgid "Meta description"
|
562 |
-
msgstr "ఉన్నత స్థాయి వివరణ"
|
563 |
-
|
564 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:134
|
565 |
-
#, fuzzy
|
566 |
-
#| msgid "Social Networks"
|
567 |
-
msgid "Social meta tags"
|
568 |
-
msgstr "సామాజిక నెట్వర్క్స్"
|
569 |
-
|
570 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:139
|
571 |
-
msgid "Meta robots"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/admin/admin-metaboxes-
|
575 |
-
msgid "
|
|
|
|
|
|
|
|
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/admin/admin-metaboxes-
|
579 |
#, fuzzy
|
580 |
-
#| msgid "
|
581 |
-
msgid "
|
582 |
-
msgstr "
|
583 |
|
584 |
-
#: inc/admin/admin-metaboxes-
|
585 |
-
|
586 |
-
|
587 |
-
msgid "Outbound Links"
|
588 |
-
msgstr "బ్రోకెన్ లింక్స్"
|
589 |
|
590 |
-
#: inc/admin/admin-metaboxes-
|
591 |
-
msgid "
|
592 |
-
msgstr ""
|
593 |
|
594 |
-
#: inc/admin/admin-metaboxes-
|
595 |
-
|
596 |
-
|
|
|
|
|
597 |
|
598 |
-
#: inc/admin/admin-metaboxes-
|
599 |
-
|
|
|
|
|
|
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/admin/admin-metaboxes-
|
603 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/admin/admin-metaboxes-
|
607 |
-
msgid "
|
|
|
|
|
|
|
|
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/admin/admin-metaboxes-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
611 |
msgid ""
|
612 |
-
"
|
613 |
-
"
|
|
|
|
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: inc/admin/admin-metaboxes-
|
|
|
|
|
617 |
msgid ""
|
618 |
-
"
|
619 |
-
"
|
620 |
-
"
|
621 |
-
msgstr ""
|
622 |
|
623 |
-
#: inc/admin/admin-metaboxes-
|
624 |
-
|
625 |
-
|
|
|
|
|
626 |
|
627 |
-
#: inc/admin/admin-metaboxes-
|
628 |
-
msgid "
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: inc/admin/admin-metaboxes-
|
632 |
-
msgid "
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: inc/admin/admin-metaboxes-
|
636 |
-
msgid "
|
|
|
|
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc/admin/admin-metaboxes-
|
640 |
-
|
641 |
-
|
|
|
|
|
642 |
|
643 |
-
#: inc/admin/admin-metaboxes-
|
644 |
-
|
645 |
-
msgid "%s was found %d times in your content, a keyword density of %s%%"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/admin/admin-metaboxes-
|
649 |
msgid ""
|
650 |
-
"
|
651 |
-
"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: inc/admin/admin-metaboxes-
|
|
|
|
|
655 |
msgid ""
|
656 |
-
"
|
657 |
-
"
|
|
|
|
|
|
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: inc/admin/admin-metaboxes-
|
661 |
-
msgid "
|
|
|
|
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: inc/admin/admin-metaboxes-
|
665 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: inc/admin/admin-metaboxes-
|
669 |
-
msgid "
|
|
|
|
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: inc/admin/admin-metaboxes-
|
673 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: inc/admin/admin-metaboxes-
|
677 |
-
|
678 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:326
|
679 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:349
|
680 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:383
|
681 |
-
#, php-format
|
682 |
-
msgid "%s was found %d times."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: inc/admin/admin-metaboxes-
|
686 |
-
#,
|
687 |
-
msgid "
|
688 |
-
|
|
|
689 |
|
690 |
-
#: inc/admin/admin-metaboxes-
|
691 |
-
msgid ""
|
692 |
-
"You should not use more than one H1 heading in your post content. The rule is simple: only one H1 for each "
|
693 |
-
"web page. It is better for both SEO and accessibility. Below, the list:"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: inc/admin/admin-metaboxes-
|
697 |
-
msgid "
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: inc/admin/admin-metaboxes-
|
701 |
-
msgid "
|
|
|
|
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: inc/admin/admin-metaboxes-
|
705 |
-
|
706 |
-
|
|
|
|
|
|
|
|
|
707 |
|
708 |
-
#: inc/admin/admin-metaboxes-
|
709 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: inc/admin/admin-metaboxes-
|
713 |
-
msgid "
|
714 |
-
msgstr ""
|
715 |
|
716 |
-
#: inc/admin/admin-metaboxes-
|
717 |
-
msgid "
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: inc/admin/admin-metaboxes-
|
721 |
-
msgid "
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: inc/admin/admin-metaboxes-
|
725 |
-
|
726 |
-
|
|
|
|
|
727 |
|
728 |
-
#: inc/admin/admin-metaboxes-
|
729 |
#, fuzzy
|
730 |
-
#| msgid "
|
731 |
-
msgid "
|
732 |
-
msgstr "
|
733 |
|
734 |
-
#: inc/admin/admin-metaboxes-
|
735 |
-
msgid "
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc/admin/admin-metaboxes-
|
739 |
-
|
740 |
-
|
741 |
-
"
|
742 |
-
msgstr ""
|
743 |
|
744 |
-
#: inc/admin/admin-metaboxes-
|
745 |
#, fuzzy
|
746 |
-
#| msgid "
|
747 |
-
msgid "
|
748 |
-
msgstr "
|
749 |
|
750 |
-
#: inc/admin/admin-metaboxes-
|
751 |
-
msgid "
|
|
|
|
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: inc/admin/admin-metaboxes-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
msgstr "మెటా వివరణ నిలువు వరుసను జోడించండి"
|
759 |
|
760 |
-
#: inc/admin/admin-metaboxes-
|
761 |
-
|
762 |
-
|
763 |
-
msgid "The length of your meta description is correct"
|
764 |
-
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
765 |
|
766 |
-
#: inc/admin/admin-metaboxes-
|
767 |
-
|
768 |
-
"
|
769 |
-
"
|
770 |
-
msgstr ""
|
771 |
|
772 |
-
#: inc/admin/admin-metaboxes-
|
773 |
-
|
774 |
-
|
775 |
-
msgid "Open Graph Title"
|
776 |
-
msgstr "ఓపెన్ గ్రాఫ్ డేటాను ప్రారంభించండి"
|
777 |
|
778 |
-
#: inc/admin/admin-metaboxes-
|
779 |
-
|
780 |
-
msgid "
|
781 |
-
msgstr ""
|
782 |
|
783 |
-
#: inc/admin/admin-metaboxes-
|
784 |
-
|
785 |
-
"
|
786 |
-
"
|
787 |
-
msgstr ""
|
788 |
|
789 |
-
#: inc/admin/admin-metaboxes-
|
790 |
-
msgid "
|
|
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: inc/admin/admin-metaboxes-
|
794 |
-
|
795 |
-
|
|
|
|
|
796 |
|
797 |
-
#: inc/admin/admin-metaboxes-
|
|
|
|
|
798 |
#, fuzzy
|
799 |
-
#| msgid "
|
800 |
-
msgid "
|
801 |
-
msgstr "
|
802 |
|
803 |
-
#: inc/admin/admin-metaboxes-
|
804 |
-
|
805 |
-
|
|
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: inc/admin/admin-metaboxes-
|
809 |
msgid ""
|
810 |
-
"
|
811 |
-
"social
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: inc/admin/admin-metaboxes-
|
815 |
-
msgid "
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: inc/admin/admin-metaboxes-
|
819 |
-
msgid "
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: inc/admin/admin-metaboxes-
|
823 |
-
|
824 |
-
#| msgid "Enable Open Graph Data"
|
825 |
-
msgid "Open Graph Image"
|
826 |
-
msgstr "ఓపెన్ గ్రాఫ్ డేటాను ప్రారంభించండి"
|
827 |
-
|
828 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:475
|
829 |
-
#, php-format
|
830 |
-
msgid "We found %d og:image in your content."
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: inc/admin/admin-metaboxes-
|
834 |
-
|
835 |
-
|
|
|
|
|
836 |
|
837 |
-
#: inc/admin/admin-metaboxes-
|
838 |
#, fuzzy
|
839 |
-
#| msgid "
|
840 |
-
msgid "
|
841 |
-
msgstr "
|
842 |
|
843 |
-
#: inc/admin/admin-metaboxes-
|
844 |
-
|
845 |
-
msgid "We found %d og:url in your content."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: inc/admin/admin-metaboxes-
|
849 |
-
msgid ""
|
850 |
-
"You should not use more than one og:url in your post content to avoid conflicts when sharing on social "
|
851 |
-
"networks. Facebook will take the last og:url tag from your source code. Below, the list:"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: inc/admin/admin-metaboxes-
|
855 |
-
msgid "
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: inc/admin/admin-metaboxes-
|
859 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: inc/admin/admin-metaboxes-
|
|
|
|
|
863 |
#, fuzzy
|
864 |
-
#| msgid "
|
865 |
-
msgid "
|
866 |
-
msgstr "
|
867 |
|
868 |
-
#: inc/admin/admin-metaboxes-
|
869 |
-
|
870 |
-
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: inc/admin/admin-metaboxes-
|
874 |
msgid ""
|
875 |
-
"
|
876 |
-
"social
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: inc/admin/admin-metaboxes-
|
880 |
-
msgid "
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: inc/admin/admin-metaboxes-
|
884 |
-
msgid "
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: inc/admin/admin-metaboxes-
|
888 |
-
|
889 |
-
msgid "Twitter Title"
|
890 |
-
msgstr "ట్విట్టర్ శీర్షిక"
|
891 |
-
|
892 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:559
|
893 |
-
#, php-format
|
894 |
-
msgid "We found %d twitter:title in your content."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: inc/admin/admin-metaboxes-
|
898 |
-
|
899 |
-
"
|
900 |
-
"
|
901 |
-
msgstr ""
|
902 |
|
903 |
-
#: inc/admin/admin-metaboxes-
|
904 |
-
|
905 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
906 |
|
907 |
-
#: inc/admin/admin-metaboxes-
|
|
|
908 |
#, fuzzy
|
909 |
-
#| msgid "
|
910 |
-
msgid "
|
911 |
-
msgstr "
|
912 |
|
913 |
-
#: inc/admin/admin-metaboxes-
|
|
|
914 |
#, fuzzy
|
915 |
-
#| msgid "
|
916 |
-
msgid "
|
917 |
-
msgstr "
|
918 |
|
919 |
-
#: inc/admin/admin-metaboxes-
|
920 |
-
|
921 |
-
msgid "
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: inc/admin/admin-metaboxes-
|
925 |
-
|
926 |
-
"
|
927 |
-
"on social networks. Twitter will take the last twitter:description tag from your source code. Below, the "
|
928 |
-
"list:"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: inc/admin/admin-metaboxes-
|
932 |
-
|
|
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: inc/admin/admin-metaboxes-
|
936 |
-
|
937 |
-
|
938 |
-
msgid "Your Twitter Description is missing!"
|
939 |
-
msgstr "మీ Twitter వివరణను నమోదు చేయండి"
|
940 |
|
941 |
-
#: inc/admin/admin-metaboxes-
|
942 |
-
|
943 |
-
#| msgid "Default Twitter Image"
|
944 |
-
msgid "Twitter Image"
|
945 |
-
msgstr "డిఫాల్ట్ ట్విట్టర్ చిత్రం"
|
946 |
-
|
947 |
-
#: inc/admin/admin-metaboxes-content-analysis-form.php:616
|
948 |
-
#, php-format
|
949 |
-
msgid "We found %d twitter:image in your content."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: inc/admin/admin-metaboxes-
|
953 |
-
msgid "
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: inc/admin/admin-metaboxes-
|
957 |
-
|
958 |
-
msgid "We found %s meta robots in your page. There is probably something wrong with your theme!"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: inc/admin/admin-metaboxes-
|
962 |
-
|
963 |
-
|
|
|
964 |
|
965 |
-
#: inc/admin/admin-metaboxes-
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: inc/admin/admin-metaboxes-
|
970 |
-
msgid "
|
971 |
-
msgstr ""
|
972 |
|
973 |
-
#: inc/admin/admin-metaboxes-
|
974 |
-
|
975 |
-
|
|
|
|
|
976 |
|
977 |
-
#: inc/admin/admin-metaboxes-
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: inc/admin/admin-metaboxes-
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: inc/admin/admin-metaboxes-
|
986 |
-
msgid "
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: inc/admin/admin-metaboxes-
|
990 |
-
|
991 |
-
|
|
|
|
|
992 |
|
993 |
-
#: inc/admin/admin-metaboxes-
|
994 |
-
msgid ""
|
995 |
-
"We found no meta robots on this page. It means, your page is index,follow. Search engines will index it, "
|
996 |
-
"and follow links. "
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: inc/admin/admin-metaboxes-
|
1000 |
msgid ""
|
1001 |
-
"
|
1002 |
-
"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: inc/admin/admin-metaboxes-
|
1006 |
-
|
1007 |
-
msgid "noimageindex is off. Google will index the images on this page."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: inc/admin/admin-metaboxes-
|
1011 |
-
|
1012 |
-
|
|
|
|
|
1013 |
|
1014 |
-
#: inc/admin/admin-metaboxes-
|
1015 |
-
|
1016 |
-
msgid "
|
1017 |
-
|
|
|
1018 |
|
1019 |
-
#: inc/admin/admin-metaboxes-
|
1020 |
-
msgid ""
|
1021 |
-
"No alternative text found for these images. Alt tags are important for both SEO and accessibility. Edit "
|
1022 |
-
"your images using the media library or your favorite page builder and fill in alternative text fields."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: inc/admin/admin-metaboxes-
|
1026 |
-
msgid "
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: inc/admin/admin-metaboxes-
|
1030 |
-
|
1031 |
-
|
|
|
|
|
1032 |
|
1033 |
-
#: inc/admin/admin-metaboxes-
|
1034 |
-
#,
|
|
|
|
|
|
|
|
|
|
|
1035 |
msgid ""
|
1036 |
-
"
|
1037 |
-
"the list:"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: inc/admin/admin-metaboxes-
|
1041 |
-
msgid "
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: inc/admin/admin-metaboxes-
|
1045 |
-
|
1046 |
-
|
1047 |
-
"
|
1048 |
-
|
1049 |
-
msgstr ""
|
1050 |
|
1051 |
-
#: inc/admin/admin-metaboxes-
|
1052 |
-
#,
|
1053 |
-
msgid "
|
1054 |
-
|
|
|
1055 |
|
1056 |
-
#: inc/admin/admin-metaboxes-
|
1057 |
-
msgid "
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: inc/admin/admin-metaboxes-
|
1061 |
-
msgid ""
|
1062 |
-
"<strong>Should be improved:</strong> red or orange dots <br> <strong>Good:</strong> yellow or green dots"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: inc/admin/admin-metaboxes-
|
1066 |
-
msgid "
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: inc/admin/admin-metaboxes-
|
1070 |
-
msgid "
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: inc/admin/admin-metaboxes-
|
1074 |
-
msgid "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: inc/admin/admin-metaboxes-
|
1078 |
-
msgid "
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1082 |
-
|
1083 |
-
|
1084 |
-
msgstr "SEO"
|
1085 |
|
1086 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1087 |
-
msgid "
|
1088 |
-
msgstr "
|
1089 |
|
1090 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1091 |
-
msgid "
|
1092 |
-
msgstr "
|
1093 |
|
1094 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1095 |
-
msgid "
|
1096 |
-
msgstr "
|
1097 |
|
1098 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1099 |
-
|
1100 |
-
|
|
|
|
|
1101 |
|
1102 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1103 |
#, fuzzy
|
1104 |
-
#| msgid "
|
1105 |
-
msgid "
|
1106 |
-
msgstr "మీ
|
1107 |
|
1108 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1109 |
-
msgid ""
|
1110 |
-
"This is your <strong>Shop page</strong>. Go to <strong>SEO > Titles & Metas > Archives > Products</strong> "
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1114 |
#, fuzzy
|
1115 |
-
#| msgid "
|
1116 |
-
msgid "
|
1117 |
-
msgstr "
|
1118 |
|
1119 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1120 |
-
|
1121 |
-
|
|
|
|
|
1122 |
|
1123 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1124 |
msgid ""
|
1125 |
-
"
|
1126 |
-
"
|
1127 |
-
"important to use high-quality titles on your web pages."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1131 |
-
msgid "
|
1132 |
-
msgstr "మీ శీర్షికను నమోదు చేయండి"
|
1133 |
-
|
1134 |
-
#: inc/admin/admin-metaboxes-form.php:115
|
1135 |
-
msgid " / 568 pixels - "
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1139 |
-
|
1140 |
-
#| msgid "(maximum recommended limit)"
|
1141 |
-
msgid " (maximum recommended limit)"
|
1142 |
-
msgstr "(గరిష్ట సిఫార్సు పరిమితి)"
|
1143 |
-
|
1144 |
-
#: inc/admin/admin-metaboxes-form.php:121 inc/admin/admin.php:3045 inc/admin/admin.php:4080
|
1145 |
-
msgid "Post Title"
|
1146 |
-
msgstr "పోస్ట్ శీర్షిక - Post Title"
|
1147 |
-
|
1148 |
-
#: inc/admin/admin-metaboxes-form.php:123 inc/admin/admin.php:204 inc/admin/admin.php:2943
|
1149 |
-
#: inc/admin/admin.php:3049 inc/admin/admin.php:3239 inc/admin/admin.php:3362 inc/admin/admin.php:3440
|
1150 |
-
#: inc/admin/admin.php:3511 inc/admin/admin.php:3581 inc/admin/admin.php:3631
|
1151 |
-
msgid "Site Title"
|
1152 |
-
msgstr "సైట్ శీర్షిక"
|
1153 |
-
|
1154 |
-
#: inc/admin/admin-metaboxes-form.php:125 inc/admin/admin-wizard.php:458 inc/admin/admin.php:1174
|
1155 |
-
#: inc/admin/admin.php:2930 inc/admin/admin.php:2944 inc/admin/admin.php:3047 inc/admin/admin.php:3237
|
1156 |
-
#: inc/admin/admin.php:3360 inc/admin/admin.php:3439 inc/admin/admin.php:3510 inc/admin/admin.php:3580
|
1157 |
-
#: inc/admin/admin.php:3632
|
1158 |
-
msgid "Separator"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1162 |
-
msgid ""
|
1163 |
-
"A meta description tag should generally inform and interest users with a short, relevant summary of what a "
|
1164 |
-
"particular page is about. <br>They are like a pitch that convince the user that the page is exactly what "
|
1165 |
-
"they're looking for. <br>There's no limit on how long a meta description can be, but the search result "
|
1166 |
-
"snippets are truncated as needed, typically to fit the device width."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: inc/admin/admin-metaboxes-form.php:
|
1170 |
-
msgid "
|
1171 |
-
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
1172 |
-
|
1173 |
-
#: inc/admin/admin-metaboxes-form.php:140
|
1174 |
-
msgid " / 940 pixels - "
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: inc/admin/admin-metaboxes-
|
1178 |
#, fuzzy
|
1179 |
-
#| msgid "
|
1180 |
-
msgid "
|
1181 |
-
msgstr "
|
1182 |
|
1183 |
-
#: inc/admin/admin-metaboxes-
|
1184 |
#, fuzzy
|
1185 |
-
#| msgid "
|
1186 |
-
msgid "
|
1187 |
-
msgstr "
|
1188 |
-
|
1189 |
-
#: inc/admin/admin-metaboxes-form.php:161
|
1190 |
-
msgid "Google Snippet Preview"
|
1191 |
-
msgstr "Google స్నిప్పెట్ పరిదృశ్యం"
|
1192 |
|
1193 |
-
#: inc/admin/admin-metaboxes-
|
1194 |
-
|
1195 |
-
|
1196 |
-
msgid "Snippet Preview"
|
1197 |
-
msgstr "Google స్నిప్పెట్ పరిదృశ్యం"
|
1198 |
|
1199 |
-
#: inc/admin/admin-metaboxes-
|
1200 |
-
msgid ""
|
1201 |
-
"The Google preview is a simulation. <br>There is no reliable preview because it depends on the screen "
|
1202 |
-
"resolution, the device used, the expression sought, and Google. <br>There is not one snippet for one URL "
|
1203 |
-
"but several. <br>All the data in this overview comes directly from your source code. <br>This is what the "
|
1204 |
-
"crawlers will see."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: inc/admin/admin-metaboxes-
|
1208 |
#, fuzzy
|
1209 |
-
#| msgid "
|
1210 |
-
msgid ""
|
1211 |
-
"
|
1212 |
-
"Google Snippet Preview."
|
1213 |
-
msgstr "Google శోధన ఫలితాల్లో మీ పేజీ ఇలా కనిపిస్తుంది"
|
1214 |
|
1215 |
-
#: inc/admin/admin-metaboxes-
|
1216 |
#, fuzzy
|
1217 |
-
#| msgid "
|
1218 |
-
msgid "
|
1219 |
-
msgstr "
|
1220 |
-
|
1221 |
-
#: inc/admin/admin-metaboxes-form.php:216
|
1222 |
-
msgid "Do not display this page in search engine results / XML - HTML sitemaps <strong>(noindex)</strong>"
|
1223 |
-
msgstr ""
|
1224 |
-
|
1225 |
-
#: inc/admin/admin-metaboxes-form.php:217
|
1226 |
-
msgid "\"noindex\" robots meta tag"
|
1227 |
-
msgstr ""
|
1228 |
-
|
1229 |
-
#: inc/admin/admin-metaboxes-form.php:217
|
1230 |
-
msgid ""
|
1231 |
-
"By checking this option, you will add a meta robots tag with the value \"noindex\". <br>Search engines will "
|
1232 |
-
"not index this URL in the search results."
|
1233 |
-
msgstr ""
|
1234 |
|
1235 |
-
#: inc/admin/admin-metaboxes-
|
1236 |
#, fuzzy
|
1237 |
-
#| msgid "
|
1238 |
-
msgid "
|
1239 |
-
msgstr "
|
1240 |
|
1241 |
-
#: inc/admin/admin-metaboxes-
|
1242 |
-
msgid "
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: inc/admin/admin-metaboxes-
|
1246 |
-
msgid ""
|
1247 |
-
"By checking this option, you will add a meta robots tag with the value \"nofollow\". <br>Search engines "
|
1248 |
-
"will not follow links from this URL."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: inc/admin/admin-metaboxes-
|
1252 |
#, fuzzy
|
1253 |
-
#| msgid "
|
1254 |
-
msgid ""
|
1255 |
-
|
1256 |
-
msgstr "అన్ని పేజీలకు శీర్షికలు లేదా సారాంశాలు కోసం ఓపెన్ డైరెక్టరీ ప్రాజెక్ట్ meta సమాచారం ఉపయోగించవద్దు."
|
1257 |
-
|
1258 |
-
#: inc/admin/admin-metaboxes-form.php:231
|
1259 |
-
msgid "\"noodp\" robots meta tag"
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
-
#: inc/admin/admin-metaboxes-form.php:231
|
1263 |
-
msgid ""
|
1264 |
-
"By checking this option, you will add a meta robots tag with the value \"noodp\". <br>Note that Google and "
|
1265 |
-
"Yahoo have stopped considering this tag since the closing of DMOZ directory."
|
1266 |
-
msgstr ""
|
1267 |
|
1268 |
-
#: inc/admin/admin-metaboxes-
|
1269 |
#, fuzzy
|
1270 |
-
#| msgid "
|
1271 |
-
msgid "
|
1272 |
-
msgstr "
|
1273 |
-
|
1274 |
-
#: inc/admin/admin-metaboxes-form.php:238
|
1275 |
-
msgid "\"noimageindex\" robots meta tag"
|
1276 |
-
msgstr ""
|
1277 |
|
1278 |
-
#: inc/admin/admin-metaboxes-
|
1279 |
-
msgid ""
|
1280 |
-
"By checking this option, you will add a meta robots tag with the value \"noimageindex\". <br> Note that "
|
1281 |
-
"your images can always be indexed if they are linked from other pages."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: inc/admin/admin-metaboxes-
|
1285 |
-
|
1286 |
-
#| msgid "Do not display a \"Cached\" link in the Google search results."
|
1287 |
-
msgid "Do not display a \"Cached\" link in the Google search results <strong>(noarchive)</strong>"
|
1288 |
-
msgstr "Google శోధన ఫలితాల్లో \"Cached\" లింక్ను ప్రదర్శించవద్దు."
|
1289 |
-
|
1290 |
-
#: inc/admin/admin-metaboxes-form.php:245
|
1291 |
-
msgid "\"noarchive\" robots meta tag"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: inc/admin/admin-metaboxes-
|
1295 |
-
msgid "
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: inc/admin/admin-metaboxes-
|
1299 |
-
|
1300 |
-
#| msgid "Do not display a description in the Google search results for all pages."
|
1301 |
-
msgid "Do not display a description in search results for this page <strong>(nosnippet)</strong>"
|
1302 |
-
msgstr "Google శోధన ఫలితాల్లో అన్ని పేజీల యొక్క వివరణని ప్రదర్శించవద్దు."
|
1303 |
-
|
1304 |
-
#: inc/admin/admin-metaboxes-form.php:252
|
1305 |
-
msgid "\"nosnippet\" robots meta tag"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: inc/admin/admin-metaboxes-
|
1309 |
-
msgid "
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: inc/admin/admin-metaboxes-
|
1313 |
msgid ""
|
1314 |
-
"
|
1315 |
-
"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: inc/admin/admin-metaboxes-
|
1319 |
-
#: inc/admin/admin-metaboxes-form.php:264 inc/admin/admin-wizard.php:298 inc/admin/admin-wizard.php:334
|
1320 |
-
#: inc/admin/admin-wizard.php:353 inc/admin/admin-wizard.php:372 inc/admin/admin.php:777
|
1321 |
-
#: inc/admin/admin.php:817 inc/admin/admin.php:838 inc/admin/admin.php:859
|
1322 |
-
msgid "Canonical URL"
|
1323 |
-
msgstr "Canonical URL"
|
1324 |
-
|
1325 |
-
#: inc/admin/admin-metaboxes-form.php:261
|
1326 |
msgid ""
|
1327 |
-
"
|
1328 |
-
"
|
1329 |
-
"
|
1330 |
-
"need to be absolutely identical; minor changes in sorting or filtering of list pages do not make the page "
|
1331 |
-
"unique (for example, sorting by price or filtering by item color).\n"
|
1332 |
-
" The canonical can be in a different domain than a duplicate."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: inc/admin/admin-metaboxes-
|
1336 |
-
msgid "
|
1337 |
-
msgstr "డిఫాల్ట్ విలువ :"
|
1338 |
-
|
1339 |
-
#: inc/admin/admin-metaboxes-form.php:271
|
1340 |
-
msgid "Select a primary category"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: inc/admin/admin-metaboxes-
|
1344 |
-
msgid "
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: inc/admin/admin-metaboxes-
|
1348 |
-
|
1349 |
-
|
1350 |
-
msgid "None (will disable this feature)"
|
1351 |
-
msgstr "ఈ లక్షణాన్ని నిలిపివేయడానికి క్లిక్ చేయండి"
|
1352 |
|
1353 |
-
#: inc/admin/admin-metaboxes-
|
1354 |
-
|
1355 |
-
|
1356 |
-
msgid "Custom breadcrumbs"
|
1357 |
-
msgstr "Breadcrumbs"
|
1358 |
|
1359 |
-
#: inc/admin/admin-metaboxes-
|
1360 |
-
msgid "
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: inc/admin/admin-metaboxes-
|
1364 |
-
#,
|
1365 |
-
|
1366 |
-
|
1367 |
-
msgstr "Breadcrumbs"
|
1368 |
|
1369 |
-
#: inc/admin/admin-metaboxes-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
msgstr "
|
1374 |
|
1375 |
-
#: inc/admin/admin-metaboxes-
|
1376 |
msgid ""
|
1377 |
-
"
|
1378 |
-
"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: inc/admin/admin-metaboxes-
|
1382 |
-
msgid "
|
1383 |
-
msgstr "
|
1384 |
|
1385 |
-
#: inc/admin/admin-metaboxes-
|
1386 |
-
msgid "
|
1387 |
-
msgstr "
|
1388 |
|
1389 |
-
#: inc/admin/admin-metaboxes-
|
1390 |
-
msgid "
|
1391 |
-
msgstr "
|
1392 |
|
1393 |
-
#: inc/admin/admin-metaboxes-
|
1394 |
-
msgid "
|
1395 |
-
msgstr "
|
1396 |
|
1397 |
-
#: inc/admin/admin-metaboxes-
|
1398 |
-
msgid "
|
1399 |
-
msgstr "
|
1400 |
|
1401 |
-
#: inc/admin/admin-metaboxes-
|
1402 |
-
#: inc/admin/admin.php:
|
1403 |
-
|
1404 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1405 |
|
1406 |
-
#: inc/admin/admin-metaboxes-
|
1407 |
msgid ""
|
1408 |
-
"
|
|
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: inc/admin/admin-metaboxes-
|
1412 |
-
|
1413 |
-
|
1414 |
-
msgid "Upload an Image"
|
1415 |
-
msgstr "ఒక చిత్రాన్ని అప్లోడ్ చేయండి"
|
1416 |
|
1417 |
-
#: inc/admin/admin-metaboxes-
|
1418 |
-
|
1419 |
-
|
1420 |
-
msgid "Facebook Preview"
|
1421 |
-
msgstr "Facebook టైటిల్"
|
1422 |
|
1423 |
-
#: inc/admin/admin-metaboxes-
|
1424 |
-
msgid ""
|
1425 |
-
"This is what your post will look like in Facebook. You have to publish your post to get the Facebook "
|
1426 |
-
"Preview."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: inc/admin/admin-metaboxes-
|
1430 |
-
msgid ""
|
1431 |
-
"The Social Networks feature is disabled. Still seing informations from the FB Preview? You probably have "
|
1432 |
-
"social tags added by your theme or a plugin."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: inc/admin/admin-metaboxes-
|
1436 |
-
msgid "
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: inc/admin/admin-metaboxes-
|
1440 |
-
msgid "
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: inc/admin/admin-metaboxes-
|
1444 |
-
msgid "
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: inc/admin/admin-metaboxes-
|
1448 |
-
|
1449 |
-
|
1450 |
-
msgid "Your image ratio is: "
|
1451 |
-
msgstr "మీ డొమైన్ గడువు ముగిసింది :"
|
1452 |
|
1453 |
-
#: inc/admin/admin-metaboxes-
|
1454 |
#, fuzzy
|
1455 |
-
#| msgid "
|
1456 |
-
msgid "
|
1457 |
-
msgstr "
|
1458 |
|
1459 |
-
#: inc/admin/admin-metaboxes-
|
1460 |
-
msgid "
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: inc/admin/admin-metaboxes-
|
1464 |
-
msgid "
|
|
|
|
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: inc/admin/admin-metaboxes-
|
1468 |
-
|
1469 |
-
|
|
|
|
|
1470 |
|
1471 |
-
#: inc/admin/admin-metaboxes-
|
1472 |
-
msgid "
|
1473 |
-
msgstr "
|
1474 |
|
1475 |
-
#: inc/admin/admin-metaboxes-
|
1476 |
-
|
1477 |
-
|
|
|
|
|
1478 |
|
1479 |
-
#: inc/admin/admin-metaboxes-
|
1480 |
-
|
1481 |
-
|
|
|
|
|
1482 |
|
1483 |
-
#: inc/admin/admin-metaboxes-
|
1484 |
msgid ""
|
1485 |
-
"
|
|
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: inc/admin/admin-metaboxes-
|
1489 |
#, fuzzy
|
1490 |
-
#| msgid "
|
1491 |
-
msgid "
|
1492 |
-
msgstr "
|
1493 |
|
1494 |
-
#: inc/admin/admin-metaboxes-
|
1495 |
-
|
1496 |
-
"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: inc/admin/admin-metaboxes-
|
1500 |
-
msgid "
|
|
|
|
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: inc/admin/admin-metaboxes-
|
1504 |
-
msgid "
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: inc/admin/admin-metaboxes-
|
1508 |
-
msgid "
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: inc/admin/admin-metaboxes-
|
1512 |
-
|
1513 |
-
|
|
|
|
|
1514 |
|
1515 |
-
#: inc/admin/admin-metaboxes-
|
1516 |
-
|
1517 |
-
|
|
|
1518 |
|
1519 |
-
#: inc/admin/admin-metaboxes-
|
1520 |
-
msgid "
|
1521 |
-
|
|
|
|
|
1522 |
|
1523 |
-
#: inc/admin/admin-metaboxes-
|
1524 |
-
|
1525 |
-
|
1526 |
-
msgid "302 Found / Moved Temporarily"
|
1527 |
-
msgstr "302 కనుగొనబడింది (HTTP 1.1) / తాత్కాలికంగా తరలించబడింది (HTTP 1.0)"
|
1528 |
|
1529 |
-
#: inc/admin/admin-metaboxes-
|
|
|
|
|
|
|
|
|
1530 |
#, fuzzy
|
1531 |
-
#| msgid "
|
1532 |
-
msgid "
|
1533 |
-
msgstr "
|
1534 |
|
1535 |
-
#: inc/admin/admin-metaboxes-
|
1536 |
-
|
|
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: inc/admin/admin-metaboxes-
|
1540 |
-
msgid "
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: inc/admin/admin-metaboxes-
|
1544 |
-
|
1545 |
-
|
|
|
|
|
1546 |
|
1547 |
-
#: inc/admin/admin-metaboxes-
|
1548 |
-
|
|
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: inc/admin/admin-metaboxes-
|
1552 |
-
msgid "
|
|
|
|
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: inc/admin/admin-metaboxes-
|
1556 |
-
msgid "
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: inc/admin/admin-metaboxes-
|
1560 |
-
msgid "
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: inc/admin/admin-metaboxes-
|
1564 |
-
|
1565 |
-
msgid "
|
1566 |
-
|
|
|
1567 |
|
1568 |
-
#: inc/admin/admin-metaboxes-
|
1569 |
-
|
|
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: inc/admin/admin-metaboxes-
|
1573 |
-
msgid "
|
1574 |
-
|
|
|
|
|
1575 |
|
1576 |
-
#: inc/admin/admin-metaboxes-
|
1577 |
-
|
1578 |
-
|
1579 |
-
msgid "Exclude this post from Video Sitemap?"
|
1580 |
-
msgstr "Google వార్తల సైట్మాప్ నుండి ఈ పోస్ట్ను మినహాయించాలా?"
|
1581 |
|
1582 |
-
#: inc/admin/admin-metaboxes-
|
1583 |
-
msgid "
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: inc/admin/admin-metaboxes-
|
1587 |
-
|
|
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: inc/admin/admin-metaboxes-
|
1591 |
-
msgid "
|
|
|
|
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: inc/admin/admin-metaboxes-
|
|
|
|
|
|
|
|
|
1595 |
#, fuzzy
|
1596 |
-
#| msgid "
|
1597 |
-
msgid "
|
1598 |
-
msgstr "మీ
|
1599 |
|
1600 |
-
#: inc/admin/admin-metaboxes-
|
1601 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: inc/admin/admin-metaboxes-
|
1605 |
msgid ""
|
1606 |
-
"
|
1607 |
-
"on
|
|
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: inc/admin/admin-metaboxes-
|
1611 |
-
msgid "
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: inc/admin/admin-metaboxes-
|
1615 |
#, fuzzy
|
1616 |
-
#| msgid "Enter your
|
1617 |
-
msgid "
|
1618 |
-
msgstr "మీ
|
1619 |
|
1620 |
-
#: inc/admin/admin-metaboxes-
|
1621 |
#, fuzzy
|
1622 |
-
#| msgid "
|
1623 |
-
msgid "
|
1624 |
-
msgstr "
|
1625 |
|
1626 |
-
#: inc/admin/admin-metaboxes-
|
1627 |
-
|
|
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: inc/admin/admin-metaboxes-
|
1631 |
-
msgid "
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: inc/admin/admin-metaboxes-
|
1635 |
-
#,
|
1636 |
-
|
1637 |
-
|
1638 |
-
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
1639 |
|
1640 |
-
#: inc/admin/admin-metaboxes-
|
1641 |
-
|
1642 |
-
|
1643 |
-
msgid "Video description"
|
1644 |
-
msgstr "ఉన్నత స్థాయి వివరణ"
|
1645 |
|
1646 |
-
#: inc/admin/admin-metaboxes-
|
1647 |
-
msgid ""
|
1648 |
-
"2048 characters max.; default: meta description. If not available, use the beginning of the post content."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: inc/admin/admin-metaboxes-
|
1652 |
-
msgid "
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: inc/admin/admin-metaboxes-
|
1656 |
-
|
1657 |
-
|
1658 |
-
msgid "Select your video thumbnail"
|
1659 |
-
msgstr "మీ డిఫాల్ట్ సూక్ష్మచిత్రం ఎంచుకోండి"
|
1660 |
|
1661 |
-
#: inc/admin/admin-metaboxes-
|
1662 |
-
|
1663 |
-
|
1664 |
-
msgid "Video Thumbnail"
|
1665 |
-
msgstr "ట్విట్టర్ సూక్ష్మచిత్రం"
|
1666 |
|
1667 |
-
#: inc/admin/admin-metaboxes-
|
1668 |
-
msgid "
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: inc/admin/admin-metaboxes-
|
1672 |
-
msgid "
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: inc/admin/admin-metaboxes-
|
1676 |
-
msgid "
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: inc/admin/admin-metaboxes-
|
1680 |
-
msgid "
|
|
|
|
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: inc/admin/admin-metaboxes-
|
1684 |
-
msgid "
|
|
|
|
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: inc/admin/admin-metaboxes-
|
1688 |
-
|
|
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: inc/admin/admin-metaboxes-
|
1692 |
-
msgid "
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: inc/admin/admin-metaboxes-
|
1696 |
-
|
|
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: inc/admin/admin-metaboxes-
|
1700 |
-
msgid "
|
|
|
|
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: inc/admin/admin-metaboxes-
|
1704 |
-
msgid "
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: inc/admin/admin-metaboxes-
|
1708 |
-
|
1709 |
-
|
1710 |
-
msgid "Video tags"
|
1711 |
-
msgstr "శీర్షిక ట్యాగ్లు"
|
1712 |
|
1713 |
-
#: inc/admin/admin-metaboxes-
|
1714 |
-
#,
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
|
|
1718 |
|
1719 |
-
#: inc/admin/admin-metaboxes-
|
1720 |
-
msgid "
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: inc/admin/admin-metaboxes-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
|
|
1728 |
|
1729 |
-
#: inc/admin/admin-metaboxes-
|
1730 |
-
#,
|
1731 |
-
|
1732 |
-
|
1733 |
-
msgstr "మీ డొమైన్లను నమోదు చేయండి"
|
1734 |
|
1735 |
-
#: inc/admin/admin-metaboxes-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1736 |
msgid ""
|
1737 |
-
"
|
1738 |
-
"Default: first post category if available."
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: inc/admin/admin-metaboxes-
|
1742 |
-
msgid "
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: inc/admin/admin-metaboxes-
|
1746 |
-
msgid "
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: inc/admin/admin-metaboxes-
|
1750 |
-
msgid "
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: inc/admin/admin-metaboxes-
|
1754 |
-
msgid "
|
1755 |
msgstr ""
|
1756 |
|
1757 |
#: inc/admin/admin-metaboxes.php:201 inc/admin/admin-metaboxes.php:442 inc/admin/admin-term-metaboxes.php:203
|
1758 |
msgid "Analysis in progress..."
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: inc/admin/admin-metaboxes.php:428
|
1762 |
-
msgid "Content analysis"
|
1763 |
-
msgstr ""
|
1764 |
-
|
1765 |
#: inc/admin/admin-notifications-center.php:49 inc/admin/admin-notifications-center.php:55
|
1766 |
msgid "Notifications Center"
|
1767 |
msgstr "నోటిఫికేషన్ సెంటర్"
|
@@ -1782,467 +1836,518 @@ msgstr ""
|
|
1782 |
msgid "The best way to quickly setup SEOPress on your site."
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: inc/admin/admin-notifications-center.php:100
|
1786 |
msgid "Wizard"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: inc/admin/admin-notifications-center.php:104
|
1790 |
msgid "Start the wizard"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
#: inc/admin/admin-notifications-center.php:126
|
1794 |
-
msgid "
|
1795 |
msgstr ""
|
1796 |
|
1797 |
#: inc/admin/admin-notifications-center.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1798 |
msgid ""
|
1799 |
"This error indicates that your theme uses a deprecated function to generate the title tag of your pages. "
|
1800 |
"SEOPress will not be able to generate your custom title tags if this error is not fixed."
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: inc/admin/admin-notifications-center.php:
|
1804 |
-
#: inc/admin/admin-notifications-center.php:
|
1805 |
-
#: inc/admin/admin-notifications-center.php:
|
1806 |
-
#: inc/admin/admin-notifications-center.php:
|
1807 |
-
#: inc/admin/admin-notifications-center.php:
|
|
|
1808 |
msgid "High impact"
|
1809 |
msgstr "అధిక ప్రభావం"
|
1810 |
|
1811 |
-
#: inc/admin/admin-notifications-center.php:
|
1812 |
-
#: inc/admin/admin-notifications-center.php:
|
1813 |
-
#: inc/admin/admin.php:
|
|
|
1814 |
msgid "Learn more"
|
1815 |
msgstr "ఇంకా నేర్చుకోండి"
|
1816 |
|
1817 |
-
#: inc/admin/admin-notifications-center.php:
|
1818 |
#, php-format
|
1819 |
msgid "We noticed that you use <strong>%s</strong> plugin."
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: inc/admin/admin-notifications-center.php:
|
1823 |
msgid ""
|
1824 |
"Do you want to migrate all your metadata to SEOPress? Do not use multiple SEO plugins at once to avoid "
|
1825 |
"conflicts!"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: inc/admin/admin-notifications-center.php:
|
1829 |
msgid "Migrate!"
|
1830 |
msgstr "ప్రవాసానికి పోవు - (Migrate!)"
|
1831 |
|
1832 |
-
#: inc/admin/admin-notifications-center.php:
|
1833 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: inc/admin/admin-notifications-center.php:
|
1837 |
msgid "To solve this, please disable and re-enable SEOPress PRO. No data will be lost."
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: inc/admin/admin-notifications-center.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1841 |
msgid "Your site doesn't use an SSL certificate!"
|
1842 |
msgstr "మీ సైట్ SSL ప్రమాణపత్రాన్ని ఉపయోగించుటలేదు!"
|
1843 |
|
1844 |
-
#: inc/admin/admin-notifications-center.php:
|
1845 |
msgid ""
|
1846 |
"Https is considered by Google as a positive signal for the ranking of your site. It also reassures your "
|
1847 |
"visitors for data security, and improves trust."
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: inc/admin/admin-notifications-center.php:
|
1851 |
msgid "Low impact"
|
1852 |
msgstr "తక్కువ ప్రభావం"
|
1853 |
|
1854 |
-
#: inc/admin/admin-notifications-center.php:
|
1855 |
msgid "Buy an SSL!"
|
1856 |
msgstr "ఒక SSL కొనండి!"
|
1857 |
|
1858 |
-
#: inc/admin/admin-notifications-center.php:
|
1859 |
msgid "PHP module \"DOM\" is missing on your server."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: inc/admin/admin-notifications-center.php:
|
1863 |
msgid ""
|
1864 |
"This PHP module, installed by default with PHP, is required by many plugins including SEOPress. Please "
|
1865 |
"contact your host as soon as possible to solve this."
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: inc/admin/admin-notifications-center.php:
|
1869 |
msgid "Your site is not visible to Search Engines!"
|
1870 |
msgstr "శోధన ఇంజిన్లకు మీ సైట్ కనిపించదు!"
|
1871 |
|
1872 |
-
#: inc/admin/admin-notifications-center.php:
|
1873 |
msgid ""
|
1874 |
"You have activated the blocking of the indexing of your site. If your site is under development, this is "
|
1875 |
"probably normal. Otherwise, check your settings. Delete this notification using the cross on the right if "
|
1876 |
"you are not concerned."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: inc/admin/admin-notifications-center.php:
|
1880 |
-
#: inc/admin/admin-notifications-center.php:291 inc/admin/admin-notifications-center.php:320
|
1881 |
-
#: inc/admin/admin-notifications-center.php:409 inc/admin/admin-notifications-center.php:427
|
1882 |
-
#: inc/admin/admin-notifications-center.php:510 inc/admin/admin-notifications-center.php:529
|
1883 |
-
msgid "Fix this!"
|
1884 |
-
msgstr "దీన్ని పరిష్కరించండి!"
|
1885 |
-
|
1886 |
-
#: inc/admin/admin-notifications-center.php:267
|
1887 |
msgid "Your site title is empty!"
|
1888 |
msgstr "మీ సైట్ శీర్షిక ఖాళీగా ఉంది!"
|
1889 |
|
1890 |
-
#: inc/admin/admin-notifications-center.php:
|
1891 |
msgid ""
|
1892 |
"Your Site Title is used by WordPress, your theme and your plugins including SEOPress. It is an essential "
|
1893 |
"component in the generation of title tags, but not only. Enter one!"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: inc/admin/admin-notifications-center.php:
|
1897 |
msgid "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
1898 |
msgstr "మీ permalinks SEO ఫ్రెండ్లీ కాదు! దీనిని పరిష్కరించడానికి అందంగా permalinks ను ప్రారంభించండి."
|
1899 |
|
1900 |
-
#: inc/admin/admin-notifications-center.php:
|
1901 |
msgid ""
|
1902 |
"Why is this important? Showing only the summary of each article significantly reduces the theft of your "
|
1903 |
"content by third party sites. Not to mention, the increase in your traffic, your advertising revenue, "
|
1904 |
"conversions..."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: inc/admin/admin-notifications-center.php:
|
1908 |
#, fuzzy
|
1909 |
#| msgid "You RSS feed show full text!"
|
1910 |
msgid "Your RSS feed shows full text!"
|
1911 |
msgstr "మీరు RSS ఫీడ్ పూర్తి టెక్స్ట్ చూపించు!"
|
1912 |
|
1913 |
-
#: inc/admin/admin-notifications-center.php:
|
1914 |
-
#: inc/admin/admin-notifications-center.php:423
|
1915 |
-
msgid "Medium impact"
|
1916 |
-
msgstr "మధ్యస్థ ప్రభావం"
|
1917 |
-
|
1918 |
-
#: inc/admin/admin-notifications-center.php:343
|
1919 |
#, fuzzy
|
1920 |
#| msgid "You like SEOPress? Don't forget to rate it 5 stars!"
|
1921 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
1922 |
msgstr "మీరు SEOPress నచ్చిందా? 5 నక్షత్రాలు తో రేటింగ్ ఇవ్వండి!"
|
1923 |
|
1924 |
-
#: inc/admin/admin-notifications-center.php:
|
1925 |
msgid ""
|
1926 |
"Support the development and improvement of the plugin by taking 15 seconds of your time to leave us a user "
|
1927 |
"review on the official WordPress plugins repository. Thank you!"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: inc/admin/admin-notifications-center.php:
|
1931 |
msgid "Information"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: inc/admin/admin-notifications-center.php:
|
1935 |
msgid "Rate us!"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: inc/admin/admin-notifications-center.php:
|
1939 |
msgid "Break comments into pages is ON!"
|
1940 |
msgstr "వ్యాఖ్యలు పేజీలలో బ్రేక్, ఆన్లో ఉంది!"
|
1941 |
|
1942 |
-
#: inc/admin/admin-notifications-center.php:
|
1943 |
msgid ""
|
1944 |
"Enabling this option will create duplicate content for each article beyond x comments. This can have a "
|
1945 |
"disastrous effect by creating a large number of poor quality pages, and slowing the Google bot "
|
1946 |
"unnecessarily, so your ranking in search results."
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: inc/admin/admin-notifications-center.php:
|
1950 |
msgid "Disable this!"
|
1951 |
msgstr "దీన్ని ఆపివేయి!"
|
1952 |
|
1953 |
-
#: inc/admin/admin-notifications-center.php:
|
1954 |
msgid "Display more posts per page on homepage and archives"
|
1955 |
msgstr "(Homepage) హోమ్పేజీ మరియు ఆర్కైవ్ లలో పేజీకి ఎక్కువ పోస్ట్లు ప్రదర్శించు"
|
1956 |
|
1957 |
-
#: inc/admin/admin-notifications-center.php:
|
1958 |
msgid ""
|
1959 |
"To reduce the number pages search engines have to crawl to find all your articles, it is recommended "
|
1960 |
"displaying more posts per page. This should not be a problem for your users. Using mobile, we prefer to "
|
1961 |
-
"scroll down rather than clicking on next page links.
|
1962 |
-
"your post listings."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: inc/admin/admin-notifications-center.php:
|
1966 |
msgid "You don't have an XML Sitemap!"
|
1967 |
msgstr "మీకు XML సైట్ మ్యాప్ లేదు!"
|
1968 |
|
1969 |
-
#: inc/admin/admin-notifications-center.php:
|
1970 |
msgid ""
|
1971 |
"XML Sitemaps are useful to facilitate the crawling of your content by search engine robots. Indirectly, "
|
1972 |
"this can benefit your ranking by reducing the crawl bugdet."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: inc/admin/admin-notifications-center.php:
|
1976 |
#, fuzzy
|
1977 |
#| msgid "Do you have a Google Business page? It's free!"
|
1978 |
msgid "Do you have a Google My Business page? It's free!"
|
1979 |
msgstr "మీకు Google వ్యాపారం పేజీ ఉందా? ఇది ఉచితం!"
|
1980 |
|
1981 |
-
#: inc/admin/admin-notifications-center.php:
|
1982 |
msgid ""
|
1983 |
"Local Business websites should have a My Business page to improve visibility in search results. Click on "
|
1984 |
"the cross on the right to delete this notification if you are not concerned."
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: inc/admin/admin-notifications-center.php:
|
1988 |
msgid "Create your page now!"
|
1989 |
msgstr "ఇప్పుడు మీ పేజీని సృష్టించండి!"
|
1990 |
|
1991 |
-
#: inc/admin/admin-notifications-center.php:
|
1992 |
msgid "Add your site to Google. It's free!"
|
1993 |
msgstr "మీ సైట్ను Google కి జోడించండి. ఇది ఉచితం!"
|
1994 |
|
1995 |
-
#: inc/admin/admin-notifications-center.php:
|
1996 |
msgid ""
|
1997 |
"Is your brand new site online? So reference it as quickly as possible on Google to get your first visitors "
|
1998 |
"via Google Search Console. Already the case? Click on the cross on the right to remove this alert."
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: inc/admin/admin-notifications-center.php:
|
2002 |
msgid "Add your site to Search Console!"
|
2003 |
msgstr "మీ సైట్ ను సెర్చ్ కన్సోల్కు జోడించండి! (Search Console!)"
|
2004 |
|
2005 |
-
#: inc/admin/admin-notifications-center.php:
|
2006 |
msgid "Structured data types is not correctly enabled"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: inc/admin/admin-notifications-center.php:
|
2010 |
msgid ""
|
2011 |
"Please enable <strong>Structured Data Types metabox for your posts, pages and custom post types</strong> "
|
2012 |
"option in order to use automatic and manual schemas. (SEO > PRO > Structured Data Types (schema.org)"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: inc/admin/admin-notifications-center.php:
|
2016 |
msgid "You have to enter your licence key to get updates and support"
|
2017 |
msgstr "నవీకరణలు మరియు మద్దతు పొందడానికి మీరు మీ లైసెన్స్ కీని నమోదు చేయాలి"
|
2018 |
|
2019 |
-
#: inc/admin/admin-notifications-center.php:
|
2020 |
msgid ""
|
2021 |
"Please activate the SEOPress PRO license key to automatically receive updates to guarantee you the best "
|
2022 |
"user experience possible."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: inc/admin/admin-notifications-center.php:
|
2026 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: inc/admin/admin-notifications-center.php:
|
2030 |
msgid ""
|
2031 |
"The PRO version of SEOPress allows you to easily manage your structured data (schemas), add a breadcrumb "
|
2032 |
"optimized for SEO and accessibility, improve SEO for WooCommerce, gain productivity with our import / "
|
2033 |
"export tool from a CSV of your metadata and so much more."
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: inc/admin/admin-notifications-center.php:
|
2037 |
#, fuzzy
|
2038 |
#| msgid "Migrate now"
|
2039 |
msgid "Upgrade now!"
|
2040 |
msgstr "ఇప్పుడే మైగ్రేట్ చేయండి"
|
2041 |
|
2042 |
-
#: inc/admin/admin-notifications-center.php:
|
2043 |
msgid "Check websites setup on your server"
|
2044 |
msgstr "మీ సర్వర్లో వెబ్సైటు సెటప్ తనిఖీ చేయండి"
|
2045 |
|
2046 |
-
#: inc/admin/admin-notifications-center.php:
|
2047 |
msgid "Not found"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: inc/admin/admin-notifications-center.php:
|
2051 |
#, fuzzy
|
2052 |
#| msgid "Last scrape: "
|
2053 |
msgid "No scrape."
|
2054 |
msgstr "Last scrape: చివరి గీరి :"
|
2055 |
|
2056 |
-
#: inc/admin/admin-notifications-center.php:
|
2057 |
msgid "No domain found."
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: inc/admin/admin-notifications-center.php:
|
2061 |
msgid "Server IP Address: "
|
2062 |
msgstr "సర్వర్ IP చిరునామా :"
|
2063 |
|
2064 |
-
#: inc/admin/admin-notifications-center.php:
|
2065 |
msgid "Last scrape: "
|
2066 |
msgstr "Last scrape: చివరి గీరి :"
|
2067 |
|
2068 |
-
#: inc/admin/admin-notifications-center.php:
|
2069 |
msgid "Number of websites on your server: "
|
2070 |
msgstr "మీ సర్వర్లోని వెబ్సైట్ల సంఖ్య :"
|
2071 |
|
2072 |
-
#: inc/admin/admin-notifications-center.php:
|
2073 |
msgid "Get list"
|
2074 |
msgstr "జాబితా పొందండి"
|
2075 |
|
2076 |
-
#: inc/admin/admin-notifications-center.php:
|
2077 |
msgid "Our blog: SEO news, how-to, tips and tricks..."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: inc/admin/admin-notifications-center.php:
|
2081 |
msgid "Upload a list of links to disavow to Google"
|
2082 |
msgstr "Google కు ఇష్టపడని లింక్ల జాబితాను అప్లోడ్ చేయండి"
|
2083 |
|
2084 |
-
#: inc/admin/admin-notifications-center.php:
|
2085 |
-
msgid "Google Trends"
|
2086 |
-
msgstr "Google ట్రెండ్లు"
|
2087 |
-
|
2088 |
-
#: inc/admin/admin-notifications-center.php:635
|
2089 |
msgid "Image SEO plugin to optimize your image ALT texts and names for Search Engines."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: inc/admin/admin-notifications-center.php:
|
2093 |
msgid "Dareboost: Test, analyze and optimize your website"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: inc/admin/admin-notifications-center.php:
|
2097 |
msgid "Google Campaign URL Builder tool"
|
2098 |
msgstr "Google ప్రచారం URL బిల్డర్ సాధనం"
|
2099 |
|
2100 |
-
#: inc/admin/admin-wizard.php:
|
2101 |
msgid "Migration completed!"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: inc/admin/admin-wizard.php:
|
2105 |
msgid "Export completed!"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: inc/admin/admin-wizard.php:
|
2109 |
#, fuzzy
|
2110 |
#| msgid "Import Settings"
|
2111 |
msgid "Import SEO settings"
|
2112 |
msgstr "దిగుమతి సెట్టింగ్లు"
|
2113 |
|
2114 |
-
#: inc/admin/admin-wizard.php:
|
2115 |
#, fuzzy
|
2116 |
#| msgid "View your sitemap"
|
2117 |
msgid "Your site"
|
2118 |
msgstr "మీ సైట్మాప్ని వీక్షించండి"
|
2119 |
|
2120 |
-
#: inc/admin/admin-wizard.php:
|
2121 |
msgid "Indexing"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: inc/admin/admin-wizard.php:
|
2125 |
#, fuzzy
|
2126 |
#| msgid "<p>Advanced SEO options</p>"
|
2127 |
msgid "Advanced options"
|
2128 |
msgstr "<p>ఆధునిక SEO ఎంపికలు</p>"
|
2129 |
|
2130 |
-
#: inc/admin/admin-wizard.php:
|
2131 |
msgid "Ready!"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: inc/admin/admin-wizard.php:
|
2135 |
msgid "SEOPress › Setup Wizard"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: inc/admin/admin-wizard.php:
|
2139 |
msgid "Not right now"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: inc/admin/admin-wizard.php:
|
2143 |
msgid "Skip this step"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: inc/admin/admin-wizard.php:
|
2147 |
msgid "Welcome!"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: inc/admin/admin-wizard.php:
|
2151 |
msgid "The following wizard will help you configure SEOPress and get you started quickly."
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: inc/admin/admin-wizard.php:
|
2155 |
msgid "The first step is to import your previous settings from other plugins to keep your SEO."
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: inc/admin/admin-wizard.php:
|
2159 |
msgid "No data to migrate? Click \"Next step\" button!"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: inc/admin/admin-wizard.php:
|
2163 |
#, fuzzy
|
2164 |
#| msgid "Import posts and terms metadata from Yoast"
|
2165 |
msgid "Import posts and terms metadata from"
|
2166 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2167 |
|
2168 |
-
#: inc/admin/admin-wizard.php:
|
2169 |
#, fuzzy
|
2170 |
#| msgid "Select your logo"
|
2171 |
msgid "Select an option"
|
2172 |
msgstr "మీ లోగో ఎంచుకోండి"
|
2173 |
|
2174 |
-
#: inc/admin/admin-wizard.php:
|
2175 |
msgid "Yoast SEO"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: inc/admin/admin-wizard.php:
|
2179 |
msgid "All In One SEO"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: inc/admin/admin-wizard.php:
|
2183 |
msgid "The SEO Framework"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: inc/admin/admin-wizard.php:
|
2187 |
msgid "Rank Math"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: inc/admin/admin-wizard.php:
|
2191 |
msgid "Squirrly SEO"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: inc/admin/admin-wizard.php:
|
2195 |
msgid "SEO Ultimate"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: inc/admin/admin-wizard.php:
|
2199 |
msgid "WP Meta SEO"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: inc/admin/admin-wizard.php:
|
|
|
|
|
|
|
|
|
2203 |
msgid "Import posts and terms metadata from Yoast"
|
2204 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2205 |
|
2206 |
-
#: inc/admin/admin-wizard.php:
|
2207 |
-
#: inc/admin/admin-wizard.php:
|
2208 |
-
#: inc/admin/admin-wizard.php:
|
2209 |
-
#: inc/admin/admin.php:
|
|
|
2210 |
msgid "By clicking Migrate, we'll import:"
|
2211 |
msgstr "మైగ్రేట్ను క్లిక్ చేయడం ద్వారా, మేము దిగుమతి చేస్తాము:"
|
2212 |
|
2213 |
-
#: inc/admin/admin-wizard.php:
|
2214 |
-
#: inc/admin/admin-wizard.php:
|
2215 |
-
#: inc/admin/admin-wizard.php:
|
2216 |
-
#: inc/admin/admin.php:
|
|
|
2217 |
msgid "Title tags"
|
2218 |
msgstr "శీర్షిక ట్యాగ్లు"
|
2219 |
|
2220 |
-
#: inc/admin/admin-wizard.php:
|
2221 |
-
#: inc/admin/admin-wizard.php:
|
2222 |
-
#: inc/admin/admin-wizard.php:
|
2223 |
-
#: inc/admin/admin.php:
|
|
|
2224 |
msgid "Facebook Open Graph tags (title, description and image thumbnail)"
|
2225 |
msgstr "Facebook ఓపెన్ గ్రాఫ్ టాగ్లు (శీర్షిక, వివరణ మరియు చిత్రం సూక్ష్మచిత్రం) (title, description and image thumbnail)"
|
2226 |
|
2227 |
-
#: inc/admin/admin-wizard.php:
|
2228 |
-
#: inc/admin/admin-wizard.php:
|
2229 |
-
#: inc/admin/admin.php:775 inc/admin/admin.php:
|
2230 |
-
#: inc/admin/admin.php:
|
2231 |
msgid "Twitter tags (title, description and image thumbnail)"
|
2232 |
msgstr "Twitter ట్యాగ్లు (శీర్షిక, వివరణ మరియు చిత్రం సూక్ష్మచిత్రం) (title, description and image thumbnail)"
|
2233 |
|
2234 |
-
#: inc/admin/admin-wizard.php:
|
2235 |
msgid "Meta Robots (noindex, nofollow...)"
|
2236 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2237 |
|
2238 |
-
#: inc/admin/admin-wizard.php:
|
2239 |
-
#: inc/admin/admin.php:
|
2240 |
#, fuzzy
|
2241 |
#| msgid "Search keywords"
|
2242 |
msgid "Focus keywords"
|
2243 |
msgstr "కీలక పదాలను శోధించండి"
|
2244 |
|
2245 |
-
#: inc/admin/admin-wizard.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2246 |
#, fuzzy
|
2247 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2248 |
msgid ""
|
@@ -2250,32 +2355,34 @@ msgid ""
|
|
2250 |
"dynamic variables will not be interpreted. We do NOT delete any Yoast data."
|
2251 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2252 |
|
2253 |
-
#: inc/admin/admin-wizard.php:
|
2254 |
-
#: inc/admin/admin-wizard.php:
|
2255 |
-
#: inc/admin/admin-wizard.php:
|
2256 |
-
#: inc/admin/admin.php:
|
|
|
2257 |
msgid "Migrate now"
|
2258 |
msgstr "ఇప్పుడే మైగ్రేట్ చేయండి"
|
2259 |
|
2260 |
-
#: inc/admin/admin-wizard.php:
|
2261 |
#, fuzzy
|
2262 |
#| msgid "Import posts and terms metadata from Yoast"
|
2263 |
msgid "Import posts and terms metadata from All In One SEO"
|
2264 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2265 |
|
2266 |
-
#: inc/admin/admin-wizard.php:
|
2267 |
#, fuzzy
|
2268 |
#| msgid "Twitter Thumbnail"
|
2269 |
msgid "Twitter image thumbnail"
|
2270 |
msgstr "ట్విట్టర్ సూక్ష్మచిత్రం"
|
2271 |
|
2272 |
-
#: inc/admin/admin-wizard.php:
|
|
|
2273 |
#, fuzzy
|
2274 |
#| msgid "Meta Robots (noindex, nofollow...)"
|
2275 |
msgid "Meta Robots (noindex, nofollow)"
|
2276 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2277 |
|
2278 |
-
#: inc/admin/admin-wizard.php:
|
2279 |
#, fuzzy
|
2280 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2281 |
msgid ""
|
@@ -2283,25 +2390,25 @@ msgid ""
|
|
2283 |
"variables will not be interpreted. We do NOT delete any AIO data."
|
2284 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2285 |
|
2286 |
-
#: inc/admin/admin-wizard.php:
|
2287 |
#, fuzzy
|
2288 |
#| msgid "Import posts and terms metadata from Yoast"
|
2289 |
msgid "Import posts and terms metadata from The SEO Framework"
|
2290 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2291 |
|
2292 |
-
#: inc/admin/admin-wizard.php:
|
2293 |
#, fuzzy
|
2294 |
#| msgid "Meta Robots (noindex, nofollow...)"
|
2295 |
msgid "Meta Robots (noindex, nofollow, noarchive)"
|
2296 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2297 |
|
2298 |
-
#: inc/admin/admin-wizard.php:
|
2299 |
#, fuzzy
|
2300 |
#| msgid "Redirection"
|
2301 |
msgid "Redirect URL"
|
2302 |
msgstr "Redirection (మళ్లింపు)"
|
2303 |
|
2304 |
-
#: inc/admin/admin-wizard.php:
|
2305 |
#, fuzzy
|
2306 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2307 |
msgid ""
|
@@ -2309,19 +2416,19 @@ msgid ""
|
|
2309 |
"dynamic variables will not be interpreted. We do NOT delete any SEO Framework data."
|
2310 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2311 |
|
2312 |
-
#: inc/admin/admin-wizard.php:
|
2313 |
#, fuzzy
|
2314 |
#| msgid "Import posts and terms metadata from Yoast"
|
2315 |
msgid "Import posts and terms metadata from Rank Math"
|
2316 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2317 |
|
2318 |
-
#: inc/admin/admin-wizard.php:
|
2319 |
#, fuzzy
|
2320 |
#| msgid "Meta Robots (noindex, nofollow...)"
|
2321 |
msgid "Meta Robots (noindex, nofollow, noarchive, noimageindex)"
|
2322 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2323 |
|
2324 |
-
#: inc/admin/admin-wizard.php:
|
2325 |
#, fuzzy
|
2326 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2327 |
msgid ""
|
@@ -2329,20 +2436,20 @@ msgid ""
|
|
2329 |
"dynamic variables will not be interpreted. We do NOT delete any Rank Math data."
|
2330 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2331 |
|
2332 |
-
#: inc/admin/admin-wizard.php:
|
2333 |
#, fuzzy
|
2334 |
#| msgid "Import posts and terms metadata from Yoast"
|
2335 |
msgid "Import posts metadata from Squirrly SEO"
|
2336 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2337 |
|
2338 |
-
#: inc/admin/admin-wizard.php:
|
2339 |
-
#: inc/admin/admin.php:
|
2340 |
#, fuzzy
|
2341 |
#| msgid "Meta Robots (noindex, nofollow...)"
|
2342 |
msgid "Meta Robots (noindex or nofollow)"
|
2343 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2344 |
|
2345 |
-
#: inc/admin/admin-wizard.php:
|
2346 |
#, fuzzy
|
2347 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2348 |
msgid ""
|
@@ -2350,13 +2457,13 @@ msgid ""
|
|
2350 |
"variables will not be interpreted. We do NOT delete any Squirrly SEO data."
|
2351 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2352 |
|
2353 |
-
#: inc/admin/admin-wizard.php:
|
2354 |
#, fuzzy
|
2355 |
#| msgid "Import posts and terms metadata from Yoast"
|
2356 |
msgid "Import posts metadata from SEO Ultimate"
|
2357 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2358 |
|
2359 |
-
#: inc/admin/admin-wizard.php:
|
2360 |
#, fuzzy
|
2361 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2362 |
msgid ""
|
@@ -2364,13 +2471,13 @@ msgid ""
|
|
2364 |
"variables will not be interpreted. We do NOT delete any SEO Ultimate data."
|
2365 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2366 |
|
2367 |
-
#: inc/admin/admin-wizard.php:
|
2368 |
#, fuzzy
|
2369 |
#| msgid "Import posts and terms metadata from Yoast"
|
2370 |
msgid "Import posts and terms metadata from WP Meta SEO"
|
2371 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2372 |
|
2373 |
-
#: inc/admin/admin-wizard.php:
|
2374 |
#, fuzzy
|
2375 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2376 |
msgid ""
|
@@ -2378,312 +2485,306 @@ msgid ""
|
|
2378 |
"variables will not be interpreted. We do NOT delete any WP Meta SEO data."
|
2379 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2380 |
|
2381 |
-
#: inc/admin/admin-wizard.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2382 |
msgid "Next step"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: inc/admin/admin-wizard.php:
|
2386 |
msgid ""
|
2387 |
"To build title tags and knowledge graph for Google, you need to fill out the fields below to configure the "
|
2388 |
"general settings. "
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: inc/admin/admin-wizard.php:
|
2392 |
msgid "eg: |"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: inc/admin/admin-wizard.php:
|
2396 |
msgid "Site title"
|
2397 |
msgstr "సైట్ శీర్షిక"
|
2398 |
|
2399 |
-
#: inc/admin/admin-wizard.php:
|
2400 |
#, fuzzy
|
2401 |
#| msgid "My awesome website"
|
2402 |
msgid "eg: My super website"
|
2403 |
msgstr "నా అద్భుతమైన వెబ్ సైట్"
|
2404 |
|
2405 |
-
#: inc/admin/admin-wizard.php:
|
2406 |
msgid "Person or organization"
|
2407 |
msgstr "వ్యక్తి లేదా సంస్థ"
|
2408 |
|
2409 |
-
#: inc/admin/admin-wizard.php:
|
2410 |
msgid "Choose a knowledge type"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: inc/admin/admin-wizard.php:
|
2414 |
msgid "Person"
|
2415 |
msgstr "వ్యక్తి"
|
2416 |
|
2417 |
-
#: inc/admin/admin-wizard.php:
|
2418 |
msgid "Organization"
|
2419 |
msgstr "సంస్థ"
|
2420 |
|
2421 |
-
#: inc/admin/admin-wizard.php:
|
2422 |
#, fuzzy
|
2423 |
#| msgid "Your name / organization"
|
2424 |
msgid "Your name/organization"
|
2425 |
msgstr "మీ పేరు / సంస్థ"
|
2426 |
|
2427 |
-
#: inc/admin/admin-wizard.php:
|
2428 |
msgid "eg: My Company Name"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: inc/admin/admin-wizard.php:
|
2432 |
#, fuzzy
|
2433 |
#| msgid "Your photo / organization logo"
|
2434 |
msgid "Your photo/organization logo"
|
2435 |
msgstr "మీ ఫోటో / సంస్థ లోగో"
|
2436 |
|
2437 |
-
#: inc/admin/admin-wizard.php:
|
2438 |
#, fuzzy
|
2439 |
#| msgid "eg: https://www.facebook.com/your-page"
|
2440 |
msgid "eg: https://www.example.com/logo.png"
|
2441 |
msgstr "ఉదా: https://www.facebook.com/your-page"
|
2442 |
|
2443 |
-
#: inc/admin/admin-wizard.php:
|
2444 |
#, fuzzy
|
2445 |
#| msgid "Facebook Page URL"
|
2446 |
msgid "Facebook page URL"
|
2447 |
msgstr "Facebook పేజ్ URL"
|
2448 |
|
2449 |
-
#: inc/admin/admin-wizard.php:
|
2450 |
#, fuzzy
|
2451 |
#| msgid "eg: https://www.facebook.com/your-page"
|
2452 |
msgid "eg: https://facebook.com/my-page-url"
|
2453 |
msgstr "ఉదా: https://www.facebook.com/your-page"
|
2454 |
|
2455 |
-
#: inc/admin/admin-wizard.php:
|
2456 |
msgid "Twitter Username"
|
2457 |
msgstr "Twitter Username"
|
2458 |
|
2459 |
-
#: inc/admin/admin-wizard.php:
|
2460 |
msgid "eg: @my_twitter_account"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: inc/admin/admin-wizard.php:
|
2464 |
msgid "Pinterest URL"
|
2465 |
msgstr "Pinterest URL"
|
2466 |
|
2467 |
-
#: inc/admin/admin-wizard.php:
|
2468 |
#, fuzzy
|
2469 |
#| msgid "eg: https://pinterest.com/wpbuy/"
|
2470 |
msgid "eg: https://pinterest.com/my-page-url/"
|
2471 |
msgstr "ఉదా: https://pinterest.com/wpbuy/"
|
2472 |
|
2473 |
-
#: inc/admin/admin-wizard.php:
|
2474 |
msgid "Instagram URL"
|
2475 |
msgstr "Instagram URL"
|
2476 |
|
2477 |
-
#: inc/admin/admin-wizard.php:
|
2478 |
#, fuzzy
|
2479 |
#| msgid "eg: https://www.instagram.com/rainbowgeek64/"
|
2480 |
msgid "eg: https://www.instagram.com/my-page-url/"
|
2481 |
msgstr "ఉదా: https://www.instagram.com/rainbowgeek64/"
|
2482 |
|
2483 |
-
#: inc/admin/admin-wizard.php:
|
2484 |
msgid "YouTube URL"
|
2485 |
msgstr "YouTube URL"
|
2486 |
|
2487 |
-
#: inc/admin/admin-wizard.php:
|
2488 |
#, fuzzy
|
2489 |
#| msgid "eg: https://www.youtube.com/channel/UCpQzarWu55UzCIH7-OW6pwA"
|
2490 |
msgid "eg: https://www.youtube.com/my-channel-url"
|
2491 |
msgstr "ఉదా: https://www.youtube.com/channel/UCpQzarWu55UzCIH7-OW6pwA"
|
2492 |
|
2493 |
-
#: inc/admin/admin-wizard.php:
|
2494 |
msgid "LinkedIn URL"
|
2495 |
msgstr "LinkedIn URL"
|
2496 |
|
2497 |
-
#: inc/admin/admin-wizard.php:
|
2498 |
msgid "eg: http://linkedin.com/company/my-company-url/"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: inc/admin/admin-wizard.php:
|
2502 |
msgid "MySpace URL"
|
2503 |
msgstr "MySpace URL"
|
2504 |
|
2505 |
-
#: inc/admin/admin-wizard.php:
|
2506 |
#, fuzzy
|
2507 |
#| msgid "eg: https://myspace.com/your-page"
|
2508 |
msgid "eg: https://myspace.com/my-page-url"
|
2509 |
msgstr "ఉదా: https://myspace.com/your-page"
|
2510 |
|
2511 |
-
#: inc/admin/admin-wizard.php:
|
2512 |
msgid "Soundcloud URL"
|
2513 |
msgstr "Soundcloud URL"
|
2514 |
|
2515 |
-
#: inc/admin/admin-wizard.php:
|
2516 |
#, fuzzy
|
2517 |
#| msgid "eg: https://soundcloud.com/michaelmccannmusic"
|
2518 |
msgid "eg: https://soundcloud.com/my-page-url"
|
2519 |
msgstr "ఉదా: https://soundcloud.com/michaelmccannmusic"
|
2520 |
|
2521 |
-
#: inc/admin/admin-wizard.php:
|
2522 |
msgid "Tumblr URL"
|
2523 |
msgstr "Tumblr URL"
|
2524 |
|
2525 |
-
#: inc/admin/admin-wizard.php:
|
2526 |
msgid "eg: https://your-site.tumblr.com"
|
2527 |
msgstr "ఉదా: https://your-site.tumblr.com"
|
2528 |
|
2529 |
-
#: inc/admin/admin-wizard.php:
|
2530 |
msgid "Continue"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: inc/admin/admin-wizard.php:
|
2534 |
msgid "Specify to the search engines what you want to be indexed or not."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: inc/admin/admin-wizard.php:
|
2538 |
msgid "Avoid indexing duplicate or poor quality content."
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: inc/admin/admin-wizard.php:
|
2542 |
#, fuzzy
|
2543 |
#| msgid "Default"
|
2544 |
msgid "Default: index"
|
2545 |
msgstr "డిఫాల్ట్"
|
2546 |
|
2547 |
-
#: inc/admin/admin-wizard.php:
|
2548 |
msgid "For which single post types, should indexing be disabled?"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: inc/admin/admin-wizard.php:
|
2552 |
msgid "Do not display this single post type in search engine results <strong>(noindex)</strong>"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: inc/admin/admin-wizard.php:
|
2556 |
msgid "For which post type archives, should indexing be disabled?"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: inc/admin/admin-wizard.php:
|
2560 |
msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: inc/admin/admin-wizard.php:
|
2564 |
msgid "For which taxonomy archives, should indexing be disabled?"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: inc/admin/admin-wizard.php:
|
2568 |
msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: inc/admin/admin-wizard.php:
|
2572 |
msgid "Do not display author archives in search engine results <strong>(noindex)</strong>"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: inc/admin/admin-wizard.php:
|
2576 |
msgid "You only have one author on your site? Check this option to avoid duplicate content."
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: inc/admin/admin-wizard.php:
|
2580 |
msgid "Redirect attachment pages to their file URL (https://www.example.com/my-image-file.jpg)"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: inc/admin/admin-wizard.php:
|
2584 |
msgid ""
|
2585 |
"By default, SEOPress redirects your Attachment pages to the parent post. Optimize this by redirecting the "
|
2586 |
"user directly to the URL of the media file."
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: inc/admin/admin-wizard.php:
|
2590 |
msgid "Remove /category/ in your permalinks"
|
2591 |
msgstr "మీ permalinks లో / వర్గం / తొలగించు"
|
2592 |
|
2593 |
-
#: inc/admin/admin-wizard.php:
|
2594 |
msgid "Shorten your URLs by removing /category/ and improve your SEO."
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: inc/admin/admin-wizard.php:
|
2598 |
#, fuzzy
|
2599 |
#| msgid "Your site is not visible to Search Engines!"
|
2600 |
msgid "Your site is now ready for search engines!"
|
2601 |
msgstr "శోధన ఇంజిన్లకు మీ సైట్ కనిపించదు!"
|
2602 |
|
2603 |
-
#: inc/admin/admin-wizard.php:
|
2604 |
msgid "Welcome to SEOPress PRO!"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: inc/admin/admin-wizard.php:
|
2608 |
#, fuzzy
|
2609 |
#| msgid "You have to enter your licence key to get updates and support"
|
2610 |
msgid "Please activate your license to receive automatic updates and get premium support."
|
2611 |
msgstr "నవీకరణలు మరియు మద్దతు పొందడానికి మీరు మీ లైసెన్స్ కీని నమోదు చేయాలి"
|
2612 |
|
2613 |
-
#: inc/admin/admin-wizard.php:
|
2614 |
#, fuzzy
|
2615 |
#| msgid "License"
|
2616 |
msgid "Activate License"
|
2617 |
msgstr "అధికారపూరిత అనుమతి"
|
2618 |
|
2619 |
-
#: inc/admin/admin-wizard.php:
|
2620 |
msgid "Go PRO with SEOPress PRO!"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: inc/admin/admin-wizard.php:
|
2624 |
msgid ""
|
2625 |
"When you upgrade to the PRO version, you get a lot of additional features, like automatic and manual "
|
2626 |
"schemas, Video Sitemap, WooCommerce enhancements, Analytics statistics in your Dashboard, breadcrumbs, "
|
2627 |
"redirections, and more."
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: inc/admin/admin-wizard.php:
|
2631 |
msgid "Buy SEOPress PRO - $39 / unlimited sites"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: inc/admin/admin-wizard.php:
|
2635 |
#, fuzzy
|
2636 |
#| msgid "View your sitemap"
|
2637 |
msgid "Create your XML sitemaps"
|
2638 |
msgstr "మీ సైట్మాప్ని వీక్షించండి"
|
2639 |
|
2640 |
-
#: inc/admin/admin-wizard.php:
|
2641 |
msgid "Build custom XML sitemaps to improve Google's crawling of your site."
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: inc/admin/admin-wizard.php:
|
2645 |
#, fuzzy
|
2646 |
#| msgid "View your sitemap"
|
2647 |
msgid "Configure your XML sitemaps"
|
2648 |
msgstr "మీ సైట్మాప్ని వీక్షించండి"
|
2649 |
|
2650 |
-
#: inc/admin/admin-wizard.php:
|
2651 |
-
#, fuzzy
|
2652 |
-
#| msgid "Nofollow?"
|
2653 |
-
msgid "Follow us:"
|
2654 |
-
msgstr "Nofollow?"
|
2655 |
-
|
2656 |
-
#: inc/admin/admin-wizard.php:865
|
2657 |
-
#, fuzzy
|
2658 |
-
#| msgid "Enter your Facebook title"
|
2659 |
-
msgid "Like our Facebook page"
|
2660 |
-
msgstr "మీ Facebook శీర్షికను నమోదు చేయండి"
|
2661 |
-
|
2662 |
-
#: inc/admin/admin-wizard.php:877
|
2663 |
-
msgid "Watch our guided tour videos to learn more about SEOPress"
|
2664 |
-
msgstr ""
|
2665 |
-
|
2666 |
-
#: inc/admin/admin-wizard.php:883
|
2667 |
-
msgid "The off side of SEOPress"
|
2668 |
-
msgstr ""
|
2669 |
-
|
2670 |
-
#: inc/admin/admin-wizard.php:891
|
2671 |
msgid "You can also:"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: inc/admin/admin-wizard.php:
|
2675 |
#, fuzzy
|
2676 |
#| msgid "Dashboard"
|
2677 |
msgid "Visit Dashboard"
|
2678 |
msgstr "Dashboard"
|
2679 |
|
2680 |
-
#: inc/admin/admin-wizard.php:
|
2681 |
#, fuzzy
|
2682 |
#| msgid "Reset settings"
|
2683 |
msgid "Review Settings"
|
2684 |
msgstr "సెట్టింగ్లను పునఃపరిష్కారం (RESET) చేయండి"
|
2685 |
|
2686 |
-
#: inc/admin/admin-wizard.php:
|
2687 |
#, fuzzy
|
2688 |
#| msgid "Knowledge Graph"
|
2689 |
msgid "Knowledge base"
|
@@ -2697,12 +2798,6 @@ msgstr "404 - పేజీ దొరకలేదు"
|
|
2697 |
msgid "Dashboard"
|
2698 |
msgstr "Dashboard"
|
2699 |
|
2700 |
-
#: inc/admin/admin.php:194
|
2701 |
-
#, fuzzy
|
2702 |
-
#| msgid "Google Analytics"
|
2703 |
-
msgid "Analytics"
|
2704 |
-
msgstr "గూగుల్ విశ్లేషణలు"
|
2705 |
-
|
2706 |
#: inc/admin/admin.php:203
|
2707 |
#, php-format
|
2708 |
msgid "%%sep%%"
|
@@ -2722,7 +2817,7 @@ msgstr ""
|
|
2722 |
msgid "%%tagline%% (alias %%sitedesc%%)"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
-
#: inc/admin/admin.php:205 inc/admin/admin.php:
|
2726 |
msgid "Tagline"
|
2727 |
msgstr "ట్యాగ్లైన్"
|
2728 |
|
@@ -2797,7 +2892,7 @@ msgstr "చివరిగా నవీకరించబడిన తేదీ
|
|
2797 |
msgid "%%post_author%%"
|
2798 |
msgstr "%%post_author%%"
|
2799 |
|
2800 |
-
#: inc/admin/admin.php:212 inc/admin/admin.php:
|
2801 |
msgid "Post author"
|
2802 |
msgstr "పోస్ట్ రచయిత"
|
2803 |
|
@@ -3132,7 +3227,17 @@ msgstr "%%post_author%%"
|
|
3132 |
msgid "Author bio, meta desc only"
|
3133 |
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
3134 |
|
3135 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3136 |
msgid "Templates variables"
|
3137 |
msgstr "టెంప్లేట్లు భావితము"
|
3138 |
|
@@ -3148,157 +3253,163 @@ msgstr ""
|
|
3148 |
msgid "Check our website"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: inc/admin/admin.php:
|
3152 |
msgid ""
|
3153 |
"Watch our video to learn how to connect your WordPress site with Google Analytics and get statistics right "
|
3154 |
"in your dashboard (PRO only)."
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: inc/admin/admin.php:
|
3158 |
msgid "How-to"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: inc/admin/admin.php:
|
3162 |
-
#: inc/admin/admin.php:
|
3163 |
-
#: inc/admin/admin.php:
|
3164 |
msgid "Click to disable this feature"
|
3165 |
msgstr "ఈ లక్షణాన్ని నిలిపివేయడానికి క్లిక్ చేయండి"
|
3166 |
|
3167 |
-
#: inc/admin/admin.php:
|
3168 |
-
#: inc/admin/admin.php:
|
3169 |
-
#: inc/admin/admin.php:
|
3170 |
msgid "Click to enable this feature"
|
3171 |
msgstr "ఈ లక్షణాన్ని ప్రారంభించడానికి క్లిక్ చేయండి"
|
3172 |
|
3173 |
-
#: inc/admin/admin.php:
|
3174 |
msgid "Home"
|
3175 |
msgstr "Home (హోమ్)"
|
3176 |
|
3177 |
-
#: inc/admin/admin.php:
|
3178 |
msgid "Single Post Types"
|
3179 |
msgstr "ఒకే పోస్ట్ రకాలు"
|
3180 |
|
3181 |
-
#: inc/admin/admin.php:
|
3182 |
msgid "Archives"
|
3183 |
msgstr "Archives (ప్రాచీనపత్ర సంచయము)"
|
3184 |
|
3185 |
-
#: inc/admin/admin.php:
|
3186 |
msgid "Taxonomies"
|
3187 |
msgstr "Taxonomies - (వర్గీకరణాలు)"
|
3188 |
|
3189 |
-
#: inc/admin/admin.php:
|
3190 |
msgid "General"
|
3191 |
msgstr "జనరల్"
|
3192 |
|
3193 |
-
#: inc/admin/admin.php:
|
3194 |
msgid "Post Types"
|
3195 |
msgstr "పోస్ట్ రకాలు"
|
3196 |
|
3197 |
-
#: inc/admin/admin.php:
|
3198 |
msgid "HTML Sitemap"
|
3199 |
msgstr "HTML సైట్ మ్యాప్"
|
3200 |
|
3201 |
-
#: inc/admin/admin.php:
|
3202 |
msgid "Knowledge Graph"
|
3203 |
msgstr "నాలెడ్జ్ గ్రాఫ్"
|
3204 |
|
3205 |
-
#: inc/admin/admin.php:
|
3206 |
msgid "Your social accounts"
|
3207 |
msgstr "మీ సామాజిక ఖాతాలు"
|
3208 |
|
3209 |
-
#: inc/admin/admin.php:
|
3210 |
#, fuzzy
|
3211 |
#| msgid "Facebook App ID"
|
3212 |
msgid "Facebook (Open Graph)"
|
3213 |
msgstr "Facebook App ID"
|
3214 |
|
3215 |
-
#: inc/admin/admin.php:
|
3216 |
#, fuzzy
|
3217 |
#| msgid "Twitter Title"
|
3218 |
msgid "Twitter (Twitter card)"
|
3219 |
msgstr "ట్విట్టర్ శీర్షిక"
|
3220 |
|
3221 |
-
#: inc/admin/admin.php:
|
3222 |
msgid "Tracking"
|
3223 |
msgstr "Tracking"
|
3224 |
|
3225 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3226 |
msgid "Events"
|
3227 |
msgstr "Events - (సంఘటనక్రమం)"
|
3228 |
|
3229 |
-
#: inc/admin/admin.php:
|
3230 |
msgid "Custom Dimensions"
|
3231 |
msgstr "వాడుక కొలతలు"
|
3232 |
|
3233 |
-
#: inc/admin/admin.php:
|
3234 |
msgid "Stats in Dashboard"
|
3235 |
msgstr "డాష్బోర్డ్లో గణాంకాలు"
|
3236 |
|
3237 |
-
#: inc/admin/admin.php:
|
3238 |
msgid "Cookie bar / GDPR"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: inc/admin/admin.php:
|
3242 |
msgid "Matomo"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: inc/admin/admin.php:
|
3246 |
msgid "Appearance"
|
3247 |
msgstr "స్వరూపం"
|
3248 |
|
3249 |
-
#: inc/admin/admin.php:
|
3250 |
msgid "Security"
|
3251 |
msgstr "సెక్యూరిటీ"
|
3252 |
|
3253 |
-
#: inc/admin/admin.php:
|
3254 |
msgid "Data"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: inc/admin/admin.php:
|
3258 |
msgid "Settings"
|
3259 |
msgstr "సెట్టింగులు"
|
3260 |
|
3261 |
-
#: inc/admin/admin.php:
|
3262 |
msgid "Plugins"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: inc/admin/admin.php:
|
3266 |
msgid "Reset"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: inc/admin/admin.php:
|
3270 |
msgid "Import data from a CSV"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: inc/admin/admin.php:
|
3274 |
msgid "Import your title, meta description, meta robots, social metas from a CSV file with our import tool."
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: inc/admin/admin.php:
|
3278 |
msgid "Run the importer"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: inc/admin/admin.php:
|
3282 |
msgid "Export metadata to a CSV"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: inc/admin/admin.php:
|
3286 |
#, fuzzy
|
3287 |
#| msgid "Import / export SEOPress settings from site to site."
|
3288 |
msgid "Export your SEOPress metadata for this site as a .csv file."
|
3289 |
msgstr "సైట్ నుండి సైట్ దిగుమతి / ఎగుమతి SEOPress సెట్టింగులు."
|
3290 |
|
3291 |
-
#: inc/admin/admin.php:
|
3292 |
msgid "Export"
|
3293 |
msgstr "ఎగుమతి"
|
3294 |
|
3295 |
-
#: inc/admin/admin.php:
|
3296 |
#, fuzzy
|
3297 |
#| msgid "Export Settings"
|
3298 |
msgid "Export plugin settings"
|
3299 |
msgstr "ఎగుమతి సెట్టింగులు"
|
3300 |
|
3301 |
-
#: inc/admin/admin.php:
|
3302 |
msgid ""
|
3303 |
"Export the plugin settings for this site as a .json file. This allows you to easily import the "
|
3304 |
"configuration into another site."
|
@@ -3306,13 +3417,13 @@ msgstr ""
|
|
3306 |
"ఒక .json ఫైల్ వలె ఈ సైట్ కోసం ప్లగిన్ సెట్టింగులను ఎగుమతి చేయండి. ఆకృతీకరణను మరొక సైట్లోకి సులభంగా దిగుమతి చేసుకోవడానికి ఇది మిమ్మల్ని "
|
3307 |
"అనుమతిస్తుంది."
|
3308 |
|
3309 |
-
#: inc/admin/admin.php:
|
3310 |
#, fuzzy
|
3311 |
#| msgid "Import Settings"
|
3312 |
msgid "Import plugin settings"
|
3313 |
msgstr "దిగుమతి సెట్టింగ్లు"
|
3314 |
|
3315 |
-
#: inc/admin/admin.php:
|
3316 |
msgid ""
|
3317 |
"Import the plugin settings from a .json file. This file can be obtained by exporting the settings on "
|
3318 |
"another site using the form above."
|
@@ -3320,16 +3431,16 @@ msgstr ""
|
|
3320 |
"ఒక .json ఫైల్ నుండి ప్లగ్ఇన్ అమర్పులను దిగుమతి చేయండి. పైన ఉన్న ఫారమ్ను (Form) ఉపయోగించి మరొక సైట్లో సెట్టింగులను ఎగుమతి చేయడం ద్వారా ఈ "
|
3321 |
"ఫైల్ పొందవచ్చు."
|
3322 |
|
3323 |
-
#: inc/admin/admin.php:
|
3324 |
-
#: inc/admin/admin.php:
|
3325 |
msgid "Import"
|
3326 |
msgstr "దిగుమతి"
|
3327 |
|
3328 |
-
#: inc/admin/admin.php:
|
3329 |
msgid "Import completed!"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: inc/admin/admin.php:
|
3333 |
#, fuzzy
|
3334 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
3335 |
msgid ""
|
@@ -3337,33 +3448,33 @@ msgid ""
|
|
3337 |
"will not be interpreted. We do NOT delete any Squirrly SEO data."
|
3338 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
3339 |
|
3340 |
-
#: inc/admin/admin.php:
|
3341 |
#, fuzzy
|
3342 |
#| msgid "Import Redirections"
|
3343 |
msgid "Import your redirections"
|
3344 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3345 |
|
3346 |
-
#: inc/admin/admin.php:
|
3347 |
msgid "CSV file (must match the template)"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: inc/admin/admin.php:
|
3351 |
msgid "Redirections plugin (JSON - WordPress Redirects)"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: inc/admin/admin.php:
|
3355 |
msgid "Yoast Premium plugin (CSV)"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: inc/admin/admin.php:
|
3359 |
msgid "Rank Math plugin (TXT)"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: inc/admin/admin.php:
|
3363 |
msgid "Import Redirections"
|
3364 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3365 |
|
3366 |
-
#: inc/admin/admin.php:
|
3367 |
#, fuzzy
|
3368 |
#| msgid ""
|
3369 |
#| "Import your own redirections from a .csv file (separator \";\"). You must have 3 columns in this order: "
|
@@ -3375,43 +3486,62 @@ msgstr ""
|
|
3375 |
"CSV ఫైల్ (విభజన \";\") నుండి మీ స్వంత మళ్లింపులను దిగుమతి చేయండి. ఈ క్రమంలో మీరు 3 నిలువు వరుసలను కలిగి ఉండాలి: మ్యాచ్ కు url (మీ "
|
3376 |
"డొమైన్ పేరు లేకుండా), url సంపూర్ణంగా మరియు రీడైరెక్ట్ రకం (301, 302 లేదా 307) లో మళ్ళించబడుతుంది."
|
3377 |
|
3378 |
-
#: inc/admin/admin.php:
|
3379 |
msgid "URL to match (without your domain name)"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: inc/admin/admin.php:
|
3383 |
#, fuzzy
|
3384 |
#| msgid "URL redirection"
|
3385 |
msgid "URL to redirect in absolute,"
|
3386 |
msgstr "URL redirection (URL దారి మళ్లింపు)"
|
3387 |
|
3388 |
-
#: inc/admin/admin.php:
|
3389 |
-
msgid "type of redirection (301, 302 or 307),"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
-
#: inc/admin/admin.php:
|
3393 |
msgid "Yes to enable the redirect (leave it empty to disable the redirect)"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
-
#: inc/admin/admin.php:
|
3397 |
msgid ""
|
3398 |
-
"the query parameter (\"exact_match\" = Exact match with all parameters, \"without_param
|
3399 |
-
"parameters or \"with_ignored_param\" = Exclude all parameters and pass them to the
|
|
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: inc/admin/admin.php:
|
3403 |
msgid "and, the last parameter, the counter (optional)."
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: inc/admin/admin.php:
|
3407 |
msgid "Download a CSV example"
|
3408 |
msgstr "CSV ఉదాహరణను డౌన్లోడ్ చేయండి"
|
3409 |
|
3410 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3411 |
msgid "Import Redirections from the Redirections plugin"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: inc/admin/admin.php:
|
3415 |
msgid ""
|
3416 |
"Import your own redirections from a .json file generated by the Redirections plugin (make sure to select "
|
3417 |
"<strong>\"WordPress redirects\"</strong> when you export your file). Note that we do not support certain "
|
@@ -3419,39 +3549,39 @@ msgid ""
|
|
3419 |
"redirects."
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: inc/admin/admin.php:
|
3423 |
#, fuzzy
|
3424 |
#| msgid "Import Redirections"
|
3425 |
msgid "Import Redirections from Yoast Premium"
|
3426 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3427 |
|
3428 |
-
#: inc/admin/admin.php:
|
3429 |
msgid ""
|
3430 |
"Import your own redirections from a .csv file generated by Yoast Premium. Note that we don't support "
|
3431 |
"certain options, like regex. To avoid conflicts, make sure there are no duplicates between your file and "
|
3432 |
"existing redirects."
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#: inc/admin/admin.php:
|
3436 |
#, fuzzy
|
3437 |
#| msgid "Import Redirections"
|
3438 |
msgid "Import Redirections from Rank Math"
|
3439 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3440 |
|
3441 |
-
#: inc/admin/admin.php:
|
3442 |
msgid ""
|
3443 |
"Import your own redirections from a .txt file generated by Rank Math. Note that we don't support certain "
|
3444 |
"options, like regex. To avoid conflicts, make sure there are no duplicates between your file and existing "
|
3445 |
"redirects."
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: inc/admin/admin.php:
|
3449 |
#, fuzzy
|
3450 |
#| msgid "Import Redirections"
|
3451 |
msgid "Export Redirections"
|
3452 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3453 |
|
3454 |
-
#: inc/admin/admin.php:
|
3455 |
#, fuzzy
|
3456 |
#| msgid ""
|
3457 |
#| "Export the plugin settings for this site as a .json file. This allows you to easily import the "
|
@@ -3463,687 +3593,733 @@ msgstr ""
|
|
3463 |
"ఒక .json ఫైల్ వలె ఈ సైట్ కోసం ప్లగిన్ సెట్టింగులను ఎగుమతి చేయండి. ఆకృతీకరణను మరొక సైట్లోకి సులభంగా దిగుమతి చేసుకోవడానికి ఇది మిమ్మల్ని "
|
3464 |
"అనుమతిస్తుంది."
|
3465 |
|
3466 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3467 |
msgid "Clean your 404"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: inc/admin/admin.php:
|
3471 |
msgid "Delete all your 404 errors. We don‘t delete any redirects."
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: inc/admin/admin.php:
|
3475 |
#, php-format
|
3476 |
msgid ""
|
3477 |
"Make sure you have enabled 404 cleaning from SEO, PRO, <a href=\"%s\">404/301</a> tab to be able to delete "
|
3478 |
"all your 404 errors."
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: inc/admin/admin.php:
|
3482 |
#, php-format
|
3483 |
msgid ""
|
3484 |
"You can also use <span class=\"dashicons dashicons-external\"></span><a href=\"%s\" target=\"_blank\">this "
|
3485 |
"MySQL query</a> if necessary."
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: inc/admin/admin.php:
|
3489 |
msgid "Delete all 404"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: inc/admin/admin.php:
|
3493 |
msgid "Redirections feature is disabled. Please activate it from the PRO page."
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: inc/admin/admin.php:
|
3497 |
#, fuzzy
|
3498 |
#| msgid "Redirections"
|
3499 |
msgid "Activate Redirections"
|
3500 |
msgstr "Redirections (మళ్లింపులు)"
|
3501 |
|
3502 |
-
#: inc/admin/admin.php:
|
3503 |
msgid "Reset All Notices From Notifications Center"
|
3504 |
msgstr "నోటిఫికేషన్ల కేంద్రం నుండి అన్ని నోటీసులను పునరావాసం (RESET) చేయండి"
|
3505 |
|
3506 |
-
#: inc/admin/admin.php:
|
3507 |
#, fuzzy
|
3508 |
#| msgid "By clicking Reset Notices, you'll see all notices again in notifications center."
|
3509 |
msgid ""
|
3510 |
"By clicking Reset Notices, all notices in the notifications center will be set to their initial status."
|
3511 |
msgstr "నోటిఫికేషన్లను పునరావాసం(RESET) క్లిక్ చేయడం ద్వారా, నోటిఫికేషన్ సెంటర్లో మీరు అన్ని నోటీసులను మళ్లీ చూస్తారు."
|
3512 |
|
3513 |
-
#: inc/admin/admin.php:
|
3514 |
msgid "Reset notices"
|
3515 |
msgstr "నోటీసులను పునరావాసం (RESET) చేయండి"
|
3516 |
|
3517 |
-
#: inc/admin/admin.php:
|
3518 |
msgid "Reset All Settings"
|
3519 |
msgstr "అన్ని సెట్టింగ్లను పునరావాసం (RESET) చేయండి"
|
3520 |
|
3521 |
-
#: inc/admin/admin.php:
|
3522 |
msgid ""
|
3523 |
"<strong>WARNING:</strong> Delete all options related to SEOPress in your database AND set settings to their "
|
3524 |
"default values."
|
3525 |
msgstr ""
|
3526 |
"<strong>హెచ్చరిక:</strong> మీ డిఫాల్ట్ విలువలను మీ డేటాబేస్ మరియు సెట్టింగులు సెట్టింగులు లో SEOPress సంబంధించిన అన్ని ఎంపికలు తొలగించు."
|
3527 |
|
3528 |
-
#: inc/admin/admin.php:
|
3529 |
msgid "Reset settings"
|
3530 |
msgstr "సెట్టింగ్లను పునఃపరిష్కారం (RESET) చేయండి"
|
3531 |
|
3532 |
-
#: inc/admin/admin.php:
|
3533 |
msgid "noindex"
|
3534 |
msgstr "noindex"
|
3535 |
|
3536 |
-
#: inc/admin/admin.php:
|
3537 |
msgid "nofollow"
|
3538 |
msgstr "అనుకరించటానికి లేదు"
|
3539 |
|
3540 |
-
#: inc/admin/admin.php:
|
3541 |
msgid "noodp"
|
3542 |
msgstr "noodp"
|
3543 |
|
3544 |
-
#: inc/admin/admin.php:
|
3545 |
msgid "noimageindex"
|
3546 |
msgstr "noimageindex"
|
3547 |
|
3548 |
-
#: inc/admin/admin.php:
|
3549 |
msgid "noarchive"
|
3550 |
msgstr "noarchive"
|
3551 |
|
3552 |
-
#: inc/admin/admin.php:
|
3553 |
msgid "nosnippet"
|
3554 |
msgstr "nosnippet"
|
3555 |
|
3556 |
-
#: inc/admin/admin.php:
|
3557 |
msgid "nositelinkssearchbox"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: inc/admin/admin.php:
|
3561 |
msgid "Indicate paginated content to Google"
|
3562 |
msgstr "Google కు పేజీ విన్యాసం కంటెంట్ను సూచించండి"
|
3563 |
|
3564 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3565 |
msgid "Enable XML Sitemap"
|
3566 |
msgstr "XML సైట్మాప్ను ప్రారంభించండి"
|
3567 |
|
3568 |
-
#: inc/admin/admin.php:
|
3569 |
msgid "Enable XML Image Sitemaps"
|
3570 |
msgstr "XML చిత్రం సైట్మాప్లను ప్రారంభించండి"
|
3571 |
|
3572 |
-
#: inc/admin/admin.php:
|
3573 |
#, fuzzy
|
3574 |
#| msgid "Enable XML Image Sitemaps"
|
3575 |
msgid "Enable XML Video Sitemaps"
|
3576 |
msgstr "XML చిత్రం సైట్మాప్లను ప్రారంభించండి"
|
3577 |
|
3578 |
-
#: inc/admin/admin.php:
|
3579 |
#, fuzzy
|
3580 |
#| msgid "Enable XML Sitemap"
|
3581 |
msgid "Enable Author Sitemap"
|
3582 |
msgstr "XML సైట్మాప్ను ప్రారంభించండి"
|
3583 |
|
3584 |
-
#: inc/admin/admin.php:
|
3585 |
msgid "Enable HTML Sitemap"
|
3586 |
msgstr "HTML సైట్మాప్ను ప్రారంభించండి"
|
3587 |
|
3588 |
-
#: inc/admin/admin.php:
|
3589 |
msgid "Check to INCLUDE Post Types"
|
3590 |
msgstr "పోస్ట్ రకాలను చేర్చడానికి తనిఖీ చేయండి"
|
3591 |
|
3592 |
-
#: inc/admin/admin.php:
|
3593 |
msgid "Check to INCLUDE Taxonomies"
|
3594 |
msgstr "వర్గీకరణాలు చేర్చడానికి తనిఖీ చేయండి"
|
3595 |
|
3596 |
-
#: inc/admin/admin.php:
|
3597 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
3598 |
msgstr "సైట్ మ్యాప్ ప్రదర్శించడానికి పోస్ట్, పేజీ లేదా కస్టమ్ పోస్ట్ రకం ID (లు) ను నమోదు చేయండి"
|
3599 |
|
3600 |
-
#: inc/admin/admin.php:
|
3601 |
#, fuzzy
|
3602 |
#| msgid "Exclude some Posts, Pages or Custom Post Types"
|
3603 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
3604 |
msgstr "కొన్ని పోస్ట్లు, పేజీలు లేదా కస్టమ్ పోస్ట్ రకాలు మినహాయించాలని"
|
3605 |
|
3606 |
-
#: inc/admin/admin.php:
|
3607 |
msgid "Sort order"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: inc/admin/admin.php:
|
3611 |
msgid "Order posts by"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: inc/admin/admin.php:
|
3615 |
msgid "Disable the display of the publication date"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: inc/admin/admin.php:
|
3619 |
#, fuzzy
|
3620 |
#| msgid "Organization Phone number (only for Organization)"
|
3621 |
msgid "Organization's phone number (only for Organizations)"
|
3622 |
msgstr "సంస్థ ఫోన్ నంబర్ (సంస్థ కోసం మాత్రమే)"
|
3623 |
|
3624 |
-
#: inc/admin/admin.php:
|
3625 |
#, fuzzy
|
3626 |
#| msgid "Contact type (only for Organization)"
|
3627 |
msgid "Contact type (only for Organizations)"
|
3628 |
msgstr "సంప్రదింపు రకం (సంస్థ కోసం మాత్రమే)"
|
3629 |
|
3630 |
-
#: inc/admin/admin.php:
|
3631 |
#, fuzzy
|
3632 |
#| msgid "Contact option (only for Organization)"
|
3633 |
msgid "Contact option (only for Organizations)"
|
3634 |
msgstr "సంప్రదింపు ఎంపిక (మాత్రమే సంస్థ కోసం)"
|
3635 |
|
3636 |
-
#: inc/admin/admin.php:
|
3637 |
msgid "Facebook Page URL"
|
3638 |
msgstr "Facebook పేజ్ URL"
|
3639 |
|
3640 |
-
#: inc/admin/admin.php:
|
3641 |
msgid "Enable Open Graph Data"
|
3642 |
msgstr "ఓపెన్ గ్రాఫ్ డేటాను ప్రారంభించండి"
|
3643 |
|
3644 |
-
#: inc/admin/admin.php:
|
3645 |
msgid "Select a default image"
|
3646 |
msgstr "డిఫాల్ట్ చిత్రాన్ని ఎంచుకోండి"
|
3647 |
|
3648 |
-
#: inc/admin/admin.php:
|
3649 |
msgid "Apply this image to all your og:image tag"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
3653 |
#, fuzzy
|
3654 |
#| msgid "Facebook Admin ID"
|
3655 |
msgid "Facebook Link Ownership ID"
|
3656 |
msgstr "Facebook అడ్మిన్ ID"
|
3657 |
|
3658 |
-
#: inc/admin/admin.php:
|
3659 |
msgid "Facebook Admin ID"
|
3660 |
msgstr "Facebook అడ్మిన్ ID"
|
3661 |
|
3662 |
-
#: inc/admin/admin.php:
|
3663 |
msgid "Facebook App ID"
|
3664 |
msgstr "Facebook App ID"
|
3665 |
|
3666 |
-
#: inc/admin/admin.php:
|
3667 |
msgid "Enable Twitter Card"
|
3668 |
msgstr "ట్విట్టర్ కార్డ్ని ప్రారంభించండి"
|
3669 |
|
3670 |
-
#: inc/admin/admin.php:
|
3671 |
#, fuzzy
|
3672 |
#| msgid "Enable Twitter Card"
|
3673 |
msgid "Use Open Graph if no Twitter Card is filled"
|
3674 |
msgstr "ట్విట్టర్ కార్డ్ని ప్రారంభించండి"
|
3675 |
|
3676 |
-
#: inc/admin/admin.php:
|
3677 |
msgid "Default Twitter Image"
|
3678 |
msgstr "డిఫాల్ట్ ట్విట్టర్ చిత్రం"
|
3679 |
|
3680 |
-
#: inc/admin/admin.php:
|
3681 |
msgid "Image size for Twitter Summary card"
|
3682 |
msgstr "ట్విట్టర్ సారాంశం కార్డు కోసం చిత్రం పరిమాణం"
|
3683 |
|
3684 |
-
#: inc/admin/admin.php:
|
3685 |
msgid "Enable Google Analytics tracking"
|
3686 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
3687 |
|
3688 |
-
#: inc/admin/admin.php:
|
3689 |
msgid "Enter your tracking ID"
|
3690 |
msgstr "మీ ట్రాకింగ్ ID ని నమోదు చేయండి"
|
3691 |
|
3692 |
-
#: inc/admin/admin.php:
|
3693 |
-
|
|
|
|
|
3694 |
msgstr "ట్రాకింగ్ నుండి వినియోగదారు పాత్రలను మినహాయించండి"
|
3695 |
|
3696 |
-
#: inc/admin/admin.php:
|
3697 |
#, fuzzy
|
3698 |
#| msgid "Enable Google Analytics tracking"
|
3699 |
msgid "Analytics tracking opt-in"
|
3700 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
3701 |
|
3702 |
-
#: inc/admin/admin.php:
|
3703 |
msgid "Consent message for user tracking"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: inc/admin/admin.php:
|
3707 |
msgid "Accept button for user tracking"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: inc/admin/admin.php:
|
3711 |
msgid "Close button"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: inc/admin/admin.php:
|
3715 |
msgid "Cookie bar position"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: inc/admin/admin.php:
|
3719 |
msgid "Cookie bar background color"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: inc/admin/admin.php:
|
3723 |
msgid "Cookie bar text color"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: inc/admin/admin.php:
|
3727 |
msgid "Cookie bar link color"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: inc/admin/admin.php:
|
3731 |
msgid "Cookie bar button background color"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: inc/admin/admin.php:
|
3735 |
msgid "Cookie bar button color"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: inc/admin/admin.php:
|
3739 |
msgid "Cookie bar button hover background color"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: inc/admin/admin.php:
|
3743 |
msgid "Cookie bar button hover color"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: inc/admin/admin.php:
|
3747 |
msgid "Cookie bar secondary button background color"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: inc/admin/admin.php:
|
3751 |
msgid "Cookie bar secondary button color"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: inc/admin/admin.php:
|
3755 |
msgid "Cookie bar secondary button hover background color"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: inc/admin/admin.php:
|
3759 |
msgid "Cookie bar secondary button hover color"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: inc/admin/admin.php:
|
3763 |
#, fuzzy
|
3764 |
#| msgid "Enable Google Analytics tracking"
|
3765 |
msgid "Enable Google Optimize"
|
3766 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
3767 |
|
3768 |
-
#: inc/admin/admin.php:
|
3769 |
#, fuzzy
|
3770 |
#| msgid "Enable Google Analytics tracking"
|
3771 |
msgid "Enable Google Ads"
|
3772 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
3773 |
|
3774 |
-
#: inc/admin/admin.php:
|
3775 |
msgid "Add an additional tracking code (like Facebook Pixel, Hotjar...)"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: inc/admin/admin.php:
|
3779 |
msgid "[BODY] Add an additional tracking code (like Google Tag Manager...)"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: inc/admin/admin.php:
|
3783 |
msgid "[BODY (FOOTER)] Add an additional tracking code (like Google Tag Manager...)"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: inc/admin/admin.php:
|
3787 |
#, fuzzy
|
3788 |
#| msgid "Enable remarketing, demographics and interest reporting"
|
3789 |
msgid "Enable remarketing, demographics, and interests reporting"
|
3790 |
msgstr "రీమార్కెటింగ్, డిపోగ్రాఫిక్స్ మరియు ఇతర రిపోర్టింగ్లను ప్రారంభించండి"
|
3791 |
|
3792 |
-
#: inc/admin/admin.php:
|
3793 |
msgid "Enable IP Anonymization"
|
3794 |
msgstr "IP అనామలైజేషన్ను ప్రారంభించండి"
|
3795 |
|
3796 |
-
#: inc/admin/admin.php:
|
3797 |
msgid "Enhanced Link Attribution"
|
3798 |
msgstr "మెరుగుపరచబడిన లింక్ అట్రిబ్యూషన్"
|
3799 |
|
3800 |
-
#: inc/admin/admin.php:
|
3801 |
msgid "Enable cross-domain tracking"
|
3802 |
msgstr "క్రాస్ డొమైన్ ట్రాకింగ్ను ప్రారంభించండి - (cross-domain tracking)"
|
3803 |
|
3804 |
-
#: inc/admin/admin.php:
|
3805 |
msgid "Cross domains"
|
3806 |
msgstr "Cross domains"
|
3807 |
|
3808 |
-
#: inc/admin/admin.php:
|
3809 |
msgid "Enable external links tracking"
|
3810 |
msgstr "బాహ్య లింకులు ట్రాకింగ్ను ప్రారంభించండి (Enable external links tracking)"
|
3811 |
|
3812 |
-
#: inc/admin/admin.php:
|
3813 |
msgid "Enable downloads tracking (eg: PDF, XLSX, DOCX...)"
|
3814 |
msgstr "డౌన్ ట్రాకింగ్ను ప్రారంభించండి (ఉదా: PDF, XLSX, DOCX ...)"
|
3815 |
|
3816 |
-
#: inc/admin/admin.php:
|
3817 |
#, fuzzy
|
3818 |
#| msgid "Track click downloads"
|
3819 |
msgid "Track downloads' clicks"
|
3820 |
msgstr "Track click downloads"
|
3821 |
|
3822 |
-
#: inc/admin/admin.php:
|
3823 |
#, fuzzy
|
3824 |
#| msgid "Enable affiliate / outbound links tracking (eg: aff, go, out, recommends"
|
3825 |
msgid "Enable affiliate/outbound links tracking (eg: aff, go, out, recommends)"
|
3826 |
msgstr "అనుబంధ / అవుట్బౌండ్ లింకులు ట్రాకింగ్ను ప్రారంభించండి (ఉదా: eg: aff, go, out, recommends)"
|
3827 |
|
3828 |
-
#: inc/admin/admin.php:
|
3829 |
#, fuzzy
|
3830 |
#| msgid "Track affiliate / outbound links"
|
3831 |
msgid "Track affiliate/outbound links"
|
3832 |
msgstr "అనుబంధ / అవుట్బౌండ్ లింక్లను ట్రాక్ చేయండి"
|
3833 |
|
3834 |
-
#: inc/admin/admin.php:
|
3835 |
msgid "Track Authors"
|
3836 |
msgstr "Track Authors"
|
3837 |
|
3838 |
-
#: inc/admin/admin.php:
|
3839 |
msgid "Track Categories"
|
3840 |
msgstr "Track Categories"
|
3841 |
|
3842 |
-
#: inc/admin/admin.php:
|
3843 |
msgid "Track Tags"
|
3844 |
msgstr "Track Tags"
|
3845 |
|
3846 |
-
#: inc/admin/admin.php:
|
3847 |
msgid "Track Post Types"
|
3848 |
msgstr "ట్రాక్ పోస్ట్ రకాలు"
|
3849 |
|
3850 |
-
#: inc/admin/admin.php:
|
3851 |
msgid "Track Logged In Users"
|
3852 |
msgstr "Track లాగిన్ వినియోగదారులు"
|
3853 |
|
3854 |
-
#: inc/admin/admin.php:
|
3855 |
#, fuzzy
|
3856 |
#| msgid "Enable download tracking"
|
3857 |
msgid "Enable Matomo tracking"
|
3858 |
msgstr "డౌన్లోడ్ ట్రాకింగ్ను ప్రారంభించండి"
|
3859 |
|
3860 |
-
#: inc/admin/admin.php:
|
3861 |
#, fuzzy
|
3862 |
#| msgid "Enter your title"
|
3863 |
msgid "Enter your site ID"
|
3864 |
msgstr "మీ శీర్షికను నమోదు చేయండి"
|
3865 |
|
3866 |
-
#: inc/admin/admin.php:
|
3867 |
msgid "Track visitors across all subdomains"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: inc/admin/admin.php:
|
3871 |
msgid "Prepend the site domain"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: inc/admin/admin.php:
|
3875 |
msgid "Track users with JavaScript disabled"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: inc/admin/admin.php:
|
3879 |
#, fuzzy
|
3880 |
#| msgid "Enable cross-domain tracking"
|
3881 |
msgid "Enables cross domain linking"
|
3882 |
msgstr "క్రాస్ డొమైన్ ట్రాకింగ్ను ప్రారంభించండి - (cross-domain tracking)"
|
3883 |
|
3884 |
-
#: inc/admin/admin.php:
|
3885 |
#, fuzzy
|
3886 |
#| msgid "Cross domains"
|
3887 |
msgid "Cross domain"
|
3888 |
msgstr "Cross domains"
|
3889 |
|
3890 |
-
#: inc/admin/admin.php:
|
3891 |
#, fuzzy
|
3892 |
#| msgid "Enable redirection?"
|
3893 |
msgid "Enable DoNotTrack detection"
|
3894 |
msgstr "Enable redirection? (మళ్లింపును ప్రారంభించాలా?)"
|
3895 |
|
3896 |
-
#: inc/admin/admin.php:
|
3897 |
#, fuzzy
|
3898 |
#| msgid "Disable author archives"
|
3899 |
msgid "Disable all tracking cookies"
|
3900 |
msgstr "Disable author archives"
|
3901 |
|
3902 |
-
#: inc/admin/admin.php:
|
3903 |
#, fuzzy
|
3904 |
#| msgid "Enable download tracking"
|
3905 |
msgid "Download & Outlink tracking"
|
3906 |
msgstr "డౌన్లోడ్ ట్రాకింగ్ను ప్రారంభించండి"
|
3907 |
|
3908 |
-
#: inc/admin/admin.php:
|
3909 |
msgid "Redirect attachment pages to post parent"
|
3910 |
msgstr "Redirect attachment pages to post parent"
|
3911 |
|
3912 |
-
#: inc/admin/admin.php:
|
3913 |
#, fuzzy
|
3914 |
#| msgid "Redirect attachment pages to post parent"
|
3915 |
msgid "Redirect attachment pages to their file URL"
|
3916 |
msgstr "Redirect attachment pages to post parent"
|
3917 |
|
3918 |
-
#: inc/admin/admin.php:
|
3919 |
msgid "Remove ?replytocom link to avoid duplicate content"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: inc/admin/admin.php:
|
3923 |
msgid "Automatically set the image Title"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: inc/admin/admin.php:
|
3927 |
msgid "Automatically set the image Alt text"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
3931 |
msgid "Automatically set the image Caption"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: inc/admin/admin.php:
|
3935 |
msgid "Automatically set the image Description"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: inc/admin/admin.php:
|
3939 |
msgid "Add WP Editor to taxonomy description textarea"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: inc/admin/admin.php:
|
3943 |
msgid "Remove /category/ in URL"
|
3944 |
msgstr "URL లో / వర్గం / తొలగించు - (Remove /category/ in URL)"
|
3945 |
|
3946 |
-
#: inc/admin/admin.php:
|
3947 |
msgid "Disable trailing slash for metas"
|
3948 |
msgstr "మెటాస్ కోసం వెనుకంజలో స్లాష్ను నిలిపివేయి"
|
3949 |
|
3950 |
-
#: inc/admin/admin.php:
|
3951 |
msgid "Remove WordPress generator meta tag"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: inc/admin/admin.php:
|
3955 |
msgid "Remove hentry post class"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: inc/admin/admin.php:
|
3959 |
#, fuzzy
|
3960 |
#| msgid "Remove /category/ in URL"
|
3961 |
msgid "Remove author URL"
|
3962 |
msgstr "URL లో / వర్గం / తొలగించు - (Remove /category/ in URL)"
|
3963 |
|
3964 |
-
#: inc/admin/admin.php:
|
3965 |
msgid "Remove website field in comment form"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: inc/admin/admin.php:
|
3969 |
msgid "Remove WordPress shortlink meta tag"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#: inc/admin/admin.php:
|
3973 |
msgid "Remove Windows Live Writer meta tag"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
-
#: inc/admin/admin.php:
|
3977 |
msgid "Remove RSD meta tag"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
-
#: inc/admin/admin.php:
|
3981 |
msgid "Google site verification"
|
3982 |
msgstr "Google సైట్ ధృవీకరణ"
|
3983 |
|
3984 |
-
#: inc/admin/admin.php:
|
3985 |
msgid "Bing site verification"
|
3986 |
msgstr "Bing సైట్ ధృవీకరణ"
|
3987 |
|
3988 |
-
#: inc/admin/admin.php:
|
3989 |
msgid "Pinterest site verification"
|
3990 |
msgstr "Pinterest సైట్ ధృవీకరణ"
|
3991 |
|
3992 |
-
#: inc/admin/admin.php:
|
3993 |
msgid "Yandex site verification"
|
3994 |
msgstr "Yandex సైట్ ధృవీకరణ"
|
3995 |
|
3996 |
-
#: inc/admin/admin.php:
|
3997 |
msgid "SEOPress in admin bar"
|
3998 |
msgstr "అడ్మిన్ బార్ లో SEOPress"
|
3999 |
|
4000 |
-
#: inc/admin/admin.php:
|
4001 |
#, fuzzy
|
4002 |
#| msgid "Move SEOPress metaboxe position"
|
4003 |
msgid "Move SEOPress metabox's position"
|
4004 |
msgstr "SEOPress metabox స్థానం తరలించు"
|
4005 |
|
4006 |
-
#: inc/admin/admin.php:
|
4007 |
msgid "Set default tab for Structured data metabox"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: inc/admin/admin.php:
|
4011 |
#, fuzzy
|
4012 |
#| msgid "Notifications Center"
|
4013 |
msgid "Hide Notifications Center"
|
4014 |
msgstr "నోటిఫికేషన్ సెంటర్"
|
4015 |
|
4016 |
-
#: inc/admin/admin.php:
|
4017 |
#, fuzzy
|
4018 |
#| msgid "SEO Tools"
|
4019 |
msgid "Hide SEO tools"
|
4020 |
msgstr "SEO ఉపకరణాలు"
|
4021 |
|
4022 |
-
#: inc/admin/admin.php:
|
4023 |
#, fuzzy
|
4024 |
#| msgid "Useful links"
|
4025 |
msgid "Hide Useful Links"
|
4026 |
msgstr "ఉపయోగకరమైన లింకులు"
|
4027 |
|
4028 |
-
#: inc/admin/admin.php:
|
4029 |
msgid "Show Title tag column in post types"
|
4030 |
msgstr "పోస్ట్ రకాల టైటిల్ ట్యాగ్ కాలమ్ చూపించు"
|
4031 |
|
4032 |
-
#: inc/admin/admin.php:
|
4033 |
msgid "Show Meta description column in post types"
|
4034 |
msgstr "పోస్ట్ రకాల మెటా వివరణ కాలమ్ చూపించు"
|
4035 |
|
4036 |
-
#: inc/admin/admin.php:
|
4037 |
#, fuzzy
|
4038 |
#| msgid "Show Meta description column in post types"
|
4039 |
msgid "Show Redirection Enable column in post types"
|
4040 |
msgstr "పోస్ట్ రకాల మెటా వివరణ కాలమ్ చూపించు"
|
4041 |
|
4042 |
-
#: inc/admin/admin.php:
|
4043 |
#, fuzzy
|
4044 |
#| msgid "Show noindex column in post types"
|
4045 |
msgid "Show Redirect URL column in post types"
|
4046 |
msgstr "పోస్ట్ రకాలలో noindex కాలమ్ చూపించు"
|
4047 |
|
4048 |
-
#: inc/admin/admin.php:
|
4049 |
#, fuzzy
|
4050 |
#| msgid "Show noindex column in post types"
|
4051 |
msgid "Show canonical URL column in post types"
|
4052 |
msgstr "పోస్ట్ రకాలలో noindex కాలమ్ చూపించు"
|
4053 |
|
4054 |
-
#: inc/admin/admin.php:
|
4055 |
#, fuzzy
|
4056 |
#| msgid "Show Title tag column in post types"
|
4057 |
msgid "Show Target Keyword column in post types"
|
4058 |
msgstr "పోస్ట్ రకాల టైటిల్ ట్యాగ్ కాలమ్ చూపించు"
|
4059 |
|
4060 |
-
#: inc/admin/admin.php:
|
4061 |
msgid "Show noindex column in post types"
|
4062 |
msgstr "పోస్ట్ రకాలలో noindex కాలమ్ చూపించు"
|
4063 |
|
4064 |
-
#: inc/admin/admin.php:
|
4065 |
msgid "Show nofollow column in post types"
|
4066 |
msgstr "పోస్ట్ రకాల్లో నోఫాల్లో నిలువు వరుసను చూపించు"
|
4067 |
|
4068 |
-
#: inc/admin/admin.php:
|
4069 |
msgid "Show total number of words column in post types"
|
4070 |
msgstr "పోస్ట్ రకాల పదాల పదాల మొత్తం సంఖ్యను చూపించు"
|
4071 |
|
4072 |
-
#: inc/admin/admin.php:
|
4073 |
msgid "Show W3C validator column in post types"
|
4074 |
msgstr "పోస్ట్ రకాల W3C వ్యాలిడేటర్కు కాలమ్ చూపించు"
|
4075 |
|
4076 |
-
#: inc/admin/admin.php:
|
4077 |
msgid "Show Google Page Speed column in post types"
|
4078 |
msgstr "పోస్ట్ రకాల Google పేజీ స్పీడ్ కాలమ్ చూపించు"
|
4079 |
|
4080 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
4081 |
#, fuzzy
|
4082 |
#| msgid "Show noindex column in post types"
|
4083 |
msgid "Show content analysis score column in post types"
|
4084 |
msgstr "పోస్ట్ రకాలలో noindex కాలమ్ చూపించు"
|
4085 |
|
4086 |
-
#: inc/admin/admin.php:
|
4087 |
#, fuzzy
|
4088 |
#| msgid "Hide Genesis SEO Metaboxe"
|
4089 |
msgid "Hide Genesis SEO Metabox"
|
4090 |
msgstr "Genesis SEO Metabox దాచు"
|
4091 |
|
4092 |
-
#: inc/admin/admin.php:
|
4093 |
#, fuzzy
|
4094 |
#| msgid "Hide Genesis SEO Metaboxe"
|
4095 |
msgid "Hide Genesis SEO Settings link"
|
4096 |
msgstr "Genesis SEO Metabox దాచు"
|
4097 |
|
4098 |
-
#: inc/admin/admin.php:
|
4099 |
#, fuzzy
|
4100 |
#| msgid "Structured Data Types"
|
4101 |
msgid "Hide advice in Structured Data Types metabox"
|
4102 |
msgstr "నిర్మాణాత్మక డేటా రకాలు"
|
4103 |
|
4104 |
-
#: inc/admin/admin.php:
|
4105 |
#, fuzzy
|
4106 |
#| msgid "Block SEO metaboxe to user roles"
|
4107 |
msgid "Block SEO metabox to user roles"
|
4108 |
msgstr "యూజర్ పాత్రలు కు SEO metabox బ్లాక్ అయివుంటుంది"
|
4109 |
|
4110 |
-
#: inc/admin/admin.php:
|
4111 |
#, fuzzy
|
4112 |
#| msgid "Block SEO metaboxe to user roles"
|
4113 |
msgid "Block Content analysis metabox to user roles"
|
4114 |
msgstr "యూజర్ పాత్రలు కు SEO metabox బ్లాక్ అయివుంటుంది"
|
4115 |
|
4116 |
-
#: inc/admin/admin.php:
|
4117 |
#, fuzzy
|
4118 |
#| msgid "<p>Customize your titles & metas for homepage</p>"
|
4119 |
msgid "<p>Customize your title & meta description for homepage</p>"
|
4120 |
msgstr "<p>homepage కోసం మీ శీర్షికలు & మెటాలను అనుకూలపరచండి</p>"
|
4121 |
|
4122 |
-
#: inc/admin/admin.php:
|
4123 |
msgid "<p>Customize your titles & metas for Single Custom Post Types</p>"
|
4124 |
msgstr "<p>సింగిల్ కస్టమ్ పోస్ట్ రకాలు కోసం మీ శీర్షికలు & metas అనుకూలపరచండి</p>"
|
4125 |
|
4126 |
-
#: inc/admin/admin.php:
|
4127 |
msgid "<p>Customize your metas for all pages</p>"
|
4128 |
msgstr "<p>అన్ని పేజీల కోసం మీ మెటాలను అనుకూలపరచండి</p>"
|
4129 |
|
4130 |
-
#: inc/admin/admin.php:
|
4131 |
msgid "<p>Customize your metas for all taxonomies archives</p>"
|
4132 |
msgstr "<p>అన్ని వర్గీకరణాలు ఆర్కైవ్ల కోసం మీ మెటాలను అనుకూలీకరించండి</p>"
|
4133 |
|
4134 |
-
#: inc/admin/admin.php:
|
4135 |
msgid "<p>Customize your metas for all archives</p>"
|
4136 |
msgstr "<p>అన్ని ఆర్కైవ్లకు(Archives) మీ మెటాలను అనుకూలీకరించండి</p>"
|
4137 |
|
4138 |
-
#: inc/admin/admin.php:
|
4139 |
msgid "Change this settings"
|
4140 |
msgstr "ఈ సెట్టింగ్లను మార్చండి"
|
4141 |
|
4142 |
-
#: inc/admin/admin.php:
|
4143 |
msgid "To view your sitemap, enable permalinks (not default one), and save settings to flush them."
|
4144 |
msgstr "మీ సైట్ మ్యాప్ను వీక్షించడానికి, permalinks (డిఫాల్ట్ కాదు) ను ఎనేబుల్ చేసి, వాటిని ఫ్లష్ చేయడానికి సెట్టింగులను సేవ్ చేయండి."
|
4145 |
|
4146 |
-
#: inc/admin/admin.php:
|
4147 |
#, fuzzy
|
4148 |
#| msgid ""
|
4149 |
#| "Your server use NGINX. If XML Sitemaps doesn't work, you have to add this rules to your configuration:"
|
@@ -4152,65 +4328,69 @@ msgid ""
|
|
4152 |
"configuration:"
|
4153 |
msgstr "మీ సర్వర్ NGINX ను ఉపయోగిస్తుంది. XML సైట్ మ్యాప్లు పని చేయకపోతే, మీరు ఈ నియమాన్ని మీ కాన్ఫిగరేషన్కు జోడించాలి:"
|
4154 |
|
4155 |
-
#: inc/admin/admin.php:
|
4156 |
msgid "Noindex content will not be displayed in Sitemaps."
|
4157 |
msgstr "సైట్ మాప్లలో Noindex కంటెంట్ ప్రదర్శించబడదు."
|
4158 |
|
4159 |
-
#: inc/admin/admin.php:
|
4160 |
msgid "Blank sitemap?"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
-
#: inc/admin/admin.php:
|
4164 |
msgid "404 error?"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
-
#: inc/admin/admin.php:
|
4168 |
msgid "View your sitemap"
|
4169 |
msgstr "మీ సైట్మాప్ని వీక్షించండి"
|
4170 |
|
4171 |
-
#: inc/admin/admin.php:
|
4172 |
msgid "Ping Google manually"
|
4173 |
msgstr "Google ను మానవీయంగా పింగ్ చేయండి"
|
4174 |
|
4175 |
-
#: inc/admin/admin.php:
|
4176 |
msgid "Flush permalinks"
|
4177 |
msgstr "ఫ్లష్ permalinks"
|
4178 |
|
4179 |
-
#: inc/admin/admin.php:
|
4180 |
#, fuzzy
|
4181 |
#| msgid "<p>Create an HTML for your visitors and boost your SEO</p>"
|
4182 |
msgid "<p>Create an HTML Sitemap for your visitors and boost your SEO.</p>"
|
4183 |
msgstr "<p>మీ సందర్శకులకు HTML ను సృష్టించండి మరియు మీ SEO ను పెంచండి</p>"
|
4184 |
|
4185 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
4186 |
msgid "Guide to enable a HTML Sitemap - new window"
|
4187 |
msgstr ""
|
4188 |
|
4189 |
-
#: inc/admin/admin.php:
|
4190 |
#, fuzzy
|
4191 |
#| msgid "<p>Include / Exclude Post Types</p>"
|
4192 |
msgid "<p>Include/Exclude Post Types.</p>"
|
4193 |
msgstr "<p>పోస్ట్ రకాలు చేర్చండి / మినహాయించండి</p>"
|
4194 |
|
4195 |
-
#: inc/admin/admin.php:
|
4196 |
#, fuzzy
|
4197 |
#| msgid "<p>Include / Exclude Taxonomies</p>"
|
4198 |
msgid "<p>Include/Exclude Taxonomies.</p>"
|
4199 |
msgstr "<p>చేర్చండి / వర్గీకరణాలు మినహాయించండి</p>"
|
4200 |
|
4201 |
-
#: inc/admin/admin.php:
|
4202 |
#, fuzzy
|
4203 |
#| msgid "<p>Configure Google Knowledge Graph</p>"
|
4204 |
msgid "<p>Configure Google Knowledge Graph.</p>"
|
4205 |
msgstr "<p>Google Knowledge Graph ను కన్ఫిగర్ చేయండి</p>"
|
4206 |
|
4207 |
-
#: inc/admin/admin.php:
|
4208 |
#, fuzzy
|
4209 |
#| msgid "Learn more on Google website"
|
4210 |
msgid "Learn more on Google official website."
|
4211 |
msgstr "Google వెబ్సైట్లో మరింత తెలుసుకోండి"
|
4212 |
|
4213 |
-
#: inc/admin/admin.php:
|
4214 |
msgid ""
|
4215 |
"<p>Link your site with your social accounts. Use markup on your website to add your social profile "
|
4216 |
"information to a Google Knowledge panel. Knowledge panels prominently display your social profile "
|
@@ -4218,53 +4398,53 @@ msgid ""
|
|
4218 |
"data in search results. It may take a long time to see these social-network links.</p>"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: inc/admin/admin.php:
|
4222 |
#, fuzzy
|
4223 |
#| msgid "<p>Manage Open Graph datas</p>"
|
4224 |
msgid "<p>Manage Open Graph data.</p>"
|
4225 |
msgstr "<p>ఓపెన్ గ్రాఫ్ డేటాలను నిర్వహించండి</p>"
|
4226 |
|
4227 |
-
#: inc/admin/admin.php:
|
4228 |
msgid "<p>We generate the <strong>og:image</strong> meta in this order:</p>"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: inc/admin/admin.php:
|
4232 |
msgid "Custom OG Image from SEO metabox"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: inc/admin/admin.php:
|
4236 |
#, fuzzy
|
4237 |
#| msgid "Twitter Thumbnail"
|
4238 |
msgid "Post thumbnail"
|
4239 |
msgstr "ట్విట్టర్ సూక్ష్మచిత్రం"
|
4240 |
|
4241 |
-
#: inc/admin/admin.php:
|
4242 |
msgid "First image of your post content"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: inc/admin/admin.php:
|
4246 |
msgid "Global OG Image set in SEO > Social > Open Graph"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
#: inc/admin/admin.php:
|
4250 |
#, fuzzy
|
4251 |
#| msgid "<p>Manage your Twitter card</p>"
|
4252 |
msgid "<p>Manage your Twitter card.</p>"
|
4253 |
msgstr "<p>మీ ట్విట్టర్ కార్డ్ని నిర్వహించండి</p>"
|
4254 |
|
4255 |
-
#: inc/admin/admin.php:
|
4256 |
msgid "<p>We generate the <strong>twitter:image</strong> meta in this order:</p>"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: inc/admin/admin.php:
|
4260 |
msgid "Custom Twitter image from SEO metabox"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
-
#: inc/admin/admin.php:
|
4264 |
msgid "Global Twitter:image set in SEO > Social > Twitter Card"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#: inc/admin/admin.php:
|
4268 |
#, fuzzy
|
4269 |
#| msgid "<p>Link your Google Analytics to your website</p>"
|
4270 |
msgid ""
|
@@ -4272,23 +4452,27 @@ msgid ""
|
|
4272 |
"p>"
|
4273 |
msgstr "<p>మీ వెబ్సైట్కు మీ Google Analytics లింక్ చేయండి</p>"
|
4274 |
|
4275 |
-
#: inc/admin/admin.php:
|
4276 |
msgid "<p>Manage user consent for GDPR and customize your cookie bar easily.</p>"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
4280 |
#, fuzzy
|
4281 |
#| msgid "<p>Configure your Google Analytics tracking code</p>"
|
4282 |
msgid "<p>Configure your Google Analytics tracking code.</p>"
|
4283 |
msgstr "<p>మీ Google Analytics ట్రాకింగ్ కోడ్ను కాన్ఫిగర్ చేయండి</p>"
|
4284 |
|
4285 |
-
#: inc/admin/admin.php:
|
4286 |
#, fuzzy
|
4287 |
#| msgid "<p>Track events in Google Analytics</p>"
|
4288 |
msgid "<p>Track events in Google Analytics.</p>"
|
4289 |
msgstr "<p>Google Analytics లో ఈవెంట్లను ట్రాక్ చేయండి</p>"
|
4290 |
|
4291 |
-
#: inc/admin/admin.php:
|
4292 |
#, fuzzy
|
4293 |
#| msgid ""
|
4294 |
#| "<p>Configure your Google Analytics custom dimensions. <br>Custom dimensions and custom metrics are like "
|
@@ -4308,672 +4492,682 @@ msgstr ""
|
|
4308 |
"ఉపయోగించవచ్చు.<br>మీరు మీ Google Analytics ఖాతాలో మీ అనుకూల కొలతలు సెటప్ చేయాలని గమనించండి. సహాయ చిహ్నాన్ని క్లిక్ చేయడం ద్వారా మరింత "
|
4309 |
"సమాచారం."
|
4310 |
|
4311 |
-
#: inc/admin/admin.php:
|
4312 |
msgid "Custom dimensions also work with <strong>Matomo</strong> tracking code."
|
4313 |
msgstr ""
|
4314 |
|
4315 |
-
#: inc/admin/admin.php:
|
4316 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
-
#: inc/admin/admin.php:
|
4320 |
msgid "<p>Use Matomo to track your users with privacy in mind.</p>"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
-
#: inc/admin/admin.php:
|
4324 |
msgid "Your <strong>Custom Dimensions</strong> will also work with Matomo tracking code"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
#: inc/admin/admin.php:
|
4328 |
#, fuzzy
|
4329 |
#| msgid "<p>Advanced SEO options</p>"
|
4330 |
msgid "<p>Advanced SEO options.</p>"
|
4331 |
msgstr "<p>ఆధునిక SEO ఎంపికలు</p>"
|
4332 |
|
4333 |
-
#: inc/admin/admin.php:
|
4334 |
#, fuzzy
|
4335 |
#| msgid "<p>Customize SEOPress to fit your needs</p>"
|
4336 |
msgid "<p>Customize SEOPress to fit your needs.</p>"
|
4337 |
msgstr "<p>మీ అవసరాలకు సరిపోయేలా SEO ను అనుకూలీకరించండి</p>"
|
4338 |
|
4339 |
-
#: inc/admin/admin.php:
|
4340 |
#, fuzzy
|
4341 |
#| msgid "<p>Manage security</p>"
|
4342 |
msgid "<p>Manage security.</p>"
|
4343 |
msgstr "<p>భద్రతను నిర్వహించండి</p>"
|
4344 |
|
4345 |
-
#: inc/admin/admin.php:
|
4346 |
msgid "Enter your separator, eg: \"-\""
|
4347 |
msgstr ""
|
4348 |
|
4349 |
-
#: inc/admin/admin.php:
|
4350 |
#, fuzzy, php-format
|
4351 |
#| msgid "Enter your meta description"
|
4352 |
msgid "Use this separator with %%sep%% in your title and meta description."
|
4353 |
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
4354 |
|
4355 |
-
#: inc/admin/admin.php:
|
4356 |
msgid "My awesome website"
|
4357 |
msgstr "నా అద్భుతమైన వెబ్ సైట్"
|
4358 |
|
4359 |
-
#: inc/admin/admin.php:
|
4360 |
-
#: inc/admin/admin.php:
|
4361 |
-
#: inc/admin/admin.php:
|
4362 |
msgid "More tags"
|
4363 |
msgstr "మరిన్ని ట్యాగ్లు"
|
4364 |
|
4365 |
-
#: inc/admin/admin.php:
|
4366 |
msgid "This is a cool website about Wookiees"
|
4367 |
msgstr "This is a cool website about Wookiees"
|
4368 |
|
4369 |
-
#: inc/admin/admin.php:
|
4370 |
#, fuzzy
|
4371 |
#| msgid "Looking for editing your blog page?"
|
4372 |
msgid "Looking to edit your blog page?"
|
4373 |
msgstr "మీ బ్లాగ్ పేజీని సవరించడం కోసం వెతుకుతున్నారా?"
|
4374 |
|
4375 |
-
#: inc/admin/admin.php:
|
4376 |
-
msgid "Click to hide any SEO metaboxes for this post type"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#: inc/admin/admin.php:
|
4380 |
-
msgid "Click to display any SEO metaboxes for this post type"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: inc/admin/admin.php:
|
4384 |
-
#: inc/admin/admin.php:
|
4385 |
msgid "Title template"
|
4386 |
msgstr "శీర్షిక టెంప్లేట్ (Title template)"
|
4387 |
|
4388 |
-
#: inc/admin/admin.php:
|
4389 |
-
#: inc/admin/admin.php:
|
4390 |
msgid "Meta description template"
|
4391 |
msgstr "మెటా వివరణ టెంప్లేట్ - Meta description template"
|
4392 |
|
4393 |
-
#: inc/admin/admin.php:
|
4394 |
msgid "Do not display this single post type in search engine results <strong>(noindex)</strong>"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: inc/admin/admin.php:
|
4398 |
msgid "Do not follow links for this single post type <strong>(nofollow)</strong>"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
-
#: inc/admin/admin.php:
|
4402 |
msgid "Display date in Google search results?"
|
4403 |
msgstr "Google శోధన ఫలితాల్లో తేదీని ప్రదర్శించాలా?"
|
4404 |
|
4405 |
-
#: inc/admin/admin.php:
|
4406 |
#, fuzzy
|
4407 |
#| msgid "Display date in Google search results?"
|
4408 |
msgid "Display post thumbnail in Google Custom Search results?"
|
4409 |
msgstr "Google శోధన ఫలితాల్లో తేదీని ప్రదర్శించాలా?"
|
4410 |
|
4411 |
-
#: inc/admin/admin.php:
|
4412 |
msgid "Click to hide any SEO metaboxes for this taxonomy"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
#: inc/admin/admin.php:
|
4416 |
msgid "Click to display any SEO metaboxes for this taxonomy"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#: inc/admin/admin.php:
|
4420 |
msgid "Category Title"
|
4421 |
msgstr "వర్గం శీర్షిక - Category Title"
|
4422 |
|
4423 |
-
#: inc/admin/admin.php:
|
4424 |
msgid "Tag Title"
|
4425 |
msgstr "ట్యాగ్ శీర్షిక"
|
4426 |
|
4427 |
-
#: inc/admin/admin.php:
|
4428 |
-
msgid "Term Title"
|
4429 |
-
msgstr "పదం శీర్షిక - Term Title"
|
4430 |
-
|
4431 |
-
#: inc/admin/admin.php:3267
|
4432 |
msgid "Category Description"
|
4433 |
msgstr "వర్గం వివరణ - Category Description"
|
4434 |
|
4435 |
-
#: inc/admin/admin.php:
|
4436 |
msgid "Tag Description"
|
4437 |
msgstr "ట్యాగ్ వివరణ"
|
4438 |
|
4439 |
-
#: inc/admin/admin.php:
|
4440 |
msgid "Term Description"
|
4441 |
msgstr "పదం వివరణ - Term Description"
|
4442 |
|
4443 |
-
#: inc/admin/admin.php:
|
4444 |
msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#: inc/admin/admin.php:
|
4448 |
msgid "Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#: inc/admin/admin.php:
|
4452 |
#, fuzzy
|
4453 |
#| msgid "Search archives"
|
4454 |
msgid "See archive"
|
4455 |
msgstr "ఆర్కైవ్లను శోధించండి (ప్రాచీనపత్ర సంచయము)"
|
4456 |
|
4457 |
-
#: inc/admin/admin.php:
|
4458 |
msgid "Post Type Archive Name"
|
4459 |
msgstr "పోస్ట్ రకం ఆర్కైవ్(Archive) పేరు"
|
4460 |
|
4461 |
-
#: inc/admin/admin.php:
|
4462 |
msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
-
#: inc/admin/admin.php:
|
4466 |
msgid "Do not follow links for this post type archive <strong>(nofollow)</strong>"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: inc/admin/admin.php:
|
4470 |
msgid "Author archives"
|
4471 |
msgstr "రచయిత ఆర్కైవ్స్ (ప్రాచీనపత్ర సంచయము)"
|
4472 |
|
4473 |
-
#: inc/admin/admin.php:
|
4474 |
msgid "Disable author archives"
|
4475 |
msgstr "Disable author archives"
|
4476 |
|
4477 |
-
#: inc/admin/admin.php:
|
4478 |
msgid "Date archives"
|
4479 |
msgstr "తేదీ ఆర్కైవ్లు (Date Archives)"
|
4480 |
|
4481 |
-
#: inc/admin/admin.php:
|
4482 |
msgid "Do not display date archives in search engine results <strong>(noindex)</strong>"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
-
#: inc/admin/admin.php:
|
4486 |
msgid "Disable date archives"
|
4487 |
msgstr "తేదీ ఆర్కైవ్ని నిలిపివేయండి"
|
4488 |
|
4489 |
-
#: inc/admin/admin.php:
|
4490 |
msgid "Search archives"
|
4491 |
msgstr "ఆర్కైవ్లను శోధించండి (ప్రాచీనపత్ర సంచయము)"
|
4492 |
|
4493 |
-
#: inc/admin/admin.php:
|
4494 |
msgid "Search Keywords"
|
4495 |
msgstr "Keywords శోధన"
|
4496 |
|
4497 |
-
#: inc/admin/admin.php:
|
4498 |
msgid "Do not display search archives in search engine results <strong>(noindex)</strong>"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#: inc/admin/admin.php:
|
4502 |
msgid "404 archives"
|
4503 |
msgstr "404 ఆర్కైవ్లు"
|
4504 |
|
4505 |
-
#: inc/admin/admin.php:
|
4506 |
msgid ""
|
4507 |
"Do not display all pages of the site in Google search results and do not display \"Cached\" links in search "
|
4508 |
"results."
|
4509 |
msgstr "Google శోధన ఫలితాల్లో సైట్ యొక్క అన్ని పేజీలను ప్రదర్శించవద్దు మరియు శోధన ఫలితాల్లో \"Cached\" లింక్లను ప్రదర్శించవద్దు."
|
4510 |
|
4511 |
-
#: inc/admin/admin.php:
|
4512 |
msgid "Do not follow links for all pages."
|
4513 |
msgstr "అన్ని పేజీల కోసం లింక్లను అనుసరించవద్దు."
|
4514 |
|
4515 |
-
#: inc/admin/admin.php:
|
4516 |
msgid "Do not use Open Directory project metadata for titles or excerpts for all pages."
|
4517 |
msgstr "అన్ని పేజీలకు శీర్షికలు లేదా సారాంశాలు కోసం ఓపెన్ డైరెక్టరీ ప్రాజెక్ట్ meta సమాచారం ఉపయోగించవద్దు."
|
4518 |
|
4519 |
-
#: inc/admin/admin.php:
|
4520 |
msgid "Do not index images from the entire site."
|
4521 |
msgstr "మొత్తం సైట్ నుండి చిత్రాలను ఇండెక్స్ చేయవద్దు."
|
4522 |
|
4523 |
-
#: inc/admin/admin.php:
|
4524 |
msgid "Do not display a \"Cached\" link in the Google search results."
|
4525 |
msgstr "Google శోధన ఫలితాల్లో \"Cached\" లింక్ను ప్రదర్శించవద్దు."
|
4526 |
|
4527 |
-
#: inc/admin/admin.php:
|
4528 |
msgid "Do not display a description in the Google search results for all pages."
|
4529 |
msgstr "Google శోధన ఫలితాల్లో అన్ని పేజీల యొక్క వివరణని ప్రదర్శించవద్దు."
|
4530 |
|
4531 |
-
#: inc/admin/admin.php:
|
4532 |
msgid ""
|
4533 |
"Prevents Google to display a sitelinks searchbox in search results. Enable this option will remove the "
|
4534 |
"\"Website\" schema from your source code."
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: inc/admin/admin.php:
|
4538 |
msgid "Add rel next/prev link in head of paginated archive pages"
|
4539 |
msgstr "ఆర్కైవ్ పేజీల తలలో తదుపరి / గత లింక్ని జోడించండి"
|
4540 |
|
4541 |
-
#: inc/admin/admin.php:
|
4542 |
-
|
4543 |
-
|
|
|
|
|
4544 |
|
4545 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
4546 |
msgid "Guide to enable XML Sitemaps - new window"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
-
#: inc/admin/admin.php:
|
4550 |
msgid "Enable Image Sitemaps (standard images, image galleries, featured image, WooCommerce product images)"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: inc/admin/admin.php:
|
4554 |
msgid "Images in XML sitemaps are visible only from the source code."
|
4555 |
msgstr ""
|
4556 |
|
4557 |
-
#: inc/admin/admin.php:
|
4558 |
#, fuzzy
|
4559 |
#| msgid "Enable XML Image Sitemaps"
|
4560 |
msgid "Guide to enable XML image sitemaps - new window"
|
4561 |
msgstr "XML చిత్రం సైట్మాప్లను ప్రారంభించండి"
|
4562 |
|
4563 |
-
#: inc/admin/admin.php:
|
4564 |
#, fuzzy
|
4565 |
#| msgid "Enable Image Sitemaps"
|
4566 |
msgid "Enable Video Sitemaps"
|
4567 |
msgstr "చిత్రం సైట్మాప్లను ప్రారంభించండి"
|
4568 |
|
4569 |
-
#: inc/admin/admin.php:
|
4570 |
#, php-format
|
4571 |
msgid ""
|
4572 |
"Your video sitemap is empty? Read our guide to learn more about <a href=\"%s\" target=\"_blank\">adding "
|
4573 |
"videos to your sitemap.</a>"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
-
#: inc/admin/admin.php:
|
4577 |
msgid "Guide to enable XML video sitemaps - new window"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: inc/admin/admin.php:
|
4581 |
msgid "Make sure to enable author archive from SEO, titles and metas, archives tab.</a>"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: inc/admin/admin.php:
|
4585 |
msgid "Include"
|
4586 |
msgstr "చేర్చండి"
|
4587 |
|
4588 |
-
#: inc/admin/admin.php:
|
4589 |
msgid "You should never include attachment post type in your sitemap. Be careful if you checked this."
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: inc/admin/admin.php:
|
4593 |
msgid "eg: 2, 28, 68"
|
4594 |
msgstr "ఉదా: 2, 28, 68"
|
4595 |
|
4596 |
-
#: inc/admin/admin.php:
|
4597 |
msgid "You can also use this shortcode:"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: inc/admin/admin.php:
|
4601 |
msgid "eg: 13, 8, 38"
|
4602 |
msgstr "ఉదా: 13, 8, 38"
|
4603 |
|
4604 |
-
#: inc/admin/admin.php:
|
4605 |
msgid "DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#: inc/admin/admin.php:
|
4609 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: inc/admin/admin.php:
|
4613 |
#, fuzzy
|
4614 |
#| msgid "Default value: "
|
4615 |
msgid "Default (date)"
|
4616 |
msgstr "డిఫాల్ట్ విలువ :"
|
4617 |
|
4618 |
-
#: inc/admin/admin.php:
|
4619 |
msgid "Modified date"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: inc/admin/admin.php:
|
4623 |
#, fuzzy
|
4624 |
#| msgid "Post date"
|
4625 |
msgid "Post ID"
|
4626 |
msgstr "పోస్ట్ తేదీ"
|
4627 |
|
4628 |
-
#: inc/admin/admin.php:
|
4629 |
msgid "Menu order"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: inc/admin/admin.php:
|
4633 |
#, fuzzy
|
4634 |
#| msgid "Post Title (post, page, custom post type)"
|
4635 |
msgid "Disable date after each post, page, post type?"
|
4636 |
msgstr "పోస్ట్ శీర్షిక (పోస్ట్, పేజీ, కస్టమ్ పోస్ట్ రకం)"
|
4637 |
|
4638 |
-
#: inc/admin/admin.php:
|
4639 |
#, fuzzy
|
4640 |
#| msgid "SEOPress"
|
4641 |
msgid "eg: SEOPress"
|
4642 |
msgstr "SEOPress"
|
4643 |
|
4644 |
-
#: inc/admin/admin.php:
|
4645 |
msgid "Select your logo"
|
4646 |
msgstr "మీ లోగో ఎంచుకోండి"
|
4647 |
|
4648 |
-
#: inc/admin/admin.php:
|
4649 |
msgid "JPG, PNG, and GIF allowed."
|
4650 |
msgstr ""
|
4651 |
|
4652 |
-
#: inc/admin/admin.php:
|
4653 |
msgid "eg: +33123456789 (internationalized version required)"
|
4654 |
msgstr "ఉదా: +33123456789 (అంతర్జాతీయీకరించిన సంస్కరణ అవసరం)"
|
4655 |
|
4656 |
-
#: inc/admin/admin.php:
|
4657 |
msgid "Customer support"
|
4658 |
msgstr "వినియోగదారుని కి సహాయము"
|
4659 |
|
4660 |
-
#: inc/admin/admin.php:
|
4661 |
msgid "Technical support"
|
4662 |
msgstr "సాంకేతిక సహాయము"
|
4663 |
|
4664 |
-
#: inc/admin/admin.php:
|
4665 |
msgid "Billing support"
|
4666 |
msgstr "బిల్లింగ్ సహాయము"
|
4667 |
|
4668 |
-
#: inc/admin/admin.php:
|
4669 |
msgid "Bill payment"
|
4670 |
msgstr "బిల్ చెల్లింపు"
|
4671 |
|
4672 |
-
#: inc/admin/admin.php:
|
4673 |
msgid "Sales"
|
4674 |
msgstr "అమ్మకాలు"
|
4675 |
|
4676 |
-
#: inc/admin/admin.php:
|
4677 |
msgid "Credit card support"
|
4678 |
msgstr "క్రెడిట్ కార్డ్ సహాయము"
|
4679 |
|
4680 |
-
#: inc/admin/admin.php:
|
4681 |
msgid "Emergency"
|
4682 |
msgstr "అత్యవసరo"
|
4683 |
|
4684 |
-
#: inc/admin/admin.php:
|
4685 |
msgid "Baggage tracking"
|
4686 |
msgstr "బ్యాగేజ్ ట్రాకింగ్"
|
4687 |
|
4688 |
-
#: inc/admin/admin.php:
|
4689 |
msgid "Roadside assistance"
|
4690 |
msgstr "రోడ్సైడ్ సహాయం"
|
4691 |
|
4692 |
-
#: inc/admin/admin.php:
|
4693 |
msgid "Package tracking"
|
4694 |
msgstr "ప్యాకేజీ ట్రాకింగ్"
|
4695 |
|
4696 |
-
#: inc/admin/admin.php:
|
4697 |
-
#: inc/admin/admin.php:
|
4698 |
msgid "None"
|
4699 |
msgstr "ఏమీ కాదు"
|
4700 |
|
4701 |
-
#: inc/admin/admin.php:
|
4702 |
msgid "Toll Free"
|
4703 |
msgstr "టోల్ ఫ్రీ"
|
4704 |
|
4705 |
-
#: inc/admin/admin.php:
|
4706 |
msgid "Hearing impaired supported"
|
4707 |
msgstr "వినికిడి బలహీనమైన మద్దతు"
|
4708 |
|
4709 |
-
#: inc/admin/admin.php:
|
4710 |
#, fuzzy
|
4711 |
#| msgid "Twitter Username"
|
4712 |
msgid "Twitter Page URL"
|
4713 |
msgstr "Twitter Username"
|
4714 |
|
4715 |
-
#: inc/admin/admin.php:
|
4716 |
msgid "Enable OG data"
|
4717 |
msgstr "OG డేటాను ప్రారంభించండి"
|
4718 |
|
4719 |
-
#: inc/admin/admin.php:
|
4720 |
msgid ""
|
4721 |
"Override every <strong>og:image</strong> tag with this default image (except if a custom og:image has "
|
4722 |
"already been set from the SEO metabox)."
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: inc/admin/admin.php:
|
4726 |
-
msgid "
|
4727 |
msgstr ""
|
4728 |
|
4729 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
4730 |
msgid ""
|
4731 |
"One or more Facebook Page IDs that are associated with a URL in order to enable link editing and instant "
|
4732 |
"article publishing."
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#: inc/admin/admin.php:
|
4736 |
msgid "How do I find my Facebook Page ID?"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
-
#: inc/admin/admin.php:
|
4740 |
msgid ""
|
4741 |
"The ID (or comma-separated list for properties that can accept multiple IDs) of an app, person using the "
|
4742 |
"app, or Page Graph API object."
|
4743 |
msgstr ""
|
4744 |
|
4745 |
-
#: inc/admin/admin.php:
|
4746 |
msgid ""
|
4747 |
"The Facebook app ID of the site's app. In order to use Facebook Insights you must add the app ID to your "
|
4748 |
"page. Insights lets you view analytics for traffic to your site from Facebook. Find the app ID in your App "
|
4749 |
-
"Dashboard. <a href=\"https://developers.facebook.com/apps/redirect/dashboard\"
|
4750 |
-
"here</a> <span class=\"dashicons dashicons-external\"></span>"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
-
#: inc/admin/admin.php:
|
4754 |
#, fuzzy
|
4755 |
#| msgid "How-to create a Facebook App ID"
|
4756 |
msgid "How to create a Facebook App ID"
|
4757 |
msgstr "ఎలా Facebook App ID ని సృష్టించాలి"
|
4758 |
|
4759 |
-
#: inc/admin/admin.php:
|
4760 |
msgid "Enable Twitter card"
|
4761 |
msgstr "ట్విట్టర్ కార్డ్ని ప్రారంభించండి"
|
4762 |
|
4763 |
-
#: inc/admin/admin.php:
|
4764 |
#, fuzzy
|
4765 |
#| msgid "Enable Twitter Card"
|
4766 |
msgid "Use OG if no Twitter Cards"
|
4767 |
msgstr "ట్విట్టర్ కార్డ్ని ప్రారంభించండి"
|
4768 |
|
4769 |
-
#: inc/admin/admin.php:
|
4770 |
msgid "Default"
|
4771 |
msgstr "డిఫాల్ట్"
|
4772 |
|
4773 |
-
#: inc/admin/admin.php:
|
4774 |
msgid "Large"
|
4775 |
msgstr "పెద్ద"
|
4776 |
|
4777 |
-
#: inc/admin/admin.php:
|
4778 |
#, fuzzy
|
4779 |
#| msgid "Enable Google Analytics tracking"
|
4780 |
msgid "Enable Google Analytics tracking (Global Site Tag: gtag.js)"
|
4781 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
4782 |
|
4783 |
-
#: inc/admin/admin.php:
|
4784 |
msgid "Enter your Tracking ID (UA-XXXX-XX)"
|
4785 |
msgstr "మీ ట్రాకింగ్ ID (UA-XXXX-XX) ను నమోదు చేయండి"
|
4786 |
|
4787 |
-
#: inc/admin/admin.php:
|
4788 |
msgid "Find your tracking ID"
|
4789 |
msgstr "మీ ట్రాకింగ్ ID ని కనుగొనండి"
|
4790 |
|
4791 |
-
#: inc/admin/admin.php:
|
4792 |
msgid "Request user's consent for analytics tracking (required by GDPR)"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
-
#: inc/admin/admin.php:
|
4796 |
msgid "<strong>The user must click the Accept button to allow tracking.</strong>"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
-
#: inc/admin/admin.php:
|
4800 |
msgid ""
|
4801 |
"User roles excluded from tracking will not see the consent message.<br> If you use a caching plugin, you "
|
4802 |
"have to exclude this JS file in your settings: <br><strong>/wp-content/plugins/wp-seopress/assets/js/"
|
4803 |
"seopress-cookies-ajax.js</strong> <br>and this cookie <strong>seopress-user-consent-accept</strong>"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: inc/admin/admin.php:
|
4807 |
msgid "Hook to add custom tracking code with user consent - new window"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
-
#: inc/admin/admin.php:
|
4811 |
msgid "Display and automatically accept the user‘s consent on page load (not fully GDPR)"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
-
#: inc/admin/admin.php:
|
4815 |
msgid "The previous option must be checked to use this."
|
4816 |
msgstr ""
|
4817 |
|
4818 |
-
#: inc/admin/admin.php:
|
4819 |
msgid "Enter your message (HTML allowed)"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: inc/admin/admin.php:
|
4823 |
msgid "This message will only appear if request user's consent is enabled."
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: inc/admin/admin.php:
|
4827 |
msgid "Hook to filter user consent message - new window"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
-
#: inc/admin/admin.php:
|
4831 |
msgid "HTML tags allowed: strong, em, br, a href / target"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: inc/admin/admin.php:
|
4835 |
msgid "Shortcode allowed to get the privacy page set in WordPress settings: [seopress_privacy_page]"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: inc/admin/admin.php:
|
4839 |
msgid "Accept"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: inc/admin/admin.php:
|
4843 |
#, fuzzy
|
4844 |
#| msgid "Change this settings"
|
4845 |
msgid "Change the button value"
|
4846 |
msgstr "ఈ సెట్టింగ్లను మార్చండి"
|
4847 |
|
4848 |
-
#: inc/admin/admin.php:
|
4849 |
#, fuzzy
|
4850 |
#| msgid "Default"
|
4851 |
msgid "default: X"
|
4852 |
msgstr "డిఫాల్ట్"
|
4853 |
|
4854 |
-
#: inc/admin/admin.php:
|
4855 |
#, fuzzy
|
4856 |
#| msgid "Change this settings"
|
4857 |
msgid "Change the close button value"
|
4858 |
msgstr "ఈ సెట్టింగ్లను మార్చండి"
|
4859 |
|
4860 |
-
#: inc/admin/admin.php:
|
4861 |
msgid "Bottom (default)"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
-
#: inc/admin/admin.php:
|
4865 |
msgid "Top"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
-
#: inc/admin/admin.php:
|
4869 |
msgid "Change the color of the cookie bar background"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: inc/admin/admin.php:
|
4873 |
msgid "Change the color of the cookie bar text"
|
4874 |
msgstr ""
|
4875 |
|
4876 |
-
#: inc/admin/admin.php:
|
4877 |
msgid "Change the color of the cookie bar link"
|
4878 |
msgstr ""
|
4879 |
|
4880 |
-
#: inc/admin/admin.php:
|
4881 |
msgid "Change the color of the cookie bar button background"
|
4882 |
msgstr ""
|
4883 |
|
4884 |
-
#: inc/admin/admin.php:
|
4885 |
msgid "Change the color of the cookie bar button hover background"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#: inc/admin/admin.php:
|
4889 |
msgid "Change the color of the cookie bar button"
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: inc/admin/admin.php:
|
4893 |
msgid "Change the color of the cookie bar button hover"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: inc/admin/admin.php:
|
4897 |
msgid "Change the color of the cookie bar secondary button background"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: inc/admin/admin.php:
|
4901 |
msgid "Change the color of the cookie bar secondary button hover background"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: inc/admin/admin.php:
|
4905 |
msgid "Change the color of the cookie bar secondary button"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: inc/admin/admin.php:
|
4909 |
msgid "Change the color of the cookie bar secondary button hover"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: inc/admin/admin.php:
|
4913 |
#, fuzzy
|
4914 |
#| msgid "Enter your Google News Keywords"
|
4915 |
msgid "Enter your Google Optimize container ID"
|
4916 |
msgstr "మీ Google వార్తల కీలక పదాలను నమోదు చేయండి"
|
4917 |
|
4918 |
-
#: inc/admin/admin.php:
|
4919 |
msgid "GTM-XXXXXXX"
|
4920 |
msgstr ""
|
4921 |
|
4922 |
-
#: inc/admin/admin.php:
|
4923 |
msgid "Google Optimize offers A/B testing, website testing & personalization tools."
|
4924 |
msgstr ""
|
4925 |
|
4926 |
-
#: inc/admin/admin.php:
|
4927 |
msgid "Enter your Google Ads conversion ID (eg: AW-123456789)"
|
4928 |
msgstr ""
|
4929 |
|
4930 |
-
#: inc/admin/admin.php:
|
4931 |
msgid "AW-XXXXXXXXX"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
-
#: inc/admin/admin.php:
|
4935 |
msgid "Paste your tracking code here like Google Tag Manager (head)"
|
4936 |
msgstr ""
|
4937 |
|
4938 |
-
#: inc/admin/admin.php:
|
4939 |
msgid "Additional tracking code field"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
-
#: inc/admin/admin.php:
|
4943 |
msgid "This code will be added in the head section of your page."
|
4944 |
msgstr ""
|
4945 |
|
4946 |
-
#: inc/admin/admin.php:
|
4947 |
msgid "Paste your tracking code here like Google Tag Manager (body)"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
-
#: inc/admin/admin.php:
|
4951 |
msgid "Additional tracking code field added to body"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
-
#: inc/admin/admin.php:
|
4955 |
msgid "This code will be added just after the opening body tag of your page."
|
4956 |
msgstr ""
|
4957 |
|
4958 |
-
#: inc/admin/admin.php:
|
4959 |
msgid ""
|
4960 |
"You don‘t see your code? Make sure to call <strong>wp_body_open();</strong> just after the opening body tag "
|
4961 |
"in your theme."
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: inc/admin/admin.php:
|
4965 |
msgid "Paste your tracking code here (body footer)"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#: inc/admin/admin.php:
|
4969 |
msgid "Additional tracking code field added to body footer"
|
4970 |
msgstr ""
|
4971 |
|
4972 |
-
#: inc/admin/admin.php:
|
4973 |
msgid "This code will be added just after the closing body tag of your page."
|
4974 |
msgstr ""
|
4975 |
|
4976 |
-
#: inc/admin/admin.php:
|
4977 |
msgid ""
|
4978 |
"A remarketing audience is a list of cookies or mobile-advertising IDs that represents a group of users you "
|
4979 |
"want to re-engage because of their likelihood to convert."
|
@@ -4981,7 +5175,7 @@ msgstr ""
|
|
4981 |
"రీమార్కెటింగ్ ప్రేక్షకులు cookies లేదా మొబైల్ ప్రకటన ID ల జాబితాగా చెప్పవచ్చు, ఇది వినియోగదారుల సమూహాన్ని ప్రతిబింబించేలా చేయడానికి మీరు కోరుకున్న "
|
4982 |
"వినియోగదారుల సమూహాన్ని ప్రతిబింబిస్తుంది."
|
4983 |
|
4984 |
-
#: inc/admin/admin.php:
|
4985 |
msgid ""
|
4986 |
"When a customer of Analytics requests IP address anonymization, Analytics anonymizes the address as soon as "
|
4987 |
"technically feasible at the earliest possible stage of the collection network."
|
@@ -4989,7 +5183,7 @@ msgstr ""
|
|
4989 |
"Analytics యొక్క కస్టమర్ ఐపి అడ్రస్ అనామలైజేషన్ అభ్యర్థి అయినప్పుడు, అనలిటిక్స్ వెంటనే ఈ నెట్వర్క్ను సేకరణ నెట్వర్క్ యొక్క సాధ్యమైన దశలో సాంకేతికంగా "
|
4990 |
"సాధ్యమవుతుంది."
|
4991 |
|
4992 |
-
#: inc/admin/admin.php:
|
4993 |
msgid ""
|
4994 |
"Enhanced Link Attribution improves the accuracy of your In-Page Analytics report by automatically "
|
4995 |
"differentiating between multiple links to the same URL on a single page by using link element IDs."
|
@@ -4999,7 +5193,7 @@ msgstr ""
|
|
4999 |
"Analytics report by automatically differentiating between multiple links to the same URL on a single page "
|
5000 |
"by using link element IDs.)"
|
5001 |
|
5002 |
-
#: inc/admin/admin.php:
|
5003 |
msgid ""
|
5004 |
"Cross domain tracking makes it possible for Analytics to see sessions on two related sites (such as an "
|
5005 |
"ecommerce site and a separate shopping cart site) as a single session. This is sometimes called site "
|
@@ -5008,189 +5202,96 @@ msgstr ""
|
|
5008 |
"క్రాస్ డొమైన్ ట్రాకింగ్ అనేది ఒకే session రెండు సంబంధిత సైట్లలో session (ఇకామర్స్ సైట్ మరియు ఒక ప్రత్యేక షాపింగ్ కార్ట్ సైట్ వంటివి) session "
|
5009 |
"చూడడానికి సాధ్యమవుతుంది. దీనిని కొన్నిసార్లు సైట్ లింకింగ్ అని పిలుస్తారు."
|
5010 |
|
5011 |
-
#: inc/admin/admin.php:
|
5012 |
msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: inc/admin/admin.php:
|
5016 |
msgid "Enable download tracking"
|
5017 |
msgstr "డౌన్లోడ్ ట్రాకింగ్ను ప్రారంభించండి"
|
5018 |
|
5019 |
-
#: inc/admin/admin.php:
|
5020 |
msgid "pdf|docx|pptx|zip"
|
5021 |
msgstr "pdf|docx|pptx|zip"
|
5022 |
|
5023 |
-
#: inc/admin/admin.php:
|
5024 |
msgid "Separate each file type extensions with a pipe \"|\""
|
5025 |
msgstr "ప్రతి ఫైల్ రకం ఎక్స్టెన్షన్లను విభజించండి పైప్తో \"|\""
|
5026 |
|
5027 |
-
#: inc/admin/admin.php:
|
5028 |
#, fuzzy
|
5029 |
#| msgid "Enable affiliate / outbound tracking"
|
5030 |
msgid "Enable affiliate/outbound tracking"
|
5031 |
msgstr "అనుబంధ / అవుట్బౌండ్ ట్రాకింగ్ను ప్రారంభించండి"
|
5032 |
|
5033 |
-
#: inc/admin/admin.php:
|
5034 |
msgid "aff|go|out"
|
5035 |
msgstr "aff|go|out"
|
5036 |
|
5037 |
-
#: inc/admin/admin.php:
|
5038 |
msgid "Separate each keyword with a pipe \"|\""
|
5039 |
msgstr "Separate each keyword with a pipe \"|\""
|
5040 |
|
5041 |
-
#: inc/admin/admin.php:
|
5042 |
-
#: inc/admin/admin.php:
|
5043 |
-
|
|
|
|
|
5044 |
msgstr "కస్టమ్ డైమెన్షన్ # 1"
|
5045 |
|
5046 |
-
#: inc/admin/admin.php:
|
5047 |
-
#: inc/admin/admin.php:5379
|
5048 |
-
msgid "Custom Dimension #2"
|
5049 |
-
msgstr "కస్టమ్ డైమెన్షన్ #2"
|
5050 |
-
|
5051 |
-
#: inc/admin/admin.php:5074 inc/admin/admin.php:5151 inc/admin/admin.php:5228 inc/admin/admin.php:5305
|
5052 |
-
#: inc/admin/admin.php:5382
|
5053 |
-
msgid "Custom Dimension #3"
|
5054 |
-
msgstr "కస్టమ్ డైమెన్షన్ #3"
|
5055 |
-
|
5056 |
-
#: inc/admin/admin.php:5077 inc/admin/admin.php:5154 inc/admin/admin.php:5231 inc/admin/admin.php:5308
|
5057 |
-
#: inc/admin/admin.php:5385
|
5058 |
-
msgid "Custom Dimension #4"
|
5059 |
-
msgstr "కస్టమ్ డైమెన్షన్ #4"
|
5060 |
-
|
5061 |
-
#: inc/admin/admin.php:5080 inc/admin/admin.php:5157 inc/admin/admin.php:5234 inc/admin/admin.php:5311
|
5062 |
-
#: inc/admin/admin.php:5388
|
5063 |
-
msgid "Custom Dimension #5"
|
5064 |
-
msgstr "కస్టమ్ డైమెన్షన్ #5"
|
5065 |
-
|
5066 |
-
#: inc/admin/admin.php:5083 inc/admin/admin.php:5160 inc/admin/admin.php:5237 inc/admin/admin.php:5314
|
5067 |
-
#: inc/admin/admin.php:5391
|
5068 |
-
msgid "Custom Dimension #6"
|
5069 |
-
msgstr "కస్టమ్ డైమెన్షన్ #6"
|
5070 |
-
|
5071 |
-
#: inc/admin/admin.php:5086 inc/admin/admin.php:5163 inc/admin/admin.php:5240 inc/admin/admin.php:5317
|
5072 |
-
#: inc/admin/admin.php:5394
|
5073 |
-
msgid "Custom Dimension #7"
|
5074 |
-
msgstr "కస్టమ్ డైమెన్షన్ #7"
|
5075 |
-
|
5076 |
-
#: inc/admin/admin.php:5089 inc/admin/admin.php:5166 inc/admin/admin.php:5243 inc/admin/admin.php:5320
|
5077 |
-
#: inc/admin/admin.php:5397
|
5078 |
-
msgid "Custom Dimension #8"
|
5079 |
-
msgstr "కస్టమ్ డైమెన్షన్ #8"
|
5080 |
-
|
5081 |
-
#: inc/admin/admin.php:5092 inc/admin/admin.php:5169 inc/admin/admin.php:5246 inc/admin/admin.php:5323
|
5082 |
-
#: inc/admin/admin.php:5400
|
5083 |
-
msgid "Custom Dimension #9"
|
5084 |
-
msgstr "కస్టమ్ డైమెన్షన్ #9"
|
5085 |
-
|
5086 |
-
#: inc/admin/admin.php:5095 inc/admin/admin.php:5172 inc/admin/admin.php:5249 inc/admin/admin.php:5326
|
5087 |
-
#: inc/admin/admin.php:5403
|
5088 |
-
msgid "Custom Dimension #10"
|
5089 |
-
msgstr "కస్టమ్ డైమెన్షన్ #10"
|
5090 |
-
|
5091 |
-
#: inc/admin/admin.php:5098 inc/admin/admin.php:5175 inc/admin/admin.php:5252 inc/admin/admin.php:5329
|
5092 |
-
#: inc/admin/admin.php:5406
|
5093 |
-
msgid "Custom Dimension #11"
|
5094 |
-
msgstr "కస్టమ్ డైమెన్షన్ #11"
|
5095 |
-
|
5096 |
-
#: inc/admin/admin.php:5101 inc/admin/admin.php:5178 inc/admin/admin.php:5255 inc/admin/admin.php:5332
|
5097 |
-
#: inc/admin/admin.php:5409
|
5098 |
-
msgid "Custom Dimension #12"
|
5099 |
-
msgstr "కస్టమ్ డైమెన్షన్ #12"
|
5100 |
-
|
5101 |
-
#: inc/admin/admin.php:5104 inc/admin/admin.php:5181 inc/admin/admin.php:5258 inc/admin/admin.php:5335
|
5102 |
-
#: inc/admin/admin.php:5412
|
5103 |
-
msgid "Custom Dimension #13"
|
5104 |
-
msgstr "కస్టమ్ డైమెన్షన్ #13"
|
5105 |
-
|
5106 |
-
#: inc/admin/admin.php:5107 inc/admin/admin.php:5184 inc/admin/admin.php:5261 inc/admin/admin.php:5338
|
5107 |
-
#: inc/admin/admin.php:5415
|
5108 |
-
msgid "Custom Dimension #14"
|
5109 |
-
msgstr "కస్టమ్ డైమెన్షన్ #14"
|
5110 |
-
|
5111 |
-
#: inc/admin/admin.php:5110 inc/admin/admin.php:5187 inc/admin/admin.php:5264 inc/admin/admin.php:5341
|
5112 |
-
#: inc/admin/admin.php:5418
|
5113 |
-
msgid "Custom Dimension #15"
|
5114 |
-
msgstr "కస్టమ్ డైమెన్షన్ #15"
|
5115 |
-
|
5116 |
-
#: inc/admin/admin.php:5113 inc/admin/admin.php:5190 inc/admin/admin.php:5267 inc/admin/admin.php:5344
|
5117 |
-
#: inc/admin/admin.php:5421
|
5118 |
-
msgid "Custom Dimension #16"
|
5119 |
-
msgstr "కస్టమ్ డైమెన్షన్ #16"
|
5120 |
-
|
5121 |
-
#: inc/admin/admin.php:5116 inc/admin/admin.php:5193 inc/admin/admin.php:5270 inc/admin/admin.php:5347
|
5122 |
-
#: inc/admin/admin.php:5424
|
5123 |
-
msgid "Custom Dimension #17"
|
5124 |
-
msgstr "కస్టమ్ డైమెన్షన్ #17"
|
5125 |
-
|
5126 |
-
#: inc/admin/admin.php:5119 inc/admin/admin.php:5196 inc/admin/admin.php:5273 inc/admin/admin.php:5350
|
5127 |
-
#: inc/admin/admin.php:5427
|
5128 |
-
msgid "Custom Dimension #18"
|
5129 |
-
msgstr "కస్టమ్ డైమెన్షన్ #18"
|
5130 |
-
|
5131 |
-
#: inc/admin/admin.php:5122 inc/admin/admin.php:5199 inc/admin/admin.php:5276 inc/admin/admin.php:5353
|
5132 |
-
#: inc/admin/admin.php:5430
|
5133 |
-
msgid "Custom Dimension #19"
|
5134 |
-
msgstr "కస్టమ్ డైమెన్షన్ #19"
|
5135 |
-
|
5136 |
-
#: inc/admin/admin.php:5125 inc/admin/admin.php:5202 inc/admin/admin.php:5279 inc/admin/admin.php:5356
|
5137 |
-
#: inc/admin/admin.php:5433
|
5138 |
-
msgid "Custom Dimension #20"
|
5139 |
-
msgstr "కస్టమ్ డైమెన్షన్ #20"
|
5140 |
-
|
5141 |
-
#: inc/admin/admin.php:5451
|
5142 |
msgid "Enable Matomo tracking (Matomo account required)"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
-
#: inc/admin/admin.php:
|
5146 |
msgid "Enter \"example\" if you Matomo account URL is \"example.matomo.cloud\""
|
5147 |
msgstr ""
|
5148 |
|
5149 |
-
#: inc/admin/admin.php:
|
5150 |
#, fuzzy
|
5151 |
#| msgid "Soundcloud URL"
|
5152 |
msgid "Matomo Cloud URL"
|
5153 |
msgstr "Soundcloud URL"
|
5154 |
|
5155 |
-
#: inc/admin/admin.php:
|
5156 |
msgid "Enter only the <strong>host</strong> like this example.matomo.cloud"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
-
#: inc/admin/admin.php:
|
5160 |
#, fuzzy
|
5161 |
#| msgid "Enter your title"
|
5162 |
msgid "Enter your site ID here"
|
5163 |
msgstr "మీ శీర్షికను నమోదు చేయండి"
|
5164 |
|
5165 |
-
#: inc/admin/admin.php:
|
5166 |
msgid "Matomo Site ID"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
-
#: inc/admin/admin.php:
|
5170 |
msgid ""
|
5171 |
"To find your site ID, go to your <strong>Matomo Cloud account, Websites, Manage page</strong>. Look at "
|
5172 |
"\"Site ID\" on the right part."
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: inc/admin/admin.php:
|
5176 |
msgid "Tracking one domain and its subdomains in the same website"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: inc/admin/admin.php:
|
5180 |
msgid "If one visitor visits x.example.com and y.example.com, they will be counted as a unique visitor."
|
5181 |
msgstr ""
|
5182 |
|
5183 |
-
#: inc/admin/admin.php:
|
5184 |
msgid "Prepend the site domain to the page title when tracking"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
-
#: inc/admin/admin.php:
|
5188 |
msgid ""
|
5189 |
"If someone visits the 'About' page on blog.example.com it will be recorded as 'blog / About'. This is the "
|
5190 |
"easiest way to get an overview of your traffic by sub-domain."
|
5191 |
msgstr ""
|
5192 |
|
5193 |
-
#: inc/admin/admin.php:
|
5194 |
msgid ""
|
5195 |
"By default, the visitor ID that identifies a unique visitor is stored in the browser's first party cookies "
|
5196 |
"which can only be accessed by pages on the same domain. Enabling cross domain linking lets you track all "
|
@@ -5199,270 +5300,292 @@ msgid ""
|
|
5199 |
"parameter pk_vid forwarding the Visitor ID."
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: inc/admin/admin.php:
|
5203 |
msgid "Enable client side DoNotTrack detection"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#: inc/admin/admin.php:
|
5207 |
msgid "Tracking requests will not be sent if visitors do not wish to be tracked."
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: inc/admin/admin.php:
|
5211 |
msgid ""
|
5212 |
"Disables all first party cookies. Existing Matomo cookies for this website will be deleted on the next page "
|
5213 |
"view."
|
5214 |
msgstr ""
|
5215 |
|
5216 |
-
#: inc/admin/admin.php:
|
5217 |
#, fuzzy
|
5218 |
#| msgid "Enable download tracking"
|
5219 |
msgid "Enabling Download & Outlink tracking"
|
5220 |
msgstr "డౌన్లోడ్ ట్రాకింగ్ను ప్రారంభించండి"
|
5221 |
|
5222 |
-
#: inc/admin/admin.php:
|
5223 |
msgid ""
|
5224 |
"By default, any file ending with one of these extensions will be considered a \"download\" in the Matomo "
|
5225 |
"interface: 7z|aac|arc|arj|apk|asf|asx|avi|bin|bz|bz2|csv|deb|dmg|doc|\n"
|
5226 |
-
"
|
5227 |
-
"
|
5228 |
-
"
|
5229 |
-
"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
-
#: inc/admin/admin.php:
|
5233 |
msgid "Redirect attachment pages to post parent (or homepage if none)"
|
5234 |
msgstr "Redirect attachment pages to post parent (or homepage if none)"
|
5235 |
|
5236 |
-
#: inc/admin/admin.php:
|
5237 |
msgid ""
|
5238 |
"If this option is checked, it will take precedence over the redirection of attachments to the post's parent."
|
5239 |
msgstr ""
|
5240 |
|
5241 |
-
#: inc/admin/admin.php:
|
5242 |
msgid "Remove ?replytocom link in source code"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: inc/admin/admin.php:
|
5246 |
msgid "When sending an image file, automatically set the title based on the filename"
|
5247 |
msgstr ""
|
5248 |
|
5249 |
-
#: inc/admin/admin.php:
|
5250 |
msgid "When sending an image file, automatically set the alternative text based on the filename"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
-
#: inc/admin/admin.php:
|
5254 |
msgid ""
|
5255 |
"We recommend Image SEO plugin to optimize your image ALT texts and names for Search Engines using AI and "
|
5256 |
"Machine Learning. Starting from just €4.99."
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5260 |
msgid "When sending an image file, automatically set the caption based on the filename"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
-
#: inc/admin/admin.php:
|
5264 |
msgid "When sending an image file, automatically set the description based on the filename"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
-
#: inc/admin/admin.php:
|
5268 |
#, fuzzy
|
5269 |
#| msgid "Twitter description"
|
5270 |
msgid "Add TINYMCE editor to term description"
|
5271 |
msgstr "Twitter వివరణ"
|
5272 |
|
5273 |
-
#: inc/admin/admin.php:
|
5274 |
msgid "You have to flush your permalinks each time you change this settings"
|
5275 |
msgstr ""
|
5276 |
|
5277 |
-
#: inc/admin/admin.php:
|
5278 |
msgid ""
|
5279 |
"You must check this box if the structure of your permalinks DOES NOT contain a slash at the end (eg: /"
|
5280 |
"%postname%)"
|
5281 |
msgstr "మీ permalinks నిర్మాణం చివరిలో స్లాష్ను కలిగి ఉండకపోతే మీరు దీని ఎంచుకోవాలి (ఉదా: /% postname%)"
|
5282 |
|
5283 |
-
#: inc/admin/admin.php:
|
5284 |
msgid "Remove WordPress meta generator in source code"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: inc/admin/admin.php:
|
5288 |
msgid "Remove hentry post class to prevent Google from seeing this as structured data (schema)"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
-
#: inc/admin/admin.php:
|
5292 |
msgid "Remove comment author URL in comments if the website is filled from profile page"
|
5293 |
msgstr ""
|
5294 |
|
5295 |
-
#: inc/admin/admin.php:
|
5296 |
msgid "Remove website field from comment form to reduce spam"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#: inc/admin/admin.php:
|
5300 |
msgid "Remove WordPress shortlink meta tag in source code (eg:"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
-
#: inc/admin/admin.php:
|
5304 |
msgid "Remove Windows Live Writer meta tag in source code (eg:"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
-
#: inc/admin/admin.php:
|
5308 |
msgid "Remove Really Simple Discovery meta tag in source code (eg:"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
-
#: inc/admin/admin.php:
|
5312 |
msgid "Enter Google meta value site verification"
|
5313 |
msgstr "Google మెటా విలువ సైట్ ధృవీకరణను నమోదు చేయండి"
|
5314 |
|
5315 |
-
#: inc/admin/admin.php:
|
5316 |
msgid ""
|
5317 |
"If your site is already verified in <strong>Google Search Console</strong>, you can leave this field empty."
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: inc/admin/admin.php:
|
5321 |
msgid "Enter Bing meta value site verification"
|
5322 |
msgstr "Bing మెటా విలువ సైట్ ధృవీకరణను నమోదు చేయండి"
|
5323 |
|
5324 |
-
#: inc/admin/admin.php:
|
5325 |
msgid ""
|
5326 |
"If your site is already verified in <strong>Bing Webmaster tools</strong>, you can leave this field empty."
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: inc/admin/admin.php:
|
5330 |
msgid "Enter Pinterest meta value site verification"
|
5331 |
msgstr "Pinterest మెటా విలువ సైట్ ధృవీకరణను నమోదు చేయండి"
|
5332 |
|
5333 |
-
#: inc/admin/admin.php:
|
5334 |
msgid "Enter Yandex meta value site verification"
|
5335 |
msgstr "Yandex మెటా విలువ సైట్ ధృవీకరణను నమోదు చేయండి"
|
5336 |
|
5337 |
-
#: inc/admin/admin.php:
|
5338 |
#, fuzzy
|
5339 |
#| msgid "Remove SEOPress from Admin Bar in backend"
|
5340 |
msgid "Remove SEOPress from Admin Bar in backend and frontend"
|
5341 |
msgstr "బ్యాకెండ్ లో అడ్మిన్ బార్ నుండి SEOPress తొలగించు"
|
5342 |
|
5343 |
-
#: inc/admin/admin.php:
|
5344 |
msgid "High priority (top)"
|
5345 |
msgstr "అధిక ప్రాధాన్యత (పైన)"
|
5346 |
|
5347 |
-
#: inc/admin/admin.php:
|
5348 |
msgid "Normal priority (default)"
|
5349 |
msgstr "సాధారణ ప్రాధాన్యత (డిఫాల్ట్)"
|
5350 |
|
5351 |
-
#: inc/admin/admin.php:
|
5352 |
msgid "Low priority"
|
5353 |
msgstr "తక్కువ ప్రాధాన్యత"
|
5354 |
|
5355 |
-
#: inc/admin/admin.php:
|
5356 |
#, fuzzy
|
5357 |
#| msgid "Normal priority (default)"
|
5358 |
msgid "Automatic tab (default)"
|
5359 |
msgstr "సాధారణ ప్రాధాన్యత (డిఫాల్ట్)"
|
5360 |
|
5361 |
-
#: inc/admin/admin.php:
|
5362 |
msgid "Manual tab"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: inc/admin/admin.php:
|
5366 |
msgid "Hide Notifications Center in SEOPress Dashboard page"
|
5367 |
msgstr "SEOPress డాష్బోర్డ్ పేజీ లో ప్రకటనలు సెంటర్ ని దాచు, ఈ బటన్ నొక్కండి"
|
5368 |
|
5369 |
-
#: inc/admin/admin.php:
|
5370 |
#, fuzzy
|
5371 |
#| msgid "Hide Notifications Center in SEOPress Dashboard page"
|
5372 |
msgid "Hide SEO tools in SEOPress Dashboard page"
|
5373 |
msgstr "SEOPress డాష్బోర్డ్ పేజీ లో ప్రకటనలు సెంటర్ ని దాచు, ఈ బటన్ నొక్కండి"
|
5374 |
|
5375 |
-
#: inc/admin/admin.php:
|
5376 |
#, fuzzy
|
5377 |
#| msgid "Hide Notifications Center in SEOPress Dashboard page"
|
5378 |
msgid "Hide Useful Links in SEOPress dashboard page"
|
5379 |
msgstr "SEOPress డాష్బోర్డ్ పేజీ లో ప్రకటనలు సెంటర్ ని దాచు, ఈ బటన్ నొక్కండి"
|
5380 |
|
5381 |
-
#: inc/admin/admin.php:
|
5382 |
msgid "Add title column"
|
5383 |
msgstr "టైటిల్ కాలమ్ని జోడించండి"
|
5384 |
|
5385 |
-
#: inc/admin/admin.php:
|
5386 |
msgid "Add meta description column"
|
5387 |
msgstr "మెటా వివరణ నిలువు వరుసను జోడించండి"
|
5388 |
|
5389 |
-
#: inc/admin/admin.php:
|
5390 |
#, fuzzy
|
5391 |
#| msgid "Add meta description column"
|
5392 |
msgid "Add redirection enable column"
|
5393 |
msgstr "మెటా వివరణ నిలువు వరుసను జోడించండి"
|
5394 |
|
5395 |
-
#: inc/admin/admin.php:
|
5396 |
#, fuzzy
|
5397 |
#| msgid "Add title column"
|
5398 |
msgid "Add redirection URL column"
|
5399 |
msgstr "టైటిల్ కాలమ్ని జోడించండి"
|
5400 |
|
5401 |
-
#: inc/admin/admin.php:
|
5402 |
#, fuzzy
|
5403 |
#| msgid "Add title column"
|
5404 |
msgid "Add canonical URL column"
|
5405 |
msgstr "టైటిల్ కాలమ్ని జోడించండి"
|
5406 |
|
5407 |
-
#: inc/admin/admin.php:
|
5408 |
#, fuzzy
|
5409 |
#| msgid "Add title column"
|
5410 |
msgid "Add target keyword column"
|
5411 |
msgstr "టైటిల్ కాలమ్ని జోడించండి"
|
5412 |
|
5413 |
-
#: inc/admin/admin.php:
|
5414 |
msgid "Display noindex status"
|
5415 |
msgstr "Noindex స్థితి ప్రదర్శించు"
|
5416 |
|
5417 |
-
#: inc/admin/admin.php:
|
5418 |
msgid "Display nofollow status"
|
5419 |
msgstr "నోఫాల్లో స్థితి ప్రదర్శించు"
|
5420 |
|
5421 |
-
#: inc/admin/admin.php:
|
5422 |
msgid "Display total number of words in content"
|
5423 |
msgstr "కంటెంట్లోని మొత్తం పదాల సంఖ్యను ప్రదర్శించండి"
|
5424 |
|
5425 |
-
#: inc/admin/admin.php:
|
5426 |
msgid "Display W3C column to check code quality"
|
5427 |
msgstr "కోడ్ నాణ్యత తనిఖీ W3C కాలమ్ ప్రదర్శించు"
|
5428 |
|
5429 |
-
#: inc/admin/admin.php:
|
5430 |
msgid "Display Page Speed column to check performances"
|
5431 |
msgstr "ప్రదర్శనలు తనిఖీ పేజీ స్పీడ్ కాలమ్ ప్రదర్శించు"
|
5432 |
|
5433 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5434 |
msgid "Display Content Analysis results column (\"Good\" or \"Should be improved\")"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: inc/admin/admin.php:
|
5438 |
#, fuzzy
|
5439 |
#| msgid "Remove Genesis SEO Metaboxe"
|
5440 |
msgid "Remove Genesis SEO Metabox"
|
5441 |
msgstr "Genesis SEO Metabox తొలగించు"
|
5442 |
|
5443 |
-
#: inc/admin/admin.php:
|
5444 |
#, fuzzy
|
5445 |
#| msgid "Remove Genesis SEO Metaboxe"
|
5446 |
msgid "Remove Genesis SEO link in WP Admin Menu"
|
5447 |
msgstr "Genesis SEO Metabox తొలగించు"
|
5448 |
|
5449 |
-
#: inc/admin/admin.php:
|
5450 |
msgid "Remove the advice if None schema selected"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: inc/admin/admin.php:
|
5454 |
msgid "Hook to filter structured data types metabox call by post type - new window"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
-
#: inc/admin/adminbar.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5458 |
msgid "BOT"
|
5459 |
msgstr "BOT"
|
5460 |
|
5461 |
-
#: inc/admin/adminbar.php:
|
5462 |
msgid "Broken Links"
|
5463 |
msgstr "బ్రోకెన్ లింక్స్"
|
5464 |
|
5465 |
-
#: inc/admin/adminbar.php:
|
5466 |
msgid "Configuration wizard"
|
5467 |
msgstr ""
|
5468 |
|
@@ -5470,122 +5593,206 @@ msgstr ""
|
|
5470 |
msgid "A redirect is active for this URL. Turn it off to get the Google preview and content analysis."
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: inc/admin/ajax.php:
|
5474 |
msgid "To get your Google snippet preview, publish your post!"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5478 |
msgid "Need help?"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
-
#: inc/functions/options-advanced-admin.php:
|
5482 |
msgid "WARNING"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
-
#: inc/functions/options-advanced-admin.php:
|
5486 |
msgid ""
|
5487 |
"Do NOT change your permalink structure on a production site. Changing URLs can severely damage your SEO."
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: inc/functions/options-advanced-admin.php:
|
5491 |
msgid ""
|
5492 |
"URL rewriting is NOT enabled on your site. Select a permalink structure that is optimized for SEO (NOT "
|
5493 |
"Plain)."
|
5494 |
msgstr ""
|
5495 |
|
5496 |
-
#: inc/functions/options-advanced-admin.php:
|
5497 |
msgid "Title tag"
|
5498 |
msgstr "శీర్షిక ట్యాగ్"
|
5499 |
|
5500 |
-
#: inc/functions/options-advanced-admin.php:
|
5501 |
msgid "Meta Desc."
|
5502 |
msgstr "మెటా DESC."
|
5503 |
|
5504 |
-
#: inc/functions/options-advanced-admin.php:
|
5505 |
#, fuzzy
|
5506 |
#| msgid "Redirection"
|
5507 |
msgid "Redirect?"
|
5508 |
msgstr "Redirection (మళ్లింపు)"
|
5509 |
|
5510 |
-
#: inc/functions/options-advanced-admin.php:
|
5511 |
#, fuzzy
|
5512 |
#| msgid "Canonical URL"
|
5513 |
msgid "Canonical"
|
5514 |
msgstr "Canonical URL"
|
5515 |
|
5516 |
-
#: inc/functions/options-advanced-admin.php:
|
5517 |
msgid "Target Kw"
|
5518 |
msgstr ""
|
5519 |
|
5520 |
-
#: inc/functions/options-advanced-admin.php:
|
5521 |
msgid "Noindex?"
|
5522 |
msgstr "Noindex?"
|
5523 |
|
5524 |
-
#: inc/functions/options-advanced-admin.php:
|
5525 |
msgid "Nofollow?"
|
5526 |
msgstr "Nofollow?"
|
5527 |
|
5528 |
-
#: inc/functions/options-advanced-admin.php:
|
5529 |
msgid "Score"
|
5530 |
msgstr ""
|
5531 |
|
5532 |
-
#: inc/functions/options-advanced-admin.php:
|
5533 |
msgid "Words"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#: inc/functions/options-advanced-admin.php:
|
5537 |
msgid "W3C check"
|
5538 |
msgstr "W3C చెక్"
|
5539 |
|
5540 |
-
#: inc/functions/options-advanced-admin.php:
|
5541 |
msgid "Page Speed"
|
5542 |
msgstr "పేజీ వేగం"
|
5543 |
|
5544 |
-
#: inc/functions/options-advanced-admin.php:
|
5545 |
msgid "Check code quality of this page"
|
5546 |
msgstr "ఈ పేజీ యొక్క కోడ్ నాణ్యత తనిఖీ చేయండి"
|
5547 |
|
5548 |
-
#: inc/functions/options-advanced-admin.php:
|
5549 |
#, fuzzy
|
5550 |
#| msgid "Analyse this page with Google Page Speed"
|
5551 |
msgid "Analyze this page with Google Page Speed"
|
5552 |
msgstr "ఈ పేజీని Google Page Speed తో విశ్లేషించండి"
|
5553 |
|
5554 |
-
#: inc/functions/options-advanced-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5555 |
msgid "Enable noindex"
|
5556 |
msgstr "Noindex ని ప్రారంభించండి"
|
5557 |
|
5558 |
-
#: inc/functions/options-advanced-admin.php:
|
5559 |
msgid "Enable index"
|
5560 |
msgstr "సూచికను ప్రారంభించు"
|
5561 |
|
5562 |
-
#: inc/functions/options-advanced-admin.php:
|
5563 |
msgid "Enable nofollow"
|
5564 |
msgstr "నోఫాల్లోని ప్రారంభించండి"
|
5565 |
|
5566 |
-
#: inc/functions/options-advanced-admin.php:
|
5567 |
msgid "Enable follow"
|
5568 |
msgstr "అనుసరించు ప్రారంభించు"
|
5569 |
|
5570 |
-
#: inc/functions/options-advanced-admin.php:
|
5571 |
#, fuzzy
|
5572 |
#| msgid "Enable redirection?"
|
5573 |
msgid "Enable redirection"
|
5574 |
msgstr "Enable redirection? (మళ్లింపును ప్రారంభించాలా?)"
|
5575 |
|
5576 |
-
#: inc/functions/options-advanced-admin.php:
|
5577 |
#, fuzzy
|
5578 |
#| msgid "Enable redirection?"
|
5579 |
msgid "Disable redirection"
|
5580 |
msgstr "Enable redirection? (మళ్లింపును ప్రారంభించాలా?)"
|
5581 |
|
5582 |
-
#: inc/functions/options-advanced-admin.php:
|
5583 |
#, fuzzy
|
5584 |
#| msgid "Tag Description"
|
5585 |
msgid "Description"
|
5586 |
msgstr "ట్యాగ్ వివరణ"
|
5587 |
|
5588 |
-
#: inc/functions/options-advanced-admin.php:
|
5589 |
msgid "The description is not prominent by default; however, some themes may show it."
|
5590 |
msgstr ""
|
5591 |
|
@@ -5603,91 +5810,221 @@ msgstr ""
|
|
5603 |
msgid "X"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: inc/functions/options-google-analytics.php:
|
5607 |
#, fuzzy
|
5608 |
#| msgid "Track Authors"
|
5609 |
msgid "Authors"
|
5610 |
msgstr "Track Authors"
|
5611 |
|
5612 |
-
#: inc/functions/options-google-analytics.php:
|
5613 |
#, fuzzy
|
5614 |
#| msgid "Track Categories"
|
5615 |
msgid "Categories"
|
5616 |
msgstr "Track Categories"
|
5617 |
|
5618 |
-
#: inc/functions/options-google-analytics.php:
|
5619 |
msgid "Tags"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
-
#: inc/functions/options-google-analytics.php:
|
5623 |
#, fuzzy
|
5624 |
#| msgid "Post Types"
|
5625 |
msgid "Post types"
|
5626 |
msgstr "పోస్ట్ రకాలు"
|
5627 |
|
5628 |
-
#: inc/functions/options-google-analytics.php:
|
5629 |
msgid "Connected users"
|
5630 |
msgstr ""
|
5631 |
|
5632 |
-
#: inc/functions/options-import-export.php:58 inc/functions/options-import-export.php:
|
5633 |
msgid "Please upload a valid .json file"
|
5634 |
msgstr "దయచేసి ఒక చెల్లుబాటు అయ్యే .json ఫైల్ను అప్లోడ్ చేయండి"
|
5635 |
|
5636 |
#: inc/functions/options-import-export.php:63 inc/functions/options-import-export.php:132
|
5637 |
-
#: inc/functions/options-import-export.php:
|
5638 |
-
#: inc/functions/options-import-export.php:
|
5639 |
msgid "Please upload a file to import"
|
5640 |
msgstr "దయచేసి దిగుమతి చేయడానికి ఒక ఫైల్ను అప్లోడ్ చేయండి"
|
5641 |
|
5642 |
-
#: inc/functions/options-import-export.php:128 inc/functions/options-import-export.php:
|
5643 |
msgid "Please upload a valid .csv file"
|
5644 |
msgstr "దయచేసి చెల్లుబాటు అయ్యే ఒక .csv ఫైల్ను అప్లోడ్ చేయండి"
|
5645 |
|
5646 |
-
#: inc/functions/options-import-export.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5647 |
#, fuzzy
|
5648 |
#| msgid "Please upload a valid .csv file"
|
5649 |
msgid "Please upload a valid .txt file"
|
5650 |
msgstr "దయచేసి చెల్లుబాటు అయ్యే ఒక .csv ఫైల్ను అప్లోడ్ చేయండి"
|
5651 |
|
5652 |
-
#: inc/functions/sitemap/template-xml-sitemaps-xsl.php:
|
5653 |
msgid "XML Sitemaps"
|
5654 |
msgstr "XML సైట్ మ్యాప్లు"
|
5655 |
|
5656 |
-
#: inc/functions/sitemap/template-xml-sitemaps-xsl.php:
|
5657 |
#, php-format
|
5658 |
msgid "This XML Sitemap Index file contains %s sitemaps."
|
5659 |
msgstr ""
|
5660 |
|
5661 |
-
#: inc/functions/sitemap/template-xml-sitemaps-xsl.php:
|
5662 |
#, php-format
|
5663 |
msgid "This XML Sitemap contains %s URL(s)."
|
5664 |
msgstr ""
|
5665 |
|
5666 |
-
#: inc/functions/
|
|
|
|
|
|
|
|
|
|
|
|
|
5667 |
#, php-format
|
5668 |
msgid "Page %d of %2$d"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
-
#: seopress.php:
|
5672 |
msgid "has been successfully updated!"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#: seopress.php:
|
5676 |
msgid "You like SEOPress? Don't forget to rate it 5 stars!"
|
5677 |
msgstr "మీరు SEOPress నచ్చిందా? 5 నక్షత్రాలు తో రేటింగ్ ఇవ్వండి!"
|
5678 |
|
5679 |
-
#: seopress.php:
|
5680 |
msgid "Docs"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#: seopress.php:
|
5684 |
msgid "Configuration Wizard"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#: seopress.php:
|
5688 |
msgid "GO PRO!"
|
5689 |
msgstr "GO PRO!"
|
5690 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5691 |
#~ msgid "SEOPress BOT - Broken links"
|
5692 |
#~ msgstr "SEOPress BOT - (బోట్ SEO - బ్రోకెన్ లింకులు)"
|
5693 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: SEOPress 2.1.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
|
7 |
+
"POT-Creation-Date: 2020-09-13 13:51+0200\n"
|
8 |
+
"PO-Revision-Date: 2020-09-13 13:51+0200\n"
|
9 |
"Last-Translator: Manojkumar(INDIA) <Manojkumar09051993@gmail.com>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: te_IN\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 2.4.1\n"
|
16 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_x;esc_attr_e;esc_attr__;esc_html__;esc_html_e\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: assets/js/seopress-dashboard.js:38
|
23 |
+
msgid "Notice successfully removed"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
#: inc/admin/admin-features-list.php:15
|
27 |
msgid "Titles & metas"
|
28 |
msgstr "శీర్షికలు & Meta"
|
36 |
#: inc/admin/admin-features-list.php:18 inc/admin/admin-features-list.php:34
|
37 |
#: inc/admin/admin-features-list.php:50 inc/admin/admin-features-list.php:66
|
38 |
#: inc/admin/admin-features-list.php:82 inc/admin/admin-features-list.php:93
|
39 |
+
#: inc/admin/admin-features-list.php:112 inc/admin/admin-features-list.php:128
|
40 |
+
#: inc/admin/admin-features-list.php:137 inc/admin/admin-features-list.php:146
|
41 |
+
#: inc/admin/admin-features-list.php:155 inc/admin/admin-features-list.php:174
|
42 |
+
#: inc/admin/admin-features-list.php:190 inc/admin/admin-features-list.php:211
|
43 |
#: inc/admin/admin-features-list.php:228 inc/admin/admin-features-list.php:247
|
44 |
+
#: inc/admin/admin-features-list.php:266 inc/admin/admin-features-list.php:301
|
45 |
+
#: inc/admin/admin-features-list.php:311 inc/admin/admin-features-list.php:322
|
46 |
+
#: inc/admin/admin-features-list.php:333 inc/admin/admin-features-list.php:351
|
47 |
msgid "Manage"
|
48 |
msgstr "నిర్వహింౘు"
|
49 |
|
50 |
#: inc/admin/admin-features-list.php:23 inc/admin/admin-features-list.php:39
|
51 |
#: inc/admin/admin-features-list.php:55 inc/admin/admin-features-list.php:71
|
52 |
+
#: inc/admin/admin-features-list.php:98 inc/admin/admin-features-list.php:117
|
53 |
+
#: inc/admin/admin-features-list.php:163 inc/admin/admin-features-list.php:179
|
54 |
+
#: inc/admin/admin-features-list.php:195 inc/admin/admin-features-list.php:216
|
55 |
#: inc/admin/admin-features-list.php:233 inc/admin/admin-features-list.php:252
|
56 |
+
#: inc/admin/admin-features-list.php:271 inc/admin/admin-features-list.php:290
|
57 |
+
#: inc/admin/admin-features-list.php:338 inc/admin/admin-features-list.php:356 inc/admin/admin.php:291
|
58 |
+
#: inc/admin/admin.php:297
|
59 |
msgid "Read our guide"
|
60 |
msgstr ""
|
61 |
|
81 |
msgid "Guide to enable your XML Sitemaps - new window"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: inc/admin/admin-features-list.php:47 inc/admin/admin-header.php:57 inc/admin/admin.php:193
|
85 |
+
#: inc/admin/adminbar.php:64
|
86 |
msgid "Social Networks"
|
87 |
msgstr "సామాజిక నెట్వర్క్స్"
|
88 |
|
94 |
msgid "Guide to enable Google Knowledge Graph - new window"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/admin/admin-features-list.php:63 inc/admin/admin-header.php:63 inc/admin/admin.php:194
|
98 |
+
#: inc/admin/adminbar.php:70
|
99 |
+
#, fuzzy
|
100 |
+
#| msgid "Google Analytics"
|
101 |
+
msgid "Analytics"
|
102 |
msgstr "గూగుల్ విశ్లేషణలు"
|
103 |
|
104 |
#: inc/admin/admin-features-list.php:64
|
105 |
+
#, fuzzy
|
106 |
+
#| msgid "Track everything about your visitors with Google Analytics"
|
107 |
+
msgid "Track everything about your visitors with Google Analytics / Matomo"
|
108 |
msgstr "Google Analytics తో మీ సందర్శకుల గురించి ప్రతిదీ ట్రాక్ చేయండి"
|
109 |
|
110 |
#: inc/admin/admin-features-list.php:72
|
111 |
msgid "Guide to getting started with Google Analytics - new window"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/admin/admin-features-list.php:79 inc/admin/admin-header.php:69 inc/admin/admin-metaboxes-form.php:60
|
115 |
+
#: inc/admin/admin.php:195 inc/admin/admin.php:353 inc/admin/admin.php:635 inc/admin/adminbar.php:76
|
116 |
msgid "Advanced"
|
117 |
msgstr "ఉన్నతస్థాయి"
|
118 |
|
120 |
msgid "Advanced SEO options for advanced users!"
|
121 |
msgstr "ఆధునిక వినియోగదారులకు ఆధునిక SEO ఎంపికలు!"
|
122 |
|
123 |
+
#: inc/admin/admin-features-list.php:90 inc/admin/admin-header.php:25 inc/admin/admin-header.php:77
|
124 |
+
#: inc/admin/adminbar.php:84 inc/functions/options-advanced-admin.php:429
|
125 |
+
msgid "Insights"
|
126 |
+
msgstr ""
|
127 |
|
128 |
#: inc/admin/admin-features-list.php:91
|
129 |
+
msgid "Track your keyword positions and backlinks directly in your WordPress."
|
130 |
+
msgstr ""
|
131 |
|
132 |
+
#: inc/admin/admin-features-list.php:99 inc/admin/admin-features-list.php:118
|
133 |
msgid "Guide to optimize your WooCommerce SEO - new window"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: inc/admin/admin-features-list.php:109 inc/admin/admin-header.php:86
|
137 |
+
msgid "WooCommerce"
|
138 |
+
msgstr "WooCommerce"
|
139 |
+
|
140 |
+
#: inc/admin/admin-features-list.php:110
|
141 |
+
msgid "Improve WooCommerce SEO"
|
142 |
+
msgstr "WooCommerce SEO మెరుగుపరచండి"
|
143 |
+
|
144 |
+
#: inc/admin/admin-features-list.php:125 inc/admin/admin-header.php:92
|
145 |
msgid "Easy Digital Downloads"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: inc/admin/admin-features-list.php:126
|
149 |
msgid "Improve Easy Digital Downloads SEO"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: inc/admin/admin-features-list.php:134 inc/admin/admin-header.php:98
|
153 |
msgid "Local Business"
|
154 |
msgstr "స్థానిక వ్యాపారం"
|
155 |
|
156 |
+
#: inc/admin/admin-features-list.php:135
|
157 |
msgid "Add Google Local Business data type"
|
158 |
msgstr "Google స్థానిక వ్యాపార డేటా రకాన్ని జోడించండి"
|
159 |
|
160 |
+
#: inc/admin/admin-features-list.php:143 inc/admin/admin-header.php:104
|
161 |
msgid "Dublin Core"
|
162 |
msgstr "Dublin Core (డబ్లిన్ కోర్)"
|
163 |
|
164 |
+
#: inc/admin/admin-features-list.php:144
|
165 |
msgid "Add Dublin Core meta tags"
|
166 |
msgstr "డబ్లిన్ కోర్ మెటా ట్యాగ్లను జోడించండి"
|
167 |
|
168 |
+
#: inc/admin/admin-features-list.php:152
|
169 |
msgid "Structured Data Types"
|
170 |
msgstr "నిర్మాణాత్మక డేటా రకాలు"
|
171 |
|
172 |
+
#: inc/admin/admin-features-list.php:153
|
173 |
#, fuzzy
|
174 |
#| msgid "Add data types to your content: articles, courses, recipes, videos, events and products"
|
175 |
msgid "Add data types to your content: articles, courses, recipes, videos, events, products and more."
|
176 |
msgstr "మీ కంటెంట్ డేటా రకాలను జోడించండి: కథనాలు, కోర్సులు, వంటకాలు, వీడియోలు, ఈవెంట్లు మరియు ఉత్పత్తులు"
|
177 |
|
178 |
+
#: inc/admin/admin-features-list.php:158 inc/admin/admin-features-list.php:244
|
179 |
msgid "See schemas"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: inc/admin/admin-features-list.php:164 inc/admin/admin-features-list.php:253
|
183 |
msgid "Guide to add schemas with SEOPress PRO - new window"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: inc/admin/admin-features-list.php:171 inc/admin/admin-header.php:116
|
187 |
msgid "Breadcrumbs"
|
188 |
msgstr "Breadcrumbs"
|
189 |
|
190 |
+
#: inc/admin/admin-features-list.php:172
|
191 |
msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs"
|
192 |
msgstr "మీ థీమ్ కోసం Breadcrumbs ప్రారంభించు మరియు SERP లలో మీ SEO ను మెరుగుపరచండి"
|
193 |
|
194 |
+
#: inc/admin/admin-features-list.php:180
|
195 |
msgid "Guide to enable Breadcrumbs - new window"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: inc/admin/admin-features-list.php:187 inc/admin/admin-header.php:122
|
199 |
msgid "Google Page Speed"
|
200 |
msgstr "గూగుల్ పేజ్ స్పీడ్"
|
201 |
|
202 |
+
#: inc/admin/admin-features-list.php:188
|
203 |
msgid "Track your website performance to improve SEO with Google Page Speed"
|
204 |
msgstr "గూగుల్ పేజీ వేగంతో SEO మెరుగుపరచడానికి మీ వెబ్సైట్ పనితీరుని ట్రాక్ చేయండి"
|
205 |
|
206 |
+
#: inc/admin/admin-features-list.php:196
|
207 |
#, fuzzy
|
208 |
#| msgid "Analyse this page with Google Page Speed"
|
209 |
msgid "Guide to analyze your site with Google Page Speed - new window"
|
210 |
msgstr "ఈ పేజీని Google Page Speed తో విశ్లేషించండి"
|
211 |
|
212 |
+
#: inc/admin/admin-features-list.php:205 inc/admin/admin-header.php:129
|
213 |
msgid "robots.txt"
|
214 |
msgstr "robots.txt (రోబోట్స్.txt)"
|
215 |
|
216 |
+
#: inc/admin/admin-features-list.php:206
|
217 |
msgid "Edit your robots.txt file"
|
218 |
msgstr "మీ robots.txt ఫైల్ను సవరించండి"
|
219 |
|
220 |
+
#: inc/admin/admin-features-list.php:208
|
221 |
#, fuzzy
|
222 |
#| msgid "Edit your robots.txt file"
|
223 |
msgid "View your robots.txt"
|
224 |
msgstr "మీ robots.txt ఫైల్ను సవరించండి"
|
225 |
|
226 |
+
#: inc/admin/admin-features-list.php:217
|
227 |
#, fuzzy
|
228 |
#| msgid "Edit your robots.txt file"
|
229 |
msgid "Guide to edit your robots.txt file - new window"
|
230 |
msgstr "మీ robots.txt ఫైల్ను సవరించండి"
|
231 |
|
232 |
+
#: inc/admin/admin-features-list.php:225 inc/admin/admin-header.php:136
|
233 |
msgid "Google News Sitemap"
|
234 |
msgstr "Google వార్తలు సైట్ మ్యాప్"
|
235 |
|
236 |
+
#: inc/admin/admin-features-list.php:226
|
237 |
msgid "Optimize your site for Google News"
|
238 |
msgstr "Google వార్తల కోసం మీ సైట్ను ఆప్టిమైజ్ చేయండి"
|
239 |
|
240 |
+
#: inc/admin/admin-features-list.php:234
|
241 |
+
#, fuzzy
|
242 |
+
#| msgid "Enable XML Image Sitemaps"
|
243 |
+
msgid "Guide to create your xml news sitemap - new window"
|
244 |
+
msgstr "XML చిత్రం సైట్మాప్లను ప్రారంభించండి"
|
245 |
+
|
246 |
+
#: inc/admin/admin-features-list.php:241 inc/admin/adminbar.php:119
|
247 |
msgid "Schemas"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/admin/admin-features-list.php:242
|
251 |
msgid "Create / manage your schemas"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/admin/admin-features-list.php:260 inc/admin/admin-header.php:142 inc/admin/admin.php:674
|
255 |
+
#: inc/admin/adminbar.php:127
|
256 |
msgid "Redirections"
|
257 |
msgstr "Redirections (మళ్లింపులు)"
|
258 |
|
259 |
+
#: inc/admin/admin-features-list.php:261
|
260 |
msgid "Monitor 404, create 301, 302 and 307 redirections"
|
261 |
msgstr "మానిటర్ 404, 301, 302 మరియు 307 మళ్లింపులను సృష్టించండి"
|
262 |
|
263 |
+
#: inc/admin/admin-features-list.php:263
|
264 |
msgid "See redirects"
|
265 |
msgstr "దారిమార్పులను(redirects) చూడండి"
|
266 |
|
267 |
+
#: inc/admin/admin-features-list.php:272
|
268 |
msgid "Guide to enable 301 redirections and 404 monitoring - new window"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: inc/admin/admin-features-list.php:279 inc/admin/admin-header.php:148
|
272 |
#, fuzzy
|
273 |
#| msgid "Broken Links"
|
274 |
msgid "Broken links"
|
275 |
msgstr "బ్రోకెన్ లింక్స్"
|
276 |
|
277 |
+
#: inc/admin/admin-features-list.php:280
|
278 |
msgid "Scan your site to find SEO problems."
|
279 |
msgstr "SEO సమస్యలను కనుగొనడానికి మీ సైట్ను స్కాన్ చేయండి."
|
280 |
|
281 |
+
#: inc/admin/admin-features-list.php:282
|
282 |
msgid "See broken links"
|
283 |
msgstr "విరిగిన లింక్లను చూడండి ( broken links)"
|
284 |
|
285 |
+
#: inc/admin/admin-features-list.php:285
|
286 |
msgid "Scan"
|
287 |
msgstr "స్కాన్"
|
288 |
|
289 |
+
#: inc/admin/admin-features-list.php:291
|
290 |
msgid "Guide to find broken links with SEOPress PRO - new window"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: inc/admin/admin-features-list.php:298 inc/admin/admin-header.php:154
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
#, fuzzy
|
295 |
#| msgid "URL redirection"
|
296 |
msgid "URL Rewriting"
|
297 |
msgstr "URL redirection (URL దారి మళ్లింపు)"
|
298 |
|
299 |
+
#: inc/admin/admin-features-list.php:299
|
300 |
#, fuzzy
|
301 |
#| msgid "Flush permalinks"
|
302 |
msgid "Customize your permalinks."
|
303 |
msgstr "ఫ్లష్ permalinks"
|
304 |
|
305 |
+
#: inc/admin/admin-features-list.php:308 inc/admin/admin-header.php:167
|
306 |
msgid ".htaccess"
|
307 |
msgstr ".htaccess"
|
308 |
|
309 |
+
#: inc/admin/admin-features-list.php:309
|
310 |
msgid "Edit your htaccess file."
|
311 |
msgstr "మీ htaccess ఫైల్ను సవరించండి."
|
312 |
|
313 |
+
#: inc/admin/admin-features-list.php:319 inc/admin/admin-header.php:174
|
314 |
msgid "RSS"
|
315 |
msgstr "RSS (రియల్లీ సింపుల్ సిండికేషన్)"
|
316 |
|
317 |
+
#: inc/admin/admin-features-list.php:320
|
318 |
msgid "Configure default WordPress RSS."
|
319 |
msgstr "డిఫాల్ట్ WordPress RSS ఆకృతీకరించుము."
|
320 |
|
321 |
+
#: inc/admin/admin-features-list.php:330 inc/admin/admin-header.php:187 inc/admin/admin.php:196
|
322 |
+
#: inc/admin/adminbar.php:91
|
323 |
msgid "Tools"
|
324 |
msgstr "Tools - (టూల్స్)"
|
325 |
|
326 |
+
#: inc/admin/admin-features-list.php:331
|
327 |
#, fuzzy
|
328 |
#| msgid "Import / export SEOPress settings from site to site."
|
329 |
msgid "Import/Export plugin settings from site to site."
|
330 |
msgstr "సైట్ నుండి సైట్ దిగుమతి / ఎగుమతి SEOPress సెట్టింగులు."
|
331 |
|
332 |
+
#: inc/admin/admin-features-list.php:339
|
333 |
msgid "Guide to Export/Import/Reset settings - new window"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/admin/admin-features-list.php:348 inc/admin/admin-header.php:180
|
337 |
+
#: inc/admin/admin-notifications-center.php:669 inc/admin/adminbar.php:106
|
338 |
msgid "License"
|
339 |
msgstr "అధికారపూరిత అనుమతి"
|
340 |
|
341 |
+
#: inc/admin/admin-features-list.php:349
|
342 |
#, fuzzy
|
343 |
#| msgid "Edit your SEOPress license key."
|
344 |
msgid "Edit your license key."
|
345 |
msgstr "మీ SEO ప్రెస్ లైసెన్స్ కీని సవరించండి."
|
346 |
|
347 |
+
#: inc/admin/admin-features-list.php:357
|
348 |
msgid "Guide to activate SEOPress PRO - new window"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: inc/admin/admin-features-list.php:412 inc/admin/admin-features-list.php:416
|
352 |
#, fuzzy
|
353 |
#| msgid "Click to disable this feature"
|
354 |
msgid "Click to disable"
|
355 |
msgstr "ఈ లక్షణాన్ని నిలిపివేయడానికి క్లిక్ చేయండి"
|
356 |
|
357 |
+
#: inc/admin/admin-features-list.php:413 inc/admin/admin-features-list.php:415
|
358 |
#, fuzzy
|
359 |
#| msgid "Click to enable this feature"
|
360 |
msgid "Click to enable"
|
385 |
msgid "Watch our video guides"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: inc/admin/admin-get-started.php:23
|
389 |
msgid "Our support center"
|
390 |
msgstr ""
|
391 |
|
393 |
msgid "SEOPress"
|
394 |
msgstr "SEOPress"
|
395 |
|
396 |
+
#: inc/admin/admin-header.php:31 inc/admin/admin-notifications-center.php:698 inc/admin/adminbar.php:112
|
397 |
msgid "PRO"
|
398 |
msgstr "PRO"
|
399 |
|
400 |
+
#: inc/admin/admin-header.php:37
|
401 |
msgid "FREE"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: inc/admin/admin-header.php:45 inc/admin/admin.php:191 inc/admin/adminbar.php:52
|
405 |
msgid "Titles & Metas"
|
406 |
msgstr "శీర్షిక & మెటా (ఉన్నత స్థాయి వివరణ)"
|
407 |
|
408 |
+
#: inc/admin/admin-header.php:51 inc/admin/admin.php:192 inc/admin/adminbar.php:58
|
409 |
msgid "XML / HTML Sitemap"
|
410 |
msgstr "XML / HTML సైట్ మ్యాప్"
|
411 |
|
412 |
+
#: inc/admin/admin-header.php:110
|
413 |
#, fuzzy
|
414 |
#| msgid "Structured Data Types"
|
415 |
msgid "Structured Data Types (schema.org)"
|
416 |
msgstr "నిర్మాణాత్మక డేటా రకాలు"
|
417 |
|
418 |
+
#: inc/admin/admin-header.php:161
|
419 |
msgid "White Label"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/admin/admin-header.php:211
|
|
|
|
|
|
|
|
|
423 |
msgid "See the changelog"
|
424 |
msgstr "మార్పులు చూడండి"
|
425 |
|
426 |
+
#: inc/admin/admin-header.php:215
|
427 |
msgid "Send feedback"
|
428 |
msgstr "అభిప్రాయాన్ని పంపండి"
|
429 |
|
430 |
+
#: inc/admin/admin-header.php:219 seopress.php:1234
|
431 |
+
msgid "Join our Facebook Community group"
|
432 |
+
msgstr ""
|
433 |
|
434 |
+
#: inc/admin/admin-header.php:223 seopress.php:1259
|
435 |
msgid "Follow us on Twitter"
|
436 |
msgstr "ట్విట్టర్ లో మమల్ని అనుసరించండి"
|
437 |
|
438 |
+
#: inc/admin/admin-header.php:227
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
#, fuzzy
|
440 |
#| msgid "Follow us on Twitter"
|
441 |
msgid "Follow us on YouTube"
|
442 |
msgstr "ట్విట్టర్ లో మమల్ని అనుసరించండి"
|
443 |
|
444 |
+
#: inc/admin/admin-header.php:231
|
|
|
|
|
|
|
|
|
445 |
msgid "Official website"
|
446 |
msgstr "అధికారిక వెబ్సైట్"
|
447 |
|
448 |
+
#: inc/admin/admin-header.php:235
|
|
|
|
|
|
|
|
|
449 |
msgid "Support"
|
450 |
msgstr "సహాయము"
|
451 |
|
453 |
msgid "Enter a few keywords for analysis to help you write optimized content."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:8
|
457 |
+
msgid "Did you know?"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
#: inc/admin/admin-metaboxes-content-analysis-form.php:8
|
461 |
msgid ""
|
462 |
"Writing content for your users is the most important thing! If it doesn‘t feel natural, your visitors will "
|
464 |
msgstr ""
|
465 |
|
466 |
#: inc/admin/admin-metaboxes-content-analysis-form.php:12
|
467 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:13
|
468 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:15
|
469 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:401
|
470 |
+
#: inc/functions/options-advanced-admin.php:981
|
471 |
#, fuzzy
|
472 |
#| msgid "Search keywords"
|
473 |
msgid "Target keywords"
|
474 |
msgstr "కీలక పదాలను శోధించండి"
|
475 |
|
476 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:13
|
477 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:403
|
478 |
msgid ""
|
479 |
+
"Separate target keywords with commas. Do not use spaces after the commas, unless you want to include them"
|
|
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:15
|
483 |
#, fuzzy
|
484 |
#| msgid "Enter your Google News Keywords"
|
485 |
msgid "Enter your target keywords"
|
486 |
msgstr "మీ Google వార్తల కీలక పదాలను నమోదు చేయండి"
|
487 |
|
488 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:18
|
489 |
msgid "Analyze my content"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:20
|
493 |
msgid "Refresh analysis"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:24
|
497 |
+
msgid "Track with Insights"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:29
|
501 |
+
msgid ""
|
502 |
+
"To get the most accurate analysis, save your post first. We analyze all of your source code as a search "
|
503 |
+
"engine would."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:34
|
507 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:35
|
508 |
#, fuzzy
|
509 |
#| msgid "Google Trends"
|
510 |
msgid "Google suggestions"
|
511 |
msgstr "Google ట్రెండ్లు"
|
512 |
|
513 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:35
|
514 |
msgid ""
|
515 |
"Enter a keyword, or a phrase, to find the top 10 Google suggestions instantly. This is useful if you want "
|
516 |
"to work with the long tail technique."
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: inc/admin/admin-metaboxes-content-analysis-form.php:37
|
520 |
+
#, fuzzy
|
521 |
+
#| msgid "Reset settings"
|
522 |
+
msgid "Get suggestions from Google"
|
523 |
+
msgstr "సెట్టింగ్లను పునఃపరిష్కారం (RESET) చేయండి"
|
524 |
+
|
525 |
#: inc/admin/admin-metaboxes-content-analysis-form.php:39
|
526 |
#, fuzzy
|
527 |
#| msgid "Reset settings"
|
528 |
msgid "Get suggestions!"
|
529 |
msgstr "సెట్టింగ్లను పునఃపరిష్కారం (RESET) చేయండి"
|
530 |
|
531 |
+
#: inc/admin/admin-metaboxes-form.php:50 inc/admin/admin-metaboxes.php:163 inc/admin/admin-metaboxes.php:166
|
532 |
+
#: inc/admin/admin.php:189 inc/admin/adminbar.php:32 inc/functions/options-advanced-admin.php:963
|
533 |
+
msgid "SEO"
|
534 |
+
msgstr "SEO"
|
|
|
535 |
|
536 |
+
#: inc/admin/admin-metaboxes-form.php:59
|
537 |
+
msgid "Titles settings"
|
538 |
+
msgstr "శీర్షికలు సెట్టింగులు"
|
|
|
|
|
539 |
|
540 |
+
#: inc/admin/admin-metaboxes-form.php:61
|
541 |
+
msgid "Social"
|
542 |
+
msgstr "సాంఘికమైన"
|
543 |
|
544 |
+
#: inc/admin/admin-metaboxes-form.php:64
|
545 |
+
msgid "Redirection"
|
546 |
+
msgstr "Redirection (మళ్లింపు)"
|
547 |
|
548 |
+
#: inc/admin/admin-metaboxes-form.php:70
|
549 |
+
msgid "Google News"
|
550 |
+
msgstr "Google వార్తలు"
|
551 |
+
|
552 |
+
#: inc/admin/admin-metaboxes-form.php:77
|
553 |
#, fuzzy
|
554 |
+
#| msgid "View your sitemap"
|
555 |
+
msgid "Video Sitemap"
|
556 |
+
msgstr "మీ సైట్మాప్ని వీక్షించండి"
|
557 |
+
|
558 |
+
#: inc/admin/admin-metaboxes-form.php:100
|
559 |
+
msgid ""
|
560 |
+
"This is your <strong>Shop page</strong>. Go to <strong>SEO > Titles & Metas > Archives > Products</strong> "
|
561 |
+
msgstr ""
|
562 |
|
563 |
+
#: inc/admin/admin-metaboxes-form.php:100
|
564 |
#, fuzzy
|
565 |
+
#| msgid "Enter your meta description"
|
566 |
+
msgid "to edit your title and meta description"
|
567 |
+
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
568 |
+
|
569 |
+
#: inc/admin/admin-metaboxes-form.php:107 inc/admin/admin-metaboxes-form.php:110
|
570 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:62
|
571 |
+
msgid "Title"
|
572 |
+
msgstr "శీర్షిక"
|
573 |
|
574 |
+
#: inc/admin/admin-metaboxes-form.php:108 inc/admin/admin-metaboxes-get-content-analysis.php:37
|
575 |
#, fuzzy
|
576 |
#| msgid "Tag title"
|
577 |
msgid "Meta title"
|
578 |
msgstr "ట్యాగ్ శీర్షిక"
|
579 |
|
580 |
+
#: inc/admin/admin-metaboxes-form.php:108
|
581 |
+
msgid ""
|
582 |
+
"Titles are critical to give users a quick insight into the content of a result and why it’s relevant to "
|
583 |
+
"their query. It's often the primary piece of information used to decide which result to click on, so it's "
|
584 |
+
"important to use high-quality titles on your web pages."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/admin/admin-metaboxes-form.php:110
|
588 |
+
msgid "Enter your title"
|
589 |
+
msgstr "మీ శీర్షికను నమోదు చేయండి"
|
590 |
+
|
591 |
+
#: inc/admin/admin-metaboxes-form.php:117
|
592 |
+
msgid " / 568 pixels - "
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: inc/admin/admin-metaboxes-form.php:119 inc/admin/admin-metaboxes-form.php:147
|
596 |
#, fuzzy
|
597 |
+
#| msgid "(maximum recommended limit)"
|
598 |
+
msgid " (maximum recommended limit)"
|
599 |
+
msgstr "(గరిష్ట సిఫార్సు పరిమితి)"
|
600 |
|
601 |
+
#: inc/admin/admin-metaboxes-form.php:124 inc/admin/admin.php:3318
|
602 |
+
msgid "Term Title"
|
603 |
+
msgstr "పదం శీర్షిక - Term Title"
|
|
|
|
|
604 |
|
605 |
+
#: inc/admin/admin-metaboxes-form.php:126 inc/admin/admin.php:3129 inc/admin/admin.php:4173
|
606 |
+
msgid "Post Title"
|
607 |
+
msgstr "పోస్ట్ శీర్షిక - Post Title"
|
608 |
|
609 |
+
#: inc/admin/admin-metaboxes-form.php:128 inc/admin/admin.php:204 inc/admin/admin.php:3027
|
610 |
+
#: inc/admin/admin.php:3133 inc/admin/admin.php:3323 inc/admin/admin.php:3446 inc/admin/admin.php:3524
|
611 |
+
#: inc/admin/admin.php:3595 inc/admin/admin.php:3665 inc/admin/admin.php:3715
|
612 |
+
msgid "Site Title"
|
613 |
+
msgstr "సైట్ శీర్షిక"
|
614 |
|
615 |
+
#: inc/admin/admin-metaboxes-form.php:130 inc/admin/admin-wizard.php:481 inc/admin/admin.php:1219
|
616 |
+
#: inc/admin/admin.php:3014 inc/admin/admin.php:3028 inc/admin/admin.php:3131 inc/admin/admin.php:3321
|
617 |
+
#: inc/admin/admin.php:3444 inc/admin/admin.php:3523 inc/admin/admin.php:3594 inc/admin/admin.php:3664
|
618 |
+
#: inc/admin/admin.php:3716
|
619 |
+
msgid "Separator"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: inc/admin/admin-metaboxes-form.php:135 inc/admin/admin-metaboxes-form.php:136
|
623 |
+
#: inc/admin/admin-metaboxes-form.php:138 inc/admin/admin-metaboxes-get-content-analysis.php:42
|
624 |
+
#: inc/admin/admin-wizard.php:298 inc/admin/admin-wizard.php:318 inc/admin/admin-wizard.php:335
|
625 |
+
#: inc/admin/admin-wizard.php:354 inc/admin/admin-wizard.php:373 inc/admin/admin-wizard.php:391
|
626 |
+
#: inc/admin/admin-wizard.php:408 inc/admin/admin-wizard.php:424 inc/admin/admin.php:773
|
627 |
+
#: inc/admin/admin.php:795 inc/admin/admin.php:814 inc/admin/admin.php:835 inc/admin/admin.php:856
|
628 |
+
#: inc/admin/admin.php:876 inc/admin/admin.php:895 inc/admin/admin.php:913 inc/admin/admin.php:1235
|
629 |
+
#: inc/admin/admin.php:3036 inc/functions/options-advanced-admin.php:973
|
630 |
+
msgid "Meta description"
|
631 |
+
msgstr "ఉన్నత స్థాయి వివరణ"
|
632 |
+
|
633 |
+
#: inc/admin/admin-metaboxes-form.php:136
|
634 |
+
msgid ""
|
635 |
+
"A meta description tag should generally inform and interest users with a short, relevant summary of what a "
|
636 |
+
"particular page is about. <br>They are like a pitch that convince the user that the page is exactly what "
|
637 |
+
"they're looking for. <br>There's no limit on how long a meta description can be, but the search result "
|
638 |
+
"snippets are truncated as needed, typically to fit the device width."
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: inc/admin/admin-metaboxes-form.php:138
|
642 |
+
msgid "Enter your meta description"
|
643 |
+
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
644 |
+
|
645 |
+
#: inc/admin/admin-metaboxes-form.php:145
|
646 |
+
msgid " / 940 pixels - "
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: inc/admin/admin-metaboxes-form.php:151
|
650 |
+
#, fuzzy
|
651 |
+
#| msgid "Category description"
|
652 |
+
msgid "Category / term description"
|
653 |
+
msgstr "వర్గం వివరణ"
|
654 |
+
|
655 |
+
#: inc/admin/admin-metaboxes-form.php:153
|
656 |
+
#, fuzzy
|
657 |
+
#| msgid "Post excerpt"
|
658 |
+
msgid "Post Excerpt"
|
659 |
+
msgstr "Post excerpt"
|
660 |
+
|
661 |
+
#: inc/admin/admin-metaboxes-form.php:163
|
662 |
+
msgid "Google Snippet Preview"
|
663 |
+
msgstr "Google స్నిప్పెట్ పరిదృశ్యం"
|
664 |
+
|
665 |
+
#: inc/admin/admin-metaboxes-form.php:164
|
666 |
+
#, fuzzy
|
667 |
+
#| msgid "Google Snippet Preview"
|
668 |
+
msgid "Snippet Preview"
|
669 |
+
msgstr "Google స్నిప్పెట్ పరిదృశ్యం"
|
670 |
+
|
671 |
+
#: inc/admin/admin-metaboxes-form.php:164
|
672 |
msgid ""
|
673 |
+
"The Google preview is a simulation. <br>There is no reliable preview because it depends on the screen "
|
674 |
+
"resolution, the device used, the expression sought, and Google. <br>There is not one snippet for one URL "
|
675 |
+
"but several. <br>All the data in this overview comes directly from your source code. <br>This is what the "
|
676 |
+
"crawlers will see."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: inc/admin/admin-metaboxes-form.php:166
|
680 |
+
#, fuzzy
|
681 |
+
#| msgid "This is what your page will look like in Google search results"
|
682 |
msgid ""
|
683 |
+
"This is what your page will look like in Google search results. You have to publish your post to get the "
|
684 |
+
"Google Snippet Preview."
|
685 |
+
msgstr "Google శోధన ఫలితాల్లో మీ పేజీ ఇలా కనిపిస్తుంది"
|
|
|
686 |
|
687 |
+
#: inc/admin/admin-metaboxes-form.php:171
|
688 |
+
#, fuzzy
|
689 |
+
#| msgid "Google Snippet Preview"
|
690 |
+
msgid "Mobile Preview"
|
691 |
+
msgstr "Google స్నిప్పెట్ పరిదృశ్యం"
|
692 |
|
693 |
+
#: inc/admin/admin-metaboxes-form.php:218
|
694 |
+
msgid "Do not display this page in search engine results / XML - HTML sitemaps <strong>(noindex)</strong>"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: inc/admin/admin-metaboxes-form.php:219
|
698 |
+
msgid "\"noindex\" robots meta tag"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: inc/admin/admin-metaboxes-form.php:219
|
702 |
+
msgid ""
|
703 |
+
"By checking this option, you will add a meta robots tag with the value \"noindex\". <br>Search engines will "
|
704 |
+
"not index this URL in the search results."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: inc/admin/admin-metaboxes-form.php:225
|
708 |
+
#, fuzzy
|
709 |
+
#| msgid "Do not follow links for all pages."
|
710 |
+
msgid "Do not follow links for this page <strong>(nofollow)</strong>"
|
711 |
+
msgstr "అన్ని పేజీల కోసం లింక్లను అనుసరించవద్దు."
|
712 |
|
713 |
+
#: inc/admin/admin-metaboxes-form.php:226
|
714 |
+
msgid "\"nofollow\" robots meta tag"
|
|
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: inc/admin/admin-metaboxes-form.php:226
|
718 |
msgid ""
|
719 |
+
"By checking this option, you will add a meta robots tag with the value \"nofollow\". <br>Search engines "
|
720 |
+
"will not follow links from this URL."
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: inc/admin/admin-metaboxes-form.php:232
|
724 |
+
#, fuzzy
|
725 |
+
#| msgid "Do not use Open Directory project metadata for titles or excerpts for all pages."
|
726 |
msgid ""
|
727 |
+
"Do not use Open Directory project metadata for titles or excerpts for this page <strong>(noodp)</strong>"
|
728 |
+
msgstr "అన్ని పేజీలకు శీర్షికలు లేదా సారాంశాలు కోసం ఓపెన్ డైరెక్టరీ ప్రాజెక్ట్ meta సమాచారం ఉపయోగించవద్దు."
|
729 |
+
|
730 |
+
#: inc/admin/admin-metaboxes-form.php:233
|
731 |
+
msgid "\"noodp\" robots meta tag"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: inc/admin/admin-metaboxes-form.php:233
|
735 |
+
msgid ""
|
736 |
+
"By checking this option, you will add a meta robots tag with the value \"noodp\". <br>Note that Google and "
|
737 |
+
"Yahoo have stopped considering this tag since the closing of DMOZ directory."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: inc/admin/admin-metaboxes-form.php:239
|
741 |
+
#, fuzzy
|
742 |
+
#| msgid "Do not index images from the entire site."
|
743 |
+
msgid "Do not index images for this page <strong>(noimageindex)</strong>"
|
744 |
+
msgstr "మొత్తం సైట్ నుండి చిత్రాలను ఇండెక్స్ చేయవద్దు."
|
745 |
+
|
746 |
+
#: inc/admin/admin-metaboxes-form.php:240
|
747 |
+
msgid "\"noimageindex\" robots meta tag"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: inc/admin/admin-metaboxes-form.php:240
|
751 |
+
msgid ""
|
752 |
+
"By checking this option, you will add a meta robots tag with the value \"noimageindex\". <br> Note that "
|
753 |
+
"your images can always be indexed if they are linked from other pages."
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: inc/admin/admin-metaboxes-form.php:246
|
757 |
+
#, fuzzy
|
758 |
+
#| msgid "Do not display a \"Cached\" link in the Google search results."
|
759 |
+
msgid "Do not display a \"Cached\" link in the Google search results <strong>(noarchive)</strong>"
|
760 |
+
msgstr "Google శోధన ఫలితాల్లో \"Cached\" లింక్ను ప్రదర్శించవద్దు."
|
761 |
+
|
762 |
+
#: inc/admin/admin-metaboxes-form.php:247
|
763 |
+
msgid "\"noarchive\" robots meta tag"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: inc/admin/admin-metaboxes-form.php:247
|
767 |
+
msgid "By checking this option, you will add a meta robots tag with the value \"noarchive\"."
|
|
|
|
|
|
|
|
|
|
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: inc/admin/admin-metaboxes-form.php:253
|
771 |
+
#, fuzzy
|
772 |
+
#| msgid "Do not display a description in the Google search results for all pages."
|
773 |
+
msgid "Do not display a description in search results for this page <strong>(nosnippet)</strong>"
|
774 |
+
msgstr "Google శోధన ఫలితాల్లో అన్ని పేజీల యొక్క వివరణని ప్రదర్శించవద్దు."
|
775 |
|
776 |
+
#: inc/admin/admin-metaboxes-form.php:254
|
777 |
+
msgid "\"nosnippet\" robots meta tag"
|
|
|
|
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: inc/admin/admin-metaboxes-form.php:254
|
781 |
+
msgid "By checking this option, you will add a meta robots tag with the value \"nosnippet\"."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: inc/admin/admin-metaboxes-form.php:259
|
785 |
+
msgid ""
|
786 |
+
"You cannot uncheck a parameter? This is normal, and it‘s most likely defined in the global settings of the "
|
787 |
+
"extension."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: inc/admin/admin-metaboxes-form.php:262 inc/admin/admin-metaboxes-form.php:263
|
791 |
+
#: inc/admin/admin-metaboxes-form.php:266 inc/admin/admin-wizard.php:302 inc/admin/admin-wizard.php:339
|
792 |
+
#: inc/admin/admin-wizard.php:358 inc/admin/admin-wizard.php:377 inc/admin/admin-wizard.php:427
|
793 |
+
#: inc/admin/admin.php:777 inc/admin/admin.php:818 inc/admin/admin.php:839 inc/admin/admin.php:860
|
794 |
+
#: inc/admin/admin.php:916 inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:178
|
795 |
+
msgid "Canonical URL"
|
796 |
+
msgstr "Canonical URL"
|
797 |
|
798 |
+
#: inc/admin/admin-metaboxes-form.php:263
|
799 |
+
msgid ""
|
800 |
+
"A canonical URL is the URL of the page that Google thinks is most representative from a set of duplicate "
|
801 |
+
"pages on your site. <br>For example, if you have URLs for the same page (for example: example.com?"
|
802 |
+
"dress=1234 and example.com/dresses/1234), Google chooses one as canonical. <br>Note that the pages do not "
|
803 |
+
"need to be absolutely identical; minor changes in sorting or filtering of list pages do not make the page "
|
804 |
+
"unique (for example, sorting by price or filtering by item color).\n"
|
805 |
+
"\t\t\t\t\t\t\tThe canonical can be in a different domain than a duplicate."
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: inc/admin/admin-metaboxes-form.php:266
|
809 |
+
msgid "Default value: "
|
810 |
+
msgstr "డిఫాల్ట్ విలువ :"
|
811 |
|
812 |
+
#: inc/admin/admin-metaboxes-form.php:273
|
813 |
+
msgid "Select a primary category"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: inc/admin/admin-metaboxes-form.php:274
|
817 |
+
msgid "Set the category that gets used in the %category% permalink if you have multiple categories."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: inc/admin/admin-metaboxes-form.php:284 inc/admin/admin-wizard.php:492 inc/admin/admin.php:4216
|
821 |
+
#, fuzzy
|
822 |
+
#| msgid "Click to disable this feature"
|
823 |
+
msgid "None (will disable this feature)"
|
824 |
+
msgstr "ఈ లక్షణాన్ని నిలిపివేయడానికి క్లిక్ చేయండి"
|
825 |
|
826 |
+
#: inc/admin/admin-metaboxes-form.php:295 inc/admin/admin-metaboxes-form.php:299
|
827 |
#, fuzzy
|
828 |
+
#| msgid "Breadcrumbs"
|
829 |
+
msgid "Custom breadcrumbs"
|
830 |
+
msgstr "Breadcrumbs"
|
831 |
|
832 |
+
#: inc/admin/admin-metaboxes-form.php:296
|
833 |
+
msgid "Enter a custom value, useful if your title is too long"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: inc/admin/admin-metaboxes-form.php:299
|
837 |
+
#, fuzzy, php-format
|
838 |
+
#| msgid "Breadcrumbs"
|
839 |
+
msgid "Current breadcrumbs: %s"
|
840 |
+
msgstr "Breadcrumbs"
|
841 |
|
842 |
+
#: inc/admin/admin-metaboxes-form.php:309
|
843 |
#, fuzzy
|
844 |
+
#| msgid "Ask Facebook to update his cache"
|
845 |
+
msgid "Ask Facebook to update its cache"
|
846 |
+
msgstr "తన cache నవీకరించడానికి Facebook ni అడగండి"
|
847 |
|
848 |
+
#: inc/admin/admin-metaboxes-form.php:310
|
849 |
+
msgid ""
|
850 |
+
"<span class=\"label\">Did you know?</span> LinkedIn, Instagram and Pinterest use the same social metadata "
|
851 |
+
"as Facebook. Twitter does the same if no Twitter cards tags are defined below."
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: inc/admin/admin-metaboxes-form.php:312 inc/admin/admin-metaboxes-form.php:313
|
855 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:219
|
856 |
+
msgid "Facebook Title"
|
857 |
+
msgstr "Facebook టైటిల్"
|
|
|
858 |
|
859 |
+
#: inc/admin/admin-metaboxes-form.php:313
|
860 |
+
msgid "Enter your Facebook title"
|
861 |
+
msgstr "మీ Facebook శీర్షికను నమోదు చేయండి"
|
|
|
|
|
862 |
|
863 |
+
#: inc/admin/admin-metaboxes-form.php:316 inc/admin/admin-metaboxes-form.php:317
|
864 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:230
|
865 |
+
msgid "Facebook description"
|
866 |
+
msgstr "Facebook వివరణ"
|
|
|
867 |
|
868 |
+
#: inc/admin/admin-metaboxes-form.php:317
|
869 |
+
msgid "Enter your Facebook description"
|
870 |
+
msgstr "మీ Facebook వివరణను నమోదు చేయండి"
|
|
|
|
|
871 |
|
872 |
+
#: inc/admin/admin-metaboxes-form.php:320 inc/admin/admin-metaboxes-form.php:321
|
873 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:241
|
874 |
+
msgid "Facebook Thumbnail"
|
875 |
+
msgstr "Facebook Thumbnail"
|
876 |
|
877 |
+
#: inc/admin/admin-metaboxes-form.php:321 inc/admin/admin-metaboxes-form.php:384 inc/admin/admin.php:4483
|
878 |
+
#: inc/admin/admin.php:4532 inc/admin/admin.php:4629
|
879 |
+
msgid "Select your default thumbnail"
|
880 |
+
msgstr "మీ డిఫాల్ట్ సూక్ష్మచిత్రం ఎంచుకోండి"
|
|
|
881 |
|
882 |
+
#: inc/admin/admin-metaboxes-form.php:322 inc/admin/admin.php:4487
|
883 |
+
msgid ""
|
884 |
+
"Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or 3280x1712px for retina screens)"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: inc/admin/admin-metaboxes-form.php:323 inc/admin/admin-metaboxes-form.php:386
|
888 |
+
#: inc/admin/admin-metaboxes-form.php:573 inc/admin/admin.php:4250 inc/admin/admin.php:4485
|
889 |
+
#: inc/admin/admin.php:4534 inc/admin/admin.php:4631
|
890 |
+
msgid "Upload an Image"
|
891 |
+
msgstr "ఒక చిత్రాన్ని అప్లోడ్ చేయండి"
|
892 |
|
893 |
+
#: inc/admin/admin-metaboxes-form.php:328
|
894 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:254
|
895 |
+
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:40
|
896 |
#, fuzzy
|
897 |
+
#| msgid "Facebook Title"
|
898 |
+
msgid "Facebook Preview"
|
899 |
+
msgstr "Facebook టైటిల్"
|
900 |
|
901 |
+
#: inc/admin/admin-metaboxes-form.php:330
|
902 |
+
msgid ""
|
903 |
+
"This is what your post will look like in Facebook. You have to publish your post to get the Facebook "
|
904 |
+
"Preview."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: inc/admin/admin-metaboxes-form.php:332
|
908 |
msgid ""
|
909 |
+
"The Social Networks feature is disabled. Still seing informations from the FB Preview? You probably have "
|
910 |
+
"social tags added by your theme or a plugin."
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: inc/admin/admin-metaboxes-form.php:335
|
914 |
+
msgid "File type not supported by Facebook. Please choose another image."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc/admin/admin-metaboxes-form.php:336
|
918 |
+
msgid "Minimun size for Facebook is <strong>200x200px</strong>. Please choose another image."
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: inc/admin/admin-metaboxes-form.php:337 inc/admin/admin-metaboxes-form.php:400
|
922 |
+
msgid "File error. Please choose another image."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: inc/admin/admin-metaboxes-form.php:338 inc/admin/admin-metaboxes-form.php:401
|
926 |
+
#, fuzzy
|
927 |
+
#| msgid "Your domain expires: "
|
928 |
+
msgid "Your image ratio is: "
|
929 |
+
msgstr "మీ డొమైన్ గడువు ముగిసింది :"
|
930 |
|
931 |
+
#: inc/admin/admin-metaboxes-form.php:338
|
932 |
#, fuzzy
|
933 |
+
#| msgid "The lower, the best"
|
934 |
+
msgid "The closer to 1.91 the better."
|
935 |
+
msgstr "తక్కువ వుంటే, ఉత్తమo"
|
936 |
|
937 |
+
#: inc/admin/admin-metaboxes-form.php:339 inc/admin/admin-metaboxes-form.php:402
|
938 |
+
msgid "File URL is not valid."
|
|
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: inc/admin/admin-metaboxes-form.php:348
|
942 |
+
msgid "By "
|
|
|
|
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: inc/admin/admin-metaboxes-form.php:373
|
946 |
+
msgid "Preview your Twitter card using the official validator"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: inc/admin/admin-metaboxes-form.php:375 inc/admin/admin-metaboxes-form.php:376
|
950 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:469
|
951 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:268
|
952 |
+
msgid "Twitter Title"
|
953 |
+
msgstr "ట్విట్టర్ శీర్షిక"
|
954 |
+
|
955 |
+
#: inc/admin/admin-metaboxes-form.php:376
|
956 |
+
msgid "Enter your Twitter title"
|
957 |
+
msgstr "మీ ట్విట్టర్ శీర్షికను నమోదు చేయండి"
|
958 |
+
|
959 |
+
#: inc/admin/admin-metaboxes-form.php:379 inc/admin/admin-metaboxes-form.php:380
|
960 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:279
|
961 |
+
msgid "Twitter description"
|
962 |
+
msgstr "Twitter వివరణ"
|
963 |
+
|
964 |
+
#: inc/admin/admin-metaboxes-form.php:380
|
965 |
+
msgid "Enter your Twitter description"
|
966 |
+
msgstr "మీ Twitter వివరణను నమోదు చేయండి"
|
967 |
+
|
968 |
+
#: inc/admin/admin-metaboxes-form.php:383 inc/admin/admin-metaboxes-form.php:386
|
969 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:290
|
970 |
+
msgid "Twitter Thumbnail"
|
971 |
+
msgstr "ట్విట్టర్ సూక్ష్మచిత్రం"
|
972 |
+
|
973 |
+
#: inc/admin/admin-metaboxes-form.php:385 inc/admin/admin.php:4633
|
974 |
+
msgid ""
|
975 |
+
"Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 (2:1 with large card), 5Mb max."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: inc/admin/admin-metaboxes-form.php:391
|
979 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:303
|
980 |
+
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:59
|
981 |
#, fuzzy
|
982 |
+
#| msgid "Twitter Title"
|
983 |
+
msgid "Twitter Preview"
|
984 |
+
msgstr "ట్విట్టర్ శీర్షిక"
|
985 |
|
986 |
+
#: inc/admin/admin-metaboxes-form.php:393
|
987 |
+
msgid ""
|
988 |
+
"This is what your post will look like in Twitter. You have to publish your post to get the Twitter Preview."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: inc/admin/admin-metaboxes-form.php:395
|
992 |
msgid ""
|
993 |
+
"The Social Networks feature is disabled. Still seing informations from the Twitter Preview? You probably "
|
994 |
+
"have social tags added by your theme or a plugin."
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: inc/admin/admin-metaboxes-form.php:398
|
998 |
+
msgid "File type not supported by Twitter. Please choose another image."
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: inc/admin/admin-metaboxes-form.php:399
|
1002 |
+
msgid "Minimun size for Twitter is <strong>144x144px</strong>. Please choose another image."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: inc/admin/admin-metaboxes-form.php:401
|
1006 |
+
msgid "The closer to 1 the better (with large card, 2 is better)."
|
|
|
|
|
|
|
|
|
|
|
|
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: inc/admin/admin-metaboxes-form.php:437
|
1010 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:341
|
1011 |
+
msgid "Enable redirection?"
|
1012 |
+
msgstr "Enable redirection? (మళ్లింపును ప్రారంభించాలా?)"
|
|
|
1013 |
|
1014 |
+
#: inc/admin/admin-metaboxes-form.php:441 inc/admin/admin-metaboxes-form.php:449
|
1015 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:352
|
1016 |
+
msgid "URL redirection"
|
1017 |
+
msgstr "URL redirection (URL దారి మళ్లింపు)"
|
1018 |
+
|
1019 |
+
#: inc/admin/admin-metaboxes-form.php:443
|
1020 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:357
|
1021 |
+
msgid "301 Moved Permanently"
|
1022 |
+
msgstr "301 శాశ్వతంగా తరలించబడింది"
|
1023 |
|
1024 |
+
#: inc/admin/admin-metaboxes-form.php:444
|
1025 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:358
|
1026 |
#, fuzzy
|
1027 |
+
#| msgid "302 Found (HTTP 1.1) / Moved Temporarily (HTTP 1.0)"
|
1028 |
+
msgid "302 Found / Moved Temporarily"
|
1029 |
+
msgstr "302 కనుగొనబడింది (HTTP 1.1) / తాత్కాలికంగా తరలించబడింది (HTTP 1.0)"
|
1030 |
|
1031 |
+
#: inc/admin/admin-metaboxes-form.php:445
|
1032 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:359
|
1033 |
#, fuzzy
|
1034 |
+
#| msgid "307 Moved Temporarily (HTTP 1.1 Only)"
|
1035 |
+
msgid "307 Moved Temporarily"
|
1036 |
+
msgstr "307 తాత్కాలికంగా తరలించబడింది (HTTP 1.1 మాత్రమే)"
|
1037 |
|
1038 |
+
#: inc/admin/admin-metaboxes-form.php:446
|
1039 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:360
|
1040 |
+
msgid "410 Gone"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: inc/admin/admin-metaboxes-form.php:447
|
1044 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:361
|
1045 |
+
msgid "451 Unavailable For Legal Reasons"
|
|
|
|
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: inc/admin/admin-metaboxes-form.php:449
|
1049 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:370
|
1050 |
+
msgid "Enter your new URL in absolute (eg: https://www.example.com/)"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: inc/admin/admin-metaboxes-form.php:454
|
1054 |
+
msgid "Query parameters"
|
1055 |
+
msgstr ""
|
|
|
|
|
1056 |
|
1057 |
+
#: inc/admin/admin-metaboxes-form.php:456
|
1058 |
+
msgid "Exactly match all parameters"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: inc/admin/admin-metaboxes-form.php:457
|
1062 |
+
msgid "Exclude all parameters"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: inc/admin/admin-metaboxes-form.php:458
|
1066 |
+
msgid "Exclude all parameters and pass them to the redirection"
|
|
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: inc/admin/admin-metaboxes-form.php:467 inc/admin/admin-metaboxes-form.php:469
|
1070 |
+
#: inc/admin/admin-metaboxes-form.php:472 inc/admin/admin-metaboxes-form.php:474
|
1071 |
+
msgid "Test your URL"
|
1072 |
+
msgstr "మీ URL ని పరీక్షించండి"
|
1073 |
|
1074 |
+
#: inc/admin/admin-metaboxes-form.php:486
|
1075 |
+
msgid "Need help with your redirections? Read our guide."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: inc/admin/admin-metaboxes-form.php:500
|
1079 |
+
msgid "Exclude this post from Google News Sitemap?"
|
1080 |
+
msgstr "Google వార్తల సైట్మాప్ నుండి ఈ పోస్ట్ను మినహాయించాలా?"
|
1081 |
|
1082 |
+
#: inc/admin/admin-metaboxes-form.php:526
|
1083 |
+
#, fuzzy
|
1084 |
+
#| msgid "Exclude this post from Google News Sitemap?"
|
1085 |
+
msgid "Exclude this post from Video Sitemap?"
|
1086 |
+
msgstr "Google వార్తల సైట్మాప్ నుండి ఈ పోస్ట్ను మినహాయించాలా?"
|
1087 |
|
1088 |
+
#: inc/admin/admin-metaboxes-form.php:528
|
1089 |
+
msgid "If your post is set to noindex, it will be automatically excluded from the sitemap."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: inc/admin/admin-metaboxes-form.php:547
|
1093 |
+
msgid "Video "
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: inc/admin/admin-metaboxes-form.php:551
|
1097 |
+
msgid "Video URL (required)"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: inc/admin/admin-metaboxes-form.php:552
|
1101 |
+
#, fuzzy
|
1102 |
+
#| msgid "Enter your new URL"
|
1103 |
+
msgid "Enter your video URL"
|
1104 |
+
msgstr "మీ క్రొత్త URL ను ఎంటర్ చెయ్యండి"
|
1105 |
|
1106 |
+
#: inc/admin/admin-metaboxes-form.php:552
|
1107 |
+
msgid "Video URL"
|
|
|
|
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: inc/admin/admin-metaboxes-form.php:557
|
1111 |
msgid ""
|
1112 |
+
"NOT an external video (eg: video hosting on YouTube, Vimeo, Wistia...)? Check this if your video is hosting "
|
1113 |
+
"on this server."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: inc/admin/admin-metaboxes-form.php:561
|
1117 |
+
msgid "Video Title (required)"
|
|
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: inc/admin/admin-metaboxes-form.php:562
|
1121 |
+
#, fuzzy
|
1122 |
+
#| msgid "Enter your title"
|
1123 |
+
msgid "Enter your video title"
|
1124 |
+
msgstr "మీ శీర్షికను నమోదు చేయండి"
|
1125 |
|
1126 |
+
#: inc/admin/admin-metaboxes-form.php:562
|
1127 |
+
#, fuzzy
|
1128 |
+
#| msgid "Site title"
|
1129 |
+
msgid "Video title"
|
1130 |
+
msgstr "సైట్ శీర్షిక"
|
1131 |
|
1132 |
+
#: inc/admin/admin-metaboxes-form.php:563
|
1133 |
+
msgid "Default: title tag, if not available, post title."
|
|
|
|
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: inc/admin/admin-metaboxes-form.php:566
|
1137 |
+
msgid "Video Description (required)"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: inc/admin/admin-metaboxes-form.php:567
|
1141 |
+
#, fuzzy
|
1142 |
+
#| msgid "Enter your meta description"
|
1143 |
+
msgid "Enter your video description"
|
1144 |
+
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
1145 |
|
1146 |
+
#: inc/admin/admin-metaboxes-form.php:567
|
1147 |
+
#, fuzzy
|
1148 |
+
#| msgid "Meta description"
|
1149 |
+
msgid "Video description"
|
1150 |
+
msgstr "ఉన్నత స్థాయి వివరణ"
|
1151 |
+
|
1152 |
+
#: inc/admin/admin-metaboxes-form.php:568
|
1153 |
msgid ""
|
1154 |
+
"2048 characters max.; default: meta description. If not available, use the beginning of the post content."
|
|
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: inc/admin/admin-metaboxes-form.php:571
|
1158 |
+
msgid "Video Thumbnail (required)"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: inc/admin/admin-metaboxes-form.php:572
|
1162 |
+
#, fuzzy
|
1163 |
+
#| msgid "Select your default thumbnail"
|
1164 |
+
msgid "Select your video thumbnail"
|
1165 |
+
msgstr "మీ డిఫాల్ట్ సూక్ష్మచిత్రం ఎంచుకోండి"
|
|
|
1166 |
|
1167 |
+
#: inc/admin/admin-metaboxes-form.php:573
|
1168 |
+
#, fuzzy
|
1169 |
+
#| msgid "Twitter Thumbnail"
|
1170 |
+
msgid "Video Thumbnail"
|
1171 |
+
msgstr "ట్విట్టర్ సూక్ష్మచిత్రం"
|
1172 |
|
1173 |
+
#: inc/admin/admin-metaboxes-form.php:574
|
1174 |
+
msgid "Minimum size: 160x90px (1920x1080 max), JPG, PNG or GIF formats. Default: your post featured image."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: inc/admin/admin-metaboxes-form.php:577
|
1178 |
+
msgid "Video Duration (recommended)"
|
|
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: inc/admin/admin-metaboxes-form.php:578
|
1182 |
+
msgid "Duration in seconds"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: inc/admin/admin-metaboxes-form.php:578
|
1186 |
+
msgid "Video duration"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: inc/admin/admin-metaboxes-form.php:579
|
1190 |
+
msgid "The duration of the video in seconds. Value must be between 0 and 28800 (8 hours)."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: inc/admin/admin-metaboxes-form.php:582
|
1194 |
+
msgid "Video Rating"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: inc/admin/admin-metaboxes-form.php:583
|
1198 |
+
msgid "Video rating"
|
1199 |
+
msgstr ""
|
|
|
1200 |
|
1201 |
+
#: inc/admin/admin-metaboxes-form.php:584
|
1202 |
+
msgid "Allowed values are float numbers in the range 0.0 to 5.0."
|
1203 |
+
msgstr ""
|
1204 |
|
1205 |
+
#: inc/admin/admin-metaboxes-form.php:587 inc/admin/admin-metaboxes-form.php:588
|
1206 |
+
msgid "View count"
|
1207 |
+
msgstr ""
|
1208 |
|
1209 |
+
#: inc/admin/admin-metaboxes-form.php:588
|
1210 |
+
msgid "Number of views"
|
1211 |
+
msgstr ""
|
1212 |
|
1213 |
+
#: inc/admin/admin-metaboxes-form.php:591 inc/admin/admin-metaboxes-form.php:592
|
1214 |
+
#, fuzzy
|
1215 |
+
#| msgid "Title tags"
|
1216 |
+
msgid "Video tags"
|
1217 |
+
msgstr "శీర్షిక ట్యాగ్లు"
|
1218 |
|
1219 |
+
#: inc/admin/admin-metaboxes-form.php:592
|
1220 |
#, fuzzy
|
1221 |
+
#| msgid "Enter yours domains"
|
1222 |
+
msgid "Enter your video tags"
|
1223 |
+
msgstr "మీ డొమైన్లను నమోదు చేయండి"
|
1224 |
|
1225 |
+
#: inc/admin/admin-metaboxes-form.php:593
|
1226 |
+
msgid "32 tags max., separate tags with commas. Default: target keywords + post tags if available."
|
|
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: inc/admin/admin-metaboxes-form.php:596 inc/admin/admin-metaboxes-form.php:597
|
1230 |
#, fuzzy
|
1231 |
+
#| msgid "Track Categories"
|
1232 |
+
msgid "Video categories"
|
1233 |
+
msgstr "Track Categories"
|
1234 |
|
1235 |
+
#: inc/admin/admin-metaboxes-form.php:597
|
1236 |
+
#, fuzzy
|
1237 |
+
#| msgid "Enter yours domains"
|
1238 |
+
msgid "Enter your video categories"
|
1239 |
+
msgstr "మీ డొమైన్లను నమోదు చేయండి"
|
1240 |
|
1241 |
+
#: inc/admin/admin-metaboxes-form.php:598
|
1242 |
msgid ""
|
1243 |
+
"256 characters max., usually a video will belong to a single category, separate categories with commas. "
|
1244 |
+
"Default: first post category if available."
|
|
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: inc/admin/admin-metaboxes-form.php:603
|
1248 |
+
msgid "NOT family friendly?"
|
|
|
|
|
|
|
|
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: inc/admin/admin-metaboxes-form.php:605
|
1252 |
+
msgid "The video will be available only to users with SafeSearch turned off."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: inc/admin/admin-metaboxes-form.php:607
|
1256 |
+
msgid "Remove video"
|
|
|
|
|
|
|
|
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: inc/admin/admin-metaboxes-form.php:614
|
1260 |
+
msgid "Add video"
|
|
|
|
|
|
|
|
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:7
|
1264 |
#, fuzzy
|
1265 |
+
#| msgid "Structured Data Types"
|
1266 |
+
msgid "Structured data types"
|
1267 |
+
msgstr "నిర్మాణాత్మక డేటా రకాలు"
|
1268 |
|
1269 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:12
|
1270 |
#, fuzzy
|
1271 |
+
#| msgid "Last updated date: "
|
1272 |
+
msgid "Last modified date"
|
1273 |
+
msgstr "చివరిగా నవీకరించబడిన తేదీ :"
|
|
|
|
|
|
|
|
|
1274 |
|
1275 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:17
|
1276 |
+
msgid "Words counter"
|
1277 |
+
msgstr ""
|
|
|
|
|
1278 |
|
1279 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:22
|
1280 |
+
msgid "Keywords density"
|
|
|
|
|
|
|
|
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:27
|
1284 |
#, fuzzy
|
1285 |
+
#| msgid "Remove stop words in permalinks"
|
1286 |
+
msgid "Keywords in permalink"
|
1287 |
+
msgstr "Permalinks లో stop words ని ఆపివేయి"
|
|
|
|
|
1288 |
|
1289 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:32
|
1290 |
#, fuzzy
|
1291 |
+
#| msgid "Settings"
|
1292 |
+
msgid "Headings"
|
1293 |
+
msgstr "సెట్టింగులు"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1294 |
|
1295 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:47
|
1296 |
#, fuzzy
|
1297 |
+
#| msgid "Social Networks"
|
1298 |
+
msgid "Social meta tags"
|
1299 |
+
msgstr "సామాజిక నెట్వర్క్స్"
|
1300 |
|
1301 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:52
|
1302 |
+
msgid "Meta robots"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:57
|
1306 |
+
msgid "Alternative texts of images"
|
|
|
|
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:62
|
1310 |
#, fuzzy
|
1311 |
+
#| msgid "Nofollow?"
|
1312 |
+
msgid "NoFollow Links"
|
1313 |
+
msgstr "Nofollow?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1314 |
|
1315 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:67
|
1316 |
#, fuzzy
|
1317 |
+
#| msgid "Broken Links"
|
1318 |
+
msgid "Outbound Links"
|
1319 |
+
msgstr "బ్రోకెన్ లింక్స్"
|
|
|
|
|
|
|
|
|
1320 |
|
1321 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:75
|
1322 |
+
msgid "We found these schemas in the source code of this page:"
|
|
|
|
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:82
|
1326 |
+
msgid "duplicated schema - x"
|
|
|
|
|
|
|
|
|
|
|
|
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:91
|
1330 |
+
msgid "No schemas found in the source code of this page."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:98
|
1334 |
+
msgid "This post is a little old!"
|
|
|
|
|
|
|
|
|
|
|
|
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:100
|
1338 |
+
msgid "The last modified date of this article is less than 1 year. Cool!"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:102
|
1342 |
msgid ""
|
1343 |
+
"Search engines love fresh content. Regularly update your articles without having to rewrite your content "
|
1344 |
+
"entirely and give them a boost in search rankings. SEOPress takes care of the technical part."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:108
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1348 |
msgid ""
|
1349 |
+
"Words counter is not a direct ranking factor. But, your content must be as qualitative as possible, with "
|
1350 |
+
"relevant and unique information. To fulfill these conditions, your article requires a minimum of "
|
1351 |
+
"paragraphs, so words."
|
|
|
|
|
|
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:110
|
1355 |
+
msgid "words found."
|
|
|
|
|
|
|
|
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:111
|
1359 |
+
msgid "unique words found."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:114
|
1363 |
+
msgid "Your content is composed of more than 300 words, which is the minimum for a post."
|
1364 |
+
msgstr ""
|
|
|
|
|
1365 |
|
1366 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:116
|
1367 |
+
msgid "Your content is too short. Add a few more paragraphs!"
|
1368 |
+
msgstr ""
|
|
|
|
|
1369 |
|
1370 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:123
|
1371 |
+
msgid "No content? Add a few more paragraphs!"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:138
|
1375 |
+
#, php-format
|
1376 |
+
msgid "%s was found %d times in your content, a keyword density of %s%%"
|
1377 |
+
msgstr ""
|
|
|
1378 |
|
1379 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:141
|
1380 |
+
msgid ""
|
1381 |
+
"Learn more about <a href=\"https://www.youtube.com/watch?v=Rk4qgQdp2UA\" target=\"_blank\">keywords "
|
1382 |
+
"stuffing</a>."
|
1383 |
+
msgstr ""
|
1384 |
|
1385 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:145
|
1386 |
msgid ""
|
1387 |
+
"We were unable to calculate the density of your keywords. You probably haven‘t added any content or your "
|
1388 |
+
"target keywords were not find in your post content."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:151
|
1392 |
+
msgid "Cool, one of your target keyword is used in your permalink."
|
1393 |
+
msgstr ""
|
1394 |
|
1395 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:165
|
1396 |
+
msgid "This is your homepage. This check doesn't apply here because there is no slug."
|
1397 |
+
msgstr ""
|
1398 |
|
1399 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:168
|
1400 |
+
msgid "You should add one of your target keyword in your permalink."
|
1401 |
+
msgstr ""
|
1402 |
|
1403 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:178
|
1404 |
+
msgid "H1 (Heading 1)"
|
1405 |
+
msgstr ""
|
1406 |
|
1407 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:186
|
1408 |
+
msgid "Target keywords were found in Heading 1 (H1)."
|
1409 |
+
msgstr ""
|
1410 |
|
1411 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:195
|
1412 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:225
|
1413 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:246
|
1414 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:269
|
1415 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:303
|
1416 |
+
#, php-format
|
1417 |
+
msgid "%s was found %d times."
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:200
|
1421 |
+
#, php-format
|
1422 |
+
msgid "We found %d Heading 1 (H1) in your content."
|
1423 |
+
msgstr ""
|
1424 |
|
1425 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:201
|
1426 |
msgid ""
|
1427 |
+
"You should not use more than one H1 heading in your post content. The rule is simple: only one H1 for each "
|
1428 |
+
"web page. It is better for both SEO and accessibility. Below, the list:"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:215
|
1432 |
+
msgid "H2 (Heading 2)"
|
1433 |
+
msgstr ""
|
|
|
|
|
1434 |
|
1435 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:217
|
1436 |
+
msgid "Target keywords were found in Heading 2 (H2)."
|
1437 |
+
msgstr ""
|
|
|
|
|
1438 |
|
1439 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:229
|
1440 |
+
msgid "None of your target keywords were found in Heading 2 (H2)."
|
|
|
|
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:236
|
1444 |
+
msgid "H3 (Heading 3)"
|
|
|
|
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:238
|
1448 |
+
msgid "Target keywords were found in Heading 3 (H3)."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:250
|
1452 |
+
msgid "None of your target keywords were found in Heading 3 (H3)."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:261
|
1456 |
+
msgid "Target keywords were found in the Meta Title."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:275
|
1460 |
+
msgid "None of your target keywords were found in the Meta Title."
|
1461 |
+
msgstr ""
|
|
|
|
|
1462 |
|
1463 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:280
|
1464 |
#, fuzzy
|
1465 |
+
#| msgid "Your site title is empty!"
|
1466 |
+
msgid "Your custom title is too long."
|
1467 |
+
msgstr "మీ సైట్ శీర్షిక ఖాళీగా ఉంది!"
|
1468 |
|
1469 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:283
|
1470 |
+
msgid "The length of your title is correct"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:288
|
1474 |
+
msgid ""
|
1475 |
+
"No custom title is set for this post. If the global meta title suits you, you can ignore this "
|
1476 |
+
"recommendation."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:295
|
1480 |
+
#, fuzzy
|
1481 |
+
#| msgid "Enter your meta description"
|
1482 |
+
msgid "Target keywords were found in the Meta description."
|
1483 |
+
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
1484 |
|
1485 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:309
|
1486 |
+
msgid "None of your target keywords were found in the Meta description."
|
1487 |
+
msgstr ""
|
1488 |
|
1489 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:314
|
1490 |
+
#, fuzzy
|
1491 |
+
#| msgid "Add meta description column"
|
1492 |
+
msgid "You custom meta description is too long."
|
1493 |
+
msgstr "మెటా వివరణ నిలువు వరుసను జోడించండి"
|
1494 |
|
1495 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:317
|
1496 |
+
#, fuzzy
|
1497 |
+
#| msgid "Enter your meta description"
|
1498 |
+
msgid "The length of your meta description is correct"
|
1499 |
+
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
1500 |
|
1501 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:322
|
1502 |
msgid ""
|
1503 |
+
"No custom meta description is set for this post. If the global meta description suits you, you can ignore "
|
1504 |
+
"this recommendation."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:329
|
1508 |
#, fuzzy
|
1509 |
+
#| msgid "Enable Open Graph Data"
|
1510 |
+
msgid "Open Graph Title"
|
1511 |
+
msgstr "ఓపెన్ గ్రాఫ్ డేటాను ప్రారంభించండి"
|
1512 |
|
1513 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:338
|
1514 |
+
#, php-format
|
1515 |
+
msgid "We found %d og:title in your content."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:339
|
1519 |
+
msgid ""
|
1520 |
+
"You should not use more than one og:title in your post content to avoid conflicts when sharing on social "
|
1521 |
+
"networks. Facebook will take the last og:title tag from your source code. Below, the list:"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:341
|
1525 |
+
msgid "We found an Open Graph Title tag in your source code."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:353
|
1529 |
+
msgid "Your Open Graph Title is missing!"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:357
|
1533 |
+
#, fuzzy
|
1534 |
+
#| msgid "Term Description"
|
1535 |
+
msgid "Open Graph Description"
|
1536 |
+
msgstr "పదం వివరణ - Term Description"
|
1537 |
|
1538 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:367
|
1539 |
+
#, php-format
|
1540 |
+
msgid "We found %d og:description in your content."
|
1541 |
+
msgstr ""
|
1542 |
|
1543 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:368
|
1544 |
+
msgid ""
|
1545 |
+
"You should not use more than one og:description in your post content to avoid conflicts when sharing on "
|
1546 |
+
"social networks. Facebook will take the last og:description tag from your source code. Below, the list:"
|
1547 |
+
msgstr ""
|
1548 |
|
1549 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:370
|
1550 |
+
msgid "We found an Open Graph Description tag in your source code."
|
1551 |
+
msgstr ""
|
|
|
|
|
1552 |
|
1553 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:382
|
1554 |
+
msgid "Your Open Graph Description is missing!"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:386
|
1558 |
#, fuzzy
|
1559 |
+
#| msgid "Enable Open Graph Data"
|
1560 |
+
msgid "Open Graph Image"
|
1561 |
+
msgstr "ఓపెన్ గ్రాఫ్ డేటాను ప్రారంభించండి"
|
1562 |
|
1563 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:395
|
1564 |
+
#, php-format
|
1565 |
+
msgid "We found %d og:image in your content."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:407
|
1569 |
+
msgid "Your Open Graph Image is missing!"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:411
|
1573 |
+
#, fuzzy
|
1574 |
+
#| msgid "Enable Open Graph Data"
|
1575 |
+
msgid "Open Graph URL"
|
1576 |
+
msgstr "ఓపెన్ గ్రాఫ్ డేటాను ప్రారంభించండి"
|
1577 |
|
1578 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:421
|
1579 |
+
#, php-format
|
1580 |
+
msgid "We found %d og:url in your content."
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:422
|
1584 |
+
msgid ""
|
1585 |
+
"You should not use more than one og:url in your post content to avoid conflicts when sharing on social "
|
1586 |
+
"networks. Facebook will take the last og:url tag from your source code. Below, the list:"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:424
|
1590 |
+
msgid "We found an Open Graph URL tag in your source code."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:436
|
1594 |
+
msgid "Your Open Graph URL is missing!"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:440
|
1598 |
+
#, fuzzy
|
1599 |
+
#| msgid "Enable Open Graph Data"
|
1600 |
+
msgid "Open Graph Site Name"
|
1601 |
+
msgstr "ఓపెన్ గ్రాఫ్ డేటాను ప్రారంభించండి"
|
1602 |
|
1603 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:450
|
1604 |
+
#, php-format
|
1605 |
+
msgid "We found %d og:site_name in your content."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:451
|
1609 |
+
msgid ""
|
1610 |
+
"You should not use more than one og:site_name in your post content to avoid conflicts when sharing on "
|
1611 |
+
"social networks. Facebook will take the last og:site_name tag from your source code. Below, the list:"
|
1612 |
+
msgstr ""
|
1613 |
|
1614 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:453
|
1615 |
+
msgid "We found an Open Graph Site Name tag in your source code."
|
1616 |
+
msgstr ""
|
|
|
|
|
1617 |
|
1618 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:465
|
1619 |
+
msgid "Your Open Graph Site Name is missing!"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:479
|
1623 |
+
#, php-format
|
1624 |
+
msgid "We found %d twitter:title in your content."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:480
|
1628 |
+
msgid ""
|
1629 |
+
"You should not use more than one twitter:title in your post content to avoid conflicts when sharing on "
|
1630 |
+
"social networks. Twitter will take the last twitter:title tag from your source code. Below, the list:"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:482
|
1634 |
+
msgid "We found a Twitter Title Tag in your source code."
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:494
|
1638 |
#, fuzzy
|
1639 |
+
#| msgid "Your site title is empty!"
|
1640 |
+
msgid "Your Twitter Title is missing!"
|
1641 |
+
msgstr "మీ సైట్ శీర్షిక ఖాళీగా ఉంది!"
|
1642 |
|
1643 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:498
|
1644 |
+
#, fuzzy
|
1645 |
+
#| msgid "Twitter description"
|
1646 |
+
msgid "Twitter Description"
|
1647 |
+
msgstr "Twitter వివరణ"
|
1648 |
+
|
1649 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:508
|
1650 |
+
#, php-format
|
1651 |
+
msgid "We found %d twitter:description in your content."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:509
|
1655 |
msgid ""
|
1656 |
+
"You should not use more than one twitter:description in your post content to avoid conflicts when sharing "
|
1657 |
+
"on social networks. Twitter will take the last twitter:description tag from your source code. Below, the "
|
1658 |
+
"list:"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:511
|
1662 |
+
msgid "We found a Twitter Description tag in your source code."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:523
|
1666 |
#, fuzzy
|
1667 |
+
#| msgid "Enter your Twitter description"
|
1668 |
+
msgid "Your Twitter Description is missing!"
|
1669 |
+
msgstr "మీ Twitter వివరణను నమోదు చేయండి"
|
1670 |
|
1671 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:527
|
1672 |
#, fuzzy
|
1673 |
+
#| msgid "Default Twitter Image"
|
1674 |
+
msgid "Twitter Image"
|
1675 |
+
msgstr "డిఫాల్ట్ ట్విట్టర్ చిత్రం"
|
1676 |
|
1677 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:536
|
1678 |
+
#, php-format
|
1679 |
+
msgid "We found %d twitter:image in your content."
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:548
|
1683 |
+
msgid "Your Twitter Image is missing!"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:563
|
1687 |
+
#, php-format
|
1688 |
+
msgid "We found %s meta robots in your page. There is probably something wrong with your theme!"
|
1689 |
+
msgstr ""
|
|
|
1690 |
|
1691 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:568
|
1692 |
+
msgid "noindex is on! Search engines can't index this page."
|
1693 |
+
msgstr ""
|
|
|
|
|
1694 |
|
1695 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:570
|
1696 |
+
msgid "noindex is off. Search engines will index this page."
|
|
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:575
|
1700 |
+
msgid "nofollow is on! Search engines can't follow your links on this page."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:577
|
1704 |
+
msgid "nofollow is off. Search engines will follow links on this page."
|
1705 |
+
msgstr ""
|
|
|
|
|
1706 |
|
1707 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:584
|
1708 |
+
msgid "noarchive is on! Search engines will not cache your page."
|
1709 |
+
msgstr ""
|
|
|
|
|
1710 |
|
1711 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:586
|
1712 |
+
msgid "noarchive is off. Search engines will probably cache your page."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:593
|
1716 |
+
msgid "nosnippet is on! Search engines will not display a snippet of this page in search results."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:595
|
1720 |
+
msgid "nosnippet is off. Search engines will display a snippet of this page in search results."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:598
|
1724 |
+
msgid ""
|
1725 |
+
"We found no meta robots on this page. It means, your page is index,follow. Search engines will index it, "
|
1726 |
+
"and follow links. "
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:607
|
1730 |
+
msgid ""
|
1731 |
+
"noimageindex is on! Google will not index your images on this page (but if someone makes a direct link to "
|
1732 |
+
"one of your image in this page, it will be indexed)."
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:609
|
1736 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:621
|
1737 |
+
msgid "noimageindex is off. Google will index the images on this page."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:616
|
1741 |
+
msgid "nositelinkssearchbox is on! Google will not display a sitelinks searchbox in search results."
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:618
|
1745 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:623
|
1746 |
+
msgid "nositelinkssearchbox is off. Google will probably display a sitelinks searchbox in search results."
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:636
|
1750 |
+
msgid ""
|
1751 |
+
"No alternative text found for these images. Alt tags are important for both SEO and accessibility. Edit "
|
1752 |
+
"your images using the media library or your favorite page builder and fill in alternative text fields."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:647
|
1756 |
+
msgid "All alternative tags are filled in. Good work!"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:654
|
1760 |
+
msgid "We could not find any image in your content. Content with media is a plus for your SEO."
|
1761 |
+
msgstr ""
|
|
|
|
|
1762 |
|
1763 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:661
|
1764 |
+
#, php-format
|
1765 |
+
msgid ""
|
1766 |
+
"We found %d links with nofollow attribute in your page. Do not overuse nofollow attribute in links. Below, "
|
1767 |
+
"the list:"
|
1768 |
+
msgstr ""
|
1769 |
|
1770 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:672
|
1771 |
+
msgid "This page doesn't have any nofollow links."
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:676
|
1775 |
+
msgid ""
|
1776 |
+
"Internet is built on the principle of hyperlink. It is therefore perfectly normal to make links between "
|
1777 |
+
"different websites. However, avoid making links to low quality sites, SPAM... If you are not sure about the "
|
1778 |
+
"quality of a site, add the attribute \"nofollow\" to your link."
|
1779 |
+
msgstr ""
|
1780 |
|
1781 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:680
|
1782 |
+
#, php-format
|
1783 |
+
msgid "We found %s outbound links in your page. Below, the list:"
|
1784 |
+
msgstr ""
|
|
|
1785 |
|
1786 |
+
#: inc/admin/admin-metaboxes-get-content-analysis.php:690
|
1787 |
+
msgid "This page doesn't have any outbound links."
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: inc/admin/admin-metaboxes-render-content-analysis.php:12 inc/admin/admin-metaboxes.php:428
|
1791 |
+
msgid "Content analysis"
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: inc/admin/admin-metaboxes-render-content-analysis.php:12
|
1795 |
msgid ""
|
1796 |
+
"<strong>Should be improved:</strong> red or orange dots <br> <strong>Good:</strong> yellow or green dots"
|
|
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: inc/admin/admin-metaboxes-render-content-analysis.php:16 inc/functions/options-advanced-admin.php:502
|
1800 |
+
msgid "Should be improved"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: inc/admin/admin-metaboxes-render-content-analysis.php:19 inc/functions/options-advanced-admin.php:497
|
1804 |
+
msgid "Good"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: inc/admin/admin-metaboxes-render-content-analysis.php:30
|
1808 |
+
msgid "Expand"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: inc/admin/admin-metaboxes-render-content-analysis.php:30
|
1812 |
+
msgid "Close"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
#: inc/admin/admin-metaboxes.php:201 inc/admin/admin-metaboxes.php:442 inc/admin/admin-term-metaboxes.php:203
|
1816 |
msgid "Analysis in progress..."
|
1817 |
msgstr ""
|
1818 |
|
|
|
|
|
|
|
|
|
1819 |
#: inc/admin/admin-notifications-center.php:49 inc/admin/admin-notifications-center.php:55
|
1820 |
msgid "Notifications Center"
|
1821 |
msgstr "నోటిఫికేషన్ సెంటర్"
|
1836 |
msgid "The best way to quickly setup SEOPress on your site."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: inc/admin/admin-notifications-center.php:100 inc/admin/admin-notifications-center.php:129
|
1840 |
msgid "Wizard"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: inc/admin/admin-notifications-center.php:104 inc/admin/admin-notifications-center.php:133
|
1844 |
msgid "Start the wizard"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
#: inc/admin/admin-notifications-center.php:126
|
1848 |
+
msgid "Configure SEOPress Insights in a few minutes with our installation wizard"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
#: inc/admin/admin-notifications-center.php:127
|
1852 |
+
msgid "Track your keywords positions and backlinks directly on your WordPress site."
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: inc/admin/admin-notifications-center.php:156
|
1856 |
+
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1857 |
+
msgstr ""
|
1858 |
+
|
1859 |
+
#: inc/admin/admin-notifications-center.php:157
|
1860 |
msgid ""
|
1861 |
"This error indicates that your theme uses a deprecated function to generate the title tag of your pages. "
|
1862 |
"SEOPress will not be able to generate your custom title tags if this error is not fixed."
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: inc/admin/admin-notifications-center.php:159 inc/admin/admin-notifications-center.php:192
|
1866 |
+
#: inc/admin/admin-notifications-center.php:316 inc/admin/admin-notifications-center.php:366
|
1867 |
+
#: inc/admin/admin-notifications-center.php:396 inc/admin/admin-notifications-center.php:414
|
1868 |
+
#: inc/admin/admin-notifications-center.php:431 inc/admin/admin-notifications-center.php:519
|
1869 |
+
#: inc/admin/admin-notifications-center.php:595 inc/admin/admin-notifications-center.php:632
|
1870 |
+
#: inc/admin/admin-notifications-center.php:650
|
1871 |
msgid "High impact"
|
1872 |
msgstr "అధిక ప్రభావం"
|
1873 |
|
1874 |
+
#: inc/admin/admin-notifications-center.php:164 inc/admin/admin-notifications-center.php:244
|
1875 |
+
#: inc/admin/admin-notifications-center.php:283 inc/admin/admin-notifications-center.php:345
|
1876 |
+
#: inc/admin/admin-notifications-center.php:371 inc/admin/admin.php:4942 inc/admin/admin.php:4982
|
1877 |
+
#: inc/admin/admin.php:5009 inc/admin/admin.php:5031 inc/admin/admin.php:5053 inc/admin/admin.php:5075
|
1878 |
msgid "Learn more"
|
1879 |
msgstr "ఇంకా నేర్చుకోండి"
|
1880 |
|
1881 |
+
#: inc/admin/admin-notifications-center.php:189
|
1882 |
#, php-format
|
1883 |
msgid "We noticed that you use <strong>%s</strong> plugin."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: inc/admin/admin-notifications-center.php:190
|
1887 |
msgid ""
|
1888 |
"Do you want to migrate all your metadata to SEOPress? Do not use multiple SEO plugins at once to avoid "
|
1889 |
"conflicts!"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: inc/admin/admin-notifications-center.php:196
|
1893 |
msgid "Migrate!"
|
1894 |
msgstr "ప్రవాసానికి పోవు - (Migrate!)"
|
1895 |
|
1896 |
+
#: inc/admin/admin-notifications-center.php:209
|
1897 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: inc/admin/admin-notifications-center.php:210
|
1901 |
msgid "To solve this, please disable and re-enable SEOPress PRO. No data will be lost."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: inc/admin/admin-notifications-center.php:236
|
1905 |
+
#, php-format
|
1906 |
+
msgid "Generate automatic meta description for <strong>%s</strong> plugin."
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: inc/admin/admin-notifications-center.php:237
|
1910 |
+
msgid ""
|
1911 |
+
"Your page builder is using shortcodes to save its data. To automatically generate your meta description "
|
1912 |
+
"based on your post content, you will have to add some hooks to your functions.php."
|
1913 |
+
msgstr ""
|
1914 |
+
|
1915 |
+
#: inc/admin/admin-notifications-center.php:239 inc/admin/admin-notifications-center.php:278
|
1916 |
+
#: inc/admin/admin-notifications-center.php:460 inc/admin/admin-notifications-center.php:549
|
1917 |
+
#: inc/admin/admin-notifications-center.php:567
|
1918 |
+
msgid "Medium impact"
|
1919 |
+
msgstr "మధ్యస్థ ప్రభావం"
|
1920 |
+
|
1921 |
+
#: inc/admin/admin-notifications-center.php:275
|
1922 |
+
#, php-format
|
1923 |
+
msgid "Generate automatic meta description for <strong>%s</strong> theme."
|
1924 |
+
msgstr ""
|
1925 |
+
|
1926 |
+
#: inc/admin/admin-notifications-center.php:276
|
1927 |
+
msgid ""
|
1928 |
+
"Your theme is using shortcodes to save its data. To automatically generate your meta description based on "
|
1929 |
+
"your post content, you will have to add some hooks to your functions.php."
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: inc/admin/admin-notifications-center.php:313
|
1933 |
+
msgid "Enfold theme is not correctly setup for SEO!"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: inc/admin/admin-notifications-center.php:314
|
1937 |
+
msgid ""
|
1938 |
+
"You must disable \"Meta tag robots\" option from Enfold settings (SEO Support tab) to avoid any SEO issues."
|
1939 |
+
msgstr ""
|
1940 |
+
|
1941 |
+
#: inc/admin/admin-notifications-center.php:320 inc/admin/admin-notifications-center.php:400
|
1942 |
+
#: inc/admin/admin-notifications-center.php:418 inc/admin/admin-notifications-center.php:435
|
1943 |
+
#: inc/admin/admin-notifications-center.php:464 inc/admin/admin-notifications-center.php:553
|
1944 |
+
#: inc/admin/admin-notifications-center.php:571 inc/admin/admin-notifications-center.php:654
|
1945 |
+
#: inc/admin/admin-notifications-center.php:673
|
1946 |
+
msgid "Fix this!"
|
1947 |
+
msgstr "దీన్ని పరిష్కరించండి!"
|
1948 |
+
|
1949 |
+
#: inc/admin/admin-notifications-center.php:344
|
1950 |
msgid "Your site doesn't use an SSL certificate!"
|
1951 |
msgstr "మీ సైట్ SSL ప్రమాణపత్రాన్ని ఉపయోగించుటలేదు!"
|
1952 |
|
1953 |
+
#: inc/admin/admin-notifications-center.php:345
|
1954 |
msgid ""
|
1955 |
"Https is considered by Google as a positive signal for the ranking of your site. It also reassures your "
|
1956 |
"visitors for data security, and improves trust."
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: inc/admin/admin-notifications-center.php:347
|
1960 |
msgid "Low impact"
|
1961 |
msgstr "తక్కువ ప్రభావం"
|
1962 |
|
1963 |
+
#: inc/admin/admin-notifications-center.php:351
|
1964 |
msgid "Buy an SSL!"
|
1965 |
msgstr "ఒక SSL కొనండి!"
|
1966 |
|
1967 |
+
#: inc/admin/admin-notifications-center.php:363
|
1968 |
msgid "PHP module \"DOM\" is missing on your server."
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: inc/admin/admin-notifications-center.php:364
|
1972 |
msgid ""
|
1973 |
"This PHP module, installed by default with PHP, is required by many plugins including SEOPress. Please "
|
1974 |
"contact your host as soon as possible to solve this."
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: inc/admin/admin-notifications-center.php:393
|
1978 |
msgid "Your site is not visible to Search Engines!"
|
1979 |
msgstr "శోధన ఇంజిన్లకు మీ సైట్ కనిపించదు!"
|
1980 |
|
1981 |
+
#: inc/admin/admin-notifications-center.php:394
|
1982 |
msgid ""
|
1983 |
"You have activated the blocking of the indexing of your site. If your site is under development, this is "
|
1984 |
"probably normal. Otherwise, check your settings. Delete this notification using the cross on the right if "
|
1985 |
"you are not concerned."
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: inc/admin/admin-notifications-center.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1989 |
msgid "Your site title is empty!"
|
1990 |
msgstr "మీ సైట్ శీర్షిక ఖాళీగా ఉంది!"
|
1991 |
|
1992 |
+
#: inc/admin/admin-notifications-center.php:412
|
1993 |
msgid ""
|
1994 |
"Your Site Title is used by WordPress, your theme and your plugins including SEOPress. It is an essential "
|
1995 |
"component in the generation of title tags, but not only. Enter one!"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: inc/admin/admin-notifications-center.php:428 inc/admin/admin.php:2852
|
1999 |
msgid "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
2000 |
msgstr "మీ permalinks SEO ఫ్రెండ్లీ కాదు! దీనిని పరిష్కరించడానికి అందంగా permalinks ను ప్రారంభించండి."
|
2001 |
|
2002 |
+
#: inc/admin/admin-notifications-center.php:429 inc/admin/admin-notifications-center.php:458
|
2003 |
msgid ""
|
2004 |
"Why is this important? Showing only the summary of each article significantly reduces the theft of your "
|
2005 |
"content by third party sites. Not to mention, the increase in your traffic, your advertising revenue, "
|
2006 |
"conversions..."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: inc/admin/admin-notifications-center.php:457
|
2010 |
#, fuzzy
|
2011 |
#| msgid "You RSS feed show full text!"
|
2012 |
msgid "Your RSS feed shows full text!"
|
2013 |
msgstr "మీరు RSS ఫీడ్ పూర్తి టెక్స్ట్ చూపించు!"
|
2014 |
|
2015 |
+
#: inc/admin/admin-notifications-center.php:487
|
|
|
|
|
|
|
|
|
|
|
2016 |
#, fuzzy
|
2017 |
#| msgid "You like SEOPress? Don't forget to rate it 5 stars!"
|
2018 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
2019 |
msgstr "మీరు SEOPress నచ్చిందా? 5 నక్షత్రాలు తో రేటింగ్ ఇవ్వండి!"
|
2020 |
|
2021 |
+
#: inc/admin/admin-notifications-center.php:488
|
2022 |
msgid ""
|
2023 |
"Support the development and improvement of the plugin by taking 15 seconds of your time to leave us a user "
|
2024 |
"review on the official WordPress plugins repository. Thank you!"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: inc/admin/admin-notifications-center.php:490
|
2028 |
msgid "Information"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: inc/admin/admin-notifications-center.php:494
|
2032 |
msgid "Rate us!"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: inc/admin/admin-notifications-center.php:516
|
2036 |
msgid "Break comments into pages is ON!"
|
2037 |
msgstr "వ్యాఖ్యలు పేజీలలో బ్రేక్, ఆన్లో ఉంది!"
|
2038 |
|
2039 |
+
#: inc/admin/admin-notifications-center.php:517
|
2040 |
msgid ""
|
2041 |
"Enabling this option will create duplicate content for each article beyond x comments. This can have a "
|
2042 |
"disastrous effect by creating a large number of poor quality pages, and slowing the Google bot "
|
2043 |
"unnecessarily, so your ranking in search results."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: inc/admin/admin-notifications-center.php:523
|
2047 |
msgid "Disable this!"
|
2048 |
msgstr "దీన్ని ఆపివేయి!"
|
2049 |
|
2050 |
+
#: inc/admin/admin-notifications-center.php:546
|
2051 |
msgid "Display more posts per page on homepage and archives"
|
2052 |
msgstr "(Homepage) హోమ్పేజీ మరియు ఆర్కైవ్ లలో పేజీకి ఎక్కువ పోస్ట్లు ప్రదర్శించు"
|
2053 |
|
2054 |
+
#: inc/admin/admin-notifications-center.php:547
|
2055 |
msgid ""
|
2056 |
"To reduce the number pages search engines have to crawl to find all your articles, it is recommended "
|
2057 |
"displaying more posts per page. This should not be a problem for your users. Using mobile, we prefer to "
|
2058 |
+
"scroll down rather than clicking on next page links."
|
|
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: inc/admin/admin-notifications-center.php:564
|
2062 |
msgid "You don't have an XML Sitemap!"
|
2063 |
msgstr "మీకు XML సైట్ మ్యాప్ లేదు!"
|
2064 |
|
2065 |
+
#: inc/admin/admin-notifications-center.php:565
|
2066 |
msgid ""
|
2067 |
"XML Sitemaps are useful to facilitate the crawling of your content by search engine robots. Indirectly, "
|
2068 |
"this can benefit your ranking by reducing the crawl bugdet."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: inc/admin/admin-notifications-center.php:592
|
2072 |
#, fuzzy
|
2073 |
#| msgid "Do you have a Google Business page? It's free!"
|
2074 |
msgid "Do you have a Google My Business page? It's free!"
|
2075 |
msgstr "మీకు Google వ్యాపారం పేజీ ఉందా? ఇది ఉచితం!"
|
2076 |
|
2077 |
+
#: inc/admin/admin-notifications-center.php:593
|
2078 |
msgid ""
|
2079 |
"Local Business websites should have a My Business page to improve visibility in search results. Click on "
|
2080 |
"the cross on the right to delete this notification if you are not concerned."
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: inc/admin/admin-notifications-center.php:599
|
2084 |
msgid "Create your page now!"
|
2085 |
msgstr "ఇప్పుడు మీ పేజీని సృష్టించండి!"
|
2086 |
|
2087 |
+
#: inc/admin/admin-notifications-center.php:629
|
2088 |
msgid "Add your site to Google. It's free!"
|
2089 |
msgstr "మీ సైట్ను Google కి జోడించండి. ఇది ఉచితం!"
|
2090 |
|
2091 |
+
#: inc/admin/admin-notifications-center.php:630
|
2092 |
msgid ""
|
2093 |
"Is your brand new site online? So reference it as quickly as possible on Google to get your first visitors "
|
2094 |
"via Google Search Console. Already the case? Click on the cross on the right to remove this alert."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: inc/admin/admin-notifications-center.php:636
|
2098 |
msgid "Add your site to Search Console!"
|
2099 |
msgstr "మీ సైట్ ను సెర్చ్ కన్సోల్కు జోడించండి! (Search Console!)"
|
2100 |
|
2101 |
+
#: inc/admin/admin-notifications-center.php:647
|
2102 |
msgid "Structured data types is not correctly enabled"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: inc/admin/admin-notifications-center.php:648
|
2106 |
msgid ""
|
2107 |
"Please enable <strong>Structured Data Types metabox for your posts, pages and custom post types</strong> "
|
2108 |
"option in order to use automatic and manual schemas. (SEO > PRO > Structured Data Types (schema.org)"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: inc/admin/admin-notifications-center.php:666
|
2112 |
msgid "You have to enter your licence key to get updates and support"
|
2113 |
msgstr "నవీకరణలు మరియు మద్దతు పొందడానికి మీరు మీ లైసెన్స్ కీని నమోదు చేయాలి"
|
2114 |
|
2115 |
+
#: inc/admin/admin-notifications-center.php:667
|
2116 |
msgid ""
|
2117 |
"Please activate the SEOPress PRO license key to automatically receive updates to guarantee you the best "
|
2118 |
"user experience possible."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: inc/admin/admin-notifications-center.php:695
|
2122 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: inc/admin/admin-notifications-center.php:696
|
2126 |
msgid ""
|
2127 |
"The PRO version of SEOPress allows you to easily manage your structured data (schemas), add a breadcrumb "
|
2128 |
"optimized for SEO and accessibility, improve SEO for WooCommerce, gain productivity with our import / "
|
2129 |
"export tool from a CSV of your metadata and so much more."
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: inc/admin/admin-notifications-center.php:703
|
2133 |
#, fuzzy
|
2134 |
#| msgid "Migrate now"
|
2135 |
msgid "Upgrade now!"
|
2136 |
msgstr "ఇప్పుడే మైగ్రేట్ చేయండి"
|
2137 |
|
2138 |
+
#: inc/admin/admin-notifications-center.php:720
|
2139 |
msgid "Check websites setup on your server"
|
2140 |
msgstr "మీ సర్వర్లో వెబ్సైటు సెటప్ తనిఖీ చేయండి"
|
2141 |
|
2142 |
+
#: inc/admin/admin-notifications-center.php:729
|
2143 |
msgid "Not found"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: inc/admin/admin-notifications-center.php:734
|
2147 |
#, fuzzy
|
2148 |
#| msgid "Last scrape: "
|
2149 |
msgid "No scrape."
|
2150 |
msgstr "Last scrape: చివరి గీరి :"
|
2151 |
|
2152 |
+
#: inc/admin/admin-notifications-center.php:739
|
2153 |
msgid "No domain found."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: inc/admin/admin-notifications-center.php:749
|
2157 |
msgid "Server IP Address: "
|
2158 |
msgstr "సర్వర్ IP చిరునామా :"
|
2159 |
|
2160 |
+
#: inc/admin/admin-notifications-center.php:752
|
2161 |
msgid "Last scrape: "
|
2162 |
msgstr "Last scrape: చివరి గీరి :"
|
2163 |
|
2164 |
+
#: inc/admin/admin-notifications-center.php:753
|
2165 |
msgid "Number of websites on your server: "
|
2166 |
msgstr "మీ సర్వర్లోని వెబ్సైట్ల సంఖ్య :"
|
2167 |
|
2168 |
+
#: inc/admin/admin-notifications-center.php:766
|
2169 |
msgid "Get list"
|
2170 |
msgstr "జాబితా పొందండి"
|
2171 |
|
2172 |
+
#: inc/admin/admin-notifications-center.php:775
|
2173 |
msgid "Our blog: SEO news, how-to, tips and tricks..."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: inc/admin/admin-notifications-center.php:776
|
2177 |
msgid "Upload a list of links to disavow to Google"
|
2178 |
msgstr "Google కు ఇష్టపడని లింక్ల జాబితాను అప్లోడ్ చేయండి"
|
2179 |
|
2180 |
+
#: inc/admin/admin-notifications-center.php:778
|
|
|
|
|
|
|
|
|
2181 |
msgid "Image SEO plugin to optimize your image ALT texts and names for Search Engines."
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: inc/admin/admin-notifications-center.php:780
|
2185 |
msgid "Dareboost: Test, analyze and optimize your website"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: inc/admin/admin-notifications-center.php:781
|
2189 |
msgid "Google Campaign URL Builder tool"
|
2190 |
msgstr "Google ప్రచారం URL బిల్డర్ సాధనం"
|
2191 |
|
2192 |
+
#: inc/admin/admin-wizard.php:100 seopress.php:221
|
2193 |
msgid "Migration completed!"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: inc/admin/admin-wizard.php:101 seopress.php:222
|
2197 |
msgid "Export completed!"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: inc/admin/admin-wizard.php:116
|
2201 |
#, fuzzy
|
2202 |
#| msgid "Import Settings"
|
2203 |
msgid "Import SEO settings"
|
2204 |
msgstr "దిగుమతి సెట్టింగ్లు"
|
2205 |
|
2206 |
+
#: inc/admin/admin-wizard.php:121 inc/admin/admin-wizard.php:477
|
2207 |
#, fuzzy
|
2208 |
#| msgid "View your sitemap"
|
2209 |
msgid "Your site"
|
2210 |
msgstr "మీ సైట్మాప్ని వీక్షించండి"
|
2211 |
|
2212 |
+
#: inc/admin/admin-wizard.php:126 inc/admin/admin-wizard.php:587
|
2213 |
msgid "Indexing"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: inc/admin/admin-wizard.php:131 inc/admin/admin-wizard.php:743
|
2217 |
#, fuzzy
|
2218 |
#| msgid "<p>Advanced SEO options</p>"
|
2219 |
msgid "Advanced options"
|
2220 |
msgstr "<p>ఆధునిక SEO ఎంపికలు</p>"
|
2221 |
|
2222 |
+
#: inc/admin/admin-wizard.php:136
|
2223 |
msgid "Ready!"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: inc/admin/admin-wizard.php:195
|
2227 |
msgid "SEOPress › Setup Wizard"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: inc/admin/admin-wizard.php:211
|
2231 |
msgid "Not right now"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: inc/admin/admin-wizard.php:213
|
2235 |
msgid "Skip this step"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: inc/admin/admin-wizard.php:271
|
2239 |
msgid "Welcome!"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: inc/admin/admin-wizard.php:272
|
2243 |
msgid "The following wizard will help you configure SEOPress and get you started quickly."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: inc/admin/admin-wizard.php:273
|
2247 |
msgid "The first step is to import your previous settings from other plugins to keep your SEO."
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: inc/admin/admin-wizard.php:274
|
2251 |
msgid "No data to migrate? Click \"Next step\" button!"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: inc/admin/admin-wizard.php:276 inc/admin/admin.php:752
|
2255 |
#, fuzzy
|
2256 |
#| msgid "Import posts and terms metadata from Yoast"
|
2257 |
msgid "Import posts and terms metadata from"
|
2258 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2259 |
|
2260 |
+
#: inc/admin/admin-wizard.php:278 inc/admin/admin.php:754 inc/admin/admin.php:932
|
2261 |
#, fuzzy
|
2262 |
#| msgid "Select your logo"
|
2263 |
msgid "Select an option"
|
2264 |
msgstr "మీ లోగో ఎంచుకోండి"
|
2265 |
|
2266 |
+
#: inc/admin/admin-wizard.php:279 inc/admin/admin.php:755
|
2267 |
msgid "Yoast SEO"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: inc/admin/admin-wizard.php:280 inc/admin/admin.php:756
|
2271 |
msgid "All In One SEO"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: inc/admin/admin-wizard.php:281 inc/admin/admin.php:757
|
2275 |
msgid "The SEO Framework"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: inc/admin/admin-wizard.php:282 inc/admin/admin.php:758
|
2279 |
msgid "Rank Math"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: inc/admin/admin-wizard.php:283 inc/admin/admin.php:759
|
2283 |
msgid "Squirrly SEO"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: inc/admin/admin-wizard.php:284 inc/admin/admin.php:760
|
2287 |
msgid "SEO Ultimate"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: inc/admin/admin-wizard.php:285 inc/admin/admin.php:761
|
2291 |
msgid "WP Meta SEO"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: inc/admin/admin-wizard.php:286 inc/admin/admin.php:762
|
2295 |
+
msgid "Premium SEO Pack"
|
2296 |
+
msgstr ""
|
2297 |
+
|
2298 |
+
#: inc/admin/admin-wizard.php:294 inc/admin/admin.php:769
|
2299 |
msgid "Import posts and terms metadata from Yoast"
|
2300 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2301 |
|
2302 |
+
#: inc/admin/admin-wizard.php:295 inc/admin/admin-wizard.php:315 inc/admin/admin-wizard.php:332
|
2303 |
+
#: inc/admin/admin-wizard.php:351 inc/admin/admin-wizard.php:370 inc/admin/admin-wizard.php:388
|
2304 |
+
#: inc/admin/admin-wizard.php:405 inc/admin/admin-wizard.php:421 inc/admin/admin.php:770
|
2305 |
+
#: inc/admin/admin.php:792 inc/admin/admin.php:811 inc/admin/admin.php:832 inc/admin/admin.php:853
|
2306 |
+
#: inc/admin/admin.php:873 inc/admin/admin.php:892 inc/admin/admin.php:910
|
2307 |
msgid "By clicking Migrate, we'll import:"
|
2308 |
msgstr "మైగ్రేట్ను క్లిక్ చేయడం ద్వారా, మేము దిగుమతి చేస్తాము:"
|
2309 |
|
2310 |
+
#: inc/admin/admin-wizard.php:297 inc/admin/admin-wizard.php:317 inc/admin/admin-wizard.php:334
|
2311 |
+
#: inc/admin/admin-wizard.php:353 inc/admin/admin-wizard.php:372 inc/admin/admin-wizard.php:390
|
2312 |
+
#: inc/admin/admin-wizard.php:407 inc/admin/admin-wizard.php:423 inc/admin/admin.php:772
|
2313 |
+
#: inc/admin/admin.php:794 inc/admin/admin.php:813 inc/admin/admin.php:834 inc/admin/admin.php:855
|
2314 |
+
#: inc/admin/admin.php:875 inc/admin/admin.php:894 inc/admin/admin.php:912
|
2315 |
msgid "Title tags"
|
2316 |
msgstr "శీర్షిక ట్యాగ్లు"
|
2317 |
|
2318 |
+
#: inc/admin/admin-wizard.php:299 inc/admin/admin-wizard.php:319 inc/admin/admin-wizard.php:336
|
2319 |
+
#: inc/admin/admin-wizard.php:355 inc/admin/admin-wizard.php:374 inc/admin/admin-wizard.php:392
|
2320 |
+
#: inc/admin/admin-wizard.php:409 inc/admin/admin-wizard.php:425 inc/admin/admin.php:774
|
2321 |
+
#: inc/admin/admin.php:796 inc/admin/admin.php:815 inc/admin/admin.php:836 inc/admin/admin.php:857
|
2322 |
+
#: inc/admin/admin.php:877 inc/admin/admin.php:896 inc/admin/admin.php:914
|
2323 |
msgid "Facebook Open Graph tags (title, description and image thumbnail)"
|
2324 |
msgstr "Facebook ఓపెన్ గ్రాఫ్ టాగ్లు (శీర్షిక, వివరణ మరియు చిత్రం సూక్ష్మచిత్రం) (title, description and image thumbnail)"
|
2325 |
|
2326 |
+
#: inc/admin/admin-wizard.php:300 inc/admin/admin-wizard.php:337 inc/admin/admin-wizard.php:356
|
2327 |
+
#: inc/admin/admin-wizard.php:375 inc/admin/admin-wizard.php:393 inc/admin/admin-wizard.php:410
|
2328 |
+
#: inc/admin/admin.php:775 inc/admin/admin.php:816 inc/admin/admin.php:837 inc/admin/admin.php:858
|
2329 |
+
#: inc/admin/admin.php:878 inc/admin/admin.php:897
|
2330 |
msgid "Twitter tags (title, description and image thumbnail)"
|
2331 |
msgstr "Twitter ట్యాగ్లు (శీర్షిక, వివరణ మరియు చిత్రం సూక్ష్మచిత్రం) (title, description and image thumbnail)"
|
2332 |
|
2333 |
+
#: inc/admin/admin-wizard.php:301 inc/admin/admin.php:776
|
2334 |
msgid "Meta Robots (noindex, nofollow...)"
|
2335 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2336 |
|
2337 |
+
#: inc/admin/admin-wizard.php:303 inc/admin/admin-wizard.php:359 inc/admin/admin-wizard.php:428
|
2338 |
+
#: inc/admin/admin.php:778 inc/admin/admin.php:840 inc/admin/admin.php:917
|
2339 |
#, fuzzy
|
2340 |
#| msgid "Search keywords"
|
2341 |
msgid "Focus keywords"
|
2342 |
msgstr "కీలక పదాలను శోధించండి"
|
2343 |
|
2344 |
+
#: inc/admin/admin-wizard.php:304 inc/admin/admin.php:779
|
2345 |
+
#, fuzzy
|
2346 |
+
#| msgid "Post author"
|
2347 |
+
msgid "Primary category"
|
2348 |
+
msgstr "పోస్ట్ రచయిత"
|
2349 |
+
|
2350 |
+
#: inc/admin/admin-wizard.php:306 inc/admin/admin.php:781
|
2351 |
#, fuzzy
|
2352 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2353 |
msgid ""
|
2355 |
"dynamic variables will not be interpreted. We do NOT delete any Yoast data."
|
2356 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2357 |
|
2358 |
+
#: inc/admin/admin-wizard.php:307 inc/admin/admin-wizard.php:324 inc/admin/admin-wizard.php:343
|
2359 |
+
#: inc/admin/admin-wizard.php:362 inc/admin/admin-wizard.php:380 inc/admin/admin-wizard.php:397
|
2360 |
+
#: inc/admin/admin-wizard.php:413 inc/admin/admin-wizard.php:431 inc/admin/admin.php:782
|
2361 |
+
#: inc/admin/admin.php:801 inc/admin/admin.php:822 inc/admin/admin.php:843 inc/admin/admin.php:863
|
2362 |
+
#: inc/admin/admin.php:882 inc/admin/admin.php:900 inc/admin/admin.php:920
|
2363 |
msgid "Migrate now"
|
2364 |
msgstr "ఇప్పుడే మైగ్రేట్ చేయండి"
|
2365 |
|
2366 |
+
#: inc/admin/admin-wizard.php:314 inc/admin/admin.php:791
|
2367 |
#, fuzzy
|
2368 |
#| msgid "Import posts and terms metadata from Yoast"
|
2369 |
msgid "Import posts and terms metadata from All In One SEO"
|
2370 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2371 |
|
2372 |
+
#: inc/admin/admin-wizard.php:320 inc/admin/admin.php:797
|
2373 |
#, fuzzy
|
2374 |
#| msgid "Twitter Thumbnail"
|
2375 |
msgid "Twitter image thumbnail"
|
2376 |
msgstr "ట్విట్టర్ సూక్ష్మచిత్రం"
|
2377 |
|
2378 |
+
#: inc/admin/admin-wizard.php:321 inc/admin/admin-wizard.php:426 inc/admin/admin.php:798
|
2379 |
+
#: inc/admin/admin.php:915
|
2380 |
#, fuzzy
|
2381 |
#| msgid "Meta Robots (noindex, nofollow...)"
|
2382 |
msgid "Meta Robots (noindex, nofollow)"
|
2383 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2384 |
|
2385 |
+
#: inc/admin/admin-wizard.php:323 inc/admin/admin.php:800
|
2386 |
#, fuzzy
|
2387 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2388 |
msgid ""
|
2390 |
"variables will not be interpreted. We do NOT delete any AIO data."
|
2391 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2392 |
|
2393 |
+
#: inc/admin/admin-wizard.php:331 inc/admin/admin.php:810
|
2394 |
#, fuzzy
|
2395 |
#| msgid "Import posts and terms metadata from Yoast"
|
2396 |
msgid "Import posts and terms metadata from The SEO Framework"
|
2397 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2398 |
|
2399 |
+
#: inc/admin/admin-wizard.php:338 inc/admin/admin.php:817
|
2400 |
#, fuzzy
|
2401 |
#| msgid "Meta Robots (noindex, nofollow...)"
|
2402 |
msgid "Meta Robots (noindex, nofollow, noarchive)"
|
2403 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2404 |
|
2405 |
+
#: inc/admin/admin-wizard.php:340 inc/admin/admin.php:819 inc/functions/options-advanced-admin.php:402
|
2406 |
#, fuzzy
|
2407 |
#| msgid "Redirection"
|
2408 |
msgid "Redirect URL"
|
2409 |
msgstr "Redirection (మళ్లింపు)"
|
2410 |
|
2411 |
+
#: inc/admin/admin-wizard.php:342 inc/admin/admin.php:821
|
2412 |
#, fuzzy
|
2413 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2414 |
msgid ""
|
2416 |
"dynamic variables will not be interpreted. We do NOT delete any SEO Framework data."
|
2417 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2418 |
|
2419 |
+
#: inc/admin/admin-wizard.php:350 inc/admin/admin.php:831
|
2420 |
#, fuzzy
|
2421 |
#| msgid "Import posts and terms metadata from Yoast"
|
2422 |
msgid "Import posts and terms metadata from Rank Math"
|
2423 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2424 |
|
2425 |
+
#: inc/admin/admin-wizard.php:357 inc/admin/admin.php:838
|
2426 |
#, fuzzy
|
2427 |
#| msgid "Meta Robots (noindex, nofollow...)"
|
2428 |
msgid "Meta Robots (noindex, nofollow, noarchive, noimageindex)"
|
2429 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2430 |
|
2431 |
+
#: inc/admin/admin-wizard.php:361 inc/admin/admin.php:842
|
2432 |
#, fuzzy
|
2433 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2434 |
msgid ""
|
2436 |
"dynamic variables will not be interpreted. We do NOT delete any Rank Math data."
|
2437 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2438 |
|
2439 |
+
#: inc/admin/admin-wizard.php:369 inc/admin/admin.php:852
|
2440 |
#, fuzzy
|
2441 |
#| msgid "Import posts and terms metadata from Yoast"
|
2442 |
msgid "Import posts metadata from Squirrly SEO"
|
2443 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2444 |
|
2445 |
+
#: inc/admin/admin-wizard.php:376 inc/admin/admin-wizard.php:394 inc/admin/admin.php:859
|
2446 |
+
#: inc/admin/admin.php:879
|
2447 |
#, fuzzy
|
2448 |
#| msgid "Meta Robots (noindex, nofollow...)"
|
2449 |
msgid "Meta Robots (noindex or nofollow)"
|
2450 |
msgstr "మెటా రోబోట్స్ (నోఇండిక్స్, నోఫాల్లో .)"
|
2451 |
|
2452 |
+
#: inc/admin/admin-wizard.php:379
|
2453 |
#, fuzzy
|
2454 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2455 |
msgid ""
|
2457 |
"variables will not be interpreted. We do NOT delete any Squirrly SEO data."
|
2458 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2459 |
|
2460 |
+
#: inc/admin/admin-wizard.php:387 inc/admin/admin.php:872
|
2461 |
#, fuzzy
|
2462 |
#| msgid "Import posts and terms metadata from Yoast"
|
2463 |
msgid "Import posts metadata from SEO Ultimate"
|
2464 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2465 |
|
2466 |
+
#: inc/admin/admin-wizard.php:396 inc/admin/admin.php:881
|
2467 |
#, fuzzy
|
2468 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2469 |
msgid ""
|
2471 |
"variables will not be interpreted. We do NOT delete any SEO Ultimate data."
|
2472 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2473 |
|
2474 |
+
#: inc/admin/admin-wizard.php:404 inc/admin/admin.php:891
|
2475 |
#, fuzzy
|
2476 |
#| msgid "Import posts and terms metadata from Yoast"
|
2477 |
msgid "Import posts and terms metadata from WP Meta SEO"
|
2478 |
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2479 |
|
2480 |
+
#: inc/admin/admin-wizard.php:412 inc/admin/admin.php:899
|
2481 |
#, fuzzy
|
2482 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2483 |
msgid ""
|
2485 |
"variables will not be interpreted. We do NOT delete any WP Meta SEO data."
|
2486 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2487 |
|
2488 |
+
#: inc/admin/admin-wizard.php:420 inc/admin/admin.php:909
|
2489 |
+
#, fuzzy
|
2490 |
+
#| msgid "Import posts and terms metadata from Yoast"
|
2491 |
+
msgid "Import posts and terms metadata from Premium SEO Pack"
|
2492 |
+
msgstr "Yoast నుండి పోస్ట్లు మరియు నిబంధనల మెటాడేటాని దిగుమతి చేయండి"
|
2493 |
+
|
2494 |
+
#: inc/admin/admin-wizard.php:430 inc/admin/admin.php:919
|
2495 |
+
#, fuzzy
|
2496 |
+
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
2497 |
+
msgid ""
|
2498 |
+
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts metadata. Some dynamic "
|
2499 |
+
"variables will not be interpreted. We do NOT delete any Premium SEO Pack data."
|
2500 |
+
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
2501 |
+
|
2502 |
+
#: inc/admin/admin-wizard.php:438 inc/admin/admin-wizard.php:868
|
2503 |
msgid "Next step"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: inc/admin/admin-wizard.php:479
|
2507 |
msgid ""
|
2508 |
"To build title tags and knowledge graph for Google, you need to fill out the fields below to configure the "
|
2509 |
"general settings. "
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: inc/admin/admin-wizard.php:482
|
2513 |
msgid "eg: |"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: inc/admin/admin-wizard.php:484 inc/admin/admin.php:1227 inc/admin/admin.php:3024
|
2517 |
msgid "Site title"
|
2518 |
msgstr "సైట్ శీర్షిక"
|
2519 |
|
2520 |
+
#: inc/admin/admin-wizard.php:485
|
2521 |
#, fuzzy
|
2522 |
#| msgid "My awesome website"
|
2523 |
msgid "eg: My super website"
|
2524 |
msgstr "నా అద్భుతమైన వెబ్ సైట్"
|
2525 |
|
2526 |
+
#: inc/admin/admin-wizard.php:487 inc/admin/admin.php:1632
|
2527 |
msgid "Person or organization"
|
2528 |
msgstr "వ్యక్తి లేదా సంస్థ"
|
2529 |
|
2530 |
+
#: inc/admin/admin-wizard.php:489
|
2531 |
msgid "Choose a knowledge type"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: inc/admin/admin-wizard.php:495 inc/admin/admin.php:4219
|
2535 |
msgid "Person"
|
2536 |
msgstr "వ్యక్తి"
|
2537 |
|
2538 |
+
#: inc/admin/admin-wizard.php:498 inc/admin/admin.php:4222
|
2539 |
msgid "Organization"
|
2540 |
msgstr "సంస్థ"
|
2541 |
|
2542 |
+
#: inc/admin/admin-wizard.php:502 inc/admin/admin.php:1640 inc/admin/admin.php:4235
|
2543 |
#, fuzzy
|
2544 |
#| msgid "Your name / organization"
|
2545 |
msgid "Your name/organization"
|
2546 |
msgstr "మీ పేరు / సంస్థ"
|
2547 |
|
2548 |
+
#: inc/admin/admin-wizard.php:503
|
2549 |
msgid "eg: My Company Name"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: inc/admin/admin-wizard.php:505 inc/admin/admin.php:1648 inc/admin/admin.php:4248
|
2553 |
#, fuzzy
|
2554 |
#| msgid "Your photo / organization logo"
|
2555 |
msgid "Your photo/organization logo"
|
2556 |
msgstr "మీ ఫోటో / సంస్థ లోగో"
|
2557 |
|
2558 |
+
#: inc/admin/admin-wizard.php:506
|
2559 |
#, fuzzy
|
2560 |
#| msgid "eg: https://www.facebook.com/your-page"
|
2561 |
msgid "eg: https://www.example.com/logo.png"
|
2562 |
msgstr "ఉదా: https://www.facebook.com/your-page"
|
2563 |
|
2564 |
+
#: inc/admin/admin-wizard.php:508
|
2565 |
#, fuzzy
|
2566 |
#| msgid "Facebook Page URL"
|
2567 |
msgid "Facebook page URL"
|
2568 |
msgstr "Facebook పేజ్ URL"
|
2569 |
|
2570 |
+
#: inc/admin/admin-wizard.php:509 inc/admin/admin.php:4356
|
2571 |
#, fuzzy
|
2572 |
#| msgid "eg: https://www.facebook.com/your-page"
|
2573 |
msgid "eg: https://facebook.com/my-page-url"
|
2574 |
msgstr "ఉదా: https://www.facebook.com/your-page"
|
2575 |
|
2576 |
+
#: inc/admin/admin-wizard.php:511 inc/admin/admin.php:1697
|
2577 |
msgid "Twitter Username"
|
2578 |
msgstr "Twitter Username"
|
2579 |
|
2580 |
+
#: inc/admin/admin-wizard.php:512 inc/admin/admin.php:4369
|
2581 |
msgid "eg: @my_twitter_account"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: inc/admin/admin-wizard.php:514 inc/admin/admin.php:1705 inc/admin/admin.php:4381
|
2585 |
msgid "Pinterest URL"
|
2586 |
msgstr "Pinterest URL"
|
2587 |
|
2588 |
+
#: inc/admin/admin-wizard.php:515 inc/admin/admin.php:4381
|
2589 |
#, fuzzy
|
2590 |
#| msgid "eg: https://pinterest.com/wpbuy/"
|
2591 |
msgid "eg: https://pinterest.com/my-page-url/"
|
2592 |
msgstr "ఉదా: https://pinterest.com/wpbuy/"
|
2593 |
|
2594 |
+
#: inc/admin/admin-wizard.php:517 inc/admin/admin.php:1713 inc/admin/admin.php:4393
|
2595 |
msgid "Instagram URL"
|
2596 |
msgstr "Instagram URL"
|
2597 |
|
2598 |
+
#: inc/admin/admin-wizard.php:518 inc/admin/admin.php:4393
|
2599 |
#, fuzzy
|
2600 |
#| msgid "eg: https://www.instagram.com/rainbowgeek64/"
|
2601 |
msgid "eg: https://www.instagram.com/my-page-url/"
|
2602 |
msgstr "ఉదా: https://www.instagram.com/rainbowgeek64/"
|
2603 |
|
2604 |
+
#: inc/admin/admin-wizard.php:520 inc/admin/admin.php:1721 inc/admin/admin.php:4405
|
2605 |
msgid "YouTube URL"
|
2606 |
msgstr "YouTube URL"
|
2607 |
|
2608 |
+
#: inc/admin/admin-wizard.php:521 inc/admin/admin.php:4405
|
2609 |
#, fuzzy
|
2610 |
#| msgid "eg: https://www.youtube.com/channel/UCpQzarWu55UzCIH7-OW6pwA"
|
2611 |
msgid "eg: https://www.youtube.com/my-channel-url"
|
2612 |
msgstr "ఉదా: https://www.youtube.com/channel/UCpQzarWu55UzCIH7-OW6pwA"
|
2613 |
|
2614 |
+
#: inc/admin/admin-wizard.php:523 inc/admin/admin.php:1729 inc/admin/admin.php:4417
|
2615 |
msgid "LinkedIn URL"
|
2616 |
msgstr "LinkedIn URL"
|
2617 |
|
2618 |
+
#: inc/admin/admin-wizard.php:524 inc/admin/admin.php:4417
|
2619 |
msgid "eg: http://linkedin.com/company/my-company-url/"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: inc/admin/admin-wizard.php:526 inc/admin/admin.php:1737 inc/admin/admin.php:4429
|
2623 |
msgid "MySpace URL"
|
2624 |
msgstr "MySpace URL"
|
2625 |
|
2626 |
+
#: inc/admin/admin-wizard.php:527 inc/admin/admin.php:4429
|
2627 |
#, fuzzy
|
2628 |
#| msgid "eg: https://myspace.com/your-page"
|
2629 |
msgid "eg: https://myspace.com/my-page-url"
|
2630 |
msgstr "ఉదా: https://myspace.com/your-page"
|
2631 |
|
2632 |
+
#: inc/admin/admin-wizard.php:529 inc/admin/admin.php:1745 inc/admin/admin.php:4441
|
2633 |
msgid "Soundcloud URL"
|
2634 |
msgstr "Soundcloud URL"
|
2635 |
|
2636 |
+
#: inc/admin/admin-wizard.php:530 inc/admin/admin.php:4441
|
2637 |
#, fuzzy
|
2638 |
#| msgid "eg: https://soundcloud.com/michaelmccannmusic"
|
2639 |
msgid "eg: https://soundcloud.com/my-page-url"
|
2640 |
msgstr "ఉదా: https://soundcloud.com/michaelmccannmusic"
|
2641 |
|
2642 |
+
#: inc/admin/admin-wizard.php:532 inc/admin/admin.php:1753 inc/admin/admin.php:4453
|
2643 |
msgid "Tumblr URL"
|
2644 |
msgstr "Tumblr URL"
|
2645 |
|
2646 |
+
#: inc/admin/admin-wizard.php:533 inc/admin/admin.php:4453
|
2647 |
msgid "eg: https://your-site.tumblr.com"
|
2648 |
msgstr "ఉదా: https://your-site.tumblr.com"
|
2649 |
|
2650 |
+
#: inc/admin/admin-wizard.php:536 inc/admin/admin-wizard.php:679 inc/admin/admin-wizard.php:786
|
2651 |
msgid "Continue"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: inc/admin/admin-wizard.php:588
|
2655 |
msgid "Specify to the search engines what you want to be indexed or not."
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: inc/admin/admin-wizard.php:589
|
2659 |
msgid "Avoid indexing duplicate or poor quality content."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: inc/admin/admin-wizard.php:590
|
2663 |
#, fuzzy
|
2664 |
#| msgid "Default"
|
2665 |
msgid "Default: index"
|
2666 |
msgstr "డిఫాల్ట్"
|
2667 |
|
2668 |
+
#: inc/admin/admin-wizard.php:595
|
2669 |
msgid "For which single post types, should indexing be disabled?"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: inc/admin/admin-wizard.php:612
|
2673 |
msgid "Do not display this single post type in search engine results <strong>(noindex)</strong>"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: inc/admin/admin-wizard.php:623
|
2677 |
msgid "For which post type archives, should indexing be disabled?"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: inc/admin/admin-wizard.php:641
|
2681 |
msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: inc/admin/admin-wizard.php:653
|
2685 |
msgid "For which taxonomy archives, should indexing be disabled?"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: inc/admin/admin-wizard.php:670
|
2689 |
msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: inc/admin/admin-wizard.php:753 inc/admin/admin.php:3555
|
2693 |
msgid "Do not display author archives in search engine results <strong>(noindex)</strong>"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: inc/admin/admin-wizard.php:756
|
2697 |
msgid "You only have one author on your site? Check this option to avoid duplicate content."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: inc/admin/admin-wizard.php:765 inc/admin/admin.php:5507
|
2701 |
msgid "Redirect attachment pages to their file URL (https://www.example.com/my-image-file.jpg)"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: inc/admin/admin-wizard.php:768
|
2705 |
msgid ""
|
2706 |
"By default, SEOPress redirects your Attachment pages to the parent post. Optimize this by redirecting the "
|
2707 |
"user directly to the URL of the media file."
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: inc/admin/admin-wizard.php:777 inc/admin/admin.php:5651
|
2711 |
msgid "Remove /category/ in your permalinks"
|
2712 |
msgstr "మీ permalinks లో / వర్గం / తొలగించు"
|
2713 |
|
2714 |
+
#: inc/admin/admin-wizard.php:780
|
2715 |
msgid "Shorten your URLs by removing /category/ and improve your SEO."
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: inc/admin/admin-wizard.php:830
|
2719 |
#, fuzzy
|
2720 |
#| msgid "Your site is not visible to Search Engines!"
|
2721 |
msgid "Your site is now ready for search engines!"
|
2722 |
msgstr "శోధన ఇంజిన్లకు మీ సైట్ కనిపించదు!"
|
2723 |
|
2724 |
+
#: inc/admin/admin-wizard.php:836 inc/functions/options-advanced-admin.php:19
|
2725 |
msgid "Welcome to SEOPress PRO!"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: inc/admin/admin-wizard.php:839 inc/functions/options-advanced-admin.php:20
|
2729 |
#, fuzzy
|
2730 |
#| msgid "You have to enter your licence key to get updates and support"
|
2731 |
msgid "Please activate your license to receive automatic updates and get premium support."
|
2732 |
msgstr "నవీకరణలు మరియు మద్దతు పొందడానికి మీరు మీ లైసెన్స్ కీని నమోదు చేయాలి"
|
2733 |
|
2734 |
+
#: inc/admin/admin-wizard.php:844 inc/functions/options-advanced-admin.php:21
|
2735 |
#, fuzzy
|
2736 |
#| msgid "License"
|
2737 |
msgid "Activate License"
|
2738 |
msgstr "అధికారపూరిత అనుమతి"
|
2739 |
|
2740 |
+
#: inc/admin/admin-wizard.php:851
|
2741 |
msgid "Go PRO with SEOPress PRO!"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: inc/admin/admin-wizard.php:854
|
2745 |
msgid ""
|
2746 |
"When you upgrade to the PRO version, you get a lot of additional features, like automatic and manual "
|
2747 |
"schemas, Video Sitemap, WooCommerce enhancements, Analytics statistics in your Dashboard, breadcrumbs, "
|
2748 |
"redirections, and more."
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: inc/admin/admin-wizard.php:859
|
2752 |
msgid "Buy SEOPress PRO - $39 / unlimited sites"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: inc/admin/admin-wizard.php:869
|
2756 |
#, fuzzy
|
2757 |
#| msgid "View your sitemap"
|
2758 |
msgid "Create your XML sitemaps"
|
2759 |
msgstr "మీ సైట్మాప్ని వీక్షించండి"
|
2760 |
|
2761 |
+
#: inc/admin/admin-wizard.php:870
|
2762 |
msgid "Build custom XML sitemaps to improve Google's crawling of your site."
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: inc/admin/admin-wizard.php:875
|
2766 |
#, fuzzy
|
2767 |
#| msgid "View your sitemap"
|
2768 |
msgid "Configure your XML sitemaps"
|
2769 |
msgstr "మీ సైట్మాప్ని వీక్షించండి"
|
2770 |
|
2771 |
+
#: inc/admin/admin-wizard.php:883
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2772 |
msgid "You can also:"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
+
#: inc/admin/admin-wizard.php:888
|
2776 |
#, fuzzy
|
2777 |
#| msgid "Dashboard"
|
2778 |
msgid "Visit Dashboard"
|
2779 |
msgstr "Dashboard"
|
2780 |
|
2781 |
+
#: inc/admin/admin-wizard.php:891
|
2782 |
#, fuzzy
|
2783 |
#| msgid "Reset settings"
|
2784 |
msgid "Review Settings"
|
2785 |
msgstr "సెట్టింగ్లను పునఃపరిష్కారం (RESET) చేయండి"
|
2786 |
|
2787 |
+
#: inc/admin/admin-wizard.php:894
|
2788 |
#, fuzzy
|
2789 |
#| msgid "Knowledge Graph"
|
2790 |
msgid "Knowledge base"
|
2798 |
msgid "Dashboard"
|
2799 |
msgstr "Dashboard"
|
2800 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2801 |
#: inc/admin/admin.php:203
|
2802 |
#, php-format
|
2803 |
msgid "%%sep%%"
|
2817 |
msgid "%%tagline%% (alias %%sitedesc%%)"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: inc/admin/admin.php:205 inc/admin/admin.php:3029 inc/admin/admin.php:3040
|
2821 |
msgid "Tagline"
|
2822 |
msgstr "ట్యాగ్లైన్"
|
2823 |
|
2892 |
msgid "%%post_author%%"
|
2893 |
msgstr "%%post_author%%"
|
2894 |
|
2895 |
+
#: inc/admin/admin.php:212 inc/admin/admin.php:3522
|
2896 |
msgid "Post author"
|
2897 |
msgstr "పోస్ట్ రచయిత"
|
2898 |
|
3227 |
msgid "Author bio, meta desc only"
|
3228 |
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
3229 |
|
3230 |
+
#: inc/admin/admin.php:245
|
3231 |
+
#, fuzzy, php-format
|
3232 |
+
#| msgid "%%current_pagination%%"
|
3233 |
+
msgid "%%currentmonth_num%%"
|
3234 |
+
msgstr "%%current_pagination%%"
|
3235 |
+
|
3236 |
+
#: inc/admin/admin.php:245
|
3237 |
+
msgid "Current month in digital format"
|
3238 |
+
msgstr ""
|
3239 |
+
|
3240 |
+
#: inc/admin/admin.php:251
|
3241 |
msgid "Templates variables"
|
3242 |
msgstr "టెంప్లేట్లు భావితము"
|
3243 |
|
3253 |
msgid "Check our website"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: inc/admin/admin.php:279
|
3257 |
msgid ""
|
3258 |
"Watch our video to learn how to connect your WordPress site with Google Analytics and get statistics right "
|
3259 |
"in your dashboard (PRO only)."
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: inc/admin/admin.php:284
|
3263 |
msgid "How-to"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: inc/admin/admin.php:331 inc/admin/admin.php:335 inc/admin/admin.php:398 inc/admin/admin.php:402
|
3267 |
+
#: inc/admin/admin.php:463 inc/admin/admin.php:467 inc/admin/admin.php:530 inc/admin/admin.php:534
|
3268 |
+
#: inc/admin/admin.php:617 inc/admin/admin.php:621
|
3269 |
msgid "Click to disable this feature"
|
3270 |
msgstr "ఈ లక్షణాన్ని నిలిపివేయడానికి క్లిక్ చేయండి"
|
3271 |
|
3272 |
+
#: inc/admin/admin.php:332 inc/admin/admin.php:334 inc/admin/admin.php:399 inc/admin/admin.php:401
|
3273 |
+
#: inc/admin/admin.php:464 inc/admin/admin.php:466 inc/admin/admin.php:531 inc/admin/admin.php:533
|
3274 |
+
#: inc/admin/admin.php:618 inc/admin/admin.php:620
|
3275 |
msgid "Click to enable this feature"
|
3276 |
msgstr "ఈ లక్షణాన్ని ప్రారంభించడానికి క్లిక్ చేయండి"
|
3277 |
|
3278 |
+
#: inc/admin/admin.php:349
|
3279 |
msgid "Home"
|
3280 |
msgstr "Home (హోమ్)"
|
3281 |
|
3282 |
+
#: inc/admin/admin.php:350
|
3283 |
msgid "Single Post Types"
|
3284 |
msgstr "ఒకే పోస్ట్ రకాలు"
|
3285 |
|
3286 |
+
#: inc/admin/admin.php:351
|
3287 |
msgid "Archives"
|
3288 |
msgstr "Archives (ప్రాచీనపత్ర సంచయము)"
|
3289 |
|
3290 |
+
#: inc/admin/admin.php:352 inc/admin/admin.php:418
|
3291 |
msgid "Taxonomies"
|
3292 |
msgstr "Taxonomies - (వర్గీకరణాలు)"
|
3293 |
|
3294 |
+
#: inc/admin/admin.php:416 inc/admin/admin.php:549 inc/admin/admin.php:560
|
3295 |
msgid "General"
|
3296 |
msgstr "జనరల్"
|
3297 |
|
3298 |
+
#: inc/admin/admin.php:417
|
3299 |
msgid "Post Types"
|
3300 |
msgstr "పోస్ట్ రకాలు"
|
3301 |
|
3302 |
+
#: inc/admin/admin.php:419
|
3303 |
msgid "HTML Sitemap"
|
3304 |
msgstr "HTML సైట్ మ్యాప్"
|
3305 |
|
3306 |
+
#: inc/admin/admin.php:481
|
3307 |
msgid "Knowledge Graph"
|
3308 |
msgstr "నాలెడ్జ్ గ్రాఫ్"
|
3309 |
|
3310 |
+
#: inc/admin/admin.php:482
|
3311 |
msgid "Your social accounts"
|
3312 |
msgstr "మీ సామాజిక ఖాతాలు"
|
3313 |
|
3314 |
+
#: inc/admin/admin.php:483
|
3315 |
#, fuzzy
|
3316 |
#| msgid "Facebook App ID"
|
3317 |
msgid "Facebook (Open Graph)"
|
3318 |
msgstr "Facebook App ID"
|
3319 |
|
3320 |
+
#: inc/admin/admin.php:484
|
3321 |
#, fuzzy
|
3322 |
#| msgid "Twitter Title"
|
3323 |
msgid "Twitter (Twitter card)"
|
3324 |
msgstr "ట్విట్టర్ శీర్షిక"
|
3325 |
|
3326 |
+
#: inc/admin/admin.php:550 inc/admin/admin.php:561
|
3327 |
msgid "Tracking"
|
3328 |
msgstr "Tracking"
|
3329 |
|
3330 |
+
#: inc/admin/admin.php:551
|
3331 |
+
#, fuzzy
|
3332 |
+
#| msgid "WooCommerce"
|
3333 |
+
msgid "Ecommerce"
|
3334 |
+
msgstr "WooCommerce"
|
3335 |
+
|
3336 |
+
#: inc/admin/admin.php:552 inc/admin/admin.php:562
|
3337 |
msgid "Events"
|
3338 |
msgstr "Events - (సంఘటనక్రమం)"
|
3339 |
|
3340 |
+
#: inc/admin/admin.php:553 inc/admin/admin.php:563
|
3341 |
msgid "Custom Dimensions"
|
3342 |
msgstr "వాడుక కొలతలు"
|
3343 |
|
3344 |
+
#: inc/admin/admin.php:554
|
3345 |
msgid "Stats in Dashboard"
|
3346 |
msgstr "డాష్బోర్డ్లో గణాంకాలు"
|
3347 |
|
3348 |
+
#: inc/admin/admin.php:555 inc/admin/admin.php:564
|
3349 |
msgid "Cookie bar / GDPR"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: inc/admin/admin.php:556 inc/admin/admin.php:565
|
3353 |
msgid "Matomo"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: inc/admin/admin.php:636
|
3357 |
msgid "Appearance"
|
3358 |
msgstr "స్వరూపం"
|
3359 |
|
3360 |
+
#: inc/admin/admin.php:637
|
3361 |
msgid "Security"
|
3362 |
msgstr "సెక్యూరిటీ"
|
3363 |
|
3364 |
+
#: inc/admin/admin.php:671
|
3365 |
msgid "Data"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: inc/admin/admin.php:672 seopress.php:430
|
3369 |
msgid "Settings"
|
3370 |
msgstr "సెట్టింగులు"
|
3371 |
|
3372 |
+
#: inc/admin/admin.php:673
|
3373 |
msgid "Plugins"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: inc/admin/admin.php:675
|
3377 |
msgid "Reset"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: inc/admin/admin.php:693
|
3381 |
msgid "Import data from a CSV"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: inc/admin/admin.php:694
|
3385 |
msgid "Import your title, meta description, meta robots, social metas from a CSV file with our import tool."
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: inc/admin/admin.php:695
|
3389 |
msgid "Run the importer"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: inc/admin/admin.php:700
|
3393 |
msgid "Export metadata to a CSV"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: inc/admin/admin.php:701
|
3397 |
#, fuzzy
|
3398 |
#| msgid "Import / export SEOPress settings from site to site."
|
3399 |
msgid "Export your SEOPress metadata for this site as a .csv file."
|
3400 |
msgstr "సైట్ నుండి సైట్ దిగుమతి / ఎగుమతి SEOPress సెట్టింగులు."
|
3401 |
|
3402 |
+
#: inc/admin/admin.php:706 inc/admin/admin.php:724 inc/admin/admin.php:1036 inc/admin/admin.php:1052
|
3403 |
msgid "Export"
|
3404 |
msgstr "ఎగుమతి"
|
3405 |
|
3406 |
+
#: inc/admin/admin.php:718
|
3407 |
#, fuzzy
|
3408 |
#| msgid "Export Settings"
|
3409 |
msgid "Export plugin settings"
|
3410 |
msgstr "ఎగుమతి సెట్టింగులు"
|
3411 |
|
3412 |
+
#: inc/admin/admin.php:719
|
3413 |
msgid ""
|
3414 |
"Export the plugin settings for this site as a .json file. This allows you to easily import the "
|
3415 |
"configuration into another site."
|
3417 |
"ఒక .json ఫైల్ వలె ఈ సైట్ కోసం ప్లగిన్ సెట్టింగులను ఎగుమతి చేయండి. ఆకృతీకరణను మరొక సైట్లోకి సులభంగా దిగుమతి చేసుకోవడానికి ఇది మిమ్మల్ని "
|
3418 |
"అనుమతిస్తుంది."
|
3419 |
|
3420 |
+
#: inc/admin/admin.php:732
|
3421 |
#, fuzzy
|
3422 |
#| msgid "Import Settings"
|
3423 |
msgid "Import plugin settings"
|
3424 |
msgstr "దిగుమతి సెట్టింగ్లు"
|
3425 |
|
3426 |
+
#: inc/admin/admin.php:733
|
3427 |
msgid ""
|
3428 |
"Import the plugin settings from a .json file. This file can be obtained by exporting the settings on "
|
3429 |
"another site using the form above."
|
3431 |
"ఒక .json ఫైల్ నుండి ప్లగ్ఇన్ అమర్పులను దిగుమతి చేయండి. పైన ఉన్న ఫారమ్ను (Form) ఉపయోగించి మరొక సైట్లో సెట్టింగులను ఎగుమతి చేయడం ద్వారా ఈ "
|
3432 |
"ఫైల్ పొందవచ్చు."
|
3433 |
|
3434 |
+
#: inc/admin/admin.php:741 inc/admin/admin.php:975 inc/admin/admin.php:991 inc/admin/admin.php:1007
|
3435 |
+
#: inc/admin/admin.php:1023
|
3436 |
msgid "Import"
|
3437 |
msgstr "దిగుమతి"
|
3438 |
|
3439 |
+
#: inc/admin/admin.php:743
|
3440 |
msgid "Import completed!"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: inc/admin/admin.php:862
|
3444 |
#, fuzzy
|
3445 |
#| msgid "<strong>WARNING:</strong> Migration will delete all SEOPress posts metadata"
|
3446 |
msgid ""
|
3448 |
"will not be interpreted. We do NOT delete any Squirrly SEO data."
|
3449 |
msgstr "<strong>హెచ్చరిక:</strong> మైగ్రేషన్ అన్ని SEO పోస్ట్స్ మెటాడేటాను తొలగిస్తుంది"
|
3450 |
|
3451 |
+
#: inc/admin/admin.php:930
|
3452 |
#, fuzzy
|
3453 |
#| msgid "Import Redirections"
|
3454 |
msgid "Import your redirections"
|
3455 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3456 |
|
3457 |
+
#: inc/admin/admin.php:933
|
3458 |
msgid "CSV file (must match the template)"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
+
#: inc/admin/admin.php:934
|
3462 |
msgid "Redirections plugin (JSON - WordPress Redirects)"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: inc/admin/admin.php:935
|
3466 |
msgid "Yoast Premium plugin (CSV)"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: inc/admin/admin.php:936
|
3470 |
msgid "Rank Math plugin (TXT)"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: inc/admin/admin.php:942
|
3474 |
msgid "Import Redirections"
|
3475 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3476 |
|
3477 |
+
#: inc/admin/admin.php:943
|
3478 |
#, fuzzy
|
3479 |
#| msgid ""
|
3480 |
#| "Import your own redirections from a .csv file (separator \";\"). You must have 3 columns in this order: "
|
3486 |
"CSV ఫైల్ (విభజన \";\") నుండి మీ స్వంత మళ్లింపులను దిగుమతి చేయండి. ఈ క్రమంలో మీరు 3 నిలువు వరుసలను కలిగి ఉండాలి: మ్యాచ్ కు url (మీ "
|
3487 |
"డొమైన్ పేరు లేకుండా), url సంపూర్ణంగా మరియు రీడైరెక్ట్ రకం (301, 302 లేదా 307) లో మళ్ళించబడుతుంది."
|
3488 |
|
3489 |
+
#: inc/admin/admin.php:945
|
3490 |
msgid "URL to match (without your domain name)"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: inc/admin/admin.php:946
|
3494 |
#, fuzzy
|
3495 |
#| msgid "URL redirection"
|
3496 |
msgid "URL to redirect in absolute,"
|
3497 |
msgstr "URL redirection (URL దారి మళ్లింపు)"
|
3498 |
|
3499 |
+
#: inc/admin/admin.php:947
|
3500 |
+
msgid "type of redirection (301, 302 or 307, 410, 451),"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: inc/admin/admin.php:948
|
3504 |
msgid "Yes to enable the redirect (leave it empty to disable the redirect)"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: inc/admin/admin.php:949
|
3508 |
msgid ""
|
3509 |
+
"the query parameter without the quotes (\"exact_match\" = Exact match with all parameters, \"without_param"
|
3510 |
+
"\" = Exclude all parameters or \"with_ignored_param\" = Exclude all parameters and pass them to the "
|
3511 |
+
"redirection),"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: inc/admin/admin.php:950
|
3515 |
msgid "and, the last parameter, the counter (optional)."
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: inc/admin/admin.php:955
|
3519 |
msgid "Download a CSV example"
|
3520 |
msgstr "CSV ఉదాహరణను డౌన్లోడ్ చేయండి"
|
3521 |
|
3522 |
+
#: inc/admin/admin.php:958
|
3523 |
+
msgid "Duplicate entries will be automatically removed during import."
|
3524 |
+
msgstr ""
|
3525 |
+
|
3526 |
+
#: inc/admin/admin.php:959
|
3527 |
+
#, fuzzy
|
3528 |
+
#| msgid "Select your logo"
|
3529 |
+
msgid "Select your separator:"
|
3530 |
+
msgstr "మీ లోగో ఎంచుకోండి"
|
3531 |
+
|
3532 |
+
#: inc/admin/admin.php:963
|
3533 |
+
msgid "Comma separator: \"<strong>,</strong>\""
|
3534 |
+
msgstr ""
|
3535 |
+
|
3536 |
+
#: inc/admin/admin.php:967
|
3537 |
+
msgid "Semicolon separator: \"<strong>;</strong>\""
|
3538 |
+
msgstr ""
|
3539 |
+
|
3540 |
+
#: inc/admin/admin.php:982
|
3541 |
msgid "Import Redirections from the Redirections plugin"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: inc/admin/admin.php:983
|
3545 |
msgid ""
|
3546 |
"Import your own redirections from a .json file generated by the Redirections plugin (make sure to select "
|
3547 |
"<strong>\"WordPress redirects\"</strong> when you export your file). Note that we do not support certain "
|
3549 |
"redirects."
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: inc/admin/admin.php:998
|
3553 |
#, fuzzy
|
3554 |
#| msgid "Import Redirections"
|
3555 |
msgid "Import Redirections from Yoast Premium"
|
3556 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3557 |
|
3558 |
+
#: inc/admin/admin.php:999
|
3559 |
msgid ""
|
3560 |
"Import your own redirections from a .csv file generated by Yoast Premium. Note that we don't support "
|
3561 |
"certain options, like regex. To avoid conflicts, make sure there are no duplicates between your file and "
|
3562 |
"existing redirects."
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: inc/admin/admin.php:1014
|
3566 |
#, fuzzy
|
3567 |
#| msgid "Import Redirections"
|
3568 |
msgid "Import Redirections from Rank Math"
|
3569 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3570 |
|
3571 |
+
#: inc/admin/admin.php:1015
|
3572 |
msgid ""
|
3573 |
"Import your own redirections from a .txt file generated by Rank Math. Note that we don't support certain "
|
3574 |
"options, like regex. To avoid conflicts, make sure there are no duplicates between your file and existing "
|
3575 |
"redirects."
|
3576 |
msgstr ""
|
3577 |
|
3578 |
+
#: inc/admin/admin.php:1030
|
3579 |
#, fuzzy
|
3580 |
#| msgid "Import Redirections"
|
3581 |
msgid "Export Redirections"
|
3582 |
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3583 |
|
3584 |
+
#: inc/admin/admin.php:1031
|
3585 |
#, fuzzy
|
3586 |
#| msgid ""
|
3587 |
#| "Export the plugin settings for this site as a .json file. This allows you to easily import the "
|
3593 |
"ఒక .json ఫైల్ వలె ఈ సైట్ కోసం ప్లగిన్ సెట్టింగులను ఎగుమతి చేయండి. ఆకృతీకరణను మరొక సైట్లోకి సులభంగా దిగుమతి చేసుకోవడానికి ఇది మిమ్మల్ని "
|
3594 |
"అనుమతిస్తుంది."
|
3595 |
|
3596 |
+
#: inc/admin/admin.php:1043
|
3597 |
+
#, fuzzy
|
3598 |
+
#| msgid "Import Redirections"
|
3599 |
+
msgid "Export Redirections for an .htaccess file"
|
3600 |
+
msgstr "దిగుమతి దారి మళ్లింపులు (Import Redirections)"
|
3601 |
+
|
3602 |
+
#: inc/admin/admin.php:1044
|
3603 |
+
msgid ""
|
3604 |
+
"Export all redirects from this site to a txt file. Then copy and paste the formatted URLs into your ."
|
3605 |
+
"htaccess file."
|
3606 |
+
msgstr ""
|
3607 |
+
|
3608 |
+
#: inc/admin/admin.php:1045
|
3609 |
+
msgid "Only active redirections will be exported."
|
3610 |
+
msgstr ""
|
3611 |
+
|
3612 |
+
#: inc/admin/admin.php:1046
|
3613 |
+
msgid "Save your .htaccess file before editing it. <strong>Safety first!</strong>"
|
3614 |
+
msgstr ""
|
3615 |
+
|
3616 |
+
#: inc/admin/admin.php:1047
|
3617 |
+
msgid "Do not forget to test every redirects!"
|
3618 |
+
msgstr ""
|
3619 |
+
|
3620 |
+
#: inc/admin/admin.php:1059
|
3621 |
msgid "Clean your 404"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: inc/admin/admin.php:1060
|
3625 |
msgid "Delete all your 404 errors. We don‘t delete any redirects."
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: inc/admin/admin.php:1061
|
3629 |
#, php-format
|
3630 |
msgid ""
|
3631 |
"Make sure you have enabled 404 cleaning from SEO, PRO, <a href=\"%s\">404/301</a> tab to be able to delete "
|
3632 |
"all your 404 errors."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: inc/admin/admin.php:1068
|
3636 |
#, php-format
|
3637 |
msgid ""
|
3638 |
"You can also use <span class=\"dashicons dashicons-external\"></span><a href=\"%s\" target=\"_blank\">this "
|
3639 |
"MySQL query</a> if necessary."
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: inc/admin/admin.php:1073
|
3643 |
msgid "Delete all 404"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: inc/admin/admin.php:1079
|
3647 |
msgid "Redirections feature is disabled. Please activate it from the PRO page."
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: inc/admin/admin.php:1080
|
3651 |
#, fuzzy
|
3652 |
#| msgid "Redirections"
|
3653 |
msgid "Activate Redirections"
|
3654 |
msgstr "Redirections (మళ్లింపులు)"
|
3655 |
|
3656 |
+
#: inc/admin/admin.php:1087
|
3657 |
msgid "Reset All Notices From Notifications Center"
|
3658 |
msgstr "నోటిఫికేషన్ల కేంద్రం నుండి అన్ని నోటీసులను పునరావాసం (RESET) చేయండి"
|
3659 |
|
3660 |
+
#: inc/admin/admin.php:1088
|
3661 |
#, fuzzy
|
3662 |
#| msgid "By clicking Reset Notices, you'll see all notices again in notifications center."
|
3663 |
msgid ""
|
3664 |
"By clicking Reset Notices, all notices in the notifications center will be set to their initial status."
|
3665 |
msgstr "నోటిఫికేషన్లను పునరావాసం(RESET) క్లిక్ చేయడం ద్వారా, నోటిఫికేషన్ సెంటర్లో మీరు అన్ని నోటీసులను మళ్లీ చూస్తారు."
|
3666 |
|
3667 |
+
#: inc/admin/admin.php:1093
|
3668 |
msgid "Reset notices"
|
3669 |
msgstr "నోటీసులను పునరావాసం (RESET) చేయండి"
|
3670 |
|
3671 |
+
#: inc/admin/admin.php:1101
|
3672 |
msgid "Reset All Settings"
|
3673 |
msgstr "అన్ని సెట్టింగ్లను పునరావాసం (RESET) చేయండి"
|
3674 |
|
3675 |
+
#: inc/admin/admin.php:1102
|
3676 |
msgid ""
|
3677 |
"<strong>WARNING:</strong> Delete all options related to SEOPress in your database AND set settings to their "
|
3678 |
"default values."
|
3679 |
msgstr ""
|
3680 |
"<strong>హెచ్చరిక:</strong> మీ డిఫాల్ట్ విలువలను మీ డేటాబేస్ మరియు సెట్టింగులు సెట్టింగులు లో SEOPress సంబంధించిన అన్ని ఎంపికలు తొలగించు."
|
3681 |
|
3682 |
+
#: inc/admin/admin.php:1107
|
3683 |
msgid "Reset settings"
|
3684 |
msgstr "సెట్టింగ్లను పునఃపరిష్కారం (RESET) చేయండి"
|
3685 |
|
3686 |
+
#: inc/admin/admin.php:1420 inc/admin/admin.php:3746
|
3687 |
msgid "noindex"
|
3688 |
msgstr "noindex"
|
3689 |
|
3690 |
+
#: inc/admin/admin.php:1428 inc/admin/admin.php:3765
|
3691 |
msgid "nofollow"
|
3692 |
msgstr "అనుకరించటానికి లేదు"
|
3693 |
|
3694 |
+
#: inc/admin/admin.php:1436 inc/admin/admin.php:3784
|
3695 |
msgid "noodp"
|
3696 |
msgstr "noodp"
|
3697 |
|
3698 |
+
#: inc/admin/admin.php:1444 inc/admin/admin.php:3803
|
3699 |
msgid "noimageindex"
|
3700 |
msgstr "noimageindex"
|
3701 |
|
3702 |
+
#: inc/admin/admin.php:1452 inc/admin/admin.php:3822
|
3703 |
msgid "noarchive"
|
3704 |
msgstr "noarchive"
|
3705 |
|
3706 |
+
#: inc/admin/admin.php:1460 inc/admin/admin.php:3841
|
3707 |
msgid "nosnippet"
|
3708 |
msgstr "nosnippet"
|
3709 |
|
3710 |
+
#: inc/admin/admin.php:1468 inc/admin/admin.php:3860
|
3711 |
msgid "nositelinkssearchbox"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: inc/admin/admin.php:1476
|
3715 |
msgid "Indicate paginated content to Google"
|
3716 |
msgstr "Google కు పేజీ విన్యాసం కంటెంట్ను సూచించండి"
|
3717 |
|
3718 |
+
#: inc/admin/admin.php:1484
|
3719 |
+
#, fuzzy
|
3720 |
+
#| msgid "Disable date archives"
|
3721 |
+
msgid "noindex on paged archives"
|
3722 |
+
msgstr "తేదీ ఆర్కైవ్ని నిలిపివేయండి"
|
3723 |
+
|
3724 |
+
#: inc/admin/admin.php:1501 inc/admin/admin.php:3915
|
3725 |
msgid "Enable XML Sitemap"
|
3726 |
msgstr "XML సైట్మాప్ను ప్రారంభించండి"
|
3727 |
|
3728 |
+
#: inc/admin/admin.php:1509
|
3729 |
msgid "Enable XML Image Sitemaps"
|
3730 |
msgstr "XML చిత్రం సైట్మాప్లను ప్రారంభించండి"
|
3731 |
|
3732 |
+
#: inc/admin/admin.php:1518
|
3733 |
#, fuzzy
|
3734 |
#| msgid "Enable XML Image Sitemaps"
|
3735 |
msgid "Enable XML Video Sitemaps"
|
3736 |
msgstr "XML చిత్రం సైట్మాప్లను ప్రారంభించండి"
|
3737 |
|
3738 |
+
#: inc/admin/admin.php:1527 inc/admin/admin.php:3996
|
3739 |
#, fuzzy
|
3740 |
#| msgid "Enable XML Sitemap"
|
3741 |
msgid "Enable Author Sitemap"
|
3742 |
msgstr "XML సైట్మాప్ను ప్రారంభించండి"
|
3743 |
|
3744 |
+
#: inc/admin/admin.php:1535 inc/admin/admin.php:4015
|
3745 |
msgid "Enable HTML Sitemap"
|
3746 |
msgstr "HTML సైట్మాప్ను ప్రారంభించండి"
|
3747 |
|
3748 |
+
#: inc/admin/admin.php:1551
|
3749 |
msgid "Check to INCLUDE Post Types"
|
3750 |
msgstr "పోస్ట్ రకాలను చేర్చడానికి తనిఖీ చేయండి"
|
3751 |
|
3752 |
+
#: inc/admin/admin.php:1567
|
3753 |
msgid "Check to INCLUDE Taxonomies"
|
3754 |
msgstr "వర్గీకరణాలు చేర్చడానికి తనిఖీ చేయండి"
|
3755 |
|
3756 |
+
#: inc/admin/admin.php:1583 inc/admin/admin.php:4122
|
3757 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
3758 |
msgstr "సైట్ మ్యాప్ ప్రదర్శించడానికి పోస్ట్, పేజీ లేదా కస్టమ్ పోస్ట్ రకం ID (లు) ను నమోదు చేయండి"
|
3759 |
|
3760 |
+
#: inc/admin/admin.php:1591 inc/admin/admin.php:4136
|
3761 |
#, fuzzy
|
3762 |
#| msgid "Exclude some Posts, Pages or Custom Post Types"
|
3763 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
3764 |
msgstr "కొన్ని పోస్ట్లు, పేజీలు లేదా కస్టమ్ పోస్ట్ రకాలు మినహాయించాలని"
|
3765 |
|
3766 |
+
#: inc/admin/admin.php:1599
|
3767 |
msgid "Sort order"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: inc/admin/admin.php:1607
|
3771 |
msgid "Order posts by"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: inc/admin/admin.php:1615
|
3775 |
msgid "Disable the display of the publication date"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: inc/admin/admin.php:1656 inc/admin/admin.php:4278
|
3779 |
#, fuzzy
|
3780 |
#| msgid "Organization Phone number (only for Organization)"
|
3781 |
msgid "Organization's phone number (only for Organizations)"
|
3782 |
msgstr "సంస్థ ఫోన్ నంబర్ (సంస్థ కోసం మాత్రమే)"
|
3783 |
|
3784 |
+
#: inc/admin/admin.php:1664
|
3785 |
#, fuzzy
|
3786 |
#| msgid "Contact type (only for Organization)"
|
3787 |
msgid "Contact type (only for Organizations)"
|
3788 |
msgstr "సంప్రదింపు రకం (సంస్థ కోసం మాత్రమే)"
|
3789 |
|
3790 |
+
#: inc/admin/admin.php:1672
|
3791 |
#, fuzzy
|
3792 |
#| msgid "Contact option (only for Organization)"
|
3793 |
msgid "Contact option (only for Organizations)"
|
3794 |
msgstr "సంప్రదింపు ఎంపిక (మాత్రమే సంస్థ కోసం)"
|
3795 |
|
3796 |
+
#: inc/admin/admin.php:1689 inc/admin/admin.php:4356
|
3797 |
msgid "Facebook Page URL"
|
3798 |
msgstr "Facebook పేజ్ URL"
|
3799 |
|
3800 |
+
#: inc/admin/admin.php:1770
|
3801 |
msgid "Enable Open Graph Data"
|
3802 |
msgstr "ఓపెన్ గ్రాఫ్ డేటాను ప్రారంభించండి"
|
3803 |
|
3804 |
+
#: inc/admin/admin.php:1778 inc/admin/admin.php:4483 inc/admin/admin.php:4532
|
3805 |
msgid "Select a default image"
|
3806 |
msgstr "డిఫాల్ట్ చిత్రాన్ని ఎంచుకోండి"
|
3807 |
|
3808 |
+
#: inc/admin/admin.php:1786
|
3809 |
msgid "Apply this image to all your og:image tag"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: inc/admin/admin.php:1794
|
3813 |
+
msgid "Define custom og:image tag for post type archive pages"
|
3814 |
+
msgstr ""
|
3815 |
+
|
3816 |
+
#: inc/admin/admin.php:1802
|
3817 |
#, fuzzy
|
3818 |
#| msgid "Facebook Admin ID"
|
3819 |
msgid "Facebook Link Ownership ID"
|
3820 |
msgstr "Facebook అడ్మిన్ ID"
|
3821 |
|
3822 |
+
#: inc/admin/admin.php:1810
|
3823 |
msgid "Facebook Admin ID"
|
3824 |
msgstr "Facebook అడ్మిన్ ID"
|
3825 |
|
3826 |
+
#: inc/admin/admin.php:1818
|
3827 |
msgid "Facebook App ID"
|
3828 |
msgstr "Facebook App ID"
|
3829 |
|
3830 |
+
#: inc/admin/admin.php:1835
|
3831 |
msgid "Enable Twitter Card"
|
3832 |
msgstr "ట్విట్టర్ కార్డ్ని ప్రారంభించండి"
|
3833 |
|
3834 |
+
#: inc/admin/admin.php:1843
|
3835 |
#, fuzzy
|
3836 |
#| msgid "Enable Twitter Card"
|
3837 |
msgid "Use Open Graph if no Twitter Card is filled"
|
3838 |
msgstr "ట్విట్టర్ కార్డ్ని ప్రారంభించండి"
|
3839 |
|
3840 |
+
#: inc/admin/admin.php:1851 inc/admin/admin.php:4629
|
3841 |
msgid "Default Twitter Image"
|
3842 |
msgstr "డిఫాల్ట్ ట్విట్టర్ చిత్రం"
|
3843 |
|
3844 |
+
#: inc/admin/admin.php:1859
|
3845 |
msgid "Image size for Twitter Summary card"
|
3846 |
msgstr "ట్విట్టర్ సారాంశం కార్డు కోసం చిత్రం పరిమాణం"
|
3847 |
|
3848 |
+
#: inc/admin/admin.php:1876
|
3849 |
msgid "Enable Google Analytics tracking"
|
3850 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
3851 |
|
3852 |
+
#: inc/admin/admin.php:1884 inc/admin/admin.php:2252 inc/admin/admin.php:4682
|
3853 |
msgid "Enter your tracking ID"
|
3854 |
msgstr "మీ ట్రాకింగ్ ID ని నమోదు చేయండి"
|
3855 |
|
3856 |
+
#: inc/admin/admin.php:1892
|
3857 |
+
#, fuzzy
|
3858 |
+
#| msgid "Exclude user roles from tracking"
|
3859 |
+
msgid "Exclude user roles from tracking (Google Analytics and Matomo)"
|
3860 |
msgstr "ట్రాకింగ్ నుండి వినియోగదారు పాత్రలను మినహాయించండి"
|
3861 |
|
3862 |
+
#: inc/admin/admin.php:1909
|
3863 |
#, fuzzy
|
3864 |
#| msgid "Enable Google Analytics tracking"
|
3865 |
msgid "Analytics tracking opt-in"
|
3866 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
3867 |
|
3868 |
+
#: inc/admin/admin.php:1925
|
3869 |
msgid "Consent message for user tracking"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: inc/admin/admin.php:1933
|
3873 |
msgid "Accept button for user tracking"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: inc/admin/admin.php:1941
|
3877 |
msgid "Close button"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: inc/admin/admin.php:1949
|
3881 |
msgid "Cookie bar position"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: inc/admin/admin.php:1957
|
3885 |
msgid "Cookie bar background color"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: inc/admin/admin.php:1965
|
3889 |
msgid "Cookie bar text color"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: inc/admin/admin.php:1973
|
3893 |
msgid "Cookie bar link color"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: inc/admin/admin.php:1981
|
3897 |
msgid "Cookie bar button background color"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: inc/admin/admin.php:1989
|
3901 |
msgid "Cookie bar button color"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: inc/admin/admin.php:1997
|
3905 |
msgid "Cookie bar button hover background color"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: inc/admin/admin.php:2005
|
3909 |
msgid "Cookie bar button hover color"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: inc/admin/admin.php:2013
|
3913 |
msgid "Cookie bar secondary button background color"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
#: inc/admin/admin.php:2021
|
3917 |
msgid "Cookie bar secondary button color"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: inc/admin/admin.php:2029
|
3921 |
msgid "Cookie bar secondary button hover background color"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: inc/admin/admin.php:2037
|
3925 |
msgid "Cookie bar secondary button hover color"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: inc/admin/admin.php:2055
|
3929 |
#, fuzzy
|
3930 |
#| msgid "Enable Google Analytics tracking"
|
3931 |
msgid "Enable Google Optimize"
|
3932 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
3933 |
|
3934 |
+
#: inc/admin/admin.php:2063
|
3935 |
#, fuzzy
|
3936 |
#| msgid "Enable Google Analytics tracking"
|
3937 |
msgid "Enable Google Ads"
|
3938 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
3939 |
|
3940 |
+
#: inc/admin/admin.php:2071
|
3941 |
msgid "Add an additional tracking code (like Facebook Pixel, Hotjar...)"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: inc/admin/admin.php:2079
|
3945 |
msgid "[BODY] Add an additional tracking code (like Google Tag Manager...)"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: inc/admin/admin.php:2087
|
3949 |
msgid "[BODY (FOOTER)] Add an additional tracking code (like Google Tag Manager...)"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: inc/admin/admin.php:2095 inc/admin/admin.php:5006
|
3953 |
#, fuzzy
|
3954 |
#| msgid "Enable remarketing, demographics and interest reporting"
|
3955 |
msgid "Enable remarketing, demographics, and interests reporting"
|
3956 |
msgstr "రీమార్కెటింగ్, డిపోగ్రాఫిక్స్ మరియు ఇతర రిపోర్టింగ్లను ప్రారంభించండి"
|
3957 |
|
3958 |
+
#: inc/admin/admin.php:2103 inc/admin/admin.php:5028
|
3959 |
msgid "Enable IP Anonymization"
|
3960 |
msgstr "IP అనామలైజేషన్ను ప్రారంభించండి"
|
3961 |
|
3962 |
+
#: inc/admin/admin.php:2111 inc/admin/admin.php:5050
|
3963 |
msgid "Enhanced Link Attribution"
|
3964 |
msgstr "మెరుగుపరచబడిన లింక్ అట్రిబ్యూషన్"
|
3965 |
|
3966 |
+
#: inc/admin/admin.php:2119 inc/admin/admin.php:5072
|
3967 |
msgid "Enable cross-domain tracking"
|
3968 |
msgstr "క్రాస్ డొమైన్ ట్రాకింగ్ను ప్రారంభించండి - (cross-domain tracking)"
|
3969 |
|
3970 |
+
#: inc/admin/admin.php:2127 inc/admin/admin.php:5089 inc/admin/admin.php:5414
|
3971 |
msgid "Cross domains"
|
3972 |
msgstr "Cross domains"
|
3973 |
|
3974 |
+
#: inc/admin/admin.php:2145 inc/admin/admin.php:5106
|
3975 |
msgid "Enable external links tracking"
|
3976 |
msgstr "బాహ్య లింకులు ట్రాకింగ్ను ప్రారంభించండి (Enable external links tracking)"
|
3977 |
|
3978 |
+
#: inc/admin/admin.php:2153
|
3979 |
msgid "Enable downloads tracking (eg: PDF, XLSX, DOCX...)"
|
3980 |
msgstr "డౌన్ ట్రాకింగ్ను ప్రారంభించండి (ఉదా: PDF, XLSX, DOCX ...)"
|
3981 |
|
3982 |
+
#: inc/admin/admin.php:2161 inc/admin/admin.php:5135
|
3983 |
#, fuzzy
|
3984 |
#| msgid "Track click downloads"
|
3985 |
msgid "Track downloads' clicks"
|
3986 |
msgstr "Track click downloads"
|
3987 |
|
3988 |
+
#: inc/admin/admin.php:2169
|
3989 |
#, fuzzy
|
3990 |
#| msgid "Enable affiliate / outbound links tracking (eg: aff, go, out, recommends"
|
3991 |
msgid "Enable affiliate/outbound links tracking (eg: aff, go, out, recommends)"
|
3992 |
msgstr "అనుబంధ / అవుట్బౌండ్ లింకులు ట్రాకింగ్ను ప్రారంభించండి (ఉదా: eg: aff, go, out, recommends)"
|
3993 |
|
3994 |
+
#: inc/admin/admin.php:2177 inc/admin/admin.php:5166
|
3995 |
#, fuzzy
|
3996 |
#| msgid "Track affiliate / outbound links"
|
3997 |
msgid "Track affiliate/outbound links"
|
3998 |
msgstr "అనుబంధ / అవుట్బౌండ్ లింక్లను ట్రాక్ చేయండి"
|
3999 |
|
4000 |
+
#: inc/admin/admin.php:2195
|
4001 |
msgid "Track Authors"
|
4002 |
msgstr "Track Authors"
|
4003 |
|
4004 |
+
#: inc/admin/admin.php:2203
|
4005 |
msgid "Track Categories"
|
4006 |
msgstr "Track Categories"
|
4007 |
|
4008 |
+
#: inc/admin/admin.php:2211
|
4009 |
msgid "Track Tags"
|
4010 |
msgstr "Track Tags"
|
4011 |
|
4012 |
+
#: inc/admin/admin.php:2219
|
4013 |
msgid "Track Post Types"
|
4014 |
msgstr "ట్రాక్ పోస్ట్ రకాలు"
|
4015 |
|
4016 |
+
#: inc/admin/admin.php:2227
|
4017 |
msgid "Track Logged In Users"
|
4018 |
msgstr "Track లాగిన్ వినియోగదారులు"
|
4019 |
|
4020 |
+
#: inc/admin/admin.php:2244
|
4021 |
#, fuzzy
|
4022 |
#| msgid "Enable download tracking"
|
4023 |
msgid "Enable Matomo tracking"
|
4024 |
msgstr "డౌన్లోడ్ ట్రాకింగ్ను ప్రారంభించండి"
|
4025 |
|
4026 |
+
#: inc/admin/admin.php:2260
|
4027 |
#, fuzzy
|
4028 |
#| msgid "Enter your title"
|
4029 |
msgid "Enter your site ID"
|
4030 |
msgstr "మీ శీర్షికను నమోదు చేయండి"
|
4031 |
|
4032 |
+
#: inc/admin/admin.php:2268
|
4033 |
msgid "Track visitors across all subdomains"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: inc/admin/admin.php:2276
|
4037 |
msgid "Prepend the site domain"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: inc/admin/admin.php:2284 inc/admin/admin.php:5383
|
4041 |
msgid "Track users with JavaScript disabled"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: inc/admin/admin.php:2292 inc/admin/admin.php:5400
|
4045 |
#, fuzzy
|
4046 |
#| msgid "Enable cross-domain tracking"
|
4047 |
msgid "Enables cross domain linking"
|
4048 |
msgstr "క్రాస్ డొమైన్ ట్రాకింగ్ను ప్రారంభించండి - (cross-domain tracking)"
|
4049 |
|
4050 |
+
#: inc/admin/admin.php:2300
|
4051 |
#, fuzzy
|
4052 |
#| msgid "Cross domains"
|
4053 |
msgid "Cross domain"
|
4054 |
msgstr "Cross domains"
|
4055 |
|
4056 |
+
#: inc/admin/admin.php:2307
|
4057 |
#, fuzzy
|
4058 |
#| msgid "Enable redirection?"
|
4059 |
msgid "Enable DoNotTrack detection"
|
4060 |
msgstr "Enable redirection? (మళ్లింపును ప్రారంభించాలా?)"
|
4061 |
|
4062 |
+
#: inc/admin/admin.php:2315
|
4063 |
#, fuzzy
|
4064 |
#| msgid "Disable author archives"
|
4065 |
msgid "Disable all tracking cookies"
|
4066 |
msgstr "Disable author archives"
|
4067 |
|
4068 |
+
#: inc/admin/admin.php:2323
|
4069 |
#, fuzzy
|
4070 |
#| msgid "Enable download tracking"
|
4071 |
msgid "Download & Outlink tracking"
|
4072 |
msgstr "డౌన్లోడ్ ట్రాకింగ్ను ప్రారంభించండి"
|
4073 |
|
4074 |
+
#: inc/admin/admin.php:2340
|
4075 |
msgid "Redirect attachment pages to post parent"
|
4076 |
msgstr "Redirect attachment pages to post parent"
|
4077 |
|
4078 |
+
#: inc/admin/admin.php:2348
|
4079 |
#, fuzzy
|
4080 |
#| msgid "Redirect attachment pages to post parent"
|
4081 |
msgid "Redirect attachment pages to their file URL"
|
4082 |
msgstr "Redirect attachment pages to post parent"
|
4083 |
|
4084 |
+
#: inc/admin/admin.php:2356
|
4085 |
msgid "Remove ?replytocom link to avoid duplicate content"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: inc/admin/admin.php:2364
|
4089 |
msgid "Automatically set the image Title"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: inc/admin/admin.php:2372
|
4093 |
msgid "Automatically set the image Alt text"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: inc/admin/admin.php:2380
|
4097 |
+
msgid "Automatically set the image Alt text from target keywords"
|
4098 |
+
msgstr ""
|
4099 |
+
|
4100 |
+
#: inc/admin/admin.php:2388
|
4101 |
msgid "Automatically set the image Caption"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: inc/admin/admin.php:2396
|
4105 |
msgid "Automatically set the image Description"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: inc/admin/admin.php:2404
|
4109 |
msgid "Add WP Editor to taxonomy description textarea"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: inc/admin/admin.php:2412
|
4113 |
msgid "Remove /category/ in URL"
|
4114 |
msgstr "URL లో / వర్గం / తొలగించు - (Remove /category/ in URL)"
|
4115 |
|
4116 |
+
#: inc/admin/admin.php:2420 inc/admin/admin.php:5668
|
4117 |
msgid "Disable trailing slash for metas"
|
4118 |
msgstr "మెటాస్ కోసం వెనుకంజలో స్లాష్ను నిలిపివేయి"
|
4119 |
|
4120 |
+
#: inc/admin/admin.php:2428
|
4121 |
msgid "Remove WordPress generator meta tag"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: inc/admin/admin.php:2436
|
4125 |
msgid "Remove hentry post class"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
+
#: inc/admin/admin.php:2444
|
4129 |
#, fuzzy
|
4130 |
#| msgid "Remove /category/ in URL"
|
4131 |
msgid "Remove author URL"
|
4132 |
msgstr "URL లో / వర్గం / తొలగించు - (Remove /category/ in URL)"
|
4133 |
|
4134 |
+
#: inc/admin/admin.php:2452
|
4135 |
msgid "Remove website field in comment form"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
+
#: inc/admin/admin.php:2460
|
4139 |
msgid "Remove WordPress shortlink meta tag"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: inc/admin/admin.php:2468
|
4143 |
msgid "Remove Windows Live Writer meta tag"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: inc/admin/admin.php:2476
|
4147 |
msgid "Remove RSD meta tag"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
+
#: inc/admin/admin.php:2484 inc/admin/admin.php:5799
|
4151 |
msgid "Google site verification"
|
4152 |
msgstr "Google సైట్ ధృవీకరణ"
|
4153 |
|
4154 |
+
#: inc/admin/admin.php:2492 inc/admin/admin.php:5813
|
4155 |
msgid "Bing site verification"
|
4156 |
msgstr "Bing సైట్ ధృవీకరణ"
|
4157 |
|
4158 |
+
#: inc/admin/admin.php:2500 inc/admin/admin.php:5826
|
4159 |
msgid "Pinterest site verification"
|
4160 |
msgstr "Pinterest సైట్ ధృవీకరణ"
|
4161 |
|
4162 |
+
#: inc/admin/admin.php:2508 inc/admin/admin.php:5838
|
4163 |
msgid "Yandex site verification"
|
4164 |
msgstr "Yandex సైట్ ధృవీకరణ"
|
4165 |
|
4166 |
+
#: inc/admin/admin.php:2525
|
4167 |
msgid "SEOPress in admin bar"
|
4168 |
msgstr "అడ్మిన్ బార్ లో SEOPress"
|
4169 |
|
4170 |
+
#: inc/admin/admin.php:2533
|
4171 |
#, fuzzy
|
4172 |
#| msgid "Move SEOPress metaboxe position"
|
4173 |
msgid "Move SEOPress metabox's position"
|
4174 |
msgstr "SEOPress metabox స్థానం తరలించు"
|
4175 |
|
4176 |
+
#: inc/admin/admin.php:2541
|
4177 |
msgid "Set default tab for Structured data metabox"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: inc/admin/admin.php:2549
|
4181 |
#, fuzzy
|
4182 |
#| msgid "Notifications Center"
|
4183 |
msgid "Hide Notifications Center"
|
4184 |
msgstr "నోటిఫికేషన్ సెంటర్"
|
4185 |
|
4186 |
+
#: inc/admin/admin.php:2557
|
4187 |
#, fuzzy
|
4188 |
#| msgid "SEO Tools"
|
4189 |
msgid "Hide SEO tools"
|
4190 |
msgstr "SEO ఉపకరణాలు"
|
4191 |
|
4192 |
+
#: inc/admin/admin.php:2565
|
4193 |
#, fuzzy
|
4194 |
#| msgid "Useful links"
|
4195 |
msgid "Hide Useful Links"
|
4196 |
msgstr "ఉపయోగకరమైన లింకులు"
|
4197 |
|
4198 |
+
#: inc/admin/admin.php:2573
|
4199 |
msgid "Show Title tag column in post types"
|
4200 |
msgstr "పోస్ట్ రకాల టైటిల్ ట్యాగ్ కాలమ్ చూపించు"
|
4201 |
|
4202 |
+
#: inc/admin/admin.php:2581
|
4203 |
msgid "Show Meta description column in post types"
|
4204 |
msgstr "పోస్ట్ రకాల మెటా వివరణ కాలమ్ చూపించు"
|
4205 |
|
4206 |
+
#: inc/admin/admin.php:2589
|
4207 |
#, fuzzy
|
4208 |
#| msgid "Show Meta description column in post types"
|
4209 |
msgid "Show Redirection Enable column in post types"
|
4210 |
msgstr "పోస్ట్ రకాల మెటా వివరణ కాలమ్ చూపించు"
|
4211 |
|
4212 |
+
#: inc/admin/admin.php:2597
|
4213 |
#, fuzzy
|
4214 |
#| msgid "Show noindex column in post types"
|
4215 |
msgid "Show Redirect URL column in post types"
|
4216 |
msgstr "పోస్ట్ రకాలలో noindex కాలమ్ చూపించు"
|
4217 |
|
4218 |
+
#: inc/admin/admin.php:2605
|
4219 |
#, fuzzy
|
4220 |
#| msgid "Show noindex column in post types"
|
4221 |
msgid "Show canonical URL column in post types"
|
4222 |
msgstr "పోస్ట్ రకాలలో noindex కాలమ్ చూపించు"
|
4223 |
|
4224 |
+
#: inc/admin/admin.php:2613
|
4225 |
#, fuzzy
|
4226 |
#| msgid "Show Title tag column in post types"
|
4227 |
msgid "Show Target Keyword column in post types"
|
4228 |
msgstr "పోస్ట్ రకాల టైటిల్ ట్యాగ్ కాలమ్ చూపించు"
|
4229 |
|
4230 |
+
#: inc/admin/admin.php:2621
|
4231 |
msgid "Show noindex column in post types"
|
4232 |
msgstr "పోస్ట్ రకాలలో noindex కాలమ్ చూపించు"
|
4233 |
|
4234 |
+
#: inc/admin/admin.php:2629
|
4235 |
msgid "Show nofollow column in post types"
|
4236 |
msgstr "పోస్ట్ రకాల్లో నోఫాల్లో నిలువు వరుసను చూపించు"
|
4237 |
|
4238 |
+
#: inc/admin/admin.php:2637
|
4239 |
msgid "Show total number of words column in post types"
|
4240 |
msgstr "పోస్ట్ రకాల పదాల పదాల మొత్తం సంఖ్యను చూపించు"
|
4241 |
|
4242 |
+
#: inc/admin/admin.php:2645
|
4243 |
msgid "Show W3C validator column in post types"
|
4244 |
msgstr "పోస్ట్ రకాల W3C వ్యాలిడేటర్కు కాలమ్ చూపించు"
|
4245 |
|
4246 |
+
#: inc/admin/admin.php:2653
|
4247 |
msgid "Show Google Page Speed column in post types"
|
4248 |
msgstr "పోస్ట్ రకాల Google పేజీ స్పీడ్ కాలమ్ చూపించు"
|
4249 |
|
4250 |
+
#: inc/admin/admin.php:2663
|
4251 |
+
#, fuzzy
|
4252 |
+
#| msgid "Show noindex column in post types"
|
4253 |
+
msgid "Show Insights column in post types"
|
4254 |
+
msgstr "పోస్ట్ రకాలలో noindex కాలమ్ చూపించు"
|
4255 |
+
|
4256 |
+
#: inc/admin/admin.php:2672
|
4257 |
#, fuzzy
|
4258 |
#| msgid "Show noindex column in post types"
|
4259 |
msgid "Show content analysis score column in post types"
|
4260 |
msgstr "పోస్ట్ రకాలలో noindex కాలమ్ చూపించు"
|
4261 |
|
4262 |
+
#: inc/admin/admin.php:2680
|
4263 |
#, fuzzy
|
4264 |
#| msgid "Hide Genesis SEO Metaboxe"
|
4265 |
msgid "Hide Genesis SEO Metabox"
|
4266 |
msgstr "Genesis SEO Metabox దాచు"
|
4267 |
|
4268 |
+
#: inc/admin/admin.php:2688
|
4269 |
#, fuzzy
|
4270 |
#| msgid "Hide Genesis SEO Metaboxe"
|
4271 |
msgid "Hide Genesis SEO Settings link"
|
4272 |
msgstr "Genesis SEO Metabox దాచు"
|
4273 |
|
4274 |
+
#: inc/admin/admin.php:2696
|
4275 |
#, fuzzy
|
4276 |
#| msgid "Structured Data Types"
|
4277 |
msgid "Hide advice in Structured Data Types metabox"
|
4278 |
msgstr "నిర్మాణాత్మక డేటా రకాలు"
|
4279 |
|
4280 |
+
#: inc/admin/admin.php:2713
|
4281 |
#, fuzzy
|
4282 |
#| msgid "Block SEO metaboxe to user roles"
|
4283 |
msgid "Block SEO metabox to user roles"
|
4284 |
msgstr "యూజర్ పాత్రలు కు SEO metabox బ్లాక్ అయివుంటుంది"
|
4285 |
|
4286 |
+
#: inc/admin/admin.php:2721
|
4287 |
#, fuzzy
|
4288 |
#| msgid "Block SEO metaboxe to user roles"
|
4289 |
msgid "Block Content analysis metabox to user roles"
|
4290 |
msgstr "యూజర్ పాత్రలు కు SEO metabox బ్లాక్ అయివుంటుంది"
|
4291 |
|
4292 |
+
#: inc/admin/admin.php:2821
|
4293 |
#, fuzzy
|
4294 |
#| msgid "<p>Customize your titles & metas for homepage</p>"
|
4295 |
msgid "<p>Customize your title & meta description for homepage</p>"
|
4296 |
msgstr "<p>homepage కోసం మీ శీర్షికలు & మెటాలను అనుకూలపరచండి</p>"
|
4297 |
|
4298 |
+
#: inc/admin/admin.php:2834
|
4299 |
msgid "<p>Customize your titles & metas for Single Custom Post Types</p>"
|
4300 |
msgstr "<p>సింగిల్ కస్టమ్ పోస్ట్ రకాలు కోసం మీ శీర్షికలు & metas అనుకూలపరచండి</p>"
|
4301 |
|
4302 |
+
#: inc/admin/admin.php:2838
|
4303 |
msgid "<p>Customize your metas for all pages</p>"
|
4304 |
msgstr "<p>అన్ని పేజీల కోసం మీ మెటాలను అనుకూలపరచండి</p>"
|
4305 |
|
4306 |
+
#: inc/admin/admin.php:2842
|
4307 |
msgid "<p>Customize your metas for all taxonomies archives</p>"
|
4308 |
msgstr "<p>అన్ని వర్గీకరణాలు ఆర్కైవ్ల కోసం మీ మెటాలను అనుకూలీకరించండి</p>"
|
4309 |
|
4310 |
+
#: inc/admin/admin.php:2846
|
4311 |
msgid "<p>Customize your metas for all archives</p>"
|
4312 |
msgstr "<p>అన్ని ఆర్కైవ్లకు(Archives) మీ మెటాలను అనుకూలీకరించండి</p>"
|
4313 |
|
4314 |
+
#: inc/admin/admin.php:2853
|
4315 |
msgid "Change this settings"
|
4316 |
msgstr "ఈ సెట్టింగ్లను మార్చండి"
|
4317 |
|
4318 |
+
#: inc/admin/admin.php:2856
|
4319 |
msgid "To view your sitemap, enable permalinks (not default one), and save settings to flush them."
|
4320 |
msgstr "మీ సైట్ మ్యాప్ను వీక్షించడానికి, permalinks (డిఫాల్ట్ కాదు) ను ఎనేబుల్ చేసి, వాటిని ఫ్లష్ చేయడానికి సెట్టింగులను సేవ్ చేయండి."
|
4321 |
|
4322 |
+
#: inc/admin/admin.php:2862
|
4323 |
#, fuzzy
|
4324 |
#| msgid ""
|
4325 |
#| "Your server use NGINX. If XML Sitemaps doesn't work, you have to add this rules to your configuration:"
|
4328 |
"configuration:"
|
4329 |
msgstr "మీ సర్వర్ NGINX ను ఉపయోగిస్తుంది. XML సైట్ మ్యాప్లు పని చేయకపోతే, మీరు ఈ నియమాన్ని మీ కాన్ఫిగరేషన్కు జోడించాలి:"
|
4330 |
|
4331 |
+
#: inc/admin/admin.php:2876
|
4332 |
msgid "Noindex content will not be displayed in Sitemaps."
|
4333 |
msgstr "సైట్ మాప్లలో Noindex కంటెంట్ ప్రదర్శించబడదు."
|
4334 |
|
4335 |
+
#: inc/admin/admin.php:2886
|
4336 |
msgid "Blank sitemap?"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
+
#: inc/admin/admin.php:2887
|
4340 |
msgid "404 error?"
|
4341 |
msgstr ""
|
4342 |
|
4343 |
+
#: inc/admin/admin.php:2889
|
4344 |
msgid "View your sitemap"
|
4345 |
msgstr "మీ సైట్మాప్ని వీక్షించండి"
|
4346 |
|
4347 |
+
#: inc/admin/admin.php:2891
|
4348 |
msgid "Ping Google manually"
|
4349 |
msgstr "Google ను మానవీయంగా పింగ్ చేయండి"
|
4350 |
|
4351 |
+
#: inc/admin/admin.php:2893
|
4352 |
msgid "Flush permalinks"
|
4353 |
msgstr "ఫ్లష్ permalinks"
|
4354 |
|
4355 |
+
#: inc/admin/admin.php:2898
|
4356 |
#, fuzzy
|
4357 |
#| msgid "<p>Create an HTML for your visitors and boost your SEO</p>"
|
4358 |
msgid "<p>Create an HTML Sitemap for your visitors and boost your SEO.</p>"
|
4359 |
msgstr "<p>మీ సందర్శకులకు HTML ను సృష్టించండి మరియు మీ SEO ను పెంచండి</p>"
|
4360 |
|
4361 |
+
#: inc/admin/admin.php:2899
|
4362 |
+
msgid "<p>Limited to 1,000 posts per post type. You can change the order and sorting criteria below.</p>"
|
4363 |
+
msgstr ""
|
4364 |
+
|
4365 |
+
#: inc/admin/admin.php:2907 inc/admin/admin.php:4023
|
4366 |
msgid "Guide to enable a HTML Sitemap - new window"
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: inc/admin/admin.php:2911
|
4370 |
#, fuzzy
|
4371 |
#| msgid "<p>Include / Exclude Post Types</p>"
|
4372 |
msgid "<p>Include/Exclude Post Types.</p>"
|
4373 |
msgstr "<p>పోస్ట్ రకాలు చేర్చండి / మినహాయించండి</p>"
|
4374 |
|
4375 |
+
#: inc/admin/admin.php:2915
|
4376 |
#, fuzzy
|
4377 |
#| msgid "<p>Include / Exclude Taxonomies</p>"
|
4378 |
msgid "<p>Include/Exclude Taxonomies.</p>"
|
4379 |
msgstr "<p>చేర్చండి / వర్గీకరణాలు మినహాయించండి</p>"
|
4380 |
|
4381 |
+
#: inc/admin/admin.php:2919
|
4382 |
#, fuzzy
|
4383 |
#| msgid "<p>Configure Google Knowledge Graph</p>"
|
4384 |
msgid "<p>Configure Google Knowledge Graph.</p>"
|
4385 |
msgstr "<p>Google Knowledge Graph ను కన్ఫిగర్ చేయండి</p>"
|
4386 |
|
4387 |
+
#: inc/admin/admin.php:2920
|
4388 |
#, fuzzy
|
4389 |
#| msgid "Learn more on Google website"
|
4390 |
msgid "Learn more on Google official website."
|
4391 |
msgstr "Google వెబ్సైట్లో మరింత తెలుసుకోండి"
|
4392 |
|
4393 |
+
#: inc/admin/admin.php:2924
|
4394 |
msgid ""
|
4395 |
"<p>Link your site with your social accounts. Use markup on your website to add your social profile "
|
4396 |
"information to a Google Knowledge panel. Knowledge panels prominently display your social profile "
|
4398 |
"data in search results. It may take a long time to see these social-network links.</p>"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
+
#: inc/admin/admin.php:2928
|
4402 |
#, fuzzy
|
4403 |
#| msgid "<p>Manage Open Graph datas</p>"
|
4404 |
msgid "<p>Manage Open Graph data.</p>"
|
4405 |
msgstr "<p>ఓపెన్ గ్రాఫ్ డేటాలను నిర్వహించండి</p>"
|
4406 |
|
4407 |
+
#: inc/admin/admin.php:2930
|
4408 |
msgid "<p>We generate the <strong>og:image</strong> meta in this order:</p>"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: inc/admin/admin.php:2934
|
4412 |
msgid "Custom OG Image from SEO metabox"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
+
#: inc/admin/admin.php:2935 inc/admin/admin.php:2949
|
4416 |
#, fuzzy
|
4417 |
#| msgid "Twitter Thumbnail"
|
4418 |
msgid "Post thumbnail"
|
4419 |
msgstr "ట్విట్టర్ సూక్ష్మచిత్రం"
|
4420 |
|
4421 |
+
#: inc/admin/admin.php:2936 inc/admin/admin.php:2950
|
4422 |
msgid "First image of your post content"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
+
#: inc/admin/admin.php:2937
|
4426 |
msgid "Global OG Image set in SEO > Social > Open Graph"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
+
#: inc/admin/admin.php:2942
|
4430 |
#, fuzzy
|
4431 |
#| msgid "<p>Manage your Twitter card</p>"
|
4432 |
msgid "<p>Manage your Twitter card.</p>"
|
4433 |
msgstr "<p>మీ ట్విట్టర్ కార్డ్ని నిర్వహించండి</p>"
|
4434 |
|
4435 |
+
#: inc/admin/admin.php:2944
|
4436 |
msgid "<p>We generate the <strong>twitter:image</strong> meta in this order:</p>"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
+
#: inc/admin/admin.php:2948
|
4440 |
msgid "Custom Twitter image from SEO metabox"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#: inc/admin/admin.php:2951
|
4444 |
msgid "Global Twitter:image set in SEO > Social > Twitter Card"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
+
#: inc/admin/admin.php:2956
|
4448 |
#, fuzzy
|
4449 |
#| msgid "<p>Link your Google Analytics to your website</p>"
|
4450 |
msgid ""
|
4452 |
"p>"
|
4453 |
msgstr "<p>మీ వెబ్సైట్కు మీ Google Analytics లింక్ చేయండి</p>"
|
4454 |
|
4455 |
+
#: inc/admin/admin.php:2960
|
4456 |
msgid "<p>Manage user consent for GDPR and customize your cookie bar easily.</p>"
|
4457 |
msgstr ""
|
4458 |
|
4459 |
+
#: inc/admin/admin.php:2961
|
4460 |
+
msgid "Works with <strong>Google Analytics</strong> and <strong>Matomo</strong>."
|
4461 |
+
msgstr ""
|
4462 |
+
|
4463 |
+
#: inc/admin/admin.php:2965
|
4464 |
#, fuzzy
|
4465 |
#| msgid "<p>Configure your Google Analytics tracking code</p>"
|
4466 |
msgid "<p>Configure your Google Analytics tracking code.</p>"
|
4467 |
msgstr "<p>మీ Google Analytics ట్రాకింగ్ కోడ్ను కాన్ఫిగర్ చేయండి</p>"
|
4468 |
|
4469 |
+
#: inc/admin/admin.php:2969
|
4470 |
#, fuzzy
|
4471 |
#| msgid "<p>Track events in Google Analytics</p>"
|
4472 |
msgid "<p>Track events in Google Analytics.</p>"
|
4473 |
msgstr "<p>Google Analytics లో ఈవెంట్లను ట్రాక్ చేయండి</p>"
|
4474 |
|
4475 |
+
#: inc/admin/admin.php:2973
|
4476 |
#, fuzzy
|
4477 |
#| msgid ""
|
4478 |
#| "<p>Configure your Google Analytics custom dimensions. <br>Custom dimensions and custom metrics are like "
|
4492 |
"ఉపయోగించవచ్చు.<br>మీరు మీ Google Analytics ఖాతాలో మీ అనుకూల కొలతలు సెటప్ చేయాలని గమనించండి. సహాయ చిహ్నాన్ని క్లిక్ చేయడం ద్వారా మరింత "
|
4493 |
"సమాచారం."
|
4494 |
|
4495 |
+
#: inc/admin/admin.php:2975
|
4496 |
msgid "Custom dimensions also work with <strong>Matomo</strong> tracking code."
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: inc/admin/admin.php:2983
|
4500 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
+
#: inc/admin/admin.php:2987
|
4504 |
msgid "<p>Use Matomo to track your users with privacy in mind.</p>"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
+
#: inc/admin/admin.php:2989
|
4508 |
msgid "Your <strong>Custom Dimensions</strong> will also work with Matomo tracking code"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
+
#: inc/admin/admin.php:2993
|
4512 |
#, fuzzy
|
4513 |
#| msgid "<p>Advanced SEO options</p>"
|
4514 |
msgid "<p>Advanced SEO options.</p>"
|
4515 |
msgstr "<p>ఆధునిక SEO ఎంపికలు</p>"
|
4516 |
|
4517 |
+
#: inc/admin/admin.php:2997
|
4518 |
#, fuzzy
|
4519 |
#| msgid "<p>Customize SEOPress to fit your needs</p>"
|
4520 |
msgid "<p>Customize SEOPress to fit your needs.</p>"
|
4521 |
msgstr "<p>మీ అవసరాలకు సరిపోయేలా SEO ను అనుకూలీకరించండి</p>"
|
4522 |
|
4523 |
+
#: inc/admin/admin.php:3001
|
4524 |
#, fuzzy
|
4525 |
#| msgid "<p>Manage security</p>"
|
4526 |
msgid "<p>Manage security.</p>"
|
4527 |
msgstr "<p>భద్రతను నిర్వహించండి</p>"
|
4528 |
|
4529 |
+
#: inc/admin/admin.php:3014
|
4530 |
msgid "Enter your separator, eg: \"-\""
|
4531 |
msgstr ""
|
4532 |
|
4533 |
+
#: inc/admin/admin.php:3018
|
4534 |
#, fuzzy, php-format
|
4535 |
#| msgid "Enter your meta description"
|
4536 |
msgid "Use this separator with %%sep%% in your title and meta description."
|
4537 |
msgstr "మీ ఉన్నత స్థాయి వివరణను నమోదు చేయండి"
|
4538 |
|
4539 |
+
#: inc/admin/admin.php:3024
|
4540 |
msgid "My awesome website"
|
4541 |
msgstr "నా అద్భుతమైన వెబ్ సైట్"
|
4542 |
|
4543 |
+
#: inc/admin/admin.php:3030 inc/admin/admin.php:3041 inc/admin/admin.php:3135 inc/admin/admin.php:3325
|
4544 |
+
#: inc/admin/admin.php:3358 inc/admin/admin.php:3448 inc/admin/admin.php:3525 inc/admin/admin.php:3596
|
4545 |
+
#: inc/admin/admin.php:3666 inc/admin/admin.php:3717
|
4546 |
msgid "More tags"
|
4547 |
msgstr "మరిన్ని ట్యాగ్లు"
|
4548 |
|
4549 |
+
#: inc/admin/admin.php:3036
|
4550 |
msgid "This is a cool website about Wookiees"
|
4551 |
msgstr "This is a cool website about Wookiees"
|
4552 |
|
4553 |
+
#: inc/admin/admin.php:3044
|
4554 |
#, fuzzy
|
4555 |
#| msgid "Looking for editing your blog page?"
|
4556 |
msgid "Looking to edit your blog page?"
|
4557 |
msgstr "మీ బ్లాగ్ పేజీని సవరించడం కోసం వెతుకుతున్నారా?"
|
4558 |
|
4559 |
+
#: inc/admin/admin.php:3069 inc/admin/admin.php:3073 inc/admin/admin.php:3075 inc/admin/admin.php:3080
|
4560 |
+
msgid "Click to hide any SEO metaboxes / columns for this post type"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: inc/admin/admin.php:3072 inc/admin/admin.php:3076 inc/admin/admin.php:3079
|
4564 |
+
msgid "Click to display any SEO metaboxes / columns for this post type"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: inc/admin/admin.php:3104 inc/admin/admin.php:3291 inc/admin/admin.php:3420 inc/admin/admin.php:3513
|
4568 |
+
#: inc/admin/admin.php:3584 inc/admin/admin.php:3654 inc/admin/admin.php:3707
|
4569 |
msgid "Title template"
|
4570 |
msgstr "శీర్షిక టెంప్లేట్ (Title template)"
|
4571 |
|
4572 |
+
#: inc/admin/admin.php:3142 inc/admin/admin.php:3334 inc/admin/admin.php:3455 inc/admin/admin.php:3531
|
4573 |
+
#: inc/admin/admin.php:3602 inc/admin/admin.php:3672 inc/admin/admin.php:3722
|
4574 |
msgid "Meta description template"
|
4575 |
msgstr "మెటా వివరణ టెంప్లేట్ - Meta description template"
|
4576 |
|
4577 |
+
#: inc/admin/admin.php:3165
|
4578 |
msgid "Do not display this single post type in search engine results <strong>(noindex)</strong>"
|
4579 |
msgstr ""
|
4580 |
|
4581 |
+
#: inc/admin/admin.php:3184
|
4582 |
msgid "Do not follow links for this single post type <strong>(nofollow)</strong>"
|
4583 |
msgstr ""
|
4584 |
|
4585 |
+
#: inc/admin/admin.php:3203
|
4586 |
msgid "Display date in Google search results?"
|
4587 |
msgstr "Google శోధన ఫలితాల్లో తేదీని ప్రదర్శించాలా?"
|
4588 |
|
4589 |
+
#: inc/admin/admin.php:3222
|
4590 |
#, fuzzy
|
4591 |
#| msgid "Display date in Google search results?"
|
4592 |
msgid "Display post thumbnail in Google Custom Search results?"
|
4593 |
msgstr "Google శోధన ఫలితాల్లో తేదీని ప్రదర్శించాలా?"
|
4594 |
|
4595 |
+
#: inc/admin/admin.php:3254 inc/admin/admin.php:3258 inc/admin/admin.php:3260 inc/admin/admin.php:3265
|
4596 |
msgid "Click to hide any SEO metaboxes for this taxonomy"
|
4597 |
msgstr ""
|
4598 |
|
4599 |
+
#: inc/admin/admin.php:3257 inc/admin/admin.php:3261 inc/admin/admin.php:3264
|
4600 |
msgid "Click to display any SEO metaboxes for this taxonomy"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
+
#: inc/admin/admin.php:3314
|
4604 |
msgid "Category Title"
|
4605 |
msgstr "వర్గం శీర్షిక - Category Title"
|
4606 |
|
4607 |
+
#: inc/admin/admin.php:3316
|
4608 |
msgid "Tag Title"
|
4609 |
msgstr "ట్యాగ్ శీర్షిక"
|
4610 |
|
4611 |
+
#: inc/admin/admin.php:3351
|
|
|
|
|
|
|
|
|
4612 |
msgid "Category Description"
|
4613 |
msgstr "వర్గం వివరణ - Category Description"
|
4614 |
|
4615 |
+
#: inc/admin/admin.php:3353
|
4616 |
msgid "Tag Description"
|
4617 |
msgstr "ట్యాగ్ వివరణ"
|
4618 |
|
4619 |
+
#: inc/admin/admin.php:3355
|
4620 |
msgid "Term Description"
|
4621 |
msgstr "పదం వివరణ - Term Description"
|
4622 |
|
4623 |
+
#: inc/admin/admin.php:3373
|
4624 |
msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
+
#: inc/admin/admin.php:3392
|
4628 |
msgid "Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
+
#: inc/admin/admin.php:3412
|
4632 |
#, fuzzy
|
4633 |
#| msgid "Search archives"
|
4634 |
msgid "See archive"
|
4635 |
msgstr "ఆర్కైవ్లను శోధించండి (ప్రాచీనపత్ర సంచయము)"
|
4636 |
|
4637 |
+
#: inc/admin/admin.php:3442
|
4638 |
msgid "Post Type Archive Name"
|
4639 |
msgstr "పోస్ట్ రకం ఆర్కైవ్(Archive) పేరు"
|
4640 |
|
4641 |
+
#: inc/admin/admin.php:3478
|
4642 |
msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: inc/admin/admin.php:3497
|
4646 |
msgid "Do not follow links for this post type archive <strong>(nofollow)</strong>"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: inc/admin/admin.php:3511
|
4650 |
msgid "Author archives"
|
4651 |
msgstr "రచయిత ఆర్కైవ్స్ (ప్రాచీనపత్ర సంచయము)"
|
4652 |
|
4653 |
+
#: inc/admin/admin.php:3573
|
4654 |
msgid "Disable author archives"
|
4655 |
msgstr "Disable author archives"
|
4656 |
|
4657 |
+
#: inc/admin/admin.php:3582 inc/admin/admin.php:3593
|
4658 |
msgid "Date archives"
|
4659 |
msgstr "తేదీ ఆర్కైవ్లు (Date Archives)"
|
4660 |
|
4661 |
+
#: inc/admin/admin.php:3625
|
4662 |
msgid "Do not display date archives in search engine results <strong>(noindex)</strong>"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
+
#: inc/admin/admin.php:3643
|
4666 |
msgid "Disable date archives"
|
4667 |
msgstr "తేదీ ఆర్కైవ్ని నిలిపివేయండి"
|
4668 |
|
4669 |
+
#: inc/admin/admin.php:3652
|
4670 |
msgid "Search archives"
|
4671 |
msgstr "ఆర్కైవ్లను శోధించండి (ప్రాచీనపత్ర సంచయము)"
|
4672 |
|
4673 |
+
#: inc/admin/admin.php:3663
|
4674 |
msgid "Search Keywords"
|
4675 |
msgstr "Keywords శోధన"
|
4676 |
|
4677 |
+
#: inc/admin/admin.php:3696
|
4678 |
msgid "Do not display search archives in search engine results <strong>(noindex)</strong>"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: inc/admin/admin.php:3705
|
4682 |
msgid "404 archives"
|
4683 |
msgstr "404 ఆర్కైవ్లు"
|
4684 |
|
4685 |
+
#: inc/admin/admin.php:3748
|
4686 |
msgid ""
|
4687 |
"Do not display all pages of the site in Google search results and do not display \"Cached\" links in search "
|
4688 |
"results."
|
4689 |
msgstr "Google శోధన ఫలితాల్లో సైట్ యొక్క అన్ని పేజీలను ప్రదర్శించవద్దు మరియు శోధన ఫలితాల్లో \"Cached\" లింక్లను ప్రదర్శించవద్దు."
|
4690 |
|
4691 |
+
#: inc/admin/admin.php:3767
|
4692 |
msgid "Do not follow links for all pages."
|
4693 |
msgstr "అన్ని పేజీల కోసం లింక్లను అనుసరించవద్దు."
|
4694 |
|
4695 |
+
#: inc/admin/admin.php:3786
|
4696 |
msgid "Do not use Open Directory project metadata for titles or excerpts for all pages."
|
4697 |
msgstr "అన్ని పేజీలకు శీర్షికలు లేదా సారాంశాలు కోసం ఓపెన్ డైరెక్టరీ ప్రాజెక్ట్ meta సమాచారం ఉపయోగించవద్దు."
|
4698 |
|
4699 |
+
#: inc/admin/admin.php:3805
|
4700 |
msgid "Do not index images from the entire site."
|
4701 |
msgstr "మొత్తం సైట్ నుండి చిత్రాలను ఇండెక్స్ చేయవద్దు."
|
4702 |
|
4703 |
+
#: inc/admin/admin.php:3824
|
4704 |
msgid "Do not display a \"Cached\" link in the Google search results."
|
4705 |
msgstr "Google శోధన ఫలితాల్లో \"Cached\" లింక్ను ప్రదర్శించవద్దు."
|
4706 |
|
4707 |
+
#: inc/admin/admin.php:3843
|
4708 |
msgid "Do not display a description in the Google search results for all pages."
|
4709 |
msgstr "Google శోధన ఫలితాల్లో అన్ని పేజీల యొక్క వివరణని ప్రదర్శించవద్దు."
|
4710 |
|
4711 |
+
#: inc/admin/admin.php:3862
|
4712 |
msgid ""
|
4713 |
"Prevents Google to display a sitelinks searchbox in search results. Enable this option will remove the "
|
4714 |
"\"Website\" schema from your source code."
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: inc/admin/admin.php:3879
|
4718 |
msgid "Add rel next/prev link in head of paginated archive pages"
|
4719 |
msgstr "ఆర్కైవ్ పేజీల తలలో తదుపరి / గత లింక్ని జోడించండి"
|
4720 |
|
4721 |
+
#: inc/admin/admin.php:3896
|
4722 |
+
#, fuzzy
|
4723 |
+
#| msgid "Add rel next/prev link in head of paginated archive pages"
|
4724 |
+
msgid "Add a \"noindex\" meta robots for all paginated archive pages"
|
4725 |
+
msgstr "ఆర్కైవ్ పేజీల తలలో తదుపరి / గత లింక్ని జోడించండి"
|
4726 |
|
4727 |
+
#: inc/admin/admin.php:3898
|
4728 |
+
#, fuzzy
|
4729 |
+
#| msgid "eg: https://www.facebook.com/your-page"
|
4730 |
+
msgid "eg: https://example.com/category/my-category/page/2/"
|
4731 |
+
msgstr "ఉదా: https://www.facebook.com/your-page"
|
4732 |
+
|
4733 |
+
#: inc/admin/admin.php:3923
|
4734 |
msgid "Guide to enable XML Sitemaps - new window"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
+
#: inc/admin/admin.php:3940
|
4738 |
msgid "Enable Image Sitemaps (standard images, image galleries, featured image, WooCommerce product images)"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: inc/admin/admin.php:3942
|
4742 |
msgid "Images in XML sitemaps are visible only from the source code."
|
4743 |
msgstr ""
|
4744 |
|
4745 |
+
#: inc/admin/admin.php:3950
|
4746 |
#, fuzzy
|
4747 |
#| msgid "Enable XML Image Sitemaps"
|
4748 |
msgid "Guide to enable XML image sitemaps - new window"
|
4749 |
msgstr "XML చిత్రం సైట్మాప్లను ప్రారంభించండి"
|
4750 |
|
4751 |
+
#: inc/admin/admin.php:3968
|
4752 |
#, fuzzy
|
4753 |
#| msgid "Enable Image Sitemaps"
|
4754 |
msgid "Enable Video Sitemaps"
|
4755 |
msgstr "చిత్రం సైట్మాప్లను ప్రారంభించండి"
|
4756 |
|
4757 |
+
#: inc/admin/admin.php:3976
|
4758 |
#, php-format
|
4759 |
msgid ""
|
4760 |
"Your video sitemap is empty? Read our guide to learn more about <a href=\"%s\" target=\"_blank\">adding "
|
4761 |
"videos to your sitemap.</a>"
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: inc/admin/admin.php:3978
|
4765 |
msgid "Guide to enable XML video sitemaps - new window"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: inc/admin/admin.php:3998
|
4769 |
msgid "Make sure to enable author archive from SEO, titles and metas, archives tab.</a>"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: inc/admin/admin.php:4063 inc/admin/admin.php:4107
|
4773 |
msgid "Include"
|
4774 |
msgstr "చేర్చండి"
|
4775 |
|
4776 |
+
#: inc/admin/admin.php:4066
|
4777 |
msgid "You should never include attachment post type in your sitemap. Be careful if you checked this."
|
4778 |
msgstr ""
|
4779 |
|
4780 |
+
#: inc/admin/admin.php:4122
|
4781 |
msgid "eg: 2, 28, 68"
|
4782 |
msgstr "ఉదా: 2, 28, 68"
|
4783 |
|
4784 |
+
#: inc/admin/admin.php:4126
|
4785 |
msgid "You can also use this shortcode:"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
+
#: inc/admin/admin.php:4136
|
4789 |
msgid "eg: 13, 8, 38"
|
4790 |
msgstr "ఉదా: 13, 8, 38"
|
4791 |
|
4792 |
+
#: inc/admin/admin.php:4150
|
4793 |
msgid "DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
4794 |
msgstr ""
|
4795 |
|
4796 |
+
#: inc/admin/admin.php:4153
|
4797 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
4798 |
msgstr ""
|
4799 |
|
4800 |
+
#: inc/admin/admin.php:4170
|
4801 |
#, fuzzy
|
4802 |
#| msgid "Default value: "
|
4803 |
msgid "Default (date)"
|
4804 |
msgstr "డిఫాల్ట్ విలువ :"
|
4805 |
|
4806 |
+
#: inc/admin/admin.php:4176
|
4807 |
msgid "Modified date"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: inc/admin/admin.php:4179
|
4811 |
#, fuzzy
|
4812 |
#| msgid "Post date"
|
4813 |
msgid "Post ID"
|
4814 |
msgstr "పోస్ట్ తేదీ"
|
4815 |
|
4816 |
+
#: inc/admin/admin.php:4182
|
4817 |
msgid "Menu order"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
+
#: inc/admin/admin.php:4200
|
4821 |
#, fuzzy
|
4822 |
#| msgid "Post Title (post, page, custom post type)"
|
4823 |
msgid "Disable date after each post, page, post type?"
|
4824 |
msgstr "పోస్ట్ శీర్షిక (పోస్ట్, పేజీ, కస్టమ్ పోస్ట్ రకం)"
|
4825 |
|
4826 |
+
#: inc/admin/admin.php:4235
|
4827 |
#, fuzzy
|
4828 |
#| msgid "SEOPress"
|
4829 |
msgid "eg: SEOPress"
|
4830 |
msgstr "SEOPress"
|
4831 |
|
4832 |
+
#: inc/admin/admin.php:4248
|
4833 |
msgid "Select your logo"
|
4834 |
msgstr "మీ లోగో ఎంచుకోండి"
|
4835 |
|
4836 |
+
#: inc/admin/admin.php:4252
|
4837 |
msgid "JPG, PNG, and GIF allowed."
|
4838 |
msgstr ""
|
4839 |
|
4840 |
+
#: inc/admin/admin.php:4278
|
4841 |
msgid "eg: +33123456789 (internationalized version required)"
|
4842 |
msgstr "ఉదా: +33123456789 (అంతర్జాతీయీకరించిన సంస్కరణ అవసరం)"
|
4843 |
|
4844 |
+
#: inc/admin/admin.php:4293
|
4845 |
msgid "Customer support"
|
4846 |
msgstr "వినియోగదారుని కి సహాయము"
|
4847 |
|
4848 |
+
#: inc/admin/admin.php:4296
|
4849 |
msgid "Technical support"
|
4850 |
msgstr "సాంకేతిక సహాయము"
|
4851 |
|
4852 |
+
#: inc/admin/admin.php:4299
|
4853 |
msgid "Billing support"
|
4854 |
msgstr "బిల్లింగ్ సహాయము"
|
4855 |
|
4856 |
+
#: inc/admin/admin.php:4302
|
4857 |
msgid "Bill payment"
|
4858 |
msgstr "బిల్ చెల్లింపు"
|
4859 |
|
4860 |
+
#: inc/admin/admin.php:4305
|
4861 |
msgid "Sales"
|
4862 |
msgstr "అమ్మకాలు"
|
4863 |
|
4864 |
+
#: inc/admin/admin.php:4308
|
4865 |
msgid "Credit card support"
|
4866 |
msgstr "క్రెడిట్ కార్డ్ సహాయము"
|
4867 |
|
4868 |
+
#: inc/admin/admin.php:4311
|
4869 |
msgid "Emergency"
|
4870 |
msgstr "అత్యవసరo"
|
4871 |
|
4872 |
+
#: inc/admin/admin.php:4314
|
4873 |
msgid "Baggage tracking"
|
4874 |
msgstr "బ్యాగేజ్ ట్రాకింగ్"
|
4875 |
|
4876 |
+
#: inc/admin/admin.php:4317
|
4877 |
msgid "Roadside assistance"
|
4878 |
msgstr "రోడ్సైడ్ సహాయం"
|
4879 |
|
4880 |
+
#: inc/admin/admin.php:4320
|
4881 |
msgid "Package tracking"
|
4882 |
msgstr "ప్యాకేజీ ట్రాకింగ్"
|
4883 |
|
4884 |
+
#: inc/admin/admin.php:4337 inc/admin/admin.php:5184 inc/admin/admin.php:5207 inc/admin/admin.php:5230
|
4885 |
+
#: inc/admin/admin.php:5253 inc/admin/admin.php:5276
|
4886 |
msgid "None"
|
4887 |
msgstr "ఏమీ కాదు"
|
4888 |
|
4889 |
+
#: inc/admin/admin.php:4340
|
4890 |
msgid "Toll Free"
|
4891 |
msgstr "టోల్ ఫ్రీ"
|
4892 |
|
4893 |
+
#: inc/admin/admin.php:4343
|
4894 |
msgid "Hearing impaired supported"
|
4895 |
msgstr "వినికిడి బలహీనమైన మద్దతు"
|
4896 |
|
4897 |
+
#: inc/admin/admin.php:4369
|
4898 |
#, fuzzy
|
4899 |
#| msgid "Twitter Username"
|
4900 |
msgid "Twitter Page URL"
|
4901 |
msgstr "Twitter Username"
|
4902 |
|
4903 |
+
#: inc/admin/admin.php:4470
|
4904 |
msgid "Enable OG data"
|
4905 |
msgstr "OG డేటాను ప్రారంభించండి"
|
4906 |
|
4907 |
+
#: inc/admin/admin.php:4504
|
4908 |
msgid ""
|
4909 |
"Override every <strong>og:image</strong> tag with this default image (except if a custom og:image has "
|
4910 |
"already been set from the SEO metabox)."
|
4911 |
msgstr ""
|
4912 |
|
4913 |
+
#: inc/admin/admin.php:4509
|
4914 |
+
msgid "Please define a default OG Image from the field above"
|
4915 |
msgstr ""
|
4916 |
|
4917 |
+
#: inc/admin/admin.php:4542
|
4918 |
+
#, fuzzy
|
4919 |
+
#| msgid "Your site title is empty!"
|
4920 |
+
msgid "No custom post type to configure."
|
4921 |
+
msgstr "మీ సైట్ శీర్షిక ఖాళీగా ఉంది!"
|
4922 |
+
|
4923 |
+
#: inc/admin/admin.php:4554
|
4924 |
msgid ""
|
4925 |
"One or more Facebook Page IDs that are associated with a URL in order to enable link editing and instant "
|
4926 |
"article publishing."
|
4927 |
msgstr ""
|
4928 |
|
4929 |
+
#: inc/admin/admin.php:4558
|
4930 |
msgid "How do I find my Facebook Page ID?"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
+
#: inc/admin/admin.php:4568
|
4934 |
msgid ""
|
4935 |
"The ID (or comma-separated list for properties that can accept multiple IDs) of an app, person using the "
|
4936 |
"app, or Page Graph API object."
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: inc/admin/admin.php:4580
|
4940 |
msgid ""
|
4941 |
"The Facebook app ID of the site's app. In order to use Facebook Insights you must add the app ID to your "
|
4942 |
"page. Insights lets you view analytics for traffic to your site from Facebook. Find the app ID in your App "
|
4943 |
+
"Dashboard. <a class=\"seopress-help\" href=\"https://developers.facebook.com/apps/redirect/dashboard\" "
|
4944 |
+
"target=\"_blank\">More info here</a> <span class=\"seopress-help dashicons dashicons-external\"></span>"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
+
#: inc/admin/admin.php:4584
|
4948 |
#, fuzzy
|
4949 |
#| msgid "How-to create a Facebook App ID"
|
4950 |
msgid "How to create a Facebook App ID"
|
4951 |
msgstr "ఎలా Facebook App ID ని సృష్టించాలి"
|
4952 |
|
4953 |
+
#: inc/admin/admin.php:4597
|
4954 |
msgid "Enable Twitter card"
|
4955 |
msgstr "ట్విట్టర్ కార్డ్ని ప్రారంభించండి"
|
4956 |
|
4957 |
+
#: inc/admin/admin.php:4614
|
4958 |
#, fuzzy
|
4959 |
#| msgid "Enable Twitter Card"
|
4960 |
msgid "Use OG if no Twitter Cards"
|
4961 |
msgstr "ట్విట్టర్ కార్డ్ని ప్రారంభించండి"
|
4962 |
|
4963 |
+
#: inc/admin/admin.php:4649
|
4964 |
msgid "Default"
|
4965 |
msgstr "డిఫాల్ట్"
|
4966 |
|
4967 |
+
#: inc/admin/admin.php:4652
|
4968 |
msgid "Large"
|
4969 |
msgstr "పెద్ద"
|
4970 |
|
4971 |
+
#: inc/admin/admin.php:4670
|
4972 |
#, fuzzy
|
4973 |
#| msgid "Enable Google Analytics tracking"
|
4974 |
msgid "Enable Google Analytics tracking (Global Site Tag: gtag.js)"
|
4975 |
msgstr "Google Analytics ట్రాకింగ్ను ప్రారంభించండి"
|
4976 |
|
4977 |
+
#: inc/admin/admin.php:4682
|
4978 |
msgid "Enter your Tracking ID (UA-XXXX-XX)"
|
4979 |
msgstr "మీ ట్రాకింగ్ ID (UA-XXXX-XX) ను నమోదు చేయండి"
|
4980 |
|
4981 |
+
#: inc/admin/admin.php:4686
|
4982 |
msgid "Find your tracking ID"
|
4983 |
msgstr "మీ ట్రాకింగ్ ID ని కనుగొనండి"
|
4984 |
|
4985 |
+
#: inc/admin/admin.php:4700
|
4986 |
msgid "Request user's consent for analytics tracking (required by GDPR)"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
+
#: inc/admin/admin.php:4702
|
4990 |
msgid "<strong>The user must click the Accept button to allow tracking.</strong>"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
+
#: inc/admin/admin.php:4704
|
4994 |
msgid ""
|
4995 |
"User roles excluded from tracking will not see the consent message.<br> If you use a caching plugin, you "
|
4996 |
"have to exclude this JS file in your settings: <br><strong>/wp-content/plugins/wp-seopress/assets/js/"
|
4997 |
"seopress-cookies-ajax.js</strong> <br>and this cookie <strong>seopress-user-consent-accept</strong>"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
+
#: inc/admin/admin.php:4712
|
5001 |
msgid "Hook to add custom tracking code with user consent - new window"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
+
#: inc/admin/admin.php:4729
|
5005 |
msgid "Display and automatically accept the user‘s consent on page load (not fully GDPR)"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
+
#: inc/admin/admin.php:4731
|
5009 |
msgid "The previous option must be checked to use this."
|
5010 |
msgstr ""
|
5011 |
|
5012 |
+
#: inc/admin/admin.php:4744
|
5013 |
msgid "Enter your message (HTML allowed)"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
+
#: inc/admin/admin.php:4744
|
5017 |
msgid "This message will only appear if request user's consent is enabled."
|
5018 |
msgstr ""
|
5019 |
|
5020 |
+
#: inc/admin/admin.php:4753
|
5021 |
msgid "Hook to filter user consent message - new window"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
+
#: inc/admin/admin.php:4755
|
5025 |
msgid "HTML tags allowed: strong, em, br, a href / target"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: inc/admin/admin.php:4756
|
5029 |
msgid "Shortcode allowed to get the privacy page set in WordPress settings: [seopress_privacy_page]"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
+
#: inc/admin/admin.php:4764 inc/functions/options-google-analytics.php:182
|
5033 |
msgid "Accept"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
+
#: inc/admin/admin.php:4764
|
5037 |
#, fuzzy
|
5038 |
#| msgid "Change this settings"
|
5039 |
msgid "Change the button value"
|
5040 |
msgstr "ఈ సెట్టింగ్లను మార్చండి"
|
5041 |
|
5042 |
+
#: inc/admin/admin.php:4774
|
5043 |
#, fuzzy
|
5044 |
#| msgid "Default"
|
5045 |
msgid "default: X"
|
5046 |
msgstr "డిఫాల్ట్"
|
5047 |
|
5048 |
+
#: inc/admin/admin.php:4774
|
5049 |
#, fuzzy
|
5050 |
#| msgid "Change this settings"
|
5051 |
msgid "Change the close button value"
|
5052 |
msgstr "ఈ సెట్టింగ్లను మార్చండి"
|
5053 |
|
5054 |
+
#: inc/admin/admin.php:4788
|
5055 |
msgid "Bottom (default)"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
+
#: inc/admin/admin.php:4791
|
5059 |
msgid "Top"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
+
#: inc/admin/admin.php:4804
|
5063 |
msgid "Change the color of the cookie bar background"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: inc/admin/admin.php:4814
|
5067 |
msgid "Change the color of the cookie bar text"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: inc/admin/admin.php:4824
|
5071 |
msgid "Change the color of the cookie bar link"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: inc/admin/admin.php:4834
|
5075 |
msgid "Change the color of the cookie bar button background"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: inc/admin/admin.php:4844
|
5079 |
msgid "Change the color of the cookie bar button hover background"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: inc/admin/admin.php:4854
|
5083 |
msgid "Change the color of the cookie bar button"
|
5084 |
msgstr ""
|
5085 |
|
5086 |
+
#: inc/admin/admin.php:4864
|
5087 |
msgid "Change the color of the cookie bar button hover"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
+
#: inc/admin/admin.php:4874
|
5091 |
msgid "Change the color of the cookie bar secondary button background"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
+
#: inc/admin/admin.php:4884
|
5095 |
msgid "Change the color of the cookie bar secondary button hover background"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
+
#: inc/admin/admin.php:4894
|
5099 |
msgid "Change the color of the cookie bar secondary button"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
+
#: inc/admin/admin.php:4904
|
5103 |
msgid "Change the color of the cookie bar secondary button hover"
|
5104 |
msgstr ""
|
5105 |
|
5106 |
+
#: inc/admin/admin.php:4939
|
5107 |
#, fuzzy
|
5108 |
#| msgid "Enter your Google News Keywords"
|
5109 |
msgid "Enter your Google Optimize container ID"
|
5110 |
msgstr "మీ Google వార్తల కీలక పదాలను నమోదు చేయండి"
|
5111 |
|
5112 |
+
#: inc/admin/admin.php:4939
|
5113 |
msgid "GTM-XXXXXXX"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: inc/admin/admin.php:4942
|
5117 |
msgid "Google Optimize offers A/B testing, website testing & personalization tools."
|
5118 |
msgstr ""
|
5119 |
|
5120 |
+
#: inc/admin/admin.php:4950
|
5121 |
msgid "Enter your Google Ads conversion ID (eg: AW-123456789)"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
+
#: inc/admin/admin.php:4950
|
5125 |
msgid "AW-XXXXXXXXX"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
+
#: inc/admin/admin.php:4959
|
5129 |
msgid "Paste your tracking code here like Google Tag Manager (head)"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
+
#: inc/admin/admin.php:4959
|
5133 |
msgid "Additional tracking code field"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
+
#: inc/admin/admin.php:4962
|
5137 |
msgid "This code will be added in the head section of your page."
|
5138 |
msgstr ""
|
5139 |
|
5140 |
+
#: inc/admin/admin.php:4970
|
5141 |
msgid "Paste your tracking code here like Google Tag Manager (body)"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
+
#: inc/admin/admin.php:4970
|
5145 |
msgid "Additional tracking code field added to body"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: inc/admin/admin.php:4973
|
5149 |
msgid "This code will be added just after the opening body tag of your page."
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: inc/admin/admin.php:4974
|
5153 |
msgid ""
|
5154 |
"You don‘t see your code? Make sure to call <strong>wp_body_open();</strong> just after the opening body tag "
|
5155 |
"in your theme."
|
5156 |
msgstr ""
|
5157 |
|
5158 |
+
#: inc/admin/admin.php:4990
|
5159 |
msgid "Paste your tracking code here (body footer)"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
+
#: inc/admin/admin.php:4990
|
5163 |
msgid "Additional tracking code field added to body footer"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
+
#: inc/admin/admin.php:4993
|
5167 |
msgid "This code will be added just after the closing body tag of your page."
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: inc/admin/admin.php:5008
|
5171 |
msgid ""
|
5172 |
"A remarketing audience is a list of cookies or mobile-advertising IDs that represents a group of users you "
|
5173 |
"want to re-engage because of their likelihood to convert."
|
5175 |
"రీమార్కెటింగ్ ప్రేక్షకులు cookies లేదా మొబైల్ ప్రకటన ID ల జాబితాగా చెప్పవచ్చు, ఇది వినియోగదారుల సమూహాన్ని ప్రతిబింబించేలా చేయడానికి మీరు కోరుకున్న "
|
5176 |
"వినియోగదారుల సమూహాన్ని ప్రతిబింబిస్తుంది."
|
5177 |
|
5178 |
+
#: inc/admin/admin.php:5030
|
5179 |
msgid ""
|
5180 |
"When a customer of Analytics requests IP address anonymization, Analytics anonymizes the address as soon as "
|
5181 |
"technically feasible at the earliest possible stage of the collection network."
|
5183 |
"Analytics యొక్క కస్టమర్ ఐపి అడ్రస్ అనామలైజేషన్ అభ్యర్థి అయినప్పుడు, అనలిటిక్స్ వెంటనే ఈ నెట్వర్క్ను సేకరణ నెట్వర్క్ యొక్క సాధ్యమైన దశలో సాంకేతికంగా "
|
5184 |
"సాధ్యమవుతుంది."
|
5185 |
|
5186 |
+
#: inc/admin/admin.php:5052
|
5187 |
msgid ""
|
5188 |
"Enhanced Link Attribution improves the accuracy of your In-Page Analytics report by automatically "
|
5189 |
"differentiating between multiple links to the same URL on a single page by using link element IDs."
|
5193 |
"Analytics report by automatically differentiating between multiple links to the same URL on a single page "
|
5194 |
"by using link element IDs.)"
|
5195 |
|
5196 |
+
#: inc/admin/admin.php:5074
|
5197 |
msgid ""
|
5198 |
"Cross domain tracking makes it possible for Analytics to see sessions on two related sites (such as an "
|
5199 |
"ecommerce site and a separate shopping cart site) as a single session. This is sometimes called site "
|
5202 |
"క్రాస్ డొమైన్ ట్రాకింగ్ అనేది ఒకే session రెండు సంబంధిత సైట్లలో session (ఇకామర్స్ సైట్ మరియు ఒక ప్రత్యేక షాపింగ్ కార్ట్ సైట్ వంటివి) session "
|
5203 |
"చూడడానికి సాధ్యమవుతుంది. దీనిని కొన్నిసార్లు సైట్ లింకింగ్ అని పిలుస్తారు."
|
5204 |
|
5205 |
+
#: inc/admin/admin.php:5089 inc/admin/admin.php:5414
|
5206 |
msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
+
#: inc/admin/admin.php:5123
|
5210 |
msgid "Enable download tracking"
|
5211 |
msgstr "డౌన్లోడ్ ట్రాకింగ్ను ప్రారంభించండి"
|
5212 |
|
5213 |
+
#: inc/admin/admin.php:5135
|
5214 |
msgid "pdf|docx|pptx|zip"
|
5215 |
msgstr "pdf|docx|pptx|zip"
|
5216 |
|
5217 |
+
#: inc/admin/admin.php:5139
|
5218 |
msgid "Separate each file type extensions with a pipe \"|\""
|
5219 |
msgstr "ప్రతి ఫైల్ రకం ఎక్స్టెన్షన్లను విభజించండి పైప్తో \"|\""
|
5220 |
|
5221 |
+
#: inc/admin/admin.php:5154
|
5222 |
#, fuzzy
|
5223 |
#| msgid "Enable affiliate / outbound tracking"
|
5224 |
msgid "Enable affiliate/outbound tracking"
|
5225 |
msgstr "అనుబంధ / అవుట్బౌండ్ ట్రాకింగ్ను ప్రారంభించండి"
|
5226 |
|
5227 |
+
#: inc/admin/admin.php:5166
|
5228 |
msgid "aff|go|out"
|
5229 |
msgstr "aff|go|out"
|
5230 |
|
5231 |
+
#: inc/admin/admin.php:5170
|
5232 |
msgid "Separate each keyword with a pipe \"|\""
|
5233 |
msgstr "Separate each keyword with a pipe \"|\""
|
5234 |
|
5235 |
+
#: inc/admin/admin.php:5189 inc/admin/admin.php:5212 inc/admin/admin.php:5235 inc/admin/admin.php:5258
|
5236 |
+
#: inc/admin/admin.php:5281
|
5237 |
+
#, fuzzy, php-format
|
5238 |
+
#| msgid "Custom Dimension #1"
|
5239 |
+
msgid "Custom Dimension #%d"
|
5240 |
msgstr "కస్టమ్ డైమెన్షన్ # 1"
|
5241 |
|
5242 |
+
#: inc/admin/admin.php:5300
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5243 |
msgid "Enable Matomo tracking (Matomo account required)"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: inc/admin/admin.php:5312
|
5247 |
msgid "Enter \"example\" if you Matomo account URL is \"example.matomo.cloud\""
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: inc/admin/admin.php:5312
|
5251 |
#, fuzzy
|
5252 |
#| msgid "Soundcloud URL"
|
5253 |
msgid "Matomo Cloud URL"
|
5254 |
msgstr "Soundcloud URL"
|
5255 |
|
5256 |
+
#: inc/admin/admin.php:5317
|
5257 |
msgid "Enter only the <strong>host</strong> like this example.matomo.cloud"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
+
#: inc/admin/admin.php:5326
|
5261 |
#, fuzzy
|
5262 |
#| msgid "Enter your title"
|
5263 |
msgid "Enter your site ID here"
|
5264 |
msgstr "మీ శీర్షికను నమోదు చేయండి"
|
5265 |
|
5266 |
+
#: inc/admin/admin.php:5326
|
5267 |
msgid "Matomo Site ID"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: inc/admin/admin.php:5331
|
5271 |
msgid ""
|
5272 |
"To find your site ID, go to your <strong>Matomo Cloud account, Websites, Manage page</strong>. Look at "
|
5273 |
"\"Site ID\" on the right part."
|
5274 |
msgstr ""
|
5275 |
|
5276 |
+
#: inc/admin/admin.php:5345
|
5277 |
msgid "Tracking one domain and its subdomains in the same website"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: inc/admin/admin.php:5347
|
5281 |
msgid "If one visitor visits x.example.com and y.example.com, they will be counted as a unique visitor."
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: inc/admin/admin.php:5364
|
5285 |
msgid "Prepend the site domain to the page title when tracking"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: inc/admin/admin.php:5366
|
5289 |
msgid ""
|
5290 |
"If someone visits the 'About' page on blog.example.com it will be recorded as 'blog / About'. This is the "
|
5291 |
"easiest way to get an overview of your traffic by sub-domain."
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: inc/admin/admin.php:5402
|
5295 |
msgid ""
|
5296 |
"By default, the visitor ID that identifies a unique visitor is stored in the browser's first party cookies "
|
5297 |
"which can only be accessed by pages on the same domain. Enabling cross domain linking lets you track all "
|
5300 |
"parameter pk_vid forwarding the Visitor ID."
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: inc/admin/admin.php:5431
|
5304 |
msgid "Enable client side DoNotTrack detection"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
+
#: inc/admin/admin.php:5433
|
5308 |
msgid "Tracking requests will not be sent if visitors do not wish to be tracked."
|
5309 |
msgstr ""
|
5310 |
|
5311 |
+
#: inc/admin/admin.php:5450
|
5312 |
msgid ""
|
5313 |
"Disables all first party cookies. Existing Matomo cookies for this website will be deleted on the next page "
|
5314 |
"view."
|
5315 |
msgstr ""
|
5316 |
|
5317 |
+
#: inc/admin/admin.php:5467
|
5318 |
#, fuzzy
|
5319 |
#| msgid "Enable download tracking"
|
5320 |
msgid "Enabling Download & Outlink tracking"
|
5321 |
msgstr "డౌన్లోడ్ ట్రాకింగ్ను ప్రారంభించండి"
|
5322 |
|
5323 |
+
#: inc/admin/admin.php:5469
|
5324 |
msgid ""
|
5325 |
"By default, any file ending with one of these extensions will be considered a \"download\" in the Matomo "
|
5326 |
"interface: 7z|aac|arc|arj|apk|asf|asx|avi|bin|bz|bz2|csv|deb|dmg|doc|\n"
|
5327 |
+
"\t\texe|flv|gif|gz|gzip|hqx|jar|jpg|jpeg|js|mp2|mp3|mp4|mpg|\n"
|
5328 |
+
"\t\tmpeg|mov|movie|msi|msp|odb|odf|odg|odp|ods|odt|ogg|ogv|\n"
|
5329 |
+
"\t\tpdf|phps|png|ppt|qt|qtm|ra|ram|rar|rpm|sea|sit|tar|\n"
|
5330 |
+
"\t\ttbz|tbz2|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
+
#: inc/admin/admin.php:5490
|
5334 |
msgid "Redirect attachment pages to post parent (or homepage if none)"
|
5335 |
msgstr "Redirect attachment pages to post parent (or homepage if none)"
|
5336 |
|
5337 |
+
#: inc/admin/admin.php:5509
|
5338 |
msgid ""
|
5339 |
"If this option is checked, it will take precedence over the redirection of attachments to the post's parent."
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: inc/admin/admin.php:5526
|
5343 |
msgid "Remove ?replytocom link in source code"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: inc/admin/admin.php:5543
|
5347 |
msgid "When sending an image file, automatically set the title based on the filename"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: inc/admin/admin.php:5560
|
5351 |
msgid "When sending an image file, automatically set the alternative text based on the filename"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: inc/admin/admin.php:5563
|
5355 |
msgid ""
|
5356 |
"We recommend Image SEO plugin to optimize your image ALT texts and names for Search Engines using AI and "
|
5357 |
"Machine Learning. Starting from just €4.99."
|
5358 |
msgstr ""
|
5359 |
|
5360 |
+
#: inc/admin/admin.php:5581
|
5361 |
+
msgid "Use the target keywords if not alternative text set for the image"
|
5362 |
+
msgstr ""
|
5363 |
+
|
5364 |
+
#: inc/admin/admin.php:5583
|
5365 |
+
msgid ""
|
5366 |
+
"This setting will be applied to images without any alt text on frontend only. This setting is retroactive. "
|
5367 |
+
"If you turn it off, alt texts that were previously empty will be empty again."
|
5368 |
+
msgstr ""
|
5369 |
+
|
5370 |
+
#: inc/admin/admin.php:5600
|
5371 |
msgid "When sending an image file, automatically set the caption based on the filename"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: inc/admin/admin.php:5617
|
5375 |
msgid "When sending an image file, automatically set the description based on the filename"
|
5376 |
msgstr ""
|
5377 |
|
5378 |
+
#: inc/admin/admin.php:5634
|
5379 |
#, fuzzy
|
5380 |
#| msgid "Twitter description"
|
5381 |
msgid "Add TINYMCE editor to term description"
|
5382 |
msgstr "Twitter వివరణ"
|
5383 |
|
5384 |
+
#: inc/admin/admin.php:5651
|
5385 |
msgid "You have to flush your permalinks each time you change this settings"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
+
#: inc/admin/admin.php:5668
|
5389 |
msgid ""
|
5390 |
"You must check this box if the structure of your permalinks DOES NOT contain a slash at the end (eg: /"
|
5391 |
"%postname%)"
|
5392 |
msgstr "మీ permalinks నిర్మాణం చివరిలో స్లాష్ను కలిగి ఉండకపోతే మీరు దీని ఎంచుకోవాలి (ఉదా: /% postname%)"
|
5393 |
|
5394 |
+
#: inc/admin/admin.php:5685
|
5395 |
msgid "Remove WordPress meta generator in source code"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
+
#: inc/admin/admin.php:5702
|
5399 |
msgid "Remove hentry post class to prevent Google from seeing this as structured data (schema)"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
+
#: inc/admin/admin.php:5719
|
5403 |
msgid "Remove comment author URL in comments if the website is filled from profile page"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: inc/admin/admin.php:5736
|
5407 |
msgid "Remove website field from comment form to reduce spam"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: inc/admin/admin.php:5753
|
5411 |
msgid "Remove WordPress shortlink meta tag in source code (eg:"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
+
#: inc/admin/admin.php:5770
|
5415 |
msgid "Remove Windows Live Writer meta tag in source code (eg:"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: inc/admin/admin.php:5787
|
5419 |
msgid "Remove Really Simple Discovery meta tag in source code (eg:"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: inc/admin/admin.php:5799
|
5423 |
msgid "Enter Google meta value site verification"
|
5424 |
msgstr "Google మెటా విలువ సైట్ ధృవీకరణను నమోదు చేయండి"
|
5425 |
|
5426 |
+
#: inc/admin/admin.php:5804
|
5427 |
msgid ""
|
5428 |
"If your site is already verified in <strong>Google Search Console</strong>, you can leave this field empty."
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: inc/admin/admin.php:5813
|
5432 |
msgid "Enter Bing meta value site verification"
|
5433 |
msgstr "Bing మెటా విలువ సైట్ ధృవీకరణను నమోదు చేయండి"
|
5434 |
|
5435 |
+
#: inc/admin/admin.php:5817
|
5436 |
msgid ""
|
5437 |
"If your site is already verified in <strong>Bing Webmaster tools</strong>, you can leave this field empty."
|
5438 |
msgstr ""
|
5439 |
|
5440 |
+
#: inc/admin/admin.php:5826
|
5441 |
msgid "Enter Pinterest meta value site verification"
|
5442 |
msgstr "Pinterest మెటా విలువ సైట్ ధృవీకరణను నమోదు చేయండి"
|
5443 |
|
5444 |
+
#: inc/admin/admin.php:5838
|
5445 |
msgid "Enter Yandex meta value site verification"
|
5446 |
msgstr "Yandex మెటా విలువ సైట్ ధృవీకరణను నమోదు చేయండి"
|
5447 |
|
5448 |
+
#: inc/admin/admin.php:5855
|
5449 |
#, fuzzy
|
5450 |
#| msgid "Remove SEOPress from Admin Bar in backend"
|
5451 |
msgid "Remove SEOPress from Admin Bar in backend and frontend"
|
5452 |
msgstr "బ్యాకెండ్ లో అడ్మిన్ బార్ నుండి SEOPress తొలగించు"
|
5453 |
|
5454 |
+
#: inc/admin/admin.php:5871
|
5455 |
msgid "High priority (top)"
|
5456 |
msgstr "అధిక ప్రాధాన్యత (పైన)"
|
5457 |
|
5458 |
+
#: inc/admin/admin.php:5874
|
5459 |
msgid "Normal priority (default)"
|
5460 |
msgstr "సాధారణ ప్రాధాన్యత (డిఫాల్ట్)"
|
5461 |
|
5462 |
+
#: inc/admin/admin.php:5877
|
5463 |
msgid "Low priority"
|
5464 |
msgstr "తక్కువ ప్రాధాన్యత"
|
5465 |
|
5466 |
+
#: inc/admin/admin.php:5895
|
5467 |
#, fuzzy
|
5468 |
#| msgid "Normal priority (default)"
|
5469 |
msgid "Automatic tab (default)"
|
5470 |
msgstr "సాధారణ ప్రాధాన్యత (డిఫాల్ట్)"
|
5471 |
|
5472 |
+
#: inc/admin/admin.php:5898
|
5473 |
msgid "Manual tab"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: inc/admin/admin.php:5917
|
5477 |
msgid "Hide Notifications Center in SEOPress Dashboard page"
|
5478 |
msgstr "SEOPress డాష్బోర్డ్ పేజీ లో ప్రకటనలు సెంటర్ ని దాచు, ఈ బటన్ నొక్కండి"
|
5479 |
|
5480 |
+
#: inc/admin/admin.php:5934
|
5481 |
#, fuzzy
|
5482 |
#| msgid "Hide Notifications Center in SEOPress Dashboard page"
|
5483 |
msgid "Hide SEO tools in SEOPress Dashboard page"
|
5484 |
msgstr "SEOPress డాష్బోర్డ్ పేజీ లో ప్రకటనలు సెంటర్ ని దాచు, ఈ బటన్ నొక్కండి"
|
5485 |
|
5486 |
+
#: inc/admin/admin.php:5951
|
5487 |
#, fuzzy
|
5488 |
#| msgid "Hide Notifications Center in SEOPress Dashboard page"
|
5489 |
msgid "Hide Useful Links in SEOPress dashboard page"
|
5490 |
msgstr "SEOPress డాష్బోర్డ్ పేజీ లో ప్రకటనలు సెంటర్ ని దాచు, ఈ బటన్ నొక్కండి"
|
5491 |
|
5492 |
+
#: inc/admin/admin.php:5968
|
5493 |
msgid "Add title column"
|
5494 |
msgstr "టైటిల్ కాలమ్ని జోడించండి"
|
5495 |
|
5496 |
+
#: inc/admin/admin.php:5985
|
5497 |
msgid "Add meta description column"
|
5498 |
msgstr "మెటా వివరణ నిలువు వరుసను జోడించండి"
|
5499 |
|
5500 |
+
#: inc/admin/admin.php:6002
|
5501 |
#, fuzzy
|
5502 |
#| msgid "Add meta description column"
|
5503 |
msgid "Add redirection enable column"
|
5504 |
msgstr "మెటా వివరణ నిలువు వరుసను జోడించండి"
|
5505 |
|
5506 |
+
#: inc/admin/admin.php:6019
|
5507 |
#, fuzzy
|
5508 |
#| msgid "Add title column"
|
5509 |
msgid "Add redirection URL column"
|
5510 |
msgstr "టైటిల్ కాలమ్ని జోడించండి"
|
5511 |
|
5512 |
+
#: inc/admin/admin.php:6036
|
5513 |
#, fuzzy
|
5514 |
#| msgid "Add title column"
|
5515 |
msgid "Add canonical URL column"
|
5516 |
msgstr "టైటిల్ కాలమ్ని జోడించండి"
|
5517 |
|
5518 |
+
#: inc/admin/admin.php:6053
|
5519 |
#, fuzzy
|
5520 |
#| msgid "Add title column"
|
5521 |
msgid "Add target keyword column"
|
5522 |
msgstr "టైటిల్ కాలమ్ని జోడించండి"
|
5523 |
|
5524 |
+
#: inc/admin/admin.php:6070
|
5525 |
msgid "Display noindex status"
|
5526 |
msgstr "Noindex స్థితి ప్రదర్శించు"
|
5527 |
|
5528 |
+
#: inc/admin/admin.php:6087
|
5529 |
msgid "Display nofollow status"
|
5530 |
msgstr "నోఫాల్లో స్థితి ప్రదర్శించు"
|
5531 |
|
5532 |
+
#: inc/admin/admin.php:6104
|
5533 |
msgid "Display total number of words in content"
|
5534 |
msgstr "కంటెంట్లోని మొత్తం పదాల సంఖ్యను ప్రదర్శించండి"
|
5535 |
|
5536 |
+
#: inc/admin/admin.php:6121
|
5537 |
msgid "Display W3C column to check code quality"
|
5538 |
msgstr "కోడ్ నాణ్యత తనిఖీ W3C కాలమ్ ప్రదర్శించు"
|
5539 |
|
5540 |
+
#: inc/admin/admin.php:6139
|
5541 |
msgid "Display Page Speed column to check performances"
|
5542 |
msgstr "ప్రదర్శనలు తనిఖీ పేజీ స్పీడ్ కాలమ్ ప్రదర్శించు"
|
5543 |
|
5544 |
+
#: inc/admin/admin.php:6158
|
5545 |
+
#, fuzzy
|
5546 |
+
#| msgid "Display Page Speed column to check performances"
|
5547 |
+
msgid "Display SEO Insights column to check rankings"
|
5548 |
+
msgstr "ప్రదర్శనలు తనిఖీ పేజీ స్పీడ్ కాలమ్ ప్రదర్శించు"
|
5549 |
+
|
5550 |
+
#: inc/admin/admin.php:6177
|
5551 |
msgid "Display Content Analysis results column (\"Good\" or \"Should be improved\")"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: inc/admin/admin.php:6195
|
5555 |
#, fuzzy
|
5556 |
#| msgid "Remove Genesis SEO Metaboxe"
|
5557 |
msgid "Remove Genesis SEO Metabox"
|
5558 |
msgstr "Genesis SEO Metabox తొలగించు"
|
5559 |
|
5560 |
+
#: inc/admin/admin.php:6212
|
5561 |
#, fuzzy
|
5562 |
#| msgid "Remove Genesis SEO Metaboxe"
|
5563 |
msgid "Remove Genesis SEO link in WP Admin Menu"
|
5564 |
msgstr "Genesis SEO Metabox తొలగించు"
|
5565 |
|
5566 |
+
#: inc/admin/admin.php:6229
|
5567 |
msgid "Remove the advice if None schema selected"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: inc/admin/admin.php:6265 inc/admin/admin.php:6298
|
5571 |
msgid "Hook to filter structured data types metabox call by post type - new window"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: inc/admin/adminbar.php:38
|
5575 |
+
#, fuzzy
|
5576 |
+
#| msgid "noindex"
|
5577 |
+
msgid "noindex is on!"
|
5578 |
+
msgstr "noindex"
|
5579 |
+
|
5580 |
+
#: inc/admin/adminbar.php:99
|
5581 |
msgid "BOT"
|
5582 |
msgstr "BOT"
|
5583 |
|
5584 |
+
#: inc/admin/adminbar.php:135
|
5585 |
msgid "Broken Links"
|
5586 |
msgstr "బ్రోకెన్ లింక్స్"
|
5587 |
|
5588 |
+
#: inc/admin/adminbar.php:143
|
5589 |
msgid "Configuration wizard"
|
5590 |
msgstr ""
|
5591 |
|
5593 |
msgid "A redirect is active for this URL. Turn it off to get the Google preview and content analysis."
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: inc/admin/ajax.php:97
|
5597 |
msgid "To get your Google snippet preview, publish your post!"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:51
|
5601 |
+
#, fuzzy
|
5602 |
+
#| msgid "Twitter description"
|
5603 |
+
msgid "SEO Title / Description"
|
5604 |
+
msgstr "Twitter వివరణ"
|
5605 |
+
|
5606 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:73
|
5607 |
+
#, fuzzy
|
5608 |
+
#| msgid "Meta description"
|
5609 |
+
msgid "Meta Description"
|
5610 |
+
msgstr "ఉన్నత స్థాయి వివరణ"
|
5611 |
+
|
5612 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:96
|
5613 |
+
#, fuzzy
|
5614 |
+
#| msgid "Advanced"
|
5615 |
+
msgid "SEO Advanced"
|
5616 |
+
msgstr "ఉన్నతస్థాయి"
|
5617 |
+
|
5618 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:112
|
5619 |
+
msgid "Do not display this page in search engine results / XML - HTML sitemaps (noindex)"
|
5620 |
+
msgstr ""
|
5621 |
+
|
5622 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:123
|
5623 |
+
#, fuzzy
|
5624 |
+
#| msgid "Do not follow links for all pages."
|
5625 |
+
msgid "Do not follow links for this page (nofollow)"
|
5626 |
+
msgstr "అన్ని పేజీల కోసం లింక్లను అనుసరించవద్దు."
|
5627 |
+
|
5628 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:134
|
5629 |
+
#, fuzzy
|
5630 |
+
#| msgid "Do not use Open Directory project metadata for titles or excerpts for all pages."
|
5631 |
+
msgid "Do not use Open Directory project metadata for titles or excerpts for this page (noodp)"
|
5632 |
+
msgstr "అన్ని పేజీలకు శీర్షికలు లేదా సారాంశాలు కోసం ఓపెన్ డైరెక్టరీ ప్రాజెక్ట్ meta సమాచారం ఉపయోగించవద్దు."
|
5633 |
+
|
5634 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:145
|
5635 |
+
#, fuzzy
|
5636 |
+
#| msgid "Do not index images from the entire site."
|
5637 |
+
msgid "Do not index images for this page (noimageindex)"
|
5638 |
+
msgstr "మొత్తం సైట్ నుండి చిత్రాలను ఇండెక్స్ చేయవద్దు."
|
5639 |
+
|
5640 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:156
|
5641 |
+
#, fuzzy
|
5642 |
+
#| msgid "Do not display a \"Cached\" link in the Google search results."
|
5643 |
+
msgid "Do not display a \"Cached\" link in the Google search results (noarchive)"
|
5644 |
+
msgstr "Google శోధన ఫలితాల్లో \"Cached\" లింక్ను ప్రదర్శించవద్దు."
|
5645 |
+
|
5646 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:167
|
5647 |
+
#, fuzzy
|
5648 |
+
#| msgid "Do not display a description in the Google search results for all pages."
|
5649 |
+
msgid "Do not display a description in search results for this page (nosnippet)"
|
5650 |
+
msgstr "Google శోధన ఫలితాల్లో అన్ని పేజీల యొక్క వివరణని ప్రదర్శించవద్దు."
|
5651 |
+
|
5652 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:201
|
5653 |
+
#, fuzzy
|
5654 |
+
#| msgid "Social"
|
5655 |
+
msgid "SEO Social"
|
5656 |
+
msgstr "సాంఘికమైన"
|
5657 |
+
|
5658 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:329
|
5659 |
+
#, fuzzy
|
5660 |
+
#| msgid "Redirection"
|
5661 |
+
msgid "SEO Redirection"
|
5662 |
+
msgstr "Redirection (మళ్లింపు)"
|
5663 |
+
|
5664 |
+
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:393
|
5665 |
+
msgid "SEO Content Analysis"
|
5666 |
+
msgstr ""
|
5667 |
+
|
5668 |
+
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:49
|
5669 |
+
msgid "By"
|
5670 |
+
msgstr ""
|
5671 |
+
|
5672 |
+
#: inc/functions/options-advanced-admin.php:27
|
5673 |
msgid "Need help?"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: inc/functions/options-advanced-admin.php:40 inc/functions/options-advanced-admin.php:50
|
5677 |
msgid "WARNING"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: inc/functions/options-advanced-admin.php:41
|
5681 |
msgid ""
|
5682 |
"Do NOT change your permalink structure on a production site. Changing URLs can severely damage your SEO."
|
5683 |
msgstr ""
|
5684 |
|
5685 |
+
#: inc/functions/options-advanced-admin.php:51
|
5686 |
msgid ""
|
5687 |
"URL rewriting is NOT enabled on your site. Select a permalink structure that is optimized for SEO (NOT "
|
5688 |
"Plain)."
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: inc/functions/options-advanced-admin.php:393 inc/functions/options-advanced-admin.php:965
|
5692 |
msgid "Title tag"
|
5693 |
msgstr "శీర్షిక ట్యాగ్"
|
5694 |
|
5695 |
+
#: inc/functions/options-advanced-admin.php:396
|
5696 |
msgid "Meta Desc."
|
5697 |
msgstr "మెటా DESC."
|
5698 |
|
5699 |
+
#: inc/functions/options-advanced-admin.php:399
|
5700 |
#, fuzzy
|
5701 |
#| msgid "Redirection"
|
5702 |
msgid "Redirect?"
|
5703 |
msgstr "Redirection (మళ్లింపు)"
|
5704 |
|
5705 |
+
#: inc/functions/options-advanced-admin.php:405 inc/functions/options-advanced-admin.php:989
|
5706 |
#, fuzzy
|
5707 |
#| msgid "Canonical URL"
|
5708 |
msgid "Canonical"
|
5709 |
msgstr "Canonical URL"
|
5710 |
|
5711 |
+
#: inc/functions/options-advanced-admin.php:408
|
5712 |
msgid "Target Kw"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: inc/functions/options-advanced-admin.php:411
|
5716 |
msgid "Noindex?"
|
5717 |
msgstr "Noindex?"
|
5718 |
|
5719 |
+
#: inc/functions/options-advanced-admin.php:414
|
5720 |
msgid "Nofollow?"
|
5721 |
msgstr "Nofollow?"
|
5722 |
|
5723 |
+
#: inc/functions/options-advanced-admin.php:417
|
5724 |
msgid "Score"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: inc/functions/options-advanced-admin.php:420
|
5728 |
msgid "Words"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: inc/functions/options-advanced-admin.php:423
|
5732 |
msgid "W3C check"
|
5733 |
msgstr "W3C చెక్"
|
5734 |
|
5735 |
+
#: inc/functions/options-advanced-admin.php:426
|
5736 |
msgid "Page Speed"
|
5737 |
msgstr "పేజీ వేగం"
|
5738 |
|
5739 |
+
#: inc/functions/options-advanced-admin.php:482
|
5740 |
msgid "Check code quality of this page"
|
5741 |
msgstr "ఈ పేజీ యొక్క కోడ్ నాణ్యత తనిఖీ చేయండి"
|
5742 |
|
5743 |
+
#: inc/functions/options-advanced-admin.php:486
|
5744 |
#, fuzzy
|
5745 |
#| msgid "Analyse this page with Google Page Speed"
|
5746 |
msgid "Analyze this page with Google Page Speed"
|
5747 |
msgstr "ఈ పేజీని Google Page Speed తో విశ్లేషించండి"
|
5748 |
|
5749 |
+
#: inc/functions/options-advanced-admin.php:545
|
5750 |
+
msgid "Insights from these keywords:"
|
5751 |
+
msgstr ""
|
5752 |
+
|
5753 |
+
#: inc/functions/options-advanced-admin.php:551
|
5754 |
+
msgid "Average position: "
|
5755 |
+
msgstr ""
|
5756 |
+
|
5757 |
+
#: inc/functions/options-advanced-admin.php:577
|
5758 |
+
msgid "Latest position: "
|
5759 |
+
msgstr ""
|
5760 |
+
|
5761 |
+
#: inc/functions/options-advanced-admin.php:669
|
5762 |
msgid "Enable noindex"
|
5763 |
msgstr "Noindex ని ప్రారంభించండి"
|
5764 |
|
5765 |
+
#: inc/functions/options-advanced-admin.php:722
|
5766 |
msgid "Enable index"
|
5767 |
msgstr "సూచికను ప్రారంభించు"
|
5768 |
|
5769 |
+
#: inc/functions/options-advanced-admin.php:775
|
5770 |
msgid "Enable nofollow"
|
5771 |
msgstr "నోఫాల్లోని ప్రారంభించండి"
|
5772 |
|
5773 |
+
#: inc/functions/options-advanced-admin.php:827
|
5774 |
msgid "Enable follow"
|
5775 |
msgstr "అనుసరించు ప్రారంభించు"
|
5776 |
|
5777 |
+
#: inc/functions/options-advanced-admin.php:874
|
5778 |
#, fuzzy
|
5779 |
#| msgid "Enable redirection?"
|
5780 |
msgid "Enable redirection"
|
5781 |
msgstr "Enable redirection? (మళ్లింపును ప్రారంభించాలా?)"
|
5782 |
|
5783 |
+
#: inc/functions/options-advanced-admin.php:913
|
5784 |
#, fuzzy
|
5785 |
#| msgid "Enable redirection?"
|
5786 |
msgid "Disable redirection"
|
5787 |
msgstr "Enable redirection? (మళ్లింపును ప్రారంభించాలా?)"
|
5788 |
|
5789 |
+
#: inc/functions/options-advanced-admin.php:1093
|
5790 |
#, fuzzy
|
5791 |
#| msgid "Tag Description"
|
5792 |
msgid "Description"
|
5793 |
msgstr "ట్యాగ్ వివరణ"
|
5794 |
|
5795 |
+
#: inc/functions/options-advanced-admin.php:1102
|
5796 |
msgid "The description is not prominent by default; however, some themes may show it."
|
5797 |
msgstr ""
|
5798 |
|
5810 |
msgid "X"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
+
#: inc/functions/options-google-analytics.php:682 inc/functions/options-matomo.php:205
|
5814 |
#, fuzzy
|
5815 |
#| msgid "Track Authors"
|
5816 |
msgid "Authors"
|
5817 |
msgstr "Track Authors"
|
5818 |
|
5819 |
+
#: inc/functions/options-google-analytics.php:701 inc/functions/options-matomo.php:219
|
5820 |
#, fuzzy
|
5821 |
#| msgid "Track Categories"
|
5822 |
msgid "Categories"
|
5823 |
msgstr "Track Categories"
|
5824 |
|
5825 |
+
#: inc/functions/options-google-analytics.php:727 inc/functions/options-matomo.php:239
|
5826 |
msgid "Tags"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: inc/functions/options-google-analytics.php:741 inc/functions/options-matomo.php:248
|
5830 |
#, fuzzy
|
5831 |
#| msgid "Post Types"
|
5832 |
msgid "Post types"
|
5833 |
msgstr "పోస్ట్ రకాలు"
|
5834 |
|
5835 |
+
#: inc/functions/options-google-analytics.php:755 inc/functions/options-matomo.php:257
|
5836 |
msgid "Connected users"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
+
#: inc/functions/options-import-export.php:58 inc/functions/options-import-export.php:413
|
5840 |
msgid "Please upload a valid .json file"
|
5841 |
msgstr "దయచేసి ఒక చెల్లుబాటు అయ్యే .json ఫైల్ను అప్లోడ్ చేయండి"
|
5842 |
|
5843 |
#: inc/functions/options-import-export.php:63 inc/functions/options-import-export.php:132
|
5844 |
+
#: inc/functions/options-import-export.php:224 inc/functions/options-import-export.php:417
|
5845 |
+
#: inc/functions/options-import-export.php:483
|
5846 |
msgid "Please upload a file to import"
|
5847 |
msgstr "దయచేసి దిగుమతి చేయడానికి ఒక ఫైల్ను అప్లోడ్ చేయండి"
|
5848 |
|
5849 |
+
#: inc/functions/options-import-export.php:128 inc/functions/options-import-export.php:220
|
5850 |
msgid "Please upload a valid .csv file"
|
5851 |
msgstr "దయచేసి చెల్లుబాటు అయ్యే ఒక .csv ఫైల్ను అప్లోడ్ చేయండి"
|
5852 |
|
5853 |
+
#: inc/functions/options-import-export.php:136
|
5854 |
+
msgid "Please choose a separator"
|
5855 |
+
msgstr ""
|
5856 |
+
|
5857 |
+
#: inc/functions/options-import-export.php:145
|
5858 |
+
msgid "Invalid separator"
|
5859 |
+
msgstr ""
|
5860 |
+
|
5861 |
+
#: inc/functions/options-import-export.php:479
|
5862 |
#, fuzzy
|
5863 |
#| msgid "Please upload a valid .csv file"
|
5864 |
msgid "Please upload a valid .txt file"
|
5865 |
msgstr "దయచేసి చెల్లుబాటు అయ్యే ఒక .csv ఫైల్ను అప్లోడ్ చేయండి"
|
5866 |
|
5867 |
+
#: inc/functions/sitemap/template-xml-sitemaps-xsl.php:123
|
5868 |
msgid "XML Sitemaps"
|
5869 |
msgstr "XML సైట్ మ్యాప్లు"
|
5870 |
|
5871 |
+
#: inc/functions/sitemap/template-xml-sitemaps-xsl.php:126
|
5872 |
#, php-format
|
5873 |
msgid "This XML Sitemap Index file contains %s sitemaps."
|
5874 |
msgstr ""
|
5875 |
|
5876 |
+
#: inc/functions/sitemap/template-xml-sitemaps-xsl.php:129
|
5877 |
#, php-format
|
5878 |
msgid "This XML Sitemap contains %s URL(s)."
|
5879 |
msgstr ""
|
5880 |
|
5881 |
+
#: inc/functions/sitemap/template-xml-sitemaps-xsl.php:136
|
5882 |
+
#, fuzzy
|
5883 |
+
#| msgid "Post date"
|
5884 |
+
msgid "Last update"
|
5885 |
+
msgstr "పోస్ట్ తేదీ"
|
5886 |
+
|
5887 |
+
#: inc/functions/variables/dynamic-variables.php:66
|
5888 |
#, php-format
|
5889 |
msgid "Page %d of %2$d"
|
5890 |
msgstr ""
|
5891 |
|
5892 |
+
#: seopress.php:148
|
5893 |
msgid "has been successfully updated!"
|
5894 |
msgstr ""
|
5895 |
|
5896 |
+
#: seopress.php:370
|
5897 |
msgid "You like SEOPress? Don't forget to rate it 5 stars!"
|
5898 |
msgstr "మీరు SEOPress నచ్చిందా? 5 నక్షత్రాలు తో రేటింగ్ ఇవ్వండి!"
|
5899 |
|
5900 |
+
#: seopress.php:431
|
5901 |
msgid "Docs"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
+
#: seopress.php:432
|
5905 |
msgid "Configuration Wizard"
|
5906 |
msgstr ""
|
5907 |
|
5908 |
+
#: seopress.php:434
|
5909 |
msgid "GO PRO!"
|
5910 |
msgstr "GO PRO!"
|
5911 |
|
5912 |
+
#: seopress.php:1221
|
5913 |
+
#, fuzzy
|
5914 |
+
#| msgid "Nofollow?"
|
5915 |
+
msgid "Follow us:"
|
5916 |
+
msgstr "Nofollow?"
|
5917 |
+
|
5918 |
+
#: seopress.php:1228
|
5919 |
+
#, fuzzy
|
5920 |
+
#| msgid "Enter your Facebook title"
|
5921 |
+
msgid "Like our Facebook page"
|
5922 |
+
msgstr "మీ Facebook శీర్షికను నమోదు చేయండి"
|
5923 |
+
|
5924 |
+
#: seopress.php:1240
|
5925 |
+
msgid "Watch our guided tour videos to learn more about SEOPress"
|
5926 |
+
msgstr ""
|
5927 |
+
|
5928 |
+
#: seopress.php:1253
|
5929 |
+
msgid "Read our blog posts about SEO concepts, tutorials and more"
|
5930 |
+
msgstr ""
|
5931 |
+
|
5932 |
+
#: seopress.php:1265
|
5933 |
+
msgid "The off side of SEOPress"
|
5934 |
+
msgstr ""
|
5935 |
+
|
5936 |
+
#~ msgid "Google Analytics"
|
5937 |
+
#~ msgstr "గూగుల్ విశ్లేషణలు"
|
5938 |
+
|
5939 |
+
#~ msgid "Backlinks"
|
5940 |
+
#~ msgstr "బ్యాక్ లింక్"
|
5941 |
+
|
5942 |
+
#~ msgid "Check your backlinks with Majestic API."
|
5943 |
+
#~ msgstr "మెజెస్టిక్ API తో మీ బ్యాక్లింక్లను తనిఖీ చేయండి."
|
5944 |
+
|
5945 |
+
#~ msgid "See backlinks"
|
5946 |
+
#~ msgstr "బ్యాక్ లింక్లను చూడండి"
|
5947 |
+
|
5948 |
+
#~ msgid "See the changelog (new window)"
|
5949 |
+
#~ msgstr "మార్పులు చూడండి (కొత్త విండో)"
|
5950 |
+
|
5951 |
+
#~ msgid "Follow us on Twitter (new window)"
|
5952 |
+
#~ msgstr "ట్విట్టర్ లో మమల్ని అనుసరించండి (కొత్త విండో)"
|
5953 |
+
|
5954 |
+
#, fuzzy
|
5955 |
+
#~| msgid "Follow us on Twitter (new window)"
|
5956 |
+
#~ msgid "Follow us on YouTube (new window)"
|
5957 |
+
#~ msgstr "ట్విట్టర్ లో మమల్ని అనుసరించండి (కొత్త విండో)"
|
5958 |
+
|
5959 |
+
#~ msgid "Official website (new window)"
|
5960 |
+
#~ msgstr "అధికారిక వెబ్సైట్ (కొత్త విండో)"
|
5961 |
+
|
5962 |
+
#~ msgid "Support (new window)"
|
5963 |
+
#~ msgstr "సహాయము (కొత్త విండో)"
|
5964 |
+
|
5965 |
+
#~ msgid "Google Trends"
|
5966 |
+
#~ msgstr "Google ట్రెండ్లు"
|
5967 |
+
|
5968 |
+
#~ msgid "Learn more on Google website"
|
5969 |
+
#~ msgstr "Google వెబ్సైట్లో మరింత తెలుసుకోండి"
|
5970 |
+
|
5971 |
+
#~ msgid "Custom Dimension #2"
|
5972 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #2"
|
5973 |
+
|
5974 |
+
#~ msgid "Custom Dimension #3"
|
5975 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #3"
|
5976 |
+
|
5977 |
+
#~ msgid "Custom Dimension #4"
|
5978 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #4"
|
5979 |
+
|
5980 |
+
#~ msgid "Custom Dimension #5"
|
5981 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #5"
|
5982 |
+
|
5983 |
+
#~ msgid "Custom Dimension #6"
|
5984 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #6"
|
5985 |
+
|
5986 |
+
#~ msgid "Custom Dimension #7"
|
5987 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #7"
|
5988 |
+
|
5989 |
+
#~ msgid "Custom Dimension #8"
|
5990 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #8"
|
5991 |
+
|
5992 |
+
#~ msgid "Custom Dimension #9"
|
5993 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #9"
|
5994 |
+
|
5995 |
+
#~ msgid "Custom Dimension #10"
|
5996 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #10"
|
5997 |
+
|
5998 |
+
#~ msgid "Custom Dimension #11"
|
5999 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #11"
|
6000 |
+
|
6001 |
+
#~ msgid "Custom Dimension #12"
|
6002 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #12"
|
6003 |
+
|
6004 |
+
#~ msgid "Custom Dimension #13"
|
6005 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #13"
|
6006 |
+
|
6007 |
+
#~ msgid "Custom Dimension #14"
|
6008 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #14"
|
6009 |
+
|
6010 |
+
#~ msgid "Custom Dimension #15"
|
6011 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #15"
|
6012 |
+
|
6013 |
+
#~ msgid "Custom Dimension #16"
|
6014 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #16"
|
6015 |
+
|
6016 |
+
#~ msgid "Custom Dimension #17"
|
6017 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #17"
|
6018 |
+
|
6019 |
+
#~ msgid "Custom Dimension #18"
|
6020 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #18"
|
6021 |
+
|
6022 |
+
#~ msgid "Custom Dimension #19"
|
6023 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #19"
|
6024 |
+
|
6025 |
+
#~ msgid "Custom Dimension #20"
|
6026 |
+
#~ msgstr "కస్టమ్ డైమెన్షన్ #20"
|
6027 |
+
|
6028 |
#~ msgid "SEOPress BOT - Broken links"
|
6029 |
#~ msgstr "SEOPress BOT - (బోట్ SEO - బ్రోకెన్ లింకులు)"
|
6030 |
|
@@ -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: 2020-
|
7 |
"PO-Revision-Date: 2019-08-22 12:52+0200\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: Benjamin DENIS <contact@seopress.org>\n"
|
@@ -48,7 +48,7 @@ msgstr ""
|
|
48 |
#: inc/admin/admin-features-list.php:233 inc/admin/admin-features-list.php:252
|
49 |
#: inc/admin/admin-features-list.php:271 inc/admin/admin-features-list.php:290
|
50 |
#: inc/admin/admin-features-list.php:338 inc/admin/admin-features-list.php:356
|
51 |
-
#: inc/admin/admin.php:
|
52 |
msgid "Read our guide"
|
53 |
msgstr ""
|
54 |
|
@@ -56,7 +56,7 @@ msgstr ""
|
|
56 |
msgid "Guide to manage your titles and meta descriptions - new window"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: inc/admin/admin-features-list.php:31 inc/admin/admin.php:
|
60 |
msgid "XML / Image / Video / HTML Sitemap"
|
61 |
msgstr ""
|
62 |
|
@@ -69,7 +69,7 @@ msgid "Guide to enable your XML Sitemaps - new window"
|
|
69 |
msgstr ""
|
70 |
|
71 |
#: inc/admin/admin-features-list.php:47 inc/admin/admin-header.php:57
|
72 |
-
#: inc/admin/admin.php:
|
73 |
msgid "Social Networks"
|
74 |
msgstr ""
|
75 |
|
@@ -82,7 +82,7 @@ msgid "Guide to enable Google Knowledge Graph - new window"
|
|
82 |
msgstr ""
|
83 |
|
84 |
#: inc/admin/admin-features-list.php:63 inc/admin/admin-header.php:63
|
85 |
-
#: inc/admin/admin.php:
|
86 |
msgid "Analytics"
|
87 |
msgstr ""
|
88 |
|
@@ -95,8 +95,8 @@ msgid "Guide to getting started with Google Analytics - new window"
|
|
95 |
msgstr ""
|
96 |
|
97 |
#: inc/admin/admin-features-list.php:79 inc/admin/admin-header.php:69
|
98 |
-
#: inc/admin/admin-metaboxes-form.php:60 inc/admin/admin.php:
|
99 |
-
#: inc/admin/admin.php:
|
100 |
msgid "Advanced"
|
101 |
msgstr ""
|
102 |
|
@@ -105,7 +105,7 @@ msgid "Advanced SEO options for advanced users!"
|
|
105 |
msgstr ""
|
106 |
|
107 |
#: inc/admin/admin-features-list.php:90 inc/admin/admin-header.php:25
|
108 |
-
#: inc/admin/admin-header.php:77 inc/admin/adminbar.php:
|
109 |
#: inc/functions/options-advanced-admin.php:429
|
110 |
msgid "Insights"
|
111 |
msgstr ""
|
@@ -220,7 +220,7 @@ msgstr ""
|
|
220 |
msgid "Guide to create your xml news sitemap - new window"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: inc/admin/admin-features-list.php:241 inc/admin/adminbar.php:
|
224 |
msgid "Schemas"
|
225 |
msgstr ""
|
226 |
|
@@ -229,7 +229,7 @@ msgid "Create / manage your schemas"
|
|
229 |
msgstr ""
|
230 |
|
231 |
#: inc/admin/admin-features-list.php:260 inc/admin/admin-header.php:142
|
232 |
-
#: inc/admin/admin.php:
|
233 |
msgid "Redirections"
|
234 |
msgstr ""
|
235 |
|
@@ -290,7 +290,7 @@ msgid "Configure default WordPress RSS."
|
|
290 |
msgstr ""
|
291 |
|
292 |
#: inc/admin/admin-features-list.php:330 inc/admin/admin-header.php:187
|
293 |
-
#: inc/admin/admin.php:
|
294 |
msgid "Tools"
|
295 |
msgstr ""
|
296 |
|
@@ -303,7 +303,7 @@ msgid "Guide to Export/Import/Reset settings - new window"
|
|
303 |
msgstr ""
|
304 |
|
305 |
#: inc/admin/admin-features-list.php:348 inc/admin/admin-header.php:180
|
306 |
-
#: inc/admin/admin-notifications-center.php:
|
307 |
msgid "License"
|
308 |
msgstr ""
|
309 |
|
@@ -355,8 +355,8 @@ msgstr ""
|
|
355 |
msgid "SEOPress"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: inc/admin/admin-header.php:31 inc/admin/admin-notifications-center.php:
|
359 |
-
#: inc/admin/adminbar.php:
|
360 |
msgid "PRO"
|
361 |
msgstr ""
|
362 |
|
@@ -364,13 +364,13 @@ msgstr ""
|
|
364 |
msgid "FREE"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: inc/admin/admin-header.php:45 inc/admin/admin.php:
|
368 |
-
#: inc/admin/adminbar.php:
|
369 |
msgid "Titles & Metas"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: inc/admin/admin-header.php:51 inc/admin/admin.php:
|
373 |
-
#: inc/admin/adminbar.php:
|
374 |
msgid "XML / HTML Sitemap"
|
375 |
msgstr ""
|
376 |
|
@@ -390,11 +390,11 @@ msgstr ""
|
|
390 |
msgid "Send feedback"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: inc/admin/admin-header.php:219 seopress.php:
|
394 |
msgid "Join our Facebook Community group"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: inc/admin/admin-header.php:223 seopress.php:
|
398 |
msgid "Follow us on Twitter"
|
399 |
msgstr ""
|
400 |
|
@@ -482,8 +482,8 @@ msgid "Get suggestions!"
|
|
482 |
msgstr ""
|
483 |
|
484 |
#: inc/admin/admin-metaboxes-form.php:50 inc/admin/admin-metaboxes.php:163
|
485 |
-
#: inc/admin/admin-metaboxes.php:166 inc/admin/admin.php:
|
486 |
-
#: inc/admin/adminbar.php:
|
487 |
msgid "SEO"
|
488 |
msgstr ""
|
489 |
|
@@ -549,27 +549,27 @@ msgstr ""
|
|
549 |
msgid " (maximum recommended limit)"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: inc/admin/admin-metaboxes-form.php:124 inc/admin/admin.php:
|
553 |
msgid "Term Title"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: inc/admin/admin-metaboxes-form.php:126 inc/admin/admin.php:
|
557 |
-
#: inc/admin/admin.php:
|
558 |
msgid "Post Title"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: inc/admin/admin-metaboxes-form.php:128 inc/admin/admin.php:
|
562 |
-
#: inc/admin/admin.php:
|
563 |
-
#: inc/admin/admin.php:
|
564 |
-
#: inc/admin/admin.php:
|
565 |
msgid "Site Title"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/admin/admin-metaboxes-form.php:130 inc/admin/admin-wizard.php:
|
569 |
-
#: inc/admin/admin.php:
|
570 |
-
#: inc/admin/admin.php:
|
571 |
-
#: inc/admin/admin.php:
|
572 |
-
#: inc/admin/admin.php:
|
573 |
msgid "Separator"
|
574 |
msgstr ""
|
575 |
|
@@ -577,14 +577,15 @@ msgstr ""
|
|
577 |
#: inc/admin/admin-metaboxes-form.php:136
|
578 |
#: inc/admin/admin-metaboxes-form.php:138
|
579 |
#: inc/admin/admin-metaboxes-get-content-analysis.php:42
|
580 |
-
#: inc/admin/admin-wizard.php:
|
581 |
-
#: inc/admin/admin-wizard.php:
|
582 |
-
#: inc/admin/admin-wizard.php:
|
583 |
-
#: inc/admin/admin-wizard.php:
|
584 |
-
#: inc/admin/admin.php:
|
585 |
-
#: inc/admin/admin.php:
|
586 |
-
#: inc/admin/admin.php:
|
587 |
-
#: inc/admin/admin.php:
|
|
|
588 |
msgid "Meta description"
|
589 |
msgstr ""
|
590 |
|
@@ -744,11 +745,12 @@ msgstr ""
|
|
744 |
|
745 |
#: inc/admin/admin-metaboxes-form.php:262
|
746 |
#: inc/admin/admin-metaboxes-form.php:263
|
747 |
-
#: inc/admin/admin-metaboxes-form.php:266 inc/admin/admin-wizard.php:
|
748 |
-
#: inc/admin/admin-wizard.php:
|
749 |
-
#: inc/admin/admin-wizard.php:
|
750 |
-
#: inc/admin/admin.php:
|
751 |
-
#: inc/admin/admin.php:
|
|
|
752 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:178
|
753 |
msgid "Canonical URL"
|
754 |
msgstr ""
|
@@ -779,8 +781,8 @@ msgid ""
|
|
779 |
"multiple categories."
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: inc/admin/admin-metaboxes-form.php:284 inc/admin/admin-wizard.php:
|
783 |
-
#: inc/admin/admin.php:
|
784 |
msgid "None (will disable this feature)"
|
785 |
msgstr ""
|
786 |
|
@@ -836,12 +838,12 @@ msgid "Facebook Thumbnail"
|
|
836 |
msgstr ""
|
837 |
|
838 |
#: inc/admin/admin-metaboxes-form.php:321
|
839 |
-
#: inc/admin/admin-metaboxes-form.php:384 inc/admin/admin.php:
|
840 |
-
#: inc/admin/admin.php:
|
841 |
msgid "Select your default thumbnail"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: inc/admin/admin-metaboxes-form.php:322 inc/admin/admin.php:
|
845 |
msgid ""
|
846 |
"Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or "
|
847 |
"3280x1712px for retina screens)"
|
@@ -849,8 +851,8 @@ msgstr ""
|
|
849 |
|
850 |
#: inc/admin/admin-metaboxes-form.php:323
|
851 |
#: inc/admin/admin-metaboxes-form.php:386
|
852 |
-
#: inc/admin/admin-metaboxes-form.php:573 inc/admin/admin.php:
|
853 |
-
#: inc/admin/admin.php:
|
854 |
msgid "Upload an Image"
|
855 |
msgstr ""
|
856 |
|
@@ -936,7 +938,7 @@ msgstr ""
|
|
936 |
msgid "Twitter Thumbnail"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: inc/admin/admin-metaboxes-form.php:385 inc/admin/admin.php:
|
940 |
msgid ""
|
941 |
"Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 "
|
942 |
"(2:1 with large card), 5Mb max."
|
@@ -1806,154 +1808,207 @@ msgid ""
|
|
1806 |
"Track your keywords positions and backlinks directly on your WordPress site."
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: inc/admin/admin-notifications-center.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1810 |
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: inc/admin/admin-notifications-center.php:
|
1814 |
msgid ""
|
1815 |
"This error indicates that your theme uses a deprecated function to generate "
|
1816 |
"the title tag of your pages. SEOPress will not be able to generate your "
|
1817 |
"custom title tags if this error is not fixed."
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: inc/admin/admin-notifications-center.php:
|
1821 |
-
#: inc/admin/admin-notifications-center.php:
|
1822 |
-
#: inc/admin/admin-notifications-center.php:
|
1823 |
-
#: inc/admin/admin-notifications-center.php:
|
1824 |
-
#: inc/admin/admin-notifications-center.php:
|
1825 |
-
#: inc/admin/admin
|
1826 |
-
#: inc/admin/admin
|
1827 |
-
#: inc/admin/admin-notifications-center.php:519
|
1828 |
-
#: inc/admin/admin-notifications-center.php:595
|
1829 |
-
#: inc/admin/admin-notifications-center.php:632
|
1830 |
-
#: inc/admin/admin-notifications-center.php:650
|
1831 |
-
msgid "High impact"
|
1832 |
-
msgstr ""
|
1833 |
-
|
1834 |
-
#: inc/admin/admin-notifications-center.php:164
|
1835 |
-
#: inc/admin/admin-notifications-center.php:244
|
1836 |
-
#: inc/admin/admin-notifications-center.php:283
|
1837 |
-
#: inc/admin/admin-notifications-center.php:345
|
1838 |
-
#: inc/admin/admin-notifications-center.php:371 inc/admin/admin.php:4940
|
1839 |
-
#: inc/admin/admin.php:4980 inc/admin/admin.php:5007 inc/admin/admin.php:5029
|
1840 |
-
#: inc/admin/admin.php:5051 inc/admin/admin.php:5073
|
1841 |
msgid "Learn more"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: inc/admin/admin-notifications-center.php:
|
1845 |
#, php-format
|
1846 |
msgid "We noticed that you use <strong>%s</strong> plugin."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: inc/admin/admin-notifications-center.php:
|
1850 |
msgid ""
|
1851 |
"Do you want to migrate all your metadata to SEOPress? Do not use multiple "
|
1852 |
"SEO plugins at once to avoid conflicts!"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: inc/admin/admin-notifications-center.php:
|
1856 |
msgid "Migrate!"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: inc/admin/admin-notifications-center.php:
|
1860 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: inc/admin/admin-notifications-center.php:
|
1864 |
msgid ""
|
1865 |
"To solve this, please disable and re-enable SEOPress PRO. No data will be "
|
1866 |
"lost."
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: inc/admin/admin-notifications-center.php:
|
1870 |
#, php-format
|
1871 |
msgid "Generate automatic meta description for <strong>%s</strong> plugin."
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: inc/admin/admin-notifications-center.php:
|
1875 |
msgid ""
|
1876 |
"Your page builder is using shortcodes to save its data. To automatically "
|
1877 |
"generate your meta description based on your post content, you will have to "
|
1878 |
"add some hooks to your functions.php."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: inc/admin/admin-notifications-center.php:
|
1882 |
-
#: inc/admin/admin-notifications-center.php:
|
1883 |
-
#: inc/admin/admin-notifications-center.php:
|
1884 |
-
#: inc/admin/admin-notifications-center.php:
|
1885 |
-
#: inc/admin/admin-notifications-center.php:
|
1886 |
msgid "Medium impact"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: inc/admin/admin-notifications-center.php:
|
1890 |
#, php-format
|
1891 |
msgid "Generate automatic meta description for <strong>%s</strong> theme."
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: inc/admin/admin-notifications-center.php:
|
1895 |
msgid ""
|
1896 |
"Your theme is using shortcodes to save its data. To automatically generate "
|
1897 |
"your meta description based on your post content, you will have to add some "
|
1898 |
"hooks to your functions.php."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: inc/admin/admin-notifications-center.php:
|
1902 |
msgid "Enfold theme is not correctly setup for SEO!"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: inc/admin/admin-notifications-center.php:
|
1906 |
msgid ""
|
1907 |
"You must disable \"Meta tag robots\" option from Enfold settings (SEO "
|
1908 |
"Support tab) to avoid any SEO issues."
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: inc/admin/admin-notifications-center.php:
|
1912 |
-
#: inc/admin/admin-notifications-center.php:400
|
1913 |
-
#: inc/admin/admin-notifications-center.php:418
|
1914 |
-
#: inc/admin/admin-notifications-center.php:435
|
1915 |
-
#: inc/admin/admin-notifications-center.php:464
|
1916 |
-
#: inc/admin/admin-notifications-center.php:553
|
1917 |
-
#: inc/admin/admin-notifications-center.php:571
|
1918 |
-
#: inc/admin/admin-notifications-center.php:654
|
1919 |
-
#: inc/admin/admin-notifications-center.php:673
|
1920 |
-
msgid "Fix this!"
|
1921 |
-
msgstr ""
|
1922 |
-
|
1923 |
-
#: inc/admin/admin-notifications-center.php:344
|
1924 |
msgid "Your site doesn't use an SSL certificate!"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: inc/admin/admin-notifications-center.php:
|
1928 |
msgid ""
|
1929 |
"Https is considered by Google as a positive signal for the ranking of your "
|
1930 |
"site. It also reassures your visitors for data security, and improves trust."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: inc/admin/admin-notifications-center.php:
|
1934 |
msgid "Low impact"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: inc/admin/admin-notifications-center.php:
|
1938 |
msgid "Buy an SSL!"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: inc/admin/admin-notifications-center.php:
|
1942 |
msgid "PHP module \"DOM\" is missing on your server."
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: inc/admin/admin-notifications-center.php:
|
1946 |
msgid ""
|
1947 |
"This PHP module, installed by default with PHP, is required by many plugins "
|
1948 |
"including SEOPress. Please contact your host as soon as possible to solve "
|
1949 |
"this."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: inc/admin/admin-notifications-center.php:
|
1953 |
msgid "Your site is not visible to Search Engines!"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: inc/admin/admin-notifications-center.php:
|
1957 |
msgid ""
|
1958 |
"You have activated the blocking of the indexing of your site. If your site "
|
1959 |
"is under development, this is probably normal. Otherwise, check your "
|
@@ -1961,24 +2016,24 @@ msgid ""
|
|
1961 |
"not concerned."
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: inc/admin/admin-notifications-center.php:
|
1965 |
msgid "Your site title is empty!"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: inc/admin/admin-notifications-center.php:
|
1969 |
msgid ""
|
1970 |
"Your Site Title is used by WordPress, your theme and your plugins including "
|
1971 |
"SEOPress. It is an essential component in the generation of title tags, but "
|
1972 |
"not only. Enter one!"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: inc/admin/admin-notifications-center.php:
|
1976 |
msgid ""
|
1977 |
"Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: inc/admin/admin-notifications-center.php:
|
1981 |
-
#: inc/admin/admin-notifications-center.php:
|
1982 |
msgid ""
|
1983 |
"Why is this important? Showing only the summary of each article "
|
1984 |
"significantly reduces the theft of your content by third party sites. Not to "
|
@@ -1986,34 +2041,34 @@ msgid ""
|
|
1986 |
"conversions..."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: inc/admin/admin-notifications-center.php:
|
1990 |
msgid "Your RSS feed shows full text!"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: inc/admin/admin-notifications-center.php:
|
1994 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: inc/admin/admin-notifications-center.php:
|
1998 |
msgid ""
|
1999 |
"Support the development and improvement of the plugin by taking 15 seconds "
|
2000 |
"of your time to leave us a user review on the official WordPress plugins "
|
2001 |
"repository. Thank you!"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: inc/admin/admin-notifications-center.php:
|
2005 |
msgid "Information"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: inc/admin/admin-notifications-center.php:
|
2009 |
msgid "Rate us!"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: inc/admin/admin-notifications-center.php:
|
2013 |
msgid "Break comments into pages is ON!"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: inc/admin/admin-notifications-center.php:
|
2017 |
msgid ""
|
2018 |
"Enabling this option will create duplicate content for each article beyond x "
|
2019 |
"comments. This can have a disastrous effect by creating a large number of "
|
@@ -2021,15 +2076,15 @@ msgid ""
|
|
2021 |
"ranking in search results."
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: inc/admin/admin-notifications-center.php:
|
2025 |
msgid "Disable this!"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: inc/admin/admin-notifications-center.php:
|
2029 |
msgid "Display more posts per page on homepage and archives"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: inc/admin/admin-notifications-center.php:
|
2033 |
msgid ""
|
2034 |
"To reduce the number pages search engines have to crawl to find all your "
|
2035 |
"articles, it is recommended displaying more posts per page. This should not "
|
@@ -2037,73 +2092,73 @@ msgid ""
|
|
2037 |
"than clicking on next page links."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: inc/admin/admin-notifications-center.php:
|
2041 |
msgid "You don't have an XML Sitemap!"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: inc/admin/admin-notifications-center.php:
|
2045 |
msgid ""
|
2046 |
"XML Sitemaps are useful to facilitate the crawling of your content by search "
|
2047 |
"engine robots. Indirectly, this can benefit your ranking by reducing the "
|
2048 |
"crawl bugdet."
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: inc/admin/admin-notifications-center.php:
|
2052 |
msgid "Do you have a Google My Business page? It's free!"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: inc/admin/admin-notifications-center.php:
|
2056 |
msgid ""
|
2057 |
"Local Business websites should have a My Business page to improve visibility "
|
2058 |
"in search results. Click on the cross on the right to delete this "
|
2059 |
"notification if you are not concerned."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: inc/admin/admin-notifications-center.php:
|
2063 |
msgid "Create your page now!"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: inc/admin/admin-notifications-center.php:
|
2067 |
msgid "Add your site to Google. It's free!"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: inc/admin/admin-notifications-center.php:
|
2071 |
msgid ""
|
2072 |
"Is your brand new site online? So reference it as quickly as possible on "
|
2073 |
"Google to get your first visitors via Google Search Console. Already the "
|
2074 |
"case? Click on the cross on the right to remove this alert."
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: inc/admin/admin-notifications-center.php:
|
2078 |
msgid "Add your site to Search Console!"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: inc/admin/admin-notifications-center.php:
|
2082 |
msgid "Structured data types is not correctly enabled"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: inc/admin/admin-notifications-center.php:
|
2086 |
msgid ""
|
2087 |
"Please enable <strong>Structured Data Types metabox for your posts, pages "
|
2088 |
"and custom post types</strong> option in order to use automatic and manual "
|
2089 |
"schemas. (SEO > PRO > Structured Data Types (schema.org)"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: inc/admin/admin-notifications-center.php:
|
2093 |
msgid "You have to enter your licence key to get updates and support"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: inc/admin/admin-notifications-center.php:
|
2097 |
msgid ""
|
2098 |
"Please activate the SEOPress PRO license key to automatically receive "
|
2099 |
"updates to guarantee you the best user experience possible."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: inc/admin/admin-notifications-center.php:
|
2103 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: inc/admin/admin-notifications-center.php:
|
2107 |
msgid ""
|
2108 |
"The PRO version of SEOPress allows you to easily manage your structured data "
|
2109 |
"(schemas), add a breadcrumb optimized for SEO and accessibility, improve SEO "
|
@@ -2111,1260 +2166,1295 @@ msgid ""
|
|
2111 |
"of your metadata and so much more."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: inc/admin/admin-notifications-center.php:
|
2115 |
msgid "Upgrade now!"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: inc/admin/admin-notifications-center.php:
|
2119 |
msgid "Check websites setup on your server"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: inc/admin/admin-notifications-center.php:
|
2123 |
msgid "Not found"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: inc/admin/admin-notifications-center.php:
|
2127 |
msgid "No scrape."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: inc/admin/admin-notifications-center.php:
|
2131 |
msgid "No domain found."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: inc/admin/admin-notifications-center.php:
|
2135 |
msgid "Server IP Address: "
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: inc/admin/admin-notifications-center.php:
|
2139 |
msgid "Last scrape: "
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: inc/admin/admin-notifications-center.php:
|
2143 |
msgid "Number of websites on your server: "
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: inc/admin/admin-notifications-center.php:
|
2147 |
msgid "Get list"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: inc/admin/admin-notifications-center.php:
|
2151 |
msgid "Our blog: SEO news, how-to, tips and tricks..."
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: inc/admin/admin-notifications-center.php:
|
2155 |
msgid "Upload a list of links to disavow to Google"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: inc/admin/admin-notifications-center.php:
|
2159 |
msgid ""
|
2160 |
"Image SEO plugin to optimize your image ALT texts and names for Search "
|
2161 |
"Engines."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: inc/admin/admin-notifications-center.php:
|
2165 |
msgid "Dareboost: Test, analyze and optimize your website"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: inc/admin/admin-notifications-center.php:
|
2169 |
msgid "Google Campaign URL Builder tool"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: inc/admin/admin-wizard.php:
|
2173 |
msgid "Migration completed!"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: inc/admin/admin-wizard.php:
|
2177 |
msgid "Export completed!"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: inc/admin/admin-wizard.php:
|
2181 |
msgid "Import SEO settings"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: inc/admin/admin-wizard.php:
|
2185 |
msgid "Your site"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: inc/admin/admin-wizard.php:
|
2189 |
msgid "Indexing"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: inc/admin/admin-wizard.php:
|
2193 |
msgid "Advanced options"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: inc/admin/admin-wizard.php:
|
2197 |
msgid "Ready!"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: inc/admin/admin-wizard.php:
|
2201 |
msgid "SEOPress › Setup Wizard"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: inc/admin/admin-wizard.php:
|
2205 |
msgid "Not right now"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: inc/admin/admin-wizard.php:
|
2209 |
msgid "Skip this step"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: inc/admin/admin-wizard.php:
|
2213 |
msgid "Welcome!"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: inc/admin/admin-wizard.php:
|
2217 |
msgid ""
|
2218 |
"The following wizard will help you configure SEOPress and get you started "
|
2219 |
"quickly."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: inc/admin/admin-wizard.php:
|
2223 |
msgid ""
|
2224 |
"The first step is to import your previous settings from other plugins to "
|
2225 |
"keep your SEO."
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: inc/admin/admin-wizard.php:
|
2229 |
msgid "No data to migrate? Click \"Next step\" button!"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: inc/admin/admin-wizard.php:
|
2233 |
msgid "Import posts and terms metadata from"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: inc/admin/admin-wizard.php:
|
2237 |
-
#: inc/admin/admin.php:
|
2238 |
msgid "Select an option"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: inc/admin/admin-wizard.php:
|
2242 |
msgid "Yoast SEO"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: inc/admin/admin-wizard.php:
|
2246 |
msgid "All In One SEO"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: inc/admin/admin-wizard.php:
|
2250 |
msgid "The SEO Framework"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: inc/admin/admin-wizard.php:
|
2254 |
msgid "Rank Math"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: inc/admin/admin-wizard.php:
|
2258 |
msgid "Squirrly SEO"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: inc/admin/admin-wizard.php:
|
2262 |
msgid "SEO Ultimate"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: inc/admin/admin-wizard.php:
|
2266 |
msgid "WP Meta SEO"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: inc/admin/admin-wizard.php:
|
2270 |
msgid "Premium SEO Pack"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: inc/admin/admin-wizard.php:
|
|
|
|
|
|
|
|
|
2274 |
msgid "Import posts and terms metadata from Yoast"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: inc/admin/admin-wizard.php:
|
2278 |
-
#: inc/admin/admin-wizard.php:
|
2279 |
-
#: inc/admin/admin-wizard.php:
|
2280 |
-
#: inc/admin/admin-wizard.php:
|
2281 |
-
#: inc/admin/admin.php:
|
2282 |
-
#: inc/admin/admin.php:
|
2283 |
-
#: inc/admin/admin.php:
|
|
|
2284 |
msgid "By clicking Migrate, we'll import:"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: inc/admin/admin-wizard.php:
|
2288 |
-
#: inc/admin/admin-wizard.php:
|
2289 |
-
#: inc/admin/admin-wizard.php:
|
2290 |
-
#: inc/admin/admin-wizard.php:
|
2291 |
-
#: inc/admin/admin.php:
|
2292 |
-
#: inc/admin/admin.php:
|
2293 |
-
#: inc/admin/admin.php:
|
|
|
2294 |
msgid "Title tags"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: inc/admin/admin-wizard.php:
|
2298 |
-
#: inc/admin/admin-wizard.php:
|
2299 |
-
#: inc/admin/admin-wizard.php:
|
2300 |
-
#: inc/admin/admin-wizard.php:
|
2301 |
-
#: inc/admin/admin.php:
|
2302 |
-
#: inc/admin/admin.php:
|
2303 |
-
#: inc/admin/admin.php:
|
|
|
2304 |
msgid "Facebook Open Graph tags (title, description and image thumbnail)"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: inc/admin/admin-wizard.php:
|
2308 |
-
#: inc/admin/admin-wizard.php:
|
2309 |
-
#: inc/admin/admin-wizard.php:
|
2310 |
-
#: inc/admin/admin.php:
|
2311 |
-
#: inc/admin/admin.php:
|
|
|
2312 |
msgid "Twitter tags (title, description and image thumbnail)"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: inc/admin/admin-wizard.php:
|
2316 |
msgid "Meta Robots (noindex, nofollow...)"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: inc/admin/admin-wizard.php:
|
2320 |
-
#: inc/admin/admin-wizard.php:
|
2321 |
-
#: inc/admin/admin.php:
|
2322 |
msgid "Focus keywords"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: inc/admin/admin-wizard.php:
|
2326 |
msgid "Primary category"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: inc/admin/admin-wizard.php:
|
2330 |
msgid ""
|
2331 |
"<strong>WARNING:</strong> Migration will delete / update all SEOPress posts "
|
2332 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
2333 |
"NOT delete any Yoast data."
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: inc/admin/admin-wizard.php:
|
2337 |
-
#: inc/admin/admin-wizard.php:
|
2338 |
-
#: inc/admin/admin-wizard.php:
|
2339 |
-
#: inc/admin/admin-wizard.php:
|
2340 |
-
#: inc/admin/admin.php:
|
2341 |
-
#: inc/admin/admin.php:
|
2342 |
-
#: inc/admin/admin.php:
|
|
|
2343 |
msgid "Migrate now"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: inc/admin/admin-wizard.php:
|
2347 |
msgid "Import posts and terms metadata from All In One SEO"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: inc/admin/admin-wizard.php:
|
2351 |
msgid "Twitter image thumbnail"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: inc/admin/admin-wizard.php:
|
2355 |
-
#: inc/admin/admin.php:
|
|
|
2356 |
msgid "Meta Robots (noindex, nofollow)"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: inc/admin/admin-wizard.php:
|
2360 |
msgid ""
|
2361 |
"<strong>WARNING:</strong> Migration will update/delete all SEOPress posts "
|
2362 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
2363 |
"NOT delete any AIO data."
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: inc/admin/admin-wizard.php:
|
2367 |
msgid "Import posts and terms metadata from The SEO Framework"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: inc/admin/admin-wizard.php:
|
2371 |
msgid "Meta Robots (noindex, nofollow, noarchive)"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: inc/admin/admin-wizard.php:
|
|
|
2375 |
#: inc/functions/options-advanced-admin.php:402
|
2376 |
msgid "Redirect URL"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: inc/admin/admin-wizard.php:
|
2380 |
msgid ""
|
2381 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2382 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
2383 |
"NOT delete any SEO Framework data."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: inc/admin/admin-wizard.php:
|
2387 |
msgid "Import posts and terms metadata from Rank Math"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: inc/admin/admin-wizard.php:
|
2391 |
msgid "Meta Robots (noindex, nofollow, noarchive, noimageindex)"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: inc/admin/admin-wizard.php:
|
2395 |
msgid ""
|
2396 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2397 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
2398 |
"NOT delete any Rank Math data."
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: inc/admin/admin-wizard.php:
|
2402 |
msgid "Import posts metadata from Squirrly SEO"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: inc/admin/admin-wizard.php:
|
2406 |
-
#: inc/admin/admin.php:
|
2407 |
msgid "Meta Robots (noindex or nofollow)"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: inc/admin/admin-wizard.php:
|
2411 |
msgid ""
|
2412 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2413 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
2414 |
"any Squirrly SEO data."
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: inc/admin/admin-wizard.php:
|
2418 |
msgid "Import posts metadata from SEO Ultimate"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: inc/admin/admin-wizard.php:
|
2422 |
msgid ""
|
2423 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2424 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
2425 |
"any SEO Ultimate data."
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: inc/admin/admin-wizard.php:
|
2429 |
msgid "Import posts and terms metadata from WP Meta SEO"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: inc/admin/admin-wizard.php:
|
2433 |
msgid ""
|
2434 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2435 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
2436 |
"any WP Meta SEO data."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: inc/admin/admin-wizard.php:
|
2440 |
msgid "Import posts and terms metadata from Premium SEO Pack"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: inc/admin/admin-wizard.php:
|
2444 |
msgid ""
|
2445 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2446 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
2447 |
"any Premium SEO Pack data."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: inc/admin/admin-wizard.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2451 |
msgid "Next step"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: inc/admin/admin-wizard.php:
|
2455 |
msgid ""
|
2456 |
"To build title tags and knowledge graph for Google, you need to fill out the "
|
2457 |
"fields below to configure the general settings. "
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: inc/admin/admin-wizard.php:
|
2461 |
msgid "eg: |"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: inc/admin/admin-wizard.php:
|
2465 |
-
#: inc/admin/admin.php:
|
2466 |
msgid "Site title"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: inc/admin/admin-wizard.php:
|
2470 |
msgid "eg: My super website"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: inc/admin/admin-wizard.php:
|
2474 |
msgid "Person or organization"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: inc/admin/admin-wizard.php:
|
2478 |
msgid "Choose a knowledge type"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: inc/admin/admin-wizard.php:
|
2482 |
msgid "Person"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: inc/admin/admin-wizard.php:
|
2486 |
msgid "Organization"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: inc/admin/admin-wizard.php:
|
2490 |
-
#: inc/admin/admin.php:
|
2491 |
msgid "Your name/organization"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: inc/admin/admin-wizard.php:
|
2495 |
msgid "eg: My Company Name"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: inc/admin/admin-wizard.php:
|
2499 |
-
#: inc/admin/admin.php:
|
2500 |
msgid "Your photo/organization logo"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: inc/admin/admin-wizard.php:
|
2504 |
msgid "eg: https://www.example.com/logo.png"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: inc/admin/admin-wizard.php:
|
2508 |
msgid "Facebook page URL"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: inc/admin/admin-wizard.php:
|
2512 |
msgid "eg: https://facebook.com/my-page-url"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: inc/admin/admin-wizard.php:
|
2516 |
msgid "Twitter Username"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: inc/admin/admin-wizard.php:
|
2520 |
msgid "eg: @my_twitter_account"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: inc/admin/admin-wizard.php:
|
2524 |
-
#: inc/admin/admin.php:
|
2525 |
msgid "Pinterest URL"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: inc/admin/admin-wizard.php:
|
2529 |
msgid "eg: https://pinterest.com/my-page-url/"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: inc/admin/admin-wizard.php:
|
2533 |
-
#: inc/admin/admin.php:
|
2534 |
msgid "Instagram URL"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: inc/admin/admin-wizard.php:
|
2538 |
msgid "eg: https://www.instagram.com/my-page-url/"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: inc/admin/admin-wizard.php:
|
2542 |
-
#: inc/admin/admin.php:
|
2543 |
msgid "YouTube URL"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: inc/admin/admin-wizard.php:
|
2547 |
msgid "eg: https://www.youtube.com/my-channel-url"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: inc/admin/admin-wizard.php:
|
2551 |
-
#: inc/admin/admin.php:
|
2552 |
msgid "LinkedIn URL"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: inc/admin/admin-wizard.php:
|
2556 |
msgid "eg: http://linkedin.com/company/my-company-url/"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: inc/admin/admin-wizard.php:
|
2560 |
-
#: inc/admin/admin.php:
|
2561 |
msgid "MySpace URL"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: inc/admin/admin-wizard.php:
|
2565 |
msgid "eg: https://myspace.com/my-page-url"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: inc/admin/admin-wizard.php:
|
2569 |
-
#: inc/admin/admin.php:
|
2570 |
msgid "Soundcloud URL"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: inc/admin/admin-wizard.php:
|
2574 |
msgid "eg: https://soundcloud.com/my-page-url"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: inc/admin/admin-wizard.php:
|
2578 |
-
#: inc/admin/admin.php:
|
2579 |
msgid "Tumblr URL"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: inc/admin/admin-wizard.php:
|
2583 |
msgid "eg: https://your-site.tumblr.com"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: inc/admin/admin-wizard.php:
|
2587 |
-
#: inc/admin/admin-wizard.php:
|
2588 |
msgid "Continue"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: inc/admin/admin-wizard.php:
|
2592 |
msgid "Specify to the search engines what you want to be indexed or not."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: inc/admin/admin-wizard.php:
|
2596 |
msgid "Avoid indexing duplicate or poor quality content."
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: inc/admin/admin-wizard.php:
|
2600 |
msgid "Default: index"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: inc/admin/admin-wizard.php:
|
2604 |
msgid "For which single post types, should indexing be disabled?"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: inc/admin/admin-wizard.php:
|
2608 |
msgid ""
|
2609 |
"Do not display this single post type in search engine "
|
2610 |
"results <strong>(noindex)</strong>"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: inc/admin/admin-wizard.php:
|
2614 |
msgid "For which post type archives, should indexing be disabled?"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: inc/admin/admin-wizard.php:
|
2618 |
msgid ""
|
2619 |
"Do not display this post type archive in search engine "
|
2620 |
"results <strong>(noindex)</strong>"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: inc/admin/admin-wizard.php:
|
2624 |
msgid "For which taxonomy archives, should indexing be disabled?"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: inc/admin/admin-wizard.php:
|
2628 |
msgid ""
|
2629 |
"Do not display this taxonomy archive in search engine "
|
2630 |
"results <strong>(noindex)</strong>"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: inc/admin/admin-wizard.php:
|
2634 |
msgid ""
|
2635 |
"Do not display author archives in search engine results <strong>(noindex)</"
|
2636 |
"strong>"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: inc/admin/admin-wizard.php:
|
2640 |
msgid ""
|
2641 |
"You only have one author on your site? Check this option to avoid duplicate "
|
2642 |
"content."
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#: inc/admin/admin-wizard.php:
|
2646 |
msgid ""
|
2647 |
"Redirect attachment pages to their file URL (https://www.example.com/my-"
|
2648 |
"image-file.jpg)"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: inc/admin/admin-wizard.php:
|
2652 |
msgid ""
|
2653 |
"By default, SEOPress redirects your Attachment pages to the parent post. "
|
2654 |
"Optimize this by redirecting the user directly to the URL of the media file."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: inc/admin/admin-wizard.php:
|
2658 |
msgid "Remove /category/ in your permalinks"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: inc/admin/admin-wizard.php:
|
2662 |
msgid "Shorten your URLs by removing /category/ and improve your SEO."
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: inc/admin/admin-wizard.php:
|
2666 |
msgid "Your site is now ready for search engines!"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: inc/admin/admin-wizard.php:
|
2670 |
msgid "Welcome to SEOPress PRO!"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: inc/admin/admin-wizard.php:
|
2674 |
msgid ""
|
2675 |
"Please activate your license to receive automatic updates and get premium "
|
2676 |
"support."
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: inc/admin/admin-wizard.php:
|
2680 |
msgid "Activate License"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
-
#: inc/admin/admin-wizard.php:
|
2684 |
msgid "Go PRO with SEOPress PRO!"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: inc/admin/admin-wizard.php:
|
2688 |
msgid ""
|
2689 |
"When you upgrade to the PRO version, you get a lot of additional features, "
|
2690 |
"like automatic and manual schemas, Video Sitemap, WooCommerce enhancements, "
|
2691 |
"Analytics statistics in your Dashboard, breadcrumbs, redirections, and more."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: inc/admin/admin-wizard.php:
|
2695 |
msgid "Buy SEOPress PRO - $39 / unlimited sites"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: inc/admin/admin-wizard.php:
|
2699 |
msgid "Create your XML sitemaps"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: inc/admin/admin-wizard.php:
|
2703 |
msgid "Build custom XML sitemaps to improve Google's crawling of your site."
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: inc/admin/admin-wizard.php:
|
2707 |
msgid "Configure your XML sitemaps"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: inc/admin/admin-wizard.php:
|
2711 |
msgid "You can also:"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: inc/admin/admin-wizard.php:
|
2715 |
msgid "Visit Dashboard"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: inc/admin/admin-wizard.php:
|
2719 |
msgid "Review Settings"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: inc/admin/admin-wizard.php:
|
2723 |
msgid "Knowledge base"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: inc/admin/admin.php:
|
2727 |
msgid "404 - Page not found"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: inc/admin/admin.php:
|
2731 |
msgid "Dashboard"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: inc/admin/admin.php:
|
2735 |
#, php-format
|
2736 |
msgid "%%sep%%"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: inc/admin/admin.php:
|
2740 |
msgid "Separator (eg: - )"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: inc/admin/admin.php:
|
2744 |
#, php-format
|
2745 |
msgid "%%sitetitle%% (alias: %%sitename%%)"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: inc/admin/admin.php:
|
2749 |
#, php-format
|
2750 |
msgid "%%tagline%% (alias %%sitedesc%%)"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
-
#: inc/admin/admin.php:
|
2754 |
msgid "Tagline"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
-
#: inc/admin/admin.php:
|
2758 |
#, php-format
|
2759 |
msgid "%%post_title%% (alias %%title%%)"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: inc/admin/admin.php:
|
2763 |
msgid "Post Title (post, page, custom post type)"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: inc/admin/admin.php:
|
2767 |
#, php-format
|
2768 |
msgid "%%post_excerpt%% (alias %%excerpt%%)"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#: inc/admin/admin.php:
|
2772 |
msgid "Post excerpt"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: inc/admin/admin.php:
|
2776 |
#, php-format
|
2777 |
msgid "%%post_content%%"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: inc/admin/admin.php:
|
2781 |
msgid "Post content / product long description"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: inc/admin/admin.php:
|
2785 |
#, php-format
|
2786 |
msgid "%%post_thumbnail_url%%"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#: inc/admin/admin.php:
|
2790 |
msgid "Post thumbnail URL"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2794 |
#, php-format
|
2795 |
msgid "%%post_date%% (alias %%date%%)"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: inc/admin/admin.php:
|
2799 |
msgid "Post date"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: inc/admin/admin.php:
|
2803 |
#, php-format
|
2804 |
msgid "%%post_modified_date%%"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: inc/admin/admin.php:
|
2808 |
msgid "Last modified post date"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#: inc/admin/admin.php:
|
2812 |
#, php-format
|
2813 |
msgid "%%post_author%%"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: inc/admin/admin.php:
|
2817 |
msgid "Post author"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: inc/admin/admin.php:
|
2821 |
#, php-format
|
2822 |
msgid "%%post_category%%"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: inc/admin/admin.php:
|
2826 |
msgid "Post category"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
-
#: inc/admin/admin.php:
|
2830 |
#, php-format
|
2831 |
msgid "%%post_tag%%"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: inc/admin/admin.php:
|
2835 |
msgid "Post tag"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: inc/admin/admin.php:
|
2839 |
#, php-format
|
2840 |
msgid "%%_category_title%%"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: inc/admin/admin.php:
|
2844 |
msgid "Category title"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: inc/admin/admin.php:
|
2848 |
#, php-format
|
2849 |
msgid "%%_category_description%%"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: inc/admin/admin.php:
|
2853 |
msgid "Category description"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: inc/admin/admin.php:
|
2857 |
#, php-format
|
2858 |
msgid "%%tag_title%%"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: inc/admin/admin.php:
|
2862 |
msgid "Tag title"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: inc/admin/admin.php:
|
2866 |
#, php-format
|
2867 |
msgid "%%tag_description%%"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: inc/admin/admin.php:
|
2871 |
msgid "Tag description"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: inc/admin/admin.php:
|
2875 |
#, php-format
|
2876 |
msgid "%%term_title%%"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: inc/admin/admin.php:
|
2880 |
msgid "Term title"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: inc/admin/admin.php:
|
2884 |
#, php-format
|
2885 |
msgid "%%term_description%%"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: inc/admin/admin.php:
|
2889 |
msgid "Term description"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: inc/admin/admin.php:
|
2893 |
#, php-format
|
2894 |
msgid "%%search_keywords%%"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: inc/admin/admin.php:
|
2898 |
msgid "Search keywords"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#: inc/admin/admin.php:
|
2902 |
#, php-format
|
2903 |
msgid "%%current_pagination%%"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: inc/admin/admin.php:
|
2907 |
msgid "Current number page"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: inc/admin/admin.php:
|
2911 |
#, php-format
|
2912 |
msgid "%%page%%"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: inc/admin/admin.php:
|
2916 |
msgid "Current page number with context (i.e. page 1 of 3)"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: inc/admin/admin.php:
|
2920 |
#, php-format
|
2921 |
msgid "%%cpt_plural%%"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: inc/admin/admin.php:
|
2925 |
msgid "Plural Post Type Archive name"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: inc/admin/admin.php:
|
2929 |
#, php-format
|
2930 |
msgid "%%archive_title%%"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: inc/admin/admin.php:
|
2934 |
msgid "Archive title"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#: inc/admin/admin.php:
|
2938 |
#, php-format
|
2939 |
msgid "%%archive_date%%"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: inc/admin/admin.php:
|
2943 |
msgid "Date Archive"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: inc/admin/admin.php:
|
2947 |
#, php-format
|
2948 |
msgid "%%archive_date_day%%"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: inc/admin/admin.php:
|
2952 |
msgid "Day Archive date"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#: inc/admin/admin.php:
|
2956 |
#, php-format
|
2957 |
msgid "%%archive_date_month%%"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: inc/admin/admin.php:
|
2961 |
msgid "Month Archive title"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: inc/admin/admin.php:
|
2965 |
#, php-format
|
2966 |
msgid "%%archive_date_year%%"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: inc/admin/admin.php:
|
2970 |
msgid "Year Archive title"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: inc/admin/admin.php:
|
2974 |
#, php-format
|
2975 |
msgid "%%_cf_your_custom_field_name%%"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: inc/admin/admin.php:
|
2979 |
msgid ""
|
2980 |
"Custom fields from post, page or post type (replace <span style=\"color:red;"
|
2981 |
"margin:0\">your_custom_field_name</span> with your custom field name)"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: inc/admin/admin.php:
|
2985 |
#, php-format
|
2986 |
msgid "%%_ct_your_custom_taxonomy_slug%%"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: inc/admin/admin.php:
|
2990 |
msgid ""
|
2991 |
"Custom term taxonomy from post, page or post type (replace <span style="
|
2992 |
"\"color:red;margin:0\">your_custom_taxonomy_slug</span> with your custom "
|
2993 |
"taxonomy slug)"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: inc/admin/admin.php:
|
2997 |
#, php-format
|
2998 |
msgid "%%wc_single_cat%%"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: inc/admin/admin.php:
|
3002 |
msgid "Single product category"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: inc/admin/admin.php:
|
3006 |
#, php-format
|
3007 |
msgid "%%wc_single_tag%%"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: inc/admin/admin.php:
|
3011 |
msgid "Single product tag"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: inc/admin/admin.php:
|
3015 |
#, php-format
|
3016 |
msgid "%%wc_single_short_desc%%"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: inc/admin/admin.php:
|
3020 |
msgid "Single product short description"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
-
#: inc/admin/admin.php:
|
3024 |
#, php-format
|
3025 |
msgid "%%wc_single_price%%"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: inc/admin/admin.php:
|
3029 |
msgid "Single product price"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: inc/admin/admin.php:
|
3033 |
#, php-format
|
3034 |
msgid "%%wc_single_price_exc_tax%%"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: inc/admin/admin.php:
|
3038 |
msgid "Single product price taxes excluded"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: inc/admin/admin.php:
|
3042 |
#, php-format
|
3043 |
msgid "%%wc_sku%%"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: inc/admin/admin.php:
|
3047 |
msgid "Single SKU product"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: inc/admin/admin.php:
|
3051 |
#, php-format
|
3052 |
msgid "%%currentday%%"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
-
#: inc/admin/admin.php:
|
3056 |
msgid "Current day"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#: inc/admin/admin.php:
|
3060 |
#, php-format
|
3061 |
msgid "%%currentmonth%%"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#: inc/admin/admin.php:
|
3065 |
msgid "Current month"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
-
#: inc/admin/admin.php:
|
3069 |
#, php-format
|
3070 |
msgid "%%currentmonth_short%%"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: inc/admin/admin.php:
|
3074 |
msgid "Current month in 3 letters, eg: \"Jan\" for \"January\""
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: inc/admin/admin.php:
|
3078 |
#, php-format
|
3079 |
msgid "%%currentyear%%"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: inc/admin/admin.php:
|
3083 |
msgid "Current year"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: inc/admin/admin.php:
|
3087 |
#, php-format
|
3088 |
msgid "%%currentdate%%"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
-
#: inc/admin/admin.php:
|
3092 |
msgid "Current date"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
-
#: inc/admin/admin.php:
|
3096 |
#, php-format
|
3097 |
msgid "%%currenttime%%"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: inc/admin/admin.php:
|
3101 |
msgid "Current time"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: inc/admin/admin.php:
|
3105 |
#, php-format
|
3106 |
msgid "%%author_bio%%"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: inc/admin/admin.php:
|
3110 |
msgid "Author bio, meta desc only"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: inc/admin/admin.php:
|
3114 |
#, php-format
|
3115 |
msgid "%%currentmonth_num%%"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: inc/admin/admin.php:
|
3119 |
msgid "Current month in digital format"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: inc/admin/admin.php:
|
3123 |
msgid "Templates variables"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: inc/admin/admin.php:
|
3127 |
msgid "Browse our guides"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: inc/admin/admin.php:
|
3131 |
msgid "Read our FAQ"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: inc/admin/admin.php:
|
3135 |
msgid "Check our website"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: inc/admin/admin.php:
|
3139 |
msgid ""
|
3140 |
"Watch our video to learn how to connect your WordPress site with Google "
|
3141 |
"Analytics and get statistics right in your dashboard (PRO only)."
|
3142 |
msgstr ""
|
3143 |
|
3144 |
-
#: inc/admin/admin.php:
|
3145 |
msgid "How-to"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: inc/admin/admin.php:
|
3149 |
-
#: inc/admin/admin.php:
|
3150 |
-
#: inc/admin/admin.php:
|
3151 |
-
#: inc/admin/admin.php:
|
3152 |
msgid "Click to disable this feature"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
-
#: inc/admin/admin.php:
|
3156 |
-
#: inc/admin/admin.php:
|
3157 |
-
#: inc/admin/admin.php:
|
3158 |
-
#: inc/admin/admin.php:
|
3159 |
msgid "Click to enable this feature"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: inc/admin/admin.php:
|
3163 |
msgid "Home"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: inc/admin/admin.php:
|
3167 |
msgid "Single Post Types"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: inc/admin/admin.php:
|
3171 |
msgid "Archives"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: inc/admin/admin.php:
|
3175 |
msgid "Taxonomies"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: inc/admin/admin.php:
|
3179 |
msgid "General"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: inc/admin/admin.php:
|
3183 |
msgid "Post Types"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: inc/admin/admin.php:
|
3187 |
msgid "HTML Sitemap"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: inc/admin/admin.php:
|
3191 |
msgid "Knowledge Graph"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: inc/admin/admin.php:
|
3195 |
msgid "Your social accounts"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: inc/admin/admin.php:
|
3199 |
msgid "Facebook (Open Graph)"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
-
#: inc/admin/admin.php:
|
3203 |
msgid "Twitter (Twitter card)"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: inc/admin/admin.php:
|
3207 |
msgid "Tracking"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: inc/admin/admin.php:
|
3211 |
msgid "Ecommerce"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: inc/admin/admin.php:
|
3215 |
msgid "Events"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: inc/admin/admin.php:
|
3219 |
msgid "Custom Dimensions"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: inc/admin/admin.php:
|
3223 |
msgid "Stats in Dashboard"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: inc/admin/admin.php:
|
3227 |
msgid "Cookie bar / GDPR"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: inc/admin/admin.php:
|
3231 |
msgid "Matomo"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: inc/admin/admin.php:
|
3235 |
msgid "Appearance"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: inc/admin/admin.php:
|
3239 |
msgid "Security"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: inc/admin/admin.php:
|
3243 |
msgid "Data"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: inc/admin/admin.php:
|
3247 |
msgid "Settings"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: inc/admin/admin.php:
|
3251 |
msgid "Plugins"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: inc/admin/admin.php:
|
3255 |
msgid "Reset"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: inc/admin/admin.php:
|
3259 |
msgid "Import data from a CSV"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: inc/admin/admin.php:
|
3263 |
msgid ""
|
3264 |
"Import your title, meta description, meta robots, social metas from a CSV "
|
3265 |
"file with our import tool."
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: inc/admin/admin.php:
|
3269 |
msgid "Run the importer"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: inc/admin/admin.php:
|
3273 |
msgid "Export metadata to a CSV"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: inc/admin/admin.php:
|
3277 |
msgid "Export your SEOPress metadata for this site as a .csv file."
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: inc/admin/admin.php:
|
3281 |
-
#: inc/admin/admin.php:
|
3282 |
msgid "Export"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: inc/admin/admin.php:
|
3286 |
msgid "Export plugin settings"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: inc/admin/admin.php:
|
3290 |
msgid ""
|
3291 |
"Export the plugin settings for this site as a .json file. This allows you to "
|
3292 |
"easily import the configuration into another site."
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#: inc/admin/admin.php:
|
3296 |
msgid "Import plugin settings"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: inc/admin/admin.php:
|
3300 |
msgid ""
|
3301 |
"Import the plugin settings from a .json file. This file can be obtained by "
|
3302 |
"exporting the settings on another site using the form above."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: inc/admin/admin.php:
|
3306 |
-
#: inc/admin/admin.php:
|
3307 |
msgid "Import"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: inc/admin/admin.php:
|
3311 |
msgid "Import completed!"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: inc/admin/admin.php:
|
3315 |
msgid ""
|
3316 |
"<strong>WARNING:</strong> Migration will update/delete all SEOPress posts "
|
3317 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
3318 |
"any Squirrly SEO data."
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: inc/admin/admin.php:
|
3322 |
msgid "Import your redirections"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: inc/admin/admin.php:
|
3326 |
msgid "CSV file (must match the template)"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: inc/admin/admin.php:
|
3330 |
msgid "Redirections plugin (JSON - WordPress Redirects)"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: inc/admin/admin.php:
|
3334 |
msgid "Yoast Premium plugin (CSV)"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: inc/admin/admin.php:
|
3338 |
msgid "Rank Math plugin (TXT)"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: inc/admin/admin.php:
|
3342 |
msgid "Import Redirections"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: inc/admin/admin.php:
|
3346 |
msgid ""
|
3347 |
"Import your own redirections from a .csv file (separator \";\"). You must "
|
3348 |
"have 6 columns in this order:"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: inc/admin/admin.php:
|
3352 |
msgid "URL to match (without your domain name)"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
-
#: inc/admin/admin.php:
|
3356 |
msgid "URL to redirect in absolute,"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: inc/admin/admin.php:
|
3360 |
msgid "type of redirection (301, 302 or 307, 410, 451),"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: inc/admin/admin.php:
|
3364 |
msgid "Yes to enable the redirect (leave it empty to disable the redirect)"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: inc/admin/admin.php:
|
3368 |
msgid ""
|
3369 |
"the query parameter without the quotes (\"exact_match\" = Exact match with "
|
3370 |
"all parameters, \"without_param\" = Exclude all parameters or "
|
@@ -3372,27 +3462,35 @@ msgid ""
|
|
3372 |
"redirection),"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: inc/admin/admin.php:
|
3376 |
msgid "and, the last parameter, the counter (optional)."
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: inc/admin/admin.php:
|
3380 |
msgid "Download a CSV example"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3384 |
msgid "Comma separator: \"<strong>,</strong>\""
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: inc/admin/admin.php:
|
3388 |
msgid "Semicolon separator: \"<strong>;</strong>\""
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: inc/admin/admin.php:
|
3392 |
msgid "Import Redirections from the Redirections plugin"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
-
#: inc/admin/admin.php:
|
3396 |
msgid ""
|
3397 |
"Import your own redirections from a .json file generated by the Redirections "
|
3398 |
"plugin (make sure to select <strong>\"WordPress redirects\"</strong> when "
|
@@ -3401,739 +3499,749 @@ msgid ""
|
|
3401 |
"file and existing redirects."
|
3402 |
msgstr ""
|
3403 |
|
3404 |
-
#: inc/admin/admin.php:
|
3405 |
msgid "Import Redirections from Yoast Premium"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
-
#: inc/admin/admin.php:
|
3409 |
msgid ""
|
3410 |
"Import your own redirections from a .csv file generated by Yoast Premium. "
|
3411 |
"Note that we don't support certain options, like regex. To avoid conflicts, "
|
3412 |
"make sure there are no duplicates between your file and existing redirects."
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: inc/admin/admin.php:
|
3416 |
msgid "Import Redirections from Rank Math"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: inc/admin/admin.php:
|
3420 |
msgid ""
|
3421 |
"Import your own redirections from a .txt file generated by Rank Math. Note "
|
3422 |
"that we don't support certain options, like regex. To avoid conflicts, make "
|
3423 |
"sure there are no duplicates between your file and existing redirects."
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: inc/admin/admin.php:
|
3427 |
msgid "Export Redirections"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: inc/admin/admin.php:
|
3431 |
msgid ""
|
3432 |
"Export all redirections for this site as a .csv file. This allows you to "
|
3433 |
"easily import the redirections into another site, to Excel / Google Sheets..."
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: inc/admin/admin.php:
|
3437 |
msgid "Export Redirections for an .htaccess file"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: inc/admin/admin.php:
|
3441 |
msgid ""
|
3442 |
"Export all redirects from this site to a txt file. Then copy and paste the "
|
3443 |
"formatted URLs into your .htaccess file."
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: inc/admin/admin.php:
|
3447 |
msgid "Only active redirections will be exported."
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: inc/admin/admin.php:
|
3451 |
msgid ""
|
3452 |
"Save your .htaccess file before editing it. <strong>Safety first!</strong>"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: inc/admin/admin.php:
|
3456 |
msgid "Do not forget to test every redirects!"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: inc/admin/admin.php:
|
3460 |
msgid "Clean your 404"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: inc/admin/admin.php:
|
3464 |
msgid "Delete all your 404 errors. We don‘t delete any redirects."
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#: inc/admin/admin.php:
|
3468 |
#, php-format
|
3469 |
msgid ""
|
3470 |
"Make sure you have enabled 404 cleaning from SEO, PRO, <a href=\"%s"
|
3471 |
"\">404/301</a> tab to be able to delete all your 404 errors."
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: inc/admin/admin.php:
|
3475 |
#, php-format
|
3476 |
msgid ""
|
3477 |
"You can also use <span class=\"dashicons dashicons-external\"></span><a href="
|
3478 |
"\"%s\" target=\"_blank\">this MySQL query</a> if necessary."
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: inc/admin/admin.php:
|
3482 |
msgid "Delete all 404"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: inc/admin/admin.php:
|
3486 |
msgid "Redirections feature is disabled. Please activate it from the PRO page."
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#: inc/admin/admin.php:
|
3490 |
msgid "Activate Redirections"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#: inc/admin/admin.php:
|
3494 |
msgid "Reset All Notices From Notifications Center"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
-
#: inc/admin/admin.php:
|
3498 |
msgid ""
|
3499 |
"By clicking Reset Notices, all notices in the notifications center will be "
|
3500 |
"set to their initial status."
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
#: inc/admin/admin.php:
|
3504 |
msgid "Reset notices"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
-
#: inc/admin/admin.php:
|
3508 |
msgid "Reset All Settings"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
-
#: inc/admin/admin.php:
|
3512 |
msgid ""
|
3513 |
"<strong>WARNING:</strong> Delete all options related to SEOPress in your "
|
3514 |
"database AND set settings to their default values."
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#: inc/admin/admin.php:
|
3518 |
msgid "Reset settings"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: inc/admin/admin.php:
|
3522 |
msgid "noindex"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: inc/admin/admin.php:
|
3526 |
msgid "nofollow"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
-
#: inc/admin/admin.php:
|
3530 |
msgid "noodp"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
-
#: inc/admin/admin.php:
|
3534 |
msgid "noimageindex"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
-
#: inc/admin/admin.php:
|
3538 |
msgid "noarchive"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
-
#: inc/admin/admin.php:
|
3542 |
msgid "nosnippet"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
-
#: inc/admin/admin.php:
|
3546 |
msgid "nositelinkssearchbox"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#: inc/admin/admin.php:
|
3550 |
msgid "Indicate paginated content to Google"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
-
#: inc/admin/admin.php:
|
3554 |
msgid "noindex on paged archives"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
-
#: inc/admin/admin.php:
|
3558 |
msgid "Enable XML Sitemap"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
-
#: inc/admin/admin.php:
|
3562 |
msgid "Enable XML Image Sitemaps"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
-
#: inc/admin/admin.php:
|
3566 |
msgid "Enable XML Video Sitemaps"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
-
#: inc/admin/admin.php:
|
3570 |
msgid "Enable Author Sitemap"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
-
#: inc/admin/admin.php:
|
3574 |
msgid "Enable HTML Sitemap"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
-
#: inc/admin/admin.php:
|
3578 |
msgid "Check to INCLUDE Post Types"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
-
#: inc/admin/admin.php:
|
3582 |
msgid "Check to INCLUDE Taxonomies"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
-
#: inc/admin/admin.php:
|
3586 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
-
#: inc/admin/admin.php:
|
3590 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: inc/admin/admin.php:
|
3594 |
msgid "Sort order"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
-
#: inc/admin/admin.php:
|
3598 |
msgid "Order posts by"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: inc/admin/admin.php:
|
3602 |
msgid "Disable the display of the publication date"
|
3603 |
msgstr ""
|
3604 |
|
3605 |
-
#: inc/admin/admin.php:
|
3606 |
msgid "Organization's phone number (only for Organizations)"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
-
#: inc/admin/admin.php:
|
3610 |
msgid "Contact type (only for Organizations)"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
-
#: inc/admin/admin.php:
|
3614 |
msgid "Contact option (only for Organizations)"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#: inc/admin/admin.php:
|
3618 |
msgid "Facebook Page URL"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
-
#: inc/admin/admin.php:
|
3622 |
msgid "Enable Open Graph Data"
|
3623 |
msgstr ""
|
3624 |
|
3625 |
-
#: inc/admin/admin.php:
|
3626 |
msgid "Select a default image"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
-
#: inc/admin/admin.php:
|
3630 |
msgid "Apply this image to all your og:image tag"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
-
#: inc/admin/admin.php:
|
3634 |
msgid "Define custom og:image tag for post type archive pages"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
-
#: inc/admin/admin.php:
|
3638 |
msgid "Facebook Link Ownership ID"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
-
#: inc/admin/admin.php:
|
3642 |
msgid "Facebook Admin ID"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
-
#: inc/admin/admin.php:
|
3646 |
msgid "Facebook App ID"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
-
#: inc/admin/admin.php:
|
3650 |
msgid "Enable Twitter Card"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
-
#: inc/admin/admin.php:
|
3654 |
msgid "Use Open Graph if no Twitter Card is filled"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
-
#: inc/admin/admin.php:
|
3658 |
msgid "Default Twitter Image"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: inc/admin/admin.php:
|
3662 |
msgid "Image size for Twitter Summary card"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#: inc/admin/admin.php:
|
3666 |
msgid "Enable Google Analytics tracking"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: inc/admin/admin.php:
|
3670 |
msgid "Enter your tracking ID"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: inc/admin/admin.php:
|
3674 |
msgid "Exclude user roles from tracking (Google Analytics and Matomo)"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: inc/admin/admin.php:
|
3678 |
msgid "Analytics tracking opt-in"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#: inc/admin/admin.php:
|
3682 |
msgid "Consent message for user tracking"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: inc/admin/admin.php:
|
3686 |
msgid "Accept button for user tracking"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
-
#: inc/admin/admin.php:
|
3690 |
msgid "Close button"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: inc/admin/admin.php:
|
3694 |
msgid "Cookie bar position"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
-
#: inc/admin/admin.php:
|
3698 |
msgid "Cookie bar background color"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
#: inc/admin/admin.php:
|
3702 |
msgid "Cookie bar text color"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
-
#: inc/admin/admin.php:
|
3706 |
msgid "Cookie bar link color"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
-
#: inc/admin/admin.php:
|
3710 |
msgid "Cookie bar button background color"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
-
#: inc/admin/admin.php:
|
3714 |
msgid "Cookie bar button color"
|
3715 |
msgstr ""
|
3716 |
|
3717 |
-
#: inc/admin/admin.php:
|
3718 |
msgid "Cookie bar button hover background color"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#: inc/admin/admin.php:
|
3722 |
msgid "Cookie bar button hover color"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: inc/admin/admin.php:
|
3726 |
msgid "Cookie bar secondary button background color"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#: inc/admin/admin.php:
|
3730 |
msgid "Cookie bar secondary button color"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: inc/admin/admin.php:
|
3734 |
msgid "Cookie bar secondary button hover background color"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: inc/admin/admin.php:
|
3738 |
msgid "Cookie bar secondary button hover color"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#: inc/admin/admin.php:
|
3742 |
msgid "Enable Google Optimize"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: inc/admin/admin.php:
|
3746 |
msgid "Enable Google Ads"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#: inc/admin/admin.php:
|
3750 |
msgid "Add an additional tracking code (like Facebook Pixel, Hotjar...)"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: inc/admin/admin.php:
|
3754 |
msgid "[BODY] Add an additional tracking code (like Google Tag Manager...)"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: inc/admin/admin.php:
|
3758 |
msgid ""
|
3759 |
"[BODY (FOOTER)] Add an additional tracking code (like Google Tag Manager...)"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: inc/admin/admin.php:
|
3763 |
msgid "Enable remarketing, demographics, and interests reporting"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: inc/admin/admin.php:
|
3767 |
msgid "Enable IP Anonymization"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: inc/admin/admin.php:
|
3771 |
msgid "Enhanced Link Attribution"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: inc/admin/admin.php:
|
3775 |
msgid "Enable cross-domain tracking"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: inc/admin/admin.php:
|
3779 |
msgid "Cross domains"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: inc/admin/admin.php:
|
3783 |
msgid "Enable external links tracking"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: inc/admin/admin.php:
|
3787 |
msgid "Enable downloads tracking (eg: PDF, XLSX, DOCX...)"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: inc/admin/admin.php:
|
3791 |
msgid "Track downloads' clicks"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: inc/admin/admin.php:
|
3795 |
msgid "Enable affiliate/outbound links tracking (eg: aff, go, out, recommends)"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: inc/admin/admin.php:
|
3799 |
msgid "Track affiliate/outbound links"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: inc/admin/admin.php:
|
3803 |
msgid "Track Authors"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: inc/admin/admin.php:
|
3807 |
msgid "Track Categories"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: inc/admin/admin.php:
|
3811 |
msgid "Track Tags"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: inc/admin/admin.php:
|
3815 |
msgid "Track Post Types"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: inc/admin/admin.php:
|
3819 |
msgid "Track Logged In Users"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: inc/admin/admin.php:
|
3823 |
msgid "Enable Matomo tracking"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: inc/admin/admin.php:
|
3827 |
msgid "Enter your site ID"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: inc/admin/admin.php:
|
3831 |
msgid "Track visitors across all subdomains"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: inc/admin/admin.php:
|
3835 |
msgid "Prepend the site domain"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: inc/admin/admin.php:
|
3839 |
msgid "Track users with JavaScript disabled"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: inc/admin/admin.php:
|
3843 |
msgid "Enables cross domain linking"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: inc/admin/admin.php:
|
3847 |
msgid "Cross domain"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: inc/admin/admin.php:
|
3851 |
msgid "Enable DoNotTrack detection"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: inc/admin/admin.php:
|
3855 |
msgid "Disable all tracking cookies"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: inc/admin/admin.php:
|
3859 |
msgid "Download & Outlink tracking"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: inc/admin/admin.php:
|
3863 |
msgid "Redirect attachment pages to post parent"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: inc/admin/admin.php:
|
3867 |
msgid "Redirect attachment pages to their file URL"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: inc/admin/admin.php:
|
3871 |
msgid "Remove ?replytocom link to avoid duplicate content"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: inc/admin/admin.php:
|
3875 |
msgid "Automatically set the image Title"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: inc/admin/admin.php:
|
3879 |
msgid "Automatically set the image Alt text"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: inc/admin/admin.php:
|
3883 |
msgid "Automatically set the image Alt text from target keywords"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: inc/admin/admin.php:
|
3887 |
msgid "Automatically set the image Caption"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: inc/admin/admin.php:
|
3891 |
msgid "Automatically set the image Description"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: inc/admin/admin.php:
|
3895 |
msgid "Add WP Editor to taxonomy description textarea"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: inc/admin/admin.php:
|
3899 |
msgid "Remove /category/ in URL"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: inc/admin/admin.php:
|
3903 |
msgid "Disable trailing slash for metas"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: inc/admin/admin.php:
|
3907 |
msgid "Remove WordPress generator meta tag"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: inc/admin/admin.php:
|
3911 |
msgid "Remove hentry post class"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: inc/admin/admin.php:
|
3915 |
msgid "Remove author URL"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: inc/admin/admin.php:
|
3919 |
msgid "Remove website field in comment form"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: inc/admin/admin.php:
|
3923 |
msgid "Remove WordPress shortlink meta tag"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: inc/admin/admin.php:
|
3927 |
msgid "Remove Windows Live Writer meta tag"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: inc/admin/admin.php:
|
3931 |
msgid "Remove RSD meta tag"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: inc/admin/admin.php:
|
3935 |
msgid "Google site verification"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: inc/admin/admin.php:
|
3939 |
msgid "Bing site verification"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: inc/admin/admin.php:
|
3943 |
msgid "Pinterest site verification"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: inc/admin/admin.php:
|
3947 |
msgid "Yandex site verification"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: inc/admin/admin.php:
|
3951 |
msgid "SEOPress in admin bar"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: inc/admin/admin.php:
|
3955 |
msgid "Move SEOPress metabox's position"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: inc/admin/admin.php:
|
3959 |
msgid "Set default tab for Structured data metabox"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: inc/admin/admin.php:
|
3963 |
msgid "Hide Notifications Center"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: inc/admin/admin.php:
|
3967 |
msgid "Hide SEO tools"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: inc/admin/admin.php:
|
3971 |
msgid "Hide Useful Links"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: inc/admin/admin.php:
|
3975 |
msgid "Show Title tag column in post types"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: inc/admin/admin.php:
|
3979 |
msgid "Show Meta description column in post types"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: inc/admin/admin.php:
|
3983 |
msgid "Show Redirection Enable column in post types"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: inc/admin/admin.php:
|
3987 |
msgid "Show Redirect URL column in post types"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: inc/admin/admin.php:
|
3991 |
msgid "Show canonical URL column in post types"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: inc/admin/admin.php:
|
3995 |
msgid "Show Target Keyword column in post types"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: inc/admin/admin.php:
|
3999 |
msgid "Show noindex column in post types"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: inc/admin/admin.php:
|
4003 |
msgid "Show nofollow column in post types"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: inc/admin/admin.php:
|
4007 |
msgid "Show total number of words column in post types"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: inc/admin/admin.php:
|
4011 |
msgid "Show W3C validator column in post types"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: inc/admin/admin.php:
|
4015 |
msgid "Show Google Page Speed column in post types"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: inc/admin/admin.php:
|
4019 |
msgid "Show Insights column in post types"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: inc/admin/admin.php:
|
4023 |
msgid "Show content analysis score column in post types"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: inc/admin/admin.php:
|
4027 |
msgid "Hide Genesis SEO Metabox"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: inc/admin/admin.php:
|
4031 |
msgid "Hide Genesis SEO Settings link"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: inc/admin/admin.php:
|
4035 |
msgid "Hide advice in Structured Data Types metabox"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: inc/admin/admin.php:
|
4039 |
msgid "Block SEO metabox to user roles"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: inc/admin/admin.php:
|
4043 |
msgid "Block Content analysis metabox to user roles"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: inc/admin/admin.php:
|
4047 |
msgid "<p>Customize your title & meta description for homepage</p>"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: inc/admin/admin.php:
|
4051 |
msgid "<p>Customize your titles & metas for Single Custom Post Types</p>"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: inc/admin/admin.php:
|
4055 |
msgid "<p>Customize your metas for all pages</p>"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: inc/admin/admin.php:
|
4059 |
msgid "<p>Customize your metas for all taxonomies archives</p>"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: inc/admin/admin.php:
|
4063 |
msgid "<p>Customize your metas for all archives</p>"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: inc/admin/admin.php:
|
4067 |
msgid "Change this settings"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: inc/admin/admin.php:
|
4071 |
msgid ""
|
4072 |
"To view your sitemap, enable permalinks (not default one), and save settings "
|
4073 |
"to flush them."
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: inc/admin/admin.php:
|
4077 |
msgid ""
|
4078 |
"Your server uses NGINX. If XML Sitemaps doesn't work properly, you need to "
|
4079 |
"add this rule to your configuration:"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: inc/admin/admin.php:
|
4083 |
msgid "Noindex content will not be displayed in Sitemaps."
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
4087 |
msgid "Blank sitemap?"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: inc/admin/admin.php:
|
4091 |
msgid "404 error?"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: inc/admin/admin.php:
|
|
|
|
|
|
|
|
|
4095 |
msgid "View your sitemap"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: inc/admin/admin.php:
|
4099 |
msgid "Ping Google manually"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: inc/admin/admin.php:
|
4103 |
msgid "Flush permalinks"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: inc/admin/admin.php:
|
4107 |
msgid "<p>Create an HTML Sitemap for your visitors and boost your SEO.</p>"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: inc/admin/admin.php:
|
4111 |
msgid ""
|
4112 |
"<p>Limited to 1,000 posts per post type. You can change the order and "
|
4113 |
"sorting criteria below.</p>"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: inc/admin/admin.php:
|
4117 |
msgid "Guide to enable a HTML Sitemap - new window"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: inc/admin/admin.php:
|
4121 |
msgid "<p>Include/Exclude Post Types.</p>"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: inc/admin/admin.php:
|
4125 |
msgid "<p>Include/Exclude Taxonomies.</p>"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: inc/admin/admin.php:
|
4129 |
msgid "<p>Configure Google Knowledge Graph.</p>"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: inc/admin/admin.php:
|
4133 |
msgid "Learn more on Google official website."
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: inc/admin/admin.php:
|
4137 |
msgid ""
|
4138 |
"<p>Link your site with your social accounts. Use markup on your website to "
|
4139 |
"add your social profile information to a Google Knowledge panel. Knowledge "
|
@@ -4143,72 +4251,72 @@ msgid ""
|
|
4143 |
"network links.</p>"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: inc/admin/admin.php:
|
4147 |
msgid "<p>Manage Open Graph data.</p>"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: inc/admin/admin.php:
|
4151 |
msgid "<p>We generate the <strong>og:image</strong> meta in this order:</p>"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: inc/admin/admin.php:
|
4155 |
msgid "Custom OG Image from SEO metabox"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: inc/admin/admin.php:
|
4159 |
msgid "Post thumbnail"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: inc/admin/admin.php:
|
4163 |
msgid "First image of your post content"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: inc/admin/admin.php:
|
4167 |
msgid "Global OG Image set in SEO > Social > Open Graph"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: inc/admin/admin.php:
|
4171 |
msgid "<p>Manage your Twitter card.</p>"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: inc/admin/admin.php:
|
4175 |
msgid ""
|
4176 |
"<p>We generate the <strong>twitter:image</strong> meta in this order:</p>"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
-
#: inc/admin/admin.php:
|
4180 |
msgid "Custom Twitter image from SEO metabox"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
-
#: inc/admin/admin.php:
|
4184 |
msgid "Global Twitter:image set in SEO > Social > Twitter Card"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
-
#: inc/admin/admin.php:
|
4188 |
msgid ""
|
4189 |
"<p>Link your Google Analytics to your website. The tracking code will be "
|
4190 |
"automatically added to your site.</p>"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
-
#: inc/admin/admin.php:
|
4194 |
msgid ""
|
4195 |
"<p>Manage user consent for GDPR and customize your cookie bar easily.</p>"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#: inc/admin/admin.php:
|
4199 |
msgid ""
|
4200 |
"Works with <strong>Google Analytics</strong> and <strong>Matomo</strong>."
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: inc/admin/admin.php:
|
4204 |
msgid "<p>Configure your Google Analytics tracking code.</p>"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
-
#: inc/admin/admin.php:
|
4208 |
msgid "<p>Track events in Google Analytics.</p>"
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
#: inc/admin/admin.php:
|
4212 |
msgid ""
|
4213 |
"<p>Configure your Google Analytics custom dimensions. <br>Custom dimensions "
|
4214 |
"and custom metrics in SEOPress are like the default dimensions and metrics "
|
@@ -4218,448 +4326,458 @@ msgid ""
|
|
4218 |
"Google Analytics account. More info by clicking on the help icon."
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: inc/admin/admin.php:
|
4222 |
msgid "Custom dimensions also work with <strong>Matomo</strong> tracking code."
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: inc/admin/admin.php:
|
4226 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#: inc/admin/admin.php:
|
4230 |
msgid "<p>Use Matomo to track your users with privacy in mind.</p>"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: inc/admin/admin.php:
|
4234 |
msgid ""
|
4235 |
"Your <strong>Custom Dimensions</strong> will also work with Matomo tracking "
|
4236 |
"code"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: inc/admin/admin.php:
|
4240 |
msgid "<p>Advanced SEO options.</p>"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#: inc/admin/admin.php:
|
4244 |
msgid "<p>Customize SEOPress to fit your needs.</p>"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#: inc/admin/admin.php:
|
4248 |
msgid "<p>Manage security.</p>"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#: inc/admin/admin.php:
|
4252 |
msgid "Enter your separator, eg: \"-\""
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#: inc/admin/admin.php:
|
4256 |
#, php-format
|
4257 |
msgid "Use this separator with %%sep%% in your title and meta description."
|
4258 |
msgstr ""
|
4259 |
|
4260 |
-
#: inc/admin/admin.php:
|
4261 |
msgid "My awesome website"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
-
#: inc/admin/admin.php:
|
4265 |
-
#: inc/admin/admin.php:
|
4266 |
-
#: inc/admin/admin.php:
|
4267 |
-
#: inc/admin/admin.php:
|
4268 |
msgid "More tags"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
-
#: inc/admin/admin.php:
|
4272 |
msgid "This is a cool website about Wookiees"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
-
#: inc/admin/admin.php:
|
4276 |
msgid "Looking to edit your blog page?"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
-
#: inc/admin/admin.php:
|
4280 |
-
#: inc/admin/admin.php:
|
4281 |
msgid "Click to hide any SEO metaboxes / columns for this post type"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: inc/admin/admin.php:
|
4285 |
msgid "Click to display any SEO metaboxes / columns for this post type"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: inc/admin/admin.php:
|
4289 |
-
#: inc/admin/admin.php:
|
4290 |
-
#: inc/admin/admin.php:
|
4291 |
msgid "Title template"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
-
#: inc/admin/admin.php:
|
4295 |
-
#: inc/admin/admin.php:
|
4296 |
-
#: inc/admin/admin.php:
|
4297 |
msgid "Meta description template"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: inc/admin/admin.php:
|
4301 |
msgid ""
|
4302 |
"Do not display this single post type in search engine results "
|
4303 |
"<strong>(noindex)</strong>"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: inc/admin/admin.php:
|
4307 |
msgid ""
|
4308 |
"Do not follow links for this single post type <strong>(nofollow)</strong>"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
-
#: inc/admin/admin.php:
|
4312 |
msgid "Display date in Google search results?"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
-
#: inc/admin/admin.php:
|
4316 |
msgid "Display post thumbnail in Google Custom Search results?"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
-
#: inc/admin/admin.php:
|
4320 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4321 |
msgid "Click to hide any SEO metaboxes for this taxonomy"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: inc/admin/admin.php:
|
4325 |
msgid "Click to display any SEO metaboxes for this taxonomy"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
-
#: inc/admin/admin.php:
|
4329 |
msgid "Category Title"
|
4330 |
msgstr ""
|
4331 |
|
4332 |
-
#: inc/admin/admin.php:
|
4333 |
msgid "Tag Title"
|
4334 |
msgstr ""
|
4335 |
|
4336 |
-
#: inc/admin/admin.php:
|
4337 |
msgid "Category Description"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
-
#: inc/admin/admin.php:
|
4341 |
msgid "Tag Description"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
-
#: inc/admin/admin.php:
|
4345 |
msgid "Term Description"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: inc/admin/admin.php:
|
4349 |
msgid ""
|
4350 |
"Do not display this taxonomy archive in search engine results "
|
4351 |
"<strong>(noindex)</strong>"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
#: inc/admin/admin.php:
|
4355 |
msgid ""
|
4356 |
"Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: inc/admin/admin.php:
|
4360 |
msgid "See archive"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: inc/admin/admin.php:
|
4364 |
msgid "Post Type Archive Name"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: inc/admin/admin.php:
|
4368 |
msgid ""
|
4369 |
"Do not display this post type archive in search engine results "
|
4370 |
"<strong>(noindex)</strong>"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
-
#: inc/admin/admin.php:
|
4374 |
msgid ""
|
4375 |
"Do not follow links for this post type archive <strong>(nofollow)</strong>"
|
4376 |
msgstr ""
|
4377 |
|
4378 |
-
#: inc/admin/admin.php:
|
4379 |
msgid "Author archives"
|
4380 |
msgstr ""
|
4381 |
|
4382 |
-
#: inc/admin/admin.php:
|
4383 |
msgid "Disable author archives"
|
4384 |
msgstr ""
|
4385 |
|
4386 |
-
#: inc/admin/admin.php:
|
4387 |
msgid "Date archives"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
-
#: inc/admin/admin.php:
|
4391 |
msgid ""
|
4392 |
"Do not display date archives in search engine results <strong>(noindex)</"
|
4393 |
"strong>"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: inc/admin/admin.php:
|
4397 |
msgid "Disable date archives"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: inc/admin/admin.php:
|
4401 |
msgid "Search archives"
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#: inc/admin/admin.php:
|
4405 |
msgid "Search Keywords"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
-
#: inc/admin/admin.php:
|
4409 |
msgid ""
|
4410 |
"Do not display search archives in search engine results <strong>(noindex)</"
|
4411 |
"strong>"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: inc/admin/admin.php:
|
4415 |
msgid "404 archives"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
-
#: inc/admin/admin.php:
|
4419 |
msgid ""
|
4420 |
"Do not display all pages of the site in Google search results and do not "
|
4421 |
"display \"Cached\" links in search results."
|
4422 |
msgstr ""
|
4423 |
|
4424 |
-
#: inc/admin/admin.php:
|
4425 |
msgid "Do not follow links for all pages."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#: inc/admin/admin.php:
|
4429 |
msgid ""
|
4430 |
"Do not use Open Directory project metadata for titles or excerpts for all "
|
4431 |
"pages."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: inc/admin/admin.php:
|
4435 |
msgid "Do not index images from the entire site."
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: inc/admin/admin.php:
|
4439 |
msgid "Do not display a \"Cached\" link in the Google search results."
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: inc/admin/admin.php:
|
4443 |
msgid ""
|
4444 |
"Do not display a description in the Google search results for all pages."
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#: inc/admin/admin.php:
|
4448 |
msgid ""
|
4449 |
"Prevents Google to display a sitelinks searchbox in search results. Enable "
|
4450 |
"this option will remove the \"Website\" schema from your source code."
|
4451 |
msgstr ""
|
4452 |
|
4453 |
-
#: inc/admin/admin.php:
|
4454 |
msgid "Add rel next/prev link in head of paginated archive pages"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
-
#: inc/admin/admin.php:
|
4458 |
msgid "Add a \"noindex\" meta robots for all paginated archive pages"
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: inc/admin/admin.php:
|
4462 |
msgid "eg: https://example.com/category/my-category/page/2/"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
-
#: inc/admin/admin.php:
|
4466 |
msgid "Guide to enable XML Sitemaps - new window"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: inc/admin/admin.php:
|
4470 |
msgid ""
|
4471 |
"Enable Image Sitemaps (standard images, image galleries, featured image, "
|
4472 |
"WooCommerce product images)"
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#: inc/admin/admin.php:
|
4476 |
msgid "Images in XML sitemaps are visible only from the source code."
|
4477 |
msgstr ""
|
4478 |
|
4479 |
-
#: inc/admin/admin.php:
|
4480 |
msgid "Guide to enable XML image sitemaps - new window"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
-
#: inc/admin/admin.php:
|
4484 |
msgid "Enable Video Sitemaps"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
-
#: inc/admin/admin.php:
|
4488 |
#, php-format
|
4489 |
msgid ""
|
4490 |
"Your video sitemap is empty? Read our guide to learn more about <a href=\"%s"
|
4491 |
"\" target=\"_blank\">adding videos to your sitemap.</a>"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: inc/admin/admin.php:
|
4495 |
msgid "Guide to enable XML video sitemaps - new window"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: inc/admin/admin.php:
|
4499 |
msgid ""
|
4500 |
"Make sure to enable author archive from SEO, titles and metas, archives tab."
|
4501 |
"</a>"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
-
#: inc/admin/admin.php:
|
4505 |
msgid "Include"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
-
#: inc/admin/admin.php:
|
4509 |
msgid ""
|
4510 |
"You should never include attachment post type in your sitemap. Be careful if "
|
4511 |
"you checked this."
|
4512 |
msgstr ""
|
4513 |
|
4514 |
-
#: inc/admin/admin.php:
|
4515 |
msgid "eg: 2, 28, 68"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: inc/admin/admin.php:
|
4519 |
msgid "You can also use this shortcode:"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: inc/admin/admin.php:
|
4523 |
msgid "eg: 13, 8, 38"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
-
#: inc/admin/admin.php:
|
4527 |
msgid ""
|
4528 |
"DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
-
#: inc/admin/admin.php:
|
4532 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
-
#: inc/admin/admin.php:
|
4536 |
msgid "Default (date)"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
-
#: inc/admin/admin.php:
|
4540 |
msgid "Modified date"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
-
#: inc/admin/admin.php:
|
4544 |
msgid "Post ID"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
-
#: inc/admin/admin.php:
|
4548 |
msgid "Menu order"
|
4549 |
msgstr ""
|
4550 |
|
4551 |
-
#: inc/admin/admin.php:
|
4552 |
msgid "Disable date after each post, page, post type?"
|
4553 |
msgstr ""
|
4554 |
|
4555 |
-
#: inc/admin/admin.php:
|
4556 |
msgid "eg: SEOPress"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#: inc/admin/admin.php:
|
4560 |
msgid "Select your logo"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#: inc/admin/admin.php:
|
4564 |
msgid "JPG, PNG, and GIF allowed."
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#: inc/admin/admin.php:
|
4568 |
msgid "eg: +33123456789 (internationalized version required)"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
-
#: inc/admin/admin.php:
|
4572 |
msgid "Customer support"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#: inc/admin/admin.php:
|
4576 |
msgid "Technical support"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
-
#: inc/admin/admin.php:
|
4580 |
msgid "Billing support"
|
4581 |
msgstr ""
|
4582 |
|
4583 |
-
#: inc/admin/admin.php:
|
4584 |
msgid "Bill payment"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
#: inc/admin/admin.php:
|
4588 |
msgid "Sales"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
-
#: inc/admin/admin.php:
|
4592 |
msgid "Credit card support"
|
4593 |
msgstr ""
|
4594 |
|
4595 |
-
#: inc/admin/admin.php:
|
4596 |
msgid "Emergency"
|
4597 |
msgstr ""
|
4598 |
|
4599 |
-
#: inc/admin/admin.php:
|
4600 |
msgid "Baggage tracking"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
-
#: inc/admin/admin.php:
|
4604 |
msgid "Roadside assistance"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
-
#: inc/admin/admin.php:
|
4608 |
msgid "Package tracking"
|
4609 |
msgstr ""
|
4610 |
|
4611 |
-
#: inc/admin/admin.php:
|
4612 |
-
#: inc/admin/admin.php:
|
4613 |
msgid "None"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
#: inc/admin/admin.php:
|
4617 |
msgid "Toll Free"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
-
#: inc/admin/admin.php:
|
4621 |
msgid "Hearing impaired supported"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
-
#: inc/admin/admin.php:
|
4625 |
msgid "Twitter Page URL"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: inc/admin/admin.php:
|
4629 |
msgid "Enable OG data"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: inc/admin/admin.php:
|
4633 |
msgid ""
|
4634 |
"Override every <strong>og:image</strong> tag with this default image (except "
|
4635 |
"if a custom og:image has already been set from the SEO metabox)."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: inc/admin/admin.php:
|
4639 |
msgid "Please define a default OG Image from the field above"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: inc/admin/admin.php:
|
4643 |
msgid "No custom post type to configure."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: inc/admin/admin.php:
|
4647 |
msgid ""
|
4648 |
"One or more Facebook Page IDs that are associated with a URL in order to "
|
4649 |
"enable link editing and instant article publishing."
|
4650 |
msgstr ""
|
4651 |
|
4652 |
-
#: inc/admin/admin.php:
|
4653 |
msgid "How do I find my Facebook Page ID?"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
-
#: inc/admin/admin.php:
|
4657 |
msgid ""
|
4658 |
"The ID (or comma-separated list for properties that can accept multiple IDs) "
|
4659 |
"of an app, person using the app, or Page Graph API object."
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: inc/admin/admin.php:
|
4663 |
msgid ""
|
4664 |
"The Facebook app ID of the site's app. In order to use Facebook Insights you "
|
4665 |
"must add the app ID to your page. Insights lets you view analytics for "
|
@@ -4669,48 +4787,48 @@ msgid ""
|
|
4669 |
"\"seopress-help dashicons dashicons-external\"></span>"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: inc/admin/admin.php:
|
4673 |
msgid "How to create a Facebook App ID"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
-
#: inc/admin/admin.php:
|
4677 |
msgid "Enable Twitter card"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
-
#: inc/admin/admin.php:
|
4681 |
msgid "Use OG if no Twitter Cards"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
-
#: inc/admin/admin.php:
|
4685 |
msgid "Default"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
-
#: inc/admin/admin.php:
|
4689 |
msgid "Large"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: inc/admin/admin.php:
|
4693 |
msgid "Enable Google Analytics tracking (Global Site Tag: gtag.js)"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: inc/admin/admin.php:
|
4697 |
msgid "Enter your Tracking ID (UA-XXXX-XX)"
|
4698 |
msgstr ""
|
4699 |
|
4700 |
-
#: inc/admin/admin.php:
|
4701 |
msgid "Find your tracking ID"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
-
#: inc/admin/admin.php:
|
4705 |
msgid "Request user's consent for analytics tracking (required by GDPR)"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
-
#: inc/admin/admin.php:
|
4709 |
msgid ""
|
4710 |
"<strong>The user must click the Accept button to allow tracking.</strong>"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
-
#: inc/admin/admin.php:
|
4714 |
msgid ""
|
4715 |
"User roles excluded from tracking will not see the consent message.<br> If "
|
4716 |
"you use a caching plugin, you have to exclude this JS file in your settings: "
|
@@ -4718,287 +4836,287 @@ msgid ""
|
|
4718 |
"js</strong> <br>and this cookie <strong>seopress-user-consent-accept</strong>"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#: inc/admin/admin.php:
|
4722 |
msgid "Hook to add custom tracking code with user consent - new window"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: inc/admin/admin.php:
|
4726 |
msgid ""
|
4727 |
"Display and automatically accept the user‘s consent on page load (not fully "
|
4728 |
"GDPR)"
|
4729 |
msgstr ""
|
4730 |
|
4731 |
-
#: inc/admin/admin.php:
|
4732 |
msgid "The previous option must be checked to use this."
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#: inc/admin/admin.php:
|
4736 |
msgid "Enter your message (HTML allowed)"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
-
#: inc/admin/admin.php:
|
4740 |
msgid "This message will only appear if request user's consent is enabled."
|
4741 |
msgstr ""
|
4742 |
|
4743 |
-
#: inc/admin/admin.php:
|
4744 |
msgid "Hook to filter user consent message - new window"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#: inc/admin/admin.php:
|
4748 |
msgid "HTML tags allowed: strong, em, br, a href / target"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: inc/admin/admin.php:
|
4752 |
msgid ""
|
4753 |
"Shortcode allowed to get the privacy page set in WordPress settings: "
|
4754 |
"[seopress_privacy_page]"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
-
#: inc/admin/admin.php:
|
4758 |
msgid "Accept"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
-
#: inc/admin/admin.php:
|
4762 |
msgid "Change the button value"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
-
#: inc/admin/admin.php:
|
4766 |
msgid "default: X"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
-
#: inc/admin/admin.php:
|
4770 |
msgid "Change the close button value"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
-
#: inc/admin/admin.php:
|
4774 |
msgid "Bottom (default)"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
-
#: inc/admin/admin.php:
|
4778 |
msgid "Top"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: inc/admin/admin.php:
|
4782 |
msgid "Change the color of the cookie bar background"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
-
#: inc/admin/admin.php:
|
4786 |
msgid "Change the color of the cookie bar text"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
-
#: inc/admin/admin.php:
|
4790 |
msgid "Change the color of the cookie bar link"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: inc/admin/admin.php:
|
4794 |
msgid "Change the color of the cookie bar button background"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: inc/admin/admin.php:
|
4798 |
msgid "Change the color of the cookie bar button hover background"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#: inc/admin/admin.php:
|
4802 |
msgid "Change the color of the cookie bar button"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
-
#: inc/admin/admin.php:
|
4806 |
msgid "Change the color of the cookie bar button hover"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
-
#: inc/admin/admin.php:
|
4810 |
msgid "Change the color of the cookie bar secondary button background"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#: inc/admin/admin.php:
|
4814 |
msgid "Change the color of the cookie bar secondary button hover background"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
-
#: inc/admin/admin.php:
|
4818 |
msgid "Change the color of the cookie bar secondary button"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
-
#: inc/admin/admin.php:
|
4822 |
msgid "Change the color of the cookie bar secondary button hover"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
-
#: inc/admin/admin.php:
|
4826 |
msgid "Enter your Google Optimize container ID"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
-
#: inc/admin/admin.php:
|
4830 |
msgid "GTM-XXXXXXX"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
-
#: inc/admin/admin.php:
|
4834 |
msgid ""
|
4835 |
"Google Optimize offers A/B testing, website testing & personalization tools."
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: inc/admin/admin.php:
|
4839 |
msgid "Enter your Google Ads conversion ID (eg: AW-123456789)"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: inc/admin/admin.php:
|
4843 |
msgid "AW-XXXXXXXXX"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
-
#: inc/admin/admin.php:
|
4847 |
msgid "Paste your tracking code here like Google Tag Manager (head)"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: inc/admin/admin.php:
|
4851 |
msgid "Additional tracking code field"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
-
#: inc/admin/admin.php:
|
4855 |
msgid "This code will be added in the head section of your page."
|
4856 |
msgstr ""
|
4857 |
|
4858 |
-
#: inc/admin/admin.php:
|
4859 |
msgid "Paste your tracking code here like Google Tag Manager (body)"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
-
#: inc/admin/admin.php:
|
4863 |
msgid "Additional tracking code field added to body"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
-
#: inc/admin/admin.php:
|
4867 |
msgid "This code will be added just after the opening body tag of your page."
|
4868 |
msgstr ""
|
4869 |
|
4870 |
-
#: inc/admin/admin.php:
|
4871 |
msgid ""
|
4872 |
"You don‘t see your code? Make sure to call <strong>wp_body_open();</strong> "
|
4873 |
"just after the opening body tag in your theme."
|
4874 |
msgstr ""
|
4875 |
|
4876 |
-
#: inc/admin/admin.php:
|
4877 |
msgid "Paste your tracking code here (body footer)"
|
4878 |
msgstr ""
|
4879 |
|
4880 |
-
#: inc/admin/admin.php:
|
4881 |
msgid "Additional tracking code field added to body footer"
|
4882 |
msgstr ""
|
4883 |
|
4884 |
-
#: inc/admin/admin.php:
|
4885 |
msgid "This code will be added just after the closing body tag of your page."
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#: inc/admin/admin.php:
|
4889 |
msgid ""
|
4890 |
"A remarketing audience is a list of cookies or mobile-advertising IDs that "
|
4891 |
"represents a group of users you want to re-engage because of their "
|
4892 |
"likelihood to convert."
|
4893 |
msgstr ""
|
4894 |
|
4895 |
-
#: inc/admin/admin.php:
|
4896 |
msgid ""
|
4897 |
"When a customer of Analytics requests IP address anonymization, Analytics "
|
4898 |
"anonymizes the address as soon as technically feasible at the earliest "
|
4899 |
"possible stage of the collection network."
|
4900 |
msgstr ""
|
4901 |
|
4902 |
-
#: inc/admin/admin.php:
|
4903 |
msgid ""
|
4904 |
"Enhanced Link Attribution improves the accuracy of your In-Page Analytics "
|
4905 |
"report by automatically differentiating between multiple links to the same "
|
4906 |
"URL on a single page by using link element IDs."
|
4907 |
msgstr ""
|
4908 |
|
4909 |
-
#: inc/admin/admin.php:
|
4910 |
msgid ""
|
4911 |
"Cross domain tracking makes it possible for Analytics to see sessions on two "
|
4912 |
"related sites (such as an ecommerce site and a separate shopping cart site) "
|
4913 |
"as a single session. This is sometimes called site linking."
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: inc/admin/admin.php:
|
4917 |
msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#: inc/admin/admin.php:
|
4921 |
msgid "Enable download tracking"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
-
#: inc/admin/admin.php:
|
4925 |
msgid "pdf|docx|pptx|zip"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
-
#: inc/admin/admin.php:
|
4929 |
msgid "Separate each file type extensions with a pipe \"|\""
|
4930 |
msgstr ""
|
4931 |
|
4932 |
-
#: inc/admin/admin.php:
|
4933 |
msgid "Enable affiliate/outbound tracking"
|
4934 |
msgstr ""
|
4935 |
|
4936 |
-
#: inc/admin/admin.php:
|
4937 |
msgid "aff|go|out"
|
4938 |
msgstr ""
|
4939 |
|
4940 |
-
#: inc/admin/admin.php:
|
4941 |
msgid "Separate each keyword with a pipe \"|\""
|
4942 |
msgstr ""
|
4943 |
|
4944 |
-
#: inc/admin/admin.php:
|
4945 |
-
#: inc/admin/admin.php:
|
4946 |
#, php-format
|
4947 |
msgid "Custom Dimension #%d"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
-
#: inc/admin/admin.php:
|
4951 |
msgid "Enable Matomo tracking (Matomo account required)"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
-
#: inc/admin/admin.php:
|
4955 |
msgid "Enter \"example\" if you Matomo account URL is \"example.matomo.cloud\""
|
4956 |
msgstr ""
|
4957 |
|
4958 |
-
#: inc/admin/admin.php:
|
4959 |
msgid "Matomo Cloud URL"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
-
#: inc/admin/admin.php:
|
4963 |
msgid "Enter only the <strong>host</strong> like this example.matomo.cloud"
|
4964 |
msgstr ""
|
4965 |
|
4966 |
-
#: inc/admin/admin.php:
|
4967 |
msgid "Enter your site ID here"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
-
#: inc/admin/admin.php:
|
4971 |
msgid "Matomo Site ID"
|
4972 |
msgstr ""
|
4973 |
|
4974 |
-
#: inc/admin/admin.php:
|
4975 |
msgid ""
|
4976 |
"To find your site ID, go to your <strong>Matomo Cloud account, Websites, "
|
4977 |
"Manage page</strong>. Look at \"Site ID\" on the right part."
|
4978 |
msgstr ""
|
4979 |
|
4980 |
-
#: inc/admin/admin.php:
|
4981 |
msgid "Tracking one domain and its subdomains in the same website"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
-
#: inc/admin/admin.php:
|
4985 |
msgid ""
|
4986 |
"If one visitor visits x.example.com and y.example.com, they will be counted "
|
4987 |
"as a unique visitor."
|
4988 |
msgstr ""
|
4989 |
|
4990 |
-
#: inc/admin/admin.php:
|
4991 |
msgid "Prepend the site domain to the page title when tracking"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
-
#: inc/admin/admin.php:
|
4995 |
msgid ""
|
4996 |
"If someone visits the 'About' page on blog.example.com it will be recorded "
|
4997 |
"as 'blog / About'. This is the easiest way to get an overview of your "
|
4998 |
"traffic by sub-domain."
|
4999 |
msgstr ""
|
5000 |
|
5001 |
-
#: inc/admin/admin.php:
|
5002 |
msgid ""
|
5003 |
"By default, the visitor ID that identifies a unique visitor is stored in the "
|
5004 |
"browser's first party cookies which can only be accessed by pages on the "
|
@@ -5009,26 +5127,26 @@ msgid ""
|
|
5009 |
"Visitor ID."
|
5010 |
msgstr ""
|
5011 |
|
5012 |
-
#: inc/admin/admin.php:
|
5013 |
msgid "Enable client side DoNotTrack detection"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
-
#: inc/admin/admin.php:
|
5017 |
msgid ""
|
5018 |
"Tracking requests will not be sent if visitors do not wish to be tracked."
|
5019 |
msgstr ""
|
5020 |
|
5021 |
-
#: inc/admin/admin.php:
|
5022 |
msgid ""
|
5023 |
"Disables all first party cookies. Existing Matomo cookies for this website "
|
5024 |
"will be deleted on the next page view."
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
#: inc/admin/admin.php:
|
5028 |
msgid "Enabling Download & Outlink tracking"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
-
#: inc/admin/admin.php:
|
5032 |
msgid ""
|
5033 |
"By default, any file ending with one of these extensions will be considered "
|
5034 |
"a \"download\" in the Matomo interface: 7z|aac|arc|arj|apk|asf|asx|avi|bin|"
|
@@ -5039,249 +5157,270 @@ msgid ""
|
|
5039 |
"\t\ttbz|tbz2|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
-
#: inc/admin/admin.php:
|
5043 |
msgid "Redirect attachment pages to post parent (or homepage if none)"
|
5044 |
msgstr ""
|
5045 |
|
5046 |
-
#: inc/admin/admin.php:
|
5047 |
msgid ""
|
5048 |
"If this option is checked, it will take precedence over the redirection of "
|
5049 |
"attachments to the post's parent."
|
5050 |
msgstr ""
|
5051 |
|
5052 |
-
#: inc/admin/admin.php:
|
5053 |
msgid "Remove ?replytocom link in source code"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
-
#: inc/admin/admin.php:
|
5057 |
msgid ""
|
5058 |
"When sending an image file, automatically set the title based on the filename"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
-
#: inc/admin/admin.php:
|
5062 |
msgid ""
|
5063 |
"When sending an image file, automatically set the alternative text based on "
|
5064 |
"the filename"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: inc/admin/admin.php:
|
5068 |
msgid ""
|
5069 |
"We recommend Image SEO plugin to optimize your image ALT texts and names for "
|
5070 |
"Search Engines using AI and Machine Learning. Starting from just €4.99."
|
5071 |
msgstr ""
|
5072 |
|
5073 |
-
#: inc/admin/admin.php:
|
5074 |
msgid "Use the target keywords if not alternative text set for the image"
|
5075 |
msgstr ""
|
5076 |
|
5077 |
-
#: inc/admin/admin.php:
|
5078 |
msgid ""
|
5079 |
"This setting will be applied to images without any alt text on frontend "
|
5080 |
"only. This setting is retroactive. If you turn it off, alt texts that were "
|
5081 |
"previously empty will be empty again."
|
5082 |
msgstr ""
|
5083 |
|
5084 |
-
#: inc/admin/admin.php:
|
5085 |
msgid ""
|
5086 |
"When sending an image file, automatically set the caption based on the "
|
5087 |
"filename"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
-
#: inc/admin/admin.php:
|
5091 |
msgid ""
|
5092 |
"When sending an image file, automatically set the description based on the "
|
5093 |
"filename"
|
5094 |
msgstr ""
|
5095 |
|
5096 |
-
#: inc/admin/admin.php:
|
5097 |
msgid "Add TINYMCE editor to term description"
|
5098 |
msgstr ""
|
5099 |
|
5100 |
-
#: inc/admin/admin.php:
|
5101 |
msgid "You have to flush your permalinks each time you change this settings"
|
5102 |
msgstr ""
|
5103 |
|
5104 |
-
#: inc/admin/admin.php:
|
5105 |
msgid ""
|
5106 |
"You must check this box if the structure of your permalinks DOES NOT contain "
|
5107 |
"a slash at the end (eg: /%postname%)"
|
5108 |
msgstr ""
|
5109 |
|
5110 |
-
#: inc/admin/admin.php:
|
5111 |
msgid "Remove WordPress meta generator in source code"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
-
#: inc/admin/admin.php:
|
5115 |
msgid ""
|
5116 |
"Remove hentry post class to prevent Google from seeing this as structured "
|
5117 |
"data (schema)"
|
5118 |
msgstr ""
|
5119 |
|
5120 |
-
#: inc/admin/admin.php:
|
5121 |
msgid ""
|
5122 |
"Remove comment author URL in comments if the website is filled from profile "
|
5123 |
"page"
|
5124 |
msgstr ""
|
5125 |
|
5126 |
-
#: inc/admin/admin.php:
|
5127 |
msgid "Remove website field from comment form to reduce spam"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
-
#: inc/admin/admin.php:
|
5131 |
msgid "Remove WordPress shortlink meta tag in source code (eg:"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: inc/admin/admin.php:
|
5135 |
msgid "Remove Windows Live Writer meta tag in source code (eg:"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
-
#: inc/admin/admin.php:
|
5139 |
msgid "Remove Really Simple Discovery meta tag in source code (eg:"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
-
#: inc/admin/admin.php:
|
5143 |
msgid "Enter Google meta value site verification"
|
5144 |
msgstr ""
|
5145 |
|
5146 |
-
#: inc/admin/admin.php:
|
5147 |
msgid ""
|
5148 |
"If your site is already verified in <strong>Google Search Console</strong>, "
|
5149 |
"you can leave this field empty."
|
5150 |
msgstr ""
|
5151 |
|
5152 |
-
#: inc/admin/admin.php:
|
5153 |
msgid "Enter Bing meta value site verification"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
-
#: inc/admin/admin.php:
|
5157 |
msgid ""
|
5158 |
"If your site is already verified in <strong>Bing Webmaster tools</strong>, "
|
5159 |
"you can leave this field empty."
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: inc/admin/admin.php:
|
5163 |
msgid "Enter Pinterest meta value site verification"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#: inc/admin/admin.php:
|
5167 |
msgid "Enter Yandex meta value site verification"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#: inc/admin/admin.php:
|
5171 |
msgid "Remove SEOPress from Admin Bar in backend and frontend"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
-
#: inc/admin/admin.php:
|
5175 |
msgid "High priority (top)"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: inc/admin/admin.php:
|
5179 |
msgid "Normal priority (default)"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: inc/admin/admin.php:
|
5183 |
msgid "Low priority"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: inc/admin/admin.php:
|
5187 |
msgid "Automatic tab (default)"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: inc/admin/admin.php:
|
5191 |
msgid "Manual tab"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: inc/admin/admin.php:
|
5195 |
msgid "Hide Notifications Center in SEOPress Dashboard page"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: inc/admin/admin.php:
|
5199 |
msgid "Hide SEO tools in SEOPress Dashboard page"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: inc/admin/admin.php:
|
5203 |
msgid "Hide Useful Links in SEOPress dashboard page"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#: inc/admin/admin.php:
|
5207 |
msgid "Add title column"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: inc/admin/admin.php:
|
5211 |
msgid "Add meta description column"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#: inc/admin/admin.php:
|
5215 |
msgid "Add redirection enable column"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
#: inc/admin/admin.php:
|
5219 |
msgid "Add redirection URL column"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: inc/admin/admin.php:
|
5223 |
msgid "Add canonical URL column"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: inc/admin/admin.php:
|
5227 |
msgid "Add target keyword column"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: inc/admin/admin.php:
|
5231 |
msgid "Display noindex status"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: inc/admin/admin.php:
|
5235 |
msgid "Display nofollow status"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: inc/admin/admin.php:
|
5239 |
msgid "Display total number of words in content"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
-
#: inc/admin/admin.php:
|
5243 |
msgid "Display W3C column to check code quality"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: inc/admin/admin.php:
|
5247 |
msgid "Display Page Speed column to check performances"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: inc/admin/admin.php:
|
5251 |
msgid "Display SEO Insights column to check rankings"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: inc/admin/admin.php:
|
5255 |
msgid ""
|
5256 |
"Display Content Analysis results column (\"Good\" or \"Should be improved\")"
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: inc/admin/admin.php:
|
5260 |
msgid "Remove Genesis SEO Metabox"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
-
#: inc/admin/admin.php:
|
5264 |
msgid "Remove Genesis SEO link in WP Admin Menu"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
-
#: inc/admin/admin.php:
|
5268 |
msgid "Remove the advice if None schema selected"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: inc/admin/admin.php:
|
5272 |
msgid ""
|
5273 |
"Hook to filter structured data types metabox call by post type - new window"
|
5274 |
msgstr ""
|
5275 |
|
5276 |
-
#: inc/admin/adminbar.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5277 |
msgid "BOT"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: inc/admin/adminbar.php:
|
5281 |
msgid "Broken Links"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: inc/admin/adminbar.php:
|
5285 |
msgid "Configuration wizard"
|
5286 |
msgstr ""
|
5287 |
|
@@ -5517,20 +5656,20 @@ msgid "Connected users"
|
|
5517 |
msgstr ""
|
5518 |
|
5519 |
#: inc/functions/options-import-export.php:58
|
5520 |
-
#: inc/functions/options-import-export.php:
|
5521 |
msgid "Please upload a valid .json file"
|
5522 |
msgstr ""
|
5523 |
|
5524 |
#: inc/functions/options-import-export.php:63
|
5525 |
#: inc/functions/options-import-export.php:132
|
5526 |
-
#: inc/functions/options-import-export.php:
|
5527 |
-
#: inc/functions/options-import-export.php:
|
5528 |
-
#: inc/functions/options-import-export.php:
|
5529 |
msgid "Please upload a file to import"
|
5530 |
msgstr ""
|
5531 |
|
5532 |
#: inc/functions/options-import-export.php:128
|
5533 |
-
#: inc/functions/options-import-export.php:
|
5534 |
msgid "Please upload a valid .csv file"
|
5535 |
msgstr ""
|
5536 |
|
@@ -5542,7 +5681,7 @@ msgstr ""
|
|
5542 |
msgid "Invalid separator"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#: inc/functions/options-import-export.php:
|
5546 |
msgid "Please upload a valid .txt file"
|
5547 |
msgstr ""
|
5548 |
|
@@ -5564,7 +5703,7 @@ msgstr ""
|
|
5564 |
msgid "Last update"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: inc/functions/variables/dynamic-variables.php:
|
5568 |
#, php-format
|
5569 |
msgid "Page %d of %2$d"
|
5570 |
msgstr ""
|
@@ -5573,38 +5712,38 @@ msgstr ""
|
|
5573 |
msgid "has been successfully updated!"
|
5574 |
msgstr ""
|
5575 |
|
5576 |
-
#: seopress.php:
|
5577 |
msgid "You like SEOPress? Don't forget to rate it 5 stars!"
|
5578 |
msgstr ""
|
5579 |
|
5580 |
-
#: seopress.php:
|
5581 |
msgid "Docs"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: seopress.php:
|
5585 |
msgid "Configuration Wizard"
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: seopress.php:
|
5589 |
msgid "GO PRO!"
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: seopress.php:
|
5593 |
msgid "Follow us:"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: seopress.php:
|
5597 |
msgid "Like our Facebook page"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: seopress.php:
|
5601 |
msgid "Watch our guided tour videos to learn more about SEOPress"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: seopress.php:
|
5605 |
msgid "Read our blog posts about SEO concepts, tutorials and more"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: seopress.php:
|
5609 |
msgid "The off side of SEOPress"
|
5610 |
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: 2020-09-24 16:50+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"
|
48 |
#: inc/admin/admin-features-list.php:233 inc/admin/admin-features-list.php:252
|
49 |
#: inc/admin/admin-features-list.php:271 inc/admin/admin-features-list.php:290
|
50 |
#: inc/admin/admin-features-list.php:338 inc/admin/admin-features-list.php:356
|
51 |
+
#: inc/admin/admin.php:336 inc/admin/admin.php:342
|
52 |
msgid "Read our guide"
|
53 |
msgstr ""
|
54 |
|
56 |
msgid "Guide to manage your titles and meta descriptions - new window"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: inc/admin/admin-features-list.php:31 inc/admin/admin.php:236
|
60 |
msgid "XML / Image / Video / HTML Sitemap"
|
61 |
msgstr ""
|
62 |
|
69 |
msgstr ""
|
70 |
|
71 |
#: inc/admin/admin-features-list.php:47 inc/admin/admin-header.php:57
|
72 |
+
#: inc/admin/admin.php:237 inc/admin/adminbar.php:107
|
73 |
msgid "Social Networks"
|
74 |
msgstr ""
|
75 |
|
82 |
msgstr ""
|
83 |
|
84 |
#: inc/admin/admin-features-list.php:63 inc/admin/admin-header.php:63
|
85 |
+
#: inc/admin/admin.php:238 inc/admin/adminbar.php:113
|
86 |
msgid "Analytics"
|
87 |
msgstr ""
|
88 |
|
95 |
msgstr ""
|
96 |
|
97 |
#: inc/admin/admin-features-list.php:79 inc/admin/admin-header.php:69
|
98 |
+
#: inc/admin/admin-metaboxes-form.php:60 inc/admin/admin.php:239
|
99 |
+
#: inc/admin/admin.php:398 inc/admin/admin.php:680 inc/admin/adminbar.php:119
|
100 |
msgid "Advanced"
|
101 |
msgstr ""
|
102 |
|
105 |
msgstr ""
|
106 |
|
107 |
#: inc/admin/admin-features-list.php:90 inc/admin/admin-header.php:25
|
108 |
+
#: inc/admin/admin-header.php:77 inc/admin/adminbar.php:127
|
109 |
#: inc/functions/options-advanced-admin.php:429
|
110 |
msgid "Insights"
|
111 |
msgstr ""
|
220 |
msgid "Guide to create your xml news sitemap - new window"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: inc/admin/admin-features-list.php:241 inc/admin/adminbar.php:162
|
224 |
msgid "Schemas"
|
225 |
msgstr ""
|
226 |
|
229 |
msgstr ""
|
230 |
|
231 |
#: inc/admin/admin-features-list.php:260 inc/admin/admin-header.php:142
|
232 |
+
#: inc/admin/admin.php:719 inc/admin/adminbar.php:170
|
233 |
msgid "Redirections"
|
234 |
msgstr ""
|
235 |
|
290 |
msgstr ""
|
291 |
|
292 |
#: inc/admin/admin-features-list.php:330 inc/admin/admin-header.php:187
|
293 |
+
#: inc/admin/admin.php:240 inc/admin/adminbar.php:134
|
294 |
msgid "Tools"
|
295 |
msgstr ""
|
296 |
|
303 |
msgstr ""
|
304 |
|
305 |
#: inc/admin/admin-features-list.php:348 inc/admin/admin-header.php:180
|
306 |
+
#: inc/admin/admin-notifications-center.php:772 inc/admin/adminbar.php:149
|
307 |
msgid "License"
|
308 |
msgstr ""
|
309 |
|
355 |
msgid "SEOPress"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: inc/admin/admin-header.php:31 inc/admin/admin-notifications-center.php:801
|
359 |
+
#: inc/admin/adminbar.php:155
|
360 |
msgid "PRO"
|
361 |
msgstr ""
|
362 |
|
364 |
msgid "FREE"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: inc/admin/admin-header.php:45 inc/admin/admin.php:235
|
368 |
+
#: inc/admin/adminbar.php:95
|
369 |
msgid "Titles & Metas"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/admin/admin-header.php:51 inc/admin/admin.php:236
|
373 |
+
#: inc/admin/adminbar.php:101
|
374 |
msgid "XML / HTML Sitemap"
|
375 |
msgstr ""
|
376 |
|
390 |
msgid "Send feedback"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: inc/admin/admin-header.php:219 seopress.php:1244
|
394 |
msgid "Join our Facebook Community group"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: inc/admin/admin-header.php:223 seopress.php:1269
|
398 |
msgid "Follow us on Twitter"
|
399 |
msgstr ""
|
400 |
|
482 |
msgstr ""
|
483 |
|
484 |
#: inc/admin/admin-metaboxes-form.php:50 inc/admin/admin-metaboxes.php:163
|
485 |
+
#: inc/admin/admin-metaboxes.php:166 inc/admin/admin.php:233
|
486 |
+
#: inc/admin/adminbar.php:32 inc/functions/options-advanced-admin.php:963
|
487 |
msgid "SEO"
|
488 |
msgstr ""
|
489 |
|
549 |
msgid " (maximum recommended limit)"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: inc/admin/admin-metaboxes-form.php:124 inc/admin/admin.php:3469
|
553 |
msgid "Term Title"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: inc/admin/admin-metaboxes-form.php:126 inc/admin/admin.php:3225
|
557 |
+
#: inc/admin/admin.php:3343 inc/admin/admin.php:4324
|
558 |
msgid "Post Title"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: inc/admin/admin-metaboxes-form.php:128 inc/admin/admin.php:248
|
562 |
+
#: inc/admin/admin.php:3123 inc/admin/admin.php:3229 inc/admin/admin.php:3345
|
563 |
+
#: inc/admin/admin.php:3474 inc/admin/admin.php:3597 inc/admin/admin.php:3675
|
564 |
+
#: inc/admin/admin.php:3746 inc/admin/admin.php:3816 inc/admin/admin.php:3866
|
565 |
msgid "Site Title"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/admin/admin-metaboxes-form.php:130 inc/admin/admin-wizard.php:508
|
569 |
+
#: inc/admin/admin.php:1287 inc/admin/admin.php:3110 inc/admin/admin.php:3124
|
570 |
+
#: inc/admin/admin.php:3227 inc/admin/admin.php:3344 inc/admin/admin.php:3472
|
571 |
+
#: inc/admin/admin.php:3595 inc/admin/admin.php:3674 inc/admin/admin.php:3745
|
572 |
+
#: inc/admin/admin.php:3815 inc/admin/admin.php:3867
|
573 |
msgid "Separator"
|
574 |
msgstr ""
|
575 |
|
577 |
#: inc/admin/admin-metaboxes-form.php:136
|
578 |
#: inc/admin/admin-metaboxes-form.php:138
|
579 |
#: inc/admin/admin-metaboxes-get-content-analysis.php:42
|
580 |
+
#: inc/admin/admin-wizard.php:303 inc/admin/admin-wizard.php:323
|
581 |
+
#: inc/admin/admin-wizard.php:340 inc/admin/admin-wizard.php:359
|
582 |
+
#: inc/admin/admin-wizard.php:378 inc/admin/admin-wizard.php:396
|
583 |
+
#: inc/admin/admin-wizard.php:413 inc/admin/admin-wizard.php:429
|
584 |
+
#: inc/admin/admin-wizard.php:448 inc/admin/admin.php:819
|
585 |
+
#: inc/admin/admin.php:841 inc/admin/admin.php:860 inc/admin/admin.php:881
|
586 |
+
#: inc/admin/admin.php:902 inc/admin/admin.php:922 inc/admin/admin.php:941
|
587 |
+
#: inc/admin/admin.php:959 inc/admin/admin.php:979 inc/admin/admin.php:1303
|
588 |
+
#: inc/admin/admin.php:3132 inc/functions/options-advanced-admin.php:973
|
589 |
msgid "Meta description"
|
590 |
msgstr ""
|
591 |
|
745 |
|
746 |
#: inc/admin/admin-metaboxes-form.php:262
|
747 |
#: inc/admin/admin-metaboxes-form.php:263
|
748 |
+
#: inc/admin/admin-metaboxes-form.php:266 inc/admin/admin-wizard.php:307
|
749 |
+
#: inc/admin/admin-wizard.php:344 inc/admin/admin-wizard.php:363
|
750 |
+
#: inc/admin/admin-wizard.php:382 inc/admin/admin-wizard.php:432
|
751 |
+
#: inc/admin/admin-wizard.php:452 inc/admin/admin.php:823
|
752 |
+
#: inc/admin/admin.php:864 inc/admin/admin.php:885 inc/admin/admin.php:906
|
753 |
+
#: inc/admin/admin.php:962 inc/admin/admin.php:983
|
754 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:178
|
755 |
msgid "Canonical URL"
|
756 |
msgstr ""
|
781 |
"multiple categories."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: inc/admin/admin-metaboxes-form.php:284 inc/admin/admin-wizard.php:519
|
785 |
+
#: inc/admin/admin.php:4367
|
786 |
msgid "None (will disable this feature)"
|
787 |
msgstr ""
|
788 |
|
838 |
msgstr ""
|
839 |
|
840 |
#: inc/admin/admin-metaboxes-form.php:321
|
841 |
+
#: inc/admin/admin-metaboxes-form.php:384 inc/admin/admin.php:4634
|
842 |
+
#: inc/admin/admin.php:4683 inc/admin/admin.php:4780
|
843 |
msgid "Select your default thumbnail"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: inc/admin/admin-metaboxes-form.php:322 inc/admin/admin.php:4638
|
847 |
msgid ""
|
848 |
"Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or "
|
849 |
"3280x1712px for retina screens)"
|
851 |
|
852 |
#: inc/admin/admin-metaboxes-form.php:323
|
853 |
#: inc/admin/admin-metaboxes-form.php:386
|
854 |
+
#: inc/admin/admin-metaboxes-form.php:573 inc/admin/admin.php:4401
|
855 |
+
#: inc/admin/admin.php:4636 inc/admin/admin.php:4685 inc/admin/admin.php:4782
|
856 |
msgid "Upload an Image"
|
857 |
msgstr ""
|
858 |
|
938 |
msgid "Twitter Thumbnail"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: inc/admin/admin-metaboxes-form.php:385 inc/admin/admin.php:4784
|
942 |
msgid ""
|
943 |
"Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 "
|
944 |
"(2:1 with large card), 5Mb max."
|
1808 |
"Track your keywords positions and backlinks directly on your WordPress site."
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: inc/admin/admin-notifications-center.php:160
|
1812 |
+
msgid "We noticed that some SEO DIVI options are enabled!"
|
1813 |
+
msgstr ""
|
1814 |
+
|
1815 |
+
#: inc/admin/admin-notifications-center.php:161
|
1816 |
+
msgid ""
|
1817 |
+
"To avoid any SEO conflicts, please disable every SEO options from "
|
1818 |
+
"<strong>DIVI theme options page, SEO tab</strong>."
|
1819 |
+
msgstr ""
|
1820 |
+
|
1821 |
+
#: inc/admin/admin-notifications-center.php:163
|
1822 |
+
#: inc/admin/admin-notifications-center.php:183
|
1823 |
+
#: inc/admin/admin-notifications-center.php:201
|
1824 |
+
#: inc/admin/admin-notifications-center.php:230
|
1825 |
+
#: inc/admin/admin-notifications-center.php:261
|
1826 |
+
#: inc/admin/admin-notifications-center.php:295
|
1827 |
+
#: inc/admin/admin-notifications-center.php:419
|
1828 |
+
#: inc/admin/admin-notifications-center.php:469
|
1829 |
+
#: inc/admin/admin-notifications-center.php:499
|
1830 |
+
#: inc/admin/admin-notifications-center.php:517
|
1831 |
+
#: inc/admin/admin-notifications-center.php:534
|
1832 |
+
#: inc/admin/admin-notifications-center.php:622
|
1833 |
+
#: inc/admin/admin-notifications-center.php:698
|
1834 |
+
#: inc/admin/admin-notifications-center.php:735
|
1835 |
+
#: inc/admin/admin-notifications-center.php:753
|
1836 |
+
msgid "High impact"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: inc/admin/admin-notifications-center.php:167
|
1840 |
+
#: inc/admin/admin-notifications-center.php:187
|
1841 |
+
#: inc/admin/admin-notifications-center.php:205
|
1842 |
+
#: inc/admin/admin-notifications-center.php:235
|
1843 |
+
#: inc/admin/admin-notifications-center.php:423
|
1844 |
+
#: inc/admin/admin-notifications-center.php:503
|
1845 |
+
#: inc/admin/admin-notifications-center.php:521
|
1846 |
+
#: inc/admin/admin-notifications-center.php:538
|
1847 |
+
#: inc/admin/admin-notifications-center.php:567
|
1848 |
+
#: inc/admin/admin-notifications-center.php:656
|
1849 |
+
#: inc/admin/admin-notifications-center.php:674
|
1850 |
+
#: inc/admin/admin-notifications-center.php:757
|
1851 |
+
#: inc/admin/admin-notifications-center.php:776
|
1852 |
+
msgid "Fix this!"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: inc/admin/admin-notifications-center.php:180
|
1856 |
+
msgid "Your permalinks doesn't have a trailingslash"
|
1857 |
+
msgstr ""
|
1858 |
+
|
1859 |
+
#: inc/admin/admin-notifications-center.php:181
|
1860 |
+
msgid ""
|
1861 |
+
"To avoid any SEO issues, we recommend you to activate the \"<strong>Disable "
|
1862 |
+
"trailing slash for metas</strong>\" option from our <strong>Advanced "
|
1863 |
+
"settings page</strong>. Do not forget to clear your cache if necessary."
|
1864 |
+
msgstr ""
|
1865 |
+
|
1866 |
+
#: inc/admin/admin-notifications-center.php:198
|
1867 |
+
msgid "Your permalinks have a trailingslash"
|
1868 |
+
msgstr ""
|
1869 |
+
|
1870 |
+
#: inc/admin/admin-notifications-center.php:199
|
1871 |
+
msgid ""
|
1872 |
+
"To avoid any SEO issues, we recommend you to de-activate the "
|
1873 |
+
"\"<strong>Disable trailing slash for metas</strong>\" option from our "
|
1874 |
+
"<strong>Advanced settings page</strong>. Do not forget to clear your cache "
|
1875 |
+
"if necessary."
|
1876 |
+
msgstr ""
|
1877 |
+
|
1878 |
+
#: inc/admin/admin-notifications-center.php:227
|
1879 |
+
msgid ""
|
1880 |
+
"TagDiv Composer plugin doesn't use <strong>add_theme_support('title-tag');</"
|
1881 |
+
"strong>"
|
1882 |
+
msgstr ""
|
1883 |
+
|
1884 |
+
#: inc/admin/admin-notifications-center.php:228
|
1885 |
+
msgid ""
|
1886 |
+
"Fix this compatibility issue to allow SEOPress generates the correct meta "
|
1887 |
+
"titles."
|
1888 |
+
msgstr ""
|
1889 |
+
|
1890 |
+
#: inc/admin/admin-notifications-center.php:258
|
1891 |
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: inc/admin/admin-notifications-center.php:259
|
1895 |
msgid ""
|
1896 |
"This error indicates that your theme uses a deprecated function to generate "
|
1897 |
"the title tag of your pages. SEOPress will not be able to generate your "
|
1898 |
"custom title tags if this error is not fixed."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: inc/admin/admin-notifications-center.php:266
|
1902 |
+
#: inc/admin/admin-notifications-center.php:347
|
1903 |
+
#: inc/admin/admin-notifications-center.php:386
|
1904 |
+
#: inc/admin/admin-notifications-center.php:448
|
1905 |
+
#: inc/admin/admin-notifications-center.php:474 inc/admin/admin.php:5093
|
1906 |
+
#: inc/admin/admin.php:5133 inc/admin/admin.php:5160 inc/admin/admin.php:5182
|
1907 |
+
#: inc/admin/admin.php:5204 inc/admin/admin.php:5226
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1908 |
msgid "Learn more"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: inc/admin/admin-notifications-center.php:292
|
1912 |
#, php-format
|
1913 |
msgid "We noticed that you use <strong>%s</strong> plugin."
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: inc/admin/admin-notifications-center.php:293
|
1917 |
msgid ""
|
1918 |
"Do you want to migrate all your metadata to SEOPress? Do not use multiple "
|
1919 |
"SEO plugins at once to avoid conflicts!"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: inc/admin/admin-notifications-center.php:299
|
1923 |
msgid "Migrate!"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: inc/admin/admin-notifications-center.php:312
|
1927 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: inc/admin/admin-notifications-center.php:313
|
1931 |
msgid ""
|
1932 |
"To solve this, please disable and re-enable SEOPress PRO. No data will be "
|
1933 |
"lost."
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: inc/admin/admin-notifications-center.php:339
|
1937 |
#, php-format
|
1938 |
msgid "Generate automatic meta description for <strong>%s</strong> plugin."
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: inc/admin/admin-notifications-center.php:340
|
1942 |
msgid ""
|
1943 |
"Your page builder is using shortcodes to save its data. To automatically "
|
1944 |
"generate your meta description based on your post content, you will have to "
|
1945 |
"add some hooks to your functions.php."
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: inc/admin/admin-notifications-center.php:342
|
1949 |
+
#: inc/admin/admin-notifications-center.php:381
|
1950 |
+
#: inc/admin/admin-notifications-center.php:563
|
1951 |
+
#: inc/admin/admin-notifications-center.php:652
|
1952 |
+
#: inc/admin/admin-notifications-center.php:670
|
1953 |
msgid "Medium impact"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: inc/admin/admin-notifications-center.php:378
|
1957 |
#, php-format
|
1958 |
msgid "Generate automatic meta description for <strong>%s</strong> theme."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: inc/admin/admin-notifications-center.php:379
|
1962 |
msgid ""
|
1963 |
"Your theme is using shortcodes to save its data. To automatically generate "
|
1964 |
"your meta description based on your post content, you will have to add some "
|
1965 |
"hooks to your functions.php."
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: inc/admin/admin-notifications-center.php:416
|
1969 |
msgid "Enfold theme is not correctly setup for SEO!"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: inc/admin/admin-notifications-center.php:417
|
1973 |
msgid ""
|
1974 |
"You must disable \"Meta tag robots\" option from Enfold settings (SEO "
|
1975 |
"Support tab) to avoid any SEO issues."
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: inc/admin/admin-notifications-center.php:447
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1979 |
msgid "Your site doesn't use an SSL certificate!"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: inc/admin/admin-notifications-center.php:448
|
1983 |
msgid ""
|
1984 |
"Https is considered by Google as a positive signal for the ranking of your "
|
1985 |
"site. It also reassures your visitors for data security, and improves trust."
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: inc/admin/admin-notifications-center.php:450
|
1989 |
msgid "Low impact"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: inc/admin/admin-notifications-center.php:454
|
1993 |
msgid "Buy an SSL!"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: inc/admin/admin-notifications-center.php:466
|
1997 |
msgid "PHP module \"DOM\" is missing on your server."
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: inc/admin/admin-notifications-center.php:467
|
2001 |
msgid ""
|
2002 |
"This PHP module, installed by default with PHP, is required by many plugins "
|
2003 |
"including SEOPress. Please contact your host as soon as possible to solve "
|
2004 |
"this."
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: inc/admin/admin-notifications-center.php:496
|
2008 |
msgid "Your site is not visible to Search Engines!"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: inc/admin/admin-notifications-center.php:497
|
2012 |
msgid ""
|
2013 |
"You have activated the blocking of the indexing of your site. If your site "
|
2014 |
"is under development, this is probably normal. Otherwise, check your "
|
2016 |
"not concerned."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: inc/admin/admin-notifications-center.php:514
|
2020 |
msgid "Your site title is empty!"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: inc/admin/admin-notifications-center.php:515
|
2024 |
msgid ""
|
2025 |
"Your Site Title is used by WordPress, your theme and your plugins including "
|
2026 |
"SEOPress. It is an essential component in the generation of title tags, but "
|
2027 |
"not only. Enter one!"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: inc/admin/admin-notifications-center.php:531 inc/admin/admin.php:2944
|
2031 |
msgid ""
|
2032 |
"Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: inc/admin/admin-notifications-center.php:532
|
2036 |
+
#: inc/admin/admin-notifications-center.php:561
|
2037 |
msgid ""
|
2038 |
"Why is this important? Showing only the summary of each article "
|
2039 |
"significantly reduces the theft of your content by third party sites. Not to "
|
2041 |
"conversions..."
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: inc/admin/admin-notifications-center.php:560
|
2045 |
msgid "Your RSS feed shows full text!"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: inc/admin/admin-notifications-center.php:590
|
2049 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: inc/admin/admin-notifications-center.php:591
|
2053 |
msgid ""
|
2054 |
"Support the development and improvement of the plugin by taking 15 seconds "
|
2055 |
"of your time to leave us a user review on the official WordPress plugins "
|
2056 |
"repository. Thank you!"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: inc/admin/admin-notifications-center.php:593
|
2060 |
msgid "Information"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: inc/admin/admin-notifications-center.php:597
|
2064 |
msgid "Rate us!"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: inc/admin/admin-notifications-center.php:619
|
2068 |
msgid "Break comments into pages is ON!"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: inc/admin/admin-notifications-center.php:620
|
2072 |
msgid ""
|
2073 |
"Enabling this option will create duplicate content for each article beyond x "
|
2074 |
"comments. This can have a disastrous effect by creating a large number of "
|
2076 |
"ranking in search results."
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: inc/admin/admin-notifications-center.php:626
|
2080 |
msgid "Disable this!"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: inc/admin/admin-notifications-center.php:649
|
2084 |
msgid "Display more posts per page on homepage and archives"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: inc/admin/admin-notifications-center.php:650
|
2088 |
msgid ""
|
2089 |
"To reduce the number pages search engines have to crawl to find all your "
|
2090 |
"articles, it is recommended displaying more posts per page. This should not "
|
2092 |
"than clicking on next page links."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: inc/admin/admin-notifications-center.php:667
|
2096 |
msgid "You don't have an XML Sitemap!"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: inc/admin/admin-notifications-center.php:668
|
2100 |
msgid ""
|
2101 |
"XML Sitemaps are useful to facilitate the crawling of your content by search "
|
2102 |
"engine robots. Indirectly, this can benefit your ranking by reducing the "
|
2103 |
"crawl bugdet."
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: inc/admin/admin-notifications-center.php:695
|
2107 |
msgid "Do you have a Google My Business page? It's free!"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: inc/admin/admin-notifications-center.php:696
|
2111 |
msgid ""
|
2112 |
"Local Business websites should have a My Business page to improve visibility "
|
2113 |
"in search results. Click on the cross on the right to delete this "
|
2114 |
"notification if you are not concerned."
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: inc/admin/admin-notifications-center.php:702
|
2118 |
msgid "Create your page now!"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: inc/admin/admin-notifications-center.php:732
|
2122 |
msgid "Add your site to Google. It's free!"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: inc/admin/admin-notifications-center.php:733
|
2126 |
msgid ""
|
2127 |
"Is your brand new site online? So reference it as quickly as possible on "
|
2128 |
"Google to get your first visitors via Google Search Console. Already the "
|
2129 |
"case? Click on the cross on the right to remove this alert."
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: inc/admin/admin-notifications-center.php:739
|
2133 |
msgid "Add your site to Search Console!"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: inc/admin/admin-notifications-center.php:750
|
2137 |
msgid "Structured data types is not correctly enabled"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: inc/admin/admin-notifications-center.php:751
|
2141 |
msgid ""
|
2142 |
"Please enable <strong>Structured Data Types metabox for your posts, pages "
|
2143 |
"and custom post types</strong> option in order to use automatic and manual "
|
2144 |
"schemas. (SEO > PRO > Structured Data Types (schema.org)"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
+
#: inc/admin/admin-notifications-center.php:769
|
2148 |
msgid "You have to enter your licence key to get updates and support"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: inc/admin/admin-notifications-center.php:770
|
2152 |
msgid ""
|
2153 |
"Please activate the SEOPress PRO license key to automatically receive "
|
2154 |
"updates to guarantee you the best user experience possible."
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: inc/admin/admin-notifications-center.php:798
|
2158 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: inc/admin/admin-notifications-center.php:799
|
2162 |
msgid ""
|
2163 |
"The PRO version of SEOPress allows you to easily manage your structured data "
|
2164 |
"(schemas), add a breadcrumb optimized for SEO and accessibility, improve SEO "
|
2166 |
"of your metadata and so much more."
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: inc/admin/admin-notifications-center.php:806
|
2170 |
msgid "Upgrade now!"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: inc/admin/admin-notifications-center.php:823
|
2174 |
msgid "Check websites setup on your server"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: inc/admin/admin-notifications-center.php:832
|
2178 |
msgid "Not found"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: inc/admin/admin-notifications-center.php:837
|
2182 |
msgid "No scrape."
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: inc/admin/admin-notifications-center.php:842
|
2186 |
msgid "No domain found."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: inc/admin/admin-notifications-center.php:852
|
2190 |
msgid "Server IP Address: "
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: inc/admin/admin-notifications-center.php:855
|
2194 |
msgid "Last scrape: "
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: inc/admin/admin-notifications-center.php:856
|
2198 |
msgid "Number of websites on your server: "
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: inc/admin/admin-notifications-center.php:869
|
2202 |
msgid "Get list"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: inc/admin/admin-notifications-center.php:878
|
2206 |
msgid "Our blog: SEO news, how-to, tips and tricks..."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: inc/admin/admin-notifications-center.php:879
|
2210 |
msgid "Upload a list of links to disavow to Google"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: inc/admin/admin-notifications-center.php:881
|
2214 |
msgid ""
|
2215 |
"Image SEO plugin to optimize your image ALT texts and names for Search "
|
2216 |
"Engines."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: inc/admin/admin-notifications-center.php:883
|
2220 |
msgid "Dareboost: Test, analyze and optimize your website"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: inc/admin/admin-notifications-center.php:884
|
2224 |
msgid "Google Campaign URL Builder tool"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: inc/admin/admin-wizard.php:104 seopress.php:225
|
2228 |
msgid "Migration completed!"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: inc/admin/admin-wizard.php:105 seopress.php:226
|
2232 |
msgid "Export completed!"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: inc/admin/admin-wizard.php:120
|
2236 |
msgid "Import SEO settings"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: inc/admin/admin-wizard.php:125 inc/admin/admin-wizard.php:504
|
2240 |
msgid "Your site"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: inc/admin/admin-wizard.php:130 inc/admin/admin-wizard.php:614
|
2244 |
msgid "Indexing"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: inc/admin/admin-wizard.php:135 inc/admin/admin-wizard.php:770
|
2248 |
msgid "Advanced options"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: inc/admin/admin-wizard.php:140
|
2252 |
msgid "Ready!"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
+
#: inc/admin/admin-wizard.php:199
|
2256 |
msgid "SEOPress › Setup Wizard"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: inc/admin/admin-wizard.php:215
|
2260 |
msgid "Not right now"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: inc/admin/admin-wizard.php:217
|
2264 |
msgid "Skip this step"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: inc/admin/admin-wizard.php:275
|
2268 |
msgid "Welcome!"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: inc/admin/admin-wizard.php:276
|
2272 |
msgid ""
|
2273 |
"The following wizard will help you configure SEOPress and get you started "
|
2274 |
"quickly."
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: inc/admin/admin-wizard.php:277
|
2278 |
msgid ""
|
2279 |
"The first step is to import your previous settings from other plugins to "
|
2280 |
"keep your SEO."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: inc/admin/admin-wizard.php:278
|
2284 |
msgid "No data to migrate? Click \"Next step\" button!"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: inc/admin/admin-wizard.php:280 inc/admin/admin.php:797
|
2288 |
msgid "Import posts and terms metadata from"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: inc/admin/admin-wizard.php:282 inc/admin/admin.php:799
|
2292 |
+
#: inc/admin/admin.php:1000
|
2293 |
msgid "Select an option"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: inc/admin/admin-wizard.php:283 inc/admin/admin.php:800
|
2297 |
msgid "Yoast SEO"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: inc/admin/admin-wizard.php:284 inc/admin/admin.php:801
|
2301 |
msgid "All In One SEO"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: inc/admin/admin-wizard.php:285 inc/admin/admin.php:802
|
2305 |
msgid "The SEO Framework"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: inc/admin/admin-wizard.php:286 inc/admin/admin.php:803
|
2309 |
msgid "Rank Math"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: inc/admin/admin-wizard.php:287 inc/admin/admin.php:804
|
2313 |
msgid "Squirrly SEO"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: inc/admin/admin-wizard.php:288 inc/admin/admin.php:805
|
2317 |
msgid "SEO Ultimate"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: inc/admin/admin-wizard.php:289 inc/admin/admin.php:806
|
2321 |
msgid "WP Meta SEO"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: inc/admin/admin-wizard.php:290 inc/admin/admin.php:807
|
2325 |
msgid "Premium SEO Pack"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: inc/admin/admin-wizard.php:291 inc/admin/admin.php:808
|
2329 |
+
msgid "wpSEO"
|
2330 |
+
msgstr ""
|
2331 |
+
|
2332 |
+
#: inc/admin/admin-wizard.php:299 inc/admin/admin.php:815
|
2333 |
msgid "Import posts and terms metadata from Yoast"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: inc/admin/admin-wizard.php:300 inc/admin/admin-wizard.php:320
|
2337 |
+
#: inc/admin/admin-wizard.php:337 inc/admin/admin-wizard.php:356
|
2338 |
+
#: inc/admin/admin-wizard.php:375 inc/admin/admin-wizard.php:393
|
2339 |
+
#: inc/admin/admin-wizard.php:410 inc/admin/admin-wizard.php:426
|
2340 |
+
#: inc/admin/admin-wizard.php:445 inc/admin/admin.php:816
|
2341 |
+
#: inc/admin/admin.php:838 inc/admin/admin.php:857 inc/admin/admin.php:878
|
2342 |
+
#: inc/admin/admin.php:899 inc/admin/admin.php:919 inc/admin/admin.php:938
|
2343 |
+
#: inc/admin/admin.php:956 inc/admin/admin.php:976
|
2344 |
msgid "By clicking Migrate, we'll import:"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: inc/admin/admin-wizard.php:302 inc/admin/admin-wizard.php:322
|
2348 |
+
#: inc/admin/admin-wizard.php:339 inc/admin/admin-wizard.php:358
|
2349 |
+
#: inc/admin/admin-wizard.php:377 inc/admin/admin-wizard.php:395
|
2350 |
+
#: inc/admin/admin-wizard.php:412 inc/admin/admin-wizard.php:428
|
2351 |
+
#: inc/admin/admin-wizard.php:447 inc/admin/admin.php:818
|
2352 |
+
#: inc/admin/admin.php:840 inc/admin/admin.php:859 inc/admin/admin.php:880
|
2353 |
+
#: inc/admin/admin.php:901 inc/admin/admin.php:921 inc/admin/admin.php:940
|
2354 |
+
#: inc/admin/admin.php:958 inc/admin/admin.php:978
|
2355 |
msgid "Title tags"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: inc/admin/admin-wizard.php:304 inc/admin/admin-wizard.php:324
|
2359 |
+
#: inc/admin/admin-wizard.php:341 inc/admin/admin-wizard.php:360
|
2360 |
+
#: inc/admin/admin-wizard.php:379 inc/admin/admin-wizard.php:397
|
2361 |
+
#: inc/admin/admin-wizard.php:414 inc/admin/admin-wizard.php:430
|
2362 |
+
#: inc/admin/admin-wizard.php:449 inc/admin/admin.php:820
|
2363 |
+
#: inc/admin/admin.php:842 inc/admin/admin.php:861 inc/admin/admin.php:882
|
2364 |
+
#: inc/admin/admin.php:903 inc/admin/admin.php:923 inc/admin/admin.php:942
|
2365 |
+
#: inc/admin/admin.php:960 inc/admin/admin.php:980
|
2366 |
msgid "Facebook Open Graph tags (title, description and image thumbnail)"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: inc/admin/admin-wizard.php:305 inc/admin/admin-wizard.php:342
|
2370 |
+
#: inc/admin/admin-wizard.php:361 inc/admin/admin-wizard.php:380
|
2371 |
+
#: inc/admin/admin-wizard.php:398 inc/admin/admin-wizard.php:415
|
2372 |
+
#: inc/admin/admin-wizard.php:450 inc/admin/admin.php:821
|
2373 |
+
#: inc/admin/admin.php:862 inc/admin/admin.php:883 inc/admin/admin.php:904
|
2374 |
+
#: inc/admin/admin.php:924 inc/admin/admin.php:943 inc/admin/admin.php:981
|
2375 |
msgid "Twitter tags (title, description and image thumbnail)"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: inc/admin/admin-wizard.php:306 inc/admin/admin.php:822
|
2379 |
msgid "Meta Robots (noindex, nofollow...)"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: inc/admin/admin-wizard.php:308 inc/admin/admin-wizard.php:364
|
2383 |
+
#: inc/admin/admin-wizard.php:433 inc/admin/admin.php:824
|
2384 |
+
#: inc/admin/admin.php:886 inc/admin/admin.php:963
|
2385 |
msgid "Focus keywords"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: inc/admin/admin-wizard.php:309 inc/admin/admin.php:825
|
2389 |
msgid "Primary category"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: inc/admin/admin-wizard.php:311 inc/admin/admin.php:827
|
2393 |
msgid ""
|
2394 |
"<strong>WARNING:</strong> Migration will delete / update all SEOPress posts "
|
2395 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
2396 |
"NOT delete any Yoast data."
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: inc/admin/admin-wizard.php:312 inc/admin/admin-wizard.php:329
|
2400 |
+
#: inc/admin/admin-wizard.php:348 inc/admin/admin-wizard.php:367
|
2401 |
+
#: inc/admin/admin-wizard.php:385 inc/admin/admin-wizard.php:402
|
2402 |
+
#: inc/admin/admin-wizard.php:418 inc/admin/admin-wizard.php:436
|
2403 |
+
#: inc/admin/admin-wizard.php:457 inc/admin/admin.php:828
|
2404 |
+
#: inc/admin/admin.php:847 inc/admin/admin.php:868 inc/admin/admin.php:889
|
2405 |
+
#: inc/admin/admin.php:909 inc/admin/admin.php:928 inc/admin/admin.php:946
|
2406 |
+
#: inc/admin/admin.php:966 inc/admin/admin.php:988
|
2407 |
msgid "Migrate now"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: inc/admin/admin-wizard.php:319 inc/admin/admin.php:837
|
2411 |
msgid "Import posts and terms metadata from All In One SEO"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: inc/admin/admin-wizard.php:325 inc/admin/admin.php:843
|
2415 |
msgid "Twitter image thumbnail"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: inc/admin/admin-wizard.php:326 inc/admin/admin-wizard.php:431
|
2419 |
+
#: inc/admin/admin-wizard.php:451 inc/admin/admin.php:844
|
2420 |
+
#: inc/admin/admin.php:961 inc/admin/admin.php:982
|
2421 |
msgid "Meta Robots (noindex, nofollow)"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: inc/admin/admin-wizard.php:328 inc/admin/admin.php:846
|
2425 |
msgid ""
|
2426 |
"<strong>WARNING:</strong> Migration will update/delete all SEOPress posts "
|
2427 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
2428 |
"NOT delete any AIO data."
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: inc/admin/admin-wizard.php:336 inc/admin/admin.php:856
|
2432 |
msgid "Import posts and terms metadata from The SEO Framework"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: inc/admin/admin-wizard.php:343 inc/admin/admin.php:863
|
2436 |
msgid "Meta Robots (noindex, nofollow, noarchive)"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: inc/admin/admin-wizard.php:345 inc/admin/admin-wizard.php:453
|
2440 |
+
#: inc/admin/admin.php:865 inc/admin/admin.php:984
|
2441 |
#: inc/functions/options-advanced-admin.php:402
|
2442 |
msgid "Redirect URL"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: inc/admin/admin-wizard.php:347 inc/admin/admin.php:867
|
2446 |
msgid ""
|
2447 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2448 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
2449 |
"NOT delete any SEO Framework data."
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: inc/admin/admin-wizard.php:355 inc/admin/admin.php:877
|
2453 |
msgid "Import posts and terms metadata from Rank Math"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: inc/admin/admin-wizard.php:362 inc/admin/admin.php:884
|
2457 |
msgid "Meta Robots (noindex, nofollow, noarchive, noimageindex)"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: inc/admin/admin-wizard.php:366 inc/admin/admin.php:888
|
2461 |
msgid ""
|
2462 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2463 |
"and terms metadata. Some dynamic variables will not be interpreted. We do "
|
2464 |
"NOT delete any Rank Math data."
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: inc/admin/admin-wizard.php:374 inc/admin/admin.php:898
|
2468 |
msgid "Import posts metadata from Squirrly SEO"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: inc/admin/admin-wizard.php:381 inc/admin/admin-wizard.php:399
|
2472 |
+
#: inc/admin/admin.php:905 inc/admin/admin.php:925
|
2473 |
msgid "Meta Robots (noindex or nofollow)"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: inc/admin/admin-wizard.php:384
|
2477 |
msgid ""
|
2478 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2479 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
2480 |
"any Squirrly SEO data."
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: inc/admin/admin-wizard.php:392 inc/admin/admin.php:918
|
2484 |
msgid "Import posts metadata from SEO Ultimate"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: inc/admin/admin-wizard.php:401 inc/admin/admin.php:927
|
2488 |
msgid ""
|
2489 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2490 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
2491 |
"any SEO Ultimate data."
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: inc/admin/admin-wizard.php:409 inc/admin/admin.php:937
|
2495 |
msgid "Import posts and terms metadata from WP Meta SEO"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: inc/admin/admin-wizard.php:417 inc/admin/admin.php:945
|
2499 |
msgid ""
|
2500 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2501 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
2502 |
"any WP Meta SEO data."
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: inc/admin/admin-wizard.php:425 inc/admin/admin.php:955
|
2506 |
msgid "Import posts and terms metadata from Premium SEO Pack"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: inc/admin/admin-wizard.php:435 inc/admin/admin.php:965
|
2510 |
msgid ""
|
2511 |
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2512 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
2513 |
"any Premium SEO Pack data."
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: inc/admin/admin-wizard.php:444 inc/admin/admin.php:975
|
2517 |
+
msgid "Import posts and terms metadata from wpSEO"
|
2518 |
+
msgstr ""
|
2519 |
+
|
2520 |
+
#: inc/admin/admin-wizard.php:454 inc/admin/admin.php:985
|
2521 |
+
msgid "Main keyword"
|
2522 |
+
msgstr ""
|
2523 |
+
|
2524 |
+
#: inc/admin/admin-wizard.php:456 inc/admin/admin.php:987
|
2525 |
+
msgid ""
|
2526 |
+
"<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
|
2527 |
+
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
2528 |
+
"any wpSEO data."
|
2529 |
+
msgstr ""
|
2530 |
+
|
2531 |
+
#: inc/admin/admin-wizard.php:465 inc/admin/admin-wizard.php:895
|
2532 |
msgid "Next step"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: inc/admin/admin-wizard.php:506
|
2536 |
msgid ""
|
2537 |
"To build title tags and knowledge graph for Google, you need to fill out the "
|
2538 |
"fields below to configure the general settings. "
|
2539 |
msgstr ""
|
2540 |
|
2541 |
+
#: inc/admin/admin-wizard.php:509
|
2542 |
msgid "eg: |"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: inc/admin/admin-wizard.php:511 inc/admin/admin.php:1295
|
2546 |
+
#: inc/admin/admin.php:3120
|
2547 |
msgid "Site title"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: inc/admin/admin-wizard.php:512
|
2551 |
msgid "eg: My super website"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: inc/admin/admin-wizard.php:514 inc/admin/admin.php:1724
|
2555 |
msgid "Person or organization"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: inc/admin/admin-wizard.php:516
|
2559 |
msgid "Choose a knowledge type"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: inc/admin/admin-wizard.php:522 inc/admin/admin.php:4370
|
2563 |
msgid "Person"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: inc/admin/admin-wizard.php:525 inc/admin/admin.php:4373
|
2567 |
msgid "Organization"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: inc/admin/admin-wizard.php:529 inc/admin/admin.php:1732
|
2571 |
+
#: inc/admin/admin.php:4386
|
2572 |
msgid "Your name/organization"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: inc/admin/admin-wizard.php:530
|
2576 |
msgid "eg: My Company Name"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: inc/admin/admin-wizard.php:532 inc/admin/admin.php:1740
|
2580 |
+
#: inc/admin/admin.php:4399
|
2581 |
msgid "Your photo/organization logo"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: inc/admin/admin-wizard.php:533
|
2585 |
msgid "eg: https://www.example.com/logo.png"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: inc/admin/admin-wizard.php:535
|
2589 |
msgid "Facebook page URL"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: inc/admin/admin-wizard.php:536 inc/admin/admin.php:4507
|
2593 |
msgid "eg: https://facebook.com/my-page-url"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: inc/admin/admin-wizard.php:538 inc/admin/admin.php:1789
|
2597 |
msgid "Twitter Username"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: inc/admin/admin-wizard.php:539 inc/admin/admin.php:4520
|
2601 |
msgid "eg: @my_twitter_account"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: inc/admin/admin-wizard.php:541 inc/admin/admin.php:1797
|
2605 |
+
#: inc/admin/admin.php:4532
|
2606 |
msgid "Pinterest URL"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: inc/admin/admin-wizard.php:542 inc/admin/admin.php:4532
|
2610 |
msgid "eg: https://pinterest.com/my-page-url/"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: inc/admin/admin-wizard.php:544 inc/admin/admin.php:1805
|
2614 |
+
#: inc/admin/admin.php:4544
|
2615 |
msgid "Instagram URL"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: inc/admin/admin-wizard.php:545 inc/admin/admin.php:4544
|
2619 |
msgid "eg: https://www.instagram.com/my-page-url/"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: inc/admin/admin-wizard.php:547 inc/admin/admin.php:1813
|
2623 |
+
#: inc/admin/admin.php:4556
|
2624 |
msgid "YouTube URL"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: inc/admin/admin-wizard.php:548 inc/admin/admin.php:4556
|
2628 |
msgid "eg: https://www.youtube.com/my-channel-url"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: inc/admin/admin-wizard.php:550 inc/admin/admin.php:1821
|
2632 |
+
#: inc/admin/admin.php:4568
|
2633 |
msgid "LinkedIn URL"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: inc/admin/admin-wizard.php:551 inc/admin/admin.php:4568
|
2637 |
msgid "eg: http://linkedin.com/company/my-company-url/"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: inc/admin/admin-wizard.php:553 inc/admin/admin.php:1829
|
2641 |
+
#: inc/admin/admin.php:4580
|
2642 |
msgid "MySpace URL"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: inc/admin/admin-wizard.php:554 inc/admin/admin.php:4580
|
2646 |
msgid "eg: https://myspace.com/my-page-url"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: inc/admin/admin-wizard.php:556 inc/admin/admin.php:1837
|
2650 |
+
#: inc/admin/admin.php:4592
|
2651 |
msgid "Soundcloud URL"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: inc/admin/admin-wizard.php:557 inc/admin/admin.php:4592
|
2655 |
msgid "eg: https://soundcloud.com/my-page-url"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: inc/admin/admin-wizard.php:559 inc/admin/admin.php:1845
|
2659 |
+
#: inc/admin/admin.php:4604
|
2660 |
msgid "Tumblr URL"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: inc/admin/admin-wizard.php:560 inc/admin/admin.php:4604
|
2664 |
msgid "eg: https://your-site.tumblr.com"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: inc/admin/admin-wizard.php:563 inc/admin/admin-wizard.php:706
|
2668 |
+
#: inc/admin/admin-wizard.php:813
|
2669 |
msgid "Continue"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: inc/admin/admin-wizard.php:615
|
2673 |
msgid "Specify to the search engines what you want to be indexed or not."
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: inc/admin/admin-wizard.php:616
|
2677 |
msgid "Avoid indexing duplicate or poor quality content."
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: inc/admin/admin-wizard.php:617
|
2681 |
msgid "Default: index"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: inc/admin/admin-wizard.php:622
|
2685 |
msgid "For which single post types, should indexing be disabled?"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: inc/admin/admin-wizard.php:639
|
2689 |
msgid ""
|
2690 |
"Do not display this single post type in search engine "
|
2691 |
"results <strong>(noindex)</strong>"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: inc/admin/admin-wizard.php:650
|
2695 |
msgid "For which post type archives, should indexing be disabled?"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
+
#: inc/admin/admin-wizard.php:668
|
2699 |
msgid ""
|
2700 |
"Do not display this post type archive in search engine "
|
2701 |
"results <strong>(noindex)</strong>"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: inc/admin/admin-wizard.php:680
|
2705 |
msgid "For which taxonomy archives, should indexing be disabled?"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: inc/admin/admin-wizard.php:697
|
2709 |
msgid ""
|
2710 |
"Do not display this taxonomy archive in search engine "
|
2711 |
"results <strong>(noindex)</strong>"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: inc/admin/admin-wizard.php:780 inc/admin/admin.php:3706
|
2715 |
msgid ""
|
2716 |
"Do not display author archives in search engine results <strong>(noindex)</"
|
2717 |
"strong>"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: inc/admin/admin-wizard.php:783
|
2721 |
msgid ""
|
2722 |
"You only have one author on your site? Check this option to avoid duplicate "
|
2723 |
"content."
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: inc/admin/admin-wizard.php:792 inc/admin/admin.php:5658
|
2727 |
msgid ""
|
2728 |
"Redirect attachment pages to their file URL (https://www.example.com/my-"
|
2729 |
"image-file.jpg)"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: inc/admin/admin-wizard.php:795
|
2733 |
msgid ""
|
2734 |
"By default, SEOPress redirects your Attachment pages to the parent post. "
|
2735 |
"Optimize this by redirecting the user directly to the URL of the media file."
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: inc/admin/admin-wizard.php:804 inc/admin/admin.php:5802
|
2739 |
msgid "Remove /category/ in your permalinks"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: inc/admin/admin-wizard.php:807
|
2743 |
msgid "Shorten your URLs by removing /category/ and improve your SEO."
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: inc/admin/admin-wizard.php:857
|
2747 |
msgid "Your site is now ready for search engines!"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: inc/admin/admin-wizard.php:863 inc/functions/options-advanced-admin.php:19
|
2751 |
msgid "Welcome to SEOPress PRO!"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: inc/admin/admin-wizard.php:866 inc/functions/options-advanced-admin.php:20
|
2755 |
msgid ""
|
2756 |
"Please activate your license to receive automatic updates and get premium "
|
2757 |
"support."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: inc/admin/admin-wizard.php:871 inc/functions/options-advanced-admin.php:21
|
2761 |
msgid "Activate License"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: inc/admin/admin-wizard.php:878
|
2765 |
msgid "Go PRO with SEOPress PRO!"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: inc/admin/admin-wizard.php:881
|
2769 |
msgid ""
|
2770 |
"When you upgrade to the PRO version, you get a lot of additional features, "
|
2771 |
"like automatic and manual schemas, Video Sitemap, WooCommerce enhancements, "
|
2772 |
"Analytics statistics in your Dashboard, breadcrumbs, redirections, and more."
|
2773 |
msgstr ""
|
2774 |
|
2775 |
+
#: inc/admin/admin-wizard.php:886
|
2776 |
msgid "Buy SEOPress PRO - $39 / unlimited sites"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
+
#: inc/admin/admin-wizard.php:896
|
2780 |
msgid "Create your XML sitemaps"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: inc/admin/admin-wizard.php:897
|
2784 |
msgid "Build custom XML sitemaps to improve Google's crawling of your site."
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: inc/admin/admin-wizard.php:902
|
2788 |
msgid "Configure your XML sitemaps"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
+
#: inc/admin/admin-wizard.php:910
|
2792 |
msgid "You can also:"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
+
#: inc/admin/admin-wizard.php:915
|
2796 |
msgid "Visit Dashboard"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: inc/admin/admin-wizard.php:918
|
2800 |
msgid "Review Settings"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: inc/admin/admin-wizard.php:921
|
2804 |
msgid "Knowledge base"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: inc/admin/admin.php:127
|
2808 |
msgid "404 - Page not found"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: inc/admin/admin.php:234
|
2812 |
msgid "Dashboard"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: inc/admin/admin.php:247
|
2816 |
#, php-format
|
2817 |
msgid "%%sep%%"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: inc/admin/admin.php:247
|
2821 |
msgid "Separator (eg: - )"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: inc/admin/admin.php:248
|
2825 |
#, php-format
|
2826 |
msgid "%%sitetitle%% (alias: %%sitename%%)"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
+
#: inc/admin/admin.php:249
|
2830 |
#, php-format
|
2831 |
msgid "%%tagline%% (alias %%sitedesc%%)"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: inc/admin/admin.php:249 inc/admin/admin.php:3125 inc/admin/admin.php:3136
|
2835 |
msgid "Tagline"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: inc/admin/admin.php:250
|
2839 |
#, php-format
|
2840 |
msgid "%%post_title%% (alias %%title%%)"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: inc/admin/admin.php:250
|
2844 |
msgid "Post Title (post, page, custom post type)"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: inc/admin/admin.php:251
|
2848 |
#, php-format
|
2849 |
msgid "%%post_excerpt%% (alias %%excerpt%%)"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: inc/admin/admin.php:251
|
2853 |
msgid "Post excerpt"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: inc/admin/admin.php:252
|
2857 |
#, php-format
|
2858 |
msgid "%%post_content%%"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: inc/admin/admin.php:252
|
2862 |
msgid "Post content / product long description"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: inc/admin/admin.php:253
|
2866 |
#, php-format
|
2867 |
msgid "%%post_thumbnail_url%%"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: inc/admin/admin.php:253
|
2871 |
msgid "Post thumbnail URL"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: inc/admin/admin.php:254
|
2875 |
+
#, php-format
|
2876 |
+
msgid "%%post_url%%"
|
2877 |
+
msgstr ""
|
2878 |
+
|
2879 |
+
#: inc/admin/admin.php:254
|
2880 |
+
msgid "Post URL (permalink)"
|
2881 |
+
msgstr ""
|
2882 |
+
|
2883 |
+
#: inc/admin/admin.php:255
|
2884 |
#, php-format
|
2885 |
msgid "%%post_date%% (alias %%date%%)"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: inc/admin/admin.php:255
|
2889 |
msgid "Post date"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: inc/admin/admin.php:256
|
2893 |
#, php-format
|
2894 |
msgid "%%post_modified_date%%"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: inc/admin/admin.php:256
|
2898 |
msgid "Last modified post date"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: inc/admin/admin.php:257
|
2902 |
#, php-format
|
2903 |
msgid "%%post_author%%"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: inc/admin/admin.php:257 inc/admin/admin.php:3673
|
2907 |
msgid "Post author"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: inc/admin/admin.php:258
|
2911 |
#, php-format
|
2912 |
msgid "%%post_category%%"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: inc/admin/admin.php:258
|
2916 |
msgid "Post category"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: inc/admin/admin.php:259
|
2920 |
#, php-format
|
2921 |
msgid "%%post_tag%%"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: inc/admin/admin.php:259
|
2925 |
msgid "Post tag"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: inc/admin/admin.php:260
|
2929 |
#, php-format
|
2930 |
msgid "%%_category_title%%"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
+
#: inc/admin/admin.php:260
|
2934 |
msgid "Category title"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: inc/admin/admin.php:261
|
2938 |
#, php-format
|
2939 |
msgid "%%_category_description%%"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: inc/admin/admin.php:261
|
2943 |
msgid "Category description"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: inc/admin/admin.php:262
|
2947 |
#, php-format
|
2948 |
msgid "%%tag_title%%"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: inc/admin/admin.php:262
|
2952 |
msgid "Tag title"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: inc/admin/admin.php:263
|
2956 |
#, php-format
|
2957 |
msgid "%%tag_description%%"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: inc/admin/admin.php:263
|
2961 |
msgid "Tag description"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: inc/admin/admin.php:264
|
2965 |
#, php-format
|
2966 |
msgid "%%term_title%%"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
#: inc/admin/admin.php:264
|
2970 |
msgid "Term title"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: inc/admin/admin.php:265
|
2974 |
#, php-format
|
2975 |
msgid "%%term_description%%"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: inc/admin/admin.php:265
|
2979 |
msgid "Term description"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: inc/admin/admin.php:266
|
2983 |
#, php-format
|
2984 |
msgid "%%search_keywords%%"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: inc/admin/admin.php:266
|
2988 |
msgid "Search keywords"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: inc/admin/admin.php:267
|
2992 |
#, php-format
|
2993 |
msgid "%%current_pagination%%"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: inc/admin/admin.php:267
|
2997 |
msgid "Current number page"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: inc/admin/admin.php:268
|
3001 |
#, php-format
|
3002 |
msgid "%%page%%"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: inc/admin/admin.php:268
|
3006 |
msgid "Current page number with context (i.e. page 1 of 3)"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
+
#: inc/admin/admin.php:269
|
3010 |
#, php-format
|
3011 |
msgid "%%cpt_plural%%"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: inc/admin/admin.php:269
|
3015 |
msgid "Plural Post Type Archive name"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: inc/admin/admin.php:270
|
3019 |
#, php-format
|
3020 |
msgid "%%archive_title%%"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: inc/admin/admin.php:270
|
3024 |
msgid "Archive title"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
+
#: inc/admin/admin.php:271
|
3028 |
#, php-format
|
3029 |
msgid "%%archive_date%%"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: inc/admin/admin.php:271
|
3033 |
msgid "Date Archive"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: inc/admin/admin.php:272
|
3037 |
#, php-format
|
3038 |
msgid "%%archive_date_day%%"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: inc/admin/admin.php:272
|
3042 |
msgid "Day Archive date"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: inc/admin/admin.php:273
|
3046 |
#, php-format
|
3047 |
msgid "%%archive_date_month%%"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: inc/admin/admin.php:273
|
3051 |
msgid "Month Archive title"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: inc/admin/admin.php:274
|
3055 |
#, php-format
|
3056 |
msgid "%%archive_date_year%%"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: inc/admin/admin.php:274
|
3060 |
msgid "Year Archive title"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
+
#: inc/admin/admin.php:275
|
3064 |
#, php-format
|
3065 |
msgid "%%_cf_your_custom_field_name%%"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: inc/admin/admin.php:275
|
3069 |
msgid ""
|
3070 |
"Custom fields from post, page or post type (replace <span style=\"color:red;"
|
3071 |
"margin:0\">your_custom_field_name</span> with your custom field name)"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: inc/admin/admin.php:276
|
3075 |
#, php-format
|
3076 |
msgid "%%_ct_your_custom_taxonomy_slug%%"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: inc/admin/admin.php:276
|
3080 |
msgid ""
|
3081 |
"Custom term taxonomy from post, page or post type (replace <span style="
|
3082 |
"\"color:red;margin:0\">your_custom_taxonomy_slug</span> with your custom "
|
3083 |
"taxonomy slug)"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: inc/admin/admin.php:277
|
3087 |
#, php-format
|
3088 |
msgid "%%wc_single_cat%%"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: inc/admin/admin.php:277
|
3092 |
msgid "Single product category"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: inc/admin/admin.php:278
|
3096 |
#, php-format
|
3097 |
msgid "%%wc_single_tag%%"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: inc/admin/admin.php:278
|
3101 |
msgid "Single product tag"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: inc/admin/admin.php:279
|
3105 |
#, php-format
|
3106 |
msgid "%%wc_single_short_desc%%"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: inc/admin/admin.php:279
|
3110 |
msgid "Single product short description"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: inc/admin/admin.php:280
|
3114 |
#, php-format
|
3115 |
msgid "%%wc_single_price%%"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: inc/admin/admin.php:280
|
3119 |
msgid "Single product price"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: inc/admin/admin.php:281
|
3123 |
#, php-format
|
3124 |
msgid "%%wc_single_price_exc_tax%%"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: inc/admin/admin.php:281
|
3128 |
msgid "Single product price taxes excluded"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: inc/admin/admin.php:282
|
3132 |
#, php-format
|
3133 |
msgid "%%wc_sku%%"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: inc/admin/admin.php:282
|
3137 |
msgid "Single SKU product"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: inc/admin/admin.php:283
|
3141 |
#, php-format
|
3142 |
msgid "%%currentday%%"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: inc/admin/admin.php:283
|
3146 |
msgid "Current day"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: inc/admin/admin.php:284
|
3150 |
#, php-format
|
3151 |
msgid "%%currentmonth%%"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: inc/admin/admin.php:284
|
3155 |
msgid "Current month"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: inc/admin/admin.php:285
|
3159 |
#, php-format
|
3160 |
msgid "%%currentmonth_short%%"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: inc/admin/admin.php:285
|
3164 |
msgid "Current month in 3 letters, eg: \"Jan\" for \"January\""
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: inc/admin/admin.php:286
|
3168 |
#, php-format
|
3169 |
msgid "%%currentyear%%"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: inc/admin/admin.php:286
|
3173 |
msgid "Current year"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: inc/admin/admin.php:287
|
3177 |
#, php-format
|
3178 |
msgid "%%currentdate%%"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: inc/admin/admin.php:287
|
3182 |
msgid "Current date"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: inc/admin/admin.php:288
|
3186 |
#, php-format
|
3187 |
msgid "%%currenttime%%"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: inc/admin/admin.php:288
|
3191 |
msgid "Current time"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: inc/admin/admin.php:289
|
3195 |
#, php-format
|
3196 |
msgid "%%author_bio%%"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: inc/admin/admin.php:289
|
3200 |
msgid "Author bio, meta desc only"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: inc/admin/admin.php:290
|
3204 |
#, php-format
|
3205 |
msgid "%%currentmonth_num%%"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: inc/admin/admin.php:290
|
3209 |
msgid "Current month in digital format"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: inc/admin/admin.php:296
|
3213 |
msgid "Templates variables"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: inc/admin/admin.php:303 inc/admin/admin.php:311
|
3217 |
msgid "Browse our guides"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: inc/admin/admin.php:304 inc/admin/admin.php:312
|
3221 |
msgid "Read our FAQ"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: inc/admin/admin.php:305 inc/admin/admin.php:313
|
3225 |
msgid "Check our website"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: inc/admin/admin.php:324
|
3229 |
msgid ""
|
3230 |
"Watch our video to learn how to connect your WordPress site with Google "
|
3231 |
"Analytics and get statistics right in your dashboard (PRO only)."
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: inc/admin/admin.php:329
|
3235 |
msgid "How-to"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: inc/admin/admin.php:376 inc/admin/admin.php:380 inc/admin/admin.php:443
|
3239 |
+
#: inc/admin/admin.php:447 inc/admin/admin.php:508 inc/admin/admin.php:512
|
3240 |
+
#: inc/admin/admin.php:575 inc/admin/admin.php:579 inc/admin/admin.php:662
|
3241 |
+
#: inc/admin/admin.php:666
|
3242 |
msgid "Click to disable this feature"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
+
#: inc/admin/admin.php:377 inc/admin/admin.php:379 inc/admin/admin.php:444
|
3246 |
+
#: inc/admin/admin.php:446 inc/admin/admin.php:509 inc/admin/admin.php:511
|
3247 |
+
#: inc/admin/admin.php:576 inc/admin/admin.php:578 inc/admin/admin.php:663
|
3248 |
+
#: inc/admin/admin.php:665
|
3249 |
msgid "Click to enable this feature"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: inc/admin/admin.php:394
|
3253 |
msgid "Home"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: inc/admin/admin.php:395
|
3257 |
msgid "Single Post Types"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: inc/admin/admin.php:396
|
3261 |
msgid "Archives"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: inc/admin/admin.php:397 inc/admin/admin.php:463
|
3265 |
msgid "Taxonomies"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: inc/admin/admin.php:461 inc/admin/admin.php:594 inc/admin/admin.php:605
|
3269 |
msgid "General"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: inc/admin/admin.php:462
|
3273 |
msgid "Post Types"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: inc/admin/admin.php:464
|
3277 |
msgid "HTML Sitemap"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: inc/admin/admin.php:526
|
3281 |
msgid "Knowledge Graph"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: inc/admin/admin.php:527
|
3285 |
msgid "Your social accounts"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: inc/admin/admin.php:528
|
3289 |
msgid "Facebook (Open Graph)"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: inc/admin/admin.php:529
|
3293 |
msgid "Twitter (Twitter card)"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: inc/admin/admin.php:595 inc/admin/admin.php:606
|
3297 |
msgid "Tracking"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: inc/admin/admin.php:596
|
3301 |
msgid "Ecommerce"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: inc/admin/admin.php:597 inc/admin/admin.php:607
|
3305 |
msgid "Events"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: inc/admin/admin.php:598 inc/admin/admin.php:608
|
3309 |
msgid "Custom Dimensions"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: inc/admin/admin.php:599
|
3313 |
msgid "Stats in Dashboard"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: inc/admin/admin.php:600 inc/admin/admin.php:609
|
3317 |
msgid "Cookie bar / GDPR"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: inc/admin/admin.php:601 inc/admin/admin.php:610
|
3321 |
msgid "Matomo"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: inc/admin/admin.php:681
|
3325 |
msgid "Appearance"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: inc/admin/admin.php:682
|
3329 |
msgid "Security"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: inc/admin/admin.php:716
|
3333 |
msgid "Data"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: inc/admin/admin.php:717 seopress.php:427
|
3337 |
msgid "Settings"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: inc/admin/admin.php:718
|
3341 |
msgid "Plugins"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: inc/admin/admin.php:720
|
3345 |
msgid "Reset"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: inc/admin/admin.php:738
|
3349 |
msgid "Import data from a CSV"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: inc/admin/admin.php:739
|
3353 |
msgid ""
|
3354 |
"Import your title, meta description, meta robots, social metas from a CSV "
|
3355 |
"file with our import tool."
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: inc/admin/admin.php:740
|
3359 |
msgid "Run the importer"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: inc/admin/admin.php:745
|
3363 |
msgid "Export metadata to a CSV"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: inc/admin/admin.php:746
|
3367 |
msgid "Export your SEOPress metadata for this site as a .csv file."
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: inc/admin/admin.php:751 inc/admin/admin.php:769 inc/admin/admin.php:1104
|
3371 |
+
#: inc/admin/admin.php:1120
|
3372 |
msgid "Export"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: inc/admin/admin.php:763
|
3376 |
msgid "Export plugin settings"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: inc/admin/admin.php:764
|
3380 |
msgid ""
|
3381 |
"Export the plugin settings for this site as a .json file. This allows you to "
|
3382 |
"easily import the configuration into another site."
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: inc/admin/admin.php:777
|
3386 |
msgid "Import plugin settings"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
+
#: inc/admin/admin.php:778
|
3390 |
msgid ""
|
3391 |
"Import the plugin settings from a .json file. This file can be obtained by "
|
3392 |
"exporting the settings on another site using the form above."
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: inc/admin/admin.php:786 inc/admin/admin.php:1043 inc/admin/admin.php:1059
|
3396 |
+
#: inc/admin/admin.php:1075 inc/admin/admin.php:1091
|
3397 |
msgid "Import"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: inc/admin/admin.php:788
|
3401 |
msgid "Import completed!"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: inc/admin/admin.php:908
|
3405 |
msgid ""
|
3406 |
"<strong>WARNING:</strong> Migration will update/delete all SEOPress posts "
|
3407 |
"metadata. Some dynamic variables will not be interpreted. We do NOT delete "
|
3408 |
"any Squirrly SEO data."
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
#: inc/admin/admin.php:998
|
3412 |
msgid "Import your redirections"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: inc/admin/admin.php:1001
|
3416 |
msgid "CSV file (must match the template)"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: inc/admin/admin.php:1002
|
3420 |
msgid "Redirections plugin (JSON - WordPress Redirects)"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: inc/admin/admin.php:1003
|
3424 |
msgid "Yoast Premium plugin (CSV)"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: inc/admin/admin.php:1004
|
3428 |
msgid "Rank Math plugin (TXT)"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: inc/admin/admin.php:1010
|
3432 |
msgid "Import Redirections"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
+
#: inc/admin/admin.php:1011
|
3436 |
msgid ""
|
3437 |
"Import your own redirections from a .csv file (separator \";\"). You must "
|
3438 |
"have 6 columns in this order:"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: inc/admin/admin.php:1013
|
3442 |
msgid "URL to match (without your domain name)"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
+
#: inc/admin/admin.php:1014
|
3446 |
msgid "URL to redirect in absolute,"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
+
#: inc/admin/admin.php:1015
|
3450 |
msgid "type of redirection (301, 302 or 307, 410, 451),"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
+
#: inc/admin/admin.php:1016
|
3454 |
msgid "Yes to enable the redirect (leave it empty to disable the redirect)"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
+
#: inc/admin/admin.php:1017
|
3458 |
msgid ""
|
3459 |
"the query parameter without the quotes (\"exact_match\" = Exact match with "
|
3460 |
"all parameters, \"without_param\" = Exclude all parameters or "
|
3462 |
"redirection),"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: inc/admin/admin.php:1018
|
3466 |
msgid "and, the last parameter, the counter (optional)."
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: inc/admin/admin.php:1023
|
3470 |
msgid "Download a CSV example"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: inc/admin/admin.php:1026
|
3474 |
+
msgid "Duplicate entries will be automatically removed during import."
|
3475 |
+
msgstr ""
|
3476 |
+
|
3477 |
+
#: inc/admin/admin.php:1027
|
3478 |
+
msgid "Select your separator:"
|
3479 |
+
msgstr ""
|
3480 |
+
|
3481 |
+
#: inc/admin/admin.php:1031
|
3482 |
msgid "Comma separator: \"<strong>,</strong>\""
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: inc/admin/admin.php:1035
|
3486 |
msgid "Semicolon separator: \"<strong>;</strong>\""
|
3487 |
msgstr ""
|
3488 |
|
3489 |
+
#: inc/admin/admin.php:1050
|
3490 |
msgid "Import Redirections from the Redirections plugin"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: inc/admin/admin.php:1051
|
3494 |
msgid ""
|
3495 |
"Import your own redirections from a .json file generated by the Redirections "
|
3496 |
"plugin (make sure to select <strong>\"WordPress redirects\"</strong> when "
|
3499 |
"file and existing redirects."
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: inc/admin/admin.php:1066
|
3503 |
msgid "Import Redirections from Yoast Premium"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: inc/admin/admin.php:1067
|
3507 |
msgid ""
|
3508 |
"Import your own redirections from a .csv file generated by Yoast Premium. "
|
3509 |
"Note that we don't support certain options, like regex. To avoid conflicts, "
|
3510 |
"make sure there are no duplicates between your file and existing redirects."
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: inc/admin/admin.php:1082
|
3514 |
msgid "Import Redirections from Rank Math"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
+
#: inc/admin/admin.php:1083
|
3518 |
msgid ""
|
3519 |
"Import your own redirections from a .txt file generated by Rank Math. Note "
|
3520 |
"that we don't support certain options, like regex. To avoid conflicts, make "
|
3521 |
"sure there are no duplicates between your file and existing redirects."
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: inc/admin/admin.php:1098
|
3525 |
msgid "Export Redirections"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: inc/admin/admin.php:1099
|
3529 |
msgid ""
|
3530 |
"Export all redirections for this site as a .csv file. This allows you to "
|
3531 |
"easily import the redirections into another site, to Excel / Google Sheets..."
|
3532 |
msgstr ""
|
3533 |
|
3534 |
+
#: inc/admin/admin.php:1111
|
3535 |
msgid "Export Redirections for an .htaccess file"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
+
#: inc/admin/admin.php:1112
|
3539 |
msgid ""
|
3540 |
"Export all redirects from this site to a txt file. Then copy and paste the "
|
3541 |
"formatted URLs into your .htaccess file."
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: inc/admin/admin.php:1113
|
3545 |
msgid "Only active redirections will be exported."
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: inc/admin/admin.php:1114
|
3549 |
msgid ""
|
3550 |
"Save your .htaccess file before editing it. <strong>Safety first!</strong>"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
+
#: inc/admin/admin.php:1115
|
3554 |
msgid "Do not forget to test every redirects!"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
+
#: inc/admin/admin.php:1127
|
3558 |
msgid "Clean your 404"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
+
#: inc/admin/admin.php:1128
|
3562 |
msgid "Delete all your 404 errors. We don‘t delete any redirects."
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: inc/admin/admin.php:1129
|
3566 |
#, php-format
|
3567 |
msgid ""
|
3568 |
"Make sure you have enabled 404 cleaning from SEO, PRO, <a href=\"%s"
|
3569 |
"\">404/301</a> tab to be able to delete all your 404 errors."
|
3570 |
msgstr ""
|
3571 |
|
3572 |
+
#: inc/admin/admin.php:1136
|
3573 |
#, php-format
|
3574 |
msgid ""
|
3575 |
"You can also use <span class=\"dashicons dashicons-external\"></span><a href="
|
3576 |
"\"%s\" target=\"_blank\">this MySQL query</a> if necessary."
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: inc/admin/admin.php:1141
|
3580 |
msgid "Delete all 404"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: inc/admin/admin.php:1147
|
3584 |
msgid "Redirections feature is disabled. Please activate it from the PRO page."
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: inc/admin/admin.php:1148
|
3588 |
msgid "Activate Redirections"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: inc/admin/admin.php:1155
|
3592 |
msgid "Reset All Notices From Notifications Center"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: inc/admin/admin.php:1156
|
3596 |
msgid ""
|
3597 |
"By clicking Reset Notices, all notices in the notifications center will be "
|
3598 |
"set to their initial status."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
+
#: inc/admin/admin.php:1161
|
3602 |
msgid "Reset notices"
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: inc/admin/admin.php:1169
|
3606 |
msgid "Reset All Settings"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
+
#: inc/admin/admin.php:1170
|
3610 |
msgid ""
|
3611 |
"<strong>WARNING:</strong> Delete all options related to SEOPress in your "
|
3612 |
"database AND set settings to their default values."
|
3613 |
msgstr ""
|
3614 |
|
3615 |
+
#: inc/admin/admin.php:1175
|
3616 |
msgid "Reset settings"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: inc/admin/admin.php:1512 inc/admin/admin.php:3897
|
3620 |
msgid "noindex"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: inc/admin/admin.php:1520 inc/admin/admin.php:3916
|
3624 |
msgid "nofollow"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: inc/admin/admin.php:1528 inc/admin/admin.php:3935
|
3628 |
msgid "noodp"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: inc/admin/admin.php:1536 inc/admin/admin.php:3954
|
3632 |
msgid "noimageindex"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: inc/admin/admin.php:1544 inc/admin/admin.php:3973
|
3636 |
msgid "noarchive"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: inc/admin/admin.php:1552 inc/admin/admin.php:3992
|
3640 |
msgid "nosnippet"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: inc/admin/admin.php:1560 inc/admin/admin.php:4011
|
3644 |
msgid "nositelinkssearchbox"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: inc/admin/admin.php:1568
|
3648 |
msgid "Indicate paginated content to Google"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: inc/admin/admin.php:1576
|
3652 |
msgid "noindex on paged archives"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: inc/admin/admin.php:1593 inc/admin/admin.php:4066
|
3656 |
msgid "Enable XML Sitemap"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
+
#: inc/admin/admin.php:1601
|
3660 |
msgid "Enable XML Image Sitemaps"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
#: inc/admin/admin.php:1610
|
3664 |
msgid "Enable XML Video Sitemaps"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: inc/admin/admin.php:1619 inc/admin/admin.php:4147
|
3668 |
msgid "Enable Author Sitemap"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: inc/admin/admin.php:1627 inc/admin/admin.php:4166
|
3672 |
msgid "Enable HTML Sitemap"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: inc/admin/admin.php:1643
|
3676 |
msgid "Check to INCLUDE Post Types"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: inc/admin/admin.php:1659
|
3680 |
msgid "Check to INCLUDE Taxonomies"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: inc/admin/admin.php:1675 inc/admin/admin.php:4273
|
3684 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: inc/admin/admin.php:1683 inc/admin/admin.php:4287
|
3688 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: inc/admin/admin.php:1691
|
3692 |
msgid "Sort order"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: inc/admin/admin.php:1699
|
3696 |
msgid "Order posts by"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: inc/admin/admin.php:1707
|
3700 |
msgid "Disable the display of the publication date"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: inc/admin/admin.php:1748 inc/admin/admin.php:4429
|
3704 |
msgid "Organization's phone number (only for Organizations)"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: inc/admin/admin.php:1756
|
3708 |
msgid "Contact type (only for Organizations)"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: inc/admin/admin.php:1764
|
3712 |
msgid "Contact option (only for Organizations)"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: inc/admin/admin.php:1781 inc/admin/admin.php:4507
|
3716 |
msgid "Facebook Page URL"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: inc/admin/admin.php:1862
|
3720 |
msgid "Enable Open Graph Data"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: inc/admin/admin.php:1870 inc/admin/admin.php:4634 inc/admin/admin.php:4683
|
3724 |
msgid "Select a default image"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
#: inc/admin/admin.php:1878
|
3728 |
msgid "Apply this image to all your og:image tag"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
+
#: inc/admin/admin.php:1886
|
3732 |
msgid "Define custom og:image tag for post type archive pages"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: inc/admin/admin.php:1894
|
3736 |
msgid "Facebook Link Ownership ID"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: inc/admin/admin.php:1902
|
3740 |
msgid "Facebook Admin ID"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
+
#: inc/admin/admin.php:1910
|
3744 |
msgid "Facebook App ID"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: inc/admin/admin.php:1927
|
3748 |
msgid "Enable Twitter Card"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: inc/admin/admin.php:1935
|
3752 |
msgid "Use Open Graph if no Twitter Card is filled"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
#: inc/admin/admin.php:1943 inc/admin/admin.php:4780
|
3756 |
msgid "Default Twitter Image"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: inc/admin/admin.php:1951
|
3760 |
msgid "Image size for Twitter Summary card"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: inc/admin/admin.php:1968
|
3764 |
msgid "Enable Google Analytics tracking"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: inc/admin/admin.php:1976 inc/admin/admin.php:2344 inc/admin/admin.php:4833
|
3768 |
msgid "Enter your tracking ID"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: inc/admin/admin.php:1984
|
3772 |
msgid "Exclude user roles from tracking (Google Analytics and Matomo)"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: inc/admin/admin.php:2001
|
3776 |
msgid "Analytics tracking opt-in"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: inc/admin/admin.php:2017
|
3780 |
msgid "Consent message for user tracking"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: inc/admin/admin.php:2025
|
3784 |
msgid "Accept button for user tracking"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: inc/admin/admin.php:2033
|
3788 |
msgid "Close button"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: inc/admin/admin.php:2041
|
3792 |
msgid "Cookie bar position"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: inc/admin/admin.php:2049
|
3796 |
msgid "Cookie bar background color"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: inc/admin/admin.php:2057
|
3800 |
msgid "Cookie bar text color"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: inc/admin/admin.php:2065
|
3804 |
msgid "Cookie bar link color"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: inc/admin/admin.php:2073
|
3808 |
msgid "Cookie bar button background color"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: inc/admin/admin.php:2081
|
3812 |
msgid "Cookie bar button color"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: inc/admin/admin.php:2089
|
3816 |
msgid "Cookie bar button hover background color"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: inc/admin/admin.php:2097
|
3820 |
msgid "Cookie bar button hover color"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: inc/admin/admin.php:2105
|
3824 |
msgid "Cookie bar secondary button background color"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: inc/admin/admin.php:2113
|
3828 |
msgid "Cookie bar secondary button color"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
+
#: inc/admin/admin.php:2121
|
3832 |
msgid "Cookie bar secondary button hover background color"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
+
#: inc/admin/admin.php:2129
|
3836 |
msgid "Cookie bar secondary button hover color"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: inc/admin/admin.php:2147
|
3840 |
msgid "Enable Google Optimize"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: inc/admin/admin.php:2155
|
3844 |
msgid "Enable Google Ads"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: inc/admin/admin.php:2163
|
3848 |
msgid "Add an additional tracking code (like Facebook Pixel, Hotjar...)"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: inc/admin/admin.php:2171
|
3852 |
msgid "[BODY] Add an additional tracking code (like Google Tag Manager...)"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: inc/admin/admin.php:2179
|
3856 |
msgid ""
|
3857 |
"[BODY (FOOTER)] Add an additional tracking code (like Google Tag Manager...)"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: inc/admin/admin.php:2187 inc/admin/admin.php:5157
|
3861 |
msgid "Enable remarketing, demographics, and interests reporting"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: inc/admin/admin.php:2195 inc/admin/admin.php:5179
|
3865 |
msgid "Enable IP Anonymization"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: inc/admin/admin.php:2203 inc/admin/admin.php:5201
|
3869 |
msgid "Enhanced Link Attribution"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: inc/admin/admin.php:2211 inc/admin/admin.php:5223
|
3873 |
msgid "Enable cross-domain tracking"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: inc/admin/admin.php:2219 inc/admin/admin.php:5240 inc/admin/admin.php:5565
|
3877 |
msgid "Cross domains"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: inc/admin/admin.php:2237 inc/admin/admin.php:5257
|
3881 |
msgid "Enable external links tracking"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: inc/admin/admin.php:2245
|
3885 |
msgid "Enable downloads tracking (eg: PDF, XLSX, DOCX...)"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: inc/admin/admin.php:2253 inc/admin/admin.php:5286
|
3889 |
msgid "Track downloads' clicks"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: inc/admin/admin.php:2261
|
3893 |
msgid "Enable affiliate/outbound links tracking (eg: aff, go, out, recommends)"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: inc/admin/admin.php:2269 inc/admin/admin.php:5317
|
3897 |
msgid "Track affiliate/outbound links"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: inc/admin/admin.php:2287
|
3901 |
msgid "Track Authors"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: inc/admin/admin.php:2295
|
3905 |
msgid "Track Categories"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: inc/admin/admin.php:2303
|
3909 |
msgid "Track Tags"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: inc/admin/admin.php:2311
|
3913 |
msgid "Track Post Types"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
#: inc/admin/admin.php:2319
|
3917 |
msgid "Track Logged In Users"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: inc/admin/admin.php:2336
|
3921 |
msgid "Enable Matomo tracking"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: inc/admin/admin.php:2352
|
3925 |
msgid "Enter your site ID"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: inc/admin/admin.php:2360
|
3929 |
msgid "Track visitors across all subdomains"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: inc/admin/admin.php:2368
|
3933 |
msgid "Prepend the site domain"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: inc/admin/admin.php:2376 inc/admin/admin.php:5534
|
3937 |
msgid "Track users with JavaScript disabled"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: inc/admin/admin.php:2384 inc/admin/admin.php:5551
|
3941 |
msgid "Enables cross domain linking"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: inc/admin/admin.php:2392
|
3945 |
msgid "Cross domain"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: inc/admin/admin.php:2399
|
3949 |
msgid "Enable DoNotTrack detection"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: inc/admin/admin.php:2407
|
3953 |
msgid "Disable all tracking cookies"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: inc/admin/admin.php:2415
|
3957 |
msgid "Download & Outlink tracking"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: inc/admin/admin.php:2432
|
3961 |
msgid "Redirect attachment pages to post parent"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: inc/admin/admin.php:2440
|
3965 |
msgid "Redirect attachment pages to their file URL"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: inc/admin/admin.php:2448
|
3969 |
msgid "Remove ?replytocom link to avoid duplicate content"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: inc/admin/admin.php:2456
|
3973 |
msgid "Automatically set the image Title"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: inc/admin/admin.php:2464
|
3977 |
msgid "Automatically set the image Alt text"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: inc/admin/admin.php:2472
|
3981 |
msgid "Automatically set the image Alt text from target keywords"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: inc/admin/admin.php:2480
|
3985 |
msgid "Automatically set the image Caption"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: inc/admin/admin.php:2488
|
3989 |
msgid "Automatically set the image Description"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: inc/admin/admin.php:2496
|
3993 |
msgid "Add WP Editor to taxonomy description textarea"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: inc/admin/admin.php:2504
|
3997 |
msgid "Remove /category/ in URL"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: inc/admin/admin.php:2512 inc/admin/admin.php:5819
|
4001 |
msgid "Disable trailing slash for metas"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: inc/admin/admin.php:2520
|
4005 |
msgid "Remove WordPress generator meta tag"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: inc/admin/admin.php:2528
|
4009 |
msgid "Remove hentry post class"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
#: inc/admin/admin.php:2536
|
4013 |
msgid "Remove author URL"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: inc/admin/admin.php:2544
|
4017 |
msgid "Remove website field in comment form"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: inc/admin/admin.php:2552
|
4021 |
msgid "Remove WordPress shortlink meta tag"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: inc/admin/admin.php:2560
|
4025 |
msgid "Remove Windows Live Writer meta tag"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: inc/admin/admin.php:2568
|
4029 |
msgid "Remove RSD meta tag"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: inc/admin/admin.php:2576 inc/admin/admin.php:5950
|
4033 |
msgid "Google site verification"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: inc/admin/admin.php:2584 inc/admin/admin.php:5964
|
4037 |
msgid "Bing site verification"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: inc/admin/admin.php:2592 inc/admin/admin.php:5977
|
4041 |
msgid "Pinterest site verification"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: inc/admin/admin.php:2600 inc/admin/admin.php:5989
|
4045 |
msgid "Yandex site verification"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: inc/admin/admin.php:2617
|
4049 |
msgid "SEOPress in admin bar"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: inc/admin/admin.php:2625
|
4053 |
msgid "Move SEOPress metabox's position"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: inc/admin/admin.php:2633
|
4057 |
msgid "Set default tab for Structured data metabox"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: inc/admin/admin.php:2641
|
4061 |
msgid "Hide Notifications Center"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: inc/admin/admin.php:2649
|
4065 |
msgid "Hide SEO tools"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: inc/admin/admin.php:2657
|
4069 |
msgid "Hide Useful Links"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: inc/admin/admin.php:2665
|
4073 |
msgid "Show Title tag column in post types"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: inc/admin/admin.php:2673
|
4077 |
msgid "Show Meta description column in post types"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: inc/admin/admin.php:2681
|
4081 |
msgid "Show Redirection Enable column in post types"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: inc/admin/admin.php:2689
|
4085 |
msgid "Show Redirect URL column in post types"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: inc/admin/admin.php:2697
|
4089 |
msgid "Show canonical URL column in post types"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: inc/admin/admin.php:2705
|
4093 |
msgid "Show Target Keyword column in post types"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: inc/admin/admin.php:2713
|
4097 |
msgid "Show noindex column in post types"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: inc/admin/admin.php:2721
|
4101 |
msgid "Show nofollow column in post types"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: inc/admin/admin.php:2729
|
4105 |
msgid "Show total number of words column in post types"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: inc/admin/admin.php:2737
|
4109 |
msgid "Show W3C validator column in post types"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: inc/admin/admin.php:2745
|
4113 |
msgid "Show Google Page Speed column in post types"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
+
#: inc/admin/admin.php:2755
|
4117 |
msgid "Show Insights column in post types"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: inc/admin/admin.php:2764
|
4121 |
msgid "Show content analysis score column in post types"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: inc/admin/admin.php:2772
|
4125 |
msgid "Hide Genesis SEO Metabox"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
+
#: inc/admin/admin.php:2780
|
4129 |
msgid "Hide Genesis SEO Settings link"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
+
#: inc/admin/admin.php:2788
|
4133 |
msgid "Hide advice in Structured Data Types metabox"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
+
#: inc/admin/admin.php:2805
|
4137 |
msgid "Block SEO metabox to user roles"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
+
#: inc/admin/admin.php:2813
|
4141 |
msgid "Block Content analysis metabox to user roles"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: inc/admin/admin.php:2913
|
4145 |
msgid "<p>Customize your title & meta description for homepage</p>"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: inc/admin/admin.php:2926
|
4149 |
msgid "<p>Customize your titles & metas for Single Custom Post Types</p>"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
+
#: inc/admin/admin.php:2930
|
4153 |
msgid "<p>Customize your metas for all pages</p>"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
+
#: inc/admin/admin.php:2934
|
4157 |
msgid "<p>Customize your metas for all taxonomies archives</p>"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: inc/admin/admin.php:2938
|
4161 |
msgid "<p>Customize your metas for all archives</p>"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: inc/admin/admin.php:2945
|
4165 |
msgid "Change this settings"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: inc/admin/admin.php:2948
|
4169 |
msgid ""
|
4170 |
"To view your sitemap, enable permalinks (not default one), and save settings "
|
4171 |
"to flush them."
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: inc/admin/admin.php:2954
|
4175 |
msgid ""
|
4176 |
"Your server uses NGINX. If XML Sitemaps doesn't work properly, you need to "
|
4177 |
"add this rule to your configuration:"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: inc/admin/admin.php:2968
|
4181 |
msgid "Noindex content will not be displayed in Sitemaps."
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: inc/admin/admin.php:2969
|
4185 |
+
msgid ""
|
4186 |
+
"If you disable globally this feature (using the blue toggle from above), the "
|
4187 |
+
"native WordPress XML sitemaps will be re-activated."
|
4188 |
+
msgstr ""
|
4189 |
+
|
4190 |
+
#: inc/admin/admin.php:2981
|
4191 |
msgid "Blank sitemap?"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: inc/admin/admin.php:2982
|
4195 |
msgid "404 error?"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: inc/admin/admin.php:2983
|
4199 |
+
msgid "HTML error? Exclude XML and XSL from caching plugins!"
|
4200 |
+
msgstr ""
|
4201 |
+
|
4202 |
+
#: inc/admin/admin.php:2985
|
4203 |
msgid "View your sitemap"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: inc/admin/admin.php:2987
|
4207 |
msgid "Ping Google manually"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
+
#: inc/admin/admin.php:2989
|
4211 |
msgid "Flush permalinks"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
+
#: inc/admin/admin.php:2994
|
4215 |
msgid "<p>Create an HTML Sitemap for your visitors and boost your SEO.</p>"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: inc/admin/admin.php:2995
|
4219 |
msgid ""
|
4220 |
"<p>Limited to 1,000 posts per post type. You can change the order and "
|
4221 |
"sorting criteria below.</p>"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: inc/admin/admin.php:3003 inc/admin/admin.php:4174
|
4225 |
msgid "Guide to enable a HTML Sitemap - new window"
|
4226 |
msgstr ""
|
4227 |
|
4228 |
+
#: inc/admin/admin.php:3007
|
4229 |
msgid "<p>Include/Exclude Post Types.</p>"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: inc/admin/admin.php:3011
|
4233 |
msgid "<p>Include/Exclude Taxonomies.</p>"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: inc/admin/admin.php:3015
|
4237 |
msgid "<p>Configure Google Knowledge Graph.</p>"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
+
#: inc/admin/admin.php:3016
|
4241 |
msgid "Learn more on Google official website."
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: inc/admin/admin.php:3020
|
4245 |
msgid ""
|
4246 |
"<p>Link your site with your social accounts. Use markup on your website to "
|
4247 |
"add your social profile information to a Google Knowledge panel. Knowledge "
|
4251 |
"network links.</p>"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: inc/admin/admin.php:3024
|
4255 |
msgid "<p>Manage Open Graph data.</p>"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: inc/admin/admin.php:3026
|
4259 |
msgid "<p>We generate the <strong>og:image</strong> meta in this order:</p>"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: inc/admin/admin.php:3030
|
4263 |
msgid "Custom OG Image from SEO metabox"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: inc/admin/admin.php:3031 inc/admin/admin.php:3045
|
4267 |
msgid "Post thumbnail"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: inc/admin/admin.php:3032 inc/admin/admin.php:3046
|
4271 |
msgid "First image of your post content"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
+
#: inc/admin/admin.php:3033
|
4275 |
msgid "Global OG Image set in SEO > Social > Open Graph"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
+
#: inc/admin/admin.php:3038
|
4279 |
msgid "<p>Manage your Twitter card.</p>"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
+
#: inc/admin/admin.php:3040
|
4283 |
msgid ""
|
4284 |
"<p>We generate the <strong>twitter:image</strong> meta in this order:</p>"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: inc/admin/admin.php:3044
|
4288 |
msgid "Custom Twitter image from SEO metabox"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
+
#: inc/admin/admin.php:3047
|
4292 |
msgid "Global Twitter:image set in SEO > Social > Twitter Card"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
+
#: inc/admin/admin.php:3052
|
4296 |
msgid ""
|
4297 |
"<p>Link your Google Analytics to your website. The tracking code will be "
|
4298 |
"automatically added to your site.</p>"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: inc/admin/admin.php:3056
|
4302 |
msgid ""
|
4303 |
"<p>Manage user consent for GDPR and customize your cookie bar easily.</p>"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: inc/admin/admin.php:3057
|
4307 |
msgid ""
|
4308 |
"Works with <strong>Google Analytics</strong> and <strong>Matomo</strong>."
|
4309 |
msgstr ""
|
4310 |
|
4311 |
+
#: inc/admin/admin.php:3061
|
4312 |
msgid "<p>Configure your Google Analytics tracking code.</p>"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
+
#: inc/admin/admin.php:3065
|
4316 |
msgid "<p>Track events in Google Analytics.</p>"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: inc/admin/admin.php:3069
|
4320 |
msgid ""
|
4321 |
"<p>Configure your Google Analytics custom dimensions. <br>Custom dimensions "
|
4322 |
"and custom metrics in SEOPress are like the default dimensions and metrics "
|
4326 |
"Google Analytics account. More info by clicking on the help icon."
|
4327 |
msgstr ""
|
4328 |
|
4329 |
+
#: inc/admin/admin.php:3071
|
4330 |
msgid "Custom dimensions also work with <strong>Matomo</strong> tracking code."
|
4331 |
msgstr ""
|
4332 |
|
4333 |
+
#: inc/admin/admin.php:3079
|
4334 |
msgid "Guide to create custom dimensions in Google Analytics - new window"
|
4335 |
msgstr ""
|
4336 |
|
4337 |
+
#: inc/admin/admin.php:3083
|
4338 |
msgid "<p>Use Matomo to track your users with privacy in mind.</p>"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: inc/admin/admin.php:3085
|
4342 |
msgid ""
|
4343 |
"Your <strong>Custom Dimensions</strong> will also work with Matomo tracking "
|
4344 |
"code"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
+
#: inc/admin/admin.php:3089
|
4348 |
msgid "<p>Advanced SEO options.</p>"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: inc/admin/admin.php:3093
|
4352 |
msgid "<p>Customize SEOPress to fit your needs.</p>"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
+
#: inc/admin/admin.php:3097
|
4356 |
msgid "<p>Manage security.</p>"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
+
#: inc/admin/admin.php:3110
|
4360 |
msgid "Enter your separator, eg: \"-\""
|
4361 |
msgstr ""
|
4362 |
|
4363 |
+
#: inc/admin/admin.php:3114
|
4364 |
#, php-format
|
4365 |
msgid "Use this separator with %%sep%% in your title and meta description."
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: inc/admin/admin.php:3120
|
4369 |
msgid "My awesome website"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: inc/admin/admin.php:3126 inc/admin/admin.php:3137 inc/admin/admin.php:3231
|
4373 |
+
#: inc/admin/admin.php:3346 inc/admin/admin.php:3476 inc/admin/admin.php:3509
|
4374 |
+
#: inc/admin/admin.php:3599 inc/admin/admin.php:3676 inc/admin/admin.php:3747
|
4375 |
+
#: inc/admin/admin.php:3817 inc/admin/admin.php:3868
|
4376 |
msgid "More tags"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
+
#: inc/admin/admin.php:3132
|
4380 |
msgid "This is a cool website about Wookiees"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
+
#: inc/admin/admin.php:3140
|
4384 |
msgid "Looking to edit your blog page?"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
+
#: inc/admin/admin.php:3165 inc/admin/admin.php:3169 inc/admin/admin.php:3171
|
4388 |
+
#: inc/admin/admin.php:3176
|
4389 |
msgid "Click to hide any SEO metaboxes / columns for this post type"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: inc/admin/admin.php:3168 inc/admin/admin.php:3172 inc/admin/admin.php:3175
|
4393 |
msgid "Click to display any SEO metaboxes / columns for this post type"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
+
#: inc/admin/admin.php:3200 inc/admin/admin.php:3333 inc/admin/admin.php:3442
|
4397 |
+
#: inc/admin/admin.php:3571 inc/admin/admin.php:3664 inc/admin/admin.php:3735
|
4398 |
+
#: inc/admin/admin.php:3805 inc/admin/admin.php:3858
|
4399 |
msgid "Title template"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: inc/admin/admin.php:3238 inc/admin/admin.php:3352 inc/admin/admin.php:3485
|
4403 |
+
#: inc/admin/admin.php:3606 inc/admin/admin.php:3682 inc/admin/admin.php:3753
|
4404 |
+
#: inc/admin/admin.php:3823 inc/admin/admin.php:3873
|
4405 |
msgid "Meta description template"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: inc/admin/admin.php:3261
|
4409 |
msgid ""
|
4410 |
"Do not display this single post type in search engine results "
|
4411 |
"<strong>(noindex)</strong>"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: inc/admin/admin.php:3280
|
4415 |
msgid ""
|
4416 |
"Do not follow links for this single post type <strong>(nofollow)</strong>"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: inc/admin/admin.php:3299
|
4420 |
msgid "Display date in Google search results?"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
+
#: inc/admin/admin.php:3318
|
4424 |
msgid "Display post thumbnail in Google Custom Search results?"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
+
#: inc/admin/admin.php:3331
|
4428 |
+
msgid "BuddyPress groups"
|
4429 |
+
msgstr ""
|
4430 |
+
|
4431 |
+
#: inc/admin/admin.php:3376
|
4432 |
+
msgid ""
|
4433 |
+
"Do not display BuddyPress groups in search engine results <strong>(noindex)</"
|
4434 |
+
"strong>"
|
4435 |
+
msgstr ""
|
4436 |
+
|
4437 |
+
#: inc/admin/admin.php:3405 inc/admin/admin.php:3409 inc/admin/admin.php:3411
|
4438 |
+
#: inc/admin/admin.php:3416
|
4439 |
msgid "Click to hide any SEO metaboxes for this taxonomy"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: inc/admin/admin.php:3408 inc/admin/admin.php:3412 inc/admin/admin.php:3415
|
4443 |
msgid "Click to display any SEO metaboxes for this taxonomy"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
+
#: inc/admin/admin.php:3465
|
4447 |
msgid "Category Title"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: inc/admin/admin.php:3467
|
4451 |
msgid "Tag Title"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: inc/admin/admin.php:3502
|
4455 |
msgid "Category Description"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: inc/admin/admin.php:3504
|
4459 |
msgid "Tag Description"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: inc/admin/admin.php:3506
|
4463 |
msgid "Term Description"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: inc/admin/admin.php:3524
|
4467 |
msgid ""
|
4468 |
"Do not display this taxonomy archive in search engine results "
|
4469 |
"<strong>(noindex)</strong>"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
+
#: inc/admin/admin.php:3543
|
4473 |
msgid ""
|
4474 |
"Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
|
4475 |
msgstr ""
|
4476 |
|
4477 |
+
#: inc/admin/admin.php:3563
|
4478 |
msgid "See archive"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
+
#: inc/admin/admin.php:3593
|
4482 |
msgid "Post Type Archive Name"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
+
#: inc/admin/admin.php:3629
|
4486 |
msgid ""
|
4487 |
"Do not display this post type archive in search engine results "
|
4488 |
"<strong>(noindex)</strong>"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: inc/admin/admin.php:3648
|
4492 |
msgid ""
|
4493 |
"Do not follow links for this post type archive <strong>(nofollow)</strong>"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: inc/admin/admin.php:3662
|
4497 |
msgid "Author archives"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: inc/admin/admin.php:3724
|
4501 |
msgid "Disable author archives"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#: inc/admin/admin.php:3733 inc/admin/admin.php:3744
|
4505 |
msgid "Date archives"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: inc/admin/admin.php:3776
|
4509 |
msgid ""
|
4510 |
"Do not display date archives in search engine results <strong>(noindex)</"
|
4511 |
"strong>"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
+
#: inc/admin/admin.php:3794
|
4515 |
msgid "Disable date archives"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: inc/admin/admin.php:3803
|
4519 |
msgid "Search archives"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: inc/admin/admin.php:3814
|
4523 |
msgid "Search Keywords"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: inc/admin/admin.php:3847
|
4527 |
msgid ""
|
4528 |
"Do not display search archives in search engine results <strong>(noindex)</"
|
4529 |
"strong>"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
+
#: inc/admin/admin.php:3856
|
4533 |
msgid "404 archives"
|
4534 |
msgstr ""
|
4535 |
|
4536 |
+
#: inc/admin/admin.php:3899
|
4537 |
msgid ""
|
4538 |
"Do not display all pages of the site in Google search results and do not "
|
4539 |
"display \"Cached\" links in search results."
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: inc/admin/admin.php:3918
|
4543 |
msgid "Do not follow links for all pages."
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: inc/admin/admin.php:3937
|
4547 |
msgid ""
|
4548 |
"Do not use Open Directory project metadata for titles or excerpts for all "
|
4549 |
"pages."
|
4550 |
msgstr ""
|
4551 |
|
4552 |
+
#: inc/admin/admin.php:3956
|
4553 |
msgid "Do not index images from the entire site."
|
4554 |
msgstr ""
|
4555 |
|
4556 |
+
#: inc/admin/admin.php:3975
|
4557 |
msgid "Do not display a \"Cached\" link in the Google search results."
|
4558 |
msgstr ""
|
4559 |
|
4560 |
+
#: inc/admin/admin.php:3994
|
4561 |
msgid ""
|
4562 |
"Do not display a description in the Google search results for all pages."
|
4563 |
msgstr ""
|
4564 |
|
4565 |
+
#: inc/admin/admin.php:4013
|
4566 |
msgid ""
|
4567 |
"Prevents Google to display a sitelinks searchbox in search results. Enable "
|
4568 |
"this option will remove the \"Website\" schema from your source code."
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: inc/admin/admin.php:4030
|
4572 |
msgid "Add rel next/prev link in head of paginated archive pages"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
+
#: inc/admin/admin.php:4047
|
4576 |
msgid "Add a \"noindex\" meta robots for all paginated archive pages"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
+
#: inc/admin/admin.php:4049
|
4580 |
msgid "eg: https://example.com/category/my-category/page/2/"
|
4581 |
msgstr ""
|
4582 |
|
4583 |
+
#: inc/admin/admin.php:4074
|
4584 |
msgid "Guide to enable XML Sitemaps - new window"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
+
#: inc/admin/admin.php:4091
|
4588 |
msgid ""
|
4589 |
"Enable Image Sitemaps (standard images, image galleries, featured image, "
|
4590 |
"WooCommerce product images)"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
+
#: inc/admin/admin.php:4093
|
4594 |
msgid "Images in XML sitemaps are visible only from the source code."
|
4595 |
msgstr ""
|
4596 |
|
4597 |
+
#: inc/admin/admin.php:4101
|
4598 |
msgid "Guide to enable XML image sitemaps - new window"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
+
#: inc/admin/admin.php:4119
|
4602 |
msgid "Enable Video Sitemaps"
|
4603 |
msgstr ""
|
4604 |
|
4605 |
+
#: inc/admin/admin.php:4127
|
4606 |
#, php-format
|
4607 |
msgid ""
|
4608 |
"Your video sitemap is empty? Read our guide to learn more about <a href=\"%s"
|
4609 |
"\" target=\"_blank\">adding videos to your sitemap.</a>"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: inc/admin/admin.php:4129
|
4613 |
msgid "Guide to enable XML video sitemaps - new window"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
+
#: inc/admin/admin.php:4149
|
4617 |
msgid ""
|
4618 |
"Make sure to enable author archive from SEO, titles and metas, archives tab."
|
4619 |
"</a>"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: inc/admin/admin.php:4214 inc/admin/admin.php:4258
|
4623 |
msgid "Include"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: inc/admin/admin.php:4217
|
4627 |
msgid ""
|
4628 |
"You should never include attachment post type in your sitemap. Be careful if "
|
4629 |
"you checked this."
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: inc/admin/admin.php:4273
|
4633 |
msgid "eg: 2, 28, 68"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: inc/admin/admin.php:4277
|
4637 |
msgid "You can also use this shortcode:"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
+
#: inc/admin/admin.php:4287
|
4641 |
msgid "eg: 13, 8, 38"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: inc/admin/admin.php:4301
|
4645 |
msgid ""
|
4646 |
"DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: inc/admin/admin.php:4304
|
4650 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: inc/admin/admin.php:4321
|
4654 |
msgid "Default (date)"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
+
#: inc/admin/admin.php:4327
|
4658 |
msgid "Modified date"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
+
#: inc/admin/admin.php:4330
|
4662 |
msgid "Post ID"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
+
#: inc/admin/admin.php:4333
|
4666 |
msgid "Menu order"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
+
#: inc/admin/admin.php:4351
|
4670 |
msgid "Disable date after each post, page, post type?"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: inc/admin/admin.php:4386
|
4674 |
msgid "eg: SEOPress"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: inc/admin/admin.php:4399
|
4678 |
msgid "Select your logo"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: inc/admin/admin.php:4403
|
4682 |
msgid "JPG, PNG, and GIF allowed."
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: inc/admin/admin.php:4429
|
4686 |
msgid "eg: +33123456789 (internationalized version required)"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: inc/admin/admin.php:4444
|
4690 |
msgid "Customer support"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: inc/admin/admin.php:4447
|
4694 |
msgid "Technical support"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: inc/admin/admin.php:4450
|
4698 |
msgid "Billing support"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: inc/admin/admin.php:4453
|
4702 |
msgid "Bill payment"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: inc/admin/admin.php:4456
|
4706 |
msgid "Sales"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
+
#: inc/admin/admin.php:4459
|
4710 |
msgid "Credit card support"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: inc/admin/admin.php:4462
|
4714 |
msgid "Emergency"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: inc/admin/admin.php:4465
|
4718 |
msgid "Baggage tracking"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: inc/admin/admin.php:4468
|
4722 |
msgid "Roadside assistance"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: inc/admin/admin.php:4471
|
4726 |
msgid "Package tracking"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: inc/admin/admin.php:4488 inc/admin/admin.php:5335 inc/admin/admin.php:5358
|
4730 |
+
#: inc/admin/admin.php:5381 inc/admin/admin.php:5404 inc/admin/admin.php:5427
|
4731 |
msgid "None"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: inc/admin/admin.php:4491
|
4735 |
msgid "Toll Free"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: inc/admin/admin.php:4494
|
4739 |
msgid "Hearing impaired supported"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: inc/admin/admin.php:4520
|
4743 |
msgid "Twitter Page URL"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: inc/admin/admin.php:4621
|
4747 |
msgid "Enable OG data"
|
4748 |
msgstr ""
|
4749 |
|
4750 |
+
#: inc/admin/admin.php:4655
|
4751 |
msgid ""
|
4752 |
"Override every <strong>og:image</strong> tag with this default image (except "
|
4753 |
"if a custom og:image has already been set from the SEO metabox)."
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: inc/admin/admin.php:4660
|
4757 |
msgid "Please define a default OG Image from the field above"
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: inc/admin/admin.php:4693
|
4761 |
msgid "No custom post type to configure."
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: inc/admin/admin.php:4705
|
4765 |
msgid ""
|
4766 |
"One or more Facebook Page IDs that are associated with a URL in order to "
|
4767 |
"enable link editing and instant article publishing."
|
4768 |
msgstr ""
|
4769 |
|
4770 |
+
#: inc/admin/admin.php:4709
|
4771 |
msgid "How do I find my Facebook Page ID?"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
+
#: inc/admin/admin.php:4719
|
4775 |
msgid ""
|
4776 |
"The ID (or comma-separated list for properties that can accept multiple IDs) "
|
4777 |
"of an app, person using the app, or Page Graph API object."
|
4778 |
msgstr ""
|
4779 |
|
4780 |
+
#: inc/admin/admin.php:4731
|
4781 |
msgid ""
|
4782 |
"The Facebook app ID of the site's app. In order to use Facebook Insights you "
|
4783 |
"must add the app ID to your page. Insights lets you view analytics for "
|
4787 |
"\"seopress-help dashicons dashicons-external\"></span>"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: inc/admin/admin.php:4735
|
4791 |
msgid "How to create a Facebook App ID"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: inc/admin/admin.php:4748
|
4795 |
msgid "Enable Twitter card"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: inc/admin/admin.php:4765
|
4799 |
msgid "Use OG if no Twitter Cards"
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: inc/admin/admin.php:4800
|
4803 |
msgid "Default"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: inc/admin/admin.php:4803
|
4807 |
msgid "Large"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: inc/admin/admin.php:4821
|
4811 |
msgid "Enable Google Analytics tracking (Global Site Tag: gtag.js)"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: inc/admin/admin.php:4833
|
4815 |
msgid "Enter your Tracking ID (UA-XXXX-XX)"
|
4816 |
msgstr ""
|
4817 |
|
4818 |
+
#: inc/admin/admin.php:4837
|
4819 |
msgid "Find your tracking ID"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
+
#: inc/admin/admin.php:4851
|
4823 |
msgid "Request user's consent for analytics tracking (required by GDPR)"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: inc/admin/admin.php:4853
|
4827 |
msgid ""
|
4828 |
"<strong>The user must click the Accept button to allow tracking.</strong>"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
+
#: inc/admin/admin.php:4855
|
4832 |
msgid ""
|
4833 |
"User roles excluded from tracking will not see the consent message.<br> If "
|
4834 |
"you use a caching plugin, you have to exclude this JS file in your settings: "
|
4836 |
"js</strong> <br>and this cookie <strong>seopress-user-consent-accept</strong>"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
+
#: inc/admin/admin.php:4863
|
4840 |
msgid "Hook to add custom tracking code with user consent - new window"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
+
#: inc/admin/admin.php:4880
|
4844 |
msgid ""
|
4845 |
"Display and automatically accept the user‘s consent on page load (not fully "
|
4846 |
"GDPR)"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
+
#: inc/admin/admin.php:4882
|
4850 |
msgid "The previous option must be checked to use this."
|
4851 |
msgstr ""
|
4852 |
|
4853 |
+
#: inc/admin/admin.php:4895
|
4854 |
msgid "Enter your message (HTML allowed)"
|
4855 |
msgstr ""
|
4856 |
|
4857 |
+
#: inc/admin/admin.php:4895
|
4858 |
msgid "This message will only appear if request user's consent is enabled."
|
4859 |
msgstr ""
|
4860 |
|
4861 |
+
#: inc/admin/admin.php:4904
|
4862 |
msgid "Hook to filter user consent message - new window"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
+
#: inc/admin/admin.php:4906
|
4866 |
msgid "HTML tags allowed: strong, em, br, a href / target"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
+
#: inc/admin/admin.php:4907
|
4870 |
msgid ""
|
4871 |
"Shortcode allowed to get the privacy page set in WordPress settings: "
|
4872 |
"[seopress_privacy_page]"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
+
#: inc/admin/admin.php:4915 inc/functions/options-google-analytics.php:182
|
4876 |
msgid "Accept"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
+
#: inc/admin/admin.php:4915
|
4880 |
msgid "Change the button value"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
+
#: inc/admin/admin.php:4925
|
4884 |
msgid "default: X"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: inc/admin/admin.php:4925
|
4888 |
msgid "Change the close button value"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
+
#: inc/admin/admin.php:4939
|
4892 |
msgid "Bottom (default)"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
+
#: inc/admin/admin.php:4942
|
4896 |
msgid "Top"
|
4897 |
msgstr ""
|
4898 |
|
4899 |
+
#: inc/admin/admin.php:4955
|
4900 |
msgid "Change the color of the cookie bar background"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
+
#: inc/admin/admin.php:4965
|
4904 |
msgid "Change the color of the cookie bar text"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
+
#: inc/admin/admin.php:4975
|
4908 |
msgid "Change the color of the cookie bar link"
|
4909 |
msgstr ""
|
4910 |
|
4911 |
+
#: inc/admin/admin.php:4985
|
4912 |
msgid "Change the color of the cookie bar button background"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
+
#: inc/admin/admin.php:4995
|
4916 |
msgid "Change the color of the cookie bar button hover background"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
+
#: inc/admin/admin.php:5005
|
4920 |
msgid "Change the color of the cookie bar button"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: inc/admin/admin.php:5015
|
4924 |
msgid "Change the color of the cookie bar button hover"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: inc/admin/admin.php:5025
|
4928 |
msgid "Change the color of the cookie bar secondary button background"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: inc/admin/admin.php:5035
|
4932 |
msgid "Change the color of the cookie bar secondary button hover background"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
+
#: inc/admin/admin.php:5045
|
4936 |
msgid "Change the color of the cookie bar secondary button"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: inc/admin/admin.php:5055
|
4940 |
msgid "Change the color of the cookie bar secondary button hover"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
+
#: inc/admin/admin.php:5090
|
4944 |
msgid "Enter your Google Optimize container ID"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
+
#: inc/admin/admin.php:5090
|
4948 |
msgid "GTM-XXXXXXX"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: inc/admin/admin.php:5093
|
4952 |
msgid ""
|
4953 |
"Google Optimize offers A/B testing, website testing & personalization tools."
|
4954 |
msgstr ""
|
4955 |
|
4956 |
+
#: inc/admin/admin.php:5101
|
4957 |
msgid "Enter your Google Ads conversion ID (eg: AW-123456789)"
|
4958 |
msgstr ""
|
4959 |
|
4960 |
+
#: inc/admin/admin.php:5101
|
4961 |
msgid "AW-XXXXXXXXX"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
+
#: inc/admin/admin.php:5110
|
4965 |
msgid "Paste your tracking code here like Google Tag Manager (head)"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
+
#: inc/admin/admin.php:5110
|
4969 |
msgid "Additional tracking code field"
|
4970 |
msgstr ""
|
4971 |
|
4972 |
+
#: inc/admin/admin.php:5113
|
4973 |
msgid "This code will be added in the head section of your page."
|
4974 |
msgstr ""
|
4975 |
|
4976 |
+
#: inc/admin/admin.php:5121
|
4977 |
msgid "Paste your tracking code here like Google Tag Manager (body)"
|
4978 |
msgstr ""
|
4979 |
|
4980 |
+
#: inc/admin/admin.php:5121
|
4981 |
msgid "Additional tracking code field added to body"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
+
#: inc/admin/admin.php:5124
|
4985 |
msgid "This code will be added just after the opening body tag of your page."
|
4986 |
msgstr ""
|
4987 |
|
4988 |
+
#: inc/admin/admin.php:5125
|
4989 |
msgid ""
|
4990 |
"You don‘t see your code? Make sure to call <strong>wp_body_open();</strong> "
|
4991 |
"just after the opening body tag in your theme."
|
4992 |
msgstr ""
|
4993 |
|
4994 |
+
#: inc/admin/admin.php:5141
|
4995 |
msgid "Paste your tracking code here (body footer)"
|
4996 |
msgstr ""
|
4997 |
|
4998 |
+
#: inc/admin/admin.php:5141
|
4999 |
msgid "Additional tracking code field added to body footer"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
+
#: inc/admin/admin.php:5144
|
5003 |
msgid "This code will be added just after the closing body tag of your page."
|
5004 |
msgstr ""
|
5005 |
|
5006 |
+
#: inc/admin/admin.php:5159
|
5007 |
msgid ""
|
5008 |
"A remarketing audience is a list of cookies or mobile-advertising IDs that "
|
5009 |
"represents a group of users you want to re-engage because of their "
|
5010 |
"likelihood to convert."
|
5011 |
msgstr ""
|
5012 |
|
5013 |
+
#: inc/admin/admin.php:5181
|
5014 |
msgid ""
|
5015 |
"When a customer of Analytics requests IP address anonymization, Analytics "
|
5016 |
"anonymizes the address as soon as technically feasible at the earliest "
|
5017 |
"possible stage of the collection network."
|
5018 |
msgstr ""
|
5019 |
|
5020 |
+
#: inc/admin/admin.php:5203
|
5021 |
msgid ""
|
5022 |
"Enhanced Link Attribution improves the accuracy of your In-Page Analytics "
|
5023 |
"report by automatically differentiating between multiple links to the same "
|
5024 |
"URL on a single page by using link element IDs."
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: inc/admin/admin.php:5225
|
5028 |
msgid ""
|
5029 |
"Cross domain tracking makes it possible for Analytics to see sessions on two "
|
5030 |
"related sites (such as an ecommerce site and a separate shopping cart site) "
|
5031 |
"as a single session. This is sometimes called site linking."
|
5032 |
msgstr ""
|
5033 |
|
5034 |
+
#: inc/admin/admin.php:5240 inc/admin/admin.php:5565
|
5035 |
msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
|
5036 |
msgstr ""
|
5037 |
|
5038 |
+
#: inc/admin/admin.php:5274
|
5039 |
msgid "Enable download tracking"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
+
#: inc/admin/admin.php:5286
|
5043 |
msgid "pdf|docx|pptx|zip"
|
5044 |
msgstr ""
|
5045 |
|
5046 |
+
#: inc/admin/admin.php:5290
|
5047 |
msgid "Separate each file type extensions with a pipe \"|\""
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: inc/admin/admin.php:5305
|
5051 |
msgid "Enable affiliate/outbound tracking"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
+
#: inc/admin/admin.php:5317
|
5055 |
msgid "aff|go|out"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
+
#: inc/admin/admin.php:5321
|
5059 |
msgid "Separate each keyword with a pipe \"|\""
|
5060 |
msgstr ""
|
5061 |
|
5062 |
+
#: inc/admin/admin.php:5340 inc/admin/admin.php:5363 inc/admin/admin.php:5386
|
5063 |
+
#: inc/admin/admin.php:5409 inc/admin/admin.php:5432
|
5064 |
#, php-format
|
5065 |
msgid "Custom Dimension #%d"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
+
#: inc/admin/admin.php:5451
|
5069 |
msgid "Enable Matomo tracking (Matomo account required)"
|
5070 |
msgstr ""
|
5071 |
|
5072 |
+
#: inc/admin/admin.php:5463
|
5073 |
msgid "Enter \"example\" if you Matomo account URL is \"example.matomo.cloud\""
|
5074 |
msgstr ""
|
5075 |
|
5076 |
+
#: inc/admin/admin.php:5463
|
5077 |
msgid "Matomo Cloud URL"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: inc/admin/admin.php:5468
|
5081 |
msgid "Enter only the <strong>host</strong> like this example.matomo.cloud"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: inc/admin/admin.php:5477
|
5085 |
msgid "Enter your site ID here"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
+
#: inc/admin/admin.php:5477
|
5089 |
msgid "Matomo Site ID"
|
5090 |
msgstr ""
|
5091 |
|
5092 |
+
#: inc/admin/admin.php:5482
|
5093 |
msgid ""
|
5094 |
"To find your site ID, go to your <strong>Matomo Cloud account, Websites, "
|
5095 |
"Manage page</strong>. Look at \"Site ID\" on the right part."
|
5096 |
msgstr ""
|
5097 |
|
5098 |
+
#: inc/admin/admin.php:5496
|
5099 |
msgid "Tracking one domain and its subdomains in the same website"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
+
#: inc/admin/admin.php:5498
|
5103 |
msgid ""
|
5104 |
"If one visitor visits x.example.com and y.example.com, they will be counted "
|
5105 |
"as a unique visitor."
|
5106 |
msgstr ""
|
5107 |
|
5108 |
+
#: inc/admin/admin.php:5515
|
5109 |
msgid "Prepend the site domain to the page title when tracking"
|
5110 |
msgstr ""
|
5111 |
|
5112 |
+
#: inc/admin/admin.php:5517
|
5113 |
msgid ""
|
5114 |
"If someone visits the 'About' page on blog.example.com it will be recorded "
|
5115 |
"as 'blog / About'. This is the easiest way to get an overview of your "
|
5116 |
"traffic by sub-domain."
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: inc/admin/admin.php:5553
|
5120 |
msgid ""
|
5121 |
"By default, the visitor ID that identifies a unique visitor is stored in the "
|
5122 |
"browser's first party cookies which can only be accessed by pages on the "
|
5127 |
"Visitor ID."
|
5128 |
msgstr ""
|
5129 |
|
5130 |
+
#: inc/admin/admin.php:5582
|
5131 |
msgid "Enable client side DoNotTrack detection"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
+
#: inc/admin/admin.php:5584
|
5135 |
msgid ""
|
5136 |
"Tracking requests will not be sent if visitors do not wish to be tracked."
|
5137 |
msgstr ""
|
5138 |
|
5139 |
+
#: inc/admin/admin.php:5601
|
5140 |
msgid ""
|
5141 |
"Disables all first party cookies. Existing Matomo cookies for this website "
|
5142 |
"will be deleted on the next page view."
|
5143 |
msgstr ""
|
5144 |
|
5145 |
+
#: inc/admin/admin.php:5618
|
5146 |
msgid "Enabling Download & Outlink tracking"
|
5147 |
msgstr ""
|
5148 |
|
5149 |
+
#: inc/admin/admin.php:5620
|
5150 |
msgid ""
|
5151 |
"By default, any file ending with one of these extensions will be considered "
|
5152 |
"a \"download\" in the Matomo interface: 7z|aac|arc|arj|apk|asf|asx|avi|bin|"
|
5157 |
"\t\ttbz|tbz2|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
+
#: inc/admin/admin.php:5641
|
5161 |
msgid "Redirect attachment pages to post parent (or homepage if none)"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
+
#: inc/admin/admin.php:5660
|
5165 |
msgid ""
|
5166 |
"If this option is checked, it will take precedence over the redirection of "
|
5167 |
"attachments to the post's parent."
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: inc/admin/admin.php:5677
|
5171 |
msgid "Remove ?replytocom link in source code"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
+
#: inc/admin/admin.php:5694
|
5175 |
msgid ""
|
5176 |
"When sending an image file, automatically set the title based on the filename"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: inc/admin/admin.php:5711
|
5180 |
msgid ""
|
5181 |
"When sending an image file, automatically set the alternative text based on "
|
5182 |
"the filename"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
+
#: inc/admin/admin.php:5714
|
5186 |
msgid ""
|
5187 |
"We recommend Image SEO plugin to optimize your image ALT texts and names for "
|
5188 |
"Search Engines using AI and Machine Learning. Starting from just €4.99."
|
5189 |
msgstr ""
|
5190 |
|
5191 |
+
#: inc/admin/admin.php:5732
|
5192 |
msgid "Use the target keywords if not alternative text set for the image"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
+
#: inc/admin/admin.php:5734
|
5196 |
msgid ""
|
5197 |
"This setting will be applied to images without any alt text on frontend "
|
5198 |
"only. This setting is retroactive. If you turn it off, alt texts that were "
|
5199 |
"previously empty will be empty again."
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: inc/admin/admin.php:5751
|
5203 |
msgid ""
|
5204 |
"When sending an image file, automatically set the caption based on the "
|
5205 |
"filename"
|
5206 |
msgstr ""
|
5207 |
|
5208 |
+
#: inc/admin/admin.php:5768
|
5209 |
msgid ""
|
5210 |
"When sending an image file, automatically set the description based on the "
|
5211 |
"filename"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
+
#: inc/admin/admin.php:5785
|
5215 |
msgid "Add TINYMCE editor to term description"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: inc/admin/admin.php:5802
|
5219 |
msgid "You have to flush your permalinks each time you change this settings"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: inc/admin/admin.php:5819
|
5223 |
msgid ""
|
5224 |
"You must check this box if the structure of your permalinks DOES NOT contain "
|
5225 |
"a slash at the end (eg: /%postname%)"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
+
#: inc/admin/admin.php:5836
|
5229 |
msgid "Remove WordPress meta generator in source code"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
+
#: inc/admin/admin.php:5853
|
5233 |
msgid ""
|
5234 |
"Remove hentry post class to prevent Google from seeing this as structured "
|
5235 |
"data (schema)"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: inc/admin/admin.php:5870
|
5239 |
msgid ""
|
5240 |
"Remove comment author URL in comments if the website is filled from profile "
|
5241 |
"page"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
+
#: inc/admin/admin.php:5887
|
5245 |
msgid "Remove website field from comment form to reduce spam"
|
5246 |
msgstr ""
|
5247 |
|
5248 |
+
#: inc/admin/admin.php:5904
|
5249 |
msgid "Remove WordPress shortlink meta tag in source code (eg:"
|
5250 |
msgstr ""
|
5251 |
|
5252 |
+
#: inc/admin/admin.php:5921
|
5253 |
msgid "Remove Windows Live Writer meta tag in source code (eg:"
|
5254 |
msgstr ""
|
5255 |
|
5256 |
+
#: inc/admin/admin.php:5938
|
5257 |
msgid "Remove Really Simple Discovery meta tag in source code (eg:"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
+
#: inc/admin/admin.php:5950
|
5261 |
msgid "Enter Google meta value site verification"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
+
#: inc/admin/admin.php:5955
|
5265 |
msgid ""
|
5266 |
"If your site is already verified in <strong>Google Search Console</strong>, "
|
5267 |
"you can leave this field empty."
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: inc/admin/admin.php:5964
|
5271 |
msgid "Enter Bing meta value site verification"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
+
#: inc/admin/admin.php:5968
|
5275 |
msgid ""
|
5276 |
"If your site is already verified in <strong>Bing Webmaster tools</strong>, "
|
5277 |
"you can leave this field empty."
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: inc/admin/admin.php:5977
|
5281 |
msgid "Enter Pinterest meta value site verification"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: inc/admin/admin.php:5989
|
5285 |
msgid "Enter Yandex meta value site verification"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: inc/admin/admin.php:6006
|
5289 |
msgid "Remove SEOPress from Admin Bar in backend and frontend"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
+
#: inc/admin/admin.php:6022
|
5293 |
msgid "High priority (top)"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
+
#: inc/admin/admin.php:6025
|
5297 |
msgid "Normal priority (default)"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
+
#: inc/admin/admin.php:6028
|
5301 |
msgid "Low priority"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
+
#: inc/admin/admin.php:6046
|
5305 |
msgid "Automatic tab (default)"
|
5306 |
msgstr ""
|
5307 |
|
5308 |
+
#: inc/admin/admin.php:6049
|
5309 |
msgid "Manual tab"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
+
#: inc/admin/admin.php:6068
|
5313 |
msgid "Hide Notifications Center in SEOPress Dashboard page"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
+
#: inc/admin/admin.php:6085
|
5317 |
msgid "Hide SEO tools in SEOPress Dashboard page"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
+
#: inc/admin/admin.php:6102
|
5321 |
msgid "Hide Useful Links in SEOPress dashboard page"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
+
#: inc/admin/admin.php:6119
|
5325 |
msgid "Add title column"
|
5326 |
msgstr ""
|
5327 |
|
5328 |
+
#: inc/admin/admin.php:6136
|
5329 |
msgid "Add meta description column"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
+
#: inc/admin/admin.php:6153
|
5333 |
msgid "Add redirection enable column"
|
5334 |
msgstr ""
|
5335 |
|
5336 |
+
#: inc/admin/admin.php:6170
|
5337 |
msgid "Add redirection URL column"
|
5338 |
msgstr ""
|
5339 |
|
5340 |
+
#: inc/admin/admin.php:6187
|
5341 |
msgid "Add canonical URL column"
|
5342 |
msgstr ""
|
5343 |
|
5344 |
+
#: inc/admin/admin.php:6204
|
5345 |
msgid "Add target keyword column"
|
5346 |
msgstr ""
|
5347 |
|
5348 |
+
#: inc/admin/admin.php:6221
|
5349 |
msgid "Display noindex status"
|
5350 |
msgstr ""
|
5351 |
|
5352 |
+
#: inc/admin/admin.php:6238
|
5353 |
msgid "Display nofollow status"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
+
#: inc/admin/admin.php:6255
|
5357 |
msgid "Display total number of words in content"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
+
#: inc/admin/admin.php:6272
|
5361 |
msgid "Display W3C column to check code quality"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
+
#: inc/admin/admin.php:6290
|
5365 |
msgid "Display Page Speed column to check performances"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
+
#: inc/admin/admin.php:6309
|
5369 |
msgid "Display SEO Insights column to check rankings"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
+
#: inc/admin/admin.php:6328
|
5373 |
msgid ""
|
5374 |
"Display Content Analysis results column (\"Good\" or \"Should be improved\")"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
+
#: inc/admin/admin.php:6346
|
5378 |
msgid "Remove Genesis SEO Metabox"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
+
#: inc/admin/admin.php:6363
|
5382 |
msgid "Remove Genesis SEO link in WP Admin Menu"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
+
#: inc/admin/admin.php:6380
|
5386 |
msgid "Remove the advice if None schema selected"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
+
#: inc/admin/admin.php:6416 inc/admin/admin.php:6449
|
5390 |
msgid ""
|
5391 |
"Hook to filter structured data types metabox call by post type - new window"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: inc/admin/adminbar.php:38 inc/admin/adminbar.php:64
|
5395 |
+
msgid "noindex is on!"
|
5396 |
+
msgstr ""
|
5397 |
+
|
5398 |
+
#: inc/admin/adminbar.php:59
|
5399 |
+
#, php-format
|
5400 |
+
msgid "SEO for %s"
|
5401 |
+
msgstr ""
|
5402 |
+
|
5403 |
+
#: inc/admin/adminbar.php:67
|
5404 |
+
msgid "noindex is off."
|
5405 |
+
msgstr ""
|
5406 |
+
|
5407 |
+
#: inc/admin/adminbar.php:76
|
5408 |
+
msgid "nofollow is on!"
|
5409 |
+
msgstr ""
|
5410 |
+
|
5411 |
+
#: inc/admin/adminbar.php:79
|
5412 |
+
msgid "nofollow is off."
|
5413 |
+
msgstr ""
|
5414 |
+
|
5415 |
+
#: inc/admin/adminbar.php:142
|
5416 |
msgid "BOT"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: inc/admin/adminbar.php:178
|
5420 |
msgid "Broken Links"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
+
#: inc/admin/adminbar.php:186
|
5424 |
msgid "Configuration wizard"
|
5425 |
msgstr ""
|
5426 |
|
5656 |
msgstr ""
|
5657 |
|
5658 |
#: inc/functions/options-import-export.php:58
|
5659 |
+
#: inc/functions/options-import-export.php:413
|
5660 |
msgid "Please upload a valid .json file"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
#: inc/functions/options-import-export.php:63
|
5664 |
#: inc/functions/options-import-export.php:132
|
5665 |
+
#: inc/functions/options-import-export.php:224
|
5666 |
+
#: inc/functions/options-import-export.php:417
|
5667 |
+
#: inc/functions/options-import-export.php:483
|
5668 |
msgid "Please upload a file to import"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
#: inc/functions/options-import-export.php:128
|
5672 |
+
#: inc/functions/options-import-export.php:220
|
5673 |
msgid "Please upload a valid .csv file"
|
5674 |
msgstr ""
|
5675 |
|
5681 |
msgid "Invalid separator"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: inc/functions/options-import-export.php:479
|
5685 |
msgid "Please upload a valid .txt file"
|
5686 |
msgstr ""
|
5687 |
|
5703 |
msgid "Last update"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: inc/functions/variables/dynamic-variables.php:67
|
5707 |
#, php-format
|
5708 |
msgid "Page %d of %2$d"
|
5709 |
msgstr ""
|
5712 |
msgid "has been successfully updated!"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: seopress.php:367
|
5716 |
msgid "You like SEOPress? Don't forget to rate it 5 stars!"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
+
#: seopress.php:428
|
5720 |
msgid "Docs"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: seopress.php:429
|
5724 |
msgid "Configuration Wizard"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: seopress.php:431
|
5728 |
msgid "GO PRO!"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: seopress.php:1231
|
5732 |
msgid "Follow us:"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: seopress.php:1238
|
5736 |
msgid "Like our Facebook page"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: seopress.php:1250
|
5740 |
msgid "Watch our guided tour videos to learn more about SEOPress"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
+
#: seopress.php:1263
|
5744 |
msgid "Read our blog posts about SEO concepts, tutorials and more"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: seopress.php:1275
|
5748 |
msgid "The off side of SEOPress"
|
5749 |
msgstr ""
|
@@ -2,11 +2,11 @@
|
|
2 |
Authors: rainbowgeek
|
3 |
Contributors: rainbowgeek, juliobox, maigret, mgris, gmulti
|
4 |
Donate link: https://www.seopress.org/
|
5 |
-
Tags: SEO, sitemap,
|
6 |
Requires at least: 4.7+
|
7 |
Tested up to: 5.5
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag:
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -150,6 +150,7 @@ SEOPress is translated into multiple languages including:
|
|
150 |
<li>🇷🇺 Русский (Russian) - professional translation</li>
|
151 |
<li>🇯🇵 日本語 (Japanese) - professional translation</li>
|
152 |
<li>🇮🇳 हिन्दी (Hindi) - professional translation</li>
|
|
|
153 |
<li>🇧🇷 Português do Brasil (Portuguese (Brazil)) - professional translation</li>
|
154 |
<li>🇬🇷 Ελληνικά (Greek)</li>
|
155 |
<li>🇧🇬 Български (Bulgarian)</li>
|
@@ -158,7 +159,6 @@ SEOPress is translated into multiple languages including:
|
|
158 |
<li>🇻🇳 Loki Web (Vietnamese)</li>
|
159 |
<li>🇷🇴 Română (Romanian)</li>
|
160 |
<li>🇸🇦 العربية (Arabic)</li>
|
161 |
-
<li>🇨🇳 中文 (Chinese (China))</li>
|
162 |
<li>🇮🇷 فارسی (Persian)</li>
|
163 |
<li>🇹🇷 Türkçe (Turkish)</li>
|
164 |
<li>...</li>
|
@@ -196,6 +196,7 @@ Help localize SEOPress even further by adding your locale – visit <a href="htt
|
|
196 |
<li><a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-wp-meta-seo-to-seopress/?utm_source=w.org&utm_campaign=seopress&utm_medium=readme" target="_blank">WP Meta SEO</a></li>
|
197 |
<li><a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-premium-seo-pack-to-seopress/?utm_source=w.org&utm_campaign=seopress&utm_medium=readme" target="_blank">Premium SEO Pack</a></li>
|
198 |
<li><a href="https://www.seopress.org/support/guides/import-post-metadatas-from-squirrly-to-seopress/?utm_source=w.org&utm_campaign=seopress&utm_medium=readme" target="_blank">Squirrly</a></li>
|
|
|
199 |
</ul>
|
200 |
|
201 |
<h3>Help and support</h3>
|
@@ -239,7 +240,7 @@ Any questions? Visit our website <a href="https://www.seopress.org?utm_source=w.
|
|
239 |
|
240 |
= Can I import my post and term metadata from other plugins? =
|
241 |
|
242 |
-
You can import your metadata from <a href="https://www.seopress.org/support/guides/import-post-terms-metadatas-yoast-seo-seopress/">Yoast SEO</a>, <a href="https://www.seopress.org/support/guides/import-post-and-terms-metadatas-from-all-in-one-seo-to-seopress/">All In One SEO (AIO SEO)</a>, <a href="https://www.seopress.org/support/guides/import-post-and-terms-metadatas-from-the-seo-framework-to-seopress/">The SEO Framework (TSF)</a>, <a href="https://www.seopress.org/support/guides/import-post-metadatas-from-squirrly-to-seopress/">Squirrly</a> (post metas only, not terms), <a href="https://www.seopress.org/support/guides/import-post-terms-metadatas-rank-math-seo-seopress/">Rank Math</a>, <a href="https://www.seopress.org/support/guides/import-post-metadata-from-seo-ultimate-to-seopress/">SEO Ultimate (post metas only, not terms)</a>, <a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-wp-meta-seo-to-seopress/">WP Meta SEO</a> and <a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-premium-seo-pack-to-seopress/">Premium SEO Pack</a> in one click to SEOPress without losing traffic.
|
243 |
|
244 |
= How to use Google Tag Manager / Facebook Pixel with SEOPress? =
|
245 |
|
@@ -266,6 +267,10 @@ Yes! Learn more here <a href="https://www.seopress.org/features/seopress-white-l
|
|
266 |
|
267 |
Yes! Learn more here <a href="https://www.seopress.org/features/seopress-white-label/">about SEOPress and the White Label feature</a>
|
268 |
|
|
|
|
|
|
|
|
|
269 |
= My XML sitemap returns a 404 error =
|
270 |
|
271 |
Read this <a href="https://www.seopress.org/support/guides/xml-sitemap-returns-404-error/">post to solve this issue</a>
|
@@ -291,98 +296,48 @@ You're theme is probably using a deprecated function to handle the title. <a hre
|
|
291 |
6. SEOPress PRO
|
292 |
7. Installation Wizard
|
293 |
|
294 |
-
== Changelog ==
|
295 |
-
=
|
296 |
-
*
|
297 |
-
|
298 |
-
*
|
299 |
-
|
300 |
-
* NEW
|
301 |
-
* NEW
|
302 |
-
* NEW
|
303 |
-
* NEW
|
304 |
-
* NEW
|
305 |
-
* NEW Notification to
|
306 |
-
* NEW Notification
|
307 |
-
* NEW
|
308 |
-
*
|
309 |
-
*
|
310 |
-
*
|
311 |
-
*
|
312 |
-
*
|
313 |
-
*
|
314 |
-
*
|
315 |
-
*
|
316 |
-
*
|
317 |
-
*
|
318 |
-
*
|
319 |
-
*
|
320 |
-
*
|
321 |
-
* INFO
|
322 |
-
*
|
323 |
-
*
|
324 |
-
*
|
325 |
-
*
|
326 |
-
*
|
327 |
-
*
|
328 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
* FIX i18n strings
|
330 |
-
* FIX Improve accessibility
|
331 |
-
= 3.8.9.1 =
|
332 |
-
* FIX JS error for import tool with WP 5.5
|
333 |
-
= 3.8.9 =
|
334 |
-
* NEW Design for Configuration Wizard
|
335 |
-
* NEW Oembed for LinkedIn!
|
336 |
-
* NEW Onboarding for Redirections / Schemas post type list
|
337 |
-
* NEW Dynamic variable %%currentmonth_num%% to display the current month in digital format
|
338 |
-
* NEW "seopress_titles_custom_tax" hook to filter %%_ct_your_custom_taxonomy_slug%% dynamic variable (https://www.seopress.org/support/hooks/filter-_ct_your_custom_taxonomy_slug-dynamic-variable/)
|
339 |
-
* NEW "seopress_oembed_thumbnail" hook to filter the post thumbnail array used in oembed (https://www.seopress.org/support/hooks/filter-post-thumbnail-in-oembed/)
|
340 |
-
* NEW "seopress_oembed_thumbnail_size" hook to filter the post thumbnail size used in oembed (https://www.seopress.org/support/hooks/filter-post-thumbnail-size-used-in-oembed/)
|
341 |
-
* NEW "seopress_oembed_title" hook to filter the post title used in oembed (https://www.seopress.org/support/hooks/filter-title-used-in-oembed/)
|
342 |
-
* NEW "Disable all automatic schemas for this post?" option from Structured Data Types metabox
|
343 |
-
* NEW "Disable this automatic schema for this post?" option from Structured Data Types metabox
|
344 |
-
* INFO Responsive design enhancements
|
345 |
-
* INFO White label: Remove SEOPress logo in Wizard
|
346 |
-
* INFO Update link to Rich Snippets Google testing tool
|
347 |
-
* INFO Remove hreflang tags from TranslatePress v2 if noindex
|
348 |
-
* FIX Outbound links in Content Analysis
|
349 |
-
* FIX call_user_func_array() expects parameter 1 to be a valid callback, class 'SEOPRESS_CSV_Importers' does not have a method 'post_importer_compatibility'
|
350 |
-
* FIX PHP comments in SEOPress submenu
|
351 |
-
* FIX Breadcrumbs issue with WooCommerce
|
352 |
-
* FIX Import tool for Configuration Wizard
|
353 |
-
* FIX "Undefined variable: seopress_get_post_type" from /inc/admin/ajax.php line 127
|
354 |
-
* FIX Keywords in Permalinks with dashes
|
355 |
-
= 3.8.8 =
|
356 |
-
* NEW Google Enhanced Ecommerce! Measure purchases, additions and removals from shopping carts 🎉 (PRO)
|
357 |
-
* NEW robots.txt file for multisite and multidomain installations (PRO)
|
358 |
-
* NEW Export Redirections for an .htaccess file (SEO, Tools, Redirections - PRO)
|
359 |
-
* NEW Option to add noindex meta robots on paged archive pages (SEO, Titles and metas, Advanced tab)
|
360 |
-
* NEW Add IP address to 404 monitoring (PRO)
|
361 |
-
* NEW Hook 'seopress_pro_breadcrumbs_remove_cpt' to remove CPT from single view for Breadcrumbs (https://www.seopress.org/support/hooks/delete-the-custom-post-type-archive-from-a-single-view-for-the-breadcrumb/ - PRO)
|
362 |
-
* NEW Hook 'seopress_gtag_ec_purchases_ev' to filter GA Enhanced Ecommerce Purchase event (https://www.seopress.org/support/hooks/filter-google-analytics-ecommerce-purchase-tracking/)
|
363 |
-
* NEW Hooks 'seopress_gtag_ec_add_to_cart_checkout_ev', 'seopress_gtag_ec_add_to_cart_single_ev', 'seopress_gtag_ec_add_to_cart_archive_ev' to filter GA Enhanced Ecommerce Add To Cart event (https://www.seopress.org/support/hooks/filter-add-to-cart-events-for-google-enhanced-ecommerce/)
|
364 |
-
* NEW Hooks 'seopress_gtag_ec_remove_from_cart_checkout_ev', 'seopress_gtag_ec_remove_from_cart_ev' to filter GA Enhanced Ecommerce Remove from Cart event (https://www.seopress.org/support/hooks/filter-remove-from-cart-event-for-google-enhanced-ecommerce/)
|
365 |
-
* NEW White Label: hide SEOPress links / help icons (SEO, PRO, White Label)
|
366 |
-
* INFO Add responsive controler for our Elementor Breadcrumbs
|
367 |
-
* INFO Improve accessibility for tooltips and SEOPress' metaboxes
|
368 |
-
* INFO Improve compatibility with Permalink Manager plugin if autoredirect enabled for "keywords in permalink" feature
|
369 |
-
* INFO Sortable questions for FAQ schema
|
370 |
-
* INFO Add WooCommerce short product description to content analysis
|
371 |
-
* INFO Add target keyword column to Admin Columns PRO (PRO)
|
372 |
-
* INFO Remove "cancel reply", "reply" nofollow links from content analysis to avoid confusion
|
373 |
-
* INFO Exclude avatar from content analysis - alt texts of images (not relevant)
|
374 |
-
* INFO Automatically remove WP 5.5 XML sitemaps feature to avoid any conflits and SEO issues
|
375 |
-
* INFO Refactoring robots.txt feature: you don't need to add rewrite rules for NGINX servers anymore!
|
376 |
-
* INFO Remove hreflang tags from WPML, Polylang, MultilingualPress v2 if noindex
|
377 |
-
* INFO Video duration field converted to input text to avoid browser compatibility issues
|
378 |
-
* FIX Blog page and Shop page for Breadcrumbs (PRO)
|
379 |
-
* FIX Fix Italian translation PO/MO
|
380 |
-
* FIX servesCuisine property typo for SEO > PRO > LocalBusiness schema (PRO)
|
381 |
-
* FIX 403 error on license activation with some webhosts
|
382 |
-
* FIX Social notification for Twitter Preview if Social options are disabled
|
383 |
-
* FIX JS error from SEO, Social Networks page when uploading a default OG/Twitter img
|
384 |
-
* FIX Google Analytics to avoid sending a double code when clicking on the Accept button if GDPR is off
|
385 |
-
* FIX Escaping dynamic variables with custom schema
|
386 |
-
* FIX PHP warning in HTML sitemap if "Pages" post type is not included
|
387 |
|
388 |
<a href="https://www.seopress.org/changelog/" target="_blank">View complete changelog</a>
|
2 |
Authors: rainbowgeek
|
3 |
Contributors: rainbowgeek, juliobox, maigret, mgris, gmulti
|
4 |
Donate link: https://www.seopress.org/
|
5 |
+
Tags: SEO, XML sitemap, meta title, open graph, content analysis, knowledge graph, redirection, breadcrumbs, google analytics, rich snippets, broken link checker, Schema.org
|
6 |
Requires at least: 4.7+
|
7 |
Tested up to: 5.5
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 4.0
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
150 |
<li>🇷🇺 Русский (Russian) - professional translation</li>
|
151 |
<li>🇯🇵 日本語 (Japanese) - professional translation</li>
|
152 |
<li>🇮🇳 हिन्दी (Hindi) - professional translation</li>
|
153 |
+
<li>🇨🇳 中文 (Chinese (China)) - professional translation</li>
|
154 |
<li>🇧🇷 Português do Brasil (Portuguese (Brazil)) - professional translation</li>
|
155 |
<li>🇬🇷 Ελληνικά (Greek)</li>
|
156 |
<li>🇧🇬 Български (Bulgarian)</li>
|
159 |
<li>🇻🇳 Loki Web (Vietnamese)</li>
|
160 |
<li>🇷🇴 Română (Romanian)</li>
|
161 |
<li>🇸🇦 العربية (Arabic)</li>
|
|
|
162 |
<li>🇮🇷 فارسی (Persian)</li>
|
163 |
<li>🇹🇷 Türkçe (Turkish)</li>
|
164 |
<li>...</li>
|
196 |
<li><a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-wp-meta-seo-to-seopress/?utm_source=w.org&utm_campaign=seopress&utm_medium=readme" target="_blank">WP Meta SEO</a></li>
|
197 |
<li><a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-premium-seo-pack-to-seopress/?utm_source=w.org&utm_campaign=seopress&utm_medium=readme" target="_blank">Premium SEO Pack</a></li>
|
198 |
<li><a href="https://www.seopress.org/support/guides/import-post-metadatas-from-squirrly-to-seopress/?utm_source=w.org&utm_campaign=seopress&utm_medium=readme" target="_blank">Squirrly</a></li>
|
199 |
+
<li><a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-wpseo-to-seopress/?utm_source=w.org&utm_campaign=seopress&utm_medium=readme" target="_blank">wpSEO</a></li>
|
200 |
</ul>
|
201 |
|
202 |
<h3>Help and support</h3>
|
240 |
|
241 |
= Can I import my post and term metadata from other plugins? =
|
242 |
|
243 |
+
You can import your metadata from <a href="https://www.seopress.org/support/guides/import-post-terms-metadatas-yoast-seo-seopress/">Yoast SEO</a>, <a href="https://www.seopress.org/support/guides/import-post-and-terms-metadatas-from-all-in-one-seo-to-seopress/">All In One SEO (AIO SEO)</a>, <a href="https://www.seopress.org/support/guides/import-post-and-terms-metadatas-from-the-seo-framework-to-seopress/">The SEO Framework (TSF)</a>, <a href="https://www.seopress.org/support/guides/import-post-metadatas-from-squirrly-to-seopress/">Squirrly</a> (post metas only, not terms), <a href="https://www.seopress.org/support/guides/import-post-terms-metadatas-rank-math-seo-seopress/">Rank Math</a>, <a href="https://www.seopress.org/support/guides/import-post-metadata-from-seo-ultimate-to-seopress/">SEO Ultimate (post metas only, not terms)</a>, <a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-wp-meta-seo-to-seopress/">WP Meta SEO</a>, <a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-wpseo-to-seopress/">wpSEO</a> and <a href="https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-premium-seo-pack-to-seopress/">Premium SEO Pack</a> in one click to SEOPress without losing traffic.
|
244 |
|
245 |
= How to use Google Tag Manager / Facebook Pixel with SEOPress? =
|
246 |
|
267 |
|
268 |
Yes! Learn more here <a href="https://www.seopress.org/features/seopress-white-label/">about SEOPress and the White Label feature</a>
|
269 |
|
270 |
+
= Is it compatible with the core XML sitemaps (WP 5.5+)? =
|
271 |
+
|
272 |
+
Yes! We automatically disable the native WordPress XML sitemaps to avoid any SEO conflicts. Plus, we our sitemaps are much powerful!
|
273 |
+
|
274 |
= My XML sitemap returns a 404 error =
|
275 |
|
276 |
Read this <a href="https://www.seopress.org/support/guides/xml-sitemap-returns-404-error/">post to solve this issue</a>
|
296 |
6. SEOPress PRO
|
297 |
7. Installation Wizard
|
298 |
|
299 |
+
== Changelog ==
|
300 |
+
= 4.0 <a href="https://www.seopress.org/blog/elementor-integration-semi-automatic-redirections-seopress-4-0/">Read our Blog post update</a> =
|
301 |
+
* NEW Elementor integration (part 2): now with Google Preview and Content Analysis
|
302 |
+
* NEW Semi-automatic redirections when you delete/change a slug (PRO) 🎉
|
303 |
+
* NEW BuddyPress / BuddyBoss compatibility 🎉
|
304 |
+
* NEW Chinese language for the Free version (PRO version will follow soon) 🎉
|
305 |
+
* NEW Local Business widget to easily display your business address, phone and more! (PRO) 🎉 (Appearance > Widgets > Local Business)
|
306 |
+
* NEW Notice in admin bar if you're site is globally set to noindex
|
307 |
+
* NEW Notice in admin bar if you're CPT is globally set to noindex / nofollow
|
308 |
+
* NEW Import your post and term metadata from wpSEO plugin (https://www.seopress.org/support/guides/import-post-and-terms-metadata-from-wpseo-to-seopress/)
|
309 |
+
* NEW Notification in SEOPress Dashboard to warn TagDiv / Newspaper users about a compatibility issue
|
310 |
+
* NEW Notification in SEOPress Dashboard to warn users if DIVI SEO options are enabled to avoid conflicts
|
311 |
+
* NEW Notification in SEOPress Dashboard to warn users about a wrong configuration with permalink structure
|
312 |
+
* NEW Dynamic variable for meta / custom schema: %%post_url%% - Post URL (ie: permalink)
|
313 |
+
* NEW 'seopress_post_automatic_redirect' hook to disable automatic redirect suggestions (https://www.seopress.org/support/hooks/disable-automatic-redirect-suggestions/)
|
314 |
+
* NEW 'seopress_titles_post_url' hook to filter post URL dynamic variable (https://www.seopress.org/support/hooks/filter-seopress_titles_post_url-dynamic-variable/)
|
315 |
+
* NEW 'seopress_lb_widget_title' hook to filter Local Business widget title (https://www.seopress.org/support/hooks/filter-local-business-widget-title/)
|
316 |
+
* NEW 'seopress_lb_widget_desc' hook to filter Local Business widget description (https://www.seopress.org/support/hooks/filter-local-business-widget-description/)
|
317 |
+
* NEW 'seopress_lb_widget_street_address' hook to filter Local Business widget street address (https://www.seopress.org/support/hooks/filter-local-business-widget-street-address/)
|
318 |
+
* NEW 'seopress_lb_widget_city' hook to filter Local Business widget city (https://www.seopress.org/support/hooks/filter-local-business-widget-city/)
|
319 |
+
* NEW 'seopress_lb_widget_state' hook to filter Local Business widget state (https://www.seopress.org/support/hooks/filter-local-business-widget-state/)
|
320 |
+
* NEW 'seopress_lb_widget_code' hook to filter Local Business widget postal code (https://www.seopress.org/support/hooks/filter-local-business-widget-postal-code/)
|
321 |
+
* NEW 'seopress_lb_widget_country' hook to filter Local Business widget country (https://www.seopress.org/support/hooks/filter-local-business-widget-country/)
|
322 |
+
* NEW 'seopress_lb_widget_map' hook to filter Local Business widget map (https://www.seopress.org/support/hooks/filter-local-business-widget-map-link/)
|
323 |
+
* NEW 'seopress_lb_widget_phone' hook to filter Local Business widget phone number (https://www.seopress.org/support/hooks/filter-local-business-widget-phone-number/)
|
324 |
+
* NEW 'seopress_lb_widget_opening_hours' hook to filter Local Business widget opening hours (https://www.seopress.org/support/hooks/filter-local-business-widget-opening-hours/)
|
325 |
+
* NEW 'seopress_lb_widget_css' hook to filter Local Business widget custom inline css
|
326 |
+
* INFO Automatically remove duplicate entries when importing redirections using a CSV file
|
327 |
+
* INFO Updated the following translations: English, French, Spanish, German, Dutch, Russian, Japanese, Hindi, Portuguese
|
328 |
+
* INFO Display Content Analysis Score columns in post type by default (SEO > Advanced > Appearance to customze the settings)
|
329 |
+
* INFO Add additional checks to avoid fatal error when we set default values
|
330 |
+
* INFO Improve schemas upgrader
|
331 |
+
* INFO Improve UI for Structured Data Types metabox
|
332 |
+
* INFO Improve help for XML sitemaps settings page
|
333 |
+
* INFO Native WP XML sitemaps are now disabled only our sitemap feature is enabled (ON by default)
|
334 |
+
* INFO Add some comments for translators
|
335 |
+
* INFO Change canonical URL for paginated archive pages to current URL
|
336 |
+
* FIX Issue when using %%wc_product_attributes%% in custom schema
|
337 |
+
* FIX Welcome screen SVG image missing
|
338 |
+
* FIX LifterLMS compatibility for private areas
|
339 |
+
* FIX Closing <li> tag (thanks to @Presskopp https://github.com/wp-seopress/wp-seopress-public/pull/18)
|
340 |
+
* FIX Incorrect conditional tag for Where to display the schema? option (props @maigret)
|
341 |
* FIX i18n strings
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
|
343 |
<a href="https://www.seopress.org/changelog/" target="_blank">View complete changelog</a>
|
@@ -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:
|
7 |
Author: SEOPress
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
@@ -55,7 +55,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
|
|
55 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
56 |
//Define
|
57 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
58 |
-
define( 'SEOPRESS_VERSION', '
|
59 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
60 |
|
61 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -213,6 +213,10 @@ function seopress_add_admin_options_scripts( $hook ) {
|
|
213 |
'seopress_nonce' => wp_create_nonce('seopress_premium_seo_pack_migrate_nonce'),
|
214 |
'seopress_premium_seo_pack_migration' => admin_url( 'admin-ajax.php'),
|
215 |
],
|
|
|
|
|
|
|
|
|
216 |
'seopress_metadata_csv' => [
|
217 |
'seopress_nonce' => wp_create_nonce('seopress_export_csv_metadata_nonce'),
|
218 |
'seopress_metadata_export' => admin_url( 'admin-ajax.php'),
|
@@ -281,7 +285,7 @@ function seopress_admin_bar_css() {
|
|
281 |
wp_enqueue_style( 'seopress-admin-bar' );
|
282 |
}
|
283 |
}
|
284 |
-
add_action('init', 'seopress_admin_bar_css',
|
285 |
|
286 |
//Quick Edit
|
287 |
function seopress_add_admin_options_scripts_quick_edit() {
|
@@ -354,13 +358,6 @@ function seopress_remove_wpml_home_url_filter( $home_url, $url, $path, $orig_sch
|
|
354 |
return $url;
|
355 |
}
|
356 |
|
357 |
-
/**
|
358 |
-
* Remove default WP XML sitemaps
|
359 |
-
*
|
360 |
-
* @since 3.8.8
|
361 |
-
*/
|
362 |
-
remove_action( 'init', 'wp_sitemaps_get_server' );
|
363 |
-
|
364 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
365 |
//Credits footer
|
366 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -497,6 +494,10 @@ function seopress_get_taxonomies( $with_terms = false ) {
|
|
497 |
$output = 'objects'; // or objects
|
498 |
$operator = 'and'; // 'and' or 'or'
|
499 |
$taxonomies = get_taxonomies( $args, $output, $operator );
|
|
|
|
|
|
|
|
|
500 |
|
501 |
$taxonomies = apply_filters('seopress_get_taxonomies_list', $taxonomies);
|
502 |
|
@@ -522,7 +523,7 @@ function seopress_get_custom_fields() {
|
|
522 |
|
523 |
$limit = (int) apply_filters( 'postmeta_form_limit', 250 );
|
524 |
$cf_keys = $wpdb->get_col( $wpdb->prepare( "
|
525 |
-
SELECT meta_key
|
526 |
FROM $wpdb->postmeta
|
527 |
GROUP BY meta_key
|
528 |
HAVING meta_key NOT LIKE '\_%%'
|
@@ -711,6 +712,15 @@ function seopress_xml_sitemap_img_enable_option() {
|
|
711 |
}
|
712 |
}
|
713 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
714 |
//Rewrite Rules for XML Sitemap
|
715 |
if (seopress_xml_sitemap_general_enable_option() =='1' && seopress_get_toggle_option('xml-sitemap') =='1') {
|
716 |
add_action( 'init', 'seopress_xml_sitemap_rewrite' );
|
3 |
Plugin Name: SEOPress
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: One of the best SEO plugins for WordPress.
|
6 |
+
Version: 4.0
|
7 |
Author: SEOPress
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
55 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
56 |
//Define
|
57 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
58 |
+
define( 'SEOPRESS_VERSION', '4.0' );
|
59 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
60 |
|
61 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
213 |
'seopress_nonce' => wp_create_nonce('seopress_premium_seo_pack_migrate_nonce'),
|
214 |
'seopress_premium_seo_pack_migration' => admin_url( 'admin-ajax.php'),
|
215 |
],
|
216 |
+
'seopress_wpseo_migrate' => [
|
217 |
+
'seopress_nonce' => wp_create_nonce('seopress_wpseo_migrate_nonce'),
|
218 |
+
'seopress_wpseo_migration' => admin_url( 'admin-ajax.php'),
|
219 |
+
],
|
220 |
'seopress_metadata_csv' => [
|
221 |
'seopress_nonce' => wp_create_nonce('seopress_export_csv_metadata_nonce'),
|
222 |
'seopress_metadata_export' => admin_url( 'admin-ajax.php'),
|
285 |
wp_enqueue_style( 'seopress-admin-bar' );
|
286 |
}
|
287 |
}
|
288 |
+
add_action('init', 'seopress_admin_bar_css', 12, 1);
|
289 |
|
290 |
//Quick Edit
|
291 |
function seopress_add_admin_options_scripts_quick_edit() {
|
358 |
return $url;
|
359 |
}
|
360 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
361 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
362 |
//Credits footer
|
363 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
494 |
$output = 'objects'; // or objects
|
495 |
$operator = 'and'; // 'and' or 'or'
|
496 |
$taxonomies = get_taxonomies( $args, $output, $operator );
|
497 |
+
|
498 |
+
unset(
|
499 |
+
$taxonomies['seopress_bl_competitors']
|
500 |
+
);
|
501 |
|
502 |
$taxonomies = apply_filters('seopress_get_taxonomies_list', $taxonomies);
|
503 |
|
523 |
|
524 |
$limit = (int) apply_filters( 'postmeta_form_limit', 250 );
|
525 |
$cf_keys = $wpdb->get_col( $wpdb->prepare( "
|
526 |
+
SELECT DISTINCT meta_key
|
527 |
FROM $wpdb->postmeta
|
528 |
GROUP BY meta_key
|
529 |
HAVING meta_key NOT LIKE '\_%%'
|
712 |
}
|
713 |
}
|
714 |
|
715 |
+
/**
|
716 |
+
* Remove default WP XML sitemaps
|
717 |
+
*
|
718 |
+
* @since 3.8.8
|
719 |
+
*/
|
720 |
+
if (seopress_get_toggle_option('xml-sitemap') =='1') {
|
721 |
+
remove_action( 'init', 'wp_sitemaps_get_server' );
|
722 |
+
}
|
723 |
+
|
724 |
//Rewrite Rules for XML Sitemap
|
725 |
if (seopress_xml_sitemap_general_enable_option() =='1' && seopress_get_toggle_option('xml-sitemap') =='1') {
|
726 |
add_action( 'init', 'seopress_xml_sitemap_rewrite' );
|