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

Version Description

  • New description field on our metabox on post/pages that will override the excerpt or content if filled
  • Load the translations from wordpress.org Glotpress and not from the local folder
  • Added the fb_og_app_id filter so that plugins or themes can override the Open Graph Facebook App ID
Download this release

Release Info

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

Code changes from version 2.0.9 to 2.1

admin/class-webdados-fb-open-graph-admin.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
@@ -83,59 +87,89 @@ class Webdados_FB_Admin {
83
  }
84
  }
85
  public function post_meta_box() {
86
- global $post;
87
  // Add an nonce field so we can check for it later.
88
  wp_nonce_field( 'webdados_fb_open_graph_custom_box', 'webdados_fb_open_graph_custom_box_nonce' );
89
  // Current image value
90
  $value_image = get_post_meta($post->ID, '_webdados_fb_open_graph_specific_image', true);
91
  ?>
92
- <label for="webdados_fb_open_graph_specific_image">
93
- <?php _e('Use this image:', 'wd-fb-og'); ?>
94
- </label>
95
- <input type="text" id="webdados_fb_open_graph_specific_image" name="webdados_fb_open_graph_specific_image" value="<?php echo esc_attr( $value_image ); ?>" size="50"/>
96
- <input id="webdados_fb_open_graph_specific_image_button" class="button" type="button" value="<?php echo esc_attr( __('Upload/Choose','wd-fb-og') ); ?>"/>
97
- <input id="webdados_fb_open_graph_specific_image_button_clear" class="button" type="button" value="<?php echo esc_attr( __('Clear field','wd-fb-og') ); ?>"/>
98
- <br/>
99
- <?php printf( __( 'Recommended size: %dx%dpx', 'wd-fb-og' ), WEBDADOS_FB_W, WEBDADOS_FB_H); ?>
100
- <script type="text/javascript">
101
- jQuery(document).ready(function($){
102
- // Instantiates the variable that holds the media library frame.
103
- var meta_image_frame;
104
- // Runs when the image button is clicked.
105
- $('#webdados_fb_open_graph_specific_image_button').click(function(e){
106
- // Prevents the default action from occuring.
107
- e.preventDefault();
108
- // If the frame already exists, re-open it.
109
- if ( meta_image_frame ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  meta_image_frame.open();
111
- return;
112
- }
113
- // Sets up the media library frame
114
- meta_image_frame = wp.media.frames.meta_image_frame = wp.media({
115
- title: "<?php _e('Select image', 'wd-fb-og'); ?>",
116
- button: { text: "<?php _e('Use this image', 'wd-fb-og'); ?>" },
117
- library: { type: 'image' }
118
  });
119
- // Runs when an image is selected.
120
- meta_image_frame.on('select', function(){
121
- // Grabs the attachment selection and creates a JSON representation of the model.
122
- var media_attachment = meta_image_frame.state().get('selection').first().toJSON();
123
- // Sends the attachment URL to our custom image input field.
124
- $('#webdados_fb_open_graph_specific_image').val(media_attachment.url);
125
  });
126
- // Opens the media library frame.
127
- meta_image_frame.open();
128
- });
129
- // Clear
130
- $('#webdados_fb_open_graph_specific_image_button_clear').click(function(e){
131
- // Prevents the default action from occuring.
132
- e.preventDefault();
133
- // Clears field
134
- $('#webdados_fb_open_graph_specific_image').val('');
135
  });
136
- });
137
- </script>
 
138
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  }
140
  public function save_meta_boxes($post_id) {
141
  global $webdados_fb_open_graph_settings;
@@ -172,10 +206,20 @@ class Webdados_FB_Admin {
172
  }
173
  if ($save) {
174
  /* OK, its safe for us to save the data now. */
175
- // Sanitize user input.
176
- $mydata = sanitize_text_field($_POST['webdados_fb_open_graph_specific_image']);
177
- // Update the meta field in the database.
178
- update_post_meta($post_id, '_webdados_fb_open_graph_specific_image', $mydata);
 
 
 
 
 
 
 
 
 
 
179
  }
180
  if ($save) {
181
  //Force Facebook update anyway - Our meta box could be hidden - Not really! We'll just update if we got our metabox
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
87
  }
88
  }
89
  public function post_meta_box() {
90
+ global $post, $webdados_fb;
91
  // Add an nonce field so we can check for it later.
92
  wp_nonce_field( 'webdados_fb_open_graph_custom_box', 'webdados_fb_open_graph_custom_box_nonce' );
93
  // Current image value
94
  $value_image = get_post_meta($post->ID, '_webdados_fb_open_graph_specific_image', true);
95
  ?>
96
+ <p>
97
+ <strong>
98
+ <label for="webdados_fb_open_graph_specific_image">
99
+ <?php _e('Use this image', 'wd-fb-og'); ?>:
100
+ </label>
101
+ </strong>
102
+ <br/>
103
+ <input type="text" id="webdados_fb_open_graph_specific_image" name="webdados_fb_open_graph_specific_image" value="<?php echo esc_attr( $value_image ); ?>" size="50"/>
104
+ <input id="webdados_fb_open_graph_specific_image_button" class="button" type="button" value="<?php echo esc_attr( __('Upload/Choose','wd-fb-og') ); ?>"/>
105
+ <input id="webdados_fb_open_graph_specific_image_button_clear" class="button" type="button" value="<?php echo esc_attr( __('Clear field','wd-fb-og') ); ?>"/>
106
+ <br/>
107
+ <?php printf( __( 'Recommended size: %dx%dpx', 'wd-fb-og' ), WEBDADOS_FB_W, WEBDADOS_FB_H); ?>
108
+ <script type="text/javascript">
109
+ jQuery(document).ready(function($){
110
+ // Instantiates the variable that holds the media library frame.
111
+ var meta_image_frame;
112
+ // Runs when the image button is clicked.
113
+ $('#webdados_fb_open_graph_specific_image_button').click(function(e){
114
+ // Prevents the default action from occuring.
115
+ e.preventDefault();
116
+ // If the frame already exists, re-open it.
117
+ if ( meta_image_frame ) {
118
+ meta_image_frame.open();
119
+ return;
120
+ }
121
+ // Sets up the media library frame
122
+ meta_image_frame = wp.media.frames.meta_image_frame = wp.media({
123
+ title: "<?php _e('Select image', 'wd-fb-og'); ?>",
124
+ button: { text: "<?php _e('Use this image', 'wd-fb-og'); ?>" },
125
+ library: { type: 'image' }
126
+ });
127
+ // Runs when an image is selected.
128
+ meta_image_frame.on('select', function(){
129
+ // Grabs the attachment selection and creates a JSON representation of the model.
130
+ var media_attachment = meta_image_frame.state().get('selection').first().toJSON();
131
+ // Sends the attachment URL to our custom image input field.
132
+ $('#webdados_fb_open_graph_specific_image').val(media_attachment.url);
133
+ });
134
+ // Opens the media library frame.
135
  meta_image_frame.open();
 
 
 
 
 
 
 
136
  });
137
+ // Clear
138
+ $('#webdados_fb_open_graph_specific_image_button_clear').click(function(e){
139
+ // Prevents the default action from occuring.
140
+ e.preventDefault();
141
+ // Clears field
142
+ $('#webdados_fb_open_graph_specific_image').val('');
143
  });
 
 
 
 
 
 
 
 
 
144
  });
145
+ </script>
146
+ </p>
147
+
148
  <?php
149
+ // Current description value
150
+ $value_description = get_post_meta($post->ID, '_webdados_fb_open_graph_specific_description', true);
151
+ ?>
152
+ <p>
153
+ <strong>
154
+ <label for="webdados_fb_open_graph_specific_description">
155
+ <?php _e('Use this description', 'wd-fb-og'); ?>:
156
+ </label>
157
+ </strong>
158
+ <br/>
159
+ <?php
160
+ if ( $webdados_fb->is_yoast_seo_active() && $this->options['fb_show_wpseoyoast']==1 ) {
161
+ _e('The Yoast SEO integration is active, so it\'s description will be used', 'wd-fb-og');
162
+ } else {
163
+ ?>
164
+ <textarea id="webdados_fb_open_graph_specific_description" name="webdados_fb_open_graph_specific_description" style="width: 100%;" rows="3"><?php echo esc_textarea(trim($value_description)); ?></textarea>
165
+ <br/>
166
+ <?php
167
+ _e('If this field is not filled, the description will be generated from the excerpt, if it exists, or from the content', 'wd-fb-og');
168
+ }
169
+ ?>
170
+ </p>
171
+ <?php
172
+
173
  }
174
  public function save_meta_boxes($post_id) {
175
  global $webdados_fb_open_graph_settings;
206
  }
207
  if ($save) {
208
  /* OK, its safe for us to save the data now. */
209
+ //Image
210
+ if ( isset($_POST['webdados_fb_open_graph_specific_image']) ) {
211
+ // Sanitize user input.
212
+ $mydata = trim( sanitize_text_field( $_POST['webdados_fb_open_graph_specific_image'] ) );
213
+ // Update the meta field in the database.
214
+ update_post_meta($post_id, '_webdados_fb_open_graph_specific_image', $mydata);
215
+ }
216
+ //Description
217
+ if ( isset($_POST['webdados_fb_open_graph_specific_description']) ) {
218
+ // Sanitize user input.
219
+ $mydata = trim( sanitize_textarea_field( $_POST['webdados_fb_open_graph_specific_description'] ) );
220
+ // Update the meta field in the database.
221
+ update_post_meta($post_id, '_webdados_fb_open_graph_specific_description', $mydata);
222
+ }
223
  }
224
  if ($save) {
225
  //Force Facebook update anyway - Our meta box could be hidden - Not really! We'll just update if we got our metabox
admin/options-page-3rdparty.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
admin/options-page-facebook.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
admin/options-page-general.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
admin/options-page-right.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  $out_link_utm='?utm_source=fb_og_wp_plugin_settings&amp;utm_medium=link&amp;utm_campaign=fb_og_wp_plugin';
4
 
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  $out_link_utm='?utm_source=fb_og_wp_plugin_settings&amp;utm_medium=link&amp;utm_campaign=fb_og_wp_plugin';
8
 
admin/options-page-schema.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
admin/options-page-seo.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
admin/options-page-twitter.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
admin/options-page.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
fbimg.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  define('WP_USE_THEMES', false);
3
  require( '../../../wp-blog-header.php' );
4
 
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
  define('WP_USE_THEMES', false);
7
  require( '../../../wp-blog-header.php' );
8
 
includes/class-webdados-fb-open-graph.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
@@ -196,7 +200,8 @@ class Webdados_FB {
196
 
197
  /* Translations */
198
  private function set_locale() {
199
- load_plugin_textdomain( 'wd-fb-og', false, dirname(plugin_basename(__FILE__)) . '/../lang/' );
 
200
  }
201
 
202
  /* Global hooks */
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
200
 
201
  /* Translations */
202
  private function set_locale() {
203
+ //load_plugin_textdomain( 'wd-fb-og', false, dirname(plugin_basename(__FILE__)) . '/../lang/' );
204
+ load_plugin_textdomain( 'wd-fb-og' );
205
  }
206
 
207
  /* Global hooks */
lang/wd-fb-og-pt_PT.mo DELETED
Binary file
lang/wd-fb-og-pt_PT.po DELETED
@@ -1,1492 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Facebook Open Graph Meta Tags for WordPress v2.0.3\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wonderm00ns-simple-"
5
- "facebook-open-graph-tags\n"
6
- "POT-Creation-Date: 2017-09-12 13:33+0100\n"
7
- "PO-Revision-Date: 2017-09-12 13:37+0100\n"
8
- "Last-Translator: Wonderm00n <wonderm00n@gmail.com>\n"
9
- "Language-Team: Webdados <info@webdados.pt>\n"
10
- "Language: pt_PT\n"
11
- "MIME-Version: 1.0\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 2.0.3\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"
19
- "X-Poedit-Basepath: ..\n"
20
- "X-Textdomain-Support: yes\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
-
23
- #: admin/class-webdados-fb-open-graph-admin.php:44
24
- msgid "Settings"
25
- msgstr "Opções"
26
-
27
- #: admin/class-webdados-fb-open-graph-admin.php:55
28
- msgid "Google+"
29
- msgstr "Google+"
30
-
31
- #: admin/class-webdados-fb-open-graph-admin.php:57
32
- #: admin/options-page-twitter.php:106
33
- msgid "Twitter username (without @)"
34
- msgstr "Utilizador do Twitter (sem @)"
35
-
36
- #: admin/class-webdados-fb-open-graph-admin.php:59
37
- msgid "Facebook profile URL"
38
- msgstr "URL de Perfil Facebook"
39
-
40
- # @ wd-fb-og
41
- #: admin/class-webdados-fb-open-graph-admin.php:93
42
- msgid "Use this image:"
43
- msgstr "Utilizar esta imagem:"
44
-
45
- #: admin/class-webdados-fb-open-graph-admin.php:96
46
- #: admin/options-page-general.php:117 admin/options-page-general.php:183
47
- msgid "Upload/Choose"
48
- msgstr "Carregar/Escolher"
49
-
50
- # @ wd-fb-og
51
- #: admin/class-webdados-fb-open-graph-admin.php:97
52
- msgid "Clear field"
53
- msgstr "Limpar campo"
54
-
55
- #: admin/class-webdados-fb-open-graph-admin.php:99
56
- #: admin/options-page-general.php:124
57
- #, php-format
58
- msgid "Recommended size: %dx%dpx"
59
- msgstr "Tamanho recomendado: %dx%dpx"
60
-
61
- #: admin/class-webdados-fb-open-graph-admin.php:115
62
- #: admin/class-webdados-fb-open-graph-admin.php:241
63
- msgid "Select image"
64
- msgstr "Selecionar imagem"
65
-
66
- #: admin/class-webdados-fb-open-graph-admin.php:116
67
- #: admin/class-webdados-fb-open-graph-admin.php:242
68
- msgid "Use this image"
69
- msgstr "Utilizar esta imagem"
70
-
71
- #: admin/class-webdados-fb-open-graph-admin.php:187
72
- msgid "URL failed:"
73
- msgstr "Falha no URL:"
74
-
75
- #: admin/class-webdados-fb-open-graph-admin.php:195
76
- msgid "Facebook returned:"
77
- msgstr "O Facebook retornou:"
78
-
79
- #: admin/class-webdados-fb-open-graph-admin.php:209
80
- msgid "Facebook Open Graph Tags cache updated/purged."
81
- msgstr "Cache das Facebook Open Graph Tags actualizada."
82
-
83
- #: admin/class-webdados-fb-open-graph-admin.php:209
84
- msgid "Share this on Facebook"
85
- msgstr "Partilhe isto no Facebook"
86
-
87
- #: admin/class-webdados-fb-open-graph-admin.php:217
88
- msgid "Error: Facebook Open Graph Tags cache NOT updated/purged."
89
- msgstr "Erro: Cache das Facebook Open Graph Tags NÃO actualizada"
90
-
91
- #: admin/options-page-3rdparty.php:9
92
- msgid "Settings for 3rd party integration with other plugins."
93
- msgstr "Opções para integração com outros plugins."
94
-
95
- #: admin/options-page-3rdparty.php:16 admin/options-page-3rdparty.php:64
96
- #: admin/options-page-3rdparty.php:116
97
- msgid "Attention"
98
- msgstr "Atenção"
99
-
100
- #: admin/options-page-3rdparty.php:18
101
- msgid ""
102
- "You currently have both Yoast SEO and All in One SEO Pack plugins active. "
103
- "This is no recommended."
104
- msgstr ""
105
- "Tem actualmente os plugins Yoast SEO e All in One SEO Pack activos em "
106
- "simultâneo. Isto não é recomendado."
107
-
108
- #: admin/options-page-3rdparty.php:50
109
- msgid "Use Title, URL and Description"
110
- msgstr "Utilizar Título, URL e Descrição"
111
-
112
- #: admin/options-page-3rdparty.php:57
113
- msgid "Use Title, Canonical URL and Description generated by Yoast SEO"
114
- msgstr "Utilizar o Título, URL Canónico e a Descrição gerados pelo Yoast SEO"
115
-
116
- #: admin/options-page-3rdparty.php:67
117
- #, php-format
118
- msgid ""
119
- "Because you are using Yoast SEO, and to avoid duplicate social tags, you "
120
- "should disable their social settings at <a href=\"%s\" target=\"_blank"
121
- "\">Yoast SEO &gt; Social</a>. If you cannot access that page, you must first "
122
- "activate the \"Advanced settings pages\" at <a href=\"%s\" target=\"_blank"
123
- "\">Yoast SEO &gt; Dashboard &gt; Features</a>."
124
- msgstr ""
125
- "Porque está a utilizar o Yoast SEO, e para evitar tags duplicadas, deve "
126
- "desabilitar as definições de redes sociais desse plugin em <a href=\"%s\" "
127
- "target=\"_blank\">SEO &gt; Redes sociais</a>. Se não consegue aceder a essa "
128
- "página, tem primeiro de activar a opção “Páginas de definições avançadas” em "
129
- "<a href=\"%s\" target=\"_blank\">SEO &gt; Painel &gt; Funcionalidades</a>."
130
-
131
- #: admin/options-page-3rdparty.php:81 admin/options-page-3rdparty.php:133
132
- #: admin/options-page-3rdparty.php:196 admin/options-page-3rdparty.php:245
133
- #: admin/options-page-3rdparty.php:283
134
- #, php-format
135
- msgid "You don't have %s installed or activated."
136
- msgstr "Não tem %s instalado ou activado."
137
-
138
- #: admin/options-page-3rdparty.php:102
139
- msgid "Use Title and Description"
140
- msgstr "Utilizar Título e Descrição"
141
-
142
- #: admin/options-page-3rdparty.php:109
143
- msgid "Use Title and Description generated by All in One SEO Pack"
144
- msgstr "Utilizar o Título e a Descrição gerados pelo All in One SEO Pack"
145
-
146
- #: admin/options-page-3rdparty.php:119
147
- #, php-format
148
- msgid ""
149
- "Because you are using All in One SEO Pack, and to avoid duplicate social "
150
- "tags, you should disable their social settings at <a href=\"%s\" target="
151
- "\"_blank\">MISSING LINK</a>."
152
- msgstr ""
153
- "Porque está a utilizar o All in One SEO Pack, e para evitar tags duplicadas, "
154
- "deve desabilitar as definições de redes sociais desse plugin em <a href=\"%s"
155
- "\" target=\"_blank”>…</a>."
156
-
157
- #: admin/options-page-3rdparty.php:149
158
- msgid ""
159
- "On the product page we will automatically set <i>og:type</i> to \"product\" "
160
- "and <i>product:price</i> to the price including tax."
161
- msgstr ""
162
- "Em páginas de produtos vamos automaticamente definir o <i>og:type</i> como "
163
- "\"product\" e <i>product:price</i> com o preço incluindo taxas."
164
-
165
- #: admin/options-page-3rdparty.php:154
166
- msgid "Use Product Gallery as Images"
167
- msgstr "Utilizar Galeria de Produto como Imagens"
168
-
169
- #: admin/options-page-3rdparty.php:161
170
- msgid ""
171
- "Sets each Product Gallery image as an additional <i>og:image</i> tag so "
172
- "that, when a product is shared on Facebook, the user is given the choice "
173
- "what image to display"
174
- msgstr ""
175
- "Define cada imagem da Galeria de Produto como uma tag <i>og:image</i> "
176
- "adicional para que, quando um produto for partilhado no Facebook, seja dada "
177
- "ao utilizador a escolha de qual imagem mostrar"
178
-
179
- #: admin/options-page-3rdparty.php:163 admin/options-page-facebook.php:24
180
- #: admin/options-page-facebook.php:52 admin/options-page-facebook.php:66
181
- #: admin/options-page-facebook.php:82 admin/options-page-facebook.php:114
182
- #: admin/options-page-facebook.php:288 admin/options-page-general.php:126
183
- #: admin/options-page-schema.php:24 admin/options-page-schema.php:38
184
- #: admin/options-page-schema.php:52 admin/options-page-schema.php:70
185
- #: admin/options-page-seo.php:32 admin/options-page-seo.php:54
186
- #: admin/options-page-twitter.php:24 admin/options-page-twitter.php:38
187
- #: admin/options-page-twitter.php:52 admin/options-page-twitter.php:66
188
- #, php-format
189
- msgid "You can change this value using the <i>%1$s</i> filter"
190
- msgstr "Pode alterar este valor utilizando o filtro <i>%1$s</i>"
191
-
192
- #: admin/options-page-3rdparty.php:168 admin/options-page-general.php:162
193
- msgid "Overlay PNG logo"
194
- msgstr "Sobrepor logotipo em PNG"
195
-
196
- #: admin/options-page-3rdparty.php:175
197
- msgid "Also overlay the PNG logo on the Product Gallery images"
198
- msgstr "Também sobrepor o logotipo em PNG nas imagens da Galeria de Produto"
199
-
200
- #: admin/options-page-3rdparty.php:180
201
- msgid "Use Category thumbnail as Image"
202
- msgstr "Utilizar miniatura de Categoria como Imagem"
203
-
204
- #: admin/options-page-3rdparty.php:187
205
- msgid ""
206
- "Recommended if you set large thumbnails for Product Categories and want to "
207
- "use them as Open Graph Images on category listing pages"
208
- msgstr ""
209
- "Recomendado se utiliza imagens de grandes dimensões nas Categorias de "
210
- "Produto e deseja usar as mesmas como \"Open Graph Image\" nas listagens de "
211
- "categorias"
212
-
213
- #: admin/options-page-3rdparty.php:216
214
- msgid "Add SubHeading to Post/Page Title"
215
- msgstr "Adicionar \"SubHeading\" ao título do Artigo/Página"
216
-
217
- #: admin/options-page-3rdparty.php:227
218
- msgid "SubHeading position"
219
- msgstr "Posição do \"SubHeading\""
220
-
221
- #: admin/options-page-3rdparty.php:230
222
- msgid "After"
223
- msgstr "Depois"
224
-
225
- #: admin/options-page-3rdparty.php:231
226
- msgid "Before"
227
- msgstr "Antes"
228
-
229
- #: admin/options-page-3rdparty.php:265
230
- msgid "Use listing details"
231
- msgstr "Utilizar detalhes dos anúncios"
232
-
233
- #: admin/options-page-3rdparty.php:272
234
- msgid ""
235
- "Use Business Directory Plugin listing details (Title, URL, Description and "
236
- "Image) to populate tags"
237
- msgstr ""
238
- "Utilizar os detalhes de anúncios do Business Directory Plugin (Título, URL, "
239
- "e Imagem) como conteúdo das tags"
240
-
241
- #: admin/options-page-3rdparty.php:274
242
- msgid ""
243
- "Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and "
244
- "\"Include Image\" options is HIGHLY recommended"
245
- msgstr ""
246
- "Activar as opções \"Incluir URL”, \"Incluir URL Canónico\", \"Incluir "
247
- "Descrição\" e \"Incluir Imagem\" é ALTAMENTE recomendado"
248
-
249
- #: admin/options-page-facebook.php:7
250
- msgid ""
251
- "Open Graph tags used by Facebook, and other social networks, to render link "
252
- "share posts."
253
- msgstr ""
254
- "Tags Open Graph utilizadas pelo Facebook, e outras redes sociais, para "
255
- "definir posts de partilha de links."
256
-
257
- #: admin/options-page-facebook.php:9
258
- msgid "Facebook Open Graph Tags"
259
- msgstr "Tags Facebook Open Graph"
260
-
261
- #: admin/options-page-facebook.php:15
262
- msgid "Include Post/Page Title"
263
- msgstr "Incluir Título do Artigo/Página"
264
-
265
- #: admin/options-page-facebook.php:29
266
- msgid "Include Site Name"
267
- msgstr "Incluir Nome do Site"
268
-
269
- #: admin/options-page-facebook.php:38 admin/options-page-seo.php:82
270
- msgid "From Settings &gt; General &gt; Site Title"
271
- msgstr "De Opções &gt;Geral &gt; Título do site"
272
-
273
- #: admin/options-page-facebook.php:43 admin/options-page-twitter.php:29
274
- msgid "Include URL"
275
- msgstr "Incluir URL"
276
-
277
- #: admin/options-page-facebook.php:57 admin/options-page-schema.php:29
278
- #: admin/options-page-twitter.php:43
279
- msgid "Include Description"
280
- msgstr "Incluir Descrição"
281
-
282
- #: admin/options-page-facebook.php:71 admin/options-page-schema.php:43
283
- #: admin/options-page-twitter.php:57
284
- msgid "Include Image"
285
- msgstr "Incluir Imagem"
286
-
287
- #: admin/options-page-facebook.php:80
288
- #, php-format
289
- msgid ""
290
- "All images must have at least 200px on both dimensions in order to Facebook "
291
- "to load them at all. %dx%dpx for optimal results. Minimum of 600x315px is "
292
- "recommended."
293
- msgstr ""
294
- "Todas as imagens devem ter pelo menos 200px em ambas as dimensões para que o "
295
- "Facebook as carregue. %dx%dpx para resultados optimizados. Um mínimo de "
296
- "600x315px é recomendado."
297
-
298
- #: admin/options-page-facebook.php:87
299
- msgid "Include Image Dimensions"
300
- msgstr "Incluir Dimensão da Imagem"
301
-
302
- #: admin/options-page-facebook.php:94 admin/options-page-facebook.php:154
303
- msgid "and"
304
- msgstr "e"
305
-
306
- #: admin/options-page-facebook.php:96
307
- msgid ""
308
- "Recommended only if Facebook is having problems loading the image when the "
309
- "post is shared for the first time, or else it adds extra unnecessary "
310
- "processing time"
311
- msgstr ""
312
- "Recomendado apenas se o Facebook tem problemas a carregar a imagem quando o "
313
- "artigo é partilhado pela primeira vez, ou em contrário só adiciona tempo de "
314
- "processamento desnecessário."
315
-
316
- #: admin/options-page-facebook.php:101 admin/options-page-schema.php:57
317
- msgid "Include Type"
318
- msgstr "Incluir Tipo"
319
-
320
- #: admin/options-page-facebook.php:110
321
- #, php-format
322
- msgid ""
323
- "Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\" for the "
324
- "homepage"
325
- msgstr ""
326
- "Será \"%1$s\" para artigos e páginas, e \"%2$s\" ou \"%3$s\" para a página "
327
- "inicial"
328
-
329
- #: admin/options-page-facebook.php:112
330
- msgid "Additional types may be used depending on 3rd party integrations"
331
- msgstr ""
332
- "Tipos adicionais podem ser utilizados dependendo de integrações com outros "
333
- "plugins"
334
-
335
- #: admin/options-page-facebook.php:119 admin/options-page-schema.php:75
336
- msgid "Homepage Type"
337
- msgstr "Tipo da Página Inicial"
338
-
339
- #: admin/options-page-facebook.php:133 admin/options-page-schema.php:107
340
- #: admin/options-page-schema.php:121 admin/options-page-twitter.php:71
341
- msgid "Include Post/Page Author"
342
- msgstr "Incluir Autor do Artigo/Página"
343
-
344
- #: admin/options-page-facebook.php:142
345
- msgid "The user's Facebook URL must be filled in on his profile"
346
- msgstr "O URL de Facebook do utilizador tem de estar preenchido no seu perfil."
347
-
348
- #: admin/options-page-facebook.php:147
349
- msgid "Include Published/Modified Dates"
350
- msgstr "Incluir Datas de Publicação/Modificação"
351
-
352
- #: admin/options-page-facebook.php:156 admin/options-page-facebook.php:170
353
- msgid "For posts only"
354
- msgstr "Apenas para artigos"
355
-
356
- #: admin/options-page-facebook.php:161
357
- msgid "Include Article Sections"
358
- msgstr "Incluir Secções de Artigos"
359
-
360
- #: admin/options-page-facebook.php:170
361
- msgid "from the categories names"
362
- msgstr "do nome das categorias"
363
-
364
- #: admin/options-page-facebook.php:175 admin/options-page-schema.php:134
365
- #: admin/options-page-seo.php:73 admin/options-page-twitter.php:85
366
- msgid "Include Publisher"
367
- msgstr "Incluir “Publisher”"
368
-
369
- #: admin/options-page-facebook.php:184 admin/options-page-facebook.php:210
370
- msgid "The website's Facebook Page"
371
- msgstr "Página de Facebook do Website"
372
-
373
- #: admin/options-page-facebook.php:189
374
- msgid "Website's Facebook Page"
375
- msgstr "Página de Facebook do Website"
376
-
377
- #: admin/options-page-facebook.php:196
378
- msgid "Facebook Page URL (with https://)"
379
- msgstr "URL da Página de Facebook (with https://)"
380
-
381
- #: admin/options-page-facebook.php:201
382
- msgid "Include Locale"
383
- msgstr "Incluir “Locale”"
384
-
385
- # @ wd-fb-og
386
- #: admin/options-page-facebook.php:215
387
- msgid "Locale"
388
- msgstr "Locale"
389
-
390
- # @ wd-fb-og
391
- #: admin/options-page-facebook.php:257
392
- msgid "WordPress current locale/language"
393
- msgstr "O \"locale\"/idíoma actual do WordPress"
394
-
395
- # @ wd-fb-og
396
- #: admin/options-page-facebook.php:278
397
- msgid "List loaded from Facebook (online)"
398
- msgstr "Lista carregada do Facebook (online)"
399
-
400
- # @ wd-fb-og
401
- #: admin/options-page-facebook.php:281
402
- msgid "List loaded from local cache (offline)"
403
- msgstr "Lista carregada da cache local (offline)"
404
-
405
- # @ wd-fb-og
406
- #: admin/options-page-facebook.php:281
407
- msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
408
- msgstr ""
409
- "Vai perder quaisquer modificações que não tenha gravado. Tem a certeza?"
410
-
411
- # @ wd-fb-og
412
- #: admin/options-page-facebook.php:281
413
- msgid "Reload from Facebook"
414
- msgstr "(Re)carregar a partir do Facebook"
415
-
416
- # @ wd-fb-og
417
- #: admin/options-page-facebook.php:283
418
- msgid "List not loaded"
419
- msgstr "Lista não carregada"
420
-
421
- #: admin/options-page-facebook.php:293
422
- msgid "Include Facebook Admin(s) ID"
423
- msgstr "Incluir ID de Admin(s) do Facebook"
424
-
425
- # @ wd-fb-og
426
- #: admin/options-page-facebook.php:305
427
- msgid "Facebook Admin(s) ID"
428
- msgstr "ID do(s) Admin(s) no Facebook"
429
-
430
- # @ wd-fb-og
431
- #: admin/options-page-facebook.php:312
432
- msgid "Comma separated if more than one"
433
- msgstr "Separados por vírgulas se mais do que um"
434
-
435
- #: admin/options-page-facebook.php:317
436
- msgid "Include Facebook Platform App ID"
437
- msgstr "Incluir \"Facebook Platform App ID\""
438
-
439
- # @ wd-fb-og
440
- #: admin/options-page-facebook.php:329
441
- msgid "Facebook Platform App ID"
442
- msgstr "Facebook Platform App ID"
443
-
444
- #: admin/options-page-facebook.php:336
445
- msgid "From your Facebook Developers dashboard"
446
- msgstr "Do seu “Facebook Developers dashboard”"
447
-
448
- #: admin/options-page-facebook.php:340
449
- msgid "Declaration Method"
450
- msgstr "Método de Declaração"
451
-
452
- #: admin/options-page-facebook.php:350
453
- msgid "or"
454
- msgstr "Ou"
455
-
456
- #: admin/options-page-facebook.php:352
457
- msgid ""
458
- "Prefix is recommended because it validates properly with the W3C validator, "
459
- "xmlns is the legacy method"
460
- msgstr ""
461
- "Prefix é recomendado porque valida correctamente no W3C validator, xmlns é o "
462
- "método antigo"
463
-
464
- #: admin/options-page-facebook.php:361
465
- msgid "Facebook Open Graph Tags cache"
466
- msgstr "Cache de Tags Facebook Open Graph"
467
-
468
- #: admin/options-page-facebook.php:367
469
- msgid "Clear cache"
470
- msgstr "Limpar cache"
471
-
472
- #: admin/options-page-facebook.php:374
473
- msgid ""
474
- "Try to clear the Facebook Open Graph Tags cache when saving a post or page, "
475
- "so the link preview on Facebook is immediately updated"
476
- msgstr ""
477
- "Tentar actualizar a cache das Tags Facebook Open Graph ao gravar um post, "
478
- "para que a pré-visualização no Facebook seja imediatamente actualizada"
479
-
480
- #: admin/options-page-facebook.php:379
481
- msgid "Suppress cache notices"
482
- msgstr "Esconder notificações de cache"
483
-
484
- #: admin/options-page-facebook.php:386
485
- msgid ""
486
- "Sometimes we aren't able to update the cache and the post author will see a "
487
- "notice if this option is not checked"
488
- msgstr ""
489
- "Por vezes não conseguimos actualizar a cache e o autor do artigo verá uma "
490
- "notificação se esta opção não estiver activa"
491
-
492
- #: admin/options-page-general.php:9
493
- msgid "General settings that will apply to all tags types."
494
- msgstr "Opções gerais que se aplicam a todos os tipos de tags"
495
-
496
- #: admin/options-page-general.php:11
497
- msgid "Description settings"
498
- msgstr "Opções de Descrição"
499
-
500
- # @ wd-fb-og
501
- #: admin/options-page-general.php:17
502
- msgid "Description maximum length"
503
- msgstr "Comprimento máximo da descrição"
504
-
505
- #: admin/options-page-general.php:19
506
- msgid "characters"
507
- msgstr "caracteres"
508
-
509
- #: admin/options-page-general.php:24
510
- msgid "0 (zero) or blank for no maximum length"
511
- msgstr "0 (zero) ou em branco para não definir máximo"
512
-
513
- #: admin/options-page-general.php:27 admin/options-page-general.php:58
514
- #: admin/options-page-general.php:89
515
- msgid "Because Yoast SEO integration is active, this value may be overwritten"
516
- msgstr ""
517
- "Porque a integração com o Coast SEO está activa, este valor pode ser "
518
- "substituído"
519
-
520
- # @ wd-fb-og
521
- #: admin/options-page-general.php:34 admin/options-page-general.php:76
522
- msgid "Homepage description"
523
- msgstr "Descrição da página inicial"
524
-
525
- # @ wd-fb-og
526
- #: admin/options-page-general.php:40
527
- msgid "The description of your front page:"
528
- msgstr "A descrição da sua página inicial:"
529
-
530
- # @ wd-fb-og
531
- #: admin/options-page-general.php:45
532
- msgid "Website tagline"
533
- msgstr "Descrição do site"
534
-
535
- # @ wd-fb-og
536
- #: admin/options-page-general.php:46 admin/options-page-general.php:77
537
- msgid "Custom text"
538
- msgstr "Texto personalizado"
539
-
540
- #: admin/options-page-general.php:64
541
- #, php-format
542
- msgid ""
543
- "WPML users: Set the main language homepage description here, save changes "
544
- "and then go to <a href=\"%s\" target=\"_blank\">WPML &gt; String "
545
- "translation</a> to set it for other languages."
546
- msgstr ""
547
- "Utilizadores WPML: Defina aqui a descrição da página inicial no idioma por "
548
- "omissão, guarde as alterações e vá a <a href=\"%s\" target=\"_blank\">WPML "
549
- "&gt; Tradução de string</a> para defini-la noutros idiomas."
550
-
551
- #: admin/options-page-general.php:73
552
- msgid "Default description"
553
- msgstr "Descrição por omissão"
554
-
555
- #: admin/options-page-general.php:86
556
- msgid ""
557
- "The default description to be used on any post / page / cpt / archive / "
558
- "search / ... that has a blank description"
559
- msgstr ""
560
- "A descrição por omissão a ser utilizada em qualquer artigo / página / cpt / "
561
- "arquivo / pesquisa / … que tenha a descrição em vazio"
562
-
563
- #: admin/options-page-general.php:95
564
- #, php-format
565
- msgid ""
566
- "WPML users: Set the main language default description here, save changes and "
567
- "then go to <a href=\"%s\" target=\"_blank\">WPML &gt; String translation</a> "
568
- "to set it for other languages."
569
- msgstr ""
570
- "Utilizadores WPML: Defina aqui a descrição por omissão no idioma por "
571
- "omissão, guarde as alterações e vá a <a href=\"%s\" target=\"_blank\">WPML "
572
- "&gt; Tradução de string</a> para defini-la noutros idiomas."
573
-
574
- #: admin/options-page-general.php:108
575
- msgid "Image settings"
576
- msgstr "Opções de Imagem"
577
-
578
- # @ wd-fb-og
579
- #: admin/options-page-general.php:114
580
- msgid "Default image"
581
- msgstr "Imagem por omissão"
582
-
583
- #: admin/options-page-general.php:122 admin/options-page-general.php:188
584
- msgid "URL (with http(s)://)"
585
- msgstr "URL (com http(s)://)"
586
-
587
- #: admin/options-page-general.php:131
588
- msgid "On Post/Page, use image from"
589
- msgstr "No Artigo/Página, usar imagem de"
590
-
591
- #: admin/options-page-general.php:135
592
- msgid "\"Open Graph Image\" custom field on the post"
593
- msgstr "Campo específico \"Open Graph Image\" no artigo"
594
-
595
- #: admin/options-page-general.php:139
596
- msgid "Post/page featured image"
597
- msgstr "Imagem de destaque do artigo/página"
598
-
599
- #: admin/options-page-general.php:143
600
- msgid "First image from the post/page content"
601
- msgstr "Primeira imagem no conteúdo do artigo/página"
602
-
603
- #: admin/options-page-general.php:147
604
- msgid "First image from the post/page media gallery"
605
- msgstr "Primeira imagem carregada na galeria multimédia do artigo/página"
606
-
607
- #: admin/options-page-general.php:151
608
- msgid "Default image specified above"
609
- msgstr "Imagem por omissão definida em cima"
610
-
611
- #: admin/options-page-general.php:157
612
- msgid ""
613
- "On posts/pages the first image found, using the priority above, will be "
614
- "used. On the homepage, archives and other website sections the default image "
615
- "is always used."
616
- msgstr ""
617
- "Em artigos/páginas a primeira imagem encontrada, utilizando a prioridade em "
618
- "cima, será utilizada. Na página inicial, arquivos e outras secções do "
619
- "website a imagem utilizada será a por omissão."
620
-
621
- #: admin/options-page-general.php:169 admin/options-page-general.php:230
622
- #: admin/options-page-schema.php:66
623
- msgid "Experimental"
624
- msgstr "Experimental"
625
-
626
- #: admin/options-page-general.php:171
627
- #, php-format
628
- msgid ""
629
- "The original image will be resized/cropped to %dx%dpx and the chosen PNG "
630
- "(that should also have this size) will be overlaid on it. It will only work "
631
- "for locally hosted images."
632
- msgstr ""
633
- "A imagem original será redimensionada/cortada para %dx%dpx e o PNG escolhido "
634
- "(que deve ter exactamente este tamanho) será sobreposto à mesma. Só "
635
- "funcionará para imagem alojadas localmente."
636
-
637
- #: admin/options-page-general.php:173
638
- #, php-format
639
- msgid ""
640
- "You can see an example of the end result <a href=\"%s\" target=\"_blank"
641
- "\">here</a>"
642
- msgstr ""
643
- "Pode ver um exemplo do resultado final <a href=\"%s\" target=\"_blank"
644
- "\">aqui</a>"
645
-
646
- #: admin/options-page-general.php:175
647
- #, php-format
648
- msgid ""
649
- "If you activate this option globally, you can disable it based on your "
650
- "conditions using the <i>%1$s</i> filter"
651
- msgstr ""
652
- "Se activar esta opção globalmente, pode desactivá-la com base nas suas "
653
- "condições utilizando o filtro <i>%1$s</i>"
654
-
655
- #: admin/options-page-general.php:180
656
- msgid "PNG logo"
657
- msgstr "Logo PNG"
658
-
659
- #: admin/options-page-general.php:190
660
- #, php-format
661
- msgid "Size: %dx%dpx"
662
- msgstr "Tamanho: %dx%dpx"
663
-
664
- # @ wd-fb-og
665
- #: admin/options-page-general.php:195
666
- msgid "Add image to RSS/RSS2 feeds"
667
- msgstr "Incluir a imagem aos feeds RSS/RSS2"
668
-
669
- # @ wd-fb-og
670
- #: admin/options-page-general.php:202
671
- msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
672
- msgstr ""
673
- "Para aplicação de posts automáticos como o RSS Graffitti, twitterfeed, etc..."
674
-
675
- #: admin/options-page-general.php:207
676
- msgid "Force getimagesize on local file"
677
- msgstr "Forçar “getimagesize” em ficheiro local"
678
-
679
- #: admin/options-page-general.php:214 admin/options-page-general.php:232
680
- msgid ""
681
- "This is an advanced option: Don't mess with this unless you know what you're "
682
- "doing"
683
- msgstr "Esta é uma opção avançada: Não a altere se não sabe o que está a fazer"
684
-
685
- #: admin/options-page-general.php:216
686
- msgid "Force getimagesize on local file even if allow_url_fopen=1"
687
- msgstr ""
688
- "Forçar o \"getimagesize\" no ficheiro local mesmo que allow_url_fopen=1"
689
-
690
- #: admin/options-page-general.php:218
691
- msgid ""
692
- "May cause problems with some multisite configurations but fixes \"HTTP "
693
- "request failed\" errors"
694
- msgstr ""
695
- "Pode causar problemas com algumas configurações “multisite” mas corrige "
696
- "erros \"HTTP request failed\""
697
-
698
- #: admin/options-page-general.php:223
699
- msgid "Do not get image size"
700
- msgstr "Não calcular tamanho da imagem"
701
-
702
- #: admin/options-page-general.php:234
703
- msgid ""
704
- "You should only activate this option if you're getting fatal errors (white "
705
- "screen of death) and only keep it active if this options does solve those "
706
- "errors"
707
- msgstr ""
708
- "Só deve activar esta opção se estiver a obter erros fatais (<em>white screen "
709
- "of death</em>) e mantê-la activa apenas se esta opção resolver esses erros"
710
-
711
- #: admin/options-page-general.php:236
712
- msgid ""
713
- "This can render the \"Add image to RSS/RSS2 feeds\" and \"Open Graph - "
714
- "Include Image Dimensions\" options useless"
715
- msgstr ""
716
- "Pode fazer com que as opções “Incluir a imagem aos feeds RSS/RSS2” e “Open "
717
- "Graph - Incluir Dimensão da Imagem” deixem de funcionar"
718
-
719
- #: admin/options-page-general.php:247
720
- msgid "URL settings"
721
- msgstr "Opções de URL"
722
-
723
- # @ wd-fb-og
724
- #: admin/options-page-general.php:253
725
- msgid "Add trailing slash at the end"
726
- msgstr "Adicionar barra invertida no final"
727
-
728
- #: admin/options-page-general.php:260
729
- msgid "If missing, a trailing slash will be added at the end"
730
- msgstr "Se em falta, será adicionada uma barra invertida no final"
731
-
732
- #: admin/options-page-general.php:262
733
- msgid "Homepage example:"
734
- msgstr "Exemplo da Página Inicial:"
735
-
736
- #: admin/options-page-general.php:271
737
- msgid "Author settings"
738
- msgstr "Opções de Autor"
739
-
740
- #: admin/options-page-general.php:277
741
- msgid "Hide Author on Pages"
742
- msgstr "Esconder Autor nas Páginas"
743
-
744
- #: admin/options-page-general.php:284
745
- msgid "Hides all Author tags on Pages"
746
- msgstr "Esconde todas as tags de Autor nas Páginas"
747
-
748
- #: admin/options-page-general.php:293
749
- msgid "Other settings"
750
- msgstr "Outras opções"
751
-
752
- #: admin/options-page-general.php:299
753
- msgid "Keep data on uninstall"
754
- msgstr "Manter opções ao desinstalar"
755
-
756
- #: admin/options-page-general.php:306
757
- msgid ""
758
- "Keep the plugin settings on the database even if the plugin is uninstalled"
759
- msgstr ""
760
- "Mantém as opções do plugin na base de dados mesmo que o plugin seja "
761
- "desinstalado"
762
-
763
- #: admin/options-page-right.php:7
764
- msgid "Test your URLs on the Facebook Debugger"
765
- msgstr "Teste os seus URLs no \"Facebook Debugger\""
766
-
767
- #: admin/options-page-right.php:11
768
- msgid "Test your URLs on the Twitter Card validator"
769
- msgstr "Teste os seus URLs no \"Twitter Card validator\""
770
-
771
- # @ wd-fb-og
772
- #: admin/options-page-right.php:15
773
- msgid "About the Open Graph Protocol (on Facebook)"
774
- msgstr "Sobre o Protocolo Open Graph (no Facebook)"
775
-
776
- # @ wd-fb-og
777
- #: admin/options-page-right.php:19
778
- msgid "The Open Graph Protocol (official website)"
779
- msgstr "O Protocolo Open Graph (website oficial)"
780
-
781
- #: admin/options-page-right.php:23
782
- msgid "About Twitter Cards"
783
- msgstr "Sobre os \"Twitter Cards\""
784
-
785
- # @ wd-fb-og
786
- #: admin/options-page-right.php:27
787
- msgid "Plugin official URL"
788
- msgstr "URL oficial do plugin"
789
-
790
- # @ wd-fb-og
791
- #: admin/options-page-right.php:31
792
- msgid "Author's website: Webdados"
793
- msgstr "Website do autor: Webdados"
794
-
795
- # @ wd-fb-og
796
- #: admin/options-page-right.php:35
797
- msgid "Author's Facebook page: Webdados"
798
- msgstr "Página Facebook do autor: Webdados"
799
-
800
- # @ wd-fb-og
801
- #: admin/options-page-right.php:39
802
- msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
803
- msgstr "Conta Twitter do autor: @Wonderm00n<br/>(fundador da Webdados)"
804
-
805
- #: admin/options-page-right.php:50
806
- msgid "About this plugin"
807
- msgstr "Sobre este plugin"
808
-
809
- #: admin/options-page-right.php:52
810
- msgid "Support forum"
811
- msgstr "Fórum de suporte"
812
-
813
- #: admin/options-page-right.php:54
814
- msgid "Premium technical support or custom WordPress development"
815
- msgstr "Suporte técnico premium ou desenvolvimento WordPress à medida"
816
-
817
- #: admin/options-page-right.php:55
818
- #, php-format
819
- msgid "Please contact %s"
820
- msgstr "Por favor contactar %s"
821
-
822
- #: admin/options-page-right.php:56
823
- msgid "Please rate our plugin at WordPress.org"
824
- msgstr "Por favor classifique o nosso plugin no WordPress.org"
825
-
826
- # @ wd-fb-og
827
- #: admin/options-page-right.php:64
828
- msgid "Useful links"
829
- msgstr "Links úteis"
830
-
831
- # @ wd-fb-og
832
- #: admin/options-page-right.php:75
833
- msgid "Donate"
834
- msgstr "Doar"
835
-
836
- # @ wd-fb-og
837
- #: admin/options-page-right.php:77
838
- msgid ""
839
- "If you find this plugin useful and want to make a contribution towards "
840
- "future development please consider making a small, or big ;-), donation."
841
- msgstr ""
842
- "Se pensa que este plugin é útil e quer fazer uma contribuição para o "
843
- "desenvolvimento no futuro, considere fazer uma pequena, ou grande ;-), "
844
- "doação."
845
-
846
- #: admin/options-page-schema.php:7
847
- msgid "Schema.org tags used by Google+ to render link share posts."
848
- msgstr ""
849
- "Tags Schema.org utilizadas pelo Google+ para definir posts de partilha de "
850
- "links."
851
-
852
- #: admin/options-page-schema.php:9
853
- msgid "Google+ / Schema.org Tags"
854
- msgstr "Tags Google+ / Schema.org"
855
-
856
- #: admin/options-page-schema.php:15 admin/options-page-twitter.php:15
857
- msgid "Include Title"
858
- msgstr "Incluir Título"
859
-
860
- #: admin/options-page-schema.php:68
861
- msgid ""
862
- "Added to the HTML tag, if you want to avoid W3C and Structured Data "
863
- "validation errors"
864
- msgstr ""
865
- "Adicionado à tag HTML, se quiser evitar erros de validação do W3C e "
866
- "“Structured Data”"
867
-
868
- #: admin/options-page-schema.php:89
869
- msgid "Default (including Post/Page) Type"
870
- msgstr "Tipo por omissão (incluindo Artigo/Página)"
871
-
872
- #: admin/options-page-schema.php:116
873
- msgid "The user's Google+ URL must be filled in on his profile"
874
- msgstr "O URL de Google+ do utilizador tem de estar preenchido no seu perfil."
875
-
876
- #: admin/options-page-schema.php:123
877
- msgid "Google doesn't use it anymore"
878
- msgstr "O Google já não usa"
879
-
880
- #: admin/options-page-schema.php:143
881
- msgid "The website's Google+ Page"
882
- msgstr "Página de Google+ do Website"
883
-
884
- #: admin/options-page-schema.php:148
885
- msgid "Website's Google+ Page"
886
- msgstr "Página Google+ do Website"
887
-
888
- #: admin/options-page-schema.php:155
889
- msgid "Google+ Page URL (with https://)"
890
- msgstr "URL da Página de Google+ (with https://)"
891
-
892
- #: admin/options-page-seo.php:7
893
- msgid ""
894
- "SEO Meta Tags that are recommended ONLY if no other plugin is setting them "
895
- "already."
896
- msgstr ""
897
- "Meta Tags SEO que são recomendadas APENAS se não houver outro plugin já a "
898
- "definir as mesmas."
899
-
900
- #: admin/options-page-seo.php:9
901
- msgid "SEO Meta Tags"
902
- msgstr "Meta Tags SEO"
903
-
904
- # @ wd-fb-og
905
- #: admin/options-page-seo.php:15
906
- msgid "Set Canonical URL"
907
- msgstr "Incluir URL Canónico"
908
-
909
- #: admin/options-page-seo.php:27 admin/options-page-seo.php:49
910
- msgid "Not recommended because you have Yoast SEO active"
911
- msgstr "Não recomendado porque tem o Yoast SEO activado"
912
-
913
- # @ wd-fb-og
914
- #: admin/options-page-seo.php:37
915
- msgid "Include Meta Description tag"
916
- msgstr "Incluir a tag \"Meta Description\""
917
-
918
- #: admin/options-page-seo.php:59
919
- msgid "Include Post/Page Author name"
920
- msgstr "Incluir nome do Autor do Artigo/Página"
921
-
922
- #: admin/options-page-seo.php:68
923
- msgid "From the user Display name"
924
- msgstr "Do nome público do utilizador"
925
-
926
- #: admin/options-page-twitter.php:7
927
- msgid "Tags used by Twitter to render their Cards."
928
- msgstr "Tags utilizadas pelo Twitter para definir os seus cartões."
929
-
930
- #: admin/options-page-twitter.php:9
931
- msgid "Twitter Card Tags"
932
- msgstr "Tags Twitter Card"
933
-
934
- #: admin/options-page-twitter.php:80
935
- msgid "The user's Twitter Username must be filled in on his profile"
936
- msgstr "O Utilizador de Twitter tem de estar preenchido no seu perfil."
937
-
938
- #: admin/options-page-twitter.php:94
939
- msgid "The website's Twitter Username"
940
- msgstr "Utilizador de Twitter do Website"
941
-
942
- #: admin/options-page-twitter.php:99
943
- msgid "Website's Twitter Username"
944
- msgstr "Utilizador Twitter do Website"
945
-
946
- #: admin/options-page-twitter.php:111
947
- msgid "Card Type"
948
- msgstr "Tipo de Cartão"
949
-
950
- #: admin/options-page-twitter.php:114
951
- msgid "Summary Card"
952
- msgstr "Resumo"
953
-
954
- #: admin/options-page-twitter.php:115
955
- msgid "Summary Card with Large Image"
956
- msgstr "Resumo com imagem grande"
957
-
958
- #: admin/options-page-twitter.php:123
959
- msgid "The type of Twitter Card shown on the timeline"
960
- msgstr "O tipo de “Twitter Card” mostrado na timeline"
961
-
962
- # @ wd-fb-og
963
- #: admin/options-page.php:12
964
- msgid ""
965
- "Please set some default values and which tags should, or should not, be "
966
- "included. It may be necessary to exclude some tags if other plugins are "
967
- "already including them."
968
- msgstr ""
969
- "Por favor defina alguns valores padrão e que tags devem, ou não, ser "
970
- "incluídas. Pode ser necessário excluir algumas tags se outros plugins já as "
971
- "estão a incluir."
972
-
973
- #: admin/options-page.php:29
974
- msgid "General"
975
- msgstr "Geral"
976
-
977
- #: admin/options-page.php:35
978
- msgid "Open Graph"
979
- msgstr "Open Graph"
980
-
981
- #: admin/options-page.php:41
982
- msgid "Cards"
983
- msgstr "Cards"
984
-
985
- #: admin/options-page.php:47
986
- msgid "Schema"
987
- msgstr "Schema"
988
-
989
- #: admin/options-page.php:53
990
- msgid "SEO tags"
991
- msgstr "Tags SEO"
992
-
993
- #: admin/options-page.php:59
994
- msgid "3rd party"
995
- msgstr "Integração"
996
-
997
- #: public/class-webdados-fb-open-graph-public.php:210
998
- msgid "Price"
999
- msgstr "Preço"
1000
-
1001
- #: public/class-webdados-fb-open-graph-public.php:280
1002
- msgid "Search for"
1003
- msgstr "Pesquisa por"
1004
-
1005
- #: public/class-webdados-fb-open-graph-public.php:289
1006
- #: public/class-webdados-fb-open-graph-public.php:293
1007
- #: public/class-webdados-fb-open-graph-public.php:297
1008
- msgid "Archives"
1009
- msgstr "Arquivos"
1010
-
1011
- #. Plugin Name of the plugin/theme
1012
- msgid "Facebook Open Graph, Google+ and Twitter Card Tags"
1013
- msgstr "Tags Facebook Open Graph, Google+ e Twitter Card"
1014
-
1015
- #. Description of the plugin/theme
1016
- msgid ""
1017
- "Inserts Facebook Open Graph, Google+/Schema.org, Twitter Card and SEO Meta "
1018
- "Tags into your WordPress Blog/Website for more effective and efficient "
1019
- "Facebook, Google+ and Twitter sharing results. You can also choose to insert "
1020
- "the \"enclosure\" and \"media:content\" tags to the RSS feeds, so that apps "
1021
- "like RSS Graffiti and Twitterfeed post the image to Facebook correctly."
1022
- msgstr ""
1023
- "Insere Tags Facebook Open Graph, Google+ / Schema.org, Twitter Card e outras "
1024
- "Meta Tags SEO ao seu Blog/Site em WordPress para uma mais efectiva e "
1025
- "eficiente partilha no Facebook, Google+ e Twitter. Pode também optar por "
1026
- "inserir as tags \"enclosure\" e \"media:content\" nos feeds RSS, para que "
1027
- "aplicações como o RSS Graffiti e o Twitterfeed façam partilha para o "
1028
- "Facebook com a imagem correcta."
1029
-
1030
- #~ msgid ""
1031
- #~ "WPML users: Set the default language description here, save changes and "
1032
- #~ "then go to <a href=\"%s\" target=\"_blank\">WPML &gt; String translation</"
1033
- #~ "a> to set it for other languages."
1034
- #~ msgstr ""
1035
- #~ "Utilizadores WPML: Defina aqui a descrição no idioma por omissão, guarde "
1036
- #~ "as alterações e vá a <a href=\"%s\" target=\"_blank\">WPML &gt; Tradução "
1037
- #~ "de string</a> para defini-la noutros idiomas."
1038
-
1039
- #~ msgid ""
1040
- #~ "Inserts Facebook Open Graph, Google+ / Schema.org and Twitter Card Tags "
1041
- #~ "into your WordPress Blog/Website for more effective and efficient "
1042
- #~ "Facebook, Google+ and Twitter sharing results. You can also choose to "
1043
- #~ "insert the \"enclosure\" and \"media:content\" tags to the RSS feeds, so "
1044
- #~ "that apps like RSS Graffiti and twitterfeed post the image to Facebook "
1045
- #~ "correctly."
1046
- #~ msgstr ""
1047
- #~ "Insere tags Facebook Open Graph, Google+ / Schema.org e Twitter Card ao "
1048
- #~ "seu Blog/Site em WordPress para uma mais efectiva e eficiente partilha no "
1049
- #~ "Facebook, Google+ e Twitter. Pode também optar por inserir as tags "
1050
- #~ "\"enclosure\" e \"media:content\" nos feeds RSS, para que aplicações como "
1051
- #~ "o RSS Graffiti and twitterfeed façam partilha para o Facebook "
1052
- #~ "correctamente."
1053
-
1054
- # @ wd-fb-og
1055
- #~ msgid "0 or blank for no maximum length"
1056
- #~ msgstr "0 ou em branco para não definir máximo"
1057
-
1058
- #~ msgid ""
1059
- #~ "Use Business Directory Plugin listing details (Title, URL, Description "
1060
- #~ "adn Image) to populate tags"
1061
- #~ msgstr ""
1062
- #~ "Utilizar os detalhes de anúncios do Business Directory Plugin (Título, "
1063
- #~ "URL, e Imagem) como conteúdo das tags"
1064
-
1065
- # @ wd-fb-og
1066
- #~ msgid "Include Facebook Platform App ID (fb:app_id) tag"
1067
- #~ msgstr "Incluir tag \"Facebook Platform App ID\" (fb:app_id)"
1068
-
1069
- # @ wd-fb-og
1070
- #~ msgid "Include Facebook Admin(s) ID (fb:admins) tag"
1071
- #~ msgstr "Incluir tag com ID dos admin de Facebook (fb:admins)"
1072
-
1073
- # @ wd-fb-og
1074
- #~ msgid "Include locale (fb:locale) tag"
1075
- #~ msgstr "Incluir tag \"Locale\" (fb:locale)"
1076
-
1077
- # @ wd-fb-og
1078
- #~ msgid "Include Site Name (og:site_name) tag"
1079
- #~ msgstr "Incluir tag Nome do site (og:site_name)"
1080
-
1081
- # @ wd-fb-og
1082
- #~ msgid "Include Post/Page title (og:title) tag"
1083
- #~ msgstr "Incluir tag Título do artigo/página (og:title)"
1084
-
1085
- # @ wd-fb-og
1086
- #~ msgid "Include Schema.org \"itemprop\" Name tag"
1087
- #~ msgstr "Incluir a tag \"itemprop Name\" do Schema.org"
1088
-
1089
- # @ wd-fb-og
1090
- #~ msgid ""
1091
- #~ "Recommended for Google+ sharing purposes if no other plugin is setting it "
1092
- #~ "already"
1093
- #~ msgstr ""
1094
- #~ "Recomendado para efeitos de partilha no Google+, se outro plugin ainda "
1095
- #~ "não a está a definir"
1096
-
1097
- # @ wd-fb-og
1098
- #~ msgid "Include Twitter Card Title tag"
1099
- #~ msgstr "Incluir tag Título do \"Twitter Card\""
1100
-
1101
- # @ wd-fb-og
1102
- #~ msgid ""
1103
- #~ "Recommended for Twitter sharing purposes if no other plugin is setting it "
1104
- #~ "already"
1105
- #~ msgstr ""
1106
- #~ "Recomendado para efeitos de partilha no Twitter, se outro plugin ainda "
1107
- #~ "não a está a definir"
1108
-
1109
- # @ wd-fb-og
1110
- #~ msgid "Include URL (og:url) tag"
1111
- #~ msgstr "Incluir tag URL (og:url)"
1112
-
1113
- #~ msgid "Include Twitter Card URL tag"
1114
- #~ msgstr "Incluir tag URL do \"Twitter Card\""
1115
-
1116
- # @ wd-fb-og
1117
- #~ msgid "On the homepage will be"
1118
- #~ msgstr "Na página inicial será"
1119
-
1120
- # @ wd-fb-og
1121
- #~ msgid "Include Type (og:type) tag"
1122
- #~ msgstr "Incluir tag Tipo (og:type)"
1123
-
1124
- # @ wd-fb-og
1125
- #~ msgid ""
1126
- #~ "Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\"; for the "
1127
- #~ "homepage"
1128
- #~ msgstr ""
1129
- #~ "Será \"%1$s\" para artigos e páginas, e \"%2$s\" ou \"%3$s\"; para a "
1130
- #~ "página inicial"
1131
-
1132
- # @ wd-fb-og
1133
- #~ msgid "Homepage type"
1134
- #~ msgstr "Tipo para a página inicial"
1135
-
1136
- # @ wd-fb-og
1137
- #~ msgid "Use"
1138
- #~ msgstr "Utilizar"
1139
-
1140
- #~ msgid ""
1141
- #~ "Include published and modified dates (article:published_time, article:"
1142
- #~ "modified_time and og:updated_time) tags"
1143
- #~ msgstr ""
1144
- #~ "Incluir tags com datas de publicação e modificação (article:"
1145
- #~ "published_time, article:modified_time e og:updated_time)"
1146
-
1147
- #~ msgid "Works for posts only"
1148
- #~ msgstr "Funciona apenas para \"artigos\" (posts)"
1149
-
1150
- # @ wd-fb-og
1151
- #~ msgid "Include article section (article:section) tags"
1152
- #~ msgstr "Incluir tags Secção do artigo (article:section)"
1153
-
1154
- #~ msgid "from the categories"
1155
- #~ msgstr "a partir das categorias"
1156
-
1157
- # @ wd-fb-og
1158
- #~ msgid "Include Publisher Page (article:publisher) tag"
1159
- #~ msgstr "Incluir tag \"Publisher\" (article:publisher)"
1160
-
1161
- #~ msgid "Links the website to the publisher Facebook Page."
1162
- #~ msgstr "Associa o website à Página Facebook do mesmo"
1163
-
1164
- # @ wd-fb-og
1165
- #~ msgid "Full URL with http://"
1166
- #~ msgstr "URL completo com http://"
1167
-
1168
- #~ msgid "Include Google+ \"publisher\" tag"
1169
- #~ msgstr "Incluir tag \"Google+ publisher\""
1170
-
1171
- #~ msgid "Links the website to the publisher Google+ Page."
1172
- #~ msgstr "Associa o website à Página Google+ do mesmo"
1173
-
1174
- # @ wd-fb-og
1175
- #~ msgid "Include Twitter Card Website Username tag"
1176
- #~ msgstr "Incluir tag Username Twitter do Website do \"Twitter Card\""
1177
-
1178
- #~ msgid "Links the website to the publisher Twitter Username."
1179
- #~ msgstr "Associa o website ao Username Twitter do mesmo"
1180
-
1181
- #~ msgid "Include Author Profile (article:author) tag"
1182
- #~ msgstr "Incluir tag \"Autor do artigo\" (article:author)"
1183
-
1184
- #~ msgid ""
1185
- #~ "Links the article to the author Facebook Profile. The user's Facebook "
1186
- #~ "profile URL must be filled in."
1187
- #~ msgstr ""
1188
- #~ "Associa o artigo ao perfil Facebook do autor do mesmo. O URL de Perfil "
1189
- #~ "Facebook do utilizador tem de estar preenchido."
1190
-
1191
- # @ wd-fb-og
1192
- #~ msgid "Include Meta Author tag"
1193
- #~ msgstr "Incluir a tag \"Meta Author\""
1194
-
1195
- #~ msgid "Sets the article author name"
1196
- #~ msgstr "Define o nome do autor do artigo"
1197
-
1198
- #~ msgid "Include Google+ link rel \"author\" tag"
1199
- #~ msgstr "Incluir tag \"Google+ link rel author\""
1200
-
1201
- #~ msgid ""
1202
- #~ "Links the article to the author Google+ Profile (authorship). The user's "
1203
- #~ "Google+ profile URL must be filled in."
1204
- #~ msgstr ""
1205
- #~ "Associa o artigo ao perfil Google+ do autor do mesmo. O URL de Perfil "
1206
- #~ "Google+ do utilizador tem de estar preenchido."
1207
-
1208
- #~ msgid "Include Twitter Card Creator tag"
1209
- #~ msgstr "Incluir tag Autor do \"Twitter Card\""
1210
-
1211
- #~ msgid ""
1212
- #~ "Links the article to the author Twitter profile. The user's Twitter user "
1213
- #~ "must be filled in."
1214
- #~ msgstr ""
1215
- #~ "Associa o artigo ao perfil Twitter do autor do mesmo. O Utilizador "
1216
- #~ "Twitter tem de estar preenchido."
1217
-
1218
- #~ msgid "Hide author on pages"
1219
- #~ msgstr "Não mostrar autor nas páginas"
1220
-
1221
- #~ msgid "Hides all author tags on pages."
1222
- #~ msgstr "Esconder todas as tags de autor nas páginas."
1223
-
1224
- # @ wd-fb-og
1225
- #~ msgid "Include Description (og:description) tag"
1226
- #~ msgstr "Incluir tag Descrição (og:description)"
1227
-
1228
- # @ wd-fb-og
1229
- #~ msgid ""
1230
- #~ "Recommended for SEO purposes if no other plugin is setting it already"
1231
- #~ msgstr ""
1232
- #~ "Recomendado para efeitos de Optimização para Motores de Busca, se outro "
1233
- #~ "plugin ainda não a está a definir"
1234
-
1235
- # @ wd-fb-og
1236
- #~ msgid "Include Schema.org \"itemprop\" Description tag"
1237
- #~ msgstr "Incluir a tag \"itemprop Description\" do Schema.org"
1238
-
1239
- # @ wd-fb-og
1240
- #~ msgid "Include Twitter Card Description tag"
1241
- #~ msgstr "Incluir tag Descrição do \"Twitter Card\""
1242
-
1243
- #~ msgid ""
1244
- #~ "WPML users: Set the default language description here, save changes and "
1245
- #~ "then go to <a href=\"%s\">WPML &gt; String translation</a> to set it for "
1246
- #~ "other languages."
1247
- #~ msgstr ""
1248
- #~ "Utilizadores WPML: Defina aqui a descrição no idioma por omissão, guarde "
1249
- #~ "as alterações e vá a <a href=\"%s\">WPML &gt; Tradução de storing</a> "
1250
- #~ "para defini-la para outros idiomas."
1251
-
1252
- # @ wd-fb-og
1253
- #~ msgid "Include Image (og:image) tag"
1254
- #~ msgstr "Incluir tag Imagem (og:image)"
1255
-
1256
- # @ wd-fb-og
1257
- #~ msgid ""
1258
- #~ "All images MUST have at least 200px on both dimensions in order to "
1259
- #~ "Facebook to load them at all.<br/>1200x630px for optimal results.<br/"
1260
- #~ ">Minimum of 600x315px is recommended."
1261
- #~ msgstr ""
1262
- #~ "Todas as imagens TÊM de ter pelo menos 200px em ambas as dimensões para "
1263
- #~ "que o Facebook as carregue.<br/>1200x630px para resultados optimizados."
1264
- #~ "<br/>Um mínimo de 600x315px é recomendado."
1265
-
1266
- #~ msgid "Include Image size (og:image:width and og:image:height) tags"
1267
- #~ msgstr ""
1268
- #~ "Incluir tags de Tamanho de Imagem (og:image:width e og:image:height)"
1269
-
1270
- #~ msgid ""
1271
- #~ "Recommended only if Facebook is having problems loading the image when "
1272
- #~ "the post is shared for the first time."
1273
- #~ msgstr ""
1274
- #~ "Recomendado apenas se o Facebook tem problemas a carregar a imagem quando "
1275
- #~ "o artigo é partilhado pela primeira vez."
1276
-
1277
- # @ wd-fb-og
1278
- #~ msgid "Include Schema.org \"itemprop\" Image tag"
1279
- #~ msgstr "Incluir a tag \"itemprop Image\" do Schema.org"
1280
-
1281
- # @ wd-fb-og
1282
- #~ msgid "Include Twitter Card Image tag"
1283
- #~ msgstr "Incluir tag Imagem do \"Twitter Card\""
1284
-
1285
- # @ wd-fb-og
1286
- #~ msgid "Recommended size: 1200x630px"
1287
- #~ msgstr "Tamanho recomendado: 1200x630px"
1288
-
1289
- # @ wd-fb-og
1290
- #~ msgid "On posts/pages"
1291
- #~ msgstr "Nos artigos/páginas"
1292
-
1293
- # @ wd-fb-og
1294
- #~ msgid ""
1295
- #~ "Image will be fetched from the specific \"Open Graph Image\" custom field "
1296
- #~ "on the post"
1297
- #~ msgstr ""
1298
- #~ "A imagem utilizada será a definida no campo específico \"Open Graph Image"
1299
- #~ "\" no artigo"
1300
-
1301
- # @ wd-fb-og
1302
- #~ msgid ""
1303
- #~ "If it's not set, image will be fetched from post/page featured/thumbnail "
1304
- #~ "picture"
1305
- #~ msgstr ""
1306
- #~ "Se não definida, a imagem utilizada será a imagem de destaque do artigo/"
1307
- #~ "página"
1308
-
1309
- # @ wd-fb-og
1310
- #~ msgid "If it doesn't exist, use the first image from the post/page content"
1311
- #~ msgstr ""
1312
- #~ "Se não existir, será utilizada a primeira imagem no conteúdo do artigo/"
1313
- #~ "página"
1314
-
1315
- # @ wd-fb-og
1316
- #~ msgid ""
1317
- #~ "If it doesn't exist, use first image from the post/page media gallery"
1318
- #~ msgstr ""
1319
- #~ "Se não existir, será usada a primeira imagem na galeria multimédia do "
1320
- #~ "artigo/página"
1321
-
1322
- # @ wd-fb-og
1323
- #~ msgid "If it doesn't exist, use the default image above"
1324
- #~ msgstr "Se não existir, utilizar a imagem por omissão em cima"
1325
-
1326
- #~ msgid ""
1327
- #~ "Image will be resized/cropped to 1200x630 and the transparent PNG chosen "
1328
- #~ "bellow (that should also have this size) will be overlaid on it. It will "
1329
- #~ "only work for locally hosted images."
1330
- #~ msgstr ""
1331
- #~ "A imagem será redimensionada e cortada para 1200x630 e o PNG transparente "
1332
- #~ "escolhido (que deve também ter este tamanho) será sobreposto à mesma. Só "
1333
- #~ "funciona para imagens alojadas localmente."
1334
-
1335
- #~ msgid "Size: 1200x630px"
1336
- #~ msgstr "Tamanho: 1200x630px"
1337
-
1338
- #~ msgid "Twitter Card Type"
1339
- #~ msgstr "Tipo de cartão do Twitter"
1340
-
1341
- # @ wd-fb-og
1342
- #~ msgid "3rd Party Integration"
1343
- #~ msgstr "Integração com outros plugins"
1344
-
1345
- # @ wd-fb-og
1346
- #~ msgid ""
1347
- #~ "It's HIGHLY recommended to go to <a href=\"admin.php?page=wpseo_social\" "
1348
- #~ "target=\"_blank\">SEO &gt; Social</a> and disable \"Add Open Graph meta "
1349
- #~ "data\", \"Add Twitter card meta data\" and \"Add Google+ specific post "
1350
- #~ "meta data\""
1351
- #~ msgstr ""
1352
- #~ "É ALTAMENTE recomendado ir a <a href=\"admin.php?page=wpseo_social\">SEO "
1353
- #~ "&gt; Social</a> e desactivar \"Adiciona meta dados Open Graph \", "
1354
- #~ "\"Acrescentar metadados Twitter card\" e \"Add Google+ specific post meta "
1355
- #~ "data\""
1356
-
1357
- #~ msgid ""
1358
- #~ "even if you don't enable integration bellow. You will get duplicate tags "
1359
- #~ "if you don't do this."
1360
- #~ msgstr ""
1361
- #~ "mesmo que não active a integração em baixo. Obterá tags duplicadas se não "
1362
- #~ "o fizer."
1363
-
1364
- # @ wd-fb-og
1365
- #~ msgid "Use title, url (canonical) and description from WPSEO"
1366
- #~ msgstr "Utilizar título, url (canónico) e descrição do WPSEO"
1367
-
1368
- #~ msgid ""
1369
- #~ "On product pages we will automatically set og:type to \"product\" and add "
1370
- #~ "the price including tax to the product:price tags."
1371
- #~ msgstr ""
1372
- #~ "Em páginas de produtos vamos automaticamente definir o og:type como "
1373
- #~ "\"product\" e adicionar o preço com taxas às tags product:price."
1374
-
1375
- #~ msgid "Use Product Category thumbnail as Open Graph Image"
1376
- #~ msgstr ""
1377
- #~ "Utilizar miniaturas de Categorias de Produto como \"Open Graph Image\""
1378
-
1379
- #~ msgid ""
1380
- #~ "Recommended if you set large thumbnails for Product Categories and want "
1381
- #~ "to use them as Open Graph Images on listing pages"
1382
- #~ msgstr ""
1383
- #~ "Recomendado se utiliza imagens de grandes dimensões como miniatura das "
1384
- #~ "Categorias de Produto e deseja usar as mesmas como \"Open Graph Image\" "
1385
- #~ "nas listagens de categorias de produto."
1386
-
1387
- #~ msgid "Use Product Gallery images as additional Open Graph Images"
1388
- #~ msgstr ""
1389
- #~ "Utilizar as imagens da Galeria de Produtos como \"Open Graph Image\" "
1390
- #~ "adicionais"
1391
-
1392
- #~ msgid ""
1393
- #~ "Uses additional Product Gallery images so, when the product is shared on "
1394
- #~ "Facebook, the user can choose what image to use"
1395
- #~ msgstr ""
1396
- #~ "Utiliza as imagens da Galeria de Produtos de forma que, quando o mesmo é "
1397
- #~ "partilhado no Facebook, o utilizador possa escolher que imagem usar para "
1398
- #~ "a partilha"
1399
-
1400
- # @ wd-fb-og
1401
- #~ msgid "Add SubHeading to Post/Page title"
1402
- #~ msgstr "Adicionar \"SubHeading\" ao título do artigo/página"
1403
-
1404
- # @ wd-fb-og
1405
- #~ msgid "Use BDP listing contents as OG tags"
1406
- #~ msgstr "Utilizar o conteúdo dos anúncios BDP como tags OG"
1407
-
1408
- # @ wd-fb-og
1409
- #~ msgid ""
1410
- #~ "Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" "
1411
- #~ "and \"Include Image\" options above is HIGHLY recommended"
1412
- #~ msgstr ""
1413
- #~ "Activar as opções \"Incluir tag URL (og:url)\", \"Incluir a tag URL "
1414
- #~ "Canónico\", \"Incluir tag Descrição (og:description)\" e \"Incluir tag "
1415
- #~ "Imagem (og:image)\" é ALTAMENTE recomendado"
1416
-
1417
- # @ wd-fb-og
1418
- #~ msgid "You don't have any compatible 3rd Party plugin installed/active."
1419
- #~ msgstr "Não tem nenhum plugin compatível instalado/activo."
1420
-
1421
- # @ wd-fb-og
1422
- #~ msgid "This plugin is currently compatible with:"
1423
- #~ msgstr "Este plugin é actualmente compatível com:"
1424
-
1425
- #~ msgid "Advanced settings"
1426
- #~ msgstr "Definições avançadas"
1427
-
1428
- #~ msgid "Don't mess with this unless you know what you're doing"
1429
- #~ msgstr "Não mexer nestas configurações se não souber o que está a fazer"
1430
-
1431
- #~ msgid ""
1432
- #~ "May cause problems with some multisite configurations but fix \"HTTP "
1433
- #~ "request failed\" errors"
1434
- #~ msgstr ""
1435
- #~ "Pode causar problemas com algumas configurações \"multisite\" mas corrige "
1436
- #~ "erros \"HTTP request failed\""
1437
-
1438
- #~ msgid "Try to update Facebook Open Graph Tags cache when saving the post"
1439
- #~ msgstr ""
1440
- #~ "Tentar actualizar a cache das Facebook Open Graph Tags ao gravar um post"
1441
-
1442
- #~ msgid "Supress Facebook Open Graph Tags cache updated notice"
1443
- #~ msgstr ""
1444
- #~ "Esconder notificação de actualização de cache das Facebook Open Graph Tags"
1445
-
1446
- #~ msgid "Save Changes"
1447
- #~ msgstr "Guardar alterações"
1448
-
1449
- # @ wd-fb-og
1450
- #~ msgid "Test your URLs at Facebook URL Linter / Debugger"
1451
- #~ msgstr "Teste os seus URLs no \"Facebook URL Linter / Debugger\""
1452
-
1453
- #~ msgid "Test (and request approval for) your URLs at Twitter Card validator"
1454
- #~ msgstr "Teste (e solicite aprovação dos) URLs no \"Twitter Card validator\""
1455
-
1456
- # @ wd-fb-og
1457
- #~ msgid "Upload/Choose Open Graph Image"
1458
- #~ msgstr "Carregar/Escolher Imagem Open Graph"
1459
-
1460
- # @ wd-fb-og
1461
- #~ msgid "Use as Image Open Graph Tag"
1462
- #~ msgstr "Utilizar como Imagem Open Graph"
1463
-
1464
- #~ msgid ""
1465
- #~ "Please ignore the (dumb) Yoast WordPress SEO warning regarding open graph "
1466
- #~ "issues with this plugin. Just disable WPSEO Social settings at"
1467
- #~ msgstr ""
1468
- #~ "Por favor ignore o (parvo) aviso do plugin Yoast WordPress SEO sobre "
1469
- #~ "problemas \"open graph\" com este plugin. Simplesmente inactive as "
1470
- #~ "definições Social do WPSEO em"
1471
-
1472
- #~ msgid "SEO &gt; Social"
1473
- #~ msgstr "SEO &gt; Social"
1474
-
1475
- #~ msgid ""
1476
- #~ "Image will be resized/cropped to 1200x630 and the PNG chosen bellow will "
1477
- #~ "be overlaid"
1478
- #~ msgstr ""
1479
- #~ "A imagem será redimensionada e cortada para 1200x630 e o PNG escolhido "
1480
- #~ "será sobreposto à mesma"
1481
-
1482
- # @ wd-fb-og
1483
- #~ msgid "Rate this plugin"
1484
- #~ msgstr "Avalie este plugin"
1485
-
1486
- # @ wd-fb-og
1487
- #~ msgid "If you like this plugin,"
1488
- #~ msgstr "Se gosta deste plugin,"
1489
-
1490
- # @ wd-fb-og
1491
- #~ msgid "please give it a high Rating"
1492
- #~ msgstr "dê-lhe uma nota elevada"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/wd-fb-og.pot CHANGED
@@ -4,7 +4,7 @@ msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Facebook Open Graph, Google+ and Twitter Card Tags "
6
  "2.0.3\n"
7
- "POT-Creation-Date: 2017-09-12 13:33+0100\n"
8
  "PO-Revision-Date: 2016-09-26 14:52+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
@@ -21,96 +21,107 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: admin/class-webdados-fb-open-graph-admin.php:44
25
  msgid "Settings"
26
  msgstr ""
27
 
28
- #: admin/class-webdados-fb-open-graph-admin.php:55
29
  msgid "Google+"
30
  msgstr ""
31
 
32
- #: admin/class-webdados-fb-open-graph-admin.php:57
33
- #: admin/options-page-twitter.php:106
34
  msgid "Twitter username (without @)"
35
  msgstr ""
36
 
37
- #: admin/class-webdados-fb-open-graph-admin.php:59
38
  msgid "Facebook profile URL"
39
  msgstr ""
40
 
41
- #: admin/class-webdados-fb-open-graph-admin.php:93
42
- msgid "Use this image:"
 
 
43
  msgstr ""
44
 
45
- #: admin/class-webdados-fb-open-graph-admin.php:96
46
- #: admin/options-page-general.php:117 admin/options-page-general.php:183
47
  msgid "Upload/Choose"
48
  msgstr ""
49
 
50
- #: admin/class-webdados-fb-open-graph-admin.php:97
51
  msgid "Clear field"
52
  msgstr ""
53
 
54
- #: admin/class-webdados-fb-open-graph-admin.php:99
55
- #: admin/options-page-general.php:124
56
  #, php-format
57
  msgid "Recommended size: %dx%dpx"
58
  msgstr ""
59
 
60
- #: admin/class-webdados-fb-open-graph-admin.php:115
61
- #: admin/class-webdados-fb-open-graph-admin.php:241
62
  msgid "Select image"
63
  msgstr ""
64
 
65
- #: admin/class-webdados-fb-open-graph-admin.php:116
66
- #: admin/class-webdados-fb-open-graph-admin.php:242
67
- msgid "Use this image"
 
 
 
 
 
 
 
 
 
68
  msgstr ""
69
 
70
- #: admin/class-webdados-fb-open-graph-admin.php:187
71
  msgid "URL failed:"
72
  msgstr ""
73
 
74
- #: admin/class-webdados-fb-open-graph-admin.php:195
75
  msgid "Facebook returned:"
76
  msgstr ""
77
 
78
- #: admin/class-webdados-fb-open-graph-admin.php:209
79
  msgid "Facebook Open Graph Tags cache updated/purged."
80
  msgstr ""
81
 
82
- #: admin/class-webdados-fb-open-graph-admin.php:209
83
  msgid "Share this on Facebook"
84
  msgstr ""
85
 
86
- #: admin/class-webdados-fb-open-graph-admin.php:217
87
  msgid "Error: Facebook Open Graph Tags cache NOT updated/purged."
88
  msgstr ""
89
 
90
- #: admin/options-page-3rdparty.php:9
91
  msgid "Settings for 3rd party integration with other plugins."
92
  msgstr ""
93
 
94
- #: admin/options-page-3rdparty.php:16 admin/options-page-3rdparty.php:64
95
- #: admin/options-page-3rdparty.php:116
96
  msgid "Attention"
97
  msgstr ""
98
 
99
- #: admin/options-page-3rdparty.php:18
100
  msgid ""
101
  "You currently have both Yoast SEO and All in One SEO Pack plugins active. "
102
  "This is no recommended."
103
  msgstr ""
104
 
105
- #: admin/options-page-3rdparty.php:50
106
  msgid "Use Title, URL and Description"
107
  msgstr ""
108
 
109
- #: admin/options-page-3rdparty.php:57
110
  msgid "Use Title, Canonical URL and Description generated by Yoast SEO"
111
  msgstr ""
112
 
113
- #: admin/options-page-3rdparty.php:67
114
  #, php-format
115
  msgid ""
116
  "Because you are using Yoast SEO, and to avoid duplicate social tags, you "
@@ -120,22 +131,22 @@ msgid ""
120
  "\">Yoast SEO &gt; Dashboard &gt; Features</a>."
121
  msgstr ""
122
 
123
- #: admin/options-page-3rdparty.php:81 admin/options-page-3rdparty.php:133
124
- #: admin/options-page-3rdparty.php:196 admin/options-page-3rdparty.php:245
125
- #: admin/options-page-3rdparty.php:283
126
  #, php-format
127
  msgid "You don't have %s installed or activated."
128
  msgstr ""
129
 
130
- #: admin/options-page-3rdparty.php:102
131
  msgid "Use Title and Description"
132
  msgstr ""
133
 
134
- #: admin/options-page-3rdparty.php:109
135
  msgid "Use Title and Description generated by All in One SEO Pack"
136
  msgstr ""
137
 
138
- #: admin/options-page-3rdparty.php:119
139
  #, php-format
140
  msgid ""
141
  "Because you are using All in One SEO Pack, and to avoid duplicate social "
@@ -143,123 +154,123 @@ msgid ""
143
  "\"_blank\">MISSING LINK</a>."
144
  msgstr ""
145
 
146
- #: admin/options-page-3rdparty.php:149
147
  msgid ""
148
  "On the product page we will automatically set <i>og:type</i> to \"product\" "
149
  "and <i>product:price</i> to the price including tax."
150
  msgstr ""
151
 
152
- #: admin/options-page-3rdparty.php:154
153
  msgid "Use Product Gallery as Images"
154
  msgstr ""
155
 
156
- #: admin/options-page-3rdparty.php:161
157
  msgid ""
158
  "Sets each Product Gallery image as an additional <i>og:image</i> tag so "
159
  "that, when a product is shared on Facebook, the user is given the choice "
160
  "what image to display"
161
  msgstr ""
162
 
163
- #: admin/options-page-3rdparty.php:163 admin/options-page-facebook.php:24
164
- #: admin/options-page-facebook.php:52 admin/options-page-facebook.php:66
165
- #: admin/options-page-facebook.php:82 admin/options-page-facebook.php:114
166
- #: admin/options-page-facebook.php:288 admin/options-page-general.php:126
167
- #: admin/options-page-schema.php:24 admin/options-page-schema.php:38
168
- #: admin/options-page-schema.php:52 admin/options-page-schema.php:70
169
- #: admin/options-page-seo.php:32 admin/options-page-seo.php:54
170
- #: admin/options-page-twitter.php:24 admin/options-page-twitter.php:38
171
- #: admin/options-page-twitter.php:52 admin/options-page-twitter.php:66
172
  #, php-format
173
  msgid "You can change this value using the <i>%1$s</i> filter"
174
  msgstr ""
175
 
176
- #: admin/options-page-3rdparty.php:168 admin/options-page-general.php:162
177
  msgid "Overlay PNG logo"
178
  msgstr ""
179
 
180
- #: admin/options-page-3rdparty.php:175
181
  msgid "Also overlay the PNG logo on the Product Gallery images"
182
  msgstr ""
183
 
184
- #: admin/options-page-3rdparty.php:180
185
  msgid "Use Category thumbnail as Image"
186
  msgstr ""
187
 
188
- #: admin/options-page-3rdparty.php:187
189
  msgid ""
190
  "Recommended if you set large thumbnails for Product Categories and want to "
191
  "use them as Open Graph Images on category listing pages"
192
  msgstr ""
193
 
194
- #: admin/options-page-3rdparty.php:216
195
  msgid "Add SubHeading to Post/Page Title"
196
  msgstr ""
197
 
198
- #: admin/options-page-3rdparty.php:227
199
  msgid "SubHeading position"
200
  msgstr ""
201
 
202
- #: admin/options-page-3rdparty.php:230
203
  msgid "After"
204
  msgstr ""
205
 
206
- #: admin/options-page-3rdparty.php:231
207
  msgid "Before"
208
  msgstr ""
209
 
210
- #: admin/options-page-3rdparty.php:265
211
  msgid "Use listing details"
212
  msgstr ""
213
 
214
- #: admin/options-page-3rdparty.php:272
215
  msgid ""
216
  "Use Business Directory Plugin listing details (Title, URL, Description and "
217
  "Image) to populate tags"
218
  msgstr ""
219
 
220
- #: admin/options-page-3rdparty.php:274
221
  msgid ""
222
  "Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and "
223
  "\"Include Image\" options is HIGHLY recommended"
224
  msgstr ""
225
 
226
- #: admin/options-page-facebook.php:7
227
  msgid ""
228
  "Open Graph tags used by Facebook, and other social networks, to render link "
229
  "share posts."
230
  msgstr ""
231
 
232
- #: admin/options-page-facebook.php:9
233
  msgid "Facebook Open Graph Tags"
234
  msgstr ""
235
 
236
- #: admin/options-page-facebook.php:15
237
  msgid "Include Post/Page Title"
238
  msgstr ""
239
 
240
- #: admin/options-page-facebook.php:29
241
  msgid "Include Site Name"
242
  msgstr ""
243
 
244
- #: admin/options-page-facebook.php:38 admin/options-page-seo.php:82
245
  msgid "From Settings &gt; General &gt; Site Title"
246
  msgstr ""
247
 
248
- #: admin/options-page-facebook.php:43 admin/options-page-twitter.php:29
249
  msgid "Include URL"
250
  msgstr ""
251
 
252
- #: admin/options-page-facebook.php:57 admin/options-page-schema.php:29
253
- #: admin/options-page-twitter.php:43
254
  msgid "Include Description"
255
  msgstr ""
256
 
257
- #: admin/options-page-facebook.php:71 admin/options-page-schema.php:43
258
- #: admin/options-page-twitter.php:57
259
  msgid "Include Image"
260
  msgstr ""
261
 
262
- #: admin/options-page-facebook.php:80
263
  #, php-format
264
  msgid ""
265
  "All images must have at least 200px on both dimensions in order to Facebook "
@@ -267,218 +278,218 @@ msgid ""
267
  "recommended."
268
  msgstr ""
269
 
270
- #: admin/options-page-facebook.php:87
271
  msgid "Include Image Dimensions"
272
  msgstr ""
273
 
274
- #: admin/options-page-facebook.php:94 admin/options-page-facebook.php:154
275
  msgid "and"
276
  msgstr ""
277
 
278
- #: admin/options-page-facebook.php:96
279
  msgid ""
280
  "Recommended only if Facebook is having problems loading the image when the "
281
  "post is shared for the first time, or else it adds extra unnecessary "
282
  "processing time"
283
  msgstr ""
284
 
285
- #: admin/options-page-facebook.php:101 admin/options-page-schema.php:57
286
  msgid "Include Type"
287
  msgstr ""
288
 
289
- #: admin/options-page-facebook.php:110
290
  #, php-format
291
  msgid ""
292
  "Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\" for the "
293
  "homepage"
294
  msgstr ""
295
 
296
- #: admin/options-page-facebook.php:112
297
  msgid "Additional types may be used depending on 3rd party integrations"
298
  msgstr ""
299
 
300
- #: admin/options-page-facebook.php:119 admin/options-page-schema.php:75
301
  msgid "Homepage Type"
302
  msgstr ""
303
 
304
- #: admin/options-page-facebook.php:133 admin/options-page-schema.php:107
305
- #: admin/options-page-schema.php:121 admin/options-page-twitter.php:71
306
  msgid "Include Post/Page Author"
307
  msgstr ""
308
 
309
- #: admin/options-page-facebook.php:142
310
  msgid "The user's Facebook URL must be filled in on his profile"
311
  msgstr ""
312
 
313
- #: admin/options-page-facebook.php:147
314
  msgid "Include Published/Modified Dates"
315
  msgstr ""
316
 
317
- #: admin/options-page-facebook.php:156 admin/options-page-facebook.php:170
318
  msgid "For posts only"
319
  msgstr ""
320
 
321
- #: admin/options-page-facebook.php:161
322
  msgid "Include Article Sections"
323
  msgstr ""
324
 
325
- #: admin/options-page-facebook.php:170
326
  msgid "from the categories names"
327
  msgstr ""
328
 
329
- #: admin/options-page-facebook.php:175 admin/options-page-schema.php:134
330
- #: admin/options-page-seo.php:73 admin/options-page-twitter.php:85
331
  msgid "Include Publisher"
332
  msgstr ""
333
 
334
- #: admin/options-page-facebook.php:184 admin/options-page-facebook.php:210
335
  msgid "The website's Facebook Page"
336
  msgstr ""
337
 
338
- #: admin/options-page-facebook.php:189
339
  msgid "Website's Facebook Page"
340
  msgstr ""
341
 
342
- #: admin/options-page-facebook.php:196
343
  msgid "Facebook Page URL (with https://)"
344
  msgstr ""
345
 
346
- #: admin/options-page-facebook.php:201
347
  msgid "Include Locale"
348
  msgstr ""
349
 
350
- #: admin/options-page-facebook.php:215
351
  msgid "Locale"
352
  msgstr ""
353
 
354
- #: admin/options-page-facebook.php:257
355
  msgid "WordPress current locale/language"
356
  msgstr ""
357
 
358
- #: admin/options-page-facebook.php:278
359
  msgid "List loaded from Facebook (online)"
360
  msgstr ""
361
 
362
- #: admin/options-page-facebook.php:281
363
  msgid "List loaded from local cache (offline)"
364
  msgstr ""
365
 
366
- #: admin/options-page-facebook.php:281
367
  msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
368
  msgstr ""
369
 
370
- #: admin/options-page-facebook.php:281
371
  msgid "Reload from Facebook"
372
  msgstr ""
373
 
374
- #: admin/options-page-facebook.php:283
375
  msgid "List not loaded"
376
  msgstr ""
377
 
378
- #: admin/options-page-facebook.php:293
379
  msgid "Include Facebook Admin(s) ID"
380
  msgstr ""
381
 
382
- #: admin/options-page-facebook.php:305
383
  msgid "Facebook Admin(s) ID"
384
  msgstr ""
385
 
386
- #: admin/options-page-facebook.php:312
387
  msgid "Comma separated if more than one"
388
  msgstr ""
389
 
390
- #: admin/options-page-facebook.php:317
391
  msgid "Include Facebook Platform App ID"
392
  msgstr ""
393
 
394
- #: admin/options-page-facebook.php:329
395
  msgid "Facebook Platform App ID"
396
  msgstr ""
397
 
398
- #: admin/options-page-facebook.php:336
399
  msgid "From your Facebook Developers dashboard"
400
  msgstr ""
401
 
402
- #: admin/options-page-facebook.php:340
403
  msgid "Declaration Method"
404
  msgstr ""
405
 
406
- #: admin/options-page-facebook.php:350
407
  msgid "or"
408
  msgstr ""
409
 
410
- #: admin/options-page-facebook.php:352
411
  msgid ""
412
  "Prefix is recommended because it validates properly with the W3C validator, "
413
  "xmlns is the legacy method"
414
  msgstr ""
415
 
416
- #: admin/options-page-facebook.php:361
417
  msgid "Facebook Open Graph Tags cache"
418
  msgstr ""
419
 
420
- #: admin/options-page-facebook.php:367
421
  msgid "Clear cache"
422
  msgstr ""
423
 
424
- #: admin/options-page-facebook.php:374
425
  msgid ""
426
  "Try to clear the Facebook Open Graph Tags cache when saving a post or page, "
427
  "so the link preview on Facebook is immediately updated"
428
  msgstr ""
429
 
430
- #: admin/options-page-facebook.php:379
431
  msgid "Suppress cache notices"
432
  msgstr ""
433
 
434
- #: admin/options-page-facebook.php:386
435
  msgid ""
436
  "Sometimes we aren't able to update the cache and the post author will see a "
437
  "notice if this option is not checked"
438
  msgstr ""
439
 
440
- #: admin/options-page-general.php:9
441
  msgid "General settings that will apply to all tags types."
442
  msgstr ""
443
 
444
- #: admin/options-page-general.php:11
445
  msgid "Description settings"
446
  msgstr ""
447
 
448
- #: admin/options-page-general.php:17
449
  msgid "Description maximum length"
450
  msgstr ""
451
 
452
- #: admin/options-page-general.php:19
453
  msgid "characters"
454
  msgstr ""
455
 
456
- #: admin/options-page-general.php:24
457
  msgid "0 (zero) or blank for no maximum length"
458
  msgstr ""
459
 
460
- #: admin/options-page-general.php:27 admin/options-page-general.php:58
461
- #: admin/options-page-general.php:89
462
  msgid "Because Yoast SEO integration is active, this value may be overwritten"
463
  msgstr ""
464
 
465
- #: admin/options-page-general.php:34 admin/options-page-general.php:76
466
  msgid "Homepage description"
467
  msgstr ""
468
 
469
- #: admin/options-page-general.php:40
470
  msgid "The description of your front page:"
471
  msgstr ""
472
 
473
- #: admin/options-page-general.php:45
474
  msgid "Website tagline"
475
  msgstr ""
476
 
477
- #: admin/options-page-general.php:46 admin/options-page-general.php:77
478
  msgid "Custom text"
479
  msgstr ""
480
 
481
- #: admin/options-page-general.php:64
482
  #, php-format
483
  msgid ""
484
  "WPML users: Set the main language homepage description here, save changes "
@@ -486,17 +497,17 @@ msgid ""
486
  "translation</a> to set it for other languages."
487
  msgstr ""
488
 
489
- #: admin/options-page-general.php:73
490
  msgid "Default description"
491
  msgstr ""
492
 
493
- #: admin/options-page-general.php:86
494
  msgid ""
495
  "The default description to be used on any post / page / cpt / archive / "
496
  "search / ... that has a blank description"
497
  msgstr ""
498
 
499
- #: admin/options-page-general.php:95
500
  #, php-format
501
  msgid ""
502
  "WPML users: Set the main language default description here, save changes and "
@@ -504,55 +515,55 @@ msgid ""
504
  "to set it for other languages."
505
  msgstr ""
506
 
507
- #: admin/options-page-general.php:108
508
  msgid "Image settings"
509
  msgstr ""
510
 
511
- #: admin/options-page-general.php:114
512
  msgid "Default image"
513
  msgstr ""
514
 
515
- #: admin/options-page-general.php:122 admin/options-page-general.php:188
516
  msgid "URL (with http(s)://)"
517
  msgstr ""
518
 
519
- #: admin/options-page-general.php:131
520
  msgid "On Post/Page, use image from"
521
  msgstr ""
522
 
523
- #: admin/options-page-general.php:135
524
  msgid "\"Open Graph Image\" custom field on the post"
525
  msgstr ""
526
 
527
- #: admin/options-page-general.php:139
528
  msgid "Post/page featured image"
529
  msgstr ""
530
 
531
- #: admin/options-page-general.php:143
532
  msgid "First image from the post/page content"
533
  msgstr ""
534
 
535
- #: admin/options-page-general.php:147
536
  msgid "First image from the post/page media gallery"
537
  msgstr ""
538
 
539
- #: admin/options-page-general.php:151
540
  msgid "Default image specified above"
541
  msgstr ""
542
 
543
- #: admin/options-page-general.php:157
544
  msgid ""
545
  "On posts/pages the first image found, using the priority above, will be "
546
  "used. On the homepage, archives and other website sections the default image "
547
  "is always used."
548
  msgstr ""
549
 
550
- #: admin/options-page-general.php:169 admin/options-page-general.php:230
551
- #: admin/options-page-schema.php:66
552
  msgid "Experimental"
553
  msgstr ""
554
 
555
- #: admin/options-page-general.php:171
556
  #, php-format
557
  msgid ""
558
  "The original image will be resized/cropped to %dx%dpx and the chosen PNG "
@@ -560,336 +571,336 @@ msgid ""
560
  "for locally hosted images."
561
  msgstr ""
562
 
563
- #: admin/options-page-general.php:173
564
  #, php-format
565
  msgid ""
566
  "You can see an example of the end result <a href=\"%s\" target=\"_blank"
567
  "\">here</a>"
568
  msgstr ""
569
 
570
- #: admin/options-page-general.php:175
571
  #, php-format
572
  msgid ""
573
  "If you activate this option globally, you can disable it based on your "
574
  "conditions using the <i>%1$s</i> filter"
575
  msgstr ""
576
 
577
- #: admin/options-page-general.php:180
578
  msgid "PNG logo"
579
  msgstr ""
580
 
581
- #: admin/options-page-general.php:190
582
  #, php-format
583
  msgid "Size: %dx%dpx"
584
  msgstr ""
585
 
586
- #: admin/options-page-general.php:195
587
  msgid "Add image to RSS/RSS2 feeds"
588
  msgstr ""
589
 
590
- #: admin/options-page-general.php:202
591
  msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
592
  msgstr ""
593
 
594
- #: admin/options-page-general.php:207
595
  msgid "Force getimagesize on local file"
596
  msgstr ""
597
 
598
- #: admin/options-page-general.php:214 admin/options-page-general.php:232
599
  msgid ""
600
  "This is an advanced option: Don't mess with this unless you know what you're "
601
  "doing"
602
  msgstr ""
603
 
604
- #: admin/options-page-general.php:216
605
  msgid "Force getimagesize on local file even if allow_url_fopen=1"
606
  msgstr ""
607
 
608
- #: admin/options-page-general.php:218
609
  msgid ""
610
  "May cause problems with some multisite configurations but fixes \"HTTP "
611
  "request failed\" errors"
612
  msgstr ""
613
 
614
- #: admin/options-page-general.php:223
615
  msgid "Do not get image size"
616
  msgstr ""
617
 
618
- #: admin/options-page-general.php:234
619
  msgid ""
620
  "You should only activate this option if you're getting fatal errors (white "
621
  "screen of death) and only keep it active if this options does solve those "
622
  "errors"
623
  msgstr ""
624
 
625
- #: admin/options-page-general.php:236
626
  msgid ""
627
  "This can render the \"Add image to RSS/RSS2 feeds\" and \"Open Graph - "
628
  "Include Image Dimensions\" options useless"
629
  msgstr ""
630
 
631
- #: admin/options-page-general.php:247
632
  msgid "URL settings"
633
  msgstr ""
634
 
635
- #: admin/options-page-general.php:253
636
  msgid "Add trailing slash at the end"
637
  msgstr ""
638
 
639
- #: admin/options-page-general.php:260
640
  msgid "If missing, a trailing slash will be added at the end"
641
  msgstr ""
642
 
643
- #: admin/options-page-general.php:262
644
  msgid "Homepage example:"
645
  msgstr ""
646
 
647
- #: admin/options-page-general.php:271
648
  msgid "Author settings"
649
  msgstr ""
650
 
651
- #: admin/options-page-general.php:277
652
  msgid "Hide Author on Pages"
653
  msgstr ""
654
 
655
- #: admin/options-page-general.php:284
656
  msgid "Hides all Author tags on Pages"
657
  msgstr ""
658
 
659
- #: admin/options-page-general.php:293
660
  msgid "Other settings"
661
  msgstr ""
662
 
663
- #: admin/options-page-general.php:299
664
  msgid "Keep data on uninstall"
665
  msgstr ""
666
 
667
- #: admin/options-page-general.php:306
668
  msgid ""
669
  "Keep the plugin settings on the database even if the plugin is uninstalled"
670
  msgstr ""
671
 
672
- #: admin/options-page-right.php:7
673
  msgid "Test your URLs on the Facebook Debugger"
674
  msgstr ""
675
 
676
- #: admin/options-page-right.php:11
677
  msgid "Test your URLs on the Twitter Card validator"
678
  msgstr ""
679
 
680
- #: admin/options-page-right.php:15
681
  msgid "About the Open Graph Protocol (on Facebook)"
682
  msgstr ""
683
 
684
- #: admin/options-page-right.php:19
685
  msgid "The Open Graph Protocol (official website)"
686
  msgstr ""
687
 
688
- #: admin/options-page-right.php:23
689
  msgid "About Twitter Cards"
690
  msgstr ""
691
 
692
- #: admin/options-page-right.php:27
693
  msgid "Plugin official URL"
694
  msgstr ""
695
 
696
- #: admin/options-page-right.php:31
697
  msgid "Author's website: Webdados"
698
  msgstr ""
699
 
700
- #: admin/options-page-right.php:35
701
  msgid "Author's Facebook page: Webdados"
702
  msgstr ""
703
 
704
- #: admin/options-page-right.php:39
705
  msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
706
  msgstr ""
707
 
708
- #: admin/options-page-right.php:50
709
  msgid "About this plugin"
710
  msgstr ""
711
 
712
- #: admin/options-page-right.php:52
713
  msgid "Support forum"
714
  msgstr ""
715
 
716
- #: admin/options-page-right.php:54
717
  msgid "Premium technical support or custom WordPress development"
718
  msgstr ""
719
 
720
- #: admin/options-page-right.php:55
721
  #, php-format
722
  msgid "Please contact %s"
723
  msgstr ""
724
 
725
- #: admin/options-page-right.php:56
726
  msgid "Please rate our plugin at WordPress.org"
727
  msgstr ""
728
 
729
- #: admin/options-page-right.php:64
730
  msgid "Useful links"
731
  msgstr ""
732
 
733
- #: admin/options-page-right.php:75
734
  msgid "Donate"
735
  msgstr ""
736
 
737
- #: admin/options-page-right.php:77
738
  msgid ""
739
  "If you find this plugin useful and want to make a contribution towards "
740
  "future development please consider making a small, or big ;-), donation."
741
  msgstr ""
742
 
743
- #: admin/options-page-schema.php:7
744
  msgid "Schema.org tags used by Google+ to render link share posts."
745
  msgstr ""
746
 
747
- #: admin/options-page-schema.php:9
748
  msgid "Google+ / Schema.org Tags"
749
  msgstr ""
750
 
751
- #: admin/options-page-schema.php:15 admin/options-page-twitter.php:15
752
  msgid "Include Title"
753
  msgstr ""
754
 
755
- #: admin/options-page-schema.php:68
756
  msgid ""
757
  "Added to the HTML tag, if you want to avoid W3C and Structured Data "
758
  "validation errors"
759
  msgstr ""
760
 
761
- #: admin/options-page-schema.php:89
762
  msgid "Default (including Post/Page) Type"
763
  msgstr ""
764
 
765
- #: admin/options-page-schema.php:116
766
  msgid "The user's Google+ URL must be filled in on his profile"
767
  msgstr ""
768
 
769
- #: admin/options-page-schema.php:123
770
  msgid "Google doesn't use it anymore"
771
  msgstr ""
772
 
773
- #: admin/options-page-schema.php:143
774
  msgid "The website's Google+ Page"
775
  msgstr ""
776
 
777
- #: admin/options-page-schema.php:148
778
  msgid "Website's Google+ Page"
779
  msgstr ""
780
 
781
- #: admin/options-page-schema.php:155
782
  msgid "Google+ Page URL (with https://)"
783
  msgstr ""
784
 
785
- #: admin/options-page-seo.php:7
786
  msgid ""
787
  "SEO Meta Tags that are recommended ONLY if no other plugin is setting them "
788
  "already."
789
  msgstr ""
790
 
791
- #: admin/options-page-seo.php:9
792
  msgid "SEO Meta Tags"
793
  msgstr ""
794
 
795
- #: admin/options-page-seo.php:15
796
  msgid "Set Canonical URL"
797
  msgstr ""
798
 
799
- #: admin/options-page-seo.php:27 admin/options-page-seo.php:49
800
  msgid "Not recommended because you have Yoast SEO active"
801
  msgstr ""
802
 
803
- #: admin/options-page-seo.php:37
804
  msgid "Include Meta Description tag"
805
  msgstr ""
806
 
807
- #: admin/options-page-seo.php:59
808
  msgid "Include Post/Page Author name"
809
  msgstr ""
810
 
811
- #: admin/options-page-seo.php:68
812
  msgid "From the user Display name"
813
  msgstr ""
814
 
815
- #: admin/options-page-twitter.php:7
816
  msgid "Tags used by Twitter to render their Cards."
817
  msgstr ""
818
 
819
- #: admin/options-page-twitter.php:9
820
  msgid "Twitter Card Tags"
821
  msgstr ""
822
 
823
- #: admin/options-page-twitter.php:80
824
  msgid "The user's Twitter Username must be filled in on his profile"
825
  msgstr ""
826
 
827
- #: admin/options-page-twitter.php:94
828
  msgid "The website's Twitter Username"
829
  msgstr ""
830
 
831
- #: admin/options-page-twitter.php:99
832
  msgid "Website's Twitter Username"
833
  msgstr ""
834
 
835
- #: admin/options-page-twitter.php:111
836
  msgid "Card Type"
837
  msgstr ""
838
 
839
- #: admin/options-page-twitter.php:114
840
  msgid "Summary Card"
841
  msgstr ""
842
 
843
- #: admin/options-page-twitter.php:115
844
  msgid "Summary Card with Large Image"
845
  msgstr ""
846
 
847
- #: admin/options-page-twitter.php:123
848
  msgid "The type of Twitter Card shown on the timeline"
849
  msgstr ""
850
 
851
- #: admin/options-page.php:12
852
  msgid ""
853
  "Please set some default values and which tags should, or should not, be "
854
  "included. It may be necessary to exclude some tags if other plugins are "
855
  "already including them."
856
  msgstr ""
857
 
858
- #: admin/options-page.php:29
859
  msgid "General"
860
  msgstr ""
861
 
862
- #: admin/options-page.php:35
863
  msgid "Open Graph"
864
  msgstr ""
865
 
866
- #: admin/options-page.php:41
867
  msgid "Cards"
868
  msgstr ""
869
 
870
- #: admin/options-page.php:47
871
  msgid "Schema"
872
  msgstr ""
873
 
874
- #: admin/options-page.php:53
875
  msgid "SEO tags"
876
  msgstr ""
877
 
878
- #: admin/options-page.php:59
879
  msgid "3rd party"
880
  msgstr ""
881
 
882
- #: public/class-webdados-fb-open-graph-public.php:210
883
  msgid "Price"
884
  msgstr ""
885
 
886
- #: public/class-webdados-fb-open-graph-public.php:280
887
  msgid "Search for"
888
  msgstr ""
889
 
890
- #: public/class-webdados-fb-open-graph-public.php:289
891
- #: public/class-webdados-fb-open-graph-public.php:293
892
- #: public/class-webdados-fb-open-graph-public.php:297
893
  msgid "Archives"
894
  msgstr ""
895
 
@@ -897,6 +908,12 @@ msgstr ""
897
  msgid "Facebook Open Graph, Google+ and Twitter Card Tags"
898
  msgstr ""
899
 
 
 
 
 
 
 
900
  #. Description of the plugin/theme
901
  msgid ""
902
  "Inserts Facebook Open Graph, Google+/Schema.org, Twitter Card and SEO Meta "
@@ -905,3 +922,11 @@ msgid ""
905
  "the \"enclosure\" and \"media:content\" tags to the RSS feeds, so that apps "
906
  "like RSS Graffiti and Twitterfeed post the image to Facebook correctly."
907
  msgstr ""
 
 
 
 
 
 
 
 
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Facebook Open Graph, Google+ and Twitter Card Tags "
6
  "2.0.3\n"
7
+ "POT-Creation-Date: 2017-09-19 12:32+0100\n"
8
  "PO-Revision-Date: 2016-09-26 14:52+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: admin/class-webdados-fb-open-graph-admin.php:48
25
  msgid "Settings"
26
  msgstr ""
27
 
28
+ #: admin/class-webdados-fb-open-graph-admin.php:59
29
  msgid "Google+"
30
  msgstr ""
31
 
32
+ #: admin/class-webdados-fb-open-graph-admin.php:61
33
+ #: admin/options-page-twitter.php:110
34
  msgid "Twitter username (without @)"
35
  msgstr ""
36
 
37
+ #: admin/class-webdados-fb-open-graph-admin.php:63
38
  msgid "Facebook profile URL"
39
  msgstr ""
40
 
41
+ #: admin/class-webdados-fb-open-graph-admin.php:99
42
+ #: admin/class-webdados-fb-open-graph-admin.php:124
43
+ #: admin/class-webdados-fb-open-graph-admin.php:286
44
+ msgid "Use this image"
45
  msgstr ""
46
 
47
+ #: admin/class-webdados-fb-open-graph-admin.php:104
48
+ #: admin/options-page-general.php:121 admin/options-page-general.php:187
49
  msgid "Upload/Choose"
50
  msgstr ""
51
 
52
+ #: admin/class-webdados-fb-open-graph-admin.php:105
53
  msgid "Clear field"
54
  msgstr ""
55
 
56
+ #: admin/class-webdados-fb-open-graph-admin.php:107
57
+ #: admin/options-page-general.php:128
58
  #, php-format
59
  msgid "Recommended size: %dx%dpx"
60
  msgstr ""
61
 
62
+ #: admin/class-webdados-fb-open-graph-admin.php:123
63
+ #: admin/class-webdados-fb-open-graph-admin.php:285
64
  msgid "Select image"
65
  msgstr ""
66
 
67
+ #: admin/class-webdados-fb-open-graph-admin.php:155
68
+ msgid "Use this description"
69
+ msgstr ""
70
+
71
+ #: admin/class-webdados-fb-open-graph-admin.php:161
72
+ msgid "The Yoast SEO integration is active, so it's description will be used"
73
+ msgstr ""
74
+
75
+ #: admin/class-webdados-fb-open-graph-admin.php:167
76
+ msgid ""
77
+ "If this field is not filled, the description will be generated from the "
78
+ "excerpt, if it exists, or from the content"
79
  msgstr ""
80
 
81
+ #: admin/class-webdados-fb-open-graph-admin.php:231
82
  msgid "URL failed:"
83
  msgstr ""
84
 
85
+ #: admin/class-webdados-fb-open-graph-admin.php:239
86
  msgid "Facebook returned:"
87
  msgstr ""
88
 
89
+ #: admin/class-webdados-fb-open-graph-admin.php:253
90
  msgid "Facebook Open Graph Tags cache updated/purged."
91
  msgstr ""
92
 
93
+ #: admin/class-webdados-fb-open-graph-admin.php:253
94
  msgid "Share this on Facebook"
95
  msgstr ""
96
 
97
+ #: admin/class-webdados-fb-open-graph-admin.php:261
98
  msgid "Error: Facebook Open Graph Tags cache NOT updated/purged."
99
  msgstr ""
100
 
101
+ #: admin/options-page-3rdparty.php:13
102
  msgid "Settings for 3rd party integration with other plugins."
103
  msgstr ""
104
 
105
+ #: admin/options-page-3rdparty.php:20 admin/options-page-3rdparty.php:68
106
+ #: admin/options-page-3rdparty.php:120
107
  msgid "Attention"
108
  msgstr ""
109
 
110
+ #: admin/options-page-3rdparty.php:22
111
  msgid ""
112
  "You currently have both Yoast SEO and All in One SEO Pack plugins active. "
113
  "This is no recommended."
114
  msgstr ""
115
 
116
+ #: admin/options-page-3rdparty.php:54
117
  msgid "Use Title, URL and Description"
118
  msgstr ""
119
 
120
+ #: admin/options-page-3rdparty.php:61
121
  msgid "Use Title, Canonical URL and Description generated by Yoast SEO"
122
  msgstr ""
123
 
124
+ #: admin/options-page-3rdparty.php:71
125
  #, php-format
126
  msgid ""
127
  "Because you are using Yoast SEO, and to avoid duplicate social tags, you "
131
  "\">Yoast SEO &gt; Dashboard &gt; Features</a>."
132
  msgstr ""
133
 
134
+ #: admin/options-page-3rdparty.php:85 admin/options-page-3rdparty.php:137
135
+ #: admin/options-page-3rdparty.php:200 admin/options-page-3rdparty.php:249
136
+ #: admin/options-page-3rdparty.php:287
137
  #, php-format
138
  msgid "You don't have %s installed or activated."
139
  msgstr ""
140
 
141
+ #: admin/options-page-3rdparty.php:106
142
  msgid "Use Title and Description"
143
  msgstr ""
144
 
145
+ #: admin/options-page-3rdparty.php:113
146
  msgid "Use Title and Description generated by All in One SEO Pack"
147
  msgstr ""
148
 
149
+ #: admin/options-page-3rdparty.php:123
150
  #, php-format
151
  msgid ""
152
  "Because you are using All in One SEO Pack, and to avoid duplicate social "
154
  "\"_blank\">MISSING LINK</a>."
155
  msgstr ""
156
 
157
+ #: admin/options-page-3rdparty.php:153
158
  msgid ""
159
  "On the product page we will automatically set <i>og:type</i> to \"product\" "
160
  "and <i>product:price</i> to the price including tax."
161
  msgstr ""
162
 
163
+ #: admin/options-page-3rdparty.php:158
164
  msgid "Use Product Gallery as Images"
165
  msgstr ""
166
 
167
+ #: admin/options-page-3rdparty.php:165
168
  msgid ""
169
  "Sets each Product Gallery image as an additional <i>og:image</i> tag so "
170
  "that, when a product is shared on Facebook, the user is given the choice "
171
  "what image to display"
172
  msgstr ""
173
 
174
+ #: admin/options-page-3rdparty.php:167 admin/options-page-facebook.php:28
175
+ #: admin/options-page-facebook.php:56 admin/options-page-facebook.php:70
176
+ #: admin/options-page-facebook.php:86 admin/options-page-facebook.php:118
177
+ #: admin/options-page-facebook.php:292 admin/options-page-general.php:130
178
+ #: admin/options-page-schema.php:28 admin/options-page-schema.php:42
179
+ #: admin/options-page-schema.php:56 admin/options-page-schema.php:74
180
+ #: admin/options-page-seo.php:36 admin/options-page-seo.php:58
181
+ #: admin/options-page-twitter.php:28 admin/options-page-twitter.php:42
182
+ #: admin/options-page-twitter.php:56 admin/options-page-twitter.php:70
183
  #, php-format
184
  msgid "You can change this value using the <i>%1$s</i> filter"
185
  msgstr ""
186
 
187
+ #: admin/options-page-3rdparty.php:172 admin/options-page-general.php:166
188
  msgid "Overlay PNG logo"
189
  msgstr ""
190
 
191
+ #: admin/options-page-3rdparty.php:179
192
  msgid "Also overlay the PNG logo on the Product Gallery images"
193
  msgstr ""
194
 
195
+ #: admin/options-page-3rdparty.php:184
196
  msgid "Use Category thumbnail as Image"
197
  msgstr ""
198
 
199
+ #: admin/options-page-3rdparty.php:191
200
  msgid ""
201
  "Recommended if you set large thumbnails for Product Categories and want to "
202
  "use them as Open Graph Images on category listing pages"
203
  msgstr ""
204
 
205
+ #: admin/options-page-3rdparty.php:220
206
  msgid "Add SubHeading to Post/Page Title"
207
  msgstr ""
208
 
209
+ #: admin/options-page-3rdparty.php:231
210
  msgid "SubHeading position"
211
  msgstr ""
212
 
213
+ #: admin/options-page-3rdparty.php:234
214
  msgid "After"
215
  msgstr ""
216
 
217
+ #: admin/options-page-3rdparty.php:235
218
  msgid "Before"
219
  msgstr ""
220
 
221
+ #: admin/options-page-3rdparty.php:269
222
  msgid "Use listing details"
223
  msgstr ""
224
 
225
+ #: admin/options-page-3rdparty.php:276
226
  msgid ""
227
  "Use Business Directory Plugin listing details (Title, URL, Description and "
228
  "Image) to populate tags"
229
  msgstr ""
230
 
231
+ #: admin/options-page-3rdparty.php:278
232
  msgid ""
233
  "Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and "
234
  "\"Include Image\" options is HIGHLY recommended"
235
  msgstr ""
236
 
237
+ #: admin/options-page-facebook.php:11
238
  msgid ""
239
  "Open Graph tags used by Facebook, and other social networks, to render link "
240
  "share posts."
241
  msgstr ""
242
 
243
+ #: admin/options-page-facebook.php:13
244
  msgid "Facebook Open Graph Tags"
245
  msgstr ""
246
 
247
+ #: admin/options-page-facebook.php:19
248
  msgid "Include Post/Page Title"
249
  msgstr ""
250
 
251
+ #: admin/options-page-facebook.php:33
252
  msgid "Include Site Name"
253
  msgstr ""
254
 
255
+ #: admin/options-page-facebook.php:42 admin/options-page-seo.php:86
256
  msgid "From Settings &gt; General &gt; Site Title"
257
  msgstr ""
258
 
259
+ #: admin/options-page-facebook.php:47 admin/options-page-twitter.php:33
260
  msgid "Include URL"
261
  msgstr ""
262
 
263
+ #: admin/options-page-facebook.php:61 admin/options-page-schema.php:33
264
+ #: admin/options-page-twitter.php:47
265
  msgid "Include Description"
266
  msgstr ""
267
 
268
+ #: admin/options-page-facebook.php:75 admin/options-page-schema.php:47
269
+ #: admin/options-page-twitter.php:61
270
  msgid "Include Image"
271
  msgstr ""
272
 
273
+ #: admin/options-page-facebook.php:84
274
  #, php-format
275
  msgid ""
276
  "All images must have at least 200px on both dimensions in order to Facebook "
278
  "recommended."
279
  msgstr ""
280
 
281
+ #: admin/options-page-facebook.php:91
282
  msgid "Include Image Dimensions"
283
  msgstr ""
284
 
285
+ #: admin/options-page-facebook.php:98 admin/options-page-facebook.php:158
286
  msgid "and"
287
  msgstr ""
288
 
289
+ #: admin/options-page-facebook.php:100
290
  msgid ""
291
  "Recommended only if Facebook is having problems loading the image when the "
292
  "post is shared for the first time, or else it adds extra unnecessary "
293
  "processing time"
294
  msgstr ""
295
 
296
+ #: admin/options-page-facebook.php:105 admin/options-page-schema.php:61
297
  msgid "Include Type"
298
  msgstr ""
299
 
300
+ #: admin/options-page-facebook.php:114
301
  #, php-format
302
  msgid ""
303
  "Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\" for the "
304
  "homepage"
305
  msgstr ""
306
 
307
+ #: admin/options-page-facebook.php:116
308
  msgid "Additional types may be used depending on 3rd party integrations"
309
  msgstr ""
310
 
311
+ #: admin/options-page-facebook.php:123 admin/options-page-schema.php:79
312
  msgid "Homepage Type"
313
  msgstr ""
314
 
315
+ #: admin/options-page-facebook.php:137 admin/options-page-schema.php:111
316
+ #: admin/options-page-schema.php:125 admin/options-page-twitter.php:75
317
  msgid "Include Post/Page Author"
318
  msgstr ""
319
 
320
+ #: admin/options-page-facebook.php:146
321
  msgid "The user's Facebook URL must be filled in on his profile"
322
  msgstr ""
323
 
324
+ #: admin/options-page-facebook.php:151
325
  msgid "Include Published/Modified Dates"
326
  msgstr ""
327
 
328
+ #: admin/options-page-facebook.php:160 admin/options-page-facebook.php:174
329
  msgid "For posts only"
330
  msgstr ""
331
 
332
+ #: admin/options-page-facebook.php:165
333
  msgid "Include Article Sections"
334
  msgstr ""
335
 
336
+ #: admin/options-page-facebook.php:174
337
  msgid "from the categories names"
338
  msgstr ""
339
 
340
+ #: admin/options-page-facebook.php:179 admin/options-page-schema.php:138
341
+ #: admin/options-page-seo.php:77 admin/options-page-twitter.php:89
342
  msgid "Include Publisher"
343
  msgstr ""
344
 
345
+ #: admin/options-page-facebook.php:188 admin/options-page-facebook.php:214
346
  msgid "The website's Facebook Page"
347
  msgstr ""
348
 
349
+ #: admin/options-page-facebook.php:193
350
  msgid "Website's Facebook Page"
351
  msgstr ""
352
 
353
+ #: admin/options-page-facebook.php:200
354
  msgid "Facebook Page URL (with https://)"
355
  msgstr ""
356
 
357
+ #: admin/options-page-facebook.php:205
358
  msgid "Include Locale"
359
  msgstr ""
360
 
361
+ #: admin/options-page-facebook.php:219
362
  msgid "Locale"
363
  msgstr ""
364
 
365
+ #: admin/options-page-facebook.php:261
366
  msgid "WordPress current locale/language"
367
  msgstr ""
368
 
369
+ #: admin/options-page-facebook.php:282
370
  msgid "List loaded from Facebook (online)"
371
  msgstr ""
372
 
373
+ #: admin/options-page-facebook.php:285
374
  msgid "List loaded from local cache (offline)"
375
  msgstr ""
376
 
377
+ #: admin/options-page-facebook.php:285
378
  msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
379
  msgstr ""
380
 
381
+ #: admin/options-page-facebook.php:285
382
  msgid "Reload from Facebook"
383
  msgstr ""
384
 
385
+ #: admin/options-page-facebook.php:287
386
  msgid "List not loaded"
387
  msgstr ""
388
 
389
+ #: admin/options-page-facebook.php:297
390
  msgid "Include Facebook Admin(s) ID"
391
  msgstr ""
392
 
393
+ #: admin/options-page-facebook.php:309
394
  msgid "Facebook Admin(s) ID"
395
  msgstr ""
396
 
397
+ #: admin/options-page-facebook.php:316
398
  msgid "Comma separated if more than one"
399
  msgstr ""
400
 
401
+ #: admin/options-page-facebook.php:321
402
  msgid "Include Facebook Platform App ID"
403
  msgstr ""
404
 
405
+ #: admin/options-page-facebook.php:333
406
  msgid "Facebook Platform App ID"
407
  msgstr ""
408
 
409
+ #: admin/options-page-facebook.php:340
410
  msgid "From your Facebook Developers dashboard"
411
  msgstr ""
412
 
413
+ #: admin/options-page-facebook.php:344
414
  msgid "Declaration Method"
415
  msgstr ""
416
 
417
+ #: admin/options-page-facebook.php:354
418
  msgid "or"
419
  msgstr ""
420
 
421
+ #: admin/options-page-facebook.php:356
422
  msgid ""
423
  "Prefix is recommended because it validates properly with the W3C validator, "
424
  "xmlns is the legacy method"
425
  msgstr ""
426
 
427
+ #: admin/options-page-facebook.php:365
428
  msgid "Facebook Open Graph Tags cache"
429
  msgstr ""
430
 
431
+ #: admin/options-page-facebook.php:371
432
  msgid "Clear cache"
433
  msgstr ""
434
 
435
+ #: admin/options-page-facebook.php:378
436
  msgid ""
437
  "Try to clear the Facebook Open Graph Tags cache when saving a post or page, "
438
  "so the link preview on Facebook is immediately updated"
439
  msgstr ""
440
 
441
+ #: admin/options-page-facebook.php:383
442
  msgid "Suppress cache notices"
443
  msgstr ""
444
 
445
+ #: admin/options-page-facebook.php:390
446
  msgid ""
447
  "Sometimes we aren't able to update the cache and the post author will see a "
448
  "notice if this option is not checked"
449
  msgstr ""
450
 
451
+ #: admin/options-page-general.php:13
452
  msgid "General settings that will apply to all tags types."
453
  msgstr ""
454
 
455
+ #: admin/options-page-general.php:15
456
  msgid "Description settings"
457
  msgstr ""
458
 
459
+ #: admin/options-page-general.php:21
460
  msgid "Description maximum length"
461
  msgstr ""
462
 
463
+ #: admin/options-page-general.php:23
464
  msgid "characters"
465
  msgstr ""
466
 
467
+ #: admin/options-page-general.php:28
468
  msgid "0 (zero) or blank for no maximum length"
469
  msgstr ""
470
 
471
+ #: admin/options-page-general.php:31 admin/options-page-general.php:62
472
+ #: admin/options-page-general.php:93
473
  msgid "Because Yoast SEO integration is active, this value may be overwritten"
474
  msgstr ""
475
 
476
+ #: admin/options-page-general.php:38 admin/options-page-general.php:80
477
  msgid "Homepage description"
478
  msgstr ""
479
 
480
+ #: admin/options-page-general.php:44
481
  msgid "The description of your front page:"
482
  msgstr ""
483
 
484
+ #: admin/options-page-general.php:49
485
  msgid "Website tagline"
486
  msgstr ""
487
 
488
+ #: admin/options-page-general.php:50 admin/options-page-general.php:81
489
  msgid "Custom text"
490
  msgstr ""
491
 
492
+ #: admin/options-page-general.php:68
493
  #, php-format
494
  msgid ""
495
  "WPML users: Set the main language homepage description here, save changes "
497
  "translation</a> to set it for other languages."
498
  msgstr ""
499
 
500
+ #: admin/options-page-general.php:77
501
  msgid "Default description"
502
  msgstr ""
503
 
504
+ #: admin/options-page-general.php:90
505
  msgid ""
506
  "The default description to be used on any post / page / cpt / archive / "
507
  "search / ... that has a blank description"
508
  msgstr ""
509
 
510
+ #: admin/options-page-general.php:99
511
  #, php-format
512
  msgid ""
513
  "WPML users: Set the main language default description here, save changes and "
515
  "to set it for other languages."
516
  msgstr ""
517
 
518
+ #: admin/options-page-general.php:112
519
  msgid "Image settings"
520
  msgstr ""
521
 
522
+ #: admin/options-page-general.php:118
523
  msgid "Default image"
524
  msgstr ""
525
 
526
+ #: admin/options-page-general.php:126 admin/options-page-general.php:192
527
  msgid "URL (with http(s)://)"
528
  msgstr ""
529
 
530
+ #: admin/options-page-general.php:135
531
  msgid "On Post/Page, use image from"
532
  msgstr ""
533
 
534
+ #: admin/options-page-general.php:139
535
  msgid "\"Open Graph Image\" custom field on the post"
536
  msgstr ""
537
 
538
+ #: admin/options-page-general.php:143
539
  msgid "Post/page featured image"
540
  msgstr ""
541
 
542
+ #: admin/options-page-general.php:147
543
  msgid "First image from the post/page content"
544
  msgstr ""
545
 
546
+ #: admin/options-page-general.php:151
547
  msgid "First image from the post/page media gallery"
548
  msgstr ""
549
 
550
+ #: admin/options-page-general.php:155
551
  msgid "Default image specified above"
552
  msgstr ""
553
 
554
+ #: admin/options-page-general.php:161
555
  msgid ""
556
  "On posts/pages the first image found, using the priority above, will be "
557
  "used. On the homepage, archives and other website sections the default image "
558
  "is always used."
559
  msgstr ""
560
 
561
+ #: admin/options-page-general.php:173 admin/options-page-general.php:234
562
+ #: admin/options-page-schema.php:70
563
  msgid "Experimental"
564
  msgstr ""
565
 
566
+ #: admin/options-page-general.php:175
567
  #, php-format
568
  msgid ""
569
  "The original image will be resized/cropped to %dx%dpx and the chosen PNG "
571
  "for locally hosted images."
572
  msgstr ""
573
 
574
+ #: admin/options-page-general.php:177
575
  #, php-format
576
  msgid ""
577
  "You can see an example of the end result <a href=\"%s\" target=\"_blank"
578
  "\">here</a>"
579
  msgstr ""
580
 
581
+ #: admin/options-page-general.php:179
582
  #, php-format
583
  msgid ""
584
  "If you activate this option globally, you can disable it based on your "
585
  "conditions using the <i>%1$s</i> filter"
586
  msgstr ""
587
 
588
+ #: admin/options-page-general.php:184
589
  msgid "PNG logo"
590
  msgstr ""
591
 
592
+ #: admin/options-page-general.php:194
593
  #, php-format
594
  msgid "Size: %dx%dpx"
595
  msgstr ""
596
 
597
+ #: admin/options-page-general.php:199
598
  msgid "Add image to RSS/RSS2 feeds"
599
  msgstr ""
600
 
601
+ #: admin/options-page-general.php:206
602
  msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
603
  msgstr ""
604
 
605
+ #: admin/options-page-general.php:211
606
  msgid "Force getimagesize on local file"
607
  msgstr ""
608
 
609
+ #: admin/options-page-general.php:218 admin/options-page-general.php:236
610
  msgid ""
611
  "This is an advanced option: Don't mess with this unless you know what you're "
612
  "doing"
613
  msgstr ""
614
 
615
+ #: admin/options-page-general.php:220
616
  msgid "Force getimagesize on local file even if allow_url_fopen=1"
617
  msgstr ""
618
 
619
+ #: admin/options-page-general.php:222
620
  msgid ""
621
  "May cause problems with some multisite configurations but fixes \"HTTP "
622
  "request failed\" errors"
623
  msgstr ""
624
 
625
+ #: admin/options-page-general.php:227
626
  msgid "Do not get image size"
627
  msgstr ""
628
 
629
+ #: admin/options-page-general.php:238
630
  msgid ""
631
  "You should only activate this option if you're getting fatal errors (white "
632
  "screen of death) and only keep it active if this options does solve those "
633
  "errors"
634
  msgstr ""
635
 
636
+ #: admin/options-page-general.php:240
637
  msgid ""
638
  "This can render the \"Add image to RSS/RSS2 feeds\" and \"Open Graph - "
639
  "Include Image Dimensions\" options useless"
640
  msgstr ""
641
 
642
+ #: admin/options-page-general.php:251
643
  msgid "URL settings"
644
  msgstr ""
645
 
646
+ #: admin/options-page-general.php:257
647
  msgid "Add trailing slash at the end"
648
  msgstr ""
649
 
650
+ #: admin/options-page-general.php:264
651
  msgid "If missing, a trailing slash will be added at the end"
652
  msgstr ""
653
 
654
+ #: admin/options-page-general.php:266
655
  msgid "Homepage example:"
656
  msgstr ""
657
 
658
+ #: admin/options-page-general.php:275
659
  msgid "Author settings"
660
  msgstr ""
661
 
662
+ #: admin/options-page-general.php:281
663
  msgid "Hide Author on Pages"
664
  msgstr ""
665
 
666
+ #: admin/options-page-general.php:288
667
  msgid "Hides all Author tags on Pages"
668
  msgstr ""
669
 
670
+ #: admin/options-page-general.php:297
671
  msgid "Other settings"
672
  msgstr ""
673
 
674
+ #: admin/options-page-general.php:303
675
  msgid "Keep data on uninstall"
676
  msgstr ""
677
 
678
+ #: admin/options-page-general.php:310
679
  msgid ""
680
  "Keep the plugin settings on the database even if the plugin is uninstalled"
681
  msgstr ""
682
 
683
+ #: admin/options-page-right.php:11
684
  msgid "Test your URLs on the Facebook Debugger"
685
  msgstr ""
686
 
687
+ #: admin/options-page-right.php:15
688
  msgid "Test your URLs on the Twitter Card validator"
689
  msgstr ""
690
 
691
+ #: admin/options-page-right.php:19
692
  msgid "About the Open Graph Protocol (on Facebook)"
693
  msgstr ""
694
 
695
+ #: admin/options-page-right.php:23
696
  msgid "The Open Graph Protocol (official website)"
697
  msgstr ""
698
 
699
+ #: admin/options-page-right.php:27
700
  msgid "About Twitter Cards"
701
  msgstr ""
702
 
703
+ #: admin/options-page-right.php:31
704
  msgid "Plugin official URL"
705
  msgstr ""
706
 
707
+ #: admin/options-page-right.php:35
708
  msgid "Author's website: Webdados"
709
  msgstr ""
710
 
711
+ #: admin/options-page-right.php:39
712
  msgid "Author's Facebook page: Webdados"
713
  msgstr ""
714
 
715
+ #: admin/options-page-right.php:43
716
  msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
717
  msgstr ""
718
 
719
+ #: admin/options-page-right.php:54
720
  msgid "About this plugin"
721
  msgstr ""
722
 
723
+ #: admin/options-page-right.php:56
724
  msgid "Support forum"
725
  msgstr ""
726
 
727
+ #: admin/options-page-right.php:58
728
  msgid "Premium technical support or custom WordPress development"
729
  msgstr ""
730
 
731
+ #: admin/options-page-right.php:59
732
  #, php-format
733
  msgid "Please contact %s"
734
  msgstr ""
735
 
736
+ #: admin/options-page-right.php:60
737
  msgid "Please rate our plugin at WordPress.org"
738
  msgstr ""
739
 
740
+ #: admin/options-page-right.php:68
741
  msgid "Useful links"
742
  msgstr ""
743
 
744
+ #: admin/options-page-right.php:79
745
  msgid "Donate"
746
  msgstr ""
747
 
748
+ #: admin/options-page-right.php:81
749
  msgid ""
750
  "If you find this plugin useful and want to make a contribution towards "
751
  "future development please consider making a small, or big ;-), donation."
752
  msgstr ""
753
 
754
+ #: admin/options-page-schema.php:11
755
  msgid "Schema.org tags used by Google+ to render link share posts."
756
  msgstr ""
757
 
758
+ #: admin/options-page-schema.php:13
759
  msgid "Google+ / Schema.org Tags"
760
  msgstr ""
761
 
762
+ #: admin/options-page-schema.php:19 admin/options-page-twitter.php:19
763
  msgid "Include Title"
764
  msgstr ""
765
 
766
+ #: admin/options-page-schema.php:72
767
  msgid ""
768
  "Added to the HTML tag, if you want to avoid W3C and Structured Data "
769
  "validation errors"
770
  msgstr ""
771
 
772
+ #: admin/options-page-schema.php:93
773
  msgid "Default (including Post/Page) Type"
774
  msgstr ""
775
 
776
+ #: admin/options-page-schema.php:120
777
  msgid "The user's Google+ URL must be filled in on his profile"
778
  msgstr ""
779
 
780
+ #: admin/options-page-schema.php:127
781
  msgid "Google doesn't use it anymore"
782
  msgstr ""
783
 
784
+ #: admin/options-page-schema.php:147
785
  msgid "The website's Google+ Page"
786
  msgstr ""
787
 
788
+ #: admin/options-page-schema.php:152
789
  msgid "Website's Google+ Page"
790
  msgstr ""
791
 
792
+ #: admin/options-page-schema.php:159
793
  msgid "Google+ Page URL (with https://)"
794
  msgstr ""
795
 
796
+ #: admin/options-page-seo.php:11
797
  msgid ""
798
  "SEO Meta Tags that are recommended ONLY if no other plugin is setting them "
799
  "already."
800
  msgstr ""
801
 
802
+ #: admin/options-page-seo.php:13
803
  msgid "SEO Meta Tags"
804
  msgstr ""
805
 
806
+ #: admin/options-page-seo.php:19
807
  msgid "Set Canonical URL"
808
  msgstr ""
809
 
810
+ #: admin/options-page-seo.php:31 admin/options-page-seo.php:53
811
  msgid "Not recommended because you have Yoast SEO active"
812
  msgstr ""
813
 
814
+ #: admin/options-page-seo.php:41
815
  msgid "Include Meta Description tag"
816
  msgstr ""
817
 
818
+ #: admin/options-page-seo.php:63
819
  msgid "Include Post/Page Author name"
820
  msgstr ""
821
 
822
+ #: admin/options-page-seo.php:72
823
  msgid "From the user Display name"
824
  msgstr ""
825
 
826
+ #: admin/options-page-twitter.php:11
827
  msgid "Tags used by Twitter to render their Cards."
828
  msgstr ""
829
 
830
+ #: admin/options-page-twitter.php:13
831
  msgid "Twitter Card Tags"
832
  msgstr ""
833
 
834
+ #: admin/options-page-twitter.php:84
835
  msgid "The user's Twitter Username must be filled in on his profile"
836
  msgstr ""
837
 
838
+ #: admin/options-page-twitter.php:98
839
  msgid "The website's Twitter Username"
840
  msgstr ""
841
 
842
+ #: admin/options-page-twitter.php:103
843
  msgid "Website's Twitter Username"
844
  msgstr ""
845
 
846
+ #: admin/options-page-twitter.php:115
847
  msgid "Card Type"
848
  msgstr ""
849
 
850
+ #: admin/options-page-twitter.php:118
851
  msgid "Summary Card"
852
  msgstr ""
853
 
854
+ #: admin/options-page-twitter.php:119
855
  msgid "Summary Card with Large Image"
856
  msgstr ""
857
 
858
+ #: admin/options-page-twitter.php:127
859
  msgid "The type of Twitter Card shown on the timeline"
860
  msgstr ""
861
 
862
+ #: admin/options-page.php:16
863
  msgid ""
864
  "Please set some default values and which tags should, or should not, be "
865
  "included. It may be necessary to exclude some tags if other plugins are "
866
  "already including them."
867
  msgstr ""
868
 
869
+ #: admin/options-page.php:33
870
  msgid "General"
871
  msgstr ""
872
 
873
+ #: admin/options-page.php:39
874
  msgid "Open Graph"
875
  msgstr ""
876
 
877
+ #: admin/options-page.php:45
878
  msgid "Cards"
879
  msgstr ""
880
 
881
+ #: admin/options-page.php:51
882
  msgid "Schema"
883
  msgstr ""
884
 
885
+ #: admin/options-page.php:57
886
  msgid "SEO tags"
887
  msgstr ""
888
 
889
+ #: admin/options-page.php:63
890
  msgid "3rd party"
891
  msgstr ""
892
 
893
+ #: public/class-webdados-fb-open-graph-public.php:220
894
  msgid "Price"
895
  msgstr ""
896
 
897
+ #: public/class-webdados-fb-open-graph-public.php:290
898
  msgid "Search for"
899
  msgstr ""
900
 
901
+ #: public/class-webdados-fb-open-graph-public.php:299
902
+ #: public/class-webdados-fb-open-graph-public.php:303
903
+ #: public/class-webdados-fb-open-graph-public.php:307
904
  msgid "Archives"
905
  msgstr ""
906
 
908
  msgid "Facebook Open Graph, Google+ and Twitter Card Tags"
909
  msgstr ""
910
 
911
+ #. Plugin URI of the plugin/theme
912
+ msgid ""
913
+ "http://www.webdados.pt/produtos-e-servicos/internet/desenvolvimento-"
914
+ "wordpress/facebook-open-graph-meta-tags-wordpress/"
915
+ msgstr ""
916
+
917
  #. Description of the plugin/theme
918
  msgid ""
919
  "Inserts Facebook Open Graph, Google+/Schema.org, Twitter Card and SEO Meta "
922
  "the \"enclosure\" and \"media:content\" tags to the RSS feeds, so that apps "
923
  "like RSS Graffiti and Twitterfeed post the image to Facebook correctly."
924
  msgstr ""
925
+
926
+ #. Author of the plugin/theme
927
+ msgid "Webdados"
928
+ msgstr ""
929
+
930
+ #. Author URI of the plugin/theme
931
+ msgid "http://www.webdados.pt"
932
+ msgstr ""
public/class-webdados-fb-open-graph-public.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
@@ -116,12 +120,16 @@ class Webdados_FB_Public {
116
  $fb_type = trim($this->options['fb_type_homepage']=='' ? 'website' : $this->options['fb_type_homepage']);
117
  }
118
  // Description
119
- if ( trim($post->post_excerpt) != '' ) {
120
- //If there's an excerpt that's what we'll use
121
- $fb_desc = trim($post->post_excerpt);
122
  } else {
123
- //If not we grab it from the content
124
- $fb_desc = trim($post->post_content);
 
 
 
 
 
125
  }
126
  // Image
127
  if ( intval($this->options['fb_image_show'])==1 || intval($this->options['fb_image_show_schema'])==1 || intval($this->options['fb_image_show_twitter'])==1 ) {
@@ -436,6 +444,7 @@ class Webdados_FB_Public {
436
  }
437
 
438
  //Apply Filters
 
439
  $fb_locale = apply_filters('fb_og_locale', $fb_locale);
440
  $fb_title = apply_filters('fb_og_title', $fb_title);
441
  $fb_url = apply_filters('fb_og_url', $fb_url);
@@ -482,12 +491,12 @@ class Webdados_FB_Public {
482
  }
483
 
484
  //No spaces on URLs
485
- if ( isset($fb_url) && trim($fb_url)!='' ) $fb_url= str_replace(' ', '%20', trim($fb_url));
486
- if ( isset($fb_publisher) && trim($fb_publisher)!='' ) $fb_publisher= str_replace(' ', '%20', trim($fb_publisher));
487
- if ( isset($fb_publisher_schema) && trim($fb_publisher_schema)!='' ) $fb_publisher_schema= str_replace(' ', '%20', trim($fb_publisher_schema));
488
- if ( isset($fb_author) && trim($fb_author)!='' ) $fb_author= str_replace(' ', '%20', trim($fb_author));
489
- if ( isset($fb_author_linkrelgp) && trim($fb_author_linkrelgp)!='' ) $fb_author_linkrelgp= str_replace(' ', '%20', trim($fb_author_linkrelgp));
490
- if ( isset($fb_image) && trim($fb_image)!='' ) $fb_image= str_replace(' ', '%20', trim($fb_image));
491
  if ( isset($fb_image_additional) && is_array($fb_image_additional) && count($fb_image_additional) ) {
492
  foreach ( $fb_image_additional as $key => $value ) {
493
  $fb_image_additional[$key]['fb_image'] = str_replace( ' ', '%20', trim($value['fb_image']) );
@@ -554,7 +563,7 @@ class Webdados_FB_Public {
554
  if ( intval($this->options['fb_publisher_show'])==1 && trim($fb_publisher)!='') $html.=' <meta property="article:publisher" content="'.trim(esc_attr($fb_publisher)).'"/>
555
  ';
556
  //App ID
557
- if ( intval($this->options['fb_app_id_show'])==1 && trim($this->options['fb_app_id'])!='' ) $html.=' <meta property="fb:app_id" content="'.trim(esc_attr($this->options['fb_app_id'])).'"/>
558
  ';
559
  //Admins
560
  if ( intval($this->options['fb_admin_id_show'])==1 && trim($this->options['fb_admin_id'])!='' ) $html.=' <meta property="fb:admins" content="'.trim(esc_attr($this->options['fb_admin_id'])).'"/>
1
  <?php
2
+ /**
3
+ * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.1
5
+ */
6
 
7
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
8
 
120
  $fb_type = trim($this->options['fb_type_homepage']=='' ? 'website' : $this->options['fb_type_homepage']);
121
  }
122
  // Description
123
+ if ( $fb_desc = trim( get_post_meta($post->ID, '_webdados_fb_open_graph_specific_description', true) ) ) {
124
+ //From our metabox
 
125
  } else {
126
+ if ( trim($post->post_excerpt) != '' ) {
127
+ //If there's an excerpt that's what we'll use
128
+ $fb_desc = trim($post->post_excerpt);
129
+ } else {
130
+ //If not we grab it from the content
131
+ $fb_desc = trim($post->post_content);
132
+ }
133
  }
134
  // Image
135
  if ( intval($this->options['fb_image_show'])==1 || intval($this->options['fb_image_show_schema'])==1 || intval($this->options['fb_image_show_twitter'])==1 ) {
444
  }
445
 
446
  //Apply Filters
447
+ $fb_app_id = apply_filters('fb_og_app_id', $this->options['fb_app_id']);
448
  $fb_locale = apply_filters('fb_og_locale', $fb_locale);
449
  $fb_title = apply_filters('fb_og_title', $fb_title);
450
  $fb_url = apply_filters('fb_og_url', $fb_url);
491
  }
492
 
493
  //No spaces on URLs
494
+ if ( isset($fb_url) && trim($fb_url)!='' ) $fb_url = str_replace(' ', '%20', trim($fb_url));
495
+ if ( isset($fb_publisher) && trim($fb_publisher)!='' ) $fb_publisher = str_replace(' ', '%20', trim($fb_publisher));
496
+ if ( isset($fb_publisher_schema) && trim($fb_publisher_schema)!='' ) $fb_publisher_schema = str_replace(' ', '%20', trim($fb_publisher_schema));
497
+ if ( isset($fb_author) && trim($fb_author)!='' ) $fb_author = str_replace(' ', '%20', trim($fb_author));
498
+ if ( isset($fb_author_linkrelgp) && trim($fb_author_linkrelgp)!='' ) $fb_author_linkrelgp = str_replace(' ', '%20', trim($fb_author_linkrelgp));
499
+ if ( isset($fb_image) && trim($fb_image)!='' ) $fb_image = str_replace(' ', '%20', trim($fb_image));
500
  if ( isset($fb_image_additional) && is_array($fb_image_additional) && count($fb_image_additional) ) {
501
  foreach ( $fb_image_additional as $key => $value ) {
502
  $fb_image_additional[$key]['fb_image'] = str_replace( ' ', '%20', trim($value['fb_image']) );
563
  if ( intval($this->options['fb_publisher_show'])==1 && trim($fb_publisher)!='') $html.=' <meta property="article:publisher" content="'.trim(esc_attr($fb_publisher)).'"/>
564
  ';
565
  //App ID
566
+ if ( intval($this->options['fb_app_id_show'])==1 && trim($fb_app_id)!='' ) $html.=' <meta property="fb:app_id" content="'.trim(esc_attr($fb_app_id)).'"/>
567
  ';
568
  //Admins
569
  if ( intval($this->options['fb_admin_id_show'])==1 && trim($this->options['fb_admin_id'])!='' ) $html.=' <meta property="fb:admins" content="'.trim(esc_attr($this->options['fb_admin_id'])).'"/>
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, share, social, meta, rss, twitter card, twitter, schema, google+, g+, google, google plus, image, like, seo, search engine optimization, woocommerce, yoast seo, wordpress seo, woocommerce, subheading, php7
5
  Requires at least: 4.0
6
  Tested up to: 4.7.3
7
- Stable tag: 2.0.9
8
  Inserts Facebook Open Graph, Google+/Schema.org, Twitter and SEO Meta Tags into your WordPress Website for more efficient sharing results.
9
 
10
  == Description ==
@@ -28,8 +28,8 @@ Our settings page is discreetly kept under "Options", as it should, instead of t
28
  * **og:title**: From post/page/archive/tag/... title.
29
  * **og:site_name**: From blog title.
30
  * **og:url**: From the post/page permalink.
31
- * **og:description**: From post/page excerpt if it exist, or from post/page content. From category/tag description on it's pages, if it exist. From tagline, or custom text, on all the others.
32
- * **og:image**: From a specific custom field of the post/page, or if not set from the post/page featured/thumbnail image, or if it doesn't exist from the first image in the post content, or if it doesn't exist from the first image on the post media gallery, or if it doesn't exist from the default image defined on the options menu. The same image chosen here will be used and enclosure/media:content on the RSS feed.
33
  * **og:image:width** and **og:image:height**: Image dimensions.
34
  * **og:type**: "website" or "blog" for the homepage, "product" for WooCommerce products and "article" for all the others.
35
  * **article:author**: From the user (post author) Faceboook Profile URL.
@@ -109,7 +109,7 @@ Sometimes the plugin just can't update the Facebook cache itself and you may nee
109
  = Can this plugin get content from "random plugin"? =
110
 
111
  If there's a popular plugin you think we could get content from to use on the meta tags, use the support forum to tell us that.
112
- If you are a plugin or theme author you can always use our filters `fb_og_title`, `fb_og_desc`, `fb_og_url`, `fb_og_type`, `fb_type_schema`, `fb_og_image`, `fb_og_image_additional`, `fb_og_image_overlay` and `fb_og_locale` to customize the Open Graph (and other) meta tags output.
113
 
114
  = There's a similar plugin on the repository, by Heateor. Is this the same? =
115
  It's similar, yes. They've forked our plugin and gave no credits whatsoever for our original work.
@@ -122,9 +122,14 @@ We DO NOT provide email support for this plugin. If you send us an email asking
122
 
123
  == Changelog ==
124
 
 
 
 
 
 
125
  = 2.0.9 =
126
  * New option to disable getting the image size and possibly avoid fatal errors (white screen of death) on some edge cases
127
- * New `fb_og_disable` filter to completely disable the output based on the developer own rules
128
 
129
  = 2.0.8.2 =
130
  * New `fb_og_output` filter on the plugin global output
@@ -146,7 +151,7 @@ We DO NOT provide email support for this plugin. If you send us an email asking
146
 
147
  = 2.0.6.3 =
148
  * When using the overlay PNG option, the image is filled with previously filled with white in case the original OG image is a transparent PNG
149
- * The `fb_og_thumb_fill_color` can be used to use another color other than white, by returning an array with the rgb value
150
 
151
  = 2.0.6.2 =
152
  * On some server configurations using an overlay PNG would result on a 404 error on the `og:image` url
@@ -223,10 +228,10 @@ We DO NOT provide email support for this plugin. If you send us an email asking
223
  * Better SubHeading plugin compatibility (choose either to add it Before or After the title)
224
  * Description set the same value as the title if it's empty
225
  * Correct `og:type` for WPML root pages
226
- * Added the fb_og_type filter so that plugins or themes can override the Open Graph Type
227
 
228
  = 1.7.1 =
229
- * Added the fb_og_url filter so that plugins or themes can override the Open Graph URL
230
 
231
  = 1.7 =
232
  * WordPress 4.4, WooCommerce 2.4.12 and PHP 7 compatibility check - All good!
@@ -236,7 +241,7 @@ We DO NOT provide email support for this plugin. If you send us an email asking
236
  * Several tweaks on the settings page
237
 
238
  = 1.6.3 =
239
- * Added the fb_og_locale filter so that plugins or themes can override the Open Graph locale tag
240
 
241
  = 1.6.2.2 =
242
  * Bug fix: Google+, Twitter and Facebook profile fields would not be available on the user profile if Yoast SEO was not active
@@ -312,7 +317,7 @@ We DO NOT provide email support for this plugin. If you send us an email asking
312
  * Fix: esc_attr on all tags
313
 
314
  = 1.2 =
315
- * Added filters for title, description and images, so another plugin or theme can override these values. The filters are fb_og_title, fb_og_desc and fb_og_image
316
 
317
  = 1.1.2 =
318
  * Fix: Specific post image was not working properly
4
  Tags: facebook, open graph, open graph protocol, share, social, meta, rss, twitter card, twitter, schema, google+, g+, google, google plus, image, like, seo, search engine optimization, woocommerce, yoast seo, wordpress seo, woocommerce, subheading, php7
5
  Requires at least: 4.0
6
  Tested up to: 4.7.3
7
+ Stable tag: 2.1
8
  Inserts Facebook Open Graph, Google+/Schema.org, Twitter and SEO Meta Tags into your WordPress Website for more efficient sharing results.
9
 
10
  == Description ==
28
  * **og:title**: From post/page/archive/tag/... title.
29
  * **og:site_name**: From blog title.
30
  * **og:url**: From the post/page permalink.
31
+ * **og:description**: From our specific custom field of the post/page, or if not set post/page excerpt if it exist, or from post/page content. From category/tag description on it's pages, if it exist. From tagline, or custom text, on all the others.
32
+ * **og:image**: From our specific custom field of the post/page, or if not set from the post/page featured/thumbnail image, or if it doesn't exist from the first image in the post content, or if it doesn't exist from the first image on the post media gallery, or if it doesn't exist from the default image defined on the options menu. The same image chosen here will be used and enclosure/media:content on the RSS feed.
33
  * **og:image:width** and **og:image:height**: Image dimensions.
34
  * **og:type**: "website" or "blog" for the homepage, "product" for WooCommerce products and "article" for all the others.
35
  * **article:author**: From the user (post author) Faceboook Profile URL.
109
  = Can this plugin get content from "random plugin"? =
110
 
111
  If there's a popular plugin you think we could get content from to use on the meta tags, use the support forum to tell us that.
112
+ If you are a plugin or theme author you can always use our filters `fb_og_title`, `fb_og_desc`, `fb_og_url`, `fb_og_type`, `fb_type_schema`, `fb_og_image`, `fb_og_image_additional`, `fb_og_image_overlay`, `fb_og_locale`, `fb_og_app_id`, `fb_og_thumb_fill_color`, `fb_og_output` and `fb_og_enabled` to customize the Open Graph (and other) meta tags output.
113
 
114
  = There's a similar plugin on the repository, by Heateor. Is this the same? =
115
  It's similar, yes. They've forked our plugin and gave no credits whatsoever for our original work.
122
 
123
  == Changelog ==
124
 
125
+ = 2.1 =
126
+ * New description field on our metabox on post/pages that will override the excerpt or content if filled
127
+ * Load the translations from wordpress.org Glotpress and not from the local folder
128
+ * Added the `fb_og_app_id` filter so that plugins or themes can override the Open Graph Facebook App ID
129
+
130
  = 2.0.9 =
131
  * New option to disable getting the image size and possibly avoid fatal errors (white screen of death) on some edge cases
132
+ * New `fb_og_disable` filter to completely disable the output based on the developer own rules - DUPLICATE - Use `fb_og_enabled` instead and return false to it.
133
 
134
  = 2.0.8.2 =
135
  * New `fb_og_output` filter on the plugin global output
151
 
152
  = 2.0.6.3 =
153
  * When using the overlay PNG option, the image is filled with previously filled with white in case the original OG image is a transparent PNG
154
+ * The `fb_og_thumb_fill_color` filter can be used to use another color other than white, by returning an array with the rgb value
155
 
156
  = 2.0.6.2 =
157
  * On some server configurations using an overlay PNG would result on a 404 error on the `og:image` url
228
  * Better SubHeading plugin compatibility (choose either to add it Before or After the title)
229
  * Description set the same value as the title if it's empty
230
  * Correct `og:type` for WPML root pages
231
+ * Added the `fb_og_type` filter so that plugins or themes can override the Open Graph Type
232
 
233
  = 1.7.1 =
234
+ * Added the `fb_og_url` filter so that plugins or themes can override the Open Graph URL
235
 
236
  = 1.7 =
237
  * WordPress 4.4, WooCommerce 2.4.12 and PHP 7 compatibility check - All good!
241
  * Several tweaks on the settings page
242
 
243
  = 1.6.3 =
244
+ * Added the `fb_og_locale` filter so that plugins or themes can override the Open Graph locale tag
245
 
246
  = 1.6.2.2 =
247
  * Bug fix: Google+, Twitter and Facebook profile fields would not be available on the user profile if Yoast SEO was not active
317
  * Fix: esc_attr on all tags
318
 
319
  = 1.2 =
320
+ * Added filters for title, description and images, so another plugin or theme can override these values. The filters are `fb_og_title`, `fb_og_desc` and `fb_og_image`
321
 
322
  = 1.1.2 =
323
  * Fix: Specific post image was not working properly
wonderm00n-open-graph.php CHANGED
@@ -1,14 +1,14 @@
1
  <?php
2
  /**
3
  * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
- * @version 2.0.9
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, Twitter Card and SEO Meta 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
 
11
- Version: 2.0.9
12
  Author: Webdados
13
  Author URI: http://www.webdados.pt
14
  Text Domain: wd-fb-og
@@ -17,7 +17,7 @@ Domain Path: /lang
17
 
18
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
19
 
20
- define( 'WEBDADOS_FB_VERSION', '2.0.9' );
21
  define( 'WEBDADOS_FB_PLUGIN_NAME', 'Facebook Open Graph, Google+ and Twitter Card Tags' );
22
  define( 'WEBDADOS_FB_W', 1200 );
23
  define( 'WEBDADOS_FB_H', 630 );
1
  <?php
2
  /**
3
  * @package Facebook Open Graph, Google+ and Twitter Card Tags
4
+ * @version 2.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, Twitter Card and SEO Meta 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
 
11
+ Version: 2.1
12
  Author: Webdados
13
  Author URI: http://www.webdados.pt
14
  Text Domain: wd-fb-og
17
 
18
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
19
 
20
+ define( 'WEBDADOS_FB_VERSION', '2.1' );
21
  define( 'WEBDADOS_FB_PLUGIN_NAME', 'Facebook Open Graph, Google+ and Twitter Card Tags' );
22
  define( 'WEBDADOS_FB_W', 1200 );
23
  define( 'WEBDADOS_FB_H', 630 );