SEOPress - Version 4.3.0.2

Version Description

(19/01/2021) = * FIX Analytics tracking code if no UA-XXX set * FIX Conflict Google Analytics with UpdraftPlus (PRO)

Download this release

Release Info

Developer rainbowgeek
Plugin Icon 128x128 SEOPress
Version 4.3.0.2
Comparing to
See all releases

Code changes from version 4.3.0.1 to 4.3.0.2

assets/img/help/google-knowledge-graph-social.png ADDED
Binary file
inc/admin/admin-metaboxes-content-analysis-form.php CHANGED
File without changes
inc/admin/admin-metaboxes-get-content-analysis.php ADDED
@@ -0,0 +1,740 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined( 'ABSPATH' ) or die( 'Please don&rsquo;t call the plugin directly. Thanks :)' );
3
+
4
+ //Analyzes
5
+ $analyzes = array(
6
+ 'schemas'=> array(
7
+ 'title' => __('Structured data types','wp-seopress'),
8
+ 'impact' => 'good',
9
+ 'desc' => NULL
10
+ ),
11
+ 'old_post'=> array(
12
+ 'title' => __('Last modified date','wp-seopress'),
13
+ 'impact' => 'good',
14
+ 'desc' => NULL
15
+ ),
16
+ 'words_counter'=> array(
17
+ 'title' => __('Words counter','wp-seopress'),
18
+ 'impact' => 'good',
19
+ 'desc' => NULL
20
+ ),
21
+ 'keywords_density'=> array(
22
+ 'title' => __('Keywords density','wp-seopress'),
23
+ 'impact' => NULL,
24
+ 'desc' => NULL
25
+ ),
26
+ 'keywords_permalink'=> array(
27
+ 'title' => __('Keywords in permalink','wp-seopress'),
28
+ 'impact' => NULL,
29
+ 'desc' => NULL
30
+ ),
31
+ 'headings'=> array(
32
+ 'title' => __('Headings','wp-seopress'),
33
+ 'impact' => 'good',
34
+ 'desc' => NULL
35
+ ),
36
+ 'meta_title'=> array(
37
+ 'title' => __('Meta title','wp-seopress'),
38
+ 'impact' => NULL,
39
+ 'desc' => NULL
40
+ ),
41
+ 'meta_desc'=> array(
42
+ 'title' => __('Meta description','wp-seopress'),
43
+ 'impact' => NULL,
44
+ 'desc' => NULL
45
+ ),
46
+ 'social'=> array(
47
+ 'title' => __('Social meta tags','wp-seopress'),
48
+ 'impact' => 'good',
49
+ 'desc' => NULL
50
+ ),
51
+ 'robots'=> array(
52
+ 'title' => __('Meta robots','wp-seopress'),
53
+ 'impact' => 'good',
54
+ 'desc' => NULL
55
+ ),
56
+ 'img_alt'=> array(
57
+ 'title' => __('Alternative texts of images','wp-seopress'),
58
+ 'impact' => 'good',
59
+ 'desc' => NULL
60
+ ),
61
+ 'nofollow_links'=> array(
62
+ 'title' => __('NoFollow Links','wp-seopress'),
63
+ 'impact' => 'good',
64
+ 'desc' => NULL
65
+ ),
66
+ 'outbound_links'=> array(
67
+ 'title' => __('Outbound Links','wp-seopress'),
68
+ 'impact' => 'good',
69
+ 'desc' => NULL
70
+ ),
71
+ );
72
+
73
+ //Schemas
74
+ if (!empty($seopress_analysis_data['json']) || isset($seopress_analysis_data['json'])) {
75
+ $desc = '<p>'.__('We found these schemas in the source code of this page:','wp-seopress').'</p>';
76
+
77
+ $desc .= '<ul>';
78
+ $json_ld = array_filter($seopress_analysis_data['json']);
79
+ foreach(array_count_values($json_ld) as $key => $value) {
80
+ $html = NULL;
81
+ if ($value > 1) {
82
+ $html = '<span class="impact high">'.__('duplicated schema - x','wp-seopress').$value.'</span>';
83
+ $analyzes['schemas']['impact'] = 'high';
84
+ }
85
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$key.$html.'</li>';
86
+ }
87
+ $desc .= '</ul>';
88
+ $analyzes['schemas']['desc'] = $desc;
89
+ } else {
90
+ $analyzes['schemas']['impact'] = 'medium';
91
+ $analyzes['schemas']['desc'] = '<p>'.__('No schemas found in the source code of this page.','wp-seopress').'</p>';
92
+ }
93
+
94
+ //Old post
95
+ $desc = NULL;
96
+ if( strtotime( $post->post_modified ) < strtotime('-365 days') ) {
97
+ $analyzes['old_post']['impact'] = 'medium';
98
+ $desc = '<p><span class="dashicons dashicons-no-alt"></span>'.__('This post is a little old!','wp-seopress').'</p>';
99
+ } else {
100
+ $desc = '<p><span class="dashicons dashicons-yes"></span>'.__('The last modified date of this article is less than 1 year. Cool!','wp-seopress').'</p>';
101
+ }
102
+ $desc .= '<p>'.__('Search engines love fresh content. Regularly update your articles without having to rewrite your content entirely and give them a boost in search rankings. We takes care of the technical part.','wp-seopress').'</p>';
103
+ $analyzes['old_post']['desc'] = $desc;
104
+
105
+ //Word counters
106
+ $desc = NULL;
107
+ if (isset($seopress_analysis_data['words_counter']) || isset($seopress_analysis_data['words_counter_unique'])) {
108
+ $desc = '<p>'.__('Words counter is not a direct ranking factor. But, your content must be as qualitative as possible, with relevant and unique information. To fulfill these conditions, your article requires a minimum of paragraphs, so words.','wp-seopress').'</p>
109
+ <ul>
110
+ <li>'.$seopress_analysis_data['words_counter'].' '.__('words found.','wp-seopress').'</li>
111
+ <li>'.$seopress_analysis_data['words_counter_unique'].' '.__('unique words found.','wp-seopress').'</li>';
112
+
113
+ if ($seopress_analysis_data['words_counter'] >= 299) {
114
+ $desc .= '<li><span class="dashicons dashicons-yes"></span>'.__('Your content is composed of more than 300 words, which is the minimum for a post.','wp-seopress').'</li>';
115
+ } else {
116
+ $desc .= '<li><span class="dashicons dashicons-no-alt"></span>'.__('Your content is too short. Add a few more paragraphs!','wp-seopress').'</li>';
117
+ $analyzes['words_counter']['impact'] = 'medium';
118
+ }
119
+ $desc .= '</ul>';
120
+
121
+ $analyzes['words_counter']['desc'] = $desc;
122
+ } else {
123
+ $analyzes['words_counter']['desc'] = '<p><span class="dashicons dashicons-no-alt"></span>'.__('No content? Add a few more paragraphs!','wp-seopress').'</p>';
124
+ $analyzes['words_counter']['impact'] = 'high';
125
+ }
126
+
127
+ //Keywords density
128
+ if (!empty($seopress_analysis_data['kws_density']['matches']) && isset($seopress_analysis_data['words_counter'])) {
129
+ $target_kws_density = $seopress_analysis_data['kws_density']['matches'];
130
+
131
+ $desc = '<ul>';
132
+ foreach ($target_kws_density as $key => $value) {
133
+ foreach ($value as $_key => $_value) {
134
+ $kw_count = count($_value);
135
+ }
136
+ $kw_name = $key;
137
+ $kw_density = round($kw_count/$seopress_analysis_data['words_counter']*100, 2);
138
+ /* translators: %s target keyword %d count target keyword %s keyword density in % */
139
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.sprintf(esc_html__('%s was found %d times in your content, a keyword density of %s%%','wp-seopress'), $kw_name, $kw_count, $kw_density).'</li>';
140
+ }
141
+ $desc .= '</ul>';
142
+ $desc .= '<p class="description">'.__('Learn more about <a href="https://www.youtube.com/watch?v=Rk4qgQdp2UA" target="_blank">keywords stuffing</a>.','wp-seopress').'</p>';
143
+ $analyzes['keywords_density']['impact'] = 'good';
144
+ $analyzes['keywords_density']['desc'] = $desc;
145
+ } else {
146
+ $analyzes['keywords_density']['desc'] = '<p>'.__('We were unable to calculate the density of your keywords. You probably haven‘t added any content or your target keywords were not find in your post content.','wp-seopress').'</p>';
147
+ $analyzes['keywords_density']['impact'] = 'high';
148
+ }
149
+
150
+ //Keywords in permalink
151
+ if (!empty($seopress_analysis_data['kws_permalink']['matches'])) {
152
+ $desc = '<p><span class="dashicons dashicons-yes"></span>'.__('Cool, one of your target keyword is used in your permalink.','wp-seopress').'</p>';
153
+
154
+ $target_kws_permalink = $seopress_analysis_data['kws_permalink']['matches'];
155
+
156
+ $desc .= '<ul>';
157
+ foreach ($target_kws_permalink as $key => $value) {
158
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$key.'</li>';
159
+ }
160
+ $desc .= '</ul>';
161
+ $analyzes['keywords_permalink']['desc'] = $desc;
162
+ $analyzes['keywords_permalink']['impact'] = 'good';
163
+ } else {
164
+ global $post;
165
+ if (get_option( 'page_on_front' ) == $post->ID) {
166
+ $analyzes['keywords_permalink']['desc'] = '<p><span class="dashicons dashicons-yes"></span>'.__('This is your homepage. This check doesn\'t apply here because there is no slug.','wp-seopress').'</p>';
167
+ $analyzes['keywords_permalink']['impact'] = 'good';
168
+ } else {
169
+ $analyzes['keywords_permalink']['desc'] = '<p><span class="dashicons dashicons-no-alt"></span>'.__('You should add one of your target keyword in your permalink.','wp-seopress').'</p>';
170
+ $analyzes['keywords_permalink']['impact'] = 'medium';
171
+ }
172
+ }
173
+
174
+
175
+ //Headings
176
+ //H1
177
+ $desc = NULL;
178
+ if (!empty($seopress_analysis_data['h1']['matches'])) {
179
+ $desc .= '<h4>'.__('H1 (Heading 1)','wp-seopress').'</h4>';
180
+
181
+ $count = $seopress_analysis_data['h1']['nomatches']['count'];
182
+
183
+ $target_kws_h1 = $seopress_analysis_data['h1']['matches'];
184
+
185
+ $all_h1 = $seopress_analysis_data['h1']['values'];
186
+
187
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('Target keywords were found in Heading 1 (H1).','wp-seopress').'</p>';
188
+
189
+ $desc .= '<ul>';
190
+
191
+ foreach ($target_kws_h1 as $key => $value) {
192
+ foreach ($value as $_key => $_value) {
193
+ $kw_count = count($value);
194
+ }
195
+ $kw_name = $key;
196
+ /* translators: %s target keyword %d count target keyword */
197
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.sprintf(esc_html__('%s was found %d times.','wp-seopress'), $kw_name, $kw_count).'</li>';
198
+ }
199
+
200
+ $desc .= '</ul>';
201
+ if ($count > 1) {
202
+ /* translators: %d: count heading 1 */
203
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.sprintf(esc_html__('We found %d Heading 1 (H1) in your content.','wp-seopress'), $count).'</p>';
204
+ $desc .= '<p>'.__('You should not use more than one H1 heading in your post content. The rule is simple: only one H1 for each web page. It is better for both SEO and accessibility. Below, the list:','wp-seopress').'</p>';
205
+ $analyzes['headings']['impact'] = 'high';
206
+ }
207
+
208
+ if (!empty($all_h1)) {
209
+ $desc .= '<ul>';
210
+ foreach($all_h1 as $h1) {
211
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$h1.'</li>';
212
+ }
213
+ $desc .= '</ul>';
214
+ }
215
+ }
216
+
217
+ //H2
218
+ $desc .= '<h4>'.__('H2 (Heading 2)','wp-seopress').'</h4>';
219
+ if (!empty($seopress_analysis_data['h2']['matches'])) {
220
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('Target keywords were found in Heading 2 (H2).','wp-seopress').'</p>';
221
+ $desc .= '<ul>';
222
+ $target_kws_h2 = $seopress_analysis_data['h2']['matches'];
223
+ foreach ($target_kws_h2 as $key => $value) {
224
+ foreach ($value as $_key => $_value) {
225
+ $kw_count = count($value);
226
+ }
227
+ $kw_name = $key;
228
+ /* translators: %s target keyword %d count target keyword */
229
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.sprintf(esc_html__('%s was found %d times.','wp-seopress'), $kw_name, $kw_count).'</li>';
230
+ }
231
+ $desc .= '</ul>';
232
+ } else {
233
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('None of your target keywords were found in Heading 2 (H2).','wp-seopress').'</p>';
234
+ if ($analyzes['headings']['impact'] != 'high') {
235
+ $analyzes['headings']['impact'] = 'medium';
236
+ }
237
+ }
238
+
239
+ //H3
240
+ $desc .= '<h4>'.__('H3 (Heading 3)','wp-seopress').'</h4>';
241
+ if (!empty($seopress_analysis_data['h3']['matches'])) {
242
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('Target keywords were found in Heading 3 (H3).','wp-seopress').'</p>';
243
+ $desc .= '<ul>';
244
+ $target_kws_h3 = $seopress_analysis_data['h3']['matches'];
245
+ foreach ($target_kws_h3 as $key => $value) {
246
+ foreach ($value as $_key => $_value) {
247
+ $kw_count = count($value);
248
+ }
249
+ $kw_name = $key;
250
+ /* translators: %s target keyword %d count target keyword */
251
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.sprintf(esc_html__('%s was found %d times.','wp-seopress'), $kw_name, $kw_count).'</li>';
252
+ }
253
+ $desc .= '</ul>';
254
+ } else {
255
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('None of your target keywords were found in Heading 3 (H3).','wp-seopress').'</p>';
256
+ if ($analyzes['headings']['impact'] != 'high') {
257
+ $analyzes['headings']['impact'] = 'medium';
258
+ }
259
+ }
260
+ $analyzes['headings']['desc'] = $desc;
261
+
262
+ //Meta Title
263
+ if ($seopress_titles_title !='') {
264
+ $desc = NULL;
265
+ if (!empty($seopress_analysis_data['meta_title']['matches'])) {
266
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('Target keywords were found in the Meta Title.','wp-seopress').'</p>';
267
+ $desc .= '<ul>';
268
+ $target_kws_title = $seopress_analysis_data['meta_title']['matches'];
269
+ foreach ($target_kws_title as $key => $value) {
270
+ foreach ($value as $_key => $_value) {
271
+ $kw_count = count($_value);
272
+ }
273
+ $kw_name = $key;
274
+ /* translators: %s target keyword %d count target keyword */
275
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.sprintf(esc_html__('%s was found %d times.','wp-seopress'), $kw_name, $kw_count).'</li>';
276
+ }
277
+ $desc .= '</ul>';
278
+ $analyzes['meta_title']['impact'] = 'good';
279
+ } else {
280
+ $analyzes['meta_title']['impact'] = 'medium';
281
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('None of your target keywords were found in the Meta Title.','wp-seopress').'</p>';
282
+ }
283
+
284
+ if (mb_strlen($seopress_titles_title) > 65 ) {
285
+ $analyzes['meta_title']['impact'] = 'medium';
286
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your custom title is too long.','wp-seopress').'</p>';
287
+ } else {
288
+ $analyzes['meta_title']['impact'] = 'good';
289
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('The length of your title is correct','wp-seopress').'</p>';
290
+ }
291
+ $analyzes['meta_title']['desc'] = $desc;
292
+ } else {
293
+ $analyzes['meta_title']['impact'] = 'medium';
294
+ $analyzes['meta_title']['desc'] = '<p><span class="dashicons dashicons-no-alt"></span>'.__('No custom title is set for this post. If the global meta title suits you, you can ignore this recommendation.','wp-seopress').'</p>';
295
+ }
296
+
297
+ //Meta description
298
+ if ($seopress_titles_desc !='') {
299
+ $desc = NULL;
300
+ if (!empty($seopress_analysis_data['meta_description']['matches'])) {
301
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('Target keywords were found in the Meta description.','wp-seopress').'</p>';
302
+ $desc .= '<ul>';
303
+ $target_kws_desc = $seopress_analysis_data['meta_description']['matches'];
304
+ foreach ($target_kws_desc as $key => $value) {
305
+ foreach ($value as $_key => $_value) {
306
+ $kw_count = count($_value);
307
+ }
308
+ $kw_name = $key;
309
+ /* translators: %s target keyword %d count target keyword */
310
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.sprintf(esc_html__('%s was found %d times.','wp-seopress'), $kw_name, $kw_count).'</li>';
311
+ }
312
+ $desc .= '</ul>';
313
+ $analyzes['meta_desc']['impact'] = 'good';
314
+ } else {
315
+ $analyzes['meta_desc']['impact'] = 'medium';
316
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('None of your target keywords were found in the Meta description.','wp-seopress').'</p>';
317
+ }
318
+
319
+ if (mb_strlen($seopress_titles_desc) > 160 ) {
320
+ $analyzes['meta_desc']['impact'] = 'medium';
321
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('You custom meta description is too long.','wp-seopress').'</p>';
322
+ } else {
323
+ $analyzes['meta_desc']['impact'] = 'good';
324
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('The length of your meta description is correct','wp-seopress').'</p>';
325
+ }
326
+ $analyzes['meta_desc']['desc'] = $desc;
327
+ } else {
328
+ $analyzes['meta_desc']['impact'] = 'medium';
329
+ $analyzes['meta_desc']['desc'] = '<p><span class="dashicons dashicons-no-alt"></span>'.__('No custom meta description is set for this post. If the global meta description suits you, you can ignore this recommendation.','wp-seopress').'</p>';
330
+ }
331
+
332
+ //Social tags
333
+ //og:title
334
+ $desc = NULL;
335
+
336
+ $desc .= '<h4>'.__('Open Graph Title','wp-seopress').'</h4>';
337
+
338
+ if (!empty($seopress_analysis_data['og_title']['count'])) {
339
+ $count = $seopress_analysis_data['og_title']['count'];
340
+
341
+ $all_og_title = $seopress_analysis_data['og_title']['values'];
342
+
343
+ if ($count > 1) {
344
+ $analyzes['social']['impact'] = 'high';
345
+ /* translators: %d count Open Graph Title */
346
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.sprintf(esc_html__('We found %d og:title in your content.','wp-seopress'), $count).'</p>';
347
+ $desc .= '<p>'.__('You should not use more than one og:title in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:title tag from your source code. Below, the list:','wp-seopress').'</p>';
348
+ } elseif(empty($all_og_title[0])) { //If og:title empty
349
+ $analyzes['social']['impact'] = 'high';
350
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph Title tag is empty!','wp-seopress').'</p>';
351
+ } else {
352
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('We found an Open Graph Title tag in your source code.','wp-seopress').'</p>';
353
+ }
354
+
355
+ if (!empty($all_og_title)) {
356
+ $desc .= '<ul>';
357
+ foreach($all_og_title as $og_title) {
358
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$og_title.'</li>';
359
+ }
360
+ $desc .= '</ul>';
361
+ }
362
+ } else {
363
+ $analyzes['social']['impact'] = 'high';
364
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph Title is missing!','wp-seopress').'</p>';
365
+ }
366
+
367
+ //og:description
368
+ $desc .= '<h4>'.__('Open Graph Description','wp-seopress').'</h4>';
369
+
370
+ if (!empty($seopress_analysis_data['og_desc']['count'])) {
371
+
372
+ $count = $seopress_analysis_data['og_desc']['count'];
373
+
374
+ $all_og_desc = isset($seopress_analysis_data['og_desc']['values']) ? $seopress_analysis_data['og_desc']['values'] : [];
375
+
376
+ if ($count > 1) {
377
+ $analyzes['social']['impact'] = 'high';
378
+ /* translators: %d count Open Graph Description */
379
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.sprintf(esc_html__('We found %d og:description in your content.','wp-seopress'), $count).'</p>';
380
+ $desc .= '<p>'.__('You should not use more than one og:description in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:description tag from your source code. Below, the list:','wp-seopress').'</p>';
381
+ } elseif(empty($all_og_desc[0])) { //If og:description empty
382
+ $analyzes['social']['impact'] = 'high';
383
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph Description tag is empty!','wp-seopress').'</p>';
384
+ } else {
385
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('We found an Open Graph Description tag in your source code.','wp-seopress').'</p>';
386
+ }
387
+
388
+ if (!empty($all_og_desc)) {
389
+ $desc .= '<ul>';
390
+ foreach($all_og_desc as $og_desc) {
391
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$og_desc.'</li>';
392
+ }
393
+ $desc .= '</ul>';
394
+ }
395
+ } else {
396
+ $analyzes['social']['impact'] = 'high';
397
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph Description is missing!','wp-seopress').'</p>';
398
+ }
399
+
400
+ //og:image
401
+ $desc .= '<h4>'.__('Open Graph Image','wp-seopress').'</h4>';
402
+
403
+ if (!empty($seopress_analysis_data['og_img']['count'])) {
404
+
405
+ $count = $seopress_analysis_data['og_img']['count'];
406
+
407
+ $all_og_img = isset($seopress_analysis_data['og_img']['values']) ? $seopress_analysis_data['og_img']['values'] : [];
408
+
409
+ if ($count > 0 && !empty($all_og_img[0])) {
410
+ /* translators: %d count Open Graph Image */
411
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.sprintf(esc_html__('We found %d og:image in your content.','wp-seopress'), $count).'</p>';
412
+ }
413
+
414
+ //If og:image empty
415
+ if ($count > 0 && empty($all_og_img[0])) {
416
+ $analyzes['social']['impact'] = 'high';
417
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph Image tag is empty!','wp-seopress').'</p>';
418
+ }
419
+
420
+ if (!empty($all_og_img)) {
421
+ $desc .= '<ul>';
422
+ foreach($all_og_img as $og_img) {
423
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$og_img.'</li>';
424
+ }
425
+ $desc .= '</ul>';
426
+ }
427
+ } else {
428
+ $analyzes['social']['impact'] = 'high';
429
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph Image is missing!','wp-seopress').'</p>';
430
+ }
431
+
432
+ //og:url
433
+ $desc .= '<h4>'.__('Open Graph URL','wp-seopress').'</h4>';
434
+
435
+ if (!empty($seopress_analysis_data['og_url']['count'])) {
436
+
437
+ $count = $seopress_analysis_data['og_url']['count'];
438
+
439
+ $all_og_url = $seopress_analysis_data['og_url']['values'];
440
+
441
+ if ($count > 1) {
442
+ $analyzes['social']['impact'] = 'high';
443
+ /* translators: %d count Open Graph URL */
444
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.sprintf(esc_html__('We found %d og:url in your content.','wp-seopress'), $count).'</p>';
445
+ $desc .= '<p>'.__('You should not use more than one og:url in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:url tag from your source code. Below, the list:','wp-seopress').'</p>';
446
+ } elseif(empty($all_og_url[0])) { //If og:url empty
447
+ $analyzes['social']['impact'] = 'high';
448
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph URL tag is empty!','wp-seopress').'</p>';
449
+ } else {
450
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('We found an Open Graph URL tag in your source code.','wp-seopress').'</p>';
451
+ }
452
+
453
+ if (!empty($all_og_url)) {
454
+ $desc .= '<ul>';
455
+ foreach($all_og_url as $og_url) {
456
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$og_url.'</li>';
457
+ }
458
+ $desc .= '</ul>';
459
+ }
460
+ } else {
461
+ $analyzes['social']['impact'] = 'high';
462
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph URL is missing!','wp-seopress').'</p>';
463
+ }
464
+
465
+ //og:site_name
466
+ $desc .= '<h4>'.__('Open Graph Site Name','wp-seopress').'</h4>';
467
+
468
+ if (!empty($seopress_analysis_data['og_site_name']['count'])) {
469
+
470
+ $count = $seopress_analysis_data['og_site_name']['count'];
471
+
472
+ $all_og_site_name = $seopress_analysis_data['og_site_name']['values'];
473
+
474
+ if ($count > 1) {
475
+ $analyzes['social']['impact'] = 'high';
476
+ /* translators: %d count Open Graph site name */
477
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.sprintf(esc_html__('We found %d og:site_name in your content.','wp-seopress'), $count).'</p>';
478
+ $desc .= '<p>'.__('You should not use more than one og:site_name in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:site_name tag from your source code. Below, the list:','wp-seopress').'</p>';
479
+ } elseif(empty($all_og_site_name[0])) { //If og:site_name empty
480
+ $analyzes['social']['impact'] = 'high';
481
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph Site Name tag is empty!','wp-seopress').'</p>';
482
+ } else {
483
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('We found an Open Graph Site Name tag in your source code.','wp-seopress').'</p>';
484
+ }
485
+
486
+ if (!empty($all_og_site_name)) {
487
+ $desc .= '<ul>';
488
+ foreach($all_og_site_name as $og_site_name) {
489
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$og_site_name.'</li>';
490
+ }
491
+ $desc .= '</ul>';
492
+ }
493
+ } else {
494
+ $analyzes['social']['impact'] = 'high';
495
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Open Graph Site Name is missing!','wp-seopress').'</p>';
496
+ }
497
+
498
+ //twitter:title
499
+ $desc .= '<h4>'.__('Twitter Title','wp-seopress').'</h4>';
500
+
501
+ if (!empty($seopress_analysis_data['tw_title']['count'])) {
502
+
503
+ $count = $seopress_analysis_data['tw_title']['count'];
504
+
505
+ $all_tw_title = $seopress_analysis_data['tw_title']['values'];
506
+
507
+ if ($count > 1) {
508
+ $analyzes['social']['impact'] = 'high';
509
+ /* translators: %d count Twitter Title */
510
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.sprintf(esc_html__('We found %d twitter:title in your content.','wp-seopress'), $count).'</p>';
511
+ $desc .= '<p>'.__('You should not use more than one twitter:title in your post content to avoid conflicts when sharing on social networks. Twitter will take the last twitter:title tag from your source code. Below, the list:','wp-seopress').'</p>';
512
+ } elseif(empty($all_tw_title[0])) { //If twitter:title empty
513
+ $analyzes['social']['impact'] = 'high';
514
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Twitter Title tag is empty!','wp-seopress').'</p>';
515
+ } else {
516
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('We found a Twitter Title tag in your source code.','wp-seopress').'</p>';
517
+ }
518
+
519
+ if (!empty($all_tw_title)) {
520
+ $desc .= '<ul>';
521
+ foreach($all_tw_title as $tw_title) {
522
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$tw_title.'</li>';
523
+ }
524
+ $desc .= '</ul>';
525
+ }
526
+ } else {
527
+ $analyzes['social']['impact'] = 'high';
528
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Twitter Title is missing!','wp-seopress').'</p>';
529
+ }
530
+
531
+ //twitter:description
532
+ $desc .= '<h4>'.__('Twitter Description','wp-seopress').'</h4>';
533
+
534
+ if (!empty($seopress_analysis_data['tw_desc']['count'])) {
535
+
536
+ $count = $seopress_analysis_data['tw_desc']['count'];
537
+
538
+ $all_tw_desc = isset($seopress_analysis_data['tw_desc']['values']) ? $seopress_analysis_data['tw_desc']['values'] : [];
539
+
540
+ if ($count > 1) {
541
+ $analyzes['social']['impact'] = 'high';
542
+ /* translators: %d count Twitter Description */
543
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.sprintf(esc_html__('We found %d twitter:description in your content.','wp-seopress'), $count).'</p>';
544
+ $desc .= '<p>'.__('You should not use more than one twitter:description in your post content to avoid conflicts when sharing on social networks. Twitter will take the last twitter:description tag from your source code. Below, the list:','wp-seopress').'</p>';
545
+ } elseif(empty($all_tw_desc[0])) { //If twitter:description empty
546
+ $analyzes['social']['impact'] = 'high';
547
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Twitter Description tag is empty!','wp-seopress').'</p>';
548
+ } else {
549
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('We found a Twitter Description tag in your source code.','wp-seopress').'</p>';
550
+ }
551
+
552
+ if (!empty($all_tw_desc)) {
553
+ $desc .= '<ul>';
554
+ foreach($all_tw_desc as $tw_desc) {
555
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$tw_desc.'</li>';
556
+ }
557
+ $desc .= '</ul>';
558
+ }
559
+ } else {
560
+ $analyzes['social']['impact'] = 'high';
561
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Twitter Description is missing!','wp-seopress').'</p>';
562
+ }
563
+
564
+ //twitter:image
565
+ $desc .= '<h4>'.__('Twitter Image','wp-seopress').'</h4>';
566
+
567
+ if (!empty($seopress_analysis_data['tw_img']['count'])) {
568
+
569
+ $count = $seopress_analysis_data['tw_img']['count'];
570
+
571
+ $all_tw_img = isset($seopress_analysis_data['tw_img']['values']) ? $seopress_analysis_data['tw_img']['values'] : [];
572
+
573
+ if ($count > 0 && !empty($all_tw_img[0])) {
574
+ /* translators: %d count Twitter Image */
575
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.sprintf(esc_html__('We found %d twitter:image in your content.','wp-seopress'), $count).'</p>';
576
+ }
577
+
578
+ //If twitter:image:src empty
579
+ if ($count > 0 && empty($all_tw_img[0])) {
580
+ $analyzes['social']['impact'] = 'high';
581
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Twitter Image tag is empty!','wp-seopress').'</p>';
582
+ }
583
+
584
+ if (!empty($all_tw_img)) {
585
+ $desc .= '<ul>';
586
+ foreach($all_tw_img as $tw_img) {
587
+ $desc .= '<li><span class="dashicons dashicons-minus"></span>'.$tw_img.'</li>';
588
+ }
589
+ $desc .= '</ul>';
590
+ }
591
+ } else {
592
+ $analyzes['social']['impact'] = 'high';
593
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('Your Twitter Image is missing!','wp-seopress').'</p>';
594
+ }
595
+ $analyzes['social']['desc'] = $desc;
596
+
597
+ //Robots
598
+ $desc = NULL;
599
+ if (!empty($seopress_analysis_data['meta_robots'])) {
600
+
601
+ $meta_robots = $seopress_analysis_data['meta_robots'];
602
+
603
+ if (count($seopress_analysis_data['meta_robots']) > 1) {
604
+ $analyzes['robots']['impact'] = 'high';
605
+
606
+ $count_meta_robots = count($seopress_analysis_data['meta_robots']);
607
+
608
+ /* translators: %d count meta robots tag */
609
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.sprintf(esc_html__('We found %s meta robots in your page. There is probably something wrong with your theme!','wp-seopress'), $count_meta_robots).'</p>';
610
+ }
611
+
612
+ if (preg_match('/noindex/', json_encode($meta_robots))) {
613
+ $analyzes['robots']['impact'] = 'high';
614
+ $desc .= '<p data-robots="noindex"><span class="dashicons dashicons-no-alt"></span>'.__('noindex is on! Search engines can\'t index this page.','wp-seopress').'</p>';
615
+ } else {
616
+ $desc .= '<p data-robots="index"><span class="dashicons dashicons-yes"></span>'.__('noindex is off. Search engines will index this page.','wp-seopress').'</p>';
617
+ }
618
+
619
+ if (preg_match('/nofollow/', json_encode($meta_robots))) {
620
+ $analyzes['robots']['impact'] = 'high';
621
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('nofollow is on! Search engines can\'t follow your links on this page.','wp-seopress').'</p>';
622
+ } else {
623
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('nofollow is off. Search engines will follow links on this page.','wp-seopress').'</p>';
624
+ }
625
+
626
+ if (preg_match('/noarchive/', json_encode($meta_robots))) {
627
+ if ($analyzes['robots']['impact'] != 'high') {
628
+ $analyzes['robots']['impact'] = 'medium';
629
+ }
630
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('noarchive is on! Search engines will not cache your page.','wp-seopress').'</p>';
631
+ } else {
632
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('noarchive is off. Search engines will probably cache your page.','wp-seopress').'</p>';
633
+ }
634
+
635
+ if (preg_match('/nosnippet/', json_encode($meta_robots))) {
636
+ if ($analyzes['robots']['impact'] != 'high') {
637
+ $analyzes['robots']['impact'] = 'medium';
638
+ }
639
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('nosnippet is on! Search engines will not display a snippet of this page in search results.','wp-seopress').'</p>';
640
+ } else {
641
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('nosnippet is off. Search engines will display a snippet of this page in search results.','wp-seopress').'</p>';
642
+ }
643
+ } else {
644
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('We found no meta robots on this page. It means, your page is index,follow. Search engines will index it, and follow links. ','wp-seopress').'</p>';
645
+ }
646
+
647
+ //Meta Google
648
+ if (!empty($seopress_analysis_data['meta_google'])) {
649
+ $meta_google = $seopress_analysis_data['meta_google'];
650
+
651
+ if (preg_match('/noimageindex/', json_encode($meta_google))) {
652
+ $analyzes['robots']['impact'] = 'high';
653
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('noimageindex is on! Google will not index your images on this page (but if someone makes a direct link to one of your image in this page, it will be indexed).','wp-seopress').'</p>';
654
+ } else {
655
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('noimageindex is off. Google will index the images on this page.','wp-seopress').'</p>';
656
+ }
657
+
658
+ if (preg_match('/nositelinkssearchbox/', json_encode($meta_google))) {
659
+ if ($analyzes['robots']['impact'] != 'high') {
660
+ $analyzes['robots']['impact'] = 'medium';
661
+ }
662
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('nositelinkssearchbox is on! Google will not display a sitelinks searchbox in search results.','wp-seopress').'</p>';
663
+ } else {
664
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('nositelinkssearchbox is off. Google will probably display a sitelinks searchbox in search results.','wp-seopress').'</p>';
665
+ }
666
+ } else {
667
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('noimageindex is off. Google will index the images on this page.','wp-seopress').'</p>';
668
+
669
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('nositelinkssearchbox is off. Google will probably display a sitelinks searchbox in search results.','wp-seopress').'</p>';
670
+ }
671
+
672
+ $analyzes['robots']['desc'] = $desc;
673
+
674
+ //Img alt
675
+ if (!empty($seopress_analysis_data['img'])) {
676
+ $images = isset($seopress_analysis_data['img']['images']) ? $seopress_analysis_data['img']['images'] : NULL;
677
+
678
+ $desc = '<div class="wrap-analysis-img">';
679
+
680
+ if (!empty($images)) {
681
+ $analyzes['img_alt']['impact'] = 'high';
682
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('No alternative text found for these images. Alt tags are important for both SEO and accessibility. Edit your images using the media library or your favorite page builder and fill in alternative text fields.','wp-seopress').'</p>';
683
+
684
+ //Standard images & galleries
685
+ if (!empty($images)) {
686
+ $desc .= '<ul class="attachments">';
687
+ foreach($images as $img) {
688
+ $desc .= '<li class="attachment"><img src="'.$img.'"/></li>';
689
+ }
690
+ $desc .= '</ul>';
691
+ }
692
+ } else {
693
+ $desc .= '<p><span class="dashicons dashicons-yes"></span>'.__('All alternative tags are filled in. Good work!','wp-seopress').'</p>';
694
+ }
695
+ $desc .= '</div>';
696
+
697
+ $analyzes['img_alt']['desc'] = $desc;
698
+ } else {
699
+ $analyzes['img_alt']['impact'] = 'medium';
700
+ $analyzes['img_alt']['desc'] = '<p><span class="dashicons dashicons-no-alt"></span>'.__('We could not find any image in your content. Content with media is a plus for your SEO.','wp-seopress').'</p>';
701
+ }
702
+
703
+ //Nofollow links
704
+ if (!empty($seopress_analysis_data['nofollow_links'])) {
705
+ $count = count($seopress_analysis_data['nofollow_links']);
706
+
707
+ /* translators: %d count nofollow attributes */
708
+ $desc = '<p>'.sprintf( esc_html__( 'We found %d links with nofollow attribute in your page. Do not overuse nofollow attribute in links. Below, the list:', 'wp-seopress' ), $count ).'</p>';
709
+ $desc .= '<ul>';
710
+ foreach ($seopress_analysis_data['nofollow_links'] as $links) {
711
+ foreach ($links as $href => $link) {
712
+ $desc .= '<li><span class="dashicons dashicons-minus"></span><a href="'.$href.'" target="_blank">'.$link.'</a><span class="dashicons dashicons-external"></span></li>';
713
+ }
714
+ }
715
+ $desc .= '</ul>';
716
+ $analyzes['nofollow_links']['impact'] = 'low';
717
+ $analyzes['nofollow_links']['desc'] = $desc;
718
+ } else {
719
+ $analyzes['nofollow_links']['desc'] = '<p><span class="dashicons dashicons-yes"></span>'.__('This page doesn\'t have any nofollow links.','wp-seopress').'</p>';
720
+ }
721
+
722
+ //Outbound links
723
+ $desc = '<p>'.__('Internet is built on the principle of hyperlink. It is therefore perfectly normal to make links between different websites. However, avoid making links to low quality sites, SPAM... If you are not sure about the quality of a site, add the attribute "nofollow" to your link.').'</p>';
724
+ if (!empty($seopress_analysis_data['outbound_links'])) {
725
+ $count = count($seopress_analysis_data['outbound_links']);
726
+
727
+ /* translators: %d count outbound links */
728
+ $desc .= '<p>'.sprintf( __('We found %s outbound links in your page. Below, the list:', 'wp-seopress'), $count ).'</p>';
729
+ $desc .= '<ul>';
730
+ foreach ($seopress_analysis_data['outbound_links'] as $links) {
731
+ foreach ($links as $href => $link) {
732
+ $desc .= '<li><span class="dashicons dashicons-minus"></span><a href="'.$href.'" target="_blank">'.$link.'</a><span class="dashicons dashicons-external"></span></li>';
733
+ }
734
+ }
735
+ $desc .= '</ul>';
736
+ } else {
737
+ $analyzes['outbound_links']['impact'] = 'medium';
738
+ $desc .= '<p><span class="dashicons dashicons-no-alt"></span>'.__('This page doesn\'t have any outbound links.','wp-seopress').'</p>';
739
+ }
740
+ $analyzes['outbound_links']['desc'] = $desc;
inc/admin/admin-metaboxes-render-content-analysis.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined( 'ABSPATH' ) or die( 'Please don&rsquo;t call the plugin directly. Thanks :)' );
3
+
4
+ $html = '<div id="seopress-analysis-tabs">
5
+ <div id="seopress-analysis-tabs-1">';
6
+ $html .= '<div class="analysis-score">';
7
+ $impact = array_unique(array_values(wp_list_pluck($analyzes, 'impact')));
8
+ $svg = '<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">
9
+ <circle r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0"></circle>
10
+ <circle id="bar" r="90" cx="100" cy="100" fill="transparent" stroke-dasharray="565.48" stroke-dashoffset="0" style="stroke-dashoffset: 101.788px;"></circle>
11
+ </svg>';
12
+ $tooltip = seopress_tooltip(__('Content analysis','wp-seopress'), __('<strong>Should be improved:</strong> red or orange dots <br> <strong>Good:</strong> yellow or green dots','wp-seopress'), '');
13
+
14
+ if (!empty($impact)) {
15
+ if (in_array('medium', $impact) || in_array('high', $impact)) {
16
+ $html .= '<p class="notgood">'.$svg.'<span>'.__('Should be improved','wp-seopress').$tooltip.'</span></p>';
17
+ $score = false;
18
+ } else {
19
+ $html .= '<p class="good">'.$svg.'<span>'.__('Good','wp-seopress').$tooltip.'</span></p>';
20
+ $score = true;
21
+ }
22
+ } else {
23
+ $score = false;
24
+ }
25
+
26
+ if (!empty($seopress_analysis_data)) {
27
+ $seopress_analysis_data['score'] = $score;
28
+ update_post_meta(get_the_ID(), '_seopress_analysis_data', $seopress_analysis_data);
29
+ }
30
+ $html .= '<span><a href="#" id="expand-all">'.__('Expand','wp-seopress').'</a> / <a href="#" id="close-all">'.__('Close','wp-seopress').'</a></span>
31
+ </div>';
32
+
33
+ if(!empty($analyzes)) {
34
+ $order = [
35
+ '1' => 'high',
36
+ '2' => 'medium',
37
+ '3' => 'low',
38
+ '4' => 'good'
39
+ ];
40
+
41
+ usort($analyzes, function ($a, $b) use ($order) {
42
+ $pos_a = array_search($a['impact'], $order);
43
+ $pos_b = array_search($b['impact'], $order);
44
+ return $pos_a - $pos_b;
45
+ });
46
+
47
+ foreach($analyzes as $key => $value) {
48
+ $html .= '<div class="gr-analysis">';
49
+ if (isset($value['title'])) {
50
+ $html .= '<div class="gr-analysis-title">
51
+ <h3>
52
+ <button type="button" aria-expanded="true" class="btn-toggle">';
53
+ if (isset($value['impact'])) {
54
+ $html .= '<span class="impact '.$value['impact'].'" aria-hidden="true"></span>';
55
+ }
56
+ $html .= '<span class="sp-arrow" aria-hidden="true"></span>
57
+ '.$value['title'].'
58
+ </button>
59
+ </h3>
60
+ </div>';
61
+ }
62
+ if (isset($value['desc'])) {
63
+ $html .= '<div class="gr-analysis-content">'. $value['desc'] .'</div>';
64
+ }
65
+ $html .= '</div>';
66
+ }
67
+ }
68
+ $html .= '</div>
69
+ </div>
70
+ </div>';
inc/functions/options-google-analytics-checkout.php ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined( 'ABSPATH' ) or die( 'Please don&rsquo;t call the plugin directly. Thanks :)' );
3
+
4
+ //Google Analytics E-commerce
5
+ //=================================================================================================
6
+ //Measuring an Addition from Cart
7
+ function seopress_google_analytics_js2($cart_item_key, $product_id, $quantity) {
8
+ if (seopress_google_analytics_ecommerce_enable_option() =='1') {
9
+
10
+ $seopress_google_analytics_html = "ga('require', 'ec');";
11
+ $seopress_google_analytics_html .= "\n";
12
+
13
+ //If WC enabled
14
+ include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
15
+ if ( is_plugin_active( 'woocommerce/woocommerce.php' )) {
16
+ $product = wc_get_product($product_id);
17
+
18
+ $product_cat = get_the_terms($product_id, 'product_cat');
19
+
20
+ $seopress_google_analytics_html = "
21
+ ga('ec:addProduct', {
22
+ 'id': ".$product_id.",
23
+ 'name': '".$product->get_name()."',";
24
+
25
+ if ($product_cat !='') {
26
+ $seopress_google_analytics_html .= "
27
+ 'category': '".$product_cat[0]->name."',";
28
+ }
29
+
30
+ if ($product->get_price() !='') {
31
+ $seopress_google_analytics_html .= "
32
+ 'price': '".$product->get_price()."',";
33
+ }
34
+
35
+ if ($quantity !='') {
36
+ $seopress_google_analytics_html .= "
37
+ 'quantity': ".$quantity;
38
+ }
39
+ $seopress_google_analytics_html .= "
40
+ });
41
+ ";
42
+ $seopress_google_analytics_html .= "\n";
43
+
44
+ $seopress_google_analytics_html .= "ga('ec:setAction', 'add');";
45
+ $seopress_google_analytics_html .= "\n";
46
+
47
+ $seopress_google_analytics_html .= "ga('send', 'event', 'UX', 'click', 'add to cart');";
48
+ $seopress_google_analytics_html .= "\n";
49
+
50
+ $seopress_google_analytics_html .= "\n";
51
+
52
+ if (seopress_google_analytics_enable_option() =='1' && seopress_google_analytics_ua_option() !='') {
53
+ if (is_user_logged_in()) {
54
+ global $wp_roles;
55
+
56
+ //Get current user role
57
+ if(isset(wp_get_current_user()->roles[0])) {
58
+ $seopress_user_role = wp_get_current_user()->roles[0];
59
+ //If current user role matchs values from SEOPress GA settings then apply
60
+ if (function_exists('seopress_google_analytics_roles_option') && seopress_google_analytics_roles_option() !='') {
61
+ if( array_key_exists( $seopress_user_role, seopress_google_analytics_roles_option())) {
62
+ //do nothing
63
+ } else {
64
+ if (function_exists('wc_enqueue_js')) {
65
+ wc_enqueue_js($seopress_google_analytics_html);
66
+ }
67
+ }
68
+ } else {
69
+ if (function_exists('wc_enqueue_js')) {
70
+ wc_enqueue_js($seopress_google_analytics_html);
71
+ }
72
+ }
73
+ }
74
+ } else {
75
+ if (function_exists('wc_enqueue_js')) {
76
+ wc_enqueue_js($seopress_google_analytics_html);
77
+ }
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
83
+ add_action('woocommerce_add_to_cart', 'seopress_google_analytics_js2', 20, 3);
84
+
85
+
inc/functions/options-google-analytics-order.php ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined( 'ABSPATH' ) or die( 'Please don&rsquo;t call the plugin directly. Thanks :)' );
3
+
4
+ //Google Analytics E-commerce
5
+ //=================================================================================================
6
+ function seopress_google_analytics_order_received() {
7
+ $seopress_google_analytics_html ='';
8
+ global $woocommerce;
9
+ foreach( WC()->cart->get_cart() as $cart_item ){
10
+
11
+ $product = wc_get_product($cart_item['product_id']);
12
+ $product_cat = get_the_terms($cart_item['product_id'], 'product_cat');
13
+
14
+ $seopress_google_analytics_html .= "
15
+ ga('ec:addProduct', {
16
+ 'id': '".$cart_item['product_id']."',
17
+ 'name': '".$product->get_name()."',";
18
+
19
+ if ($product_cat !='') {
20
+ $seopress_google_analytics_html .= "
21
+ 'category': '".$product_cat[0]->name."',";
22
+ }
23
+
24
+ if ($product->get_price() !='') {
25
+ $seopress_google_analytics_html .= "
26
+ 'price': '".$product->get_price()."',";
27
+ }
28
+
29
+ if ($cart_item['quantity'] !='') {
30
+ $seopress_google_analytics_html .= "
31
+ 'quantity': ".$cart_item['quantity'];
32
+ }
33
+ $seopress_google_analytics_html .= "
34
+ });
35
+ ";
36
+ }
37
+
38
+ $seopress_google_analytics_html .= "\n";
39
+
40
+ $seopress_google_analytics_html .= "
41
+ ga('ec:setAction', 'purchase', {
42
+ 'id': 'daf9276a-3fa2-45a3-a591-495154662f7f',
43
+ 'revenue': ".$woocommerce->cart->get_cart_total().",
44
+ 'tax': 5,
45
+ 'shipping': 5
46
+ });
47
+ ";
48
+
49
+ $seopress_google_analytics_html .= "\n";
50
+
51
+ if (function_exists('wc_enqueue_js')) {
52
+ wc_enqueue_js($seopress_google_analytics_html);
53
+ }
54
+ }
55
+ add_action('woocommerce_checkout_order_processed', 'seopress_google_analytics_order_received');
inc/functions/options-google-analytics.php CHANGED
@@ -754,10 +754,17 @@ function seopress_google_analytics_js($echo) {
754
  //Init
755
  $seopress_google_analytics_config = [];
756
  $seopress_google_analytics_event = [];
 
 
 
 
 
 
 
757
 
758
  $seopress_google_analytics_html = "\n";
759
  $seopress_google_analytics_html .=
760
- "<script async src='https://www.googletagmanager.com/gtag/js?id=" . seopress_google_analytics_ua_option() . "'></script>
761
  <script>
762
  window.dataLayer = window.dataLayer || [];
763
  function gtag(){dataLayer.push(arguments);}";
754
  //Init
755
  $seopress_google_analytics_config = [];
756
  $seopress_google_analytics_event = [];
757
+
758
+ $g_id = '';
759
+ if ('' != seopress_google_analytics_ga4_option()) {
760
+ $g_id = seopress_google_analytics_ga4_option();
761
+ } elseif ('' != seopress_google_analytics_ua_option()) {
762
+ $g_id = seopress_google_analytics_ua_option();
763
+ }
764
 
765
  $seopress_google_analytics_html = "\n";
766
  $seopress_google_analytics_html .=
767
+ "<script async src='https://www.googletagmanager.com/gtag/js?id=" . $g_id . "'></script>
768
  <script>
769
  window.dataLayer = window.dataLayer || [];
770
  function gtag(){dataLayer.push(arguments);}";
languages/wp-seopress-pt_BR.mo ADDED
Binary file
languages/wp-seopress-pt_BR.po ADDED
@@ -0,0 +1,3493 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 &ldquo;%2$s&rdquo;"
2156
+ #~ msgid_plural "%1$s comments on &ldquo;%2$s&rdquo;"
2157
+ #~ msgstr[0] "%1$s comentarios sobre &ldquo;%2$s&rdquo;"
2158
+ #~ msgstr[1] "%1$s comentarios sobre &ldquo;%2$s&rdquo;"
2159
+
2160
+ #~ msgid "One"
2161
+ #~ msgstr "Um"
2162
+
2163
+ #~ msgid "&larr; Older Comments"
2164
+ #~ msgstr "&larr; Comentários mais antigos"
2165
+
2166
+ #~ msgid "Newer Comments &rarr;"
2167
+ #~ msgstr "Comentários mais recentes &rarr;"
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 "&larr; Next Image"
2176
+ #~ msgstr "&larr; Próxima"
2177
+
2178
+ #~ msgid "Previous Image &rarr;"
2179
+ #~ msgstr "Imagem anterior &rarr;"
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 "&larr; Older Entries "
2252
+ #~ msgstr "&larr; Comentarios antigos "
2253
+
2254
+ #~ msgid "Newer Entries &rarr;"
2255
+ #~ msgstr "Entradas mais recentes e rarr;"
2256
+
2257
+ #~ msgid "&laquo;"
2258
+ #~ msgstr "&laquo;"
2259
+
2260
+ #~ msgid "&raquo;"
2261
+ #~ msgstr "&raquo;"
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 &#9656; %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 &raquo;"
3373
+ #~ msgstr "Procurar &raquo;"
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 &ldquo;%s&rdquo;"
3444
+ #~ msgstr "Seja o primeiro a avaliar o & ldquo; %s&rdquo;"
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&hellip;"
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:"
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: SEO, XML sitemap, meta title, open graph, content analysis, knowledge grap
6
  Requires at least: 4.7+
7
  Tested up to: 5.6
8
  Requires PHP: 5.6
9
- Stable tag: 4.3.0.1
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -320,8 +320,13 @@ You're theme is probably using a deprecated function to handle the title. <a hre
320
  9. Schemas metabox
321
 
322
  == Changelog ==
323
- = 4.3.0.1 =
324
- * FIX Fatal error
 
 
 
 
 
325
  = 4.3 (14/01/2021) =
326
  * NEW PHP 8 compatibility
327
  * NEW "Disable notifications on slug changes or post deletions" option from SEO, PRO, 404/301 tab (PRO)
6
  Requires at least: 4.7+
7
  Tested up to: 5.6
8
  Requires PHP: 5.6
9
+ Stable tag: 4.3.0.2
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
320
  9. Schemas metabox
321
 
322
  == Changelog ==
323
+ = 4.3.0.2 (19/01/2021) =
324
+ * FIX Analytics tracking code if no UA-XXX set
325
+ * FIX Conflict Google Analytics with UpdraftPlus (PRO)
326
+ = 4.3.0.1 (15/01/2021) =
327
+ * FIX Fatal error
328
+ * FIX Product price with taxes for automatic product schema (default: sale price, fallback: regular price)
329
+ * FIX Fatal error get_price in specific cases
330
  = 4.3 (14/01/2021) =
331
  * NEW PHP 8 compatibility
332
  * NEW "Disable notifications on slug changes or post deletions" option from SEO, PRO, 404/301 tab (PRO)
seopress.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: One of the best SEO plugins for WordPress.
6
  Author: SEOPress
7
- Version: 4.3.0.1
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
@@ -55,7 +55,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
  //Define
57
  ///////////////////////////////////////////////////////////////////////////////////////////////////
58
- define('SEOPRESS_VERSION', '4.3.0.1');
59
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
60
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
61
  define('SEOPRESS_TEMPLATE_DIR', SEOPRESS_PLUGIN_DIR_PATH . 'templates');
4
  Plugin URI: https://www.seopress.org/
5
  Description: One of the best SEO plugins for WordPress.
6
  Author: SEOPress
7
+ Version: 4.3.0.2
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
  //Define
57
  ///////////////////////////////////////////////////////////////////////////////////////////////////
58
+ define('SEOPRESS_VERSION', '4.3.0.2');
59
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
60
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
61
  define('SEOPRESS_TEMPLATE_DIR', SEOPRESS_PLUGIN_DIR_PATH . 'templates');