Facebook Like Box - Version 2.8.7

Version Description

Download this release

Release Info

Developer vinoj.cardoza
Plugin Icon 128x128 Facebook Like Box
Version 2.8.7
Comparing to
See all releases

Version 2.8.7

cardoza_facebook_like_box.php ADDED
@@ -0,0 +1,417 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: Facebook Like Box
4
+ Description: Facebook Like Box enables you to display the facebook page likes in your website.
5
+ Version: 2.8.7
6
+ Author: johnnash1975
7
+ License: GPL2
8
+ */
9
+
10
+ add_action('admin_init', 'cfblb_enq_scripts');
11
+ add_action('wp_enqueue_scripts', 'cfblb_enq_scripts');
12
+
13
+ add_action("plugins_loaded", "cardoza_fb_like_init");
14
+ add_action("admin_menu", "cardoza_fb_like_options");
15
+ add_shortcode("cardoza_facebook_like_box", "cardoza_facebook_like_box_sc");
16
+ add_shortcode("cardoza_facebook_posts_like", "cardoza_facebook_posts_like_sc");
17
+
18
+ function cfblb_enq_scripts() {
19
+ wp_enqueue_style('cfblbcss', plugins_url('/cardozafacebook.css', __FILE__));
20
+ wp_enqueue_script('cfblbjs', plugins_url('/cardozafacebook.js', __FILE__), array('jquery'));
21
+ }
22
+
23
+ //The following function will retrieve all the avaialable
24
+ //options from the wordpress database
25
+
26
+ function cfblb_retrieve_options() {
27
+ $opt_val = array(
28
+ 'title' => esc_html(get_option('cfblb_title')),
29
+ 'fb_url' => esc_html(get_option('cfblb_fb_url')),
30
+ 'fb_border_color' => esc_html(get_option('cfblb_fb_border_color')),
31
+ 'fb_color' => esc_html(get_option('cfblb_fb_border_color')),
32
+ 'width' => esc_html(get_option('cfblb_width')),
33
+ 'height' => esc_html(get_option('cfblb_height')),
34
+ 'color_scheme' => esc_html(get_option('cfblb_color_scheme')),
35
+ 'show_faces' => esc_html(get_option('cfblb_show_faces')),
36
+ 'stream' => esc_html(get_option('cfblb_stream')),
37
+ 'header' => esc_html(get_option('cfblb_header')),
38
+ );
39
+ return $opt_val;
40
+ }
41
+
42
+ function cardoza_fb_like_options() {
43
+
44
+ add_menu_page(
45
+ __('FB Like Box'), __('FB Like Box'), 'manage_options', 'slug_for_fb_like_box', 'cardoza_fb_like_options_page', plugin_dir_url(__FILE__) . 'images/fb.png');
46
+ add_submenu_page(
47
+ 'slug_for_fb_like_box', __('Posts Like Box'), __('Posts Like Box'), 'manage_options', 'posts_like_options', 'posts_like_options');
48
+ }
49
+
50
+ function cardoza_fb_like_options_page() {
51
+ $cfblb_options = array(
52
+ 'cfb_title' => 'cfblb_title',
53
+ 'cfb_fb_url' => 'cfblb_fb_url',
54
+ 'cfb_fb_border_color' => 'cfblb_fb_border_color',
55
+ 'cfb_width' => 'cfblb_width',
56
+ 'cfb_height' => 'cfblb_height',
57
+ 'cfb_color_scheme' => 'cfblb_color_scheme',
58
+ 'cfb_show_faces' => 'cfblb_show_faces',
59
+ 'cfb_stream' => 'cfblb_stream',
60
+ 'cfb_header' => 'cfblb_header',
61
+ );
62
+
63
+ if (isset($_POST['frm_submit'])) {
64
+ if (!empty($_POST['frm_title'])){
65
+ $_POST['frm_title'] = sanitize_text_field($_POST['frm_title']);
66
+ update_option($cfblb_options['cfb_title'], $_POST['frm_title']);
67
+ }
68
+ if (!empty($_POST['frm_url'])){
69
+ $_POST['frm_url'] = sanitize_text_field($_POST['frm_url']);
70
+ update_option($cfblb_options['cfb_fb_url'], $_POST['frm_url']);
71
+ }
72
+ if (!empty($_POST['frm_border_color'])){
73
+ $_POST['frm_border_color'] = sanitize_text_field($_POST['frm_border_color']);
74
+ update_option($cfblb_options['cfb_fb_border_color'], $_POST['frm_border_color']);
75
+ }
76
+ if (!empty($_POST['frm_width'])){
77
+ $_POST['frm_width'] = sanitize_text_field($_POST['frm_width']);
78
+ update_option($cfblb_options['cfb_width'], $_POST['frm_width']);
79
+ }
80
+ if (!empty($_POST['frm_height'])){
81
+ $_POST['frm_height'] = sanitize_text_field($_POST['frm_height']);
82
+ update_option($cfblb_options['cfb_height'], $_POST['frm_height']);
83
+ }
84
+ if (!empty($_POST['frm_color_scheme'])){
85
+ $_POST['frm_color_scheme'] = sanitize_text_field($_POST['frm_color_scheme']);
86
+ update_option($cfblb_options['cfb_color_scheme'], $_POST['frm_color_scheme']);
87
+ }
88
+ if (!empty($_POST['frm_show_faces'])){
89
+ $_POST['frm_show_faces'] = sanitize_text_field($_POST['frm_show_faces']);
90
+ update_option($cfblb_options['cfb_show_faces'], $_POST['frm_show_faces']);
91
+ }
92
+ if (!empty($_POST['frm_stream'])){
93
+ $_POST['frm_stream'] = sanitize_text_field($_POST['frm_stream']);
94
+ update_option($cfblb_options['cfb_stream'], $_POST['frm_stream']);
95
+ }
96
+ if (!empty($_POST['frm_header'])){
97
+ $_POST['frm_header'] = sanitize_text_field($_POST['frm_header']);
98
+ update_option($cfblb_options['cfb_header'], $_POST['frm_header']);
99
+ }
100
+ ?>
101
+ <div id="message" class="updated fade"><p><strong><?php _e('Options saved.', 'facebooklikebox'); ?></strong></p></div>
102
+ <?php
103
+ }
104
+ $option_value = cfblb_retrieve_options();
105
+ ?>
106
+ <div class="wrap">
107
+ <h2><?php echo __("Facebook Like Box Options", "facebooklikebox"); ?></h2><br />
108
+ <!-- Administration panel form -->
109
+ <form method="post" action="<?php echo str_replace('%7E', '~', $_SERVER['REQUEST_URI']); ?>">
110
+ <table>
111
+ <tr><td><h3><?php _e('General Settings', 'facebooklikebox'); ?></h3></td><td></td></tr>
112
+ <tr height="35">
113
+ <td width="150"><b><?php _e('Title', 'facebooklikebox'); ?>:</b></td>
114
+ <td><input type="text" name="frm_title" size="50" value="<?php echo $option_value['title']; ?>"/>
115
+ &nbsp;<label id="cfbtitle"><b>?</b></label></td>
116
+ </tr>
117
+ <tr id="title_help"><td></td><td>(<?php _e('Title of the facebook like box', 'facebooklikebox'); ?>)</td></tr>
118
+ <tr height="35">
119
+ <td width="150"><b><?php _e('Facebook Page URL:', 'facebooklikebox'); ?></b></td>
120
+ <td><input type="text" name="frm_url" size="50" value="<?php echo $option_value['fb_url']; ?>"/>
121
+ &nbsp;<label id="cfbpage_url"><b>?</b></label></td>
122
+ </tr>
123
+ <tr id="page_url_help"><td></td><td>(<?php _e('Copy and paste your facebook page URL here', 'facebooklikebox'); ?>)</td></tr>
124
+ <tr height="35">
125
+ <td width="150"><b><?php _e("Border Color", 'facebooklikebox'); ?>:</b></td>
126
+ <td>#<input type="text" name="frm_border_color" value="<?php echo $option_value['fb_border_color']; ?>"/>
127
+ &nbsp;<label id="cfbborder"><b>?</b></label></td>
128
+ </tr>
129
+ <tr id="border_help"><td></td><td>(<?php _e('Border Color of the facebook like box', 'facebooklikebox'); ?>)</td></tr>
130
+ <tr height="35">
131
+ <td width="150"><b><?php _e('Width', 'facebooklikebox'); ?>:</b></td>
132
+ <td><input type="text" name="frm_width" value="<?php echo $option_value['width']; ?>"/>px
133
+ &nbsp;<label id="cfbwidth"><b>?</b></label></td>
134
+ </tr>
135
+ <tr id="width_help"><td></td><td>(<?php _e('Width of the facebook like box', 'facebooklikebox'); ?>)</td></tr>
136
+ <tr height="35">
137
+ <td width="150"><b><?php _e('Height', 'facebooklikebox'); ?>:</b></td>
138
+ <td><input type="text" name="frm_height" value="<?php echo $option_value['height']; ?>"/>px
139
+ &nbsp;<label id="cfbheight"><b>?</b></label></td>
140
+ </tr>
141
+ <tr id="height_help"><td></td><td>(<?php _e('Height of the facebook like box', 'facebooklikebox'); ?>)</td></tr>
142
+ <tr height="35">
143
+ <td width="150"><b><?php _e('Color Scheme', 'facebooklikebox'); ?>:</b></td>
144
+ <td>
145
+ <select name="frm_color_scheme" style="margin-left:0px;width:100px;">
146
+ <option value="light" <?php if ($option_value['color_scheme'] == "light") echo "selected='selected'"; ?>><?php _e('light', 'facebooklikebox'); ?></option>
147
+ <option value="dark" <?php if ($option_value['color_scheme'] == "dark") echo "selected='selected'"; ?>><?php _e('dark', 'facebooklikebox'); ?></option>
148
+ </select>
149
+ &nbsp;<label id="cfbcolor_scheme"><b>?</b></label></td>
150
+ </tr>
151
+ <tr id="color_scheme_help"><td></td><td>(<?php _e('Select the color scheme you want to display', 'facebooklikebox'); ?>)</td></tr>
152
+ <tr height="35">
153
+ <td width="150"><b><?php _e('Show Faces', 'facebooklikebox'); ?>:</b></td>
154
+ <td>
155
+ <select name="frm_show_faces" style="margin-left:0px;width:100px;">
156
+ <option value="true" <?php if ($option_value['show_faces'] == "true") echo "selected='selected'"; ?>><?php _e('Yes', 'facebooklikebox'); ?></option>
157
+ <option value="false" <?php if ($option_value['show_faces'] == "false") echo "selected='selected'"; ?>><?php _e('No', 'facebooklikebox'); ?></option>
158
+ </select>
159
+ &nbsp;<label id="cfbshow_faces"><b>?</b></label>
160
+ </td>
161
+ </tr>
162
+ <tr id="show_faces_help"><td></td><td>(<?php _e('Select the option to show the faces', 'facebooklikebox'); ?>)</td></tr>
163
+ <tr height="35">
164
+ <td width="150"><b><?php _e('Stream', 'facebooklikebox'); ?>:</b></td>
165
+ <td>
166
+ <select name="frm_stream" style="margin-left:0px;width:100px;">
167
+ <option value="true" <?php if ($option_value['stream'] == "true") echo "selected='selected'"; ?>><?php _e('Yes', 'facebooklikebox'); ?></option>
168
+ <option value="false" <?php if ($option_value['stream'] == "false") echo "selected='selected'"; ?>><?php _e('No', 'facebooklikebox'); ?></option>
169
+ </select>
170
+ &nbsp;<label id="cfbstream"><b>?</b></label>
171
+ </td>
172
+ </tr>
173
+ <tr id="stream_help"><td></td><td>(<?php _e('Select the option to display the stream', 'facebooklikebox'); ?>)</td></tr>
174
+ <tr height="35">
175
+ <td width="168"><b><?php _e('Header', 'facebooklikebox'); ?></b></td>
176
+ <td>
177
+ <select name="frm_header" style="margin-left:0px;width:100px;">
178
+ <option value="true" <?php if ($option_value['header'] == "true") echo "selected='selected'"; ?>><?php _e('Yes', 'facebooklikebox'); ?></option>
179
+ <option value="false" <?php if ($option_value['header'] == "false") echo "selected='selected'"; ?>><?php _e('No', 'facebooklikebox'); ?></option>
180
+ </select>
181
+ &nbsp;<label id="cfbheader"><b>?</b></label>
182
+ </td>
183
+ </tr>
184
+ <tr id="header_help"><td></td><td>(<?php _e('Select the option to display the title', 'facebooklikebox'); ?>)</td></tr>
185
+ <tr height="60"><td></td><td><input type="submit" name="frm_submit" value="<?php _e('Save', 'facebooklikebox'); ?>" style="background-color:#CCCCCC;font-weight:bold;"/></td>
186
+ </tr>
187
+ </table>
188
+ </form>
189
+ </div>
190
+ <?php
191
+ }
192
+
193
+ function widget_cardoza_fb_like($args) {
194
+ $option_value = cfblb_retrieve_options();
195
+ $option_value['fb_url'] = str_replace(":", "%3A", $option_value['fb_url']);
196
+ $option_value['fb_url'] = str_replace("/", "%2F", $option_value['fb_url']);
197
+ extract($args);
198
+
199
+ echo $before_widget;
200
+ echo $before_title;
201
+ if (empty($option_value['title']))
202
+ $option_value['title'] = "Facebook Likes";
203
+ echo $option_value['title'];
204
+ echo $after_title;
205
+ ?>
206
+ <iframe
207
+ src="//www.facebook.com/plugins/likebox.php?href=<?php echo $option_value['fb_url']; ?>&amp;width=<?php echo $option_value['width']; ?>&amp;height=<?php echo $option_value['height']; ?>&amp;colorscheme=<?php echo $option_value['color_scheme']; ?>&amp;show_faces=<?php echo $option_value['show_faces']; ?>&amp;stream=<?php echo $option_value['stream']; ?>&amp;header=<?php echo $option_value['header']; ?>&amp;border_color=%23<?php echo $option_value['fb_border_color']; ?>" scrolling="no" frameborder="0" style="border:1px solid #<?php echo $option_value['fb_border_color']; ?>; overflow:hidden; width:<?php echo $option_value['width']; ?>px; height:<?php echo $option_value['height']; ?>px;" allowTransparency="true">
208
+ </iframe>
209
+ <?php
210
+ global $wpdb;
211
+ echo $after_widget;
212
+ }
213
+
214
+ function cardoza_facebook_like_box_sc($atts) {
215
+ ob_start();
216
+ $option_value = cfblb_retrieve_options();
217
+ $option_value['fb_url'] = str_replace(":", "%3A", $option_value['fb_url']);
218
+ $option_value['fb_url'] = str_replace("/", "%2F", $option_value['fb_url']);
219
+
220
+ if (isset($atts['width']) && !empty($atts['width']))
221
+ $option_value['width'] = $atts['width'];
222
+ if (isset($atts['height']) && !empty($atts['height']))
223
+ $option_value['height'] = $atts['height'];
224
+ ?>
225
+ <iframe
226
+ src="//www.facebook.com/plugins/likebox.php?href=<?php echo $option_value['fb_url']; ?>&amp;
227
+ width=<?php echo $option_value['width']; ?>&amp;
228
+ height=<?php echo $option_value['height']; ?>&amp;
229
+ colorscheme=<?php echo $option_value['color_scheme']; ?>&amp;
230
+ show_faces=<?php echo $option_value['show_faces']; ?>&amp;
231
+ stream=<?php echo $option_value['stream']; ?>&amp;
232
+ header=<?php echo $option_value['header']; ?>&amp;
233
+ border_color=%23<?php echo $option_value['fb_border_color']; ?>"
234
+ scrolling="no"
235
+ frameborder="0"
236
+ style="border:1px solid #<?php echo $option_value['fb_border_color']; ?>; overflow:hidden; width:<?php echo $option_value['width']; ?>px; height:<?php echo $option_value['height']; ?>px;" allowTransparency="true">
237
+ </iframe>
238
+ <?php
239
+ $output_string = ob_get_contents();
240
+ ob_end_clean();
241
+ return $output_string;
242
+ }
243
+
244
+ function posts_like_options() {
245
+ $cfpl_enable = get_option('cfpl_enable');
246
+ $show_button = get_option('cfpl_show_button');
247
+ $layout = get_option('cfpl_layout');
248
+ $show_faces = get_option('cfpl_show_faces');
249
+ $verb = get_option('cfpl_verb');
250
+ $color_scheme = get_option('cfpl_color_scheme');
251
+
252
+ if (isset($_POST['frm_submit'])) {
253
+ if ($_POST['cfpl_enable']){
254
+ $_POST['cfpl_enable'] = sanitize_text_field($_POST['cfpl_enable']);
255
+ update_option('cfpl_enable', $_POST['cfpl_enable']);
256
+ }
257
+ if ($_POST['show_button']){
258
+ $_POST['show_button'] = sanitize_text_field($_POST['show_button']);
259
+ update_option('cfpl_show_button', $_POST['show_button']);
260
+ }
261
+ if ($_POST['layout']){
262
+ $_POST['layout'] = sanitize_text_field($_POST['layout']);
263
+ update_option('cfpl_layout', $_POST['layout']);
264
+ }
265
+ if ($_POST['show_faces']){
266
+ $_POST['show_faces'] = sanitize_text_field($_POST['show_faces']);
267
+ update_option('cfpl_show_faces', $_POST['show_faces']);
268
+ }
269
+ if ($_POST['verb']){
270
+ $_POST['verb'] = sanitize_text_field($_POST['verb']);
271
+ update_option('cfpl_verb', $_POST['verb']);
272
+ }
273
+ if ($_POST['color_scheme']){
274
+ $_POST['color_scheme'] = sanitize_text_field($_POST['color_scheme']);
275
+ update_option('cfpl_color_scheme', $_POST['color_scheme']);
276
+ }
277
+ $cfpl_enable = get_option('cfpl_enable');
278
+ $show_button = get_option('cfpl_show_button');
279
+ $layout = get_option('cfpl_layout');
280
+ $show_faces = get_option('cfpl_show_faces');
281
+ $verb = get_option('cfpl_verb');
282
+ $color_scheme = get_option('cfpl_color_scheme');
283
+ ?>
284
+ <div id="message" class="updated fade"><p><strong><?php _e('Options saved.', 'facebooklikebox'); ?></strong></p></div>
285
+ <?php
286
+ }
287
+ ?>
288
+ <div class="wrap">
289
+ <h2><?php _e("Facebook Posts Like Options", "facebooklikebox"); ?></h2><br />
290
+ <!-- Administration panel form -->
291
+ <form method="post" action="<?php echo str_replace('%7E', '~', $_SERVER['REQUEST_URI']); ?>">
292
+ <table>
293
+ <tr height="35">
294
+ <td width="260"><b><?php _e('Show like button for posts', 'facebooklikebox'); ?>:</b></td>
295
+ <td>
296
+ <select name="cfpl_enable" style="margin-left:0px;width:100px;">
297
+ <option value="yes" <?php if ($cfpl_enable == "yes") echo "selected='selected'"; ?>><?php _e('Yes', 'facebooklikebox'); ?></option>
298
+ <option value="no" <?php if ($cfpl_enable == "no") echo "selected='selected'"; ?>><?php _e('No', 'facebooklikebox'); ?></option>
299
+ </select>
300
+ </td>
301
+ </tr>
302
+ <tr height="35">
303
+ <td width="150"><b><?php _e('Show like button', 'facebooklikebox'); ?>:</b></td>
304
+ <td>
305
+ <select name="show_button" style="margin-left:0px;width:225px;">
306
+ <option value="before_post_content" <?php if ($show_button == "before_post_content") echo "selected='selected'"; ?>><?php _e('Before the post content', 'facebooklikebox'); ?></option>
307
+ <option value="after_post_content" <?php if ($show_button == "after_post_content") echo "selected='selected'"; ?>><?php _e('After the post content', 'facebooklikebox'); ?></option>
308
+ <option value="before_after_post_content" <?php if ($show_button == "before_after_post_content") echo "selected='selected'"; ?>><?php _e('Before and after the post content', 'facebooklikebox'); ?></option>
309
+ </select>
310
+ </td>
311
+ </tr>
312
+ <tr height="35">
313
+ <td width="150"><b><?php _e('Layout', 'facebooklikebox'); ?>:</b></td>
314
+ <td>
315
+ <select name="layout" style="margin-left:0px;width:100px;">
316
+ <option value="standard" <?php if ($layout == "standard") echo "selected='selected'"; ?>>standard</option>
317
+ <option value="button_count" <?php if ($layout == "button_count") echo "selected='selected'"; ?>>button_count</option>
318
+ <option value="box_count" <?php if ($layout == "box_count") echo "selected='selected'"; ?>>box_count</option>
319
+ </select>
320
+ </td>
321
+ </tr>
322
+ <tr height="35">
323
+ <td width="150"><b><?php _e('Show Faces', 'facebooklikebox'); ?>:</b></td>
324
+ <td>
325
+ <select name="show_faces" style="margin-left:0px;width:100px;">
326
+ <option value="true" <?php if ($show_faces == "true") echo "selected='selected'"; ?>><?php _e('Yes', 'facebooklikebox'); ?></option>
327
+ <option value="false" <?php if ($show_faces == "false") echo "selected='selected'"; ?>><?php _e('No', 'facebooklikebox'); ?></option>
328
+ </select>
329
+ &nbsp;(<?php _e('Select the option to show the faces', 'facebooklikebox'); ?>)
330
+ </td>
331
+ </tr>
332
+ <tr height="35">
333
+ <td width="150"><b><?php _e('Verb to display', 'facebooklikebox'); ?>:</b></td>
334
+ <td>
335
+ <select name="verb" style="margin-left:0px;width:100px;">
336
+ <option value="like" <?php if ($verb == "like") echo "selected='selected'"; ?>><?php _e('like', 'facebooklikebox'); ?></option>
337
+ <option value="recommend" <?php if ($verb == "recommend") echo "selected='selected'"; ?>><?php _e('recommend', 'facebooklikebox'); ?></option>
338
+ </select>
339
+ </td>
340
+ </tr>
341
+ <tr height="35">
342
+ <td width="150"><b><?php _e('Color Scheme', 'facebooklikebox'); ?>:</b></td>
343
+ <td>
344
+ <select name="color_scheme" style="margin-left:0px;width:100px;">
345
+ <option value="light" <?php if ($color_scheme == "light") echo "selected='selected'"; ?>><?php _e('light', 'facebooklikebox'); ?></option>
346
+ <option value="dark" <?php if ($color_scheme == "dark") echo "selected='selected'"; ?>><?php _e('dark', 'facebooklikebox'); ?></option>
347
+ </select>
348
+ &nbsp;(<?php _e('Select the color scheme you want to display', 'facebooklikebox'); ?>)
349
+ </td>
350
+ </tr>
351
+ <tr height="60"><td></td><td><input type="submit" name="frm_submit" value="<?php _e('Save', 'facebooklikebox'); ?>" style="background-color:#CCCCCC;font-weight:bold;"/></td>
352
+ </tr>
353
+ </table>
354
+ </form>
355
+ </div>
356
+ <?php
357
+ }
358
+
359
+ function fb_like_button_for_post($content) {
360
+ $cfpl_enable = get_option('cfpl_enable');
361
+ $show_button = get_option('cfpl_show_button');
362
+ $layout = get_option('cfpl_layout');
363
+ $show_faces = get_option('cfpl_show_faces');
364
+ $verb = get_option('cfpl_verb');
365
+ $color_scheme = get_option('cfpl_color_scheme');
366
+
367
+ if (is_single()) {
368
+ if ($cfpl_enable == 'yes') {
369
+ if ($show_button == 'before_post_content') {
370
+ $content = '<iframe src="http://www.facebook.com/plugins/like.php?href='
371
+ . urlencode(get_permalink($post->ID)) .
372
+ '&amp;layout=' . $layout . '&amp;show_faces=' . $show_faces . '&amp;width=450&amp;action=' . $verb . '&amp;colorscheme=' . $color_scheme . '" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:60px;"></iframe>'
373
+ . $content;
374
+ }
375
+ if ($show_button == 'after_post_content') {
376
+ $content = $content . '<iframe src="http://www.facebook.com/plugins/like.php?href='
377
+ . urlencode(get_permalink($post->ID)) .
378
+ '&amp;layout=' . $layout . '&amp;show_faces=' . $show_faces . '&amp;width=450&amp;action=' . $verb . '&amp;colorscheme=' . $color_scheme . '" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:60px;"></iframe>';
379
+ }
380
+ if ($show_button == 'before_after_post_content') {
381
+ $content = '<iframe src="http://www.facebook.com/plugins/like.php?href='
382
+ . urlencode(get_permalink($post->ID)) .
383
+ '&amp;layout=' . $layout . '&amp;show_faces=' . $show_faces . '&amp;width=450&amp;action=' . $verb . '&amp;colorscheme=' . $color_scheme . '" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:60px;"></iframe>'
384
+ . $content .
385
+ '<iframe src="http://www.facebook.com/plugins/like.php?href='
386
+ . urlencode(get_permalink($post->ID)) .
387
+ '&amp;layout=' . $layout . '&amp;show_faces=' . $show_faces . '&amp;width=450&amp;action=' . $verb . '&amp;colorscheme=' . $color_scheme . '" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:60px;"></iframe>';
388
+ }
389
+ }
390
+ }
391
+ return $content;
392
+ }
393
+
394
+ add_filter('the_content', 'fb_like_button_for_post');
395
+
396
+ function cardoza_facebook_posts_like_sc($content) {
397
+ $cfpl_enable = get_option('cfpl_enable');
398
+ $show_button = get_option('cfpl_show_button');
399
+ $layout = get_option('cfpl_layout');
400
+ $show_faces = get_option('cfpl_show_faces');
401
+ $verb = get_option('cfpl_verb');
402
+ $color_scheme = get_option('cfpl_color_scheme');
403
+
404
+ if (is_single()) {
405
+ $content = '<iframe src="http://www.facebook.com/plugins/like.php?href='
406
+ . urlencode(get_permalink($post->ID)) .
407
+ '&amp;layout=' . $layout . '&amp;show_faces=' . $show_faces . '&amp;width=450&amp;action=' . $verb . '&amp;colorscheme=' . $color_scheme . '" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:60px;"></iframe>'
408
+ . $content;
409
+ }
410
+ return $content;
411
+ }
412
+
413
+ function cardoza_fb_like_init() {
414
+ load_plugin_textdomain('facebooklikebox', false, dirname(plugin_basename(__FILE__)) . '/languages');
415
+ wp_register_sidebar_widget('FBLBX', __('Facebook Like Box'), 'widget_cardoza_fb_like');
416
+ }
417
+ ?>
cardozafacebook.css ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #cfbtitle,
2
+ #cfbpage_url,
3
+ #cfbborder,
4
+ #cfbwidth,
5
+ #cfbheight,
6
+ #cfbcolor_scheme,
7
+ #cfbshow_faces,
8
+ #cfbstream,
9
+ #cfbheader{
10
+ font-size: 18px;
11
+ }
12
+ #title_help,
13
+ #page_url_help,
14
+ #border_help,
15
+ #width_help,
16
+ #height_help,
17
+ #color_scheme_help,
18
+ #show_faces_help,
19
+ #stream_help,
20
+ #header_help{
21
+ display: none;
22
+ }
cardozafacebook.js ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready(function(e){
2
+ jQuery('#cfbtitle').click(function(){
3
+ jQuery('#title_help').toggle();
4
+ })
5
+ jQuery('#cfbpage_url').click(function(){
6
+ jQuery('#page_url_help').toggle();
7
+ })
8
+ jQuery('#cfbborder').click(function(){
9
+ jQuery('#border_help').toggle();
10
+ })
11
+ jQuery('#cfbwidth').click(function(){
12
+ jQuery('#width_help').toggle();
13
+ })
14
+ jQuery('#cfbheight').click(function(){
15
+ jQuery('#height_help').toggle();
16
+ })
17
+ jQuery('#cfbcolor_scheme').click(function(){
18
+ jQuery('#color_scheme_help').toggle();
19
+ })
20
+ jQuery('#cfbshow_faces').click(function(){
21
+ jQuery('#show_faces_help').toggle();
22
+ })
23
+ jQuery('#cfbstream').click(function(){
24
+ jQuery('#stream_help').toggle();
25
+ })
26
+ jQuery('#cfbheader').click(function(){
27
+ jQuery('#header_help').toggle();
28
+ })
29
+ })
images/fb.png ADDED
Binary file
languages/facebooklikebox-da_DK.mo ADDED
Binary file
languages/facebooklikebox-da_DK.po ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: facebooklikebox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-27 13:34-0000\n"
6
+ "PO-Revision-Date: 2012-08-05 22:45+0100\n"
7
+ "Last-Translator: Simon Bøgh <tropicdome@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Language: dk_DK\n"
15
+ "X-Poedit-SearchPath-0: ..\n"
16
+
17
+ #: ../cardoza_facebook_like_box.php:38 ../cardoza_facebook_like_box.php:39
18
+ msgid "FB Like Box"
19
+ msgstr "FB Like Box"
20
+
21
+ #: ../cardoza_facebook_like_box.php:46 ../cardoza_facebook_like_box.php:47
22
+ msgid "Posts Like Box"
23
+ msgstr "Posts Like Box"
24
+
25
+ #: ../cardoza_facebook_like_box.php:77 ../cardoza_facebook_like_box.php:236
26
+ msgid "Options saved."
27
+ msgstr "Indstillinger gemt."
28
+
29
+ #: ../cardoza_facebook_like_box.php:83
30
+ msgid "Facebook Like Box Options"
31
+ msgstr "Facebook Like Box Indstillinger"
32
+
33
+ #: ../cardoza_facebook_like_box.php:87
34
+ msgid "General Settings"
35
+ msgstr "Generelle Indstillinger"
36
+
37
+ #: ../cardoza_facebook_like_box.php:89
38
+ msgid "Title"
39
+ msgstr "Titel"
40
+
41
+ #: ../cardoza_facebook_like_box.php:91
42
+ msgid "Title of the facebook like box"
43
+ msgstr "Titel på Facebook Like Box"
44
+
45
+ #: ../cardoza_facebook_like_box.php:94
46
+ msgid "Facebook Page URL:"
47
+ msgstr "Facebook Page URL:"
48
+
49
+ #: ../cardoza_facebook_like_box.php:96
50
+ msgid "Copy and paste your facebook page URL here"
51
+ msgstr "Kopier og indsæt din Facebook page URL her"
52
+
53
+ #: ../cardoza_facebook_like_box.php:99
54
+ msgid "Border Color"
55
+ msgstr "Rammefarve"
56
+
57
+ #: ../cardoza_facebook_like_box.php:101
58
+ msgid "Border Color of the facebook like box"
59
+ msgstr "Rammefarve på Facebook Like Box"
60
+
61
+ #: ../cardoza_facebook_like_box.php:104
62
+ msgid "Width"
63
+ msgstr "Bredde"
64
+
65
+ #: ../cardoza_facebook_like_box.php:106
66
+ msgid "Width of the facebook like box"
67
+ msgstr "Bredde på Facebook Like Box"
68
+
69
+ #: ../cardoza_facebook_like_box.php:109
70
+ msgid "Height"
71
+ msgstr "Højde"
72
+
73
+ #: ../cardoza_facebook_like_box.php:111
74
+ msgid "Height of the facebook like box"
75
+ msgstr "Højde på Facebook Like Box"
76
+
77
+ #: ../cardoza_facebook_like_box.php:114 ../cardoza_facebook_like_box.php:294
78
+ msgid "Color Scheme"
79
+ msgstr "Farveskema"
80
+
81
+ #: ../cardoza_facebook_like_box.php:117 ../cardoza_facebook_like_box.php:297
82
+ msgid "light"
83
+ msgstr "lys"
84
+
85
+ #: ../cardoza_facebook_like_box.php:118 ../cardoza_facebook_like_box.php:298
86
+ msgid "dark"
87
+ msgstr "mørk"
88
+
89
+ #: ../cardoza_facebook_like_box.php:120 ../cardoza_facebook_like_box.php:300
90
+ msgid "Select the color scheme you want to display"
91
+ msgstr "Vælg det farveskema, du vil vise"
92
+
93
+ #: ../cardoza_facebook_like_box.php:124 ../cardoza_facebook_like_box.php:275
94
+ msgid "Show Faces"
95
+ msgstr "Vis Ansigter"
96
+
97
+ #: ../cardoza_facebook_like_box.php:127 ../cardoza_facebook_like_box.php:137
98
+ #: ../cardoza_facebook_like_box.php:147 ../cardoza_facebook_like_box.php:249
99
+ #: ../cardoza_facebook_like_box.php:278
100
+ msgid "Yes"
101
+ msgstr "Ja"
102
+
103
+ #: ../cardoza_facebook_like_box.php:128 ../cardoza_facebook_like_box.php:138
104
+ #: ../cardoza_facebook_like_box.php:148 ../cardoza_facebook_like_box.php:250
105
+ #: ../cardoza_facebook_like_box.php:279
106
+ msgid "No"
107
+ msgstr "Nej"
108
+
109
+ #: ../cardoza_facebook_like_box.php:130 ../cardoza_facebook_like_box.php:281
110
+ msgid "Select the option to show the faces"
111
+ msgstr "Vælg denne indstilling for at vise ansigter"
112
+
113
+ #: ../cardoza_facebook_like_box.php:134
114
+ msgid "Stream"
115
+ msgstr "Stream"
116
+
117
+ #: ../cardoza_facebook_like_box.php:140
118
+ msgid "Select the option to display the stream"
119
+ msgstr "Vælg denne indstilling for at vise strem"
120
+
121
+ #: ../cardoza_facebook_like_box.php:144
122
+ msgid "Header"
123
+ msgstr "Sidehoved"
124
+
125
+ #: ../cardoza_facebook_like_box.php:150
126
+ msgid "Select the option to display the title"
127
+ msgstr "Vælg denne indstilling for at vise titlen"
128
+
129
+ #: ../cardoza_facebook_like_box.php:153 ../cardoza_facebook_like_box.php:303
130
+ msgid "Save"
131
+ msgstr "Gem"
132
+
133
+ #: ../cardoza_facebook_like_box.php:241
134
+ msgid "Facebook Posts Like Options"
135
+ msgstr "Facebook Posts Like Indstillinger"
136
+
137
+ #: ../cardoza_facebook_like_box.php:246
138
+ msgid "Show like button for posts"
139
+ msgstr "Vis like knap for indlæg"
140
+
141
+ #: ../cardoza_facebook_like_box.php:255
142
+ msgid "Show like button"
143
+ msgstr "Vis like knap"
144
+
145
+ #: ../cardoza_facebook_like_box.php:258
146
+ msgid "Before the post content"
147
+ msgstr "Før indholdet i et indlæg"
148
+
149
+ #: ../cardoza_facebook_like_box.php:259
150
+ msgid "After the post content"
151
+ msgstr "Efter indholdet i et indlæg"
152
+
153
+ #: ../cardoza_facebook_like_box.php:260
154
+ msgid "Before and after the post content"
155
+ msgstr "Før og efter indholdet i et indlæg"
156
+
157
+ #: ../cardoza_facebook_like_box.php:265
158
+ msgid "Layout"
159
+ msgstr "Layout"
160
+
161
+ #: ../cardoza_facebook_like_box.php:285
162
+ msgid "Verb to display"
163
+ msgstr "Udsagnsord der skal vises"
164
+
165
+ #: ../cardoza_facebook_like_box.php:288
166
+ msgid "like"
167
+ msgstr "Synes godt om"
168
+
169
+ #: ../cardoza_facebook_like_box.php:289
170
+ msgid "recommend"
171
+ msgstr "Anbefal"
172
+
173
+ #: ../cardoza_facebook_like_box.php:350
174
+ msgid "Facebook Like Box"
175
+ msgstr "Facebook Like Box"
languages/facebooklikebox-de_DE.mo ADDED
Binary file
languages/facebooklikebox-de_DE.po ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: facebooklikebox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-27 13:34-0000\n"
6
+ "PO-Revision-Date: 2012-07-27 13:40-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: German\n"
15
+ "X-Poedit-Country: GERMANY\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../cardoza_facebook_like_box.php:38
19
+ #: ../cardoza_facebook_like_box.php:39
20
+ msgid "FB Like Box"
21
+ msgstr "FB Like Box"
22
+
23
+ #: ../cardoza_facebook_like_box.php:46
24
+ #: ../cardoza_facebook_like_box.php:47
25
+ msgid "Posts Like Box"
26
+ msgstr "Posts Like Box"
27
+
28
+ #: ../cardoza_facebook_like_box.php:77
29
+ #: ../cardoza_facebook_like_box.php:236
30
+ msgid "Options saved."
31
+ msgstr "Einstellungen wurden gespeichert."
32
+
33
+ #: ../cardoza_facebook_like_box.php:83
34
+ msgid "Facebook Like Box Options"
35
+ msgstr "Facebook Like Box Einstellungen"
36
+
37
+ #: ../cardoza_facebook_like_box.php:87
38
+ msgid "General Settings"
39
+ msgstr "Allgemeine Einstellungen"
40
+
41
+ #: ../cardoza_facebook_like_box.php:89
42
+ msgid "Title"
43
+ msgstr "Titel"
44
+
45
+ #: ../cardoza_facebook_like_box.php:91
46
+ msgid "Title of the facebook like box"
47
+ msgstr "Titel der Facebook Like Box"
48
+
49
+ #: ../cardoza_facebook_like_box.php:94
50
+ msgid "Facebook Page URL:"
51
+ msgstr "Facebook Page URL:"
52
+
53
+ #: ../cardoza_facebook_like_box.php:96
54
+ msgid "Copy and paste your facebook page URL here"
55
+ msgstr "Kopieren Sie Ihre Facebook-URL hier herein"
56
+
57
+ #: ../cardoza_facebook_like_box.php:99
58
+ msgid "Border Color"
59
+ msgstr "Rahmenfarbe"
60
+
61
+ #: ../cardoza_facebook_like_box.php:101
62
+ msgid "Border Color of the facebook like box"
63
+ msgstr "Rahmenfarbe der Facebook Like Box"
64
+
65
+ #: ../cardoza_facebook_like_box.php:104
66
+ msgid "Width"
67
+ msgstr "Breite"
68
+
69
+ #: ../cardoza_facebook_like_box.php:106
70
+ msgid "Width of the facebook like box"
71
+ msgstr "Breite der Facebook Like Box"
72
+
73
+ #: ../cardoza_facebook_like_box.php:109
74
+ msgid "Height"
75
+ msgstr "Höhe"
76
+
77
+ #: ../cardoza_facebook_like_box.php:111
78
+ msgid "Height of the facebook like box"
79
+ msgstr "Höhe der Facebook Like Box"
80
+
81
+ #: ../cardoza_facebook_like_box.php:114
82
+ #: ../cardoza_facebook_like_box.php:294
83
+ msgid "Color Scheme"
84
+ msgstr "Farnschema"
85
+
86
+ #: ../cardoza_facebook_like_box.php:117
87
+ #: ../cardoza_facebook_like_box.php:297
88
+ msgid "light"
89
+ msgstr "hell"
90
+
91
+ #: ../cardoza_facebook_like_box.php:118
92
+ #: ../cardoza_facebook_like_box.php:298
93
+ msgid "dark"
94
+ msgstr "dunkel"
95
+
96
+ #: ../cardoza_facebook_like_box.php:120
97
+ #: ../cardoza_facebook_like_box.php:300
98
+ msgid "Select the color scheme you want to display"
99
+ msgstr "Wählen Sie Ihr Farbschema aus "
100
+
101
+ #: ../cardoza_facebook_like_box.php:124
102
+ #: ../cardoza_facebook_like_box.php:275
103
+ msgid "Show Faces"
104
+ msgstr "Gesichter anzeigen"
105
+
106
+ #: ../cardoza_facebook_like_box.php:127
107
+ #: ../cardoza_facebook_like_box.php:137
108
+ #: ../cardoza_facebook_like_box.php:147
109
+ #: ../cardoza_facebook_like_box.php:249
110
+ #: ../cardoza_facebook_like_box.php:278
111
+ msgid "Yes"
112
+ msgstr "Ja"
113
+
114
+ #: ../cardoza_facebook_like_box.php:128
115
+ #: ../cardoza_facebook_like_box.php:138
116
+ #: ../cardoza_facebook_like_box.php:148
117
+ #: ../cardoza_facebook_like_box.php:250
118
+ #: ../cardoza_facebook_like_box.php:279
119
+ msgid "No"
120
+ msgstr "Kein"
121
+
122
+ #: ../cardoza_facebook_like_box.php:130
123
+ #: ../cardoza_facebook_like_box.php:281
124
+ msgid "Select the option to show the faces"
125
+ msgstr "Diese Option auswählen, um Gesicher anzuzeigen"
126
+
127
+ #: ../cardoza_facebook_like_box.php:134
128
+ msgid "Stream"
129
+ msgstr "Stream"
130
+
131
+ #: ../cardoza_facebook_like_box.php:140
132
+ msgid "Select the option to display the stream"
133
+ msgstr "Diese Option auswählen, um den Facebook Stream anzuzeigen"
134
+
135
+ #: ../cardoza_facebook_like_box.php:144
136
+ msgid "Header"
137
+ msgstr "Kopfbereich"
138
+
139
+ #: ../cardoza_facebook_like_box.php:150
140
+ msgid "Select the option to display the title"
141
+ msgstr "Diese Option auswählen, um den Titel anzuzeigen"
142
+
143
+ #: ../cardoza_facebook_like_box.php:153
144
+ #: ../cardoza_facebook_like_box.php:303
145
+ msgid "Save"
146
+ msgstr "Speichern"
147
+
148
+ #: ../cardoza_facebook_like_box.php:241
149
+ msgid "Facebook Posts Like Options"
150
+ msgstr "Facebook Posts Like Einstellungen"
151
+
152
+ #: ../cardoza_facebook_like_box.php:246
153
+ msgid "Show like button for posts"
154
+ msgstr "Like Button für Posts anzeigen"
155
+
156
+ #: ../cardoza_facebook_like_box.php:255
157
+ msgid "Show like button"
158
+ msgstr "Like Button anzeigen"
159
+
160
+ #: ../cardoza_facebook_like_box.php:258
161
+ msgid "Before the post content"
162
+ msgstr "Vor dem Inhalt des Posts"
163
+
164
+ #: ../cardoza_facebook_like_box.php:259
165
+ msgid "After the post content"
166
+ msgstr "Nach dem Inhalt des Posts"
167
+
168
+ #: ../cardoza_facebook_like_box.php:260
169
+ msgid "Before and after the post content"
170
+ msgstr "VOr und nach dem Inhalt des Posts"
171
+
172
+ #: ../cardoza_facebook_like_box.php:265
173
+ msgid "Layout"
174
+ msgstr "Layout"
175
+
176
+ #: ../cardoza_facebook_like_box.php:285
177
+ msgid "Verb to display"
178
+ msgstr "Anzuzeigendes Verb "
179
+
180
+ #: ../cardoza_facebook_like_box.php:288
181
+ msgid "like"
182
+ msgstr "like"
183
+
184
+ #: ../cardoza_facebook_like_box.php:289
185
+ msgid "recommend"
186
+ msgstr "benötigt "
187
+
188
+ #: ../cardoza_facebook_like_box.php:350
189
+ msgid "Facebook Like Box"
190
+ msgstr "Facebook Like Box"
191
+
languages/facebooklikebox-es_ES.mo ADDED
Binary file
languages/facebooklikebox-es_ES.po ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: facebooklikebox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-24 14:29-0000\n"
6
+ "PO-Revision-Date: 2012-11-12 12:14-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Spanish\n"
15
+ "X-Poedit-Country: SPAIN\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../cardoza_facebook_like_box.php:38
19
+ #: ../cardoza_facebook_like_box.php:39
20
+ msgid "FB Like Box"
21
+ msgstr "FB Like Box"
22
+
23
+ #: ../cardoza_facebook_like_box.php:46
24
+ #: ../cardoza_facebook_like_box.php:47
25
+ msgid "Posts Like Box"
26
+ msgstr "Posts Like Box"
27
+
28
+ #: ../cardoza_facebook_like_box.php:77
29
+ #: ../cardoza_facebook_like_box.php:236
30
+ msgid "Options saved."
31
+ msgstr "Opciones guardadas."
32
+
33
+ #: ../cardoza_facebook_like_box.php:83
34
+ msgid "Facebook Like Box Options"
35
+ msgstr "Opciones de la caja \"me gusta\" de Facebook"
36
+
37
+ #: ../cardoza_facebook_like_box.php:87
38
+ msgid "General Settings"
39
+ msgstr "Configuración general"
40
+
41
+ #: ../cardoza_facebook_like_box.php:89
42
+ msgid "Title"
43
+ msgstr "Título"
44
+
45
+ #: ../cardoza_facebook_like_box.php:91
46
+ msgid "Title of the facebook like box"
47
+ msgstr "Título de la caja \"me gusta\" de Facebook"
48
+
49
+ #: ../cardoza_facebook_like_box.php:94
50
+ msgid "Facebook Page URL:"
51
+ msgstr "Facebook Page URL:"
52
+
53
+ #: ../cardoza_facebook_like_box.php:96
54
+ msgid "Copy and paste your facebook page URL here"
55
+ msgstr "Copia y pega la URL de tu página de Facebook aquí"
56
+
57
+ #: ../cardoza_facebook_like_box.php:99
58
+ msgid "Border Color"
59
+ msgstr "Color del borde"
60
+
61
+ #: ../cardoza_facebook_like_box.php:101
62
+ msgid "Border Color of the facebook like box"
63
+ msgstr "Color del borde de la caja \"me gusta\" de Facebook"
64
+
65
+ #: ../cardoza_facebook_like_box.php:104
66
+ msgid "Width"
67
+ msgstr "Ancho"
68
+
69
+ #: ../cardoza_facebook_like_box.php:106
70
+ msgid "Width of the facebook like box"
71
+ msgstr "Ancho de la caja \"me gusta\" de Facebook"
72
+
73
+ #: ../cardoza_facebook_like_box.php:109
74
+ msgid "Height"
75
+ msgstr "Alto"
76
+
77
+ #: ../cardoza_facebook_like_box.php:111
78
+ msgid "Height of the facebook like box"
79
+ msgstr "Altura de la caja \"me gusta\" de Facebook"
80
+
81
+ #: ../cardoza_facebook_like_box.php:114
82
+ #: ../cardoza_facebook_like_box.php:294
83
+ msgid "Color Scheme"
84
+ msgstr "Combinación de colores"
85
+
86
+ #: ../cardoza_facebook_like_box.php:117
87
+ #: ../cardoza_facebook_like_box.php:297
88
+ msgid "light"
89
+ msgstr "claro"
90
+
91
+ #: ../cardoza_facebook_like_box.php:118
92
+ #: ../cardoza_facebook_like_box.php:298
93
+ msgid "dark"
94
+ msgstr "oscuro"
95
+
96
+ #: ../cardoza_facebook_like_box.php:120
97
+ #: ../cardoza_facebook_like_box.php:300
98
+ msgid "Select the color scheme you want to display"
99
+ msgstr "Selecciona el esquema de colores que deseas mostrar"
100
+
101
+ #: ../cardoza_facebook_like_box.php:124
102
+ #: ../cardoza_facebook_like_box.php:275
103
+ msgid "Show Faces"
104
+ msgstr "Mostrar avatares"
105
+
106
+ #: ../cardoza_facebook_like_box.php:127
107
+ #: ../cardoza_facebook_like_box.php:137
108
+ #: ../cardoza_facebook_like_box.php:147
109
+ #: ../cardoza_facebook_like_box.php:249
110
+ #: ../cardoza_facebook_like_box.php:278
111
+ msgid "Yes"
112
+ msgstr "Sí"
113
+
114
+ #: ../cardoza_facebook_like_box.php:128
115
+ #: ../cardoza_facebook_like_box.php:138
116
+ #: ../cardoza_facebook_like_box.php:148
117
+ #: ../cardoza_facebook_like_box.php:250
118
+ #: ../cardoza_facebook_like_box.php:279
119
+ msgid "No"
120
+ msgstr "No"
121
+
122
+ #: ../cardoza_facebook_like_box.php:130
123
+ #: ../cardoza_facebook_like_box.php:281
124
+ msgid "Select the option to show the faces"
125
+ msgstr "Selecciona si deseas mostrar los avatares"
126
+
127
+ #: ../cardoza_facebook_like_box.php:134
128
+ msgid "Stream"
129
+ msgstr "Flujo"
130
+
131
+ #: ../cardoza_facebook_like_box.php:140
132
+ msgid "Select the option to display the stream"
133
+ msgstr "Selecciona si deseas mostrar el flujo de la página"
134
+
135
+ #: ../cardoza_facebook_like_box.php:144
136
+ msgid "Header"
137
+ msgstr "Cabecera"
138
+
139
+ #: ../cardoza_facebook_like_box.php:150
140
+ msgid "Select the option to display the title"
141
+ msgstr "Selecciona si deseas enseñar la cabecera"
142
+
143
+ #: ../cardoza_facebook_like_box.php:153
144
+ #: ../cardoza_facebook_like_box.php:303
145
+ msgid "Save"
146
+ msgstr "Guardar"
147
+
148
+ #: ../cardoza_facebook_like_box.php:241
149
+ msgid "Facebook Posts Like Options"
150
+ msgstr "Opciones de la caja \"me gusta\" de Facebook para entradas"
151
+
152
+ #: ../cardoza_facebook_like_box.php:246
153
+ msgid "Show like button for posts"
154
+ msgstr "Mostrar el botón \"me gusta\" en las entradas"
155
+
156
+ #: ../cardoza_facebook_like_box.php:255
157
+ msgid "Show like button"
158
+ msgstr "Mostrar el botón \"me gusta\""
159
+
160
+ #: ../cardoza_facebook_like_box.php:258
161
+ msgid "Before the post content"
162
+ msgstr "Antes del contenido de la entrada"
163
+
164
+ #: ../cardoza_facebook_like_box.php:259
165
+ msgid "After the post content"
166
+ msgstr "Después del contenido de la entrada"
167
+
168
+ #: ../cardoza_facebook_like_box.php:260
169
+ msgid "Before and after the post content"
170
+ msgstr "Antes y después del contenido de la entrada"
171
+
172
+ #: ../cardoza_facebook_like_box.php:265
173
+ msgid "Layout"
174
+ msgstr "Disposición"
175
+
176
+ #: ../cardoza_facebook_like_box.php:285
177
+ msgid "Verb to display"
178
+ msgstr "Acción a mostrar"
179
+
180
+ #: ../cardoza_facebook_like_box.php:288
181
+ msgid "like"
182
+ msgstr "me gusta"
183
+
184
+ #: ../cardoza_facebook_like_box.php:289
185
+ msgid "recommend"
186
+ msgstr "recomendar"
187
+
188
+ #: ../cardoza_facebook_like_box.php:350
189
+ msgid "Facebook Like Box"
190
+ msgstr "Caja \"me gusta\" de Facebook"
191
+
languages/facebooklikebox-fr_FR.mo ADDED
Binary file
languages/facebooklikebox-fr_FR.po ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: facebooklikebox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-23 15:29-0000\n"
6
+ "PO-Revision-Date: 2012-07-24 11:16-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: French\n"
15
+ "X-Poedit-Country: FRANCE\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../cardoza_facebook_like_box.php:38
19
+ #: ../cardoza_facebook_like_box.php:39
20
+ msgid "FB Like Box"
21
+ msgstr "FB Like Box"
22
+
23
+ #: ../cardoza_facebook_like_box.php:46
24
+ #: ../cardoza_facebook_like_box.php:47
25
+ msgid "Posts Like Box"
26
+ msgstr "Posts Like Box"
27
+
28
+ #: ../cardoza_facebook_like_box.php:77
29
+ #: ../cardoza_facebook_like_box.php:236
30
+ msgid "Options saved."
31
+ msgstr "Options sauvées."
32
+
33
+ #: ../cardoza_facebook_like_box.php:83
34
+ msgid "Facebook Like Box Options"
35
+ msgstr "Boite Facebook J'aime Options"
36
+
37
+ #: ../cardoza_facebook_like_box.php:87
38
+ msgid "General Settings"
39
+ msgstr "Paramètres généraux"
40
+
41
+ #: ../cardoza_facebook_like_box.php:89
42
+ msgid "Title"
43
+ msgstr "Titre"
44
+
45
+ #: ../cardoza_facebook_like_box.php:91
46
+ msgid "Title of the facebook like box"
47
+ msgstr "Titre de la boite Facebook j'aime"
48
+
49
+ #: ../cardoza_facebook_like_box.php:94
50
+ msgid "Facebook Page URL:"
51
+ msgstr "Facebook Page URL:"
52
+
53
+ #: ../cardoza_facebook_like_box.php:96
54
+ msgid "Copy and paste your facebook page URL here"
55
+ msgstr "Copier et coller l'URL de votre page Facebook ici"
56
+
57
+ #: ../cardoza_facebook_like_box.php:99
58
+ msgid "Border Color"
59
+ msgstr "Couleur de bordures"
60
+
61
+ #: ../cardoza_facebook_like_box.php:101
62
+ msgid "Border Color of the facebook like box"
63
+ msgstr "Couleur de bordures de la boite Facebook j'aime"
64
+
65
+ #: ../cardoza_facebook_like_box.php:104
66
+ msgid "Width"
67
+ msgstr "Largeur"
68
+
69
+ #: ../cardoza_facebook_like_box.php:106
70
+ msgid "Width of the facebook like box"
71
+ msgstr "Largeur de la boite Facebook j'aime"
72
+
73
+ #: ../cardoza_facebook_like_box.php:109
74
+ msgid "Height"
75
+ msgstr "Hauteur"
76
+
77
+ #: ../cardoza_facebook_like_box.php:111
78
+ msgid "Height of the facebook like box"
79
+ msgstr "Hauteur de la boite Facebook j'aime"
80
+
81
+ #: ../cardoza_facebook_like_box.php:114
82
+ #: ../cardoza_facebook_like_box.php:294
83
+ msgid "Color Scheme"
84
+ msgstr "Modèle de couleurs"
85
+
86
+ #: ../cardoza_facebook_like_box.php:117
87
+ #: ../cardoza_facebook_like_box.php:297
88
+ msgid "light"
89
+ msgstr "brillant"
90
+
91
+ #: ../cardoza_facebook_like_box.php:118
92
+ #: ../cardoza_facebook_like_box.php:298
93
+ msgid "dark"
94
+ msgstr "sombre"
95
+
96
+ #: ../cardoza_facebook_like_box.php:120
97
+ #: ../cardoza_facebook_like_box.php:300
98
+ msgid "Select the color scheme you want to display"
99
+ msgstr "Sélection du Modèle de couleurs que vous souhaité afficher "
100
+
101
+ #: ../cardoza_facebook_like_box.php:124
102
+ #: ../cardoza_facebook_like_box.php:275
103
+ msgid "Show Faces"
104
+ msgstr "Montrer les visages"
105
+
106
+ #: ../cardoza_facebook_like_box.php:127
107
+ #: ../cardoza_facebook_like_box.php:137
108
+ #: ../cardoza_facebook_like_box.php:147
109
+ #: ../cardoza_facebook_like_box.php:249
110
+ #: ../cardoza_facebook_like_box.php:278
111
+ msgid "Yes"
112
+ msgstr "Oui"
113
+
114
+ #: ../cardoza_facebook_like_box.php:128
115
+ #: ../cardoza_facebook_like_box.php:138
116
+ #: ../cardoza_facebook_like_box.php:148
117
+ #: ../cardoza_facebook_like_box.php:250
118
+ #: ../cardoza_facebook_like_box.php:279
119
+ msgid "No"
120
+ msgstr "Non"
121
+
122
+ #: ../cardoza_facebook_like_box.php:130
123
+ #: ../cardoza_facebook_like_box.php:281
124
+ msgid "Select the option to show the faces"
125
+ msgstr "Sélection des options pour montrer les visages"
126
+
127
+ #: ../cardoza_facebook_like_box.php:134
128
+ msgid "Stream"
129
+ msgstr "Flux"
130
+
131
+ #: ../cardoza_facebook_like_box.php:140
132
+ msgid "Select the option to display the stream"
133
+ msgstr "Sélection des options d'affichage du flux"
134
+
135
+ #: ../cardoza_facebook_like_box.php:144
136
+ msgid "Header"
137
+ msgstr "En-tête"
138
+
139
+ #: ../cardoza_facebook_like_box.php:150
140
+ msgid "Select the option to display the title"
141
+ msgstr "Sélection des options pour l'affichage du titre"
142
+
143
+ #: ../cardoza_facebook_like_box.php:153
144
+ #: ../cardoza_facebook_like_box.php:303
145
+ msgid "Save"
146
+ msgstr "Sauvé"
147
+
148
+ #: ../cardoza_facebook_like_box.php:241
149
+ msgid "Facebook Posts Like Options"
150
+ msgstr "Options du poste Facebook j'aime"
151
+
152
+ #: ../cardoza_facebook_like_box.php:246
153
+ msgid "Show like button for posts"
154
+ msgstr "Afficher le bouton j'aime pour le poste"
155
+
156
+ #: ../cardoza_facebook_like_box.php:255
157
+ msgid "Show like button"
158
+ msgstr "Afficher le bouton j'aime"
159
+
160
+ #: ../cardoza_facebook_like_box.php:258
161
+ msgid "Before the post content"
162
+ msgstr "Contenu avant le poste"
163
+
164
+ #: ../cardoza_facebook_like_box.php:259
165
+ msgid "After the post content"
166
+ msgstr "Contenu après le poste"
167
+
168
+ #: ../cardoza_facebook_like_box.php:260
169
+ msgid "Before and after the post content"
170
+ msgstr "Contenu avant et après le poste"
171
+
172
+ #: ../cardoza_facebook_like_box.php:265
173
+ msgid "Layout"
174
+ msgstr "Format"
175
+
176
+ #: ../cardoza_facebook_like_box.php:285
177
+ msgid "Verb to display"
178
+ msgstr "Verbe à afficher"
179
+
180
+ #: ../cardoza_facebook_like_box.php:288
181
+ msgid "like"
182
+ msgstr "J'aime"
183
+
184
+ #: ../cardoza_facebook_like_box.php:289
185
+ msgid "recommend"
186
+ msgstr "recommander"
187
+
188
+ #: ../cardoza_facebook_like_box.php:350
189
+ msgid "Facebook Like Box"
190
+ msgstr "Boite Facebook j'aime "
191
+
languages/facebooklikebox-hu_HU.mo ADDED
Binary file
languages/facebooklikebox-hu_HU.po ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: facebooklikebox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-31 09:16-0000\n"
6
+ "PO-Revision-Date: 2012-08-07 19:29+0100\n"
7
+ "Last-Translator: Varanka Zoltán <webmester@novolibro.hu>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Language: hu_HU\n"
15
+ "X-Poedit-SearchPath-0: ..\n"
16
+
17
+ #: ../cardoza_facebook_like_box.php:38 ../cardoza_facebook_like_box.php:39
18
+ msgid "FB Like Box"
19
+ msgstr "FB Like Box"
20
+
21
+ #: ../cardoza_facebook_like_box.php:46 ../cardoza_facebook_like_box.php:47
22
+ msgid "Posts Like Box"
23
+ msgstr "Bejegyzések Like Box"
24
+
25
+ #: ../cardoza_facebook_like_box.php:77 ../cardoza_facebook_like_box.php:236
26
+ msgid "Options saved."
27
+ msgstr "Az opciók mentésre kerültek."
28
+
29
+ #: ../cardoza_facebook_like_box.php:83
30
+ msgid "Facebook Like Box Options"
31
+ msgstr "Facebook Tetszik doboz opciók"
32
+
33
+ #: ../cardoza_facebook_like_box.php:87
34
+ msgid "General Settings"
35
+ msgstr "Általános beállítások"
36
+
37
+ #: ../cardoza_facebook_like_box.php:89
38
+ msgid "Title"
39
+ msgstr "Cím"
40
+
41
+ #: ../cardoza_facebook_like_box.php:91
42
+ msgid "Title of the facebook like box"
43
+ msgstr "Facebook Tetszik doboz cím"
44
+
45
+ #: ../cardoza_facebook_like_box.php:94
46
+ msgid "Facebook Page URL:"
47
+ msgstr "Facebook oldal URL:"
48
+
49
+ #: ../cardoza_facebook_like_box.php:96
50
+ msgid "Copy and paste your facebook page URL here"
51
+ msgstr "Vágólapon keresztül másoljuk a megfelelő Facebook-oldal webcímét ide."
52
+
53
+ #: ../cardoza_facebook_like_box.php:99
54
+ msgid "Border Color"
55
+ msgstr "Keretszín"
56
+
57
+ #: ../cardoza_facebook_like_box.php:101
58
+ msgid "Border Color of the facebook like box"
59
+ msgstr "A Facebook Tetszik doboz keretszíne"
60
+
61
+ #: ../cardoza_facebook_like_box.php:104
62
+ msgid "Width"
63
+ msgstr "Szélesség"
64
+
65
+ #: ../cardoza_facebook_like_box.php:106
66
+ msgid "Width of the facebook like box"
67
+ msgstr "A Facebook Tetszik doboz szélessége"
68
+
69
+ #: ../cardoza_facebook_like_box.php:109
70
+ msgid "Height"
71
+ msgstr "Magasság "
72
+
73
+ #: ../cardoza_facebook_like_box.php:111
74
+ msgid "Height of the facebook like box"
75
+ msgstr "A Facebook Tetszik doboz magassága"
76
+
77
+ #: ../cardoza_facebook_like_box.php:114 ../cardoza_facebook_like_box.php:294
78
+ msgid "Color Scheme"
79
+ msgstr "Színséma"
80
+
81
+ #: ../cardoza_facebook_like_box.php:117 ../cardoza_facebook_like_box.php:297
82
+ msgid "light"
83
+ msgstr "világos"
84
+
85
+ #: ../cardoza_facebook_like_box.php:118 ../cardoza_facebook_like_box.php:298
86
+ msgid "dark"
87
+ msgstr "sötét"
88
+
89
+ #: ../cardoza_facebook_like_box.php:120 ../cardoza_facebook_like_box.php:300
90
+ msgid "Select the color scheme you want to display"
91
+ msgstr "Válasszuk ki a megjelenítendő színsémát."
92
+
93
+ #: ../cardoza_facebook_like_box.php:124 ../cardoza_facebook_like_box.php:275
94
+ msgid "Show Faces"
95
+ msgstr "Arcok megjelenítése"
96
+
97
+ #: ../cardoza_facebook_like_box.php:127 ../cardoza_facebook_like_box.php:137
98
+ #: ../cardoza_facebook_like_box.php:147 ../cardoza_facebook_like_box.php:249
99
+ #: ../cardoza_facebook_like_box.php:278
100
+ msgid "Yes"
101
+ msgstr "igen"
102
+
103
+ #: ../cardoza_facebook_like_box.php:128 ../cardoza_facebook_like_box.php:138
104
+ #: ../cardoza_facebook_like_box.php:148 ../cardoza_facebook_like_box.php:250
105
+ #: ../cardoza_facebook_like_box.php:279
106
+ msgid "No"
107
+ msgstr "nem"
108
+
109
+ #: ../cardoza_facebook_like_box.php:130 ../cardoza_facebook_like_box.php:281
110
+ msgid "Select the option to show the faces"
111
+ msgstr "Válasszuk ki az arcok megjelenítésének opcióját."
112
+
113
+ #: ../cardoza_facebook_like_box.php:134
114
+ msgid "Stream"
115
+ msgstr "Folyam"
116
+
117
+ #: ../cardoza_facebook_like_box.php:140
118
+ msgid "Select the option to display the stream"
119
+ msgstr "Válasszuk ki a folyam megjelenítésének opcióját."
120
+
121
+ #: ../cardoza_facebook_like_box.php:144
122
+ msgid "Header"
123
+ msgstr "Fejléc"
124
+
125
+ #: ../cardoza_facebook_like_box.php:150
126
+ msgid "Select the option to display the title"
127
+ msgstr "Válasszuk ki a cím megjelenítésének opcióját."
128
+
129
+ #: ../cardoza_facebook_like_box.php:153 ../cardoza_facebook_like_box.php:303
130
+ msgid "Save"
131
+ msgstr "Mentés"
132
+
133
+ #: ../cardoza_facebook_like_box.php:241
134
+ msgid "Facebook Posts Like Options"
135
+ msgstr "Facebook bejegyzések Tetszik opciói"
136
+
137
+ #: ../cardoza_facebook_like_box.php:246
138
+ msgid "Show like button for posts"
139
+ msgstr "Tetszik gomb megjelenítése bejegyzéseknél"
140
+
141
+ #: ../cardoza_facebook_like_box.php:255
142
+ msgid "Show like button"
143
+ msgstr "Tetszik gomb megjelenítése"
144
+
145
+ #: ../cardoza_facebook_like_box.php:258
146
+ msgid "Before the post content"
147
+ msgstr "A bejegyzéstartalom előtt"
148
+
149
+ #: ../cardoza_facebook_like_box.php:259
150
+ msgid "After the post content"
151
+ msgstr "A bejegyzéstartalom után"
152
+
153
+ #: ../cardoza_facebook_like_box.php:260
154
+ msgid "Before and after the post content"
155
+ msgstr "A bejegyzéstartalom előtt és után is"
156
+
157
+ #: ../cardoza_facebook_like_box.php:265
158
+ msgid "Layout"
159
+ msgstr "Elrendezés"
160
+
161
+ #: ../cardoza_facebook_like_box.php:285
162
+ msgid "Verb to display"
163
+ msgstr "Megjelenítendő ige"
164
+
165
+ #: ../cardoza_facebook_like_box.php:288
166
+ msgid "like"
167
+ msgstr "tetszik"
168
+
169
+ #: ../cardoza_facebook_like_box.php:289
170
+ msgid "recommend"
171
+ msgstr "ajánlom"
172
+
173
+ #: ../cardoza_facebook_like_box.php:350
174
+ msgid "Facebook Like Box"
175
+ msgstr "Facebook Tetszik doboz"
languages/facebooklikebox-it_IT.mo ADDED
Binary file
languages/facebooklikebox-it_IT.po ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: facebooklikebox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-26 21:06+0100\n"
6
+ "PO-Revision-Date: 2012-12-26 21:16+0100\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "Language: \n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Language: Italian\n"
16
+ "X-Poedit-Country: ITALY\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../cardoza_facebook_like_box.php:42
20
+ #: ../cardoza_facebook_like_box.php:43
21
+ msgid "FB Like Box"
22
+ msgstr ""
23
+
24
+ #: ../cardoza_facebook_like_box.php:50
25
+ #: ../cardoza_facebook_like_box.php:51
26
+ msgid "Posts Like Box"
27
+ msgstr ""
28
+
29
+ #: ../cardoza_facebook_like_box.php:81
30
+ #: ../cardoza_facebook_like_box.php:248
31
+ msgid "Options saved."
32
+ msgstr "Impostazioni salvate."
33
+
34
+ #: ../cardoza_facebook_like_box.php:87
35
+ msgid "Facebook Like Box Options"
36
+ msgstr "Impostazioni Facebook Like Box"
37
+
38
+ #: ../cardoza_facebook_like_box.php:91
39
+ msgid "General Settings"
40
+ msgstr "Impostazioni Generali"
41
+
42
+ #: ../cardoza_facebook_like_box.php:93
43
+ msgid "Title"
44
+ msgstr "Titolo"
45
+
46
+ #: ../cardoza_facebook_like_box.php:97
47
+ msgid "Title of the facebook like box"
48
+ msgstr "Titolo del box Facebook Like Box"
49
+
50
+ #: ../cardoza_facebook_like_box.php:99
51
+ msgid "Facebook Page URL:"
52
+ msgstr ""
53
+
54
+ #: ../cardoza_facebook_like_box.php:103
55
+ msgid "Copy and paste your facebook page URL here"
56
+ msgstr "Copia e incolla l'indirizzo della tua pagina Facebook qui"
57
+
58
+ #: ../cardoza_facebook_like_box.php:105
59
+ msgid "Border Color"
60
+ msgstr "Colore del bordo"
61
+
62
+ #: ../cardoza_facebook_like_box.php:109
63
+ msgid "Border Color of the facebook like box"
64
+ msgstr "Colore del bordo del box Facebook Like Box"
65
+
66
+ #: ../cardoza_facebook_like_box.php:111
67
+ msgid "Width"
68
+ msgstr "Larghezza"
69
+
70
+ #: ../cardoza_facebook_like_box.php:115
71
+ msgid "Width of the facebook like box"
72
+ msgstr "Larghezza del box Facebook Like Box"
73
+
74
+ #: ../cardoza_facebook_like_box.php:117
75
+ msgid "Height"
76
+ msgstr "Altezza"
77
+
78
+ #: ../cardoza_facebook_like_box.php:121
79
+ msgid "Height of the facebook like box"
80
+ msgstr "Altezza del box Facebook Like Box"
81
+
82
+ #: ../cardoza_facebook_like_box.php:123
83
+ #: ../cardoza_facebook_like_box.php:306
84
+ msgid "Color Scheme"
85
+ msgstr "Schema colore"
86
+
87
+ #: ../cardoza_facebook_like_box.php:126
88
+ #: ../cardoza_facebook_like_box.php:309
89
+ msgid "light"
90
+ msgstr "chiaro"
91
+
92
+ #: ../cardoza_facebook_like_box.php:127
93
+ #: ../cardoza_facebook_like_box.php:310
94
+ msgid "dark"
95
+ msgstr "scuro"
96
+
97
+ #: ../cardoza_facebook_like_box.php:131
98
+ #: ../cardoza_facebook_like_box.php:312
99
+ msgid "Select the color scheme you want to display"
100
+ msgstr "Seleziona lo schema colore che vuoi mostrare"
101
+
102
+ #: ../cardoza_facebook_like_box.php:133
103
+ #: ../cardoza_facebook_like_box.php:287
104
+ msgid "Show Faces"
105
+ msgstr "Show Facce"
106
+
107
+ #: ../cardoza_facebook_like_box.php:136
108
+ #: ../cardoza_facebook_like_box.php:147
109
+ #: ../cardoza_facebook_like_box.php:158
110
+ #: ../cardoza_facebook_like_box.php:261
111
+ #: ../cardoza_facebook_like_box.php:290
112
+ msgid "Yes"
113
+ msgstr "Sì"
114
+
115
+ #: ../cardoza_facebook_like_box.php:137
116
+ #: ../cardoza_facebook_like_box.php:148
117
+ #: ../cardoza_facebook_like_box.php:159
118
+ #: ../cardoza_facebook_like_box.php:262
119
+ #: ../cardoza_facebook_like_box.php:291
120
+ msgid "No"
121
+ msgstr "No"
122
+
123
+ #: ../cardoza_facebook_like_box.php:142
124
+ #: ../cardoza_facebook_like_box.php:293
125
+ msgid "Select the option to show the faces"
126
+ msgstr "Seleziona l'opzione per mostrare le facce"
127
+
128
+ #: ../cardoza_facebook_like_box.php:144
129
+ msgid "Stream"
130
+ msgstr "Stream"
131
+
132
+ #: ../cardoza_facebook_like_box.php:153
133
+ msgid "Select the option to display the stream"
134
+ msgstr "Seleziona l'opzione per mostrare lo stream"
135
+
136
+ #: ../cardoza_facebook_like_box.php:155
137
+ msgid "Header"
138
+ msgstr "Testata"
139
+
140
+ #: ../cardoza_facebook_like_box.php:164
141
+ msgid "Select the option to display the title"
142
+ msgstr "Seleziona l'opzione per mostrare il titolo"
143
+
144
+ #: ../cardoza_facebook_like_box.php:165
145
+ #: ../cardoza_facebook_like_box.php:315
146
+ msgid "Save"
147
+ msgstr "Salva"
148
+
149
+ #: ../cardoza_facebook_like_box.php:253
150
+ msgid "Facebook Posts Like Options"
151
+ msgstr "Impostazioni Like nei post"
152
+
153
+ #: ../cardoza_facebook_like_box.php:258
154
+ msgid "Show like button for posts"
155
+ msgstr "Mostra il pulsante Like per i post"
156
+
157
+ #: ../cardoza_facebook_like_box.php:267
158
+ msgid "Show like button"
159
+ msgstr "Mostra il pulsante Like"
160
+
161
+ #: ../cardoza_facebook_like_box.php:270
162
+ msgid "Before the post content"
163
+ msgstr "Prima del contenuto del post"
164
+
165
+ #: ../cardoza_facebook_like_box.php:271
166
+ msgid "After the post content"
167
+ msgstr "Dopo il contenuto dei post"
168
+
169
+ #: ../cardoza_facebook_like_box.php:272
170
+ msgid "Before and after the post content"
171
+ msgstr "Prima e dopo il contenuto del post"
172
+
173
+ #: ../cardoza_facebook_like_box.php:277
174
+ msgid "Layout"
175
+ msgstr "Struttura"
176
+
177
+ #: ../cardoza_facebook_like_box.php:297
178
+ msgid "Verb to display"
179
+ msgstr "Post da mostrare"
180
+
181
+ #: ../cardoza_facebook_like_box.php:300
182
+ msgid "like"
183
+ msgstr "Mi piace"
184
+
185
+ #: ../cardoza_facebook_like_box.php:301
186
+ msgid "recommend"
187
+ msgstr "Raccomanda"
188
+
189
+ #: ../cardoza_facebook_like_box.php:378
190
+ msgid "Facebook Like Box"
191
+ msgstr "Facebook Like Box"
192
+
languages/facebooklikebox-ta_LK.mo ADDED
Binary file
languages/facebooklikebox-ta_LK.po ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: facebooklikebox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-05 09:23-0000\n"
6
+ "PO-Revision-Date: 2012-10-05 09:44-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Tamil\n"
15
+ "X-Poedit-Country: SRI LANKA\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../cardoza_facebook_like_box.php:42
19
+ #: ../cardoza_facebook_like_box.php:43
20
+ msgid "FB Like Box"
21
+ msgstr "Facebook லைக் பாக்ஸ்"
22
+
23
+ #: ../cardoza_facebook_like_box.php:50
24
+ #: ../cardoza_facebook_like_box.php:51
25
+ msgid "Posts Like Box"
26
+ msgstr "பதிவுகள் லைக் பாக்ஸ்"
27
+
28
+ #: ../cardoza_facebook_like_box.php:81
29
+ #: ../cardoza_facebook_like_box.php:248
30
+ msgid "Options saved."
31
+ msgstr "விருப்பங்கள் சேமிக்கப்பட்டது."
32
+
33
+ #: ../cardoza_facebook_like_box.php:87
34
+ msgid "Facebook Like Box Options"
35
+ msgstr "Facebook லைக் பாக்ஸ் விருப்பங்கள்"
36
+
37
+ #: ../cardoza_facebook_like_box.php:91
38
+ msgid "General Settings"
39
+ msgstr "பொது அமைப்புகள்"
40
+
41
+ #: ../cardoza_facebook_like_box.php:93
42
+ msgid "Title"
43
+ msgstr "தலைப்பு"
44
+
45
+ #: ../cardoza_facebook_like_box.php:97
46
+ msgid "Title of the facebook like box"
47
+ msgstr "Facebook லைக் பாக்ஸ் தலைப்பு"
48
+
49
+ #: ../cardoza_facebook_like_box.php:99
50
+ msgid "Facebook Page URL:"
51
+ msgstr "Facebook பக்க URL"
52
+
53
+ #: ../cardoza_facebook_like_box.php:103
54
+ msgid "Copy and paste your facebook page URL here"
55
+ msgstr "இங்கே உங்கள் facebook பக்கம் URL ஐ நகலெடுத்து ஒட்டவும்"
56
+
57
+ #: ../cardoza_facebook_like_box.php:105
58
+ msgid "Border Color"
59
+ msgstr "கரை வண்ணம்"
60
+
61
+ #: ../cardoza_facebook_like_box.php:109
62
+ msgid "Border Color of the facebook like box"
63
+ msgstr "Facebook லைக் பாக்ஸ் கரை வண்ணம்"
64
+
65
+ #: ../cardoza_facebook_like_box.php:111
66
+ msgid "Width"
67
+ msgstr "அகலம்"
68
+
69
+ #: ../cardoza_facebook_like_box.php:115
70
+ msgid "Width of the facebook like box"
71
+ msgstr "Facebook லைக் பாக்ஸ் அகலம்"
72
+
73
+ #: ../cardoza_facebook_like_box.php:117
74
+ msgid "Height"
75
+ msgstr "உயரம்"
76
+
77
+ #: ../cardoza_facebook_like_box.php:121
78
+ msgid "Height of the facebook like box"
79
+ msgstr "Facebook லைக் பாக்ஸ் உயரம்"
80
+
81
+ #: ../cardoza_facebook_like_box.php:123
82
+ #: ../cardoza_facebook_like_box.php:306
83
+ msgid "Color Scheme"
84
+ msgstr "நிறத்திட்டம்"
85
+
86
+ #: ../cardoza_facebook_like_box.php:126
87
+ #: ../cardoza_facebook_like_box.php:309
88
+ msgid "light"
89
+ msgstr "பிரகாசமான"
90
+
91
+ #: ../cardoza_facebook_like_box.php:127
92
+ #: ../cardoza_facebook_like_box.php:310
93
+ msgid "dark"
94
+ msgstr "இருண்ட"
95
+
96
+ #: ../cardoza_facebook_like_box.php:131
97
+ #: ../cardoza_facebook_like_box.php:312
98
+ msgid "Select the color scheme you want to display"
99
+ msgstr "நீங்கள் காட்ட வேண்டும் வண்ண திட்டத்தை தேர்ந்தெடுக்கவும்"
100
+
101
+ #: ../cardoza_facebook_like_box.php:133
102
+ #: ../cardoza_facebook_like_box.php:287
103
+ msgid "Show Faces"
104
+ msgstr "முகங்கள் காட்டு"
105
+
106
+ #: ../cardoza_facebook_like_box.php:136
107
+ #: ../cardoza_facebook_like_box.php:147
108
+ #: ../cardoza_facebook_like_box.php:158
109
+ #: ../cardoza_facebook_like_box.php:261
110
+ #: ../cardoza_facebook_like_box.php:290
111
+ msgid "Yes"
112
+ msgstr "ஆம்"
113
+
114
+ #: ../cardoza_facebook_like_box.php:137
115
+ #: ../cardoza_facebook_like_box.php:148
116
+ #: ../cardoza_facebook_like_box.php:159
117
+ #: ../cardoza_facebook_like_box.php:262
118
+ #: ../cardoza_facebook_like_box.php:291
119
+ msgid "No"
120
+ msgstr "இல்லை"
121
+
122
+ #: ../cardoza_facebook_like_box.php:142
123
+ #: ../cardoza_facebook_like_box.php:293
124
+ msgid "Select the option to show the faces"
125
+ msgstr "முகங்கள் காட்ட விருப்பத்தை தேர்ந்தெடுக்கவும்"
126
+
127
+ #: ../cardoza_facebook_like_box.php:144
128
+ msgid "Stream"
129
+ msgstr "ஸ்ட்ரீம் ஓட்டம்"
130
+
131
+ #: ../cardoza_facebook_like_box.php:153
132
+ msgid "Select the option to display the stream"
133
+ msgstr "ஸ்ட்ரீம் காட்ட விருப்பத்தை தேர்ந்தெடுக்கவும்"
134
+
135
+ #: ../cardoza_facebook_like_box.php:155
136
+ msgid "Header"
137
+ msgstr "தலைப்பான்"
138
+
139
+ #: ../cardoza_facebook_like_box.php:164
140
+ msgid "Select the option to display the title"
141
+ msgstr "தலைப்பு காட்ட விருப்பத்தை தேர்ந்தெடுக்கவும்"
142
+
143
+ #: ../cardoza_facebook_like_box.php:165
144
+ #: ../cardoza_facebook_like_box.php:315
145
+ msgid "Save"
146
+ msgstr "சேமி"
147
+
148
+ #: ../cardoza_facebook_like_box.php:253
149
+ msgid "Facebook Posts Like Options"
150
+ msgstr "Facebook இடுகைகள் விருப்பங்கள்"
151
+
152
+ #: ../cardoza_facebook_like_box.php:258
153
+ msgid "Show like button for posts"
154
+ msgstr "இடுகைகளை பொத்தானை காட்டு"
155
+
156
+ #: ../cardoza_facebook_like_box.php:267
157
+ msgid "Show like button"
158
+ msgstr "Like பொத்தானை காட்டு"
159
+
160
+ #: ../cardoza_facebook_like_box.php:270
161
+ msgid "Before the post content"
162
+ msgstr "இடுகை உள்ளடக்கம் முன்"
163
+
164
+ #: ../cardoza_facebook_like_box.php:271
165
+ msgid "After the post content"
166
+ msgstr "இடுகை உள்ளடக்கம் பின்"
167
+
168
+ #: ../cardoza_facebook_like_box.php:272
169
+ msgid "Before and after the post content"
170
+ msgstr "இடுகை உள்ளடக்கம் முன் மற்றும் பின்"
171
+
172
+ #: ../cardoza_facebook_like_box.php:277
173
+ msgid "Layout"
174
+ msgstr "திட்டம்"
175
+
176
+ #: ../cardoza_facebook_like_box.php:297
177
+ msgid "Verb to display"
178
+ msgstr "உரையை காட்ட "
179
+
180
+ #: ../cardoza_facebook_like_box.php:300
181
+ msgid "like"
182
+ msgstr "லைக்"
183
+
184
+ #: ../cardoza_facebook_like_box.php:301
185
+ msgid "recommend"
186
+ msgstr "பரிந்துரை"
187
+
188
+ #: ../cardoza_facebook_like_box.php:378
189
+ msgid "Facebook Like Box"
190
+ msgstr "Facebook லைக் பாக்ஸ் "
191
+
readme.txt ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Facebook Like Box ===
2
+ Contributors: johnnash1975
3
+ Tags: facebook, like, likebox, fb, facebook like, like button, facebook like box, fb like box, button
4
+ Requires at least: 3.0
5
+ Tested up to: 4.5.3
6
+ Stable tag: trunk
7
+ License: GPLv2 or later
8
+
9
+ Facebook Like Box enables you to display the facebook page likes in your website. Display like button for the posts.
10
+
11
+ == Description ==
12
+
13
+ Facebook Like Box is a social plugin that enables Facebook Page owners to attract and gain Likes from their own website. The Like Box enables users to:
14
+
15
+ 1. See how many users already like this Page, and which of their friends like it too
16
+ 2. Read recent posts from the Page
17
+ 3. Like the Page with one click, without needing to visit the Page.
18
+ 4. Add like button for the posts.
19
+ 5. Add a shortcode to display the facebook like box on any page or post.
20
+ 6. Add a shortcode to display the facebook posts like on any page or post.
21
+ 7. Translation enabled by using I18n.
22
+
23
+ Note: Best plugin output width is 292px.
24
+
25
+ = Support =
26
+
27
+ Thanks for downloading and installing my plugin. You can show your appreciation and support future development by donating.
28
+
29
+ If you have any suggestions or feedback, please post it in the following link.
30
+
31
+ = Translation =
32
+ Translation is enabled for this plugin. If someone interested in translating this plugin please visit the following link and post in the comments section with your contact email. Thanks.
33
+
34
+ = Translated languages =
35
+
36
+ * Danish (Translated by Simon Bogh)
37
+ * French (Translated by Laurent Verpeet)
38
+ * German (Translated by Peter Kaulfuss)
39
+ * Hungarian (Translated by Varanka Zoltan)
40
+ * Italian (Transalted by Claudio Chesselli)
41
+ * Spanish (Translated by Oscar S. G. Saldarriaga)
42
+ * Tamil (Translated by Vinoj Cardoza)
43
+
44
+ == Installation ==
45
+
46
+ 1. Download the plugin.
47
+ 2. Upload to your blog (/wp-content/plugins/).
48
+ 3. Activate it.
49
+ 4. Click the Appearance menu and click the FB Like Box.
50
+ 5. Fill in the options.
51
+ 6. Then go to widget and drag and drop Facebook Like Box in the area you want to display the plugin.
52
+
53
+ You're done!
54
+
55
+ Uninstalling is as simple as deactivating the plugin.
56
+
57
+ == Screenshots ==
58
+
59
+ 1. screenshot-1.gif
60
+ 2. screenshot-2.gif
61
+ 3. screenshot-3.gif
62
+
63
+ == Frequently Asked Questions ==
64
+
65
+ How do I display the facebook like box in the pages or posts?
66
+ Just copy and paste the code below on the page or post you want to display the facebook like box.
67
+ [cardoza_facebook_like_box]
68
+
69
+ How do I specify different width and height for facebook like box in the pages or posts?
70
+ For example if you want to specify the dimensions of width 600px and height 200px for facebook like box in the pages or posts, you have to include the short code in the following format.
71
+ [cardoza_facebook_like_box width="600" height="200"]
72
+ Note: If you dont specify width and height, by default it will take dimensions from the facebook options you specified.
73
+ Note: Don't include any px or pt with the dimesnion values you are specifying.
74
+
75
+ How do I display the facebook posts like in the pages or posts?
76
+ Just copy and paste the code below on the page or post you want to display the facebook posts like button.
77
+ [cardoza_facebook_posts_like]
78
+
79
+ == Change Log ==
80
+
81
+ = Version 2.8.7 =
82
+ * Tested compatibility with Wordpress 4.5.3
83
+
84
+ = Version 2.8.6 =
85
+ * Tested compatibility with Wordpress 4.4.2
86
+
screenshot-1.gif ADDED
Binary file
screenshot-2.gif ADDED
Binary file
screenshot-3.gif ADDED
Binary file
screenshot-3.png ADDED
Binary file