Version Description
- New beta feature: Add overlay PNG logo to the image
- Minor fixes
Download this release
Release Info
Developer | webdados |
Plugin | Open Graph for Facebook, Google+ and Twitter Card Tags |
Version | 1.7.4 |
Comparing to | |
See all releases |
Code changes from version 1.7.3.1 to 1.7.4
- fbimg.php +88 -0
- includes/settings-page.php +67 -3
- lang/wd-fb-og-pt_PT.mo +0 -0
- lang/wd-fb-og-pt_PT.po +185 -155
- lang/wd-fb-og.pot +270 -173
- readme.txt +7 -1
- wonderm00n-open-graph.php +29 -20
fbimg.php
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
define('WP_USE_THEMES', false);
|
3 |
+
require( '../../../wp-blog-header.php' );
|
4 |
+
|
5 |
+
if ($webdados_fb_open_graph_settings=webdados_fb_open_graph_load_settings()) {
|
6 |
+
|
7 |
+
if ( isset($_GET['img']) && trim($_GET['img'])!='' ) {
|
8 |
+
if ($url=parse_url(trim($_GET['img']))) {
|
9 |
+
if ( $url['host']==$_SERVER['HTTP_HOST'] ) {
|
10 |
+
|
11 |
+
if( $image=imagecreatefromfile($_SERVER['DOCUMENT_ROOT'].$url['path']) ) {
|
12 |
+
|
13 |
+
$thumb_width = 1200;
|
14 |
+
$thumb_height = 630;
|
15 |
+
|
16 |
+
$width = imagesx($image);
|
17 |
+
$height = imagesy($image);
|
18 |
+
|
19 |
+
$original_aspect = $width / $height;
|
20 |
+
$thumb_aspect = $thumb_width / $thumb_height;
|
21 |
+
|
22 |
+
if ( $original_aspect >= $thumb_aspect )
|
23 |
+
{
|
24 |
+
// If image is wider than thumbnail (in aspect ratio sense)
|
25 |
+
$new_height = $thumb_height;
|
26 |
+
$new_width = $width / ($height / $thumb_height);
|
27 |
+
}
|
28 |
+
else
|
29 |
+
{
|
30 |
+
// If the thumbnail is wider than the image
|
31 |
+
$new_width = $thumb_width;
|
32 |
+
$new_height = $height / ($width / $thumb_width);
|
33 |
+
}
|
34 |
+
|
35 |
+
$thumb = imagecreatetruecolor( $thumb_width, $thumb_height );
|
36 |
+
|
37 |
+
// Resize and crop
|
38 |
+
imagecopyresampled($thumb,
|
39 |
+
$image,
|
40 |
+
0 - ($new_width - $thumb_width) / 2, // Center the image horizontally
|
41 |
+
0 - ($new_height - $thumb_height) / 2, // Center the image vertically
|
42 |
+
0, 0,
|
43 |
+
$new_width, $new_height,
|
44 |
+
$width, $height);
|
45 |
+
//Barra
|
46 |
+
if (trim($webdados_fb_open_graph_settings['fb_image_overlay_image'])!='') {
|
47 |
+
$barra_url = parse_url(trim($webdados_fb_open_graph_settings['fb_image_overlay_image']));
|
48 |
+
$barra = imagecreatefromfile($_SERVER['DOCUMENT_ROOT'].$barra_url['path']);
|
49 |
+
imagecopy($thumb, $barra, 0, 0, 0, 0, 1200, 630);
|
50 |
+
}
|
51 |
+
|
52 |
+
header('Content-Type: image/jpeg');
|
53 |
+
imagejpeg($thumb, NULL, 95);
|
54 |
+
imagedestroy($image);
|
55 |
+
imagedestroy($thumb);
|
56 |
+
imagedestroy($barra);
|
57 |
+
}
|
58 |
+
|
59 |
+
}
|
60 |
+
}
|
61 |
+
}
|
62 |
+
}
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
function imagecreatefromfile( $filename ) {
|
67 |
+
if (!file_exists($filename)) {
|
68 |
+
throw new InvalidArgumentException('File "'.$filename.'" not found.');
|
69 |
+
}
|
70 |
+
switch ( strtolower( pathinfo( $filename, PATHINFO_EXTENSION ))) {
|
71 |
+
case 'jpeg':
|
72 |
+
case 'jpg':
|
73 |
+
return imagecreatefromjpeg($filename);
|
74 |
+
break;
|
75 |
+
|
76 |
+
case 'png':
|
77 |
+
return imagecreatefrompng($filename);
|
78 |
+
break;
|
79 |
+
|
80 |
+
case 'gif':
|
81 |
+
return imagecreatefromgif($filename);
|
82 |
+
break;
|
83 |
+
|
84 |
+
default:
|
85 |
+
throw new InvalidArgumentException('File "'.$filename.'" is not valid jpg, png or gif image.');
|
86 |
+
break;
|
87 |
+
}
|
88 |
+
}
|
includes/settings-page.php
CHANGED
@@ -72,6 +72,8 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
72 |
$usersettings['fb_twitter_card_type']= trim(webdados_fb_open_graph_post('fb_twitter_card_type'));
|
73 |
$usersettings['fb_wc_usecategthumb']= intval(webdados_fb_open_graph_post('fb_wc_usecategthumb'));
|
74 |
$usersettings['fb_wc_useproductgallery']= intval(webdados_fb_open_graph_post('fb_wc_useproductgallery'));
|
|
|
|
|
75 |
//Update
|
76 |
update_option('wonderm00n_open_graph_settings', $usersettings);
|
77 |
//WPML - Register custom website description
|
@@ -84,6 +86,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
84 |
//Load the settings
|
85 |
extract(webdados_fb_open_graph_load_settings());
|
86 |
|
|
|
87 |
?>
|
88 |
<div class="wrap">
|
89 |
|
@@ -101,7 +104,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
101 |
<form name="form1" method="post">
|
102 |
|
103 |
<div id="webdados_fb_open_graph-settings" class="postbox">
|
104 |
-
<h3 class="hndle"><?php _e('Settings'); ?></h3>
|
105 |
<div class="inside">
|
106 |
<table width="100%" class="form-table">
|
107 |
<tr>
|
@@ -648,6 +651,26 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
648 |
</div>
|
649 |
</td>
|
650 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
<tr>
|
652 |
<td colspan="2"><hr/></td>
|
653 |
</tr>
|
@@ -913,14 +936,44 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
913 |
|
914 |
<script type="text/javascript">
|
915 |
jQuery(document).ready(function() {
|
916 |
-
jQuery('#fb_image_button').click(function(){
|
917 |
tb_show('',"media-upload.php?type=image&TB_iframe=true");
|
918 |
});
|
919 |
window.send_to_editor = function(html) {
|
920 |
var imgurl = jQuery('<div>'+html+'</div>').find('img').attr('src');
|
921 |
jQuery("input"+"#fb_image").val(imgurl);
|
922 |
tb_remove();
|
923 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
924 |
showAppidOptions();
|
925 |
showAdminOptions();
|
926 |
showLocaleOptions();
|
@@ -937,6 +990,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
937 |
jQuery('#fb_desc_homepage_customtext').hide();
|
938 |
showDescriptionCustomText();
|
939 |
showImageOptions();
|
|
|
940 |
showFBNotifyOptions();
|
941 |
showSubheadingOptions();
|
942 |
});
|
@@ -1050,6 +1104,13 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
1050 |
}*/
|
1051 |
jQuery('.fb_image_options').show();
|
1052 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1053 |
function showFBNotifyOptions() {
|
1054 |
if (jQuery('#fb_adv_notify_fb').is(':checked')) {
|
1055 |
jQuery('.fb_adv_notify_fb_options').show();
|
@@ -1121,4 +1182,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
1121 |
.inside hr:first-child {
|
1122 |
display: none;
|
1123 |
}
|
|
|
|
|
|
|
1124 |
</style>
|
72 |
$usersettings['fb_twitter_card_type']= trim(webdados_fb_open_graph_post('fb_twitter_card_type'));
|
73 |
$usersettings['fb_wc_usecategthumb']= intval(webdados_fb_open_graph_post('fb_wc_usecategthumb'));
|
74 |
$usersettings['fb_wc_useproductgallery']= intval(webdados_fb_open_graph_post('fb_wc_useproductgallery'));
|
75 |
+
$usersettings['fb_image_overlay']= intval(webdados_fb_open_graph_post('fb_image_overlay'));
|
76 |
+
$usersettings['fb_image_overlay_image']= trim(webdados_fb_open_graph_post('fb_image_overlay_image'));
|
77 |
//Update
|
78 |
update_option('wonderm00n_open_graph_settings', $usersettings);
|
79 |
//WPML - Register custom website description
|
86 |
//Load the settings
|
87 |
extract(webdados_fb_open_graph_load_settings());
|
88 |
|
89 |
+
wp_enqueue_media();
|
90 |
?>
|
91 |
<div class="wrap">
|
92 |
|
104 |
<form name="form1" method="post">
|
105 |
|
106 |
<div id="webdados_fb_open_graph-settings" class="postbox">
|
107 |
+
<h3 class="hndle"><?php _e('Settings', 'wd-fb-og'); ?></h3>
|
108 |
<div class="inside">
|
109 |
<table width="100%" class="form-table">
|
110 |
<tr>
|
651 |
</div>
|
652 |
</td>
|
653 |
</tr>
|
654 |
+
<tr class="fb_image_options">
|
655 |
+
<th scope="row"><i class="dashicons-before dashicons-admin-site"></i><?php _e('Overlay PNG logo', 'wd-fb-og');?> [BETA]:</th>
|
656 |
+
<td>
|
657 |
+
<div>
|
658 |
+
<input type="checkbox" name="fb_image_overlay" id="fb_image_overlay" value="1" <?php echo (intval($fb_image_overlay)==1 ? ' checked="checked"' : ''); ?> onclick="showImageOverlayOptions();"/>
|
659 |
+
<br/>
|
660 |
+
<small><?php _e('Image will be resized/cropped to 1200x630 and the PNG chosen bellow will be overlaid', 'wd-fb-og');?></small>
|
661 |
+
</div>
|
662 |
+
<div class="fb_image_overlay_options">
|
663 |
+
<input type="text" name="fb_image_overlay_image" id="fb_image_overlay_image" size="50" value="<?php echo trim(esc_attr($fb_image_overlay_image)); ?>"/>
|
664 |
+
<input id="fb_image_overlay_button" class="button" type="button" value="Upload/Choose image" />
|
665 |
+
<br/>
|
666 |
+
<small>
|
667 |
+
<?php _e('Full URL with http://', 'wd-fb-og');?>
|
668 |
+
<br/>
|
669 |
+
<?php _e('Recommended size: 1200x630px', 'wd-fb-og'); ?>
|
670 |
+
</small>
|
671 |
+
</div>
|
672 |
+
</td>
|
673 |
+
</tr>
|
674 |
<tr>
|
675 |
<td colspan="2"><hr/></td>
|
676 |
</tr>
|
936 |
|
937 |
<script type="text/javascript">
|
938 |
jQuery(document).ready(function() {
|
939 |
+
/*jQuery('#fb_image_button').click(function(){
|
940 |
tb_show('',"media-upload.php?type=image&TB_iframe=true");
|
941 |
});
|
942 |
window.send_to_editor = function(html) {
|
943 |
var imgurl = jQuery('<div>'+html+'</div>').find('img').attr('src');
|
944 |
jQuery("input"+"#fb_image").val(imgurl);
|
945 |
tb_remove();
|
946 |
+
}*/
|
947 |
+
//Images
|
948 |
+
var file_frame;
|
949 |
+
var file_frame_field_id;
|
950 |
+
file_frame = wp.media.frames.file_frame = wp.media({
|
951 |
+
title: '<?php _e('Select image', 'wd-fb-og');?>',
|
952 |
+
button: {
|
953 |
+
text: '<?php _e('Use this image', 'wd-fb-og');?>'
|
954 |
+
},
|
955 |
+
multiple: false
|
956 |
+
});
|
957 |
+
file_frame.on("select", function() {
|
958 |
+
var image = file_frame.state().get("selection").first().toJSON();
|
959 |
+
jQuery("#"+file_frame_field_id).val(image.url);
|
960 |
+
});
|
961 |
+
//Default
|
962 |
+
jQuery('#fb_image_button').on('click', function(event) {
|
963 |
+
event.preventDefault();
|
964 |
+
file_frame_field_id='fb_image';
|
965 |
+
if (file_frame) {
|
966 |
+
file_frame.open();
|
967 |
+
}
|
968 |
+
});
|
969 |
+
//Overlay
|
970 |
+
jQuery('#fb_image_overlay_button').on('click', function(event) {
|
971 |
+
event.preventDefault();
|
972 |
+
file_frame_field_id='fb_image_overlay_image';
|
973 |
+
if (file_frame) {
|
974 |
+
file_frame.open();
|
975 |
+
}
|
976 |
+
});
|
977 |
showAppidOptions();
|
978 |
showAdminOptions();
|
979 |
showLocaleOptions();
|
990 |
jQuery('#fb_desc_homepage_customtext').hide();
|
991 |
showDescriptionCustomText();
|
992 |
showImageOptions();
|
993 |
+
showImageOverlayOptions();
|
994 |
showFBNotifyOptions();
|
995 |
showSubheadingOptions();
|
996 |
});
|
1104 |
}*/
|
1105 |
jQuery('.fb_image_options').show();
|
1106 |
}
|
1107 |
+
function showImageOverlayOptions() {
|
1108 |
+
if (jQuery('#fb_image_overlay').is(':checked')) {
|
1109 |
+
jQuery('.fb_image_overlay_options').show();
|
1110 |
+
} else {
|
1111 |
+
jQuery('.fb_image_overlay_options').hide();
|
1112 |
+
}
|
1113 |
+
}
|
1114 |
function showFBNotifyOptions() {
|
1115 |
if (jQuery('#fb_adv_notify_fb').is(':checked')) {
|
1116 |
jQuery('.fb_adv_notify_fb_options').show();
|
1182 |
.inside hr:first-child {
|
1183 |
display: none;
|
1184 |
}
|
1185 |
+
.fb_image_overlay_options {
|
1186 |
+
display: none;
|
1187 |
+
}
|
1188 |
</style>
|
lang/wd-fb-og-pt_PT.mo
CHANGED
Binary file
|
lang/wd-fb-og-pt_PT.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Facebook Open Graph Meta Tags for WordPress v1.6.1\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wonderm00ns-simple-"
|
5 |
"facebook-open-graph-tags\n"
|
6 |
-
"POT-Creation-Date: 2016-
|
7 |
-
"PO-Revision-Date: 2016-
|
8 |
"Last-Translator: Wonderm00n <wonderm00n@gmail.com>\n"
|
9 |
"Language-Team: Webdados <info@webdados.pt>\n"
|
10 |
"Language: pt_PT\n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
-
"X-Generator: Poedit 1.8.
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
18 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
@@ -21,7 +21,7 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
# @ wd-fb-og
|
24 |
-
#: includes/settings-page.php:
|
25 |
msgid ""
|
26 |
"Please set some default values and which tags should, or should not, be "
|
27 |
"included. It may be necessary to exclude some tags if other plugins are "
|
@@ -31,90 +31,94 @@ msgstr ""
|
|
31 |
"incluídas. Pode ser necessário excluir algumas tags se outros plugins já as "
|
32 |
"estão a incluir."
|
33 |
|
|
|
|
|
|
|
|
|
34 |
# @ wd-fb-og
|
35 |
-
#: includes/settings-page.php:
|
36 |
msgid "Include Facebook Platform App ID (fb:app_id) tag"
|
37 |
msgstr "Incluir tag \"Facebook Platform App ID\" (fb:app_id)"
|
38 |
|
39 |
# @ wd-fb-og
|
40 |
-
#: includes/settings-page.php:
|
41 |
msgid "Facebook Platform App ID"
|
42 |
msgstr "Facebook Platform App ID"
|
43 |
|
44 |
# @ wd-fb-og
|
45 |
-
#: includes/settings-page.php:
|
46 |
msgid "Include Facebook Admin(s) ID (fb:admins) tag"
|
47 |
msgstr "Incluir tag com ID dos admin de Facebook (fb:admins)"
|
48 |
|
49 |
# @ wd-fb-og
|
50 |
-
#: includes/settings-page.php:
|
51 |
msgid "Facebook Admin(s) ID"
|
52 |
msgstr "ID do(s) Admin(s) no Facebook"
|
53 |
|
54 |
# @ wd-fb-og
|
55 |
-
#: includes/settings-page.php:
|
56 |
msgid "Comma separated if more than one"
|
57 |
msgstr "Separados por vírgulas se mais do que um"
|
58 |
|
59 |
# @ wd-fb-og
|
60 |
-
#: includes/settings-page.php:
|
61 |
msgid "Include locale (fb:locale) tag"
|
62 |
msgstr "Incluir tag \"Locale\" (fb:locale)"
|
63 |
|
64 |
# @ wd-fb-og
|
65 |
-
#: includes/settings-page.php:
|
66 |
msgid "Locale"
|
67 |
msgstr "Locale"
|
68 |
|
69 |
# @ wd-fb-og
|
70 |
-
#: includes/settings-page.php:
|
71 |
msgid "WordPress current locale/language"
|
72 |
msgstr "O \"locale\"/idíoma actual do WordPress"
|
73 |
|
74 |
# @ wd-fb-og
|
75 |
-
#: includes/settings-page.php:
|
76 |
msgid "List loaded from Facebook (online)"
|
77 |
msgstr "Lista carregada do Facebook (online)"
|
78 |
|
79 |
# @ wd-fb-og
|
80 |
-
#: includes/settings-page.php:
|
81 |
msgid "List loaded from local cache (offline)"
|
82 |
msgstr "Lista carregada da cache local (offline)"
|
83 |
|
84 |
# @ wd-fb-og
|
85 |
-
#: includes/settings-page.php:
|
86 |
msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
|
87 |
msgstr ""
|
88 |
"Vai perder quaisquer modificações que não tenha gravado. Tem a certeza?"
|
89 |
|
90 |
# @ wd-fb-og
|
91 |
-
#: includes/settings-page.php:
|
92 |
msgid "Reload from Facebook"
|
93 |
msgstr "(Re)carregar a partir do Facebook"
|
94 |
|
95 |
# @ wd-fb-og
|
96 |
-
#: includes/settings-page.php:
|
97 |
msgid "List not loaded"
|
98 |
msgstr "Lista não carregada"
|
99 |
|
100 |
# @ wd-fb-og
|
101 |
-
#: includes/settings-page.php:
|
102 |
msgid "Include Site Name (og:site_name) tag"
|
103 |
msgstr "Incluir tag Nome do site (og:site_name)"
|
104 |
|
105 |
# @ wd-fb-og
|
106 |
-
#: includes/settings-page.php:
|
107 |
msgid "Include Post/Page title (og:title) tag"
|
108 |
msgstr "Incluir tag Título do artigo/página (og:title)"
|
109 |
|
110 |
# @ wd-fb-og
|
111 |
-
#: includes/settings-page.php:
|
112 |
msgid "Include Schema.org \"itemprop\" Name tag"
|
113 |
msgstr "Incluir a tag \"itemprop Name\" do Schema.org"
|
114 |
|
115 |
# @ wd-fb-og
|
116 |
-
#: includes/settings-page.php:
|
117 |
-
#: includes/settings-page.php:
|
118 |
msgid ""
|
119 |
"Recommended for Google+ sharing purposes if no other plugin is setting it "
|
120 |
"already"
|
@@ -123,13 +127,13 @@ msgstr ""
|
|
123 |
"está a definir"
|
124 |
|
125 |
# @ wd-fb-og
|
126 |
-
#: includes/settings-page.php:
|
127 |
msgid "Include Twitter Card Title tag"
|
128 |
msgstr "Incluir tag Título do \"Twitter Card\""
|
129 |
|
130 |
# @ wd-fb-og
|
131 |
-
#: includes/settings-page.php:
|
132 |
-
#: includes/settings-page.php:
|
133 |
msgid ""
|
134 |
"Recommended for Twitter sharing purposes if no other plugin is setting it "
|
135 |
"already"
|
@@ -138,36 +142,37 @@ msgstr ""
|
|
138 |
"está a definir"
|
139 |
|
140 |
# @ wd-fb-og
|
141 |
-
#: includes/settings-page.php:
|
142 |
msgid "Include URL (og:url) tag"
|
143 |
msgstr "Incluir tag URL (og:url)"
|
144 |
|
145 |
-
#: includes/settings-page.php:
|
146 |
msgid "Include Twitter Card URL tag"
|
147 |
msgstr "Incluir tag URL do \"Twitter Card\""
|
148 |
|
149 |
# @ wd-fb-og
|
150 |
-
#: includes/settings-page.php:
|
151 |
msgid "Add trailing slash at the end"
|
152 |
msgstr "Adicionar barra invertida no final"
|
153 |
|
154 |
# @ wd-fb-og
|
155 |
-
#: includes/settings-page.php:
|
156 |
msgid "On the homepage will be"
|
157 |
msgstr "Na página inicial será"
|
158 |
|
159 |
# @ wd-fb-og
|
160 |
-
#: includes/settings-page.php:
|
161 |
msgid "Set Canonical URL"
|
162 |
msgstr "Incluir a tag URL Canónico"
|
163 |
|
164 |
# @ wd-fb-og
|
165 |
-
#: includes/settings-page.php:
|
166 |
msgid "Include Type (og:type) tag"
|
167 |
msgstr "Incluir tag Tipo (og:type)"
|
168 |
|
169 |
# @ wd-fb-og
|
170 |
-
#: includes/settings-page.php:
|
|
|
171 |
msgid ""
|
172 |
"Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\"; for the "
|
173 |
"homepage"
|
@@ -176,16 +181,16 @@ msgstr ""
|
|
176 |
"inicial"
|
177 |
|
178 |
# @ wd-fb-og
|
179 |
-
#: includes/settings-page.php:
|
180 |
msgid "Homepage type"
|
181 |
msgstr "Tipo para a página inicial"
|
182 |
|
183 |
# @ wd-fb-og
|
184 |
-
#: includes/settings-page.php:
|
185 |
msgid "Use"
|
186 |
msgstr "Utilizar"
|
187 |
|
188 |
-
#: includes/settings-page.php:
|
189 |
msgid ""
|
190 |
"Include published and modified dates (article:published_time, article:"
|
191 |
"modified_time and og:updated_time) tags"
|
@@ -193,72 +198,72 @@ msgstr ""
|
|
193 |
"Incluir tags com datas de publicação e modificação (article:published_time, "
|
194 |
"article:modified_time e og:updated_time)"
|
195 |
|
196 |
-
#: includes/settings-page.php:
|
197 |
msgid "Works for posts only"
|
198 |
msgstr "Funciona apenas para \"artigos\" (posts)"
|
199 |
|
200 |
# @ wd-fb-og
|
201 |
-
#: includes/settings-page.php:
|
202 |
msgid "Include article section (article:section) tags"
|
203 |
msgstr "Incluir tags Secção do artigo (article:section)"
|
204 |
|
205 |
-
#: includes/settings-page.php:
|
206 |
msgid "from the categories"
|
207 |
msgstr "a partir das categorias"
|
208 |
|
209 |
# @ wd-fb-og
|
210 |
-
#: includes/settings-page.php:
|
211 |
msgid "Include Publisher Page (article:publisher) tag"
|
212 |
msgstr "Incluir tag \"Publisher\" (article:publisher)"
|
213 |
|
214 |
-
#: includes/settings-page.php:
|
215 |
msgid "Links the website to the publisher Facebook Page."
|
216 |
msgstr "Associa o website à Página Facebook do mesmo"
|
217 |
|
218 |
-
#: includes/settings-page.php:
|
219 |
msgid "Website's Facebook Page"
|
220 |
msgstr "Página de Facebook do Website"
|
221 |
|
222 |
# @ wd-fb-og
|
223 |
-
#: includes/settings-page.php:
|
224 |
-
#: includes/settings-page.php:
|
225 |
msgid "Full URL with http://"
|
226 |
msgstr "URL completo com http://"
|
227 |
|
228 |
-
#: includes/settings-page.php:
|
229 |
msgid "Include Google+ \"publisher\" tag"
|
230 |
msgstr "Incluir tag \"Google+ publisher\""
|
231 |
|
232 |
-
#: includes/settings-page.php:
|
233 |
msgid "Links the website to the publisher Google+ Page."
|
234 |
msgstr "Associa o website à Página Google+ do mesmo"
|
235 |
|
236 |
-
#: includes/settings-page.php:
|
237 |
msgid "Website's Google+ Page"
|
238 |
msgstr "Página Google+ do Website"
|
239 |
|
240 |
# @ wd-fb-og
|
241 |
-
#: includes/settings-page.php:
|
242 |
msgid "Include Twitter Card Website Username tag"
|
243 |
msgstr "Incluir tag Username Twitter do Website do \"Twitter Card\""
|
244 |
|
245 |
-
#: includes/settings-page.php:
|
246 |
msgid "Links the website to the publisher Twitter Username."
|
247 |
msgstr "Associa o website ao Username Twitter do mesmo"
|
248 |
|
249 |
-
#: includes/settings-page.php:
|
250 |
msgid "Website's Twitter Username"
|
251 |
msgstr "Utilizador Twitter do Website"
|
252 |
|
253 |
-
#: includes/settings-page.php:
|
254 |
msgid "Twitter username (without @)"
|
255 |
msgstr "Utilizador do Twitter (sem @)"
|
256 |
|
257 |
-
#: includes/settings-page.php:
|
258 |
msgid "Include Author Profile (article:author) tag"
|
259 |
msgstr "Incluir tag \"Autor do artigo\" (article:author)"
|
260 |
|
261 |
-
#: includes/settings-page.php:
|
262 |
msgid ""
|
263 |
"Links the article to the author Facebook Profile. The user's Facebook "
|
264 |
"profile URL must be filled in."
|
@@ -267,19 +272,19 @@ msgstr ""
|
|
267 |
"Facebook do utilizador tem de estar preenchido."
|
268 |
|
269 |
# @ wd-fb-og
|
270 |
-
#: includes/settings-page.php:
|
271 |
msgid "Include Meta Author tag"
|
272 |
msgstr "Incluir a tag \"Meta Author\""
|
273 |
|
274 |
-
#: includes/settings-page.php:
|
275 |
msgid "Sets the article author name"
|
276 |
msgstr "Define o nome do autor do artigo"
|
277 |
|
278 |
-
#: includes/settings-page.php:
|
279 |
msgid "Include Google+ link rel \"author\" tag"
|
280 |
msgstr "Incluir tag \"Google+ link rel author\""
|
281 |
|
282 |
-
#: includes/settings-page.php:
|
283 |
msgid ""
|
284 |
"Links the article to the author Google+ Profile (authorship). The user's "
|
285 |
"Google+ profile URL must be filled in."
|
@@ -287,11 +292,11 @@ msgstr ""
|
|
287 |
"Associa o artigo ao perfil Google+ do autor do mesmo. O URL de Perfil Google"
|
288 |
"+ do utilizador tem de estar preenchido."
|
289 |
|
290 |
-
#: includes/settings-page.php:
|
291 |
msgid "Include Twitter Card Creator tag"
|
292 |
msgstr "Incluir tag Autor do \"Twitter Card\""
|
293 |
|
294 |
-
#: includes/settings-page.php:
|
295 |
msgid ""
|
296 |
"Links the article to the author Twitter profile. The user's Twitter user "
|
297 |
"must be filled in."
|
@@ -299,72 +304,73 @@ msgstr ""
|
|
299 |
"Associa o artigo ao perfil Twitter do autor do mesmo. O Utilizador Twitter "
|
300 |
"tem de estar preenchido."
|
301 |
|
302 |
-
#: includes/settings-page.php:
|
303 |
msgid "Hide author on pages"
|
304 |
msgstr "Não mostrar autor nas páginas"
|
305 |
|
306 |
-
#: includes/settings-page.php:
|
307 |
msgid "Hides all author tags on pages."
|
308 |
msgstr "Esconder todas as tags de autor nas páginas."
|
309 |
|
310 |
# @ wd-fb-og
|
311 |
-
#: includes/settings-page.php:
|
312 |
msgid "Include Description (og:description) tag"
|
313 |
msgstr "Incluir tag Descrição (og:description)"
|
314 |
|
315 |
# @ wd-fb-og
|
316 |
-
#: includes/settings-page.php:
|
317 |
msgid "Include Meta Description tag"
|
318 |
msgstr "Incluir a tag \"Meta Description\""
|
319 |
|
320 |
# @ wd-fb-og
|
321 |
-
#: includes/settings-page.php:
|
322 |
msgid "Recommended for SEO purposes if no other plugin is setting it already"
|
323 |
msgstr ""
|
324 |
"Recomendado para efeitos de Optimização para Motores de Busca, se outro "
|
325 |
"plugin ainda não a está a definir"
|
326 |
|
327 |
# @ wd-fb-og
|
328 |
-
#: includes/settings-page.php:
|
329 |
msgid "Include Schema.org \"itemprop\" Description tag"
|
330 |
msgstr "Incluir a tag \"itemprop Description\" do Schema.org"
|
331 |
|
332 |
# @ wd-fb-og
|
333 |
-
#: includes/settings-page.php:
|
334 |
msgid "Include Twitter Card Description tag"
|
335 |
msgstr "Incluir tag Descrição do \"Twitter Card\""
|
336 |
|
337 |
# @ wd-fb-og
|
338 |
-
#: includes/settings-page.php:
|
339 |
msgid "Description maximum length"
|
340 |
msgstr "Comprimento máximo da descrição"
|
341 |
|
342 |
# @ wd-fb-og
|
343 |
-
#: includes/settings-page.php:
|
344 |
msgid "0 or blank for no maximum length"
|
345 |
msgstr "0 ou em branco para não definir máximo"
|
346 |
|
347 |
# @ wd-fb-og
|
348 |
-
#: includes/settings-page.php:
|
349 |
msgid "Homepage description"
|
350 |
msgstr "Descrição da página inicial"
|
351 |
|
352 |
# @ wd-fb-og
|
353 |
-
#: includes/settings-page.php:
|
354 |
msgid "The description of your front page:"
|
355 |
msgstr "A descrição da sua página inicial:"
|
356 |
|
357 |
# @ wd-fb-og
|
358 |
-
#: includes/settings-page.php:
|
359 |
msgid "Website tagline"
|
360 |
msgstr "Descrição do site"
|
361 |
|
362 |
# @ wd-fb-og
|
363 |
-
#: includes/settings-page.php:
|
364 |
msgid "Custom text"
|
365 |
msgstr "Texto personalizado"
|
366 |
|
367 |
-
#: includes/settings-page.php:
|
|
|
368 |
msgid ""
|
369 |
"WPML users: Set the default language description here, save changes and then "
|
370 |
"go to <a href=\"%s\">WPML > String translation</a> to set it for other "
|
@@ -375,12 +381,12 @@ msgstr ""
|
|
375 |
"defini-la para outros idiomas."
|
376 |
|
377 |
# @ wd-fb-og
|
378 |
-
#: includes/settings-page.php:
|
379 |
msgid "Include Image (og:image) tag"
|
380 |
msgstr "Incluir tag Imagem (og:image)"
|
381 |
|
382 |
# @ wd-fb-og
|
383 |
-
#: includes/settings-page.php:
|
384 |
msgid ""
|
385 |
"All images MUST have at least 200px on both dimensions in order to Facebook "
|
386 |
"to load them at all.<br/>1200x630px for optimal results.<br/>Minimum of "
|
@@ -390,11 +396,11 @@ msgstr ""
|
|
390 |
"o Facebook as carregue.<br/>1200x630px para resultados optimizados.<br/>Um "
|
391 |
"mínimo de 600x315px é recomendado."
|
392 |
|
393 |
-
#: includes/settings-page.php:
|
394 |
msgid "Include Image size (og:image:width and og:image:height) tags"
|
395 |
msgstr "Incluir tags de Tamanho de Imagem (og:image:width e og:image:height)"
|
396 |
|
397 |
-
#: includes/settings-page.php:
|
398 |
msgid ""
|
399 |
"Recommended only if Facebook is having problems loading the image when the "
|
400 |
"post is shared for the first time."
|
@@ -403,43 +409,44 @@ msgstr ""
|
|
403 |
"artigo é partilhado pela primeira vez."
|
404 |
|
405 |
# @ wd-fb-og
|
406 |
-
#: includes/settings-page.php:
|
407 |
msgid "Include Schema.org \"itemprop\" Image tag"
|
408 |
msgstr "Incluir a tag \"itemprop Image\" do Schema.org"
|
409 |
|
410 |
# @ wd-fb-og
|
411 |
-
#: includes/settings-page.php:
|
412 |
msgid "Include Twitter Card Image tag"
|
413 |
msgstr "Incluir tag Imagem do \"Twitter Card\""
|
414 |
|
415 |
# @ wd-fb-og
|
416 |
-
#: includes/settings-page.php:
|
417 |
msgid "Default image"
|
418 |
msgstr "Imagem por omissão"
|
419 |
|
420 |
# @ wd-fb-og
|
421 |
-
#: includes/settings-page.php:
|
|
|
422 |
msgid "Recommended size: 1200x630px"
|
423 |
msgstr "Tamanho recomendado: 1200x630px"
|
424 |
|
425 |
# @ wd-fb-og
|
426 |
-
#: includes/settings-page.php:
|
427 |
msgid "Add image to RSS/RSS2 feeds"
|
428 |
msgstr "Incluir a imagem aos feeds RSS/RSS2"
|
429 |
|
430 |
# @ wd-fb-og
|
431 |
-
#: includes/settings-page.php:
|
432 |
msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
|
433 |
msgstr ""
|
434 |
"Para aplicação de posts automáticos como o RSS Graffitti, twitterfeed, etc..."
|
435 |
|
436 |
# @ wd-fb-og
|
437 |
-
#: includes/settings-page.php:
|
438 |
msgid "On posts/pages"
|
439 |
msgstr "Nos artigos/páginas"
|
440 |
|
441 |
# @ wd-fb-og
|
442 |
-
#: includes/settings-page.php:
|
443 |
msgid ""
|
444 |
"Image will be fetched from the specific \"Open Graph Image\" custom field on "
|
445 |
"the post"
|
@@ -448,7 +455,7 @@ msgstr ""
|
|
448 |
"no artigo"
|
449 |
|
450 |
# @ wd-fb-og
|
451 |
-
#: includes/settings-page.php:
|
452 |
msgid ""
|
453 |
"If it's not set, image will be fetched from post/page featured/thumbnail "
|
454 |
"picture"
|
@@ -457,42 +464,54 @@ msgstr ""
|
|
457 |
"página"
|
458 |
|
459 |
# @ wd-fb-og
|
460 |
-
#: includes/settings-page.php:
|
461 |
msgid "If it doesn't exist, use the first image from the post/page content"
|
462 |
msgstr ""
|
463 |
"Se não existir, será utilizada a primeira imagem no conteúdo do artigo/página"
|
464 |
|
465 |
# @ wd-fb-og
|
466 |
-
#: includes/settings-page.php:
|
467 |
msgid "If it doesn't exist, use first image from the post/page media gallery"
|
468 |
msgstr ""
|
469 |
"Se não existir, será usada a primeira imagem na galeria multimédia do artigo/"
|
470 |
"página"
|
471 |
|
472 |
# @ wd-fb-og
|
473 |
-
#: includes/settings-page.php:
|
474 |
msgid "If it doesn't exist, use the default image above"
|
475 |
msgstr "Se não existir, utilizar a imagem por omissão em cima"
|
476 |
|
477 |
-
#: includes/settings-page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
478 |
msgid "Twitter Card Type"
|
479 |
msgstr "Tipo de cartão do Twitter"
|
480 |
|
481 |
-
#: includes/settings-page.php:
|
482 |
msgid "Summary Card"
|
483 |
msgstr "Resumo"
|
484 |
|
485 |
-
#: includes/settings-page.php:
|
486 |
msgid "Summary Card with Large Image"
|
487 |
msgstr "Resumo com imagem grande"
|
488 |
|
489 |
# @ wd-fb-og
|
490 |
-
#: includes/settings-page.php:
|
491 |
msgid "3rd Party Integration"
|
492 |
msgstr "Integração com outros plugins"
|
493 |
|
494 |
# @ wd-fb-og
|
495 |
-
#: includes/settings-page.php:
|
496 |
msgid ""
|
497 |
"It's HIGHLY recommended to go to <a href=\"admin.php?page=wpseo_social\" "
|
498 |
"target=\"_blank\">SEO > Social</a> and disable \"Add Open Graph meta data"
|
@@ -504,7 +523,7 @@ msgstr ""
|
|
504 |
"\"Acrescentar metadados Twitter card\" e \"Add Google+ specific post meta "
|
505 |
"data\""
|
506 |
|
507 |
-
#: includes/settings-page.php:
|
508 |
msgid ""
|
509 |
"even if you don't enable integration bellow. You will get duplicate tags if "
|
510 |
"you don't do this."
|
@@ -513,15 +532,15 @@ msgstr ""
|
|
513 |
"fizer."
|
514 |
|
515 |
# @ wd-fb-og
|
516 |
-
#: includes/settings-page.php:
|
517 |
msgid "Use title, url (canonical) and description from WPSEO"
|
518 |
msgstr "Utilizar título, url (canónico) e descrição do WPSEO"
|
519 |
|
520 |
-
#: includes/settings-page.php:
|
521 |
msgid "Use Product Category thumbnail as Open Graph Image"
|
522 |
msgstr "Utilizar miniaturas de Categorias de Produto como \"Open Graph Image\""
|
523 |
|
524 |
-
#: includes/settings-page.php:
|
525 |
msgid ""
|
526 |
"Recommended if you set large thumbnails for Product Categories and want to "
|
527 |
"use them as Open Graph Images on listing pages"
|
@@ -530,17 +549,17 @@ msgstr ""
|
|
530 |
"Categorias de Produto e deseja usar as mesmas como \"Open Graph Image\" nas "
|
531 |
"listagens de categorias de produto."
|
532 |
|
533 |
-
#: includes/settings-page.php:
|
534 |
msgid "Use Product Gallery images as additional Open Graph Images"
|
535 |
msgstr ""
|
536 |
"Utilizar as imagens da Galeria de Produtos como \"Open Graph Image\" "
|
537 |
"adicionais"
|
538 |
|
539 |
-
#: includes/settings-page.php:
|
540 |
msgid "Experimental"
|
541 |
msgstr "Experimental"
|
542 |
|
543 |
-
#: includes/settings-page.php:
|
544 |
msgid ""
|
545 |
"Uses additional Product Gallery images so, when the product is shared on "
|
546 |
"Facebook, the user can choose what image to use"
|
@@ -550,29 +569,29 @@ msgstr ""
|
|
550 |
"partilha"
|
551 |
|
552 |
# @ wd-fb-og
|
553 |
-
#: includes/settings-page.php:
|
554 |
msgid "Add SubHeading to Post/Page title"
|
555 |
msgstr "Adicionar \"SubHeading\" ao título do artigo/página"
|
556 |
|
557 |
-
#: includes/settings-page.php:
|
558 |
msgid "SubHeading position"
|
559 |
msgstr "Posição do \"SubHeading\""
|
560 |
|
561 |
-
#: includes/settings-page.php:
|
562 |
msgid "After"
|
563 |
msgstr "Depois"
|
564 |
|
565 |
-
#: includes/settings-page.php:
|
566 |
msgid "Before"
|
567 |
msgstr "Antes"
|
568 |
|
569 |
# @ wd-fb-og
|
570 |
-
#: includes/settings-page.php:
|
571 |
msgid "Use BDP listing contents as OG tags"
|
572 |
msgstr "Utilizar o conteúdo dos anúncios BDP como tags OG"
|
573 |
|
574 |
# @ wd-fb-og
|
575 |
-
#: includes/settings-page.php:
|
576 |
msgid ""
|
577 |
"Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and "
|
578 |
"\"Include Image\" options above is HIGHLY recommended"
|
@@ -582,29 +601,29 @@ msgstr ""
|
|
582 |
"image)\" é ALTAMENTE recomendado"
|
583 |
|
584 |
# @ wd-fb-og
|
585 |
-
#: includes/settings-page.php:
|
586 |
msgid "You don't have any compatible 3rd Party plugin installed/active."
|
587 |
msgstr "Não tem nenhum plugin compatível instalado/activo."
|
588 |
|
589 |
# @ wd-fb-og
|
590 |
-
#: includes/settings-page.php:
|
591 |
msgid "This plugin is currently compatible with:"
|
592 |
msgstr "Este plugin é actualmente compatível com:"
|
593 |
|
594 |
-
#: includes/settings-page.php:
|
595 |
msgid "Advanced settings"
|
596 |
msgstr "Definições avançadas"
|
597 |
|
598 |
-
#: includes/settings-page.php:
|
599 |
msgid "Don't mess with this unless you know what you're doing"
|
600 |
msgstr "Não mexer nestas configurações se não souber o que está a fazer"
|
601 |
|
602 |
-
#: includes/settings-page.php:
|
603 |
msgid "Force getimagesize on local file even if allow_url_fopen=1"
|
604 |
msgstr ""
|
605 |
"Forçar o \"getimagesize\" no ficheiro local mesmo que allow_url_fopen=1"
|
606 |
|
607 |
-
#: includes/settings-page.php:
|
608 |
msgid ""
|
609 |
"May cause problems with some multisite configurations but fix \"HTTP request "
|
610 |
"failed\" errors"
|
@@ -612,91 +631,96 @@ msgstr ""
|
|
612 |
"Pode causar problemas com algumas configurações \"multisite\" mas corrige "
|
613 |
"erros \"HTTP request failed\""
|
614 |
|
615 |
-
#: includes/settings-page.php:
|
616 |
msgid "Try to update Facebook Open Graph Tags cache when saving the post"
|
617 |
msgstr ""
|
618 |
"Tentar actualizar a cache das Facebook Open Graph Tags ao gravar um post"
|
619 |
|
620 |
-
#: includes/settings-page.php:
|
621 |
msgid "Supress Facebook Open Graph Tags cache updated notice"
|
622 |
msgstr ""
|
623 |
"Esconder notificação de actualização de cache das Facebook Open Graph Tags"
|
624 |
|
|
|
|
|
|
|
|
|
625 |
# @ wd-fb-og
|
626 |
-
#: includes/settings-page.php:
|
627 |
msgid "Test your URLs at Facebook URL Linter / Debugger"
|
628 |
msgstr "Teste os seus URLs no \"Facebook URL Linter / Debugger\""
|
629 |
|
630 |
-
#: includes/settings-page.php:
|
631 |
msgid "Test (and request approval for) your URLs at Twitter Card validator"
|
632 |
msgstr "Teste (e solicite aprovação dos) URLs no \"Twitter Card validator\""
|
633 |
|
634 |
# @ wd-fb-og
|
635 |
-
#: includes/settings-page.php:
|
636 |
msgid "About the Open Graph Protocol (on Facebook)"
|
637 |
msgstr "Sobre o Protocolo Open Graph (no Facebook)"
|
638 |
|
639 |
# @ wd-fb-og
|
640 |
-
#: includes/settings-page.php:
|
641 |
msgid "The Open Graph Protocol (official website)"
|
642 |
msgstr "O Protocolo Open Graph (website oficial)"
|
643 |
|
644 |
-
#: includes/settings-page.php:
|
645 |
msgid "About Twitter Cards"
|
646 |
msgstr "Sobre os \"Twitter Cards\""
|
647 |
|
648 |
# @ wd-fb-og
|
649 |
-
#: includes/settings-page.php:
|
650 |
msgid "Plugin official URL"
|
651 |
msgstr "URL oficial do plugin"
|
652 |
|
653 |
# @ wd-fb-og
|
654 |
-
#: includes/settings-page.php:
|
655 |
msgid "Author's website: Webdados"
|
656 |
msgstr "Website do autor: Webdados"
|
657 |
|
658 |
# @ wd-fb-og
|
659 |
-
#: includes/settings-page.php:
|
660 |
msgid "Author's Facebook page: Webdados"
|
661 |
msgstr "Página Facebook do autor: Webdados"
|
662 |
|
663 |
# @ wd-fb-og
|
664 |
-
#: includes/settings-page.php:
|
665 |
msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
|
666 |
msgstr "Conta Twitter do autor: @Wonderm00n<br/>(fundador da Webdados)"
|
667 |
|
668 |
-
#: includes/settings-page.php:
|
669 |
msgid "About this plugin"
|
670 |
msgstr "Sobre este plugin"
|
671 |
|
672 |
-
#: includes/settings-page.php:
|
673 |
msgid "Support forum"
|
674 |
msgstr "Fórum de suporte"
|
675 |
|
676 |
-
#: includes/settings-page.php:
|
677 |
msgid "Premium technical support or custom WordPress development"
|
678 |
msgstr "Suporte técnico premium ou desenvolvimento WordPress à medida"
|
679 |
|
680 |
-
#: includes/settings-page.php:
|
|
|
681 |
msgid "Please contact %s"
|
682 |
msgstr "Por favor contactar %s"
|
683 |
|
684 |
-
#: includes/settings-page.php:
|
685 |
msgid "Please rate our plugin at WordPress.org"
|
686 |
msgstr "Por favor classifique o nosso plugin no WordPress.org"
|
687 |
|
688 |
# @ wd-fb-og
|
689 |
-
#: includes/settings-page.php:
|
690 |
msgid "Useful links"
|
691 |
msgstr "Links úteis"
|
692 |
|
693 |
# @ wd-fb-og
|
694 |
-
#: includes/settings-page.php:
|
695 |
msgid "Donate"
|
696 |
msgstr "Doar"
|
697 |
|
698 |
# @ wd-fb-og
|
699 |
-
#: includes/settings-page.php:
|
700 |
msgid ""
|
701 |
"If you find this plugin useful and want to make a contribution towards "
|
702 |
"future development please consider making a small, or big ;-), donation."
|
@@ -705,55 +729,72 @@ msgstr ""
|
|
705 |
"desenvolvimento no futuro, considere fazer uma pequena, ou grande ;-), "
|
706 |
"doação."
|
707 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
708 |
# @ wd-fb-og
|
709 |
-
#: wonderm00n-open-graph.php:
|
710 |
msgid "Use this image:"
|
711 |
msgstr "Utilizar esta imagem:"
|
712 |
|
713 |
# @ wd-fb-og
|
714 |
-
#: wonderm00n-open-graph.php:
|
715 |
msgid "Upload/Choose Open Graph Image"
|
716 |
msgstr "Carregar/Escolher Imagem Open Graph"
|
717 |
|
718 |
# @ wd-fb-og
|
719 |
-
#: wonderm00n-open-graph.php:
|
720 |
msgid "Clear field"
|
721 |
msgstr "Limpar campo"
|
722 |
|
723 |
-
#: wonderm00n-open-graph.php:
|
724 |
msgid "URL failed:"
|
725 |
msgstr "Falha no URL:"
|
726 |
|
727 |
-
#: wonderm00n-open-graph.php:
|
728 |
msgid "Facebook returned:"
|
729 |
msgstr "O Facebook retornou:"
|
730 |
|
731 |
-
#: wonderm00n-open-graph.php:
|
732 |
msgid "Facebook Open Graph Tags cache updated/purged."
|
733 |
msgstr "Cache das Facebook Open Graph Tags actualizada."
|
734 |
|
735 |
-
#: wonderm00n-open-graph.php:
|
736 |
msgid "Share this on Facebook"
|
737 |
msgstr "Partilhe isto no Facebook"
|
738 |
|
739 |
-
#: wonderm00n-open-graph.php:
|
740 |
msgid "Error: Facebook Open Graph Tags cache NOT updated/purged."
|
741 |
msgstr "Erro: Cache das Facebook Open Graph Tags NÃO actualizada"
|
742 |
|
743 |
# @ wd-fb-og
|
744 |
-
#: wonderm00n-open-graph.php:
|
745 |
msgid "Use as Image Open Graph Tag"
|
746 |
msgstr "Utilizar como Imagem Open Graph"
|
747 |
|
748 |
-
#: wonderm00n-open-graph.php:
|
749 |
msgid "Google+"
|
750 |
msgstr "Google+"
|
751 |
|
752 |
-
#: wonderm00n-open-graph.php:
|
753 |
msgid "Facebook profile URL"
|
754 |
msgstr "URL de Perfil Facebook"
|
755 |
|
756 |
-
#: wonderm00n-open-graph.php:
|
757 |
msgid ""
|
758 |
"Please ignore the (dumb) Yoast WordPress SEO warning regarding open graph "
|
759 |
"issues with this plugin. Just disable WPSEO Social settings at"
|
@@ -762,7 +803,7 @@ msgstr ""
|
|
762 |
"problemas \"open graph\" com este plugin. Simplesmente inactive as "
|
763 |
"definições Social do WPSEO em"
|
764 |
|
765 |
-
#: wonderm00n-open-graph.php:
|
766 |
msgid "SEO > Social"
|
767 |
msgstr "SEO > Social"
|
768 |
|
@@ -791,14 +832,3 @@ msgstr ""
|
|
791 |
# @ wd-fb-og
|
792 |
#~ msgid "please give it a high Rating"
|
793 |
#~ msgstr "dê-lhe uma nota elevada"
|
794 |
-
|
795 |
-
#~ msgid "Save Changes"
|
796 |
-
#~ msgstr "Guardar alterações"
|
797 |
-
|
798 |
-
#, fuzzy
|
799 |
-
#~ msgid "Search for"
|
800 |
-
#~ msgstr "Pesquisar..."
|
801 |
-
|
802 |
-
#, fuzzy
|
803 |
-
#~ msgid "Archives"
|
804 |
-
#~ msgstr "arquivo"
|
3 |
"Project-Id-Version: Facebook Open Graph Meta Tags for WordPress v1.6.1\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wonderm00ns-simple-"
|
5 |
"facebook-open-graph-tags\n"
|
6 |
+
"POT-Creation-Date: 2016-09-26 15:00+0100\n"
|
7 |
+
"PO-Revision-Date: 2016-09-26 15:00+0100\n"
|
8 |
"Last-Translator: Wonderm00n <wonderm00n@gmail.com>\n"
|
9 |
"Language-Team: Webdados <info@webdados.pt>\n"
|
10 |
"Language: pt_PT\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
+
"X-Generator: Poedit 1.8.8\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
18 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
# @ wd-fb-og
|
24 |
+
#: includes/settings-page.php:96
|
25 |
msgid ""
|
26 |
"Please set some default values and which tags should, or should not, be "
|
27 |
"included. It may be necessary to exclude some tags if other plugins are "
|
31 |
"incluídas. Pode ser necessário excluir algumas tags se outros plugins já as "
|
32 |
"estão a incluir."
|
33 |
|
34 |
+
#: includes/settings-page.php:107 wonderm00n-open-graph.php:831
|
35 |
+
msgid "Settings"
|
36 |
+
msgstr "Opções"
|
37 |
+
|
38 |
# @ wd-fb-og
|
39 |
+
#: includes/settings-page.php:111
|
40 |
msgid "Include Facebook Platform App ID (fb:app_id) tag"
|
41 |
msgstr "Incluir tag \"Facebook Platform App ID\" (fb:app_id)"
|
42 |
|
43 |
# @ wd-fb-og
|
44 |
+
#: includes/settings-page.php:117
|
45 |
msgid "Facebook Platform App ID"
|
46 |
msgstr "Facebook Platform App ID"
|
47 |
|
48 |
# @ wd-fb-og
|
49 |
+
#: includes/settings-page.php:126
|
50 |
msgid "Include Facebook Admin(s) ID (fb:admins) tag"
|
51 |
msgstr "Incluir tag com ID dos admin de Facebook (fb:admins)"
|
52 |
|
53 |
# @ wd-fb-og
|
54 |
+
#: includes/settings-page.php:132
|
55 |
msgid "Facebook Admin(s) ID"
|
56 |
msgstr "ID do(s) Admin(s) no Facebook"
|
57 |
|
58 |
# @ wd-fb-og
|
59 |
+
#: includes/settings-page.php:137
|
60 |
msgid "Comma separated if more than one"
|
61 |
msgstr "Separados por vírgulas se mais do que um"
|
62 |
|
63 |
# @ wd-fb-og
|
64 |
+
#: includes/settings-page.php:145
|
65 |
msgid "Include locale (fb:locale) tag"
|
66 |
msgstr "Incluir tag \"Locale\" (fb:locale)"
|
67 |
|
68 |
# @ wd-fb-og
|
69 |
+
#: includes/settings-page.php:151
|
70 |
msgid "Locale"
|
71 |
msgstr "Locale"
|
72 |
|
73 |
# @ wd-fb-og
|
74 |
+
#: includes/settings-page.php:154
|
75 |
msgid "WordPress current locale/language"
|
76 |
msgstr "O \"locale\"/idíoma actual do WordPress"
|
77 |
|
78 |
# @ wd-fb-og
|
79 |
+
#: includes/settings-page.php:206
|
80 |
msgid "List loaded from Facebook (online)"
|
81 |
msgstr "Lista carregada do Facebook (online)"
|
82 |
|
83 |
# @ wd-fb-og
|
84 |
+
#: includes/settings-page.php:209
|
85 |
msgid "List loaded from local cache (offline)"
|
86 |
msgstr "Lista carregada da cache local (offline)"
|
87 |
|
88 |
# @ wd-fb-og
|
89 |
+
#: includes/settings-page.php:209
|
90 |
msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
|
91 |
msgstr ""
|
92 |
"Vai perder quaisquer modificações que não tenha gravado. Tem a certeza?"
|
93 |
|
94 |
# @ wd-fb-og
|
95 |
+
#: includes/settings-page.php:209
|
96 |
msgid "Reload from Facebook"
|
97 |
msgstr "(Re)carregar a partir do Facebook"
|
98 |
|
99 |
# @ wd-fb-og
|
100 |
+
#: includes/settings-page.php:211
|
101 |
msgid "List not loaded"
|
102 |
msgstr "Lista não carregada"
|
103 |
|
104 |
# @ wd-fb-og
|
105 |
+
#: includes/settings-page.php:222
|
106 |
msgid "Include Site Name (og:site_name) tag"
|
107 |
msgstr "Incluir tag Nome do site (og:site_name)"
|
108 |
|
109 |
# @ wd-fb-og
|
110 |
+
#: includes/settings-page.php:231
|
111 |
msgid "Include Post/Page title (og:title) tag"
|
112 |
msgstr "Incluir tag Título do artigo/página (og:title)"
|
113 |
|
114 |
# @ wd-fb-og
|
115 |
+
#: includes/settings-page.php:237
|
116 |
msgid "Include Schema.org \"itemprop\" Name tag"
|
117 |
msgstr "Incluir a tag \"itemprop Name\" do Schema.org"
|
118 |
|
119 |
# @ wd-fb-og
|
120 |
+
#: includes/settings-page.php:244 includes/settings-page.php:497
|
121 |
+
#: includes/settings-page.php:590
|
122 |
msgid ""
|
123 |
"Recommended for Google+ sharing purposes if no other plugin is setting it "
|
124 |
"already"
|
127 |
"está a definir"
|
128 |
|
129 |
# @ wd-fb-og
|
130 |
+
#: includes/settings-page.php:249
|
131 |
msgid "Include Twitter Card Title tag"
|
132 |
msgstr "Incluir tag Título do \"Twitter Card\""
|
133 |
|
134 |
# @ wd-fb-og
|
135 |
+
#: includes/settings-page.php:256 includes/settings-page.php:509
|
136 |
+
#: includes/settings-page.php:602
|
137 |
msgid ""
|
138 |
"Recommended for Twitter sharing purposes if no other plugin is setting it "
|
139 |
"already"
|
142 |
"está a definir"
|
143 |
|
144 |
# @ wd-fb-og
|
145 |
+
#: includes/settings-page.php:264
|
146 |
msgid "Include URL (og:url) tag"
|
147 |
msgstr "Incluir tag URL (og:url)"
|
148 |
|
149 |
+
#: includes/settings-page.php:270
|
150 |
msgid "Include Twitter Card URL tag"
|
151 |
msgstr "Incluir tag URL do \"Twitter Card\""
|
152 |
|
153 |
# @ wd-fb-og
|
154 |
+
#: includes/settings-page.php:276
|
155 |
msgid "Add trailing slash at the end"
|
156 |
msgstr "Adicionar barra invertida no final"
|
157 |
|
158 |
# @ wd-fb-og
|
159 |
+
#: includes/settings-page.php:281
|
160 |
msgid "On the homepage will be"
|
161 |
msgstr "Na página inicial será"
|
162 |
|
163 |
# @ wd-fb-og
|
164 |
+
#: includes/settings-page.php:286
|
165 |
msgid "Set Canonical URL"
|
166 |
msgstr "Incluir a tag URL Canónico"
|
167 |
|
168 |
# @ wd-fb-og
|
169 |
+
#: includes/settings-page.php:299
|
170 |
msgid "Include Type (og:type) tag"
|
171 |
msgstr "Incluir tag Tipo (og:type)"
|
172 |
|
173 |
# @ wd-fb-og
|
174 |
+
#: includes/settings-page.php:304
|
175 |
+
#, php-format
|
176 |
msgid ""
|
177 |
"Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\"; for the "
|
178 |
"homepage"
|
181 |
"inicial"
|
182 |
|
183 |
# @ wd-fb-og
|
184 |
+
#: includes/settings-page.php:309
|
185 |
msgid "Homepage type"
|
186 |
msgstr "Tipo para a página inicial"
|
187 |
|
188 |
# @ wd-fb-og
|
189 |
+
#: includes/settings-page.php:311 includes/settings-page.php:533
|
190 |
msgid "Use"
|
191 |
msgstr "Utilizar"
|
192 |
|
193 |
+
#: includes/settings-page.php:322
|
194 |
msgid ""
|
195 |
"Include published and modified dates (article:published_time, article:"
|
196 |
"modified_time and og:updated_time) tags"
|
198 |
"Incluir tags com datas de publicação e modificação (article:published_time, "
|
199 |
"article:modified_time e og:updated_time)"
|
200 |
|
201 |
+
#: includes/settings-page.php:327 includes/settings-page.php:340
|
202 |
msgid "Works for posts only"
|
203 |
msgstr "Funciona apenas para \"artigos\" (posts)"
|
204 |
|
205 |
# @ wd-fb-og
|
206 |
+
#: includes/settings-page.php:335
|
207 |
msgid "Include article section (article:section) tags"
|
208 |
msgstr "Incluir tags Secção do artigo (article:section)"
|
209 |
|
210 |
+
#: includes/settings-page.php:340
|
211 |
msgid "from the categories"
|
212 |
msgstr "a partir das categorias"
|
213 |
|
214 |
# @ wd-fb-og
|
215 |
+
#: includes/settings-page.php:348
|
216 |
msgid "Include Publisher Page (article:publisher) tag"
|
217 |
msgstr "Incluir tag \"Publisher\" (article:publisher)"
|
218 |
|
219 |
+
#: includes/settings-page.php:353
|
220 |
msgid "Links the website to the publisher Facebook Page."
|
221 |
msgstr "Associa o website à Página Facebook do mesmo"
|
222 |
|
223 |
+
#: includes/settings-page.php:358
|
224 |
msgid "Website's Facebook Page"
|
225 |
msgstr "Página de Facebook do Website"
|
226 |
|
227 |
# @ wd-fb-og
|
228 |
+
#: includes/settings-page.php:363 includes/settings-page.php:383
|
229 |
+
#: includes/settings-page.php:613 includes/settings-page.php:667
|
230 |
msgid "Full URL with http://"
|
231 |
msgstr "URL completo com http://"
|
232 |
|
233 |
+
#: includes/settings-page.php:368
|
234 |
msgid "Include Google+ \"publisher\" tag"
|
235 |
msgstr "Incluir tag \"Google+ publisher\""
|
236 |
|
237 |
+
#: includes/settings-page.php:373
|
238 |
msgid "Links the website to the publisher Google+ Page."
|
239 |
msgstr "Associa o website à Página Google+ do mesmo"
|
240 |
|
241 |
+
#: includes/settings-page.php:378
|
242 |
msgid "Website's Google+ Page"
|
243 |
msgstr "Página Google+ do Website"
|
244 |
|
245 |
# @ wd-fb-og
|
246 |
+
#: includes/settings-page.php:388
|
247 |
msgid "Include Twitter Card Website Username tag"
|
248 |
msgstr "Incluir tag Username Twitter do Website do \"Twitter Card\""
|
249 |
|
250 |
+
#: includes/settings-page.php:393
|
251 |
msgid "Links the website to the publisher Twitter Username."
|
252 |
msgstr "Associa o website ao Username Twitter do mesmo"
|
253 |
|
254 |
+
#: includes/settings-page.php:398
|
255 |
msgid "Website's Twitter Username"
|
256 |
msgstr "Utilizador Twitter do Website"
|
257 |
|
258 |
+
#: includes/settings-page.php:403 wonderm00n-open-graph.php:1056
|
259 |
msgid "Twitter username (without @)"
|
260 |
msgstr "Utilizador do Twitter (sem @)"
|
261 |
|
262 |
+
#: includes/settings-page.php:412
|
263 |
msgid "Include Author Profile (article:author) tag"
|
264 |
msgstr "Incluir tag \"Autor do artigo\" (article:author)"
|
265 |
|
266 |
+
#: includes/settings-page.php:417
|
267 |
msgid ""
|
268 |
"Links the article to the author Facebook Profile. The user's Facebook "
|
269 |
"profile URL must be filled in."
|
272 |
"Facebook do utilizador tem de estar preenchido."
|
273 |
|
274 |
# @ wd-fb-og
|
275 |
+
#: includes/settings-page.php:422
|
276 |
msgid "Include Meta Author tag"
|
277 |
msgstr "Incluir a tag \"Meta Author\""
|
278 |
|
279 |
+
#: includes/settings-page.php:429
|
280 |
msgid "Sets the article author name"
|
281 |
msgstr "Define o nome do autor do artigo"
|
282 |
|
283 |
+
#: includes/settings-page.php:434
|
284 |
msgid "Include Google+ link rel \"author\" tag"
|
285 |
msgstr "Incluir tag \"Google+ link rel author\""
|
286 |
|
287 |
+
#: includes/settings-page.php:441
|
288 |
msgid ""
|
289 |
"Links the article to the author Google+ Profile (authorship). The user's "
|
290 |
"Google+ profile URL must be filled in."
|
292 |
"Associa o artigo ao perfil Google+ do autor do mesmo. O URL de Perfil Google"
|
293 |
"+ do utilizador tem de estar preenchido."
|
294 |
|
295 |
+
#: includes/settings-page.php:446
|
296 |
msgid "Include Twitter Card Creator tag"
|
297 |
msgstr "Incluir tag Autor do \"Twitter Card\""
|
298 |
|
299 |
+
#: includes/settings-page.php:453
|
300 |
msgid ""
|
301 |
"Links the article to the author Twitter profile. The user's Twitter user "
|
302 |
"must be filled in."
|
304 |
"Associa o artigo ao perfil Twitter do autor do mesmo. O Utilizador Twitter "
|
305 |
"tem de estar preenchido."
|
306 |
|
307 |
+
#: includes/settings-page.php:458
|
308 |
msgid "Hide author on pages"
|
309 |
msgstr "Não mostrar autor nas páginas"
|
310 |
|
311 |
+
#: includes/settings-page.php:463
|
312 |
msgid "Hides all author tags on pages."
|
313 |
msgstr "Esconder todas as tags de autor nas páginas."
|
314 |
|
315 |
# @ wd-fb-og
|
316 |
+
#: includes/settings-page.php:472
|
317 |
msgid "Include Description (og:description) tag"
|
318 |
msgstr "Incluir tag Descrição (og:description)"
|
319 |
|
320 |
# @ wd-fb-og
|
321 |
+
#: includes/settings-page.php:478
|
322 |
msgid "Include Meta Description tag"
|
323 |
msgstr "Incluir a tag \"Meta Description\""
|
324 |
|
325 |
# @ wd-fb-og
|
326 |
+
#: includes/settings-page.php:485
|
327 |
msgid "Recommended for SEO purposes if no other plugin is setting it already"
|
328 |
msgstr ""
|
329 |
"Recomendado para efeitos de Optimização para Motores de Busca, se outro "
|
330 |
"plugin ainda não a está a definir"
|
331 |
|
332 |
# @ wd-fb-og
|
333 |
+
#: includes/settings-page.php:490
|
334 |
msgid "Include Schema.org \"itemprop\" Description tag"
|
335 |
msgstr "Incluir a tag \"itemprop Description\" do Schema.org"
|
336 |
|
337 |
# @ wd-fb-og
|
338 |
+
#: includes/settings-page.php:502
|
339 |
msgid "Include Twitter Card Description tag"
|
340 |
msgstr "Incluir tag Descrição do \"Twitter Card\""
|
341 |
|
342 |
# @ wd-fb-og
|
343 |
+
#: includes/settings-page.php:514
|
344 |
msgid "Description maximum length"
|
345 |
msgstr "Comprimento máximo da descrição"
|
346 |
|
347 |
# @ wd-fb-og
|
348 |
+
#: includes/settings-page.php:519
|
349 |
msgid "0 or blank for no maximum length"
|
350 |
msgstr "0 ou em branco para não definir máximo"
|
351 |
|
352 |
# @ wd-fb-og
|
353 |
+
#: includes/settings-page.php:524
|
354 |
msgid "Homepage description"
|
355 |
msgstr "Descrição da página inicial"
|
356 |
|
357 |
# @ wd-fb-og
|
358 |
+
#: includes/settings-page.php:530
|
359 |
msgid "The description of your front page:"
|
360 |
msgstr "A descrição da sua página inicial:"
|
361 |
|
362 |
# @ wd-fb-og
|
363 |
+
#: includes/settings-page.php:535
|
364 |
msgid "Website tagline"
|
365 |
msgstr "Descrição do site"
|
366 |
|
367 |
# @ wd-fb-og
|
368 |
+
#: includes/settings-page.php:536
|
369 |
msgid "Custom text"
|
370 |
msgstr "Texto personalizado"
|
371 |
|
372 |
+
#: includes/settings-page.php:547
|
373 |
+
#, php-format
|
374 |
msgid ""
|
375 |
"WPML users: Set the default language description here, save changes and then "
|
376 |
"go to <a href=\"%s\">WPML > String translation</a> to set it for other "
|
381 |
"defini-la para outros idiomas."
|
382 |
|
383 |
# @ wd-fb-og
|
384 |
+
#: includes/settings-page.php:563
|
385 |
msgid "Include Image (og:image) tag"
|
386 |
msgstr "Incluir tag Imagem (og:image)"
|
387 |
|
388 |
# @ wd-fb-og
|
389 |
+
#: includes/settings-page.php:568
|
390 |
msgid ""
|
391 |
"All images MUST have at least 200px on both dimensions in order to Facebook "
|
392 |
"to load them at all.<br/>1200x630px for optimal results.<br/>Minimum of "
|
396 |
"o Facebook as carregue.<br/>1200x630px para resultados optimizados.<br/>Um "
|
397 |
"mínimo de 600x315px é recomendado."
|
398 |
|
399 |
+
#: includes/settings-page.php:573
|
400 |
msgid "Include Image size (og:image:width and og:image:height) tags"
|
401 |
msgstr "Incluir tags de Tamanho de Imagem (og:image:width e og:image:height)"
|
402 |
|
403 |
+
#: includes/settings-page.php:578
|
404 |
msgid ""
|
405 |
"Recommended only if Facebook is having problems loading the image when the "
|
406 |
"post is shared for the first time."
|
409 |
"artigo é partilhado pela primeira vez."
|
410 |
|
411 |
# @ wd-fb-og
|
412 |
+
#: includes/settings-page.php:583
|
413 |
msgid "Include Schema.org \"itemprop\" Image tag"
|
414 |
msgstr "Incluir a tag \"itemprop Image\" do Schema.org"
|
415 |
|
416 |
# @ wd-fb-og
|
417 |
+
#: includes/settings-page.php:595
|
418 |
msgid "Include Twitter Card Image tag"
|
419 |
msgstr "Incluir tag Imagem do \"Twitter Card\""
|
420 |
|
421 |
# @ wd-fb-og
|
422 |
+
#: includes/settings-page.php:607
|
423 |
msgid "Default image"
|
424 |
msgstr "Imagem por omissão"
|
425 |
|
426 |
# @ wd-fb-og
|
427 |
+
#: includes/settings-page.php:615 includes/settings-page.php:669
|
428 |
+
#: wonderm00n-open-graph.php:898
|
429 |
msgid "Recommended size: 1200x630px"
|
430 |
msgstr "Tamanho recomendado: 1200x630px"
|
431 |
|
432 |
# @ wd-fb-og
|
433 |
+
#: includes/settings-page.php:620
|
434 |
msgid "Add image to RSS/RSS2 feeds"
|
435 |
msgstr "Incluir a imagem aos feeds RSS/RSS2"
|
436 |
|
437 |
# @ wd-fb-og
|
438 |
+
#: includes/settings-page.php:625
|
439 |
msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
|
440 |
msgstr ""
|
441 |
"Para aplicação de posts automáticos como o RSS Graffitti, twitterfeed, etc..."
|
442 |
|
443 |
# @ wd-fb-og
|
444 |
+
#: includes/settings-page.php:630
|
445 |
msgid "On posts/pages"
|
446 |
msgstr "Nos artigos/páginas"
|
447 |
|
448 |
# @ wd-fb-og
|
449 |
+
#: includes/settings-page.php:634
|
450 |
msgid ""
|
451 |
"Image will be fetched from the specific \"Open Graph Image\" custom field on "
|
452 |
"the post"
|
455 |
"no artigo"
|
456 |
|
457 |
# @ wd-fb-og
|
458 |
+
#: includes/settings-page.php:638
|
459 |
msgid ""
|
460 |
"If it's not set, image will be fetched from post/page featured/thumbnail "
|
461 |
"picture"
|
464 |
"página"
|
465 |
|
466 |
# @ wd-fb-og
|
467 |
+
#: includes/settings-page.php:642
|
468 |
msgid "If it doesn't exist, use the first image from the post/page content"
|
469 |
msgstr ""
|
470 |
"Se não existir, será utilizada a primeira imagem no conteúdo do artigo/página"
|
471 |
|
472 |
# @ wd-fb-og
|
473 |
+
#: includes/settings-page.php:646
|
474 |
msgid "If it doesn't exist, use first image from the post/page media gallery"
|
475 |
msgstr ""
|
476 |
"Se não existir, será usada a primeira imagem na galeria multimédia do artigo/"
|
477 |
"página"
|
478 |
|
479 |
# @ wd-fb-og
|
480 |
+
#: includes/settings-page.php:650
|
481 |
msgid "If it doesn't exist, use the default image above"
|
482 |
msgstr "Se não existir, utilizar a imagem por omissão em cima"
|
483 |
|
484 |
+
#: includes/settings-page.php:655
|
485 |
+
msgid "Overlay PNG logo"
|
486 |
+
msgstr "Sobrepor logotipo em PNG"
|
487 |
+
|
488 |
+
#: includes/settings-page.php:660
|
489 |
+
msgid ""
|
490 |
+
"Image will be resized/cropped to 1200x630 and the PNG chosen bellow will be "
|
491 |
+
"overlaid"
|
492 |
+
msgstr ""
|
493 |
+
"A imagem será redimensionada e cortada para 1200x630 e o PNG escolhido será "
|
494 |
+
"sobreposto à mesma"
|
495 |
+
|
496 |
+
#: includes/settings-page.php:678
|
497 |
msgid "Twitter Card Type"
|
498 |
msgstr "Tipo de cartão do Twitter"
|
499 |
|
500 |
+
#: includes/settings-page.php:681
|
501 |
msgid "Summary Card"
|
502 |
msgstr "Resumo"
|
503 |
|
504 |
+
#: includes/settings-page.php:682
|
505 |
msgid "Summary Card with Large Image"
|
506 |
msgstr "Resumo com imagem grande"
|
507 |
|
508 |
# @ wd-fb-og
|
509 |
+
#: includes/settings-page.php:691
|
510 |
msgid "3rd Party Integration"
|
511 |
msgstr "Integração com outros plugins"
|
512 |
|
513 |
# @ wd-fb-og
|
514 |
+
#: includes/settings-page.php:702
|
515 |
msgid ""
|
516 |
"It's HIGHLY recommended to go to <a href=\"admin.php?page=wpseo_social\" "
|
517 |
"target=\"_blank\">SEO > Social</a> and disable \"Add Open Graph meta data"
|
523 |
"\"Acrescentar metadados Twitter card\" e \"Add Google+ specific post meta "
|
524 |
"data\""
|
525 |
|
526 |
+
#: includes/settings-page.php:702
|
527 |
msgid ""
|
528 |
"even if you don't enable integration bellow. You will get duplicate tags if "
|
529 |
"you don't do this."
|
532 |
"fizer."
|
533 |
|
534 |
# @ wd-fb-og
|
535 |
+
#: includes/settings-page.php:705
|
536 |
msgid "Use title, url (canonical) and description from WPSEO"
|
537 |
msgstr "Utilizar título, url (canónico) e descrição do WPSEO"
|
538 |
|
539 |
+
#: includes/settings-page.php:722
|
540 |
msgid "Use Product Category thumbnail as Open Graph Image"
|
541 |
msgstr "Utilizar miniaturas de Categorias de Produto como \"Open Graph Image\""
|
542 |
|
543 |
+
#: includes/settings-page.php:727
|
544 |
msgid ""
|
545 |
"Recommended if you set large thumbnails for Product Categories and want to "
|
546 |
"use them as Open Graph Images on listing pages"
|
549 |
"Categorias de Produto e deseja usar as mesmas como \"Open Graph Image\" nas "
|
550 |
"listagens de categorias de produto."
|
551 |
|
552 |
+
#: includes/settings-page.php:732
|
553 |
msgid "Use Product Gallery images as additional Open Graph Images"
|
554 |
msgstr ""
|
555 |
"Utilizar as imagens da Galeria de Produtos como \"Open Graph Image\" "
|
556 |
"adicionais"
|
557 |
|
558 |
+
#: includes/settings-page.php:737
|
559 |
msgid "Experimental"
|
560 |
msgstr "Experimental"
|
561 |
|
562 |
+
#: includes/settings-page.php:739
|
563 |
msgid ""
|
564 |
"Uses additional Product Gallery images so, when the product is shared on "
|
565 |
"Facebook, the user can choose what image to use"
|
569 |
"partilha"
|
570 |
|
571 |
# @ wd-fb-og
|
572 |
+
#: includes/settings-page.php:754
|
573 |
msgid "Add SubHeading to Post/Page title"
|
574 |
msgstr "Adicionar \"SubHeading\" ao título do artigo/página"
|
575 |
|
576 |
+
#: includes/settings-page.php:760
|
577 |
msgid "SubHeading position"
|
578 |
msgstr "Posição do \"SubHeading\""
|
579 |
|
580 |
+
#: includes/settings-page.php:763
|
581 |
msgid "After"
|
582 |
msgstr "Depois"
|
583 |
|
584 |
+
#: includes/settings-page.php:764
|
585 |
msgid "Before"
|
586 |
msgstr "Antes"
|
587 |
|
588 |
# @ wd-fb-og
|
589 |
+
#: includes/settings-page.php:779
|
590 |
msgid "Use BDP listing contents as OG tags"
|
591 |
msgstr "Utilizar o conteúdo dos anúncios BDP como tags OG"
|
592 |
|
593 |
# @ wd-fb-og
|
594 |
+
#: includes/settings-page.php:784
|
595 |
msgid ""
|
596 |
"Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and "
|
597 |
"\"Include Image\" options above is HIGHLY recommended"
|
601 |
"image)\" é ALTAMENTE recomendado"
|
602 |
|
603 |
# @ wd-fb-og
|
604 |
+
#: includes/settings-page.php:793
|
605 |
msgid "You don't have any compatible 3rd Party plugin installed/active."
|
606 |
msgstr "Não tem nenhum plugin compatível instalado/activo."
|
607 |
|
608 |
# @ wd-fb-og
|
609 |
+
#: includes/settings-page.php:794
|
610 |
msgid "This plugin is currently compatible with:"
|
611 |
msgstr "Este plugin é actualmente compatível com:"
|
612 |
|
613 |
+
#: includes/settings-page.php:808
|
614 |
msgid "Advanced settings"
|
615 |
msgstr "Definições avançadas"
|
616 |
|
617 |
+
#: includes/settings-page.php:810
|
618 |
msgid "Don't mess with this unless you know what you're doing"
|
619 |
msgstr "Não mexer nestas configurações se não souber o que está a fazer"
|
620 |
|
621 |
+
#: includes/settings-page.php:813
|
622 |
msgid "Force getimagesize on local file even if allow_url_fopen=1"
|
623 |
msgstr ""
|
624 |
"Forçar o \"getimagesize\" no ficheiro local mesmo que allow_url_fopen=1"
|
625 |
|
626 |
+
#: includes/settings-page.php:818
|
627 |
msgid ""
|
628 |
"May cause problems with some multisite configurations but fix \"HTTP request "
|
629 |
"failed\" errors"
|
631 |
"Pode causar problemas com algumas configurações \"multisite\" mas corrige "
|
632 |
"erros \"HTTP request failed\""
|
633 |
|
634 |
+
#: includes/settings-page.php:823
|
635 |
msgid "Try to update Facebook Open Graph Tags cache when saving the post"
|
636 |
msgstr ""
|
637 |
"Tentar actualizar a cache das Facebook Open Graph Tags ao gravar um post"
|
638 |
|
639 |
+
#: includes/settings-page.php:829
|
640 |
msgid "Supress Facebook Open Graph Tags cache updated notice"
|
641 |
msgstr ""
|
642 |
"Esconder notificação de actualização de cache das Facebook Open Graph Tags"
|
643 |
|
644 |
+
#: includes/settings-page.php:840
|
645 |
+
msgid "Save Changes"
|
646 |
+
msgstr "Guardar alterações"
|
647 |
+
|
648 |
# @ wd-fb-og
|
649 |
+
#: includes/settings-page.php:851
|
650 |
msgid "Test your URLs at Facebook URL Linter / Debugger"
|
651 |
msgstr "Teste os seus URLs no \"Facebook URL Linter / Debugger\""
|
652 |
|
653 |
+
#: includes/settings-page.php:854
|
654 |
msgid "Test (and request approval for) your URLs at Twitter Card validator"
|
655 |
msgstr "Teste (e solicite aprovação dos) URLs no \"Twitter Card validator\""
|
656 |
|
657 |
# @ wd-fb-og
|
658 |
+
#: includes/settings-page.php:857
|
659 |
msgid "About the Open Graph Protocol (on Facebook)"
|
660 |
msgstr "Sobre o Protocolo Open Graph (no Facebook)"
|
661 |
|
662 |
# @ wd-fb-og
|
663 |
+
#: includes/settings-page.php:860
|
664 |
msgid "The Open Graph Protocol (official website)"
|
665 |
msgstr "O Protocolo Open Graph (website oficial)"
|
666 |
|
667 |
+
#: includes/settings-page.php:863
|
668 |
msgid "About Twitter Cards"
|
669 |
msgstr "Sobre os \"Twitter Cards\""
|
670 |
|
671 |
# @ wd-fb-og
|
672 |
+
#: includes/settings-page.php:866
|
673 |
msgid "Plugin official URL"
|
674 |
msgstr "URL oficial do plugin"
|
675 |
|
676 |
# @ wd-fb-og
|
677 |
+
#: includes/settings-page.php:869
|
678 |
msgid "Author's website: Webdados"
|
679 |
msgstr "Website do autor: Webdados"
|
680 |
|
681 |
# @ wd-fb-og
|
682 |
+
#: includes/settings-page.php:872
|
683 |
msgid "Author's Facebook page: Webdados"
|
684 |
msgstr "Página Facebook do autor: Webdados"
|
685 |
|
686 |
# @ wd-fb-og
|
687 |
+
#: includes/settings-page.php:875
|
688 |
msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
|
689 |
msgstr "Conta Twitter do autor: @Wonderm00n<br/>(fundador da Webdados)"
|
690 |
|
691 |
+
#: includes/settings-page.php:882
|
692 |
msgid "About this plugin"
|
693 |
msgstr "Sobre este plugin"
|
694 |
|
695 |
+
#: includes/settings-page.php:884
|
696 |
msgid "Support forum"
|
697 |
msgstr "Fórum de suporte"
|
698 |
|
699 |
+
#: includes/settings-page.php:886
|
700 |
msgid "Premium technical support or custom WordPress development"
|
701 |
msgstr "Suporte técnico premium ou desenvolvimento WordPress à medida"
|
702 |
|
703 |
+
#: includes/settings-page.php:887
|
704 |
+
#, php-format
|
705 |
msgid "Please contact %s"
|
706 |
msgstr "Por favor contactar %s"
|
707 |
|
708 |
+
#: includes/settings-page.php:888
|
709 |
msgid "Please rate our plugin at WordPress.org"
|
710 |
msgstr "Por favor classifique o nosso plugin no WordPress.org"
|
711 |
|
712 |
# @ wd-fb-og
|
713 |
+
#: includes/settings-page.php:898
|
714 |
msgid "Useful links"
|
715 |
msgstr "Links úteis"
|
716 |
|
717 |
# @ wd-fb-og
|
718 |
+
#: includes/settings-page.php:911
|
719 |
msgid "Donate"
|
720 |
msgstr "Doar"
|
721 |
|
722 |
# @ wd-fb-og
|
723 |
+
#: includes/settings-page.php:913
|
724 |
msgid ""
|
725 |
"If you find this plugin useful and want to make a contribution towards "
|
726 |
"future development please consider making a small, or big ;-), donation."
|
729 |
"desenvolvimento no futuro, considere fazer uma pequena, ou grande ;-), "
|
730 |
"doação."
|
731 |
|
732 |
+
#: includes/settings-page.php:951
|
733 |
+
msgid "Select image"
|
734 |
+
msgstr "Selecionar imagem"
|
735 |
+
|
736 |
+
#: includes/settings-page.php:953
|
737 |
+
msgid "Use this image"
|
738 |
+
msgstr "Utilizar esta imagem"
|
739 |
+
|
740 |
+
#: wonderm00n-open-graph.php:316
|
741 |
+
msgid "Search for"
|
742 |
+
msgstr "Pesquisa por"
|
743 |
+
|
744 |
+
#: wonderm00n-open-graph.php:325 wonderm00n-open-graph.php:329
|
745 |
+
#: wonderm00n-open-graph.php:333
|
746 |
+
msgid "Archives"
|
747 |
+
msgstr "Arquivos"
|
748 |
+
|
749 |
# @ wd-fb-og
|
750 |
+
#: wonderm00n-open-graph.php:893
|
751 |
msgid "Use this image:"
|
752 |
msgstr "Utilizar esta imagem:"
|
753 |
|
754 |
# @ wd-fb-og
|
755 |
+
#: wonderm00n-open-graph.php:896
|
756 |
msgid "Upload/Choose Open Graph Image"
|
757 |
msgstr "Carregar/Escolher Imagem Open Graph"
|
758 |
|
759 |
# @ wd-fb-og
|
760 |
+
#: wonderm00n-open-graph.php:897
|
761 |
msgid "Clear field"
|
762 |
msgstr "Limpar campo"
|
763 |
|
764 |
+
#: wonderm00n-open-graph.php:962
|
765 |
msgid "URL failed:"
|
766 |
msgstr "Falha no URL:"
|
767 |
|
768 |
+
#: wonderm00n-open-graph.php:970
|
769 |
msgid "Facebook returned:"
|
770 |
msgstr "O Facebook retornou:"
|
771 |
|
772 |
+
#: wonderm00n-open-graph.php:987
|
773 |
msgid "Facebook Open Graph Tags cache updated/purged."
|
774 |
msgstr "Cache das Facebook Open Graph Tags actualizada."
|
775 |
|
776 |
+
#: wonderm00n-open-graph.php:987
|
777 |
msgid "Share this on Facebook"
|
778 |
msgstr "Partilhe isto no Facebook"
|
779 |
|
780 |
+
#: wonderm00n-open-graph.php:995
|
781 |
msgid "Error: Facebook Open Graph Tags cache NOT updated/purged."
|
782 |
msgstr "Erro: Cache das Facebook Open Graph Tags NÃO actualizada"
|
783 |
|
784 |
# @ wd-fb-og
|
785 |
+
#: wonderm00n-open-graph.php:1035
|
786 |
msgid "Use as Image Open Graph Tag"
|
787 |
msgstr "Utilizar como Imagem Open Graph"
|
788 |
|
789 |
+
#: wonderm00n-open-graph.php:1054
|
790 |
msgid "Google+"
|
791 |
msgstr "Google+"
|
792 |
|
793 |
+
#: wonderm00n-open-graph.php:1058
|
794 |
msgid "Facebook profile URL"
|
795 |
msgstr "URL de Perfil Facebook"
|
796 |
|
797 |
+
#: wonderm00n-open-graph.php:1077
|
798 |
msgid ""
|
799 |
"Please ignore the (dumb) Yoast WordPress SEO warning regarding open graph "
|
800 |
"issues with this plugin. Just disable WPSEO Social settings at"
|
803 |
"problemas \"open graph\" com este plugin. Simplesmente inactive as "
|
804 |
"definições Social do WPSEO em"
|
805 |
|
806 |
+
#: wonderm00n-open-graph.php:1078
|
807 |
msgid "SEO > Social"
|
808 |
msgstr "SEO > Social"
|
809 |
|
832 |
# @ wd-fb-og
|
833 |
#~ msgid "please give it a high Rating"
|
834 |
#~ msgstr "dê-lhe uma nota elevada"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/wd-fb-og.pot
CHANGED
@@ -1,574 +1,671 @@
|
|
1 |
-
|
2 |
-
# This file is distributed under the same license as the Facebook Open Graph, Google+ and Twitter Card Tags package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"POT-Creation-Date:
|
|
|
|
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
-
#: includes/settings-page.php:
|
16 |
-
msgid "
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: includes/settings-page.php:
|
20 |
msgid "Include Facebook Platform App ID (fb:app_id) tag"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: includes/settings-page.php:
|
24 |
msgid "Facebook Platform App ID"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: includes/settings-page.php:
|
28 |
msgid "Include Facebook Admin(s) ID (fb:admins) tag"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: includes/settings-page.php:
|
32 |
msgid "Facebook Admin(s) ID"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: includes/settings-page.php:
|
36 |
msgid "Comma separated if more than one"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: includes/settings-page.php:
|
40 |
msgid "Include locale (fb:locale) tag"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: includes/settings-page.php:
|
44 |
msgid "Locale"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/settings-page.php:
|
48 |
msgid "WordPress current locale/language"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/settings-page.php:
|
52 |
msgid "List loaded from Facebook (online)"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: includes/settings-page.php:
|
56 |
msgid "List loaded from local cache (offline)"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: includes/settings-page.php:
|
60 |
msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: includes/settings-page.php:
|
64 |
msgid "Reload from Facebook"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: includes/settings-page.php:
|
68 |
msgid "List not loaded"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: includes/settings-page.php:
|
72 |
msgid "Include Site Name (og:site_name) tag"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: includes/settings-page.php:
|
76 |
msgid "Include Post/Page title (og:title) tag"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: includes/settings-page.php:
|
80 |
msgid "Include Schema.org \"itemprop\" Name tag"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: includes/settings-page.php:
|
84 |
-
#: includes/settings-page.php:
|
85 |
-
msgid "
|
|
|
|
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/settings-page.php:
|
89 |
msgid "Include Twitter Card Title tag"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/settings-page.php:
|
93 |
-
#: includes/settings-page.php:
|
94 |
-
msgid "
|
|
|
|
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/settings-page.php:
|
98 |
msgid "Include URL (og:url) tag"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/settings-page.php:
|
102 |
msgid "Include Twitter Card URL tag"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: includes/settings-page.php:
|
106 |
msgid "Add trailing slash at the end"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: includes/settings-page.php:
|
110 |
msgid "On the homepage will be"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: includes/settings-page.php:
|
114 |
msgid "Set Canonical URL"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/settings-page.php:
|
118 |
msgid "Include Type (og:type) tag"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/settings-page.php:
|
122 |
-
|
|
|
|
|
|
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: includes/settings-page.php:
|
126 |
msgid "Homepage type"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: includes/settings-page.php:
|
130 |
msgid "Use"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: includes/settings-page.php:
|
134 |
-
msgid "
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: includes/settings-page.php:
|
138 |
msgid "Works for posts only"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: includes/settings-page.php:
|
142 |
msgid "Include article section (article:section) tags"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: includes/settings-page.php:
|
146 |
msgid "from the categories"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: includes/settings-page.php:
|
150 |
msgid "Include Publisher Page (article:publisher) tag"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/settings-page.php:
|
154 |
msgid "Links the website to the publisher Facebook Page."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/settings-page.php:
|
158 |
msgid "Website's Facebook Page"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: includes/settings-page.php:
|
162 |
-
#: includes/settings-page.php:
|
163 |
msgid "Full URL with http://"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: includes/settings-page.php:
|
167 |
msgid "Include Google+ \"publisher\" tag"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: includes/settings-page.php:
|
171 |
msgid "Links the website to the publisher Google+ Page."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: includes/settings-page.php:
|
175 |
msgid "Website's Google+ Page"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: includes/settings-page.php:
|
179 |
msgid "Include Twitter Card Website Username tag"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: includes/settings-page.php:
|
183 |
msgid "Links the website to the publisher Twitter Username."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: includes/settings-page.php:
|
187 |
msgid "Website's Twitter Username"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/settings-page.php:
|
191 |
msgid "Twitter username (without @)"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/settings-page.php:
|
195 |
msgid "Include Author Profile (article:author) tag"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/settings-page.php:
|
199 |
-
msgid "
|
|
|
|
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/settings-page.php:
|
203 |
msgid "Include Meta Author tag"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/settings-page.php:
|
207 |
msgid "Sets the article author name"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/settings-page.php:
|
211 |
msgid "Include Google+ link rel \"author\" tag"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/settings-page.php:
|
215 |
-
msgid "
|
|
|
|
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/settings-page.php:
|
219 |
msgid "Include Twitter Card Creator tag"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/settings-page.php:
|
223 |
-
msgid "
|
|
|
|
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/settings-page.php:
|
227 |
msgid "Hide author on pages"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: includes/settings-page.php:
|
231 |
msgid "Hides all author tags on pages."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: includes/settings-page.php:
|
235 |
msgid "Include Description (og:description) tag"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: includes/settings-page.php:
|
239 |
msgid "Include Meta Description tag"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/settings-page.php:
|
243 |
msgid "Recommended for SEO purposes if no other plugin is setting it already"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/settings-page.php:
|
247 |
msgid "Include Schema.org \"itemprop\" Description tag"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes/settings-page.php:
|
251 |
msgid "Include Twitter Card Description tag"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes/settings-page.php:
|
255 |
msgid "Description maximum length"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: includes/settings-page.php:
|
259 |
msgid "0 or blank for no maximum length"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: includes/settings-page.php:
|
263 |
msgid "Homepage description"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/settings-page.php:
|
267 |
msgid "The description of your front page:"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/settings-page.php:
|
271 |
msgid "Website tagline"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/settings-page.php:
|
275 |
msgid "Custom text"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/settings-page.php:
|
279 |
-
|
|
|
|
|
|
|
|
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/settings-page.php:
|
283 |
msgid "Include Image (og:image) tag"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/settings-page.php:
|
287 |
-
msgid "
|
|
|
|
|
|
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/settings-page.php:
|
291 |
msgid "Include Image size (og:image:width and og:image:height) tags"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/settings-page.php:
|
295 |
-
msgid "
|
|
|
|
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/settings-page.php:
|
299 |
msgid "Include Schema.org \"itemprop\" Image tag"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/settings-page.php:
|
303 |
msgid "Include Twitter Card Image tag"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/settings-page.php:
|
307 |
msgid "Default image"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/settings-page.php:
|
|
|
311 |
msgid "Recommended size: 1200x630px"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: includes/settings-page.php:
|
315 |
msgid "Add image to RSS/RSS2 feeds"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: includes/settings-page.php:
|
319 |
msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: includes/settings-page.php:626
|
323 |
-
msgid "On posts/pages"
|
324 |
-
msgstr ""
|
325 |
-
|
326 |
#: includes/settings-page.php:630
|
327 |
-
msgid "
|
328 |
msgstr ""
|
329 |
|
330 |
#: includes/settings-page.php:634
|
331 |
-
msgid "
|
|
|
|
|
332 |
msgstr ""
|
333 |
|
334 |
#: includes/settings-page.php:638
|
335 |
-
msgid "
|
|
|
|
|
336 |
msgstr ""
|
337 |
|
338 |
#: includes/settings-page.php:642
|
339 |
-
msgid "If it doesn't exist, use first image from the post/page
|
340 |
msgstr ""
|
341 |
|
342 |
#: includes/settings-page.php:646
|
|
|
|
|
|
|
|
|
343 |
msgid "If it doesn't exist, use the default image above"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/settings-page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
msgid "Twitter Card Type"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: includes/settings-page.php:
|
351 |
msgid "Summary Card"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/settings-page.php:
|
355 |
msgid "Summary Card with Large Image"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/settings-page.php:
|
359 |
msgid "3rd Party Integration"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: includes/settings-page.php:
|
363 |
-
msgid "
|
|
|
|
|
|
|
|
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes/settings-page.php:
|
367 |
-
msgid "
|
|
|
|
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: includes/settings-page.php:
|
371 |
msgid "Use title, url (canonical) and description from WPSEO"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: includes/settings-page.php:
|
375 |
msgid "Use Product Category thumbnail as Open Graph Image"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: includes/settings-page.php:
|
379 |
-
msgid "
|
|
|
|
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: includes/settings-page.php:
|
383 |
msgid "Use Product Gallery images as additional Open Graph Images"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: includes/settings-page.php:
|
387 |
msgid "Experimental"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: includes/settings-page.php:
|
391 |
-
msgid "
|
|
|
|
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: includes/settings-page.php:
|
395 |
msgid "Add SubHeading to Post/Page title"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: includes/settings-page.php:
|
399 |
msgid "SubHeading position"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: includes/settings-page.php:
|
403 |
msgid "After"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: includes/settings-page.php:
|
407 |
msgid "Before"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: includes/settings-page.php:
|
411 |
msgid "Use BDP listing contents as OG tags"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: includes/settings-page.php:
|
415 |
-
msgid "
|
|
|
|
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/settings-page.php:
|
419 |
msgid "You don't have any compatible 3rd Party plugin installed/active."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: includes/settings-page.php:
|
423 |
msgid "This plugin is currently compatible with:"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: includes/settings-page.php:
|
427 |
msgid "Advanced settings"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: includes/settings-page.php:
|
431 |
msgid "Don't mess with this unless you know what you're doing"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: includes/settings-page.php:
|
435 |
msgid "Force getimagesize on local file even if allow_url_fopen=1"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: includes/settings-page.php:
|
439 |
-
msgid "
|
|
|
|
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: includes/settings-page.php:
|
443 |
msgid "Try to update Facebook Open Graph Tags cache when saving the post"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: includes/settings-page.php:
|
447 |
msgid "Supress Facebook Open Graph Tags cache updated notice"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: includes/settings-page.php:
|
451 |
-
|
|
|
|
|
|
|
452 |
msgid "Test your URLs at Facebook URL Linter / Debugger"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/settings-page.php:
|
456 |
msgid "Test (and request approval for) your URLs at Twitter Card validator"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/settings-page.php:
|
460 |
msgid "About the Open Graph Protocol (on Facebook)"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: includes/settings-page.php:
|
464 |
msgid "The Open Graph Protocol (official website)"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: includes/settings-page.php:
|
468 |
msgid "About Twitter Cards"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/settings-page.php:
|
472 |
msgid "Plugin official URL"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: includes/settings-page.php:
|
476 |
msgid "Author's website: Webdados"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/settings-page.php:
|
480 |
msgid "Author's Facebook page: Webdados"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/settings-page.php:
|
484 |
msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: includes/settings-page.php:
|
488 |
msgid "About this plugin"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: includes/settings-page.php:
|
492 |
msgid "Support forum"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/settings-page.php:
|
496 |
msgid "Premium technical support or custom WordPress development"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/settings-page.php:
|
|
|
500 |
msgid "Please contact %s"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/settings-page.php:
|
504 |
msgid "Please rate our plugin at WordPress.org"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/settings-page.php:
|
508 |
msgid "Useful links"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: includes/settings-page.php:
|
512 |
msgid "Donate"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/settings-page.php:
|
516 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
517 |
msgstr ""
|
518 |
|
519 |
-
#:
|
520 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
521 |
msgid "Use this image:"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: wonderm00n-open-graph.php:
|
525 |
msgid "Upload/Choose Open Graph Image"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: wonderm00n-open-graph.php:
|
529 |
msgid "Clear field"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: wonderm00n-open-graph.php:
|
533 |
msgid "URL failed:"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: wonderm00n-open-graph.php:
|
537 |
msgid "Facebook returned:"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: wonderm00n-open-graph.php:
|
541 |
msgid "Facebook Open Graph Tags cache updated/purged."
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: wonderm00n-open-graph.php:
|
545 |
msgid "Share this on Facebook"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: wonderm00n-open-graph.php:
|
549 |
msgid "Error: Facebook Open Graph Tags cache NOT updated/purged."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: wonderm00n-open-graph.php:
|
553 |
msgid "Use as Image Open Graph Tag"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: wonderm00n-open-graph.php:
|
557 |
msgid "Google+"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: wonderm00n-open-graph.php:
|
561 |
msgid "Facebook profile URL"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: wonderm00n-open-graph.php:
|
565 |
-
msgid "
|
|
|
|
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: wonderm00n-open-graph.php:
|
569 |
msgid "SEO > Social"
|
570 |
msgstr ""
|
571 |
|
572 |
#. Description of the plugin/theme
|
573 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
574 |
msgstr ""
|
1 |
+
#, fuzzy
|
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
+
"Project-Id-Version: Facebook Open Graph, Google+ and Twitter Card Tags\n"
|
6 |
+
"POT-Creation-Date: 2016-09-26 14:59+0100\n"
|
7 |
+
"PO-Revision-Date: 2016-09-26 14:52+0100\n"
|
8 |
+
"Last-Translator: \n"
|
9 |
+
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.8\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-WPHeader: wonderm00n-open-graph.php\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
|
23 |
+
#: includes/settings-page.php:96
|
24 |
+
msgid ""
|
25 |
+
"Please set some default values and which tags should, or should not, be "
|
26 |
+
"included. It may be necessary to exclude some tags if other plugins are "
|
27 |
+
"already including them."
|
28 |
+
msgstr ""
|
29 |
|
30 |
+
#: includes/settings-page.php:107 wonderm00n-open-graph.php:831
|
31 |
+
msgid "Settings"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: includes/settings-page.php:111
|
35 |
msgid "Include Facebook Platform App ID (fb:app_id) tag"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: includes/settings-page.php:117
|
39 |
msgid "Facebook Platform App ID"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: includes/settings-page.php:126
|
43 |
msgid "Include Facebook Admin(s) ID (fb:admins) tag"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/settings-page.php:132
|
47 |
msgid "Facebook Admin(s) ID"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/settings-page.php:137
|
51 |
msgid "Comma separated if more than one"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: includes/settings-page.php:145
|
55 |
msgid "Include locale (fb:locale) tag"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: includes/settings-page.php:151
|
59 |
msgid "Locale"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: includes/settings-page.php:154
|
63 |
msgid "WordPress current locale/language"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/settings-page.php:206
|
67 |
msgid "List loaded from Facebook (online)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: includes/settings-page.php:209
|
71 |
msgid "List loaded from local cache (offline)"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: includes/settings-page.php:209
|
75 |
msgid "You\\'l lose any changes you haven\\'t saved. Are you sure?"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: includes/settings-page.php:209
|
79 |
msgid "Reload from Facebook"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: includes/settings-page.php:211
|
83 |
msgid "List not loaded"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: includes/settings-page.php:222
|
87 |
msgid "Include Site Name (og:site_name) tag"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: includes/settings-page.php:231
|
91 |
msgid "Include Post/Page title (og:title) tag"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: includes/settings-page.php:237
|
95 |
msgid "Include Schema.org \"itemprop\" Name tag"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: includes/settings-page.php:244 includes/settings-page.php:497
|
99 |
+
#: includes/settings-page.php:590
|
100 |
+
msgid ""
|
101 |
+
"Recommended for Google+ sharing purposes if no other plugin is setting it "
|
102 |
+
"already"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: includes/settings-page.php:249
|
106 |
msgid "Include Twitter Card Title tag"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: includes/settings-page.php:256 includes/settings-page.php:509
|
110 |
+
#: includes/settings-page.php:602
|
111 |
+
msgid ""
|
112 |
+
"Recommended for Twitter sharing purposes if no other plugin is setting it "
|
113 |
+
"already"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: includes/settings-page.php:264
|
117 |
msgid "Include URL (og:url) tag"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: includes/settings-page.php:270
|
121 |
msgid "Include Twitter Card URL tag"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: includes/settings-page.php:276
|
125 |
msgid "Add trailing slash at the end"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: includes/settings-page.php:281
|
129 |
msgid "On the homepage will be"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: includes/settings-page.php:286
|
133 |
msgid "Set Canonical URL"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: includes/settings-page.php:299
|
137 |
msgid "Include Type (og:type) tag"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: includes/settings-page.php:304
|
141 |
+
#, php-format
|
142 |
+
msgid ""
|
143 |
+
"Will be \"%1$s\" for posts and pages and \"%2$s\" or \"%3$s\"; for the "
|
144 |
+
"homepage"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/settings-page.php:309
|
148 |
msgid "Homepage type"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/settings-page.php:311 includes/settings-page.php:533
|
152 |
msgid "Use"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: includes/settings-page.php:322
|
156 |
+
msgid ""
|
157 |
+
"Include published and modified dates (article:published_time, article:"
|
158 |
+
"modified_time and og:updated_time) tags"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/settings-page.php:327 includes/settings-page.php:340
|
162 |
msgid "Works for posts only"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/settings-page.php:335
|
166 |
msgid "Include article section (article:section) tags"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/settings-page.php:340
|
170 |
msgid "from the categories"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/settings-page.php:348
|
174 |
msgid "Include Publisher Page (article:publisher) tag"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/settings-page.php:353
|
178 |
msgid "Links the website to the publisher Facebook Page."
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/settings-page.php:358
|
182 |
msgid "Website's Facebook Page"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/settings-page.php:363 includes/settings-page.php:383
|
186 |
+
#: includes/settings-page.php:613 includes/settings-page.php:667
|
187 |
msgid "Full URL with http://"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: includes/settings-page.php:368
|
191 |
msgid "Include Google+ \"publisher\" tag"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: includes/settings-page.php:373
|
195 |
msgid "Links the website to the publisher Google+ Page."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: includes/settings-page.php:378
|
199 |
msgid "Website's Google+ Page"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: includes/settings-page.php:388
|
203 |
msgid "Include Twitter Card Website Username tag"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/settings-page.php:393
|
207 |
msgid "Links the website to the publisher Twitter Username."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/settings-page.php:398
|
211 |
msgid "Website's Twitter Username"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/settings-page.php:403 wonderm00n-open-graph.php:1056
|
215 |
msgid "Twitter username (without @)"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/settings-page.php:412
|
219 |
msgid "Include Author Profile (article:author) tag"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/settings-page.php:417
|
223 |
+
msgid ""
|
224 |
+
"Links the article to the author Facebook Profile. The user's Facebook "
|
225 |
+
"profile URL must be filled in."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/settings-page.php:422
|
229 |
msgid "Include Meta Author tag"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/settings-page.php:429
|
233 |
msgid "Sets the article author name"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/settings-page.php:434
|
237 |
msgid "Include Google+ link rel \"author\" tag"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/settings-page.php:441
|
241 |
+
msgid ""
|
242 |
+
"Links the article to the author Google+ Profile (authorship). The user's "
|
243 |
+
"Google+ profile URL must be filled in."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: includes/settings-page.php:446
|
247 |
msgid "Include Twitter Card Creator tag"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: includes/settings-page.php:453
|
251 |
+
msgid ""
|
252 |
+
"Links the article to the author Twitter profile. The user's Twitter user "
|
253 |
+
"must be filled in."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/settings-page.php:458
|
257 |
msgid "Hide author on pages"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/settings-page.php:463
|
261 |
msgid "Hides all author tags on pages."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: includes/settings-page.php:472
|
265 |
msgid "Include Description (og:description) tag"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: includes/settings-page.php:478
|
269 |
msgid "Include Meta Description tag"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: includes/settings-page.php:485
|
273 |
msgid "Recommended for SEO purposes if no other plugin is setting it already"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: includes/settings-page.php:490
|
277 |
msgid "Include Schema.org \"itemprop\" Description tag"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: includes/settings-page.php:502
|
281 |
msgid "Include Twitter Card Description tag"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: includes/settings-page.php:514
|
285 |
msgid "Description maximum length"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: includes/settings-page.php:519
|
289 |
msgid "0 or blank for no maximum length"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: includes/settings-page.php:524
|
293 |
msgid "Homepage description"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/settings-page.php:530
|
297 |
msgid "The description of your front page:"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/settings-page.php:535
|
301 |
msgid "Website tagline"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: includes/settings-page.php:536
|
305 |
msgid "Custom text"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: includes/settings-page.php:547
|
309 |
+
#, php-format
|
310 |
+
msgid ""
|
311 |
+
"WPML users: Set the default language description here, save changes and then "
|
312 |
+
"go to <a href=\"%s\">WPML > String translation</a> to set it for other "
|
313 |
+
"languages."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/settings-page.php:563
|
317 |
msgid "Include Image (og:image) tag"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: includes/settings-page.php:568
|
321 |
+
msgid ""
|
322 |
+
"All images MUST have at least 200px on both dimensions in order to Facebook "
|
323 |
+
"to load them at all.<br/>1200x630px for optimal results.<br/>Minimum of "
|
324 |
+
"600x315px is recommended."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: includes/settings-page.php:573
|
328 |
msgid "Include Image size (og:image:width and og:image:height) tags"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: includes/settings-page.php:578
|
332 |
+
msgid ""
|
333 |
+
"Recommended only if Facebook is having problems loading the image when the "
|
334 |
+
"post is shared for the first time."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: includes/settings-page.php:583
|
338 |
msgid "Include Schema.org \"itemprop\" Image tag"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/settings-page.php:595
|
342 |
msgid "Include Twitter Card Image tag"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: includes/settings-page.php:607
|
346 |
msgid "Default image"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/settings-page.php:615 includes/settings-page.php:669
|
350 |
+
#: wonderm00n-open-graph.php:898
|
351 |
msgid "Recommended size: 1200x630px"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/settings-page.php:620
|
355 |
msgid "Add image to RSS/RSS2 feeds"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/settings-page.php:625
|
359 |
msgid "For auto-posting apps like RSS Graffiti, twitterfeed, ..."
|
360 |
msgstr ""
|
361 |
|
|
|
|
|
|
|
|
|
362 |
#: includes/settings-page.php:630
|
363 |
+
msgid "On posts/pages"
|
364 |
msgstr ""
|
365 |
|
366 |
#: includes/settings-page.php:634
|
367 |
+
msgid ""
|
368 |
+
"Image will be fetched from the specific \"Open Graph Image\" custom field on "
|
369 |
+
"the post"
|
370 |
msgstr ""
|
371 |
|
372 |
#: includes/settings-page.php:638
|
373 |
+
msgid ""
|
374 |
+
"If it's not set, image will be fetched from post/page featured/thumbnail "
|
375 |
+
"picture"
|
376 |
msgstr ""
|
377 |
|
378 |
#: includes/settings-page.php:642
|
379 |
+
msgid "If it doesn't exist, use the first image from the post/page content"
|
380 |
msgstr ""
|
381 |
|
382 |
#: includes/settings-page.php:646
|
383 |
+
msgid "If it doesn't exist, use first image from the post/page media gallery"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: includes/settings-page.php:650
|
387 |
msgid "If it doesn't exist, use the default image above"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: includes/settings-page.php:655
|
391 |
+
msgid "Overlay PNG logo"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: includes/settings-page.php:660
|
395 |
+
msgid ""
|
396 |
+
"Image will be resized/cropped to 1200x630 and the PNG chosen bellow will be "
|
397 |
+
"overlaid"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: includes/settings-page.php:678
|
401 |
msgid "Twitter Card Type"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: includes/settings-page.php:681
|
405 |
msgid "Summary Card"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: includes/settings-page.php:682
|
409 |
msgid "Summary Card with Large Image"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: includes/settings-page.php:691
|
413 |
msgid "3rd Party Integration"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: includes/settings-page.php:702
|
417 |
+
msgid ""
|
418 |
+
"It's HIGHLY recommended to go to <a href=\"admin.php?page=wpseo_social\" "
|
419 |
+
"target=\"_blank\">SEO > Social</a> and disable \"Add Open Graph meta data"
|
420 |
+
"\", \"Add Twitter card meta data\" and \"Add Google+ specific post meta data"
|
421 |
+
"\""
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: includes/settings-page.php:702
|
425 |
+
msgid ""
|
426 |
+
"even if you don't enable integration bellow. You will get duplicate tags if "
|
427 |
+
"you don't do this."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/settings-page.php:705
|
431 |
msgid "Use title, url (canonical) and description from WPSEO"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/settings-page.php:722
|
435 |
msgid "Use Product Category thumbnail as Open Graph Image"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/settings-page.php:727
|
439 |
+
msgid ""
|
440 |
+
"Recommended if you set large thumbnails for Product Categories and want to "
|
441 |
+
"use them as Open Graph Images on listing pages"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/settings-page.php:732
|
445 |
msgid "Use Product Gallery images as additional Open Graph Images"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/settings-page.php:737
|
449 |
msgid "Experimental"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/settings-page.php:739
|
453 |
+
msgid ""
|
454 |
+
"Uses additional Product Gallery images so, when the product is shared on "
|
455 |
+
"Facebook, the user can choose what image to use"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: includes/settings-page.php:754
|
459 |
msgid "Add SubHeading to Post/Page title"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: includes/settings-page.php:760
|
463 |
msgid "SubHeading position"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: includes/settings-page.php:763
|
467 |
msgid "After"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/settings-page.php:764
|
471 |
msgid "Before"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/settings-page.php:779
|
475 |
msgid "Use BDP listing contents as OG tags"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: includes/settings-page.php:784
|
479 |
+
msgid ""
|
480 |
+
"Setting \"Include URL\", \"Set Canonical URL\", \"Include Description\" and "
|
481 |
+
"\"Include Image\" options above is HIGHLY recommended"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: includes/settings-page.php:793
|
485 |
msgid "You don't have any compatible 3rd Party plugin installed/active."
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/settings-page.php:794
|
489 |
msgid "This plugin is currently compatible with:"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: includes/settings-page.php:808
|
493 |
msgid "Advanced settings"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: includes/settings-page.php:810
|
497 |
msgid "Don't mess with this unless you know what you're doing"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/settings-page.php:813
|
501 |
msgid "Force getimagesize on local file even if allow_url_fopen=1"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/settings-page.php:818
|
505 |
+
msgid ""
|
506 |
+
"May cause problems with some multisite configurations but fix \"HTTP request "
|
507 |
+
"failed\" errors"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: includes/settings-page.php:823
|
511 |
msgid "Try to update Facebook Open Graph Tags cache when saving the post"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: includes/settings-page.php:829
|
515 |
msgid "Supress Facebook Open Graph Tags cache updated notice"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: includes/settings-page.php:840
|
519 |
+
msgid "Save Changes"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/settings-page.php:851
|
523 |
msgid "Test your URLs at Facebook URL Linter / Debugger"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: includes/settings-page.php:854
|
527 |
msgid "Test (and request approval for) your URLs at Twitter Card validator"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: includes/settings-page.php:857
|
531 |
msgid "About the Open Graph Protocol (on Facebook)"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: includes/settings-page.php:860
|
535 |
msgid "The Open Graph Protocol (official website)"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/settings-page.php:863
|
539 |
msgid "About Twitter Cards"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: includes/settings-page.php:866
|
543 |
msgid "Plugin official URL"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: includes/settings-page.php:869
|
547 |
msgid "Author's website: Webdados"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: includes/settings-page.php:872
|
551 |
msgid "Author's Facebook page: Webdados"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: includes/settings-page.php:875
|
555 |
msgid "Author's Twitter account: @Wonderm00n<br/>(Webdados founder)"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: includes/settings-page.php:882
|
559 |
msgid "About this plugin"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/settings-page.php:884
|
563 |
msgid "Support forum"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/settings-page.php:886
|
567 |
msgid "Premium technical support or custom WordPress development"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/settings-page.php:887
|
571 |
+
#, php-format
|
572 |
msgid "Please contact %s"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: includes/settings-page.php:888
|
576 |
msgid "Please rate our plugin at WordPress.org"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: includes/settings-page.php:898
|
580 |
msgid "Useful links"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: includes/settings-page.php:911
|
584 |
msgid "Donate"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: includes/settings-page.php:913
|
588 |
+
msgid ""
|
589 |
+
"If you find this plugin useful and want to make a contribution towards "
|
590 |
+
"future development please consider making a small, or big ;-), donation."
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: includes/settings-page.php:951
|
594 |
+
msgid "Select image"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: includes/settings-page.php:953
|
598 |
+
msgid "Use this image"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: wonderm00n-open-graph.php:316
|
602 |
+
msgid "Search for"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: wonderm00n-open-graph.php:325 wonderm00n-open-graph.php:329
|
606 |
+
#: wonderm00n-open-graph.php:333
|
607 |
+
msgid "Archives"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: wonderm00n-open-graph.php:893
|
611 |
msgid "Use this image:"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: wonderm00n-open-graph.php:896
|
615 |
msgid "Upload/Choose Open Graph Image"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: wonderm00n-open-graph.php:897
|
619 |
msgid "Clear field"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: wonderm00n-open-graph.php:962
|
623 |
msgid "URL failed:"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: wonderm00n-open-graph.php:970
|
627 |
msgid "Facebook returned:"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: wonderm00n-open-graph.php:987
|
631 |
msgid "Facebook Open Graph Tags cache updated/purged."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: wonderm00n-open-graph.php:987
|
635 |
msgid "Share this on Facebook"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: wonderm00n-open-graph.php:995
|
639 |
msgid "Error: Facebook Open Graph Tags cache NOT updated/purged."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: wonderm00n-open-graph.php:1035
|
643 |
msgid "Use as Image Open Graph Tag"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: wonderm00n-open-graph.php:1054
|
647 |
msgid "Google+"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: wonderm00n-open-graph.php:1058
|
651 |
msgid "Facebook profile URL"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: wonderm00n-open-graph.php:1077
|
655 |
+
msgid ""
|
656 |
+
"Please ignore the (dumb) Yoast WordPress SEO warning regarding open graph "
|
657 |
+
"issues with this plugin. Just disable WPSEO Social settings at"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: wonderm00n-open-graph.php:1078
|
661 |
msgid "SEO > Social"
|
662 |
msgstr ""
|
663 |
|
664 |
#. Description of the plugin/theme
|
665 |
+
msgid ""
|
666 |
+
"Inserts Facebook Open Graph, Google+ / Schema.org and Twitter Card Tags into "
|
667 |
+
"your WordPress Blog/Website for more effective and efficient Facebook, Google"
|
668 |
+
"+ and Twitter sharing results. You can also choose to insert the \"enclosure"
|
669 |
+
"\" and \"media:content\" tags to the RSS feeds, so that apps like RSS "
|
670 |
+
"Graffiti and twitterfeed post the image to Facebook correctly."
|
671 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://blog.wonderm00n.com/2011/10/14/wordpress-plugin-simple-faceb
|
|
4 |
Tags: facebook, open graph, open graph protocol, share, social, meta, rss, twitter card, twitter, schema, google+, g+, google, google plus, image, like, seo, search engine optimization, woocommerce, yoast seo, subheading, php7
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 1.7.
|
8 |
Inserts Facebook Open Graph, Google+/Schema.org, Twitter and other Meta Tags into your WordPress Website for more efficient sharing results.
|
9 |
|
10 |
== Description ==
|
@@ -19,6 +19,8 @@ You can also choose to insert the "enclosure" and "media:content" tags to the RS
|
|
19 |
|
20 |
It allows the user to choose which tags are, or not, included and also the default image if the post/page doesn't have one.
|
21 |
|
|
|
|
|
22 |
= The (Facebook) Open Graph Tags that this plugin inserts are: =
|
23 |
|
24 |
* **fb:app_id**: From settings on the options screen.
|
@@ -109,6 +111,10 @@ We DO NOT provide email support for this plugin. If you send us an email asking
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
|
|
112 |
= 1.7.3.1 =
|
113 |
- Fix: changed `twitter:image:src` meta name to `twitter:image` (Thanks mahler83)
|
114 |
- Tested with WordPres 4.5 RC2
|
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, subheading, php7
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 1.7.4
|
8 |
Inserts Facebook Open Graph, Google+/Schema.org, Twitter and other Meta Tags into your WordPress Website for more efficient sharing results.
|
9 |
|
10 |
== Description ==
|
19 |
|
20 |
It allows the user to choose which tags are, or not, included and also the default image if the post/page doesn't have one.
|
21 |
|
22 |
+
BETA: It's also possible to add a overlay logo to the image. The plugin will resize and crop the original image to 1200x630 and then overlay the chosen 1200x630 PNG file over it. Can be usefull to add your brand to the image that shows up on Facebook shared links.
|
23 |
+
|
24 |
= The (Facebook) Open Graph Tags that this plugin inserts are: =
|
25 |
|
26 |
* **fb:app_id**: From settings on the options screen.
|
111 |
|
112 |
== Changelog ==
|
113 |
|
114 |
+
= 1.7.4 =
|
115 |
+
- New beta feature: Add overlay PNG logo to the image
|
116 |
+
- Minor fixes
|
117 |
+
|
118 |
= 1.7.3.1 =
|
119 |
- Fix: changed `twitter:image:src` meta name to `twitter:image` (Thanks mahler83)
|
120 |
- Tested with WordPres 4.5 RC2
|
wonderm00n-open-graph.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Facebook Open Graph, Google+ and Twitter Card Tags
|
4 |
-
* @version 1.7.
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Facebook Open Graph, Google+ and Twitter Card Tags
|
8 |
Plugin URI: http://www.webdados.pt/produtos-e-servicos/internet/desenvolvimento-wordpress/facebook-open-graph-meta-tags-wordpress/
|
9 |
Description: Inserts Facebook Open Graph, Google+ / Schema.org and Twitter Card Tags into your WordPress Blog/Website for more effective and efficient Facebook, Google+ and Twitter sharing results. You can also choose to insert the "enclosure" and "media:content" tags to the RSS feeds, so that apps like RSS Graffiti and twitterfeed post the image to Facebook correctly.
|
10 |
-
Version: 1.7.
|
11 |
Author: Webdados
|
12 |
Author URI: http://www.webdados.pt
|
13 |
Text Domain: wd-fb-og
|
@@ -16,7 +16,7 @@ Domain Path: /lang
|
|
16 |
|
17 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
18 |
|
19 |
-
$webdados_fb_open_graph_plugin_version='1.7.
|
20 |
$webdados_fb_open_graph_plugin_name='Facebook Open Graph, Google+ and Twitter Card Tags';
|
21 |
$webdados_fb_open_graph_plugin_settings=array(
|
22 |
'fb_app_id_show',
|
@@ -78,6 +78,8 @@ $webdados_fb_open_graph_plugin_settings=array(
|
|
78 |
'fb_twitter_card_type',
|
79 |
'fb_wc_usecategthumb',
|
80 |
'fb_wc_useproductgallery',
|
|
|
|
|
81 |
);
|
82 |
|
83 |
//We have to remove canonical NOW because the plugin runs too late - We're also loading the settings which is cool
|
@@ -311,7 +313,7 @@ function webdados_fb_open_graph() {
|
|
311 |
}
|
312 |
} else {
|
313 |
if (is_search()) {
|
314 |
-
$fb_title=esc_attr(strip_tags(stripslashes(__('Search for').' "'.get_search_query().'"')));
|
315 |
$fb_url=get_search_link();
|
316 |
} else {
|
317 |
if (is_author()) {
|
@@ -320,15 +322,15 @@ function webdados_fb_open_graph() {
|
|
320 |
} else {
|
321 |
if (is_archive()) {
|
322 |
if (is_day()) {
|
323 |
-
$fb_title=esc_attr(strip_tags(stripslashes(get_query_var('day').' '.single_month_title(' ', false).' '.__('Archives'))));
|
324 |
$fb_url=get_day_link(get_query_var('year'), get_query_var('monthnum'), get_query_var('day'));
|
325 |
} else {
|
326 |
if (is_month()) {
|
327 |
-
$fb_title=esc_attr(strip_tags(stripslashes(single_month_title(' ', false).' '.__('Archives'))));
|
328 |
$fb_url=get_month_link(get_query_var('year'), get_query_var('monthnum'));
|
329 |
} else {
|
330 |
if (is_year()) {
|
331 |
-
$fb_title=esc_attr(strip_tags(stripslashes(get_query_var('year').' '.__('Archives'))));
|
332 |
$fb_url=get_year_link(get_query_var('year'));
|
333 |
}
|
334 |
}
|
@@ -422,6 +424,11 @@ function webdados_fb_open_graph() {
|
|
422 |
$fb_image_size_show=0;
|
423 |
}
|
424 |
|
|
|
|
|
|
|
|
|
|
|
425 |
//No spaces on URLs
|
426 |
if (isset($fb_url) && trim($fb_url)!='') $fb_url= str_replace(' ', '%20', trim($fb_url));
|
427 |
if (isset($fb_publisher) && trim($fb_publisher)!='') $fb_publisher= str_replace(' ', '%20', trim($fb_publisher));
|
@@ -1059,19 +1066,21 @@ if (is_admin()) {
|
|
1059 |
function webdados_fb_open_graph_wpseo_notice() {
|
1060 |
if (defined('WPSEO_VERSION')) {
|
1061 |
global $current_user, $webdados_fb_open_graph_plugin_name;
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
<
|
1067 |
-
<
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
|
|
|
|
1075 |
}
|
1076 |
}
|
1077 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Facebook Open Graph, Google+ and Twitter Card Tags
|
4 |
+
* @version 1.7.4
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Facebook Open Graph, Google+ and Twitter Card Tags
|
8 |
Plugin URI: http://www.webdados.pt/produtos-e-servicos/internet/desenvolvimento-wordpress/facebook-open-graph-meta-tags-wordpress/
|
9 |
Description: Inserts Facebook Open Graph, Google+ / Schema.org and Twitter Card Tags into your WordPress Blog/Website for more effective and efficient Facebook, Google+ and Twitter sharing results. You can also choose to insert the "enclosure" and "media:content" tags to the RSS feeds, so that apps like RSS Graffiti and twitterfeed post the image to Facebook correctly.
|
10 |
+
Version: 1.7.4
|
11 |
Author: Webdados
|
12 |
Author URI: http://www.webdados.pt
|
13 |
Text Domain: wd-fb-og
|
16 |
|
17 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
18 |
|
19 |
+
$webdados_fb_open_graph_plugin_version='1.7.4';
|
20 |
$webdados_fb_open_graph_plugin_name='Facebook Open Graph, Google+ and Twitter Card Tags';
|
21 |
$webdados_fb_open_graph_plugin_settings=array(
|
22 |
'fb_app_id_show',
|
78 |
'fb_twitter_card_type',
|
79 |
'fb_wc_usecategthumb',
|
80 |
'fb_wc_useproductgallery',
|
81 |
+
'fb_image_overlay',
|
82 |
+
'fb_image_overlay_image',
|
83 |
);
|
84 |
|
85 |
//We have to remove canonical NOW because the plugin runs too late - We're also loading the settings which is cool
|
313 |
}
|
314 |
} else {
|
315 |
if (is_search()) {
|
316 |
+
$fb_title=esc_attr(strip_tags(stripslashes(__('Search for', 'wd-fb-og').' "'.get_search_query().'"')));
|
317 |
$fb_url=get_search_link();
|
318 |
} else {
|
319 |
if (is_author()) {
|
322 |
} else {
|
323 |
if (is_archive()) {
|
324 |
if (is_day()) {
|
325 |
+
$fb_title=esc_attr(strip_tags(stripslashes(get_query_var('day').' '.single_month_title(' ', false).' '.__('Archives', 'wd-fb-og'))));
|
326 |
$fb_url=get_day_link(get_query_var('year'), get_query_var('monthnum'), get_query_var('day'));
|
327 |
} else {
|
328 |
if (is_month()) {
|
329 |
+
$fb_title=esc_attr(strip_tags(stripslashes(single_month_title(' ', false).' '.__('Archives', 'wd-fb-og'))));
|
330 |
$fb_url=get_month_link(get_query_var('year'), get_query_var('monthnum'));
|
331 |
} else {
|
332 |
if (is_year()) {
|
333 |
+
$fb_title=esc_attr(strip_tags(stripslashes(get_query_var('year').' '.__('Archives', 'wd-fb-og'))));
|
334 |
$fb_url=get_year_link(get_query_var('year'));
|
335 |
}
|
336 |
}
|
424 |
$fb_image_size_show=0;
|
425 |
}
|
426 |
|
427 |
+
//Image overlay?
|
428 |
+
if (intval($fb_image_overlay)==1) {
|
429 |
+
$fb_image = plugins_url('/wonderm00ns-simple-facebook-open-graph-tags/fbimg.php?img='.urlencode($fb_image));
|
430 |
+
}
|
431 |
+
|
432 |
//No spaces on URLs
|
433 |
if (isset($fb_url) && trim($fb_url)!='') $fb_url= str_replace(' ', '%20', trim($fb_url));
|
434 |
if (isset($fb_publisher) && trim($fb_publisher)!='') $fb_publisher= str_replace(' ', '%20', trim($fb_publisher));
|
1066 |
function webdados_fb_open_graph_wpseo_notice() {
|
1067 |
if (defined('WPSEO_VERSION')) {
|
1068 |
global $current_user, $webdados_fb_open_graph_plugin_name;
|
1069 |
+
if (current_user_can('manage_options')) {
|
1070 |
+
$user_id=$current_user->ID;
|
1071 |
+
if (!get_user_meta($user_id,'wd_fb_og_wpseo_notice_ignore')) {
|
1072 |
+
?>
|
1073 |
+
<div class="error">
|
1074 |
+
<p>
|
1075 |
+
<b><?php echo $webdados_fb_open_graph_plugin_name; ?>:</b>
|
1076 |
+
<br/>
|
1077 |
+
<?php _e('Please ignore the (dumb) Yoast WordPress SEO warning regarding open graph issues with this plugin. Just disable WPSEO Social settings at', 'wd-fb-og'); ?>
|
1078 |
+
<a href="admin.php?page=wpseo_social&wd_fb_og_wpseo_notice_ignore=1"><?php _e('SEO > Social','wd-fb-og'); ?></a>
|
1079 |
+
</p>
|
1080 |
+
<p><a href="?wd_fb_og_wpseo_notice_ignore=1">Ignore this message</a></p>
|
1081 |
+
</div>
|
1082 |
+
<?php
|
1083 |
+
}
|
1084 |
}
|
1085 |
}
|
1086 |
}
|