Open Graph for Facebook, Google+ and Twitter Card Tags - Version 1.3.2

Version Description

  • Added Google+ Publisher tag
  • Fix on some Portuguese translation strings
Download this release

Release Info

Developer webdados
Plugin Icon Open Graph for Facebook, Google+ and Twitter Card Tags
Version 1.3.2
Comparing to
See all releases

Code changes from version 1.3.1 to 1.3.2

includes/settings-page.php CHANGED
@@ -33,6 +33,8 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
33
  $usersettings['fb_type_homepage']= trim(wonderm00n_open_graph_post('fb_type_homepage'));
34
  $usersettings['fb_publisher_show']= intval(wonderm00n_open_graph_post('fb_publisher_show'));
35
  $usersettings['fb_publisher']= trim(wonderm00n_open_graph_post('fb_publisher'));
 
 
36
  $usersettings['fb_publisher_show_twitter']= intval(wonderm00n_open_graph_post('fb_publisher_show_twitter'));
37
  $usersettings['fb_publisher_twitteruser']= trim(wonderm00n_open_graph_post('fb_publisher_twitteruser'));
38
  $usersettings['fb_author_show']= intval(wonderm00n_open_graph_post('fb_author_show'));
@@ -292,23 +294,39 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
292
  </td>
293
  </tr>
294
  <tr class="fb_publisher_options">
295
- <th scope="row"><i class="dashicons-before dashicons-facebook-alt"></i><?php _e('Publisher Facebook Page', 'wd-fb-og');?>:</th>
296
  <td>
297
  <input type="text" name="fb_publisher" id="fb_publisher" size="50" value="<?php echo trim(esc_attr($fb_publisher)); ?>"/>
298
  <br/>
299
  <?php _e('Full URL with http://', 'wd-fb-og');?>
300
  </td>
301
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  <tr>
303
  <th scope="row"><i class="dashicons-before dashicons-twitter"></i><?php _e('Include Twitter Card Website Username tag', 'wd-fb-og');?>:</th>
304
  <td>
305
  <input type="checkbox" name="fb_publisher_show_twitter" id="fb_publisher_show_twitter" value="1" <?php echo (intval($fb_publisher_show_twitter)==1 ? ' checked="checked"' : ''); ?> onclick="showPublisherTwitterOptions();"/>
306
  <br/>
307
- <?php _e('Links the website to the website Twitter Username.', 'wd-fb-og');?>
308
  </td>
309
  </tr>
310
  <tr class="fb_publisher_twitter_options">
311
- <th scope="row"><i class="dashicons-before dashicons-twitter"></i><?php _e('Website Twitter Username', 'wd-fb-og');?>:</th>
312
  <td>
313
  <input type="text" name="fb_publisher_twitteruser" id="fb_publisher_twitteruser" size="20" value="<?php echo trim(esc_attr($fb_publisher_twitteruser)); ?>"/>
314
  <br/>
@@ -678,6 +696,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
678
  showLocaleOptions();
679
  showTypeOptions();
680
  showPublisherOptions();
 
681
  showPublisherTwitterOptions();
682
  showAuthorOptions();
683
  showUrlOptions();
@@ -754,6 +773,13 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
754
  jQuery('.fb_publisher_twitter_options').hide();
755
  }
756
  }
 
 
 
 
 
 
 
757
  function showTypeOptions() {
758
  if (jQuery('#fb_author_show').is(':checked')) {
759
  jQuery('.fb_author_options').show();
33
  $usersettings['fb_type_homepage']= trim(wonderm00n_open_graph_post('fb_type_homepage'));
34
  $usersettings['fb_publisher_show']= intval(wonderm00n_open_graph_post('fb_publisher_show'));
35
  $usersettings['fb_publisher']= trim(wonderm00n_open_graph_post('fb_publisher'));
36
+ $usersettings['fb_publisher_show_schema']= intval(wonderm00n_open_graph_post('fb_publisher_show_schema'));
37
+ $usersettings['fb_publisher_schema']= trim(wonderm00n_open_graph_post('fb_publisher_schema'));
38
  $usersettings['fb_publisher_show_twitter']= intval(wonderm00n_open_graph_post('fb_publisher_show_twitter'));
39
  $usersettings['fb_publisher_twitteruser']= trim(wonderm00n_open_graph_post('fb_publisher_twitteruser'));
40
  $usersettings['fb_author_show']= intval(wonderm00n_open_graph_post('fb_author_show'));
294
  </td>
295
  </tr>
296
  <tr class="fb_publisher_options">
297
+ <th scope="row"><i class="dashicons-before dashicons-facebook-alt"></i><?php _e('Website\'s Facebook Page', 'wd-fb-og');?>:</th>
298
  <td>
299
  <input type="text" name="fb_publisher" id="fb_publisher" size="50" value="<?php echo trim(esc_attr($fb_publisher)); ?>"/>
300
  <br/>
301
  <?php _e('Full URL with http://', 'wd-fb-og');?>
302
  </td>
303
  </tr>
304
+ <tr>
305
+ <th scope="row"><i class="dashicons-before dashicons-googleplus"></i><?php _e('Include Google+ "publisher" tag', 'wd-fb-og');?>:</th>
306
+ <td>
307
+ <input type="checkbox" name="fb_publisher_show_schema" id="fb_publisher_show_schema" value="1" <?php echo (intval($fb_publisher_show_schema)==1 ? ' checked="checked"' : ''); ?> onclick="showPublisherSchemaOptions();"/>
308
+ <br/>
309
+ <?php _e('Links the website to the publisher Google+ Page.', 'wd-fb-og');?>
310
+ </td>
311
+ </tr>
312
+ <tr class="fb_publisher_schema_options">
313
+ <th scope="row"><i class="dashicons-before dashicons-googleplus"></i><?php _e('Website\'s Google+ Page', 'wd-fb-og');?>:</th>
314
+ <td>
315
+ <input type="text" name="fb_publisher_schema" id="fb_publisher_schema" size="50" value="<?php echo trim(esc_attr($fb_publisher_schema)); ?>"/>
316
+ <br/>
317
+ <?php _e('Full URL with http://', 'wd-fb-og');?>
318
+ </td>
319
+ </tr>
320
  <tr>
321
  <th scope="row"><i class="dashicons-before dashicons-twitter"></i><?php _e('Include Twitter Card Website Username tag', 'wd-fb-og');?>:</th>
322
  <td>
323
  <input type="checkbox" name="fb_publisher_show_twitter" id="fb_publisher_show_twitter" value="1" <?php echo (intval($fb_publisher_show_twitter)==1 ? ' checked="checked"' : ''); ?> onclick="showPublisherTwitterOptions();"/>
324
  <br/>
325
+ <?php _e('Links the website to the publisher Twitter Username.', 'wd-fb-og');?>
326
  </td>
327
  </tr>
328
  <tr class="fb_publisher_twitter_options">
329
+ <th scope="row"><i class="dashicons-before dashicons-twitter"></i><?php _e('Website\'s Twitter Username', 'wd-fb-og');?>:</th>
330
  <td>
331
  <input type="text" name="fb_publisher_twitteruser" id="fb_publisher_twitteruser" size="20" value="<?php echo trim(esc_attr($fb_publisher_twitteruser)); ?>"/>
332
  <br/>
696
  showLocaleOptions();
697
  showTypeOptions();
698
  showPublisherOptions();
699
+ showPublisherSchemaOptions();
700
  showPublisherTwitterOptions();
701
  showAuthorOptions();
702
  showUrlOptions();
773
  jQuery('.fb_publisher_twitter_options').hide();
774
  }
775
  }
776
+ function showPublisherSchemaOptions() {
777
+ if (jQuery('#fb_publisher_show_schema').is(':checked')) {
778
+ jQuery('.fb_publisher_schema_options').show();
779
+ } else {
780
+ jQuery('.fb_publisher_schema_options').hide();
781
+ }
782
+ }
783
  function showTypeOptions() {
784
  if (jQuery('#fb_author_show').is(':checked')) {
785
  jQuery('.fb_author_options').show();
lang/wd-fb-og-pt_PT.mo CHANGED
Binary file
lang/wd-fb-og-pt_PT.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: Facebook Open Graph Meta Tags for WordPress v1.1.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wonderm00ns-simple-"
5
  "facebook-open-graph-tags\n"
6
- "POT-Creation-Date: 2014-11-28 16:36:48+00:00\n"
7
- "PO-Revision-Date: 2014-11-28 17:02-0000\n"
8
  "Last-Translator: Wonderm00n <wonderm00n@gmail.com>\n"
9
  "Language-Team: Webdados <info@webdados.pt>\n"
10
  "Language: pt_PT\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Generator: Poedit 1.6.10\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  # @ wd-fb-og
24
- #: includes/settings-page.php:76
25
  msgid ""
26
  "Please set some default values and which tags should, or should not, be "
27
  "included. It may be necessary to exclude some tags if other plugins are "
@@ -32,89 +32,89 @@ msgstr ""
32
  "estão a incluir."
33
 
34
  # @ wd-fb-og
35
- #: includes/settings-page.php:90
36
  msgid "Include Facebook Platform App ID (fb:app_id) tag"
37
  msgstr "Incluir tag \"Facebook Platform App ID\" (fb:app_id)"
38
 
39
  # @ wd-fb-og
40
- #: includes/settings-page.php:96
41
  msgid "Facebook Platform App ID"
42
  msgstr "Facebook Platform App ID"
43
 
44
  # @ wd-fb-og
45
- #: includes/settings-page.php:105
46
  msgid "Include Facebook Admin(s) ID (fb:admins) tag"
47
  msgstr "Incluir tag com ID dos admin de Facebook (fb:admins)"
48
 
49
  # @ wd-fb-og
50
- #: includes/settings-page.php:111
51
  msgid "Facebook Admin(s) ID"
52
  msgstr "ID do(s) Admin(s) no Facebook"
53
 
54
  # @ wd-fb-og
55
- #: includes/settings-page.php:115
56
  msgid "Comma separated if more than one"
57
  msgstr "Separados por vírgulas se mais do que um"
58
 
59
  # @ wd-fb-og
60
- #: includes/settings-page.php:122
61
  msgid "Include locale (fb:locale) tag"
62
  msgstr "Incluir tag \"Locale\" (fb:locale)"
63
 
64
  # @ wd-fb-og
65
- #: includes/settings-page.php:128
66
  msgid "Locale"
67
  msgstr "Locale"
68
 
69
  # @ wd-fb-og
70
- #: includes/settings-page.php:131
71
  msgid "WordPress current locale/language"
72
  msgstr "O \"locale\"/idíoma actual do WordPress"
73
 
74
  # @ wd-fb-og
75
- #: includes/settings-page.php:182
76
  msgid "List loaded from Facebook (online)"
77
  msgstr "Lista carregada do Facebook (online)"
78
 
79
  # @ wd-fb-og
80
- #: includes/settings-page.php:185
81
  msgid "List loaded from local cache (offline)"
82
  msgstr "Lista carregada da cache local (offline)"
83
 
84
  # @ wd-fb-og
85
- #: includes/settings-page.php:185
86
  msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
87
  msgstr ""
88
  "Vai perder quaisquer modificações que não tenha gravado. Tem a certeza?"
89
 
90
  # @ wd-fb-og
91
- #: includes/settings-page.php:185
92
  msgid "Reload from Facebook"
93
  msgstr "(Re)carregar a partir do Facebook"
94
 
95
  # @ wd-fb-og
96
- #: includes/settings-page.php:187
97
  msgid "List not loaded"
98
  msgstr "Lista não carregada"
99
 
100
  # @ wd-fb-og
101
- #: includes/settings-page.php:197
102
  msgid "Include Site Name (og:site_name) tag"
103
  msgstr "Incluir tag Nome do site (og:site_name)"
104
 
105
  # @ wd-fb-og
106
- #: includes/settings-page.php:206
107
  msgid "Include Post/Page title (og:title) tag"
108
  msgstr "Incluir tag Título do artigo/página (og:title)"
109
 
110
  # @ wd-fb-og
111
- #: includes/settings-page.php:212
112
  msgid "Include Schema.org \"itemprop\" Name tag"
113
  msgstr "Incluir a tag \"itemprop Name\" do Schema.org"
114
 
115
  # @ wd-fb-og
116
- #: includes/settings-page.php:218 includes/settings-page.php:387
117
- #: includes/settings-page.php:447
118
  msgid ""
119
  "Recommended for Google+ sharing purposes if no other plugin is setting it "
120
  "already"
@@ -123,13 +123,13 @@ msgstr ""
123
  "está a definir"
124
 
125
  # @ wd-fb-og
126
- #: includes/settings-page.php:222
127
  msgid "Include Twitter Card Title tag"
128
  msgstr "Incluir tag Título do \"Twitter Card\""
129
 
130
  # @ wd-fb-og
131
- #: includes/settings-page.php:228 includes/settings-page.php:397
132
- #: includes/settings-page.php:457
133
  msgid ""
134
  "Recommended for Twitter sharing purposes if no other plugin is setting it "
135
  "already"
@@ -138,36 +138,36 @@ msgstr ""
138
  "está a definir"
139
 
140
  # @ wd-fb-og
141
- #: includes/settings-page.php:235
142
  msgid "Include URL (og:url) tag"
143
  msgstr "Incluir tag URL (og:url)"
144
 
145
- #: includes/settings-page.php:241
146
  msgid "Include Twitter Card URL tag"
147
  msgstr "Incluir tag URL do \"Twitter Card\""
148
 
149
  # @ wd-fb-og
150
- #: includes/settings-page.php:247
151
  msgid "Add trailing slash at the end"
152
  msgstr "Adicionar barra invertida no final"
153
 
154
  # @ wd-fb-og
155
- #: includes/settings-page.php:251
156
  msgid "On the homepage will be"
157
  msgstr "Na página inicial será"
158
 
159
  # @ wd-fb-og
160
- #: includes/settings-page.php:255
161
  msgid "Set Canonical URL"
162
  msgstr "Incluir a tag URL Canónico"
163
 
164
  # @ wd-fb-og
165
- #: includes/settings-page.php:266
166
  msgid "Include Type (og:type) tag"
167
  msgstr "Incluir tag Tipo (og:type)"
168
 
169
  # @ wd-fb-og
170
- #: includes/settings-page.php:270
171
  msgid ""
172
  "Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\"; for the "
173
  "homepage"
@@ -176,55 +176,68 @@ msgstr ""
176
  "inicial"
177
 
178
  # @ wd-fb-og
179
- #: includes/settings-page.php:274
180
  msgid "Homepage type"
181
  msgstr "Tipo para a página inicial"
182
 
183
  # @ wd-fb-og
184
- #: includes/settings-page.php:276 includes/settings-page.php:418
185
  msgid "Use"
186
  msgstr "Utilizar"
187
 
188
  # @ wd-fb-og
189
- #: includes/settings-page.php:287
190
  msgid "Include Publisher Page (article:publisher) tag"
191
- msgstr "Incluir tag Título do artigo/página (og:title)"
192
 
193
- #: includes/settings-page.php:291
194
  msgid "Links the website to the publisher Facebook Page."
195
  msgstr "Associa o website à Página Facebook do mesmo"
196
 
197
- #: includes/settings-page.php:295
198
- msgid "Publisher Facebook Page"
199
  msgstr "Página de Facebook do Website"
200
 
201
  # @ wd-fb-og
202
- #: includes/settings-page.php:299 includes/settings-page.php:466
 
203
  msgid "Full URL with http://"
204
  msgstr "URL completo com http://"
205
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  # @ wd-fb-og
207
- #: includes/settings-page.php:303
208
  msgid "Include Twitter Card Website Username tag"
209
  msgstr "Incluir tag Username Twitter do Website do \"Twitter Card\""
210
 
211
- #: includes/settings-page.php:307
212
- msgid "Links the website to the website Twitter Username."
213
  msgstr "Associa o website ao Username Twitter do mesmo"
214
 
215
- #: includes/settings-page.php:311
216
- msgid "Website Twitter Username"
217
  msgstr "Utilizador Twitter do Website"
218
 
219
- #: includes/settings-page.php:315 wonderm00n-open-graph.php:671
220
  msgid "Twitter username (without @)"
221
  msgstr "Utilizador do Twitter (sem @)"
222
 
223
- #: includes/settings-page.php:323
224
  msgid "Include Author Profile (article:author) tag"
225
  msgstr "Incluir tag \"Autor do artigo\" (article:author)"
226
 
227
- #: includes/settings-page.php:327
228
  msgid ""
229
  "Links the article to the author Facebook Profile. The user's Facebook "
230
  "profile URL must be filled in."
@@ -233,19 +246,19 @@ msgstr ""
233
  "Facebook do utilizador tem de estar preenchido."
234
 
235
  # @ wd-fb-og
236
- #: includes/settings-page.php:331
237
  msgid "Include Meta Author tag"
238
- msgstr "Incluir a tag \"Meta Description\"?"
239
 
240
- #: includes/settings-page.php:337
241
  msgid "Sets the article author name"
242
  msgstr "Define o nome do autor do artigo"
243
 
244
- #: includes/settings-page.php:341
245
  msgid "Include Google+ link rel \"author\" tag"
246
  msgstr "Incluir tag \"Google+ link rel author\""
247
 
248
- #: includes/settings-page.php:347
249
  msgid ""
250
  "Links the article to the author Google+ Profile (authorship). The user's "
251
  "Google+ profile URL must be filled in."
@@ -253,11 +266,11 @@ msgstr ""
253
  "Associa o artigo ao perfil Google+ do autor do mesmo. O URL de Perfil Google"
254
  "+ do utilizador tem de estar preenchido."
255
 
256
- #: includes/settings-page.php:351
257
  msgid "Include Twitter Card Creator tag"
258
  msgstr "Incluir tag Autor do \"Twitter Card\""
259
 
260
- #: includes/settings-page.php:357
261
  msgid ""
262
  "Links the article to the author Twitter profile. The user's Twitter user "
263
  "must be filled in."
@@ -266,69 +279,69 @@ msgstr ""
266
  "tem de estar preenchido."
267
 
268
  # @ wd-fb-og
269
- #: includes/settings-page.php:365
270
  msgid "Include Description (og:description) tag"
271
  msgstr "Incluir tag Descrição (og:description)"
272
 
273
  # @ wd-fb-og
274
- #: includes/settings-page.php:371
275
  msgid "Include Meta Description tag"
276
- msgstr "Incluir a tag \"Meta Description\"?"
277
 
278
  # @ wd-fb-og
279
- #: includes/settings-page.php:377
280
  msgid "Recommended for SEO purposes if no other plugin is setting it already"
281
  msgstr ""
282
  "Recomendado para efeitos de Optimização para Motores de Busca, se outro "
283
  "plugin ainda não a está a definir"
284
 
285
  # @ wd-fb-og
286
- #: includes/settings-page.php:381
287
  msgid "Include Schema.org \"itemprop\" Description tag"
288
- msgstr "Incluir a tag \"itemprop Description\" do Schema.org?"
289
 
290
  # @ wd-fb-og
291
- #: includes/settings-page.php:391
292
  msgid "Include Twitter Card Description tag"
293
  msgstr "Incluir tag Descrição do \"Twitter Card\""
294
 
295
  # @ wd-fb-og
296
- #: includes/settings-page.php:401
297
  msgid "Description maximum length"
298
  msgstr "Comprimento máximo da descrição"
299
 
300
  # @ wd-fb-og
301
- #: includes/settings-page.php:405
302
  msgid "0 or blank for no maximum length"
303
  msgstr "0 ou em branco para não definir máximo"
304
 
305
  # @ wd-fb-og
306
- #: includes/settings-page.php:409
307
  msgid "Homepage description"
308
  msgstr "Descrição da página inicial"
309
 
310
  # @ wd-fb-og
311
- #: includes/settings-page.php:415
312
  msgid "The description of your front page:"
313
  msgstr "A descrição da sua página inicial:"
314
 
315
  # @ wd-fb-og
316
- #: includes/settings-page.php:420
317
  msgid "Website tagline"
318
  msgstr "Descrição do site"
319
 
320
  # @ wd-fb-og
321
- #: includes/settings-page.php:421
322
  msgid "Custom text"
323
  msgstr "Texto personalizado"
324
 
325
  # @ wd-fb-og
326
- #: includes/settings-page.php:433
327
  msgid "Include Image (og:image) tag"
328
  msgstr "Incluir tag Imagem (og:image)"
329
 
330
  # @ wd-fb-og
331
- #: includes/settings-page.php:437
332
  msgid ""
333
  "All images MUST have at least 200px on both dimensions in order to Facebook "
334
  "to load them at all.<br/>1200x630px for optimal results.<br/>Minimum of "
@@ -339,43 +352,43 @@ msgstr ""
339
  "mínimo de 600x315px é recomendado."
340
 
341
  # @ wd-fb-og
342
- #: includes/settings-page.php:441
343
  msgid "Include Schema.org \"itemprop\" Image tag"
344
  msgstr "Incluir a tag \"itemprop Image\" do Schema.org"
345
 
346
  # @ wd-fb-og
347
- #: includes/settings-page.php:451
348
  msgid "Include Twitter Card Image tag"
349
  msgstr "Incluir tag Imagem do \"Twitter Card\""
350
 
351
  # @ wd-fb-og
352
- #: includes/settings-page.php:461
353
  msgid "Default image"
354
  msgstr "Imagem por omissão"
355
 
356
  # @ wd-fb-og
357
- #: includes/settings-page.php:468 wonderm00n-open-graph.php:568
358
  msgid "Recommended size: 1200x630px"
359
  msgstr "Tamanho recomendado: 1200x630px"
360
 
361
  # @ wd-fb-og
362
- #: includes/settings-page.php:472
363
  msgid "Add image to RSS/RSS2 feeds"
364
- msgstr "Incluir a imagem aos feeds RSS/RSS2?"
365
 
366
  # @ wd-fb-og
367
- #: includes/settings-page.php:476
368
  msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
369
  msgstr ""
370
  "Para aplicação de posts automáticos como o RSS Graffitti, twitterfeed, etc..."
371
 
372
  # @ wd-fb-og
373
- #: includes/settings-page.php:480
374
  msgid "On posts/pages"
375
  msgstr "Nos artigos/páginas"
376
 
377
  # @ wd-fb-og
378
- #: includes/settings-page.php:484
379
  msgid ""
380
  "Image will be fetched from the specific \"Open Graph Image\" custom field on "
381
  "the post"
@@ -384,7 +397,7 @@ msgstr ""
384
  "no artigo"
385
 
386
  # @ wd-fb-og
387
- #: includes/settings-page.php:488
388
  msgid ""
389
  "If it's not set, image will be fetched from post/page featured/thumbnail "
390
  "picture"
@@ -393,30 +406,30 @@ msgstr ""
393
  "página"
394
 
395
  # @ wd-fb-og
396
- #: includes/settings-page.php:492
397
  msgid "If it doesn't exist, use the first image from the post/page content"
398
  msgstr ""
399
  "Se não existir, será utilizada a primeira imagem no conteúdo do artigo/página"
400
 
401
  # @ wd-fb-og
402
- #: includes/settings-page.php:496
403
  msgid "If it doesn't exist, use first image from the post/page media gallery"
404
  msgstr ""
405
  "Se não existir, será usada a primeira imagem na galeria multimédia do artigo/"
406
  "página"
407
 
408
  # @ wd-fb-og
409
- #: includes/settings-page.php:500
410
  msgid "If it doesn't exist, use the default image above"
411
  msgstr "Se não existir, utilizar a imagem por omissão em cima"
412
 
413
  # @ wd-fb-og
414
- #: includes/settings-page.php:508
415
  msgid "3rd Party Integration"
416
  msgstr "Integração com outros plugins"
417
 
418
  # @ wd-fb-og
419
- #: includes/settings-page.php:519
420
  msgid ""
421
  "It's HIGHLY recommended to go to <a href=\"admin.php?page=wpseo_social\" "
422
  "target=\"_blank\">SEO &gt; Social</a> and disable \"Add Open Graph meta data"
@@ -428,7 +441,7 @@ msgstr ""
428
  "\"Acrescentar metadados Twitter card\" e \"Add Google+ specific post meta "
429
  "data\""
430
 
431
- #: includes/settings-page.php:519
432
  msgid ""
433
  "even if you don't enable integration bellow. You will get duplicate tags if "
434
  "you don't do this."
@@ -437,22 +450,22 @@ msgstr ""
437
  "fizer."
438
 
439
  # @ wd-fb-og
440
- #: includes/settings-page.php:522
441
  msgid "Use title, url (canonical) and description from WPSEO"
442
  msgstr "Utilizar título, url (canónico) e descrição do WPSEO"
443
 
444
  # @ wd-fb-og
445
- #: includes/settings-page.php:538
446
  msgid "Add SubHeading to Post/Page title"
447
  msgstr "Adicionar \"SubHeading\" ao título do artigo/página"
448
 
449
  # @ wd-fb-og
450
- #: includes/settings-page.php:554
451
  msgid "Use BDP listing contents as OG tags"
452
  msgstr "Utilizar o conteúdo dos anúncios BDP como tags OG"
453
 
454
  # @ wd-fb-og
455
- #: includes/settings-page.php:558
456
  msgid ""
457
  "Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and "
458
  "\"Include Image\" options above is HIGHLY recommended"
@@ -462,85 +475,85 @@ msgstr ""
462
  "image)\" é ALTAMENTE recomendado"
463
 
464
  # @ wd-fb-og
465
- #: includes/settings-page.php:566
466
  msgid "You don't have any compatible 3rd Party plugin installed/active."
467
  msgstr "Não tem nenhum plugin compatível instalado/activo."
468
 
469
  # @ wd-fb-og
470
- #: includes/settings-page.php:567
471
  msgid "This plugin is currently compatible with:"
472
  msgstr "Este plugin é actualmente compatível com:"
473
 
474
  # @ wd-fb-og
475
- #: includes/settings-page.php:587
476
  msgid "Test your URLs at Facebook URL Linter / Debugger"
477
  msgstr "Teste os seus URLs no \"Facebook URL Linter / Debugger\""
478
 
479
- #: includes/settings-page.php:590
480
  msgid "Test (and request approval for) your URLs at Twitter Card validator"
481
  msgstr "Teste (e solicite aprovação dos) URLs no \"Twitter Card validator\""
482
 
483
  # @ wd-fb-og
484
- #: includes/settings-page.php:593
485
  msgid "About the Open Graph Protocol (on Facebook)"
486
  msgstr "Sobre o Protocolo Open Graph (no Facebook)"
487
 
488
  # @ wd-fb-og
489
- #: includes/settings-page.php:596
490
  msgid "The Open Graph Protocol (official website)"
491
  msgstr "O Protocolo Open Graph (website oficial)"
492
 
493
- #: includes/settings-page.php:599
494
  msgid "About Twitter Cards"
495
  msgstr "Sobre os \"Twitter Cards\""
496
 
497
  # @ wd-fb-og
498
- #: includes/settings-page.php:602
499
  msgid "Plugin official URL"
500
  msgstr "URL oficial do plugin"
501
 
502
  # @ wd-fb-og
503
- #: includes/settings-page.php:605
504
  msgid "Author's website: Webdados"
505
  msgstr "Website do autor: Webdados"
506
 
507
  # @ wd-fb-og
508
- #: includes/settings-page.php:608
509
  msgid "Author's Facebook page: Webdados"
510
  msgstr "Página Facebook do autor: Webdados"
511
 
512
  # @ wd-fb-og
513
- #: includes/settings-page.php:611
514
  msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
515
  msgstr "Conta Twitter do autor: @Wonderm00n<br/>(fundador da Webdados)"
516
 
517
  # @ wd-fb-og
518
- #: includes/settings-page.php:618
519
  msgid "Rate this plugin"
520
  msgstr "Avalie este plugin"
521
 
522
  # @ wd-fb-og
523
- #: includes/settings-page.php:620
524
  msgid "If you like this plugin,"
525
  msgstr "Se gosta deste plugin,"
526
 
527
  # @ wd-fb-og
528
- #: includes/settings-page.php:620
529
  msgid "please give it a high Rating"
530
  msgstr "dê-lhe uma nota elevada"
531
 
532
  # @ wd-fb-og
533
- #: includes/settings-page.php:627
534
  msgid "Useful links"
535
  msgstr "Links úteis"
536
 
537
  # @ wd-fb-og
538
- #: includes/settings-page.php:640
539
  msgid "Donate"
540
  msgstr "Doar"
541
 
542
  # @ wd-fb-og
543
- #: includes/settings-page.php:642
544
  msgid ""
545
  "If you find this plugin useful and want to make a contribution towards "
546
  "future development please consider making a small, or big ;-), donation."
@@ -550,34 +563,34 @@ msgstr ""
550
  "doação."
551
 
552
  # @ wd-fb-og
553
- #: wonderm00n-open-graph.php:563
554
  msgid "Use this image:"
555
  msgstr "Utilizar esta imagem:"
556
 
557
  # @ wd-fb-og
558
- #: wonderm00n-open-graph.php:566
559
  msgid "Upload/Choose Open Graph Image"
560
  msgstr "Carregar/Escolher Imagem Open Graph"
561
 
562
  # @ wd-fb-og
563
- #: wonderm00n-open-graph.php:567
564
  msgid "Clear field"
565
  msgstr "Limpar campo"
566
 
567
  # @ wd-fb-og
568
- #: wonderm00n-open-graph.php:650
569
  msgid "Use as Image Open Graph Tag"
570
  msgstr "Utilizar como Imagem Open Graph"
571
 
572
- #: wonderm00n-open-graph.php:669
573
  msgid "Google+"
574
  msgstr "Google+"
575
 
576
- #: wonderm00n-open-graph.php:673
577
  msgid "Facebook profile URL"
578
  msgstr "URL de Perfil Facebook"
579
 
580
- #: wonderm00n-open-graph.php:691
581
  msgid ""
582
  "Please ignore the (dumb) Yoast WordPress SEO warning regarding open graph "
583
  "issues with this plugin. Just disable WPSEO Social settings at"
@@ -586,7 +599,7 @@ msgstr ""
586
  "problemas \"open graph\" com este plugin. Simplesmente inactive as "
587
  "definições Social do WPSEO em"
588
 
589
- #: wonderm00n-open-graph.php:692
590
  msgid "SEO &gt; Social"
591
  msgstr "SEO &gt; Social"
592
 
3
  "Project-Id-Version: Facebook Open Graph Meta Tags for WordPress v1.1.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wonderm00ns-simple-"
5
  "facebook-open-graph-tags\n"
6
+ "POT-Creation-Date: 2014-11-29 12:58:31+00:00\n"
7
+ "PO-Revision-Date: 2014-11-29 13:05-0000\n"
8
  "Last-Translator: Wonderm00n <wonderm00n@gmail.com>\n"
9
  "Language-Team: Webdados <info@webdados.pt>\n"
10
  "Language: pt_PT\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  # @ wd-fb-og
24
+ #: includes/settings-page.php:78
25
  msgid ""
26
  "Please set some default values and which tags should, or should not, be "
27
  "included. It may be necessary to exclude some tags if other plugins are "
32
  "estão a incluir."
33
 
34
  # @ wd-fb-og
35
+ #: includes/settings-page.php:92
36
  msgid "Include Facebook Platform App ID (fb:app_id) tag"
37
  msgstr "Incluir tag \"Facebook Platform App ID\" (fb:app_id)"
38
 
39
  # @ wd-fb-og
40
+ #: includes/settings-page.php:98
41
  msgid "Facebook Platform App ID"
42
  msgstr "Facebook Platform App ID"
43
 
44
  # @ wd-fb-og
45
+ #: includes/settings-page.php:107
46
  msgid "Include Facebook Admin(s) ID (fb:admins) tag"
47
  msgstr "Incluir tag com ID dos admin de Facebook (fb:admins)"
48
 
49
  # @ wd-fb-og
50
+ #: includes/settings-page.php:113
51
  msgid "Facebook Admin(s) ID"
52
  msgstr "ID do(s) Admin(s) no Facebook"
53
 
54
  # @ wd-fb-og
55
+ #: includes/settings-page.php:117
56
  msgid "Comma separated if more than one"
57
  msgstr "Separados por vírgulas se mais do que um"
58
 
59
  # @ wd-fb-og
60
+ #: includes/settings-page.php:124
61
  msgid "Include locale (fb:locale) tag"
62
  msgstr "Incluir tag \"Locale\" (fb:locale)"
63
 
64
  # @ wd-fb-og
65
+ #: includes/settings-page.php:130
66
  msgid "Locale"
67
  msgstr "Locale"
68
 
69
  # @ wd-fb-og
70
+ #: includes/settings-page.php:133
71
  msgid "WordPress current locale/language"
72
  msgstr "O \"locale\"/idíoma actual do WordPress"
73
 
74
  # @ wd-fb-og
75
+ #: includes/settings-page.php:184
76
  msgid "List loaded from Facebook (online)"
77
  msgstr "Lista carregada do Facebook (online)"
78
 
79
  # @ wd-fb-og
80
+ #: includes/settings-page.php:187
81
  msgid "List loaded from local cache (offline)"
82
  msgstr "Lista carregada da cache local (offline)"
83
 
84
  # @ wd-fb-og
85
+ #: includes/settings-page.php:187
86
  msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
87
  msgstr ""
88
  "Vai perder quaisquer modificações que não tenha gravado. Tem a certeza?"
89
 
90
  # @ wd-fb-og
91
+ #: includes/settings-page.php:187
92
  msgid "Reload from Facebook"
93
  msgstr "(Re)carregar a partir do Facebook"
94
 
95
  # @ wd-fb-og
96
+ #: includes/settings-page.php:189
97
  msgid "List not loaded"
98
  msgstr "Lista não carregada"
99
 
100
  # @ wd-fb-og
101
+ #: includes/settings-page.php:199
102
  msgid "Include Site Name (og:site_name) tag"
103
  msgstr "Incluir tag Nome do site (og:site_name)"
104
 
105
  # @ wd-fb-og
106
+ #: includes/settings-page.php:208
107
  msgid "Include Post/Page title (og:title) tag"
108
  msgstr "Incluir tag Título do artigo/página (og:title)"
109
 
110
  # @ wd-fb-og
111
+ #: includes/settings-page.php:214
112
  msgid "Include Schema.org \"itemprop\" Name tag"
113
  msgstr "Incluir a tag \"itemprop Name\" do Schema.org"
114
 
115
  # @ wd-fb-og
116
+ #: includes/settings-page.php:220 includes/settings-page.php:407
117
+ #: includes/settings-page.php:467
118
  msgid ""
119
  "Recommended for Google+ sharing purposes if no other plugin is setting it "
120
  "already"
123
  "está a definir"
124
 
125
  # @ wd-fb-og
126
+ #: includes/settings-page.php:224
127
  msgid "Include Twitter Card Title tag"
128
  msgstr "Incluir tag Título do \"Twitter Card\""
129
 
130
  # @ wd-fb-og
131
+ #: includes/settings-page.php:230 includes/settings-page.php:417
132
+ #: includes/settings-page.php:477
133
  msgid ""
134
  "Recommended for Twitter sharing purposes if no other plugin is setting it "
135
  "already"
138
  "está a definir"
139
 
140
  # @ wd-fb-og
141
+ #: includes/settings-page.php:237
142
  msgid "Include URL (og:url) tag"
143
  msgstr "Incluir tag URL (og:url)"
144
 
145
+ #: includes/settings-page.php:243
146
  msgid "Include Twitter Card URL tag"
147
  msgstr "Incluir tag URL do \"Twitter Card\""
148
 
149
  # @ wd-fb-og
150
+ #: includes/settings-page.php:249
151
  msgid "Add trailing slash at the end"
152
  msgstr "Adicionar barra invertida no final"
153
 
154
  # @ wd-fb-og
155
+ #: includes/settings-page.php:253
156
  msgid "On the homepage will be"
157
  msgstr "Na página inicial será"
158
 
159
  # @ wd-fb-og
160
+ #: includes/settings-page.php:257
161
  msgid "Set Canonical URL"
162
  msgstr "Incluir a tag URL Canónico"
163
 
164
  # @ wd-fb-og
165
+ #: includes/settings-page.php:268
166
  msgid "Include Type (og:type) tag"
167
  msgstr "Incluir tag Tipo (og:type)"
168
 
169
  # @ wd-fb-og
170
+ #: includes/settings-page.php:272
171
  msgid ""
172
  "Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\"; for the "
173
  "homepage"
176
  "inicial"
177
 
178
  # @ wd-fb-og
179
+ #: includes/settings-page.php:276
180
  msgid "Homepage type"
181
  msgstr "Tipo para a página inicial"
182
 
183
  # @ wd-fb-og
184
+ #: includes/settings-page.php:278 includes/settings-page.php:438
185
  msgid "Use"
186
  msgstr "Utilizar"
187
 
188
  # @ wd-fb-og
189
+ #: includes/settings-page.php:289
190
  msgid "Include Publisher Page (article:publisher) tag"
191
+ msgstr "Incluir tag \"Publisher\" (article:publisher)"
192
 
193
+ #: includes/settings-page.php:293
194
  msgid "Links the website to the publisher Facebook Page."
195
  msgstr "Associa o website à Página Facebook do mesmo"
196
 
197
+ #: includes/settings-page.php:297
198
+ msgid "Website's Facebook Page"
199
  msgstr "Página de Facebook do Website"
200
 
201
  # @ wd-fb-og
202
+ #: includes/settings-page.php:301 includes/settings-page.php:318
203
+ #: includes/settings-page.php:486
204
  msgid "Full URL with http://"
205
  msgstr "URL completo com http://"
206
 
207
+ #: includes/settings-page.php:306
208
+ msgid "Include Google+ \"publisher\" tag"
209
+ msgstr "Incluir tag \"Google+ publisher\""
210
+
211
+ #: includes/settings-page.php:310
212
+ msgid "Links the website to the publisher Google+ Page."
213
+ msgstr "Associa o website à Página Google+ do mesmo"
214
+
215
+ #: includes/settings-page.php:314
216
+ msgid "Website's Google+ Page"
217
+ msgstr "Página Google+ do Website"
218
+
219
  # @ wd-fb-og
220
+ #: includes/settings-page.php:323
221
  msgid "Include Twitter Card Website Username tag"
222
  msgstr "Incluir tag Username Twitter do Website do \"Twitter Card\""
223
 
224
+ #: includes/settings-page.php:327
225
+ msgid "Links the website to the publisher Twitter Username."
226
  msgstr "Associa o website ao Username Twitter do mesmo"
227
 
228
+ #: includes/settings-page.php:331
229
+ msgid "Website's Twitter Username"
230
  msgstr "Utilizador Twitter do Website"
231
 
232
+ #: includes/settings-page.php:335 wonderm00n-open-graph.php:687
233
  msgid "Twitter username (without @)"
234
  msgstr "Utilizador do Twitter (sem @)"
235
 
236
+ #: includes/settings-page.php:343
237
  msgid "Include Author Profile (article:author) tag"
238
  msgstr "Incluir tag \"Autor do artigo\" (article:author)"
239
 
240
+ #: includes/settings-page.php:347
241
  msgid ""
242
  "Links the article to the author Facebook Profile. The user's Facebook "
243
  "profile URL must be filled in."
246
  "Facebook do utilizador tem de estar preenchido."
247
 
248
  # @ wd-fb-og
249
+ #: includes/settings-page.php:351
250
  msgid "Include Meta Author tag"
251
+ msgstr "Incluir a tag \"Meta Author\""
252
 
253
+ #: includes/settings-page.php:357
254
  msgid "Sets the article author name"
255
  msgstr "Define o nome do autor do artigo"
256
 
257
+ #: includes/settings-page.php:361
258
  msgid "Include Google+ link rel \"author\" tag"
259
  msgstr "Incluir tag \"Google+ link rel author\""
260
 
261
+ #: includes/settings-page.php:367
262
  msgid ""
263
  "Links the article to the author Google+ Profile (authorship). The user's "
264
  "Google+ profile URL must be filled in."
266
  "Associa o artigo ao perfil Google+ do autor do mesmo. O URL de Perfil Google"
267
  "+ do utilizador tem de estar preenchido."
268
 
269
+ #: includes/settings-page.php:371
270
  msgid "Include Twitter Card Creator tag"
271
  msgstr "Incluir tag Autor do \"Twitter Card\""
272
 
273
+ #: includes/settings-page.php:377
274
  msgid ""
275
  "Links the article to the author Twitter profile. The user's Twitter user "
276
  "must be filled in."
279
  "tem de estar preenchido."
280
 
281
  # @ wd-fb-og
282
+ #: includes/settings-page.php:385
283
  msgid "Include Description (og:description) tag"
284
  msgstr "Incluir tag Descrição (og:description)"
285
 
286
  # @ wd-fb-og
287
+ #: includes/settings-page.php:391
288
  msgid "Include Meta Description tag"
289
+ msgstr "Incluir a tag \"Meta Description\""
290
 
291
  # @ wd-fb-og
292
+ #: includes/settings-page.php:397
293
  msgid "Recommended for SEO purposes if no other plugin is setting it already"
294
  msgstr ""
295
  "Recomendado para efeitos de Optimização para Motores de Busca, se outro "
296
  "plugin ainda não a está a definir"
297
 
298
  # @ wd-fb-og
299
+ #: includes/settings-page.php:401
300
  msgid "Include Schema.org \"itemprop\" Description tag"
301
+ msgstr "Incluir a tag \"itemprop Description\" do Schema.org"
302
 
303
  # @ wd-fb-og
304
+ #: includes/settings-page.php:411
305
  msgid "Include Twitter Card Description tag"
306
  msgstr "Incluir tag Descrição do \"Twitter Card\""
307
 
308
  # @ wd-fb-og
309
+ #: includes/settings-page.php:421
310
  msgid "Description maximum length"
311
  msgstr "Comprimento máximo da descrição"
312
 
313
  # @ wd-fb-og
314
+ #: includes/settings-page.php:425
315
  msgid "0 or blank for no maximum length"
316
  msgstr "0 ou em branco para não definir máximo"
317
 
318
  # @ wd-fb-og
319
+ #: includes/settings-page.php:429
320
  msgid "Homepage description"
321
  msgstr "Descrição da página inicial"
322
 
323
  # @ wd-fb-og
324
+ #: includes/settings-page.php:435
325
  msgid "The description of your front page:"
326
  msgstr "A descrição da sua página inicial:"
327
 
328
  # @ wd-fb-og
329
+ #: includes/settings-page.php:440
330
  msgid "Website tagline"
331
  msgstr "Descrição do site"
332
 
333
  # @ wd-fb-og
334
+ #: includes/settings-page.php:441
335
  msgid "Custom text"
336
  msgstr "Texto personalizado"
337
 
338
  # @ wd-fb-og
339
+ #: includes/settings-page.php:453
340
  msgid "Include Image (og:image) tag"
341
  msgstr "Incluir tag Imagem (og:image)"
342
 
343
  # @ wd-fb-og
344
+ #: includes/settings-page.php:457
345
  msgid ""
346
  "All images MUST have at least 200px on both dimensions in order to Facebook "
347
  "to load them at all.<br/>1200x630px for optimal results.<br/>Minimum of "
352
  "mínimo de 600x315px é recomendado."
353
 
354
  # @ wd-fb-og
355
+ #: includes/settings-page.php:461
356
  msgid "Include Schema.org \"itemprop\" Image tag"
357
  msgstr "Incluir a tag \"itemprop Image\" do Schema.org"
358
 
359
  # @ wd-fb-og
360
+ #: includes/settings-page.php:471
361
  msgid "Include Twitter Card Image tag"
362
  msgstr "Incluir tag Imagem do \"Twitter Card\""
363
 
364
  # @ wd-fb-og
365
+ #: includes/settings-page.php:481
366
  msgid "Default image"
367
  msgstr "Imagem por omissão"
368
 
369
  # @ wd-fb-og
370
+ #: includes/settings-page.php:488 wonderm00n-open-graph.php:584
371
  msgid "Recommended size: 1200x630px"
372
  msgstr "Tamanho recomendado: 1200x630px"
373
 
374
  # @ wd-fb-og
375
+ #: includes/settings-page.php:492
376
  msgid "Add image to RSS/RSS2 feeds"
377
+ msgstr "Incluir a imagem aos feeds RSS/RSS2"
378
 
379
  # @ wd-fb-og
380
+ #: includes/settings-page.php:496
381
  msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
382
  msgstr ""
383
  "Para aplicação de posts automáticos como o RSS Graffitti, twitterfeed, etc..."
384
 
385
  # @ wd-fb-og
386
+ #: includes/settings-page.php:500
387
  msgid "On posts/pages"
388
  msgstr "Nos artigos/páginas"
389
 
390
  # @ wd-fb-og
391
+ #: includes/settings-page.php:504
392
  msgid ""
393
  "Image will be fetched from the specific \"Open Graph Image\" custom field on "
394
  "the post"
397
  "no artigo"
398
 
399
  # @ wd-fb-og
400
+ #: includes/settings-page.php:508
401
  msgid ""
402
  "If it's not set, image will be fetched from post/page featured/thumbnail "
403
  "picture"
406
  "página"
407
 
408
  # @ wd-fb-og
409
+ #: includes/settings-page.php:512
410
  msgid "If it doesn't exist, use the first image from the post/page content"
411
  msgstr ""
412
  "Se não existir, será utilizada a primeira imagem no conteúdo do artigo/página"
413
 
414
  # @ wd-fb-og
415
+ #: includes/settings-page.php:516
416
  msgid "If it doesn't exist, use first image from the post/page media gallery"
417
  msgstr ""
418
  "Se não existir, será usada a primeira imagem na galeria multimédia do artigo/"
419
  "página"
420
 
421
  # @ wd-fb-og
422
+ #: includes/settings-page.php:520
423
  msgid "If it doesn't exist, use the default image above"
424
  msgstr "Se não existir, utilizar a imagem por omissão em cima"
425
 
426
  # @ wd-fb-og
427
+ #: includes/settings-page.php:528
428
  msgid "3rd Party Integration"
429
  msgstr "Integração com outros plugins"
430
 
431
  # @ wd-fb-og
432
+ #: includes/settings-page.php:539
433
  msgid ""
434
  "It's HIGHLY recommended to go to <a href=\"admin.php?page=wpseo_social\" "
435
  "target=\"_blank\">SEO &gt; Social</a> and disable \"Add Open Graph meta data"
441
  "\"Acrescentar metadados Twitter card\" e \"Add Google+ specific post meta "
442
  "data\""
443
 
444
+ #: includes/settings-page.php:539
445
  msgid ""
446
  "even if you don't enable integration bellow. You will get duplicate tags if "
447
  "you don't do this."
450
  "fizer."
451
 
452
  # @ wd-fb-og
453
+ #: includes/settings-page.php:542
454
  msgid "Use title, url (canonical) and description from WPSEO"
455
  msgstr "Utilizar título, url (canónico) e descrição do WPSEO"
456
 
457
  # @ wd-fb-og
458
+ #: includes/settings-page.php:558
459
  msgid "Add SubHeading to Post/Page title"
460
  msgstr "Adicionar \"SubHeading\" ao título do artigo/página"
461
 
462
  # @ wd-fb-og
463
+ #: includes/settings-page.php:574
464
  msgid "Use BDP listing contents as OG tags"
465
  msgstr "Utilizar o conteúdo dos anúncios BDP como tags OG"
466
 
467
  # @ wd-fb-og
468
+ #: includes/settings-page.php:578
469
  msgid ""
470
  "Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and "
471
  "\"Include Image\" options above is HIGHLY recommended"
475
  "image)\" é ALTAMENTE recomendado"
476
 
477
  # @ wd-fb-og
478
+ #: includes/settings-page.php:586
479
  msgid "You don't have any compatible 3rd Party plugin installed/active."
480
  msgstr "Não tem nenhum plugin compatível instalado/activo."
481
 
482
  # @ wd-fb-og
483
+ #: includes/settings-page.php:587
484
  msgid "This plugin is currently compatible with:"
485
  msgstr "Este plugin é actualmente compatível com:"
486
 
487
  # @ wd-fb-og
488
+ #: includes/settings-page.php:607
489
  msgid "Test your URLs at Facebook URL Linter / Debugger"
490
  msgstr "Teste os seus URLs no \"Facebook URL Linter / Debugger\""
491
 
492
+ #: includes/settings-page.php:610
493
  msgid "Test (and request approval for) your URLs at Twitter Card validator"
494
  msgstr "Teste (e solicite aprovação dos) URLs no \"Twitter Card validator\""
495
 
496
  # @ wd-fb-og
497
+ #: includes/settings-page.php:613
498
  msgid "About the Open Graph Protocol (on Facebook)"
499
  msgstr "Sobre o Protocolo Open Graph (no Facebook)"
500
 
501
  # @ wd-fb-og
502
+ #: includes/settings-page.php:616
503
  msgid "The Open Graph Protocol (official website)"
504
  msgstr "O Protocolo Open Graph (website oficial)"
505
 
506
+ #: includes/settings-page.php:619
507
  msgid "About Twitter Cards"
508
  msgstr "Sobre os \"Twitter Cards\""
509
 
510
  # @ wd-fb-og
511
+ #: includes/settings-page.php:622
512
  msgid "Plugin official URL"
513
  msgstr "URL oficial do plugin"
514
 
515
  # @ wd-fb-og
516
+ #: includes/settings-page.php:625
517
  msgid "Author's website: Webdados"
518
  msgstr "Website do autor: Webdados"
519
 
520
  # @ wd-fb-og
521
+ #: includes/settings-page.php:628
522
  msgid "Author's Facebook page: Webdados"
523
  msgstr "Página Facebook do autor: Webdados"
524
 
525
  # @ wd-fb-og
526
+ #: includes/settings-page.php:631
527
  msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
528
  msgstr "Conta Twitter do autor: @Wonderm00n<br/>(fundador da Webdados)"
529
 
530
  # @ wd-fb-og
531
+ #: includes/settings-page.php:638
532
  msgid "Rate this plugin"
533
  msgstr "Avalie este plugin"
534
 
535
  # @ wd-fb-og
536
+ #: includes/settings-page.php:640
537
  msgid "If you like this plugin,"
538
  msgstr "Se gosta deste plugin,"
539
 
540
  # @ wd-fb-og
541
+ #: includes/settings-page.php:640
542
  msgid "please give it a high Rating"
543
  msgstr "dê-lhe uma nota elevada"
544
 
545
  # @ wd-fb-og
546
+ #: includes/settings-page.php:647
547
  msgid "Useful links"
548
  msgstr "Links úteis"
549
 
550
  # @ wd-fb-og
551
+ #: includes/settings-page.php:660
552
  msgid "Donate"
553
  msgstr "Doar"
554
 
555
  # @ wd-fb-og
556
+ #: includes/settings-page.php:662
557
  msgid ""
558
  "If you find this plugin useful and want to make a contribution towards "
559
  "future development please consider making a small, or big ;-), donation."
563
  "doação."
564
 
565
  # @ wd-fb-og
566
+ #: wonderm00n-open-graph.php:579
567
  msgid "Use this image:"
568
  msgstr "Utilizar esta imagem:"
569
 
570
  # @ wd-fb-og
571
+ #: wonderm00n-open-graph.php:582
572
  msgid "Upload/Choose Open Graph Image"
573
  msgstr "Carregar/Escolher Imagem Open Graph"
574
 
575
  # @ wd-fb-og
576
+ #: wonderm00n-open-graph.php:583
577
  msgid "Clear field"
578
  msgstr "Limpar campo"
579
 
580
  # @ wd-fb-og
581
+ #: wonderm00n-open-graph.php:666
582
  msgid "Use as Image Open Graph Tag"
583
  msgstr "Utilizar como Imagem Open Graph"
584
 
585
+ #: wonderm00n-open-graph.php:685
586
  msgid "Google+"
587
  msgstr "Google+"
588
 
589
+ #: wonderm00n-open-graph.php:689
590
  msgid "Facebook profile URL"
591
  msgstr "URL de Perfil Facebook"
592
 
593
+ #: wonderm00n-open-graph.php:707
594
  msgid ""
595
  "Please ignore the (dumb) Yoast WordPress SEO warning regarding open graph "
596
  "issues with this plugin. Just disable WPSEO Social settings at"
599
  "problemas \"open graph\" com este plugin. Simplesmente inactive as "
600
  "definições Social do WPSEO em"
601
 
602
+ #: wonderm00n-open-graph.php:708
603
  msgid "SEO &gt; Social"
604
  msgstr "SEO &gt; Social"
605
 
lang/wd-fb-og.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Facebook Open Graph, Google+ and Twitter Card Tags package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Facebook Open Graph, Google+ and Twitter Card Tags 1.3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wonderm00ns-simple-facebook-open-graph-tags\n"
7
- "POT-Creation-Date: 2014-11-28 16:36:48+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,416 +12,429 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: includes/settings-page.php:76
16
  msgid "Please set some default values and which tags should, or should not, be included. It may be necessary to exclude some tags if other plugins are already including them."
17
  msgstr ""
18
 
19
- #: includes/settings-page.php:90
20
  msgid "Include Facebook Platform App ID (fb:app_id) tag"
21
  msgstr ""
22
 
23
- #: includes/settings-page.php:96
24
  msgid "Facebook Platform App ID"
25
  msgstr ""
26
 
27
- #: includes/settings-page.php:105
28
  msgid "Include Facebook Admin(s) ID (fb:admins) tag"
29
  msgstr ""
30
 
31
- #: includes/settings-page.php:111
32
  msgid "Facebook Admin(s) ID"
33
  msgstr ""
34
 
35
- #: includes/settings-page.php:115
36
  msgid "Comma separated if more than one"
37
  msgstr ""
38
 
39
- #: includes/settings-page.php:122
40
  msgid "Include locale (fb:locale) tag"
41
  msgstr ""
42
 
43
- #: includes/settings-page.php:128
44
  msgid "Locale"
45
  msgstr ""
46
 
47
- #: includes/settings-page.php:131
48
  msgid "WordPress current locale/language"
49
  msgstr ""
50
 
51
- #: includes/settings-page.php:182
52
  msgid "List loaded from Facebook (online)"
53
  msgstr ""
54
 
55
- #: includes/settings-page.php:185
56
  msgid "List loaded from local cache (offline)"
57
  msgstr ""
58
 
59
- #: includes/settings-page.php:185
60
  msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
61
  msgstr ""
62
 
63
- #: includes/settings-page.php:185
64
  msgid "Reload from Facebook"
65
  msgstr ""
66
 
67
- #: includes/settings-page.php:187
68
  msgid "List not loaded"
69
  msgstr ""
70
 
71
- #: includes/settings-page.php:197
72
  msgid "Include Site Name (og:site_name) tag"
73
  msgstr ""
74
 
75
- #: includes/settings-page.php:206
76
  msgid "Include Post/Page title (og:title) tag"
77
  msgstr ""
78
 
79
- #: includes/settings-page.php:212
80
  msgid "Include Schema.org \"itemprop\" Name tag"
81
  msgstr ""
82
 
83
- #: includes/settings-page.php:218 includes/settings-page.php:387
84
- #: includes/settings-page.php:447
85
  msgid "Recommended for Google+ sharing purposes if no other plugin is setting it already"
86
  msgstr ""
87
 
88
- #: includes/settings-page.php:222
89
  msgid "Include Twitter Card Title tag"
90
  msgstr ""
91
 
92
- #: includes/settings-page.php:228 includes/settings-page.php:397
93
- #: includes/settings-page.php:457
94
  msgid "Recommended for Twitter sharing purposes if no other plugin is setting it already"
95
  msgstr ""
96
 
97
- #: includes/settings-page.php:235
98
  msgid "Include URL (og:url) tag"
99
  msgstr ""
100
 
101
- #: includes/settings-page.php:241
102
  msgid "Include Twitter Card URL tag"
103
  msgstr ""
104
 
105
- #: includes/settings-page.php:247
106
  msgid "Add trailing slash at the end"
107
  msgstr ""
108
 
109
- #: includes/settings-page.php:251
110
  msgid "On the homepage will be"
111
  msgstr ""
112
 
113
- #: includes/settings-page.php:255
114
  msgid "Set Canonical URL"
115
  msgstr ""
116
 
117
- #: includes/settings-page.php:266
118
  msgid "Include Type (og:type) tag"
119
  msgstr ""
120
 
121
- #: includes/settings-page.php:270
122
  msgid "Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\"; for the homepage"
123
  msgstr ""
124
 
125
- #: includes/settings-page.php:274
126
  msgid "Homepage type"
127
  msgstr ""
128
 
129
- #: includes/settings-page.php:276 includes/settings-page.php:418
130
  msgid "Use"
131
  msgstr ""
132
 
133
- #: includes/settings-page.php:287
134
  msgid "Include Publisher Page (article:publisher) tag"
135
  msgstr ""
136
 
137
- #: includes/settings-page.php:291
138
  msgid "Links the website to the publisher Facebook Page."
139
  msgstr ""
140
 
141
- #: includes/settings-page.php:295
142
- msgid "Publisher Facebook Page"
143
  msgstr ""
144
 
145
- #: includes/settings-page.php:299 includes/settings-page.php:466
 
146
  msgid "Full URL with http://"
147
  msgstr ""
148
 
149
- #: includes/settings-page.php:303
 
 
 
 
 
 
 
 
 
 
 
 
150
  msgid "Include Twitter Card Website Username tag"
151
  msgstr ""
152
 
153
- #: includes/settings-page.php:307
154
- msgid "Links the website to the website Twitter Username."
155
  msgstr ""
156
 
157
- #: includes/settings-page.php:311
158
- msgid "Website Twitter Username"
159
  msgstr ""
160
 
161
- #: includes/settings-page.php:315 wonderm00n-open-graph.php:671
162
  msgid "Twitter username (without @)"
163
  msgstr ""
164
 
165
- #: includes/settings-page.php:323
166
  msgid "Include Author Profile (article:author) tag"
167
  msgstr ""
168
 
169
- #: includes/settings-page.php:327
170
  msgid "Links the article to the author Facebook Profile. The user's Facebook profile URL must be filled in."
171
  msgstr ""
172
 
173
- #: includes/settings-page.php:331
174
  msgid "Include Meta Author tag"
175
  msgstr ""
176
 
177
- #: includes/settings-page.php:337
178
  msgid "Sets the article author name"
179
  msgstr ""
180
 
181
- #: includes/settings-page.php:341
182
  msgid "Include Google+ link rel \"author\" tag"
183
  msgstr ""
184
 
185
- #: includes/settings-page.php:347
186
  msgid "Links the article to the author Google+ Profile (authorship). The user's Google+ profile URL must be filled in."
187
  msgstr ""
188
 
189
- #: includes/settings-page.php:351
190
  msgid "Include Twitter Card Creator tag"
191
  msgstr ""
192
 
193
- #: includes/settings-page.php:357
194
  msgid "Links the article to the author Twitter profile. The user's Twitter user must be filled in."
195
  msgstr ""
196
 
197
- #: includes/settings-page.php:365
198
  msgid "Include Description (og:description) tag"
199
  msgstr ""
200
 
201
- #: includes/settings-page.php:371
202
  msgid "Include Meta Description tag"
203
  msgstr ""
204
 
205
- #: includes/settings-page.php:377
206
  msgid "Recommended for SEO purposes if no other plugin is setting it already"
207
  msgstr ""
208
 
209
- #: includes/settings-page.php:381
210
  msgid "Include Schema.org \"itemprop\" Description tag"
211
  msgstr ""
212
 
213
- #: includes/settings-page.php:391
214
  msgid "Include Twitter Card Description tag"
215
  msgstr ""
216
 
217
- #: includes/settings-page.php:401
218
  msgid "Description maximum length"
219
  msgstr ""
220
 
221
- #: includes/settings-page.php:405
222
  msgid "0 or blank for no maximum length"
223
  msgstr ""
224
 
225
- #: includes/settings-page.php:409
226
  msgid "Homepage description"
227
  msgstr ""
228
 
229
- #: includes/settings-page.php:415
230
  msgid "The description of your front page:"
231
  msgstr ""
232
 
233
- #: includes/settings-page.php:420
234
  msgid "Website tagline"
235
  msgstr ""
236
 
237
- #: includes/settings-page.php:421
238
  msgid "Custom text"
239
  msgstr ""
240
 
241
- #: includes/settings-page.php:433
242
  msgid "Include Image (og:image) tag"
243
  msgstr ""
244
 
245
- #: includes/settings-page.php:437
246
  msgid "All images MUST have at least 200px on both dimensions in order to Facebook to load them at all.<br/>1200x630px for optimal results.<br/>Minimum of 600x315px is recommended."
247
  msgstr ""
248
 
249
- #: includes/settings-page.php:441
250
  msgid "Include Schema.org \"itemprop\" Image tag"
251
  msgstr ""
252
 
253
- #: includes/settings-page.php:451
254
  msgid "Include Twitter Card Image tag"
255
  msgstr ""
256
 
257
- #: includes/settings-page.php:461
258
  msgid "Default image"
259
  msgstr ""
260
 
261
- #: includes/settings-page.php:468 wonderm00n-open-graph.php:568
262
  msgid "Recommended size: 1200x630px"
263
  msgstr ""
264
 
265
- #: includes/settings-page.php:472
266
  msgid "Add image to RSS/RSS2 feeds"
267
  msgstr ""
268
 
269
- #: includes/settings-page.php:476
270
  msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
271
  msgstr ""
272
 
273
- #: includes/settings-page.php:480
274
  msgid "On posts/pages"
275
  msgstr ""
276
 
277
- #: includes/settings-page.php:484
278
  msgid "Image will be fetched from the specific \"Open Graph Image\" custom field on the post"
279
  msgstr ""
280
 
281
- #: includes/settings-page.php:488
282
  msgid "If it's not set, image will be fetched from post/page featured/thumbnail picture"
283
  msgstr ""
284
 
285
- #: includes/settings-page.php:492
286
  msgid "If it doesn't exist, use the first image from the post/page content"
287
  msgstr ""
288
 
289
- #: includes/settings-page.php:496
290
  msgid "If it doesn't exist, use first image from the post/page media gallery"
291
  msgstr ""
292
 
293
- #: includes/settings-page.php:500
294
  msgid "If it doesn't exist, use the default image above"
295
  msgstr ""
296
 
297
- #: includes/settings-page.php:508
298
  msgid "3rd Party Integration"
299
  msgstr ""
300
 
301
- #: includes/settings-page.php:519
302
  msgid "It's HIGHLY recommended to go to <a href=\"admin.php?page=wpseo_social\" target=\"_blank\">SEO &gt; Social</a> and disable \"Add Open Graph meta data\", \"Add Twitter card meta data\" and \"Add Google+ specific post meta data\""
303
  msgstr ""
304
 
305
- #: includes/settings-page.php:519
306
  msgid "even if you don't enable integration bellow. You will get duplicate tags if you don't do this."
307
  msgstr ""
308
 
309
- #: includes/settings-page.php:522
310
  msgid "Use title, url (canonical) and description from WPSEO"
311
  msgstr ""
312
 
313
- #: includes/settings-page.php:538
314
  msgid "Add SubHeading to Post/Page title"
315
  msgstr ""
316
 
317
- #: includes/settings-page.php:554
318
  msgid "Use BDP listing contents as OG tags"
319
  msgstr ""
320
 
321
- #: includes/settings-page.php:558
322
  msgid "Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and \"Include Image\" options above is HIGHLY recommended"
323
  msgstr ""
324
 
325
- #: includes/settings-page.php:566
326
  msgid "You don't have any compatible 3rd Party plugin installed/active."
327
  msgstr ""
328
 
329
- #: includes/settings-page.php:567
330
  msgid "This plugin is currently compatible with:"
331
  msgstr ""
332
 
333
- #: includes/settings-page.php:587
334
  msgid "Test your URLs at Facebook URL Linter / Debugger"
335
  msgstr ""
336
 
337
- #: includes/settings-page.php:590
338
  msgid "Test (and request approval for) your URLs at Twitter Card validator"
339
  msgstr ""
340
 
341
- #: includes/settings-page.php:593
342
  msgid "About the Open Graph Protocol (on Facebook)"
343
  msgstr ""
344
 
345
- #: includes/settings-page.php:596
346
  msgid "The Open Graph Protocol (official website)"
347
  msgstr ""
348
 
349
- #: includes/settings-page.php:599
350
  msgid "About Twitter Cards"
351
  msgstr ""
352
 
353
- #: includes/settings-page.php:602
354
  msgid "Plugin official URL"
355
  msgstr ""
356
 
357
- #: includes/settings-page.php:605
358
  msgid "Author's website: Webdados"
359
  msgstr ""
360
 
361
- #: includes/settings-page.php:608
362
  msgid "Author's Facebook page: Webdados"
363
  msgstr ""
364
 
365
- #: includes/settings-page.php:611
366
  msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
367
  msgstr ""
368
 
369
- #: includes/settings-page.php:618
370
  msgid "Rate this plugin"
371
  msgstr ""
372
 
373
- #: includes/settings-page.php:620
374
  msgid "If you like this plugin,"
375
  msgstr ""
376
 
377
- #: includes/settings-page.php:620
378
  msgid "please give it a high Rating"
379
  msgstr ""
380
 
381
- #: includes/settings-page.php:627
382
  msgid "Useful links"
383
  msgstr ""
384
 
385
- #: includes/settings-page.php:640
386
  msgid "Donate"
387
  msgstr ""
388
 
389
- #: includes/settings-page.php:642
390
  msgid "If you find this plugin useful and want to make a contribution towards future development please consider making a small, or big ;-), donation."
391
  msgstr ""
392
 
393
- #: wonderm00n-open-graph.php:563
394
  msgid "Use this image:"
395
  msgstr ""
396
 
397
- #: wonderm00n-open-graph.php:566
398
  msgid "Upload/Choose Open Graph Image"
399
  msgstr ""
400
 
401
- #: wonderm00n-open-graph.php:567
402
  msgid "Clear field"
403
  msgstr ""
404
 
405
- #: wonderm00n-open-graph.php:650
406
  msgid "Use as Image Open Graph Tag"
407
  msgstr ""
408
 
409
- #: wonderm00n-open-graph.php:669
410
  msgid "Google+"
411
  msgstr ""
412
 
413
- #: wonderm00n-open-graph.php:673
414
  msgid "Facebook profile URL"
415
  msgstr ""
416
 
417
- #: wonderm00n-open-graph.php:691
418
  msgid "Please ignore the (dumb) Yoast WordPress SEO warning regarding open graph issues with this plugin. Just disable WPSEO Social settings at"
419
  msgstr ""
420
 
421
- #: wonderm00n-open-graph.php:692
422
  msgid "SEO &gt; Social"
423
  msgstr ""
424
 
425
  #. Description of the plugin/theme
426
  msgid "Inserts Facebook Open Graph, Google+ / Schema.org and Twitter Card Tags into your WordPress Blog/Website for more effective and efficient Facebook, Google+ and Twitter sharing results. You can also choose to insert the \"enclosure\" and \"media:content\" tags to the RSS feeds, so that apps like RSS Graffiti and twitterfeed post the image to Facebook correctly."
427
- msgstr ""
2
  # This file is distributed under the same license as the Facebook Open Graph, Google+ and Twitter Card Tags package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Facebook Open Graph, Google+ and Twitter Card Tags 1.3.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wonderm00ns-simple-facebook-open-graph-tags\n"
7
+ "POT-Creation-Date: 2014-11-29 12:58:31+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: includes/settings-page.php:78
16
  msgid "Please set some default values and which tags should, or should not, be included. It may be necessary to exclude some tags if other plugins are already including them."
17
  msgstr ""
18
 
19
+ #: includes/settings-page.php:92
20
  msgid "Include Facebook Platform App ID (fb:app_id) tag"
21
  msgstr ""
22
 
23
+ #: includes/settings-page.php:98
24
  msgid "Facebook Platform App ID"
25
  msgstr ""
26
 
27
+ #: includes/settings-page.php:107
28
  msgid "Include Facebook Admin(s) ID (fb:admins) tag"
29
  msgstr ""
30
 
31
+ #: includes/settings-page.php:113
32
  msgid "Facebook Admin(s) ID"
33
  msgstr ""
34
 
35
+ #: includes/settings-page.php:117
36
  msgid "Comma separated if more than one"
37
  msgstr ""
38
 
39
+ #: includes/settings-page.php:124
40
  msgid "Include locale (fb:locale) tag"
41
  msgstr ""
42
 
43
+ #: includes/settings-page.php:130
44
  msgid "Locale"
45
  msgstr ""
46
 
47
+ #: includes/settings-page.php:133
48
  msgid "WordPress current locale/language"
49
  msgstr ""
50
 
51
+ #: includes/settings-page.php:184
52
  msgid "List loaded from Facebook (online)"
53
  msgstr ""
54
 
55
+ #: includes/settings-page.php:187
56
  msgid "List loaded from local cache (offline)"
57
  msgstr ""
58
 
59
+ #: includes/settings-page.php:187
60
  msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
61
  msgstr ""
62
 
63
+ #: includes/settings-page.php:187
64
  msgid "Reload from Facebook"
65
  msgstr ""
66
 
67
+ #: includes/settings-page.php:189
68
  msgid "List not loaded"
69
  msgstr ""
70
 
71
+ #: includes/settings-page.php:199
72
  msgid "Include Site Name (og:site_name) tag"
73
  msgstr ""
74
 
75
+ #: includes/settings-page.php:208
76
  msgid "Include Post/Page title (og:title) tag"
77
  msgstr ""
78
 
79
+ #: includes/settings-page.php:214
80
  msgid "Include Schema.org \"itemprop\" Name tag"
81
  msgstr ""
82
 
83
+ #: includes/settings-page.php:220 includes/settings-page.php:407
84
+ #: includes/settings-page.php:467
85
  msgid "Recommended for Google+ sharing purposes if no other plugin is setting it already"
86
  msgstr ""
87
 
88
+ #: includes/settings-page.php:224
89
  msgid "Include Twitter Card Title tag"
90
  msgstr ""
91
 
92
+ #: includes/settings-page.php:230 includes/settings-page.php:417
93
+ #: includes/settings-page.php:477
94
  msgid "Recommended for Twitter sharing purposes if no other plugin is setting it already"
95
  msgstr ""
96
 
97
+ #: includes/settings-page.php:237
98
  msgid "Include URL (og:url) tag"
99
  msgstr ""
100
 
101
+ #: includes/settings-page.php:243
102
  msgid "Include Twitter Card URL tag"
103
  msgstr ""
104
 
105
+ #: includes/settings-page.php:249
106
  msgid "Add trailing slash at the end"
107
  msgstr ""
108
 
109
+ #: includes/settings-page.php:253
110
  msgid "On the homepage will be"
111
  msgstr ""
112
 
113
+ #: includes/settings-page.php:257
114
  msgid "Set Canonical URL"
115
  msgstr ""
116
 
117
+ #: includes/settings-page.php:268
118
  msgid "Include Type (og:type) tag"
119
  msgstr ""
120
 
121
+ #: includes/settings-page.php:272
122
  msgid "Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\"; for the homepage"
123
  msgstr ""
124
 
125
+ #: includes/settings-page.php:276
126
  msgid "Homepage type"
127
  msgstr ""
128
 
129
+ #: includes/settings-page.php:278 includes/settings-page.php:438
130
  msgid "Use"
131
  msgstr ""
132
 
133
+ #: includes/settings-page.php:289
134
  msgid "Include Publisher Page (article:publisher) tag"
135
  msgstr ""
136
 
137
+ #: includes/settings-page.php:293
138
  msgid "Links the website to the publisher Facebook Page."
139
  msgstr ""
140
 
141
+ #: includes/settings-page.php:297
142
+ msgid "Website's Facebook Page"
143
  msgstr ""
144
 
145
+ #: includes/settings-page.php:301 includes/settings-page.php:318
146
+ #: includes/settings-page.php:486
147
  msgid "Full URL with http://"
148
  msgstr ""
149
 
150
+ #: includes/settings-page.php:306
151
+ msgid "Include Google+ \"publisher\" tag"
152
+ msgstr ""
153
+
154
+ #: includes/settings-page.php:310
155
+ msgid "Links the website to the publisher Google+ Page."
156
+ msgstr ""
157
+
158
+ #: includes/settings-page.php:314
159
+ msgid "Website's Google+ Page"
160
+ msgstr ""
161
+
162
+ #: includes/settings-page.php:323
163
  msgid "Include Twitter Card Website Username tag"
164
  msgstr ""
165
 
166
+ #: includes/settings-page.php:327
167
+ msgid "Links the website to the publisher Twitter Username."
168
  msgstr ""
169
 
170
+ #: includes/settings-page.php:331
171
+ msgid "Website's Twitter Username"
172
  msgstr ""
173
 
174
+ #: includes/settings-page.php:335 wonderm00n-open-graph.php:687
175
  msgid "Twitter username (without @)"
176
  msgstr ""
177
 
178
+ #: includes/settings-page.php:343
179
  msgid "Include Author Profile (article:author) tag"
180
  msgstr ""
181
 
182
+ #: includes/settings-page.php:347
183
  msgid "Links the article to the author Facebook Profile. The user's Facebook profile URL must be filled in."
184
  msgstr ""
185
 
186
+ #: includes/settings-page.php:351
187
  msgid "Include Meta Author tag"
188
  msgstr ""
189
 
190
+ #: includes/settings-page.php:357
191
  msgid "Sets the article author name"
192
  msgstr ""
193
 
194
+ #: includes/settings-page.php:361
195
  msgid "Include Google+ link rel \"author\" tag"
196
  msgstr ""
197
 
198
+ #: includes/settings-page.php:367
199
  msgid "Links the article to the author Google+ Profile (authorship). The user's Google+ profile URL must be filled in."
200
  msgstr ""
201
 
202
+ #: includes/settings-page.php:371
203
  msgid "Include Twitter Card Creator tag"
204
  msgstr ""
205
 
206
+ #: includes/settings-page.php:377
207
  msgid "Links the article to the author Twitter profile. The user's Twitter user must be filled in."
208
  msgstr ""
209
 
210
+ #: includes/settings-page.php:385
211
  msgid "Include Description (og:description) tag"
212
  msgstr ""
213
 
214
+ #: includes/settings-page.php:391
215
  msgid "Include Meta Description tag"
216
  msgstr ""
217
 
218
+ #: includes/settings-page.php:397
219
  msgid "Recommended for SEO purposes if no other plugin is setting it already"
220
  msgstr ""
221
 
222
+ #: includes/settings-page.php:401
223
  msgid "Include Schema.org \"itemprop\" Description tag"
224
  msgstr ""
225
 
226
+ #: includes/settings-page.php:411
227
  msgid "Include Twitter Card Description tag"
228
  msgstr ""
229
 
230
+ #: includes/settings-page.php:421
231
  msgid "Description maximum length"
232
  msgstr ""
233
 
234
+ #: includes/settings-page.php:425
235
  msgid "0 or blank for no maximum length"
236
  msgstr ""
237
 
238
+ #: includes/settings-page.php:429
239
  msgid "Homepage description"
240
  msgstr ""
241
 
242
+ #: includes/settings-page.php:435
243
  msgid "The description of your front page:"
244
  msgstr ""
245
 
246
+ #: includes/settings-page.php:440
247
  msgid "Website tagline"
248
  msgstr ""
249
 
250
+ #: includes/settings-page.php:441
251
  msgid "Custom text"
252
  msgstr ""
253
 
254
+ #: includes/settings-page.php:453
255
  msgid "Include Image (og:image) tag"
256
  msgstr ""
257
 
258
+ #: includes/settings-page.php:457
259
  msgid "All images MUST have at least 200px on both dimensions in order to Facebook to load them at all.<br/>1200x630px for optimal results.<br/>Minimum of 600x315px is recommended."
260
  msgstr ""
261
 
262
+ #: includes/settings-page.php:461
263
  msgid "Include Schema.org \"itemprop\" Image tag"
264
  msgstr ""
265
 
266
+ #: includes/settings-page.php:471
267
  msgid "Include Twitter Card Image tag"
268
  msgstr ""
269
 
270
+ #: includes/settings-page.php:481
271
  msgid "Default image"
272
  msgstr ""
273
 
274
+ #: includes/settings-page.php:488 wonderm00n-open-graph.php:584
275
  msgid "Recommended size: 1200x630px"
276
  msgstr ""
277
 
278
+ #: includes/settings-page.php:492
279
  msgid "Add image to RSS/RSS2 feeds"
280
  msgstr ""
281
 
282
+ #: includes/settings-page.php:496
283
  msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
284
  msgstr ""
285
 
286
+ #: includes/settings-page.php:500
287
  msgid "On posts/pages"
288
  msgstr ""
289
 
290
+ #: includes/settings-page.php:504
291
  msgid "Image will be fetched from the specific \"Open Graph Image\" custom field on the post"
292
  msgstr ""
293
 
294
+ #: includes/settings-page.php:508
295
  msgid "If it's not set, image will be fetched from post/page featured/thumbnail picture"
296
  msgstr ""
297
 
298
+ #: includes/settings-page.php:512
299
  msgid "If it doesn't exist, use the first image from the post/page content"
300
  msgstr ""
301
 
302
+ #: includes/settings-page.php:516
303
  msgid "If it doesn't exist, use first image from the post/page media gallery"
304
  msgstr ""
305
 
306
+ #: includes/settings-page.php:520
307
  msgid "If it doesn't exist, use the default image above"
308
  msgstr ""
309
 
310
+ #: includes/settings-page.php:528
311
  msgid "3rd Party Integration"
312
  msgstr ""
313
 
314
+ #: includes/settings-page.php:539
315
  msgid "It's HIGHLY recommended to go to <a href=\"admin.php?page=wpseo_social\" target=\"_blank\">SEO &gt; Social</a> and disable \"Add Open Graph meta data\", \"Add Twitter card meta data\" and \"Add Google+ specific post meta data\""
316
  msgstr ""
317
 
318
+ #: includes/settings-page.php:539
319
  msgid "even if you don't enable integration bellow. You will get duplicate tags if you don't do this."
320
  msgstr ""
321
 
322
+ #: includes/settings-page.php:542
323
  msgid "Use title, url (canonical) and description from WPSEO"
324
  msgstr ""
325
 
326
+ #: includes/settings-page.php:558
327
  msgid "Add SubHeading to Post/Page title"
328
  msgstr ""
329
 
330
+ #: includes/settings-page.php:574
331
  msgid "Use BDP listing contents as OG tags"
332
  msgstr ""
333
 
334
+ #: includes/settings-page.php:578
335
  msgid "Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and \"Include Image\" options above is HIGHLY recommended"
336
  msgstr ""
337
 
338
+ #: includes/settings-page.php:586
339
  msgid "You don't have any compatible 3rd Party plugin installed/active."
340
  msgstr ""
341
 
342
+ #: includes/settings-page.php:587
343
  msgid "This plugin is currently compatible with:"
344
  msgstr ""
345
 
346
+ #: includes/settings-page.php:607
347
  msgid "Test your URLs at Facebook URL Linter / Debugger"
348
  msgstr ""
349
 
350
+ #: includes/settings-page.php:610
351
  msgid "Test (and request approval for) your URLs at Twitter Card validator"
352
  msgstr ""
353
 
354
+ #: includes/settings-page.php:613
355
  msgid "About the Open Graph Protocol (on Facebook)"
356
  msgstr ""
357
 
358
+ #: includes/settings-page.php:616
359
  msgid "The Open Graph Protocol (official website)"
360
  msgstr ""
361
 
362
+ #: includes/settings-page.php:619
363
  msgid "About Twitter Cards"
364
  msgstr ""
365
 
366
+ #: includes/settings-page.php:622
367
  msgid "Plugin official URL"
368
  msgstr ""
369
 
370
+ #: includes/settings-page.php:625
371
  msgid "Author's website: Webdados"
372
  msgstr ""
373
 
374
+ #: includes/settings-page.php:628
375
  msgid "Author's Facebook page: Webdados"
376
  msgstr ""
377
 
378
+ #: includes/settings-page.php:631
379
  msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
380
  msgstr ""
381
 
382
+ #: includes/settings-page.php:638
383
  msgid "Rate this plugin"
384
  msgstr ""
385
 
386
+ #: includes/settings-page.php:640
387
  msgid "If you like this plugin,"
388
  msgstr ""
389
 
390
+ #: includes/settings-page.php:640
391
  msgid "please give it a high Rating"
392
  msgstr ""
393
 
394
+ #: includes/settings-page.php:647
395
  msgid "Useful links"
396
  msgstr ""
397
 
398
+ #: includes/settings-page.php:660
399
  msgid "Donate"
400
  msgstr ""
401
 
402
+ #: includes/settings-page.php:662
403
  msgid "If you find this plugin useful and want to make a contribution towards future development please consider making a small, or big ;-), donation."
404
  msgstr ""
405
 
406
+ #: wonderm00n-open-graph.php:579
407
  msgid "Use this image:"
408
  msgstr ""
409
 
410
+ #: wonderm00n-open-graph.php:582
411
  msgid "Upload/Choose Open Graph Image"
412
  msgstr ""
413
 
414
+ #: wonderm00n-open-graph.php:583
415
  msgid "Clear field"
416
  msgstr ""
417
 
418
+ #: wonderm00n-open-graph.php:666
419
  msgid "Use as Image Open Graph Tag"
420
  msgstr ""
421
 
422
+ #: wonderm00n-open-graph.php:685
423
  msgid "Google+"
424
  msgstr ""
425
 
426
+ #: wonderm00n-open-graph.php:689
427
  msgid "Facebook profile URL"
428
  msgstr ""
429
 
430
+ #: wonderm00n-open-graph.php:707
431
  msgid "Please ignore the (dumb) Yoast WordPress SEO warning regarding open graph issues with this plugin. Just disable WPSEO Social settings at"
432
  msgstr ""
433
 
434
+ #: wonderm00n-open-graph.php:708
435
  msgid "SEO &gt; Social"
436
  msgstr ""
437
 
438
  #. Description of the plugin/theme
439
  msgid "Inserts Facebook Open Graph, Google+ / Schema.org and Twitter Card Tags into your WordPress Blog/Website for more effective and efficient Facebook, Google+ and Twitter sharing results. You can also choose to insert the \"enclosure\" and \"media:content\" tags to the RSS feeds, so that apps like RSS Graffiti and twitterfeed post the image to Facebook correctly."
440
+ msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://blog.wonderm00n.com/2011/10/14/wordpress-plugin-simple-faceb
4
  Tags: facebook, open graph, open graph protocol, seo, share, social, meta, twitter card, twitter, schema, google+, g+, google, google plus, image, like, meta, search engine optimization
5
  Requires at least: 3.5
6
  Tested up to: 4.0.1
7
- Stable tag: 1.3.1
8
 
9
  Inserts Facebook Open Graph, Google+/Schema.org, Twitter and other Meta Tags into your WordPress Website for more efficient sharing results.
10
 
@@ -74,6 +74,10 @@ It allows the user to choose which tags are, or not, included and also the defau
74
 
75
  == Changelog ==
76
 
 
 
 
 
77
  = 1.3.1 =
78
  * Ignore images bellow 200x200 when searching images from the post content and media gallery, because Facebook also ignores them
79
 
4
  Tags: facebook, open graph, open graph protocol, seo, share, social, meta, twitter card, twitter, schema, google+, g+, google, google plus, image, like, meta, search engine optimization
5
  Requires at least: 3.5
6
  Tested up to: 4.0.1
7
+ Stable tag: 1.3.2
8
 
9
  Inserts Facebook Open Graph, Google+/Schema.org, Twitter and other Meta Tags into your WordPress Website for more efficient sharing results.
10
 
74
 
75
  == Changelog ==
76
 
77
+ = 1.3.2 =
78
+ * Added Google+ Publisher tag
79
+ * Fix on some Portuguese translation strings
80
+
81
  = 1.3.1 =
82
  * Ignore images bellow 200x200 when searching images from the post content and media gallery, because Facebook also ignores them
83
 
wonderm00n-open-graph.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
  /**
3
  * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
- * @version 1.3.1
5
  */
6
  /*
7
  Plugin Name: Facebook Open Graph, Google+ and Twitter Card Tags
8
  Plugin URI: http://www.webdados.pt/produtos-e-servicos/internet/desenvolvimento-wordpress/facebook-open-graph-meta-tags-wordpress/
9
  Description: Inserts Facebook Open Graph, Google+ / Schema.org and Twitter Card Tags into your WordPress Blog/Website for more effective and efficient Facebook, Google+ and Twitter sharing results. You can also choose to insert the "enclosure" and "media:content" tags to the RSS feeds, so that apps like RSS Graffiti and twitterfeed post the image to Facebook correctly.
10
- Version: 1.3.1
11
  Author: Webdados
12
  Author URI: http://www.webdados.pt
13
  Text Domain: wd-fb-og
@@ -16,7 +16,7 @@ Domain Path: /lang
16
 
17
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
18
 
19
- $wonderm00n_open_graph_plugin_version='1.3.1';
20
  $wonderm00n_open_graph_plugin_name='Facebook Open Graph, Google+ and Twitter Card Tags';
21
  $wonderm00n_open_graph_plugin_settings=array(
22
  'fb_app_id_show',
@@ -37,6 +37,8 @@ $wonderm00n_open_graph_plugin_settings=array(
37
  'fb_type_homepage',
38
  'fb_pubslisher_show',
39
  'fb_pubslisher',
 
 
40
  'fb_publisher_show_twitter',
41
  'fb_publisher_twitteruser',
42
  'fb_author_show',
@@ -332,6 +334,8 @@ function wonderm00n_open_graph() {
332
  if (intval($fb_type_show)==1) $html.='<meta property="og:type" content="'.trim(esc_attr($fb_type)).'"/>
333
  ';
334
  if (intval($fb_publisher_show)==1 && trim($fb_publisher)!='') $html.='<meta property="article:publisher" content="'.trim(esc_attr($fb_publisher)).'"/>
 
 
335
  ';
336
  if (intval($fb_publisher_show_twitter)==1 && trim($fb_publisher_twitteruser)!='') $html.='<meta name="twitter:site" content="@'.trim(esc_attr($fb_publisher_twitteruser)).'"/>
337
  ';
1
  <?php
2
  /**
3
  * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 1.3.2
5
  */
6
  /*
7
  Plugin Name: Facebook Open Graph, Google+ and Twitter Card Tags
8
  Plugin URI: http://www.webdados.pt/produtos-e-servicos/internet/desenvolvimento-wordpress/facebook-open-graph-meta-tags-wordpress/
9
  Description: Inserts Facebook Open Graph, Google+ / Schema.org and Twitter Card Tags into your WordPress Blog/Website for more effective and efficient Facebook, Google+ and Twitter sharing results. You can also choose to insert the "enclosure" and "media:content" tags to the RSS feeds, so that apps like RSS Graffiti and twitterfeed post the image to Facebook correctly.
10
+ Version: 1.3.2
11
  Author: Webdados
12
  Author URI: http://www.webdados.pt
13
  Text Domain: wd-fb-og
16
 
17
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
18
 
19
+ $wonderm00n_open_graph_plugin_version='1.3.2';
20
  $wonderm00n_open_graph_plugin_name='Facebook Open Graph, Google+ and Twitter Card Tags';
21
  $wonderm00n_open_graph_plugin_settings=array(
22
  'fb_app_id_show',
37
  'fb_type_homepage',
38
  'fb_pubslisher_show',
39
  'fb_pubslisher',
40
+ 'fb_publisher_show_schema',
41
+ 'fb_publisher_schema',
42
  'fb_publisher_show_twitter',
43
  'fb_publisher_twitteruser',
44
  'fb_author_show',
334
  if (intval($fb_type_show)==1) $html.='<meta property="og:type" content="'.trim(esc_attr($fb_type)).'"/>
335
  ';
336
  if (intval($fb_publisher_show)==1 && trim($fb_publisher)!='') $html.='<meta property="article:publisher" content="'.trim(esc_attr($fb_publisher)).'"/>
337
+ ';
338
+ if (intval($fb_publisher_show_schema)==1 && trim($fb_publisher_schema)!='') $html.='<link rel="publisher" href="'.trim(esc_attr($fb_publisher_schema)).'"/>
339
  ';
340
  if (intval($fb_publisher_show_twitter)==1 && trim($fb_publisher_twitteruser)!='') $html.='<meta name="twitter:site" content="@'.trim(esc_attr($fb_publisher_twitteruser)).'"/>
341
  ';