WD Facebook Feed – Custom Facebook Feed Plugin - Version 1.1.34

Version Description

  • Added: PO file for Polish.
  • Fixed: Title with quote in it.
Download this release

Release Info

Developer 10web
Plugin Icon 128x128 WD Facebook Feed – Custom Facebook Feed Plugin
Version 1.1.34
Comparing to
See all releases

Code changes from version 1.1.33 to 1.1.34

facebook-feed-wd.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: 10Web Social Feed
4
  * Plugin URI: https://10web.io/plugins/wordpress-facebook-feed/?utm_source=facebook_feed&utm_medium=free_plugin
5
  * Description: 10Web Social Feed is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
6
- * Version: 1.1.33
7
  * Author: 10Web
8
  * Author URI: https://10web.io/plugins/?utm_source=facebook_feed&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -14,7 +14,7 @@ define( 'WD_FFWD_URL', plugins_url( plugin_basename( dirname( __FILE__ ) ) ) );
14
  define( 'WD_FB_PREFIX', 'ffwd' );
15
  define( 'WD_FB_IS_FREE', TRUE );
16
  if (! defined( 'FFWD_VERSION' ) ){
17
- define ('FFWD_VERSION',"1.1.33");
18
  }
19
  add_action( 'admin_init', 'ffwd_init' );
20
 
3
  * Plugin Name: 10Web Social Feed
4
  * Plugin URI: https://10web.io/plugins/wordpress-facebook-feed/?utm_source=facebook_feed&utm_medium=free_plugin
5
  * Description: 10Web Social Feed is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
6
+ * Version: 1.1.34
7
  * Author: 10Web
8
  * Author URI: https://10web.io/plugins/?utm_source=facebook_feed&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
14
  define( 'WD_FB_PREFIX', 'ffwd' );
15
  define( 'WD_FB_IS_FREE', TRUE );
16
  if (! defined( 'FFWD_VERSION' ) ){
17
+ define ('FFWD_VERSION',"1.1.34");
18
  }
19
  add_action( 'admin_init', 'ffwd_init' );
20
 
frontend/controllers/FFWDControllerMain.php CHANGED
@@ -14,13 +14,12 @@ class FFWDControllerMain {
14
  ////////////////////////////////////////////////////////////////////////////////////////
15
  // Constructor & Destructor //
16
  ////////////////////////////////////////////////////////////////////////////////////////
17
- public function __construct($params = array(), $from_shortcode = 0, $ffwd = 0, $view) {
 
 
 
18
 
19
- $this->view = $view;
20
- wd_fb_update(1);
21
- $this->display($params, $from_shortcode, $ffwd);
22
-
23
- }
24
  ////////////////////////////////////////////////////////////////////////////////////////
25
  // Public Methods //
26
  ////////////////////////////////////////////////////////////////////////////////////////
14
  ////////////////////////////////////////////////////////////////////////////////////////
15
  // Constructor & Destructor //
16
  ////////////////////////////////////////////////////////////////////////////////////////
17
+ public function __construct($params = array(), $from_shortcode = 0, $ffwd = 0, $view = "") {
18
+ $this->view = $view;
19
+ wd_fb_update(1);
20
+ $this->display($params, $from_shortcode, $ffwd);
21
 
22
+ }
 
 
 
 
23
  ////////////////////////////////////////////////////////////////////////////////////////
24
  // Public Methods //
25
  ////////////////////////////////////////////////////////////////////////////////////////
frontend/models/FFWDModelAlbum_compact.php CHANGED
@@ -18,7 +18,7 @@ class FFWDModelAlbum_compact extends FFWDModelMain {
18
  ////////////////////////////////////////////////////////////////////////////////////////
19
  // Public Methods //
20
  ////////////////////////////////////////////////////////////////////////////////////////
21
- public function get_ffwd_data($id, $objects_per_page, $sort_by, $ffwd, $sort_direction = ' ASC ', $pagination_type) {
22
  global $wpdb;
23
  $album_id = (isset($_REQUEST['album_id_' . $ffwd]) ? sanitize_text_field($_REQUEST['album_id_' . $ffwd]) : 0);
24
  if (isset($_REQUEST['page_number_' . $ffwd]) && $_REQUEST['page_number_' . $ffwd]) {
18
  ////////////////////////////////////////////////////////////////////////////////////////
19
  // Public Methods //
20
  ////////////////////////////////////////////////////////////////////////////////////////
21
+ public function get_ffwd_data($id, $objects_per_page, $sort_by, $ffwd, $pagination_type, $sort_direction = ' ASC ') {
22
  global $wpdb;
23
  $album_id = (isset($_REQUEST['album_id_' . $ffwd]) ? sanitize_text_field($_REQUEST['album_id_' . $ffwd]) : 0);
24
  if (isset($_REQUEST['page_number_' . $ffwd]) && $_REQUEST['page_number_' . $ffwd]) {
frontend/views/FFWDViewAlbum_compact.php CHANGED
@@ -45,7 +45,7 @@ class FFWDViewAlbum_compact {
45
  echo WDW_FFWD_Library::message(__('There is no theme selected or the theme was deleted.', 'ffwd'), 'error');
46
  return;
47
  }
48
- $ffwd_data = $this->model->get_ffwd_data($params['fb_id'], $ffwd_info['objects_per_page'], '', $ffwd, ' ASC', $ffwd_info['pagination_type']);
49
  if ($ffwd_info == NULL) {
50
  echo WDW_FFWD_Library::message(__('There is no facebook feed selected or it was deleted.', 'ffwd'), 'error');
51
  return;
@@ -665,7 +665,7 @@ class FFWDViewAlbum_compact {
665
  ?>
666
  <script>
667
  jQuery(document).ready(function() {
668
- var id_object_id_<?php echo $ffwd; ?> = '<?php echo json_encode($this->model->id_object_id_json); ?>',
669
  graph_url_album_compact_<?php echo $ffwd; ?> = '<?php echo $this->model->graph_url; ?>';
670
  ffwd_fill_thum_srs_likes_compact_album(JSON.parse(id_object_id_<?php echo $ffwd; ?>), '<?php echo $ffwd; ?>', graph_url_album_compact_<?php echo $ffwd; ?>, ffwd_album_info_<?php echo $ffwd; ?>);
671
  });
45
  echo WDW_FFWD_Library::message(__('There is no theme selected or the theme was deleted.', 'ffwd'), 'error');
46
  return;
47
  }
48
+ $ffwd_data = $this->model->get_ffwd_data($params['fb_id'], $ffwd_info['objects_per_page'], '', $ffwd, $ffwd_info['pagination_type'], ' ASC');
49
  if ($ffwd_info == NULL) {
50
  echo WDW_FFWD_Library::message(__('There is no facebook feed selected or it was deleted.', 'ffwd'), 'error');
51
  return;
665
  ?>
666
  <script>
667
  jQuery(document).ready(function() {
668
+ var id_object_id_<?php echo $ffwd; ?> = '<?php echo addslashes(json_encode($this->model->id_object_id_json)); ?>',
669
  graph_url_album_compact_<?php echo $ffwd; ?> = '<?php echo $this->model->graph_url; ?>';
670
  ffwd_fill_thum_srs_likes_compact_album(JSON.parse(id_object_id_<?php echo $ffwd; ?>), '<?php echo $ffwd; ?>', graph_url_album_compact_<?php echo $ffwd; ?>, ffwd_album_info_<?php echo $ffwd; ?>);
671
  });
frontend/views/FFWDViewBlog_style.php CHANGED
@@ -1043,7 +1043,7 @@ class FFWDViewBlog_style {
1043
  client_server_date_difference = (Date.parse(client_side_today) / 1000) - <?php echo time(); ?>,
1044
  owner_info_<?php echo $ffwd; ?> = JSON.parse('<?php echo addslashes($this->model->page_user_group); ?>');
1045
  ffwd_options = JSON.parse('<?php echo stripslashes($this->model->get_option_json_data()); ?>');
1046
- ffwd_params_<?php echo $ffwd; ?> = JSON.parse('<?php echo json_encode($ffwd_info); ?>');
1047
  </script>
1048
  <div id="fb-root"></div>
1049
  <script>(function(d, s, id) {
1043
  client_server_date_difference = (Date.parse(client_side_today) / 1000) - <?php echo time(); ?>,
1044
  owner_info_<?php echo $ffwd; ?> = JSON.parse('<?php echo addslashes($this->model->page_user_group); ?>');
1045
  ffwd_options = JSON.parse('<?php echo stripslashes($this->model->get_option_json_data()); ?>');
1046
+ ffwd_params_<?php echo $ffwd; ?> = JSON.parse('<?php echo addslashes(json_encode($ffwd_info)); ?>');
1047
  </script>
1048
  <div id="fb-root"></div>
1049
  <script>(function(d, s, id) {
languages/ffwd-pl_PL .mo ADDED
Binary file
languages/ffwd-pl_PL .po ADDED
@@ -0,0 +1,466 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: \n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2016-11-17 16:58+0400\n"
11
+ "PO-Revision-Date: 2021-03-22 11:40+0400\n"
12
+ "Language-Team: \n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Generator: Poedit 2.4.2\n"
17
+ "Last-Translator: \n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "Language: pl\n"
20
+
21
+ #: facebook-feed-wd-notices.php:217
22
+ msgid "Leave A Review?"
23
+ msgstr ""
24
+
25
+ #: facebook-feed-wd-notices.php:218
26
+ #, php-format
27
+ msgid ""
28
+ "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
29
+ "review on WordPress.org?"
30
+ msgstr ""
31
+
32
+ #: facebook-feed-wd-notices.php:219
33
+ msgid "Sure! I'd love to!"
34
+ msgstr ""
35
+
36
+ #: facebook-feed-wd-notices.php:220
37
+ msgid "I've already left a review"
38
+ msgstr ""
39
+
40
+ #: facebook-feed-wd-notices.php:221
41
+ msgid "Maybe Later"
42
+ msgstr ""
43
+
44
+ #: facebook-feed-wd-notices.php:222 facebook-feed-wd-notices.php:232
45
+ msgid "Never show again"
46
+ msgstr ""
47
+
48
+ #: facebook-feed-wd-notices.php:228
49
+ msgid "Hey! How's It Going?"
50
+ msgstr ""
51
+
52
+ #: facebook-feed-wd-notices.php:229
53
+ #, php-format
54
+ msgid ""
55
+ "Thank you for using WordPress %s! We hope that you've found everything you need, "
56
+ "but if you have any questions:"
57
+ msgstr ""
58
+
59
+ #: facebook-feed-wd-notices.php:230
60
+ msgid "Check out User Guide"
61
+ msgstr ""
62
+
63
+ #: facebook-feed-wd-notices.php:231
64
+ msgid "Get Some Help"
65
+ msgstr ""
66
+
67
+ #: facebook-feed-wd.php:110
68
+ msgid ""
69
+ "If you are getting errors please go to options and fill in App ID and App Secret."
70
+ msgstr ""
71
+
72
+ #: facebook-feed-wd.php:111
73
+ msgid "For getting App ID and App Secret read more in"
74
+ msgstr ""
75
+
76
+ #: facebook-feed-wd.php:112
77
+ msgid "User Manual"
78
+ msgstr ""
79
+
80
+ #: facebook-feed-wd.php:215
81
+ msgid "Feed Doesn't exists"
82
+ msgstr ""
83
+
84
+ #: facebook-feed-wd.php:689
85
+ msgid "field is required."
86
+ msgstr ""
87
+
88
+ #: facebook-feed-wd.php:690
89
+ msgid "This is not a valid email address."
90
+ msgstr ""
91
+
92
+ #: facebook-feed-wd.php:691
93
+ msgid "There are no images matching your search."
94
+ msgstr ""
95
+
96
+ #: facebook-feed-wd.php:695
97
+ msgid "Reply"
98
+ msgstr ""
99
+
100
+ #: facebook-feed-wd.php:696
101
+ msgid "View"
102
+ msgstr ""
103
+
104
+ #: facebook-feed-wd.php:697
105
+ msgid "more comments"
106
+ msgstr ""
107
+
108
+ #: facebook-feed-wd.php:699 frontend/models/FFWDModelBlog_style.php:69
109
+ #: frontend/models/FFWDModelPopupBox.php:164
110
+ msgid "year"
111
+ msgstr ""
112
+
113
+ #: facebook-feed-wd.php:700 frontend/models/FFWDModelBlog_style.php:79
114
+ #: frontend/models/FFWDModelPopupBox.php:174
115
+ msgid "years"
116
+ msgstr ""
117
+
118
+ #: facebook-feed-wd.php:701 frontend/models/FFWDModelBlog_style.php:73
119
+ #: frontend/models/FFWDModelPopupBox.php:168
120
+ msgid "hour"
121
+ msgstr ""
122
+
123
+ #: facebook-feed-wd.php:702 frontend/models/FFWDModelBlog_style.php:83
124
+ #: frontend/models/FFWDModelPopupBox.php:178
125
+ msgid "hours"
126
+ msgstr ""
127
+
128
+ #: facebook-feed-wd.php:703 frontend/models/FFWDModelBlog_style.php:80
129
+ #: frontend/models/FFWDModelPopupBox.php:175
130
+ msgid "months"
131
+ msgstr ""
132
+
133
+ #: facebook-feed-wd.php:704 frontend/models/FFWDModelBlog_style.php:70
134
+ #: frontend/models/FFWDModelPopupBox.php:165
135
+ msgid "month"
136
+ msgstr ""
137
+
138
+ #: facebook-feed-wd.php:705 frontend/models/FFWDModelBlog_style.php:81
139
+ #: frontend/models/FFWDModelPopupBox.php:176
140
+ msgid "weeks"
141
+ msgstr ""
142
+
143
+ #: facebook-feed-wd.php:706 frontend/models/FFWDModelBlog_style.php:71
144
+ #: frontend/models/FFWDModelPopupBox.php:166
145
+ msgid "week"
146
+ msgstr ""
147
+
148
+ #: facebook-feed-wd.php:707 frontend/models/FFWDModelBlog_style.php:82
149
+ #: frontend/models/FFWDModelPopupBox.php:177
150
+ msgid "days"
151
+ msgstr ""
152
+
153
+ #: facebook-feed-wd.php:708 frontend/models/FFWDModelBlog_style.php:72
154
+ #: frontend/models/FFWDModelPopupBox.php:167
155
+ msgid "day"
156
+ msgstr ""
157
+
158
+ #: facebook-feed-wd.php:709 frontend/models/FFWDModelBlog_style.php:84
159
+ #: frontend/models/FFWDModelPopupBox.php:179
160
+ msgid "minutes"
161
+ msgstr ""
162
+
163
+ #: facebook-feed-wd.php:710 frontend/models/FFWDModelBlog_style.php:74
164
+ #: frontend/models/FFWDModelPopupBox.php:169
165
+ msgid "minute"
166
+ msgstr ""
167
+
168
+ #: facebook-feed-wd.php:711 frontend/models/FFWDModelBlog_style.php:85
169
+ #: frontend/models/FFWDModelPopupBox.php:180
170
+ msgid "seconds"
171
+ msgstr ""
172
+
173
+ #: facebook-feed-wd.php:712 frontend/models/FFWDModelBlog_style.php:75
174
+ #: frontend/models/FFWDModelPopupBox.php:170
175
+ msgid "second"
176
+ msgstr ""
177
+
178
+ #: facebook-feed-wd.php:713
179
+ msgid "ago"
180
+ msgstr ""
181
+
182
+ #: facebook-feed-wd.php:715
183
+ msgid "and"
184
+ msgstr ""
185
+
186
+ #: facebook-feed-wd.php:716
187
+ msgid "others"
188
+ msgstr ""
189
+
190
+ #: facebook-feed-wd.php:732
191
+ msgid "WD Facebook plugin autoupdate interval."
192
+ msgstr ""
193
+
194
+ #: admin/models/FFWDModelInfo_ffwd.php:250
195
+ #: admin/models/FFWDModelOptions_ffwd.php:198
196
+ msgid "Logout of your app"
197
+ msgstr ""
198
+
199
+ #: admin/models/FFWDModelInfo_ffwd.php:253
200
+ #: admin/models/FFWDModelOptions_ffwd.php:202 framework/WDFacebookFeed.php:1404
201
+ msgid "Log into Facebook with your app"
202
+ msgstr ""
203
+
204
+ #: admin/models/FFWDModelInfo_ffwd.php:261
205
+ #: admin/models/FFWDModelOptions_ffwd.php:217
206
+ msgid "View your application's settings."
207
+ msgstr ""
208
+
209
+ #: framework/WDW_FFWD_Library.php:514
210
+ msgid " item(s)"
211
+ msgstr ""
212
+
213
+ #: framework/WDW_FFWD_Library.php:519
214
+ msgid "First"
215
+ msgstr ""
216
+
217
+ #: framework/WDW_FFWD_Library.php:520
218
+ msgid "Previous"
219
+ msgstr ""
220
+
221
+ #: framework/WDW_FFWD_Library.php:521
222
+ msgid "Next"
223
+ msgstr ""
224
+
225
+ #: framework/WDW_FFWD_Library.php:522
226
+ msgid "Last"
227
+ msgstr ""
228
+
229
+ #: framework/WDW_FFWD_Library.php:540
230
+ msgid "Go to the first page"
231
+ msgstr ""
232
+
233
+ #: framework/WDW_FFWD_Library.php:541
234
+ msgid "Go to the previous page"
235
+ msgstr ""
236
+
237
+ #: framework/WDW_FFWD_Library.php:543
238
+ msgid "of"
239
+ msgstr ""
240
+
241
+ #: framework/WDW_FFWD_Library.php:547
242
+ msgid "Go to the next page"
243
+ msgstr ""
244
+
245
+ #: framework/WDW_FFWD_Library.php:548
246
+ msgid "Go to the last page"
247
+ msgstr ""
248
+
249
+ #: framework/WDW_FFWD_Library.php:560
250
+ msgid "Load More..."
251
+ msgstr ""
252
+
253
+ #: framework/WDW_FFWD_Library.php:731
254
+ msgid "Reset"
255
+ msgstr ""
256
+
257
+ #: framework/WDW_FFWD_Library.php:734
258
+ msgid "Search"
259
+ msgstr ""
260
+
261
+ #: framework/WDW_FFWD_Library.php:776
262
+ msgid "Order by: "
263
+ msgstr ""
264
+
265
+ #: framework/WDW_FFWD_Library.php:778
266
+ msgid "Default"
267
+ msgstr ""
268
+
269
+ #: framework/WDW_FFWD_Library.php:779
270
+ msgid "Filename"
271
+ msgstr ""
272
+
273
+ #: framework/WDW_FFWD_Library.php:780
274
+ msgid "Size"
275
+ msgstr ""
276
+
277
+ #: framework/WDW_FFWD_Library.php:781
278
+ msgid "Random"
279
+ msgstr ""
280
+
281
+ #: framework/WDW_FFWD_Library.php:859
282
+ msgid "Please update your shortcode."
283
+ msgstr ""
284
+
285
+ #: framework/WDW_FFWD_Library.php:864 frontend/views/FFWDViewAlbum_compact.php:56
286
+ #: frontend/views/FFWDViewBlog_style.php:37
287
+ #: frontend/views/FFWDViewThumbnails.php:32
288
+ #: frontend/views/FFWDViewThumbnails_masonry.php:32
289
+ msgid "There is no facebook feed selected or it was deleted."
290
+ msgstr ""
291
+
292
+ #: frontend/models/FFWDModelBlog_style.php:91
293
+ #: frontend/models/FFWDModelBlog_style.php:93
294
+ #: frontend/models/FFWDModelPopupBox.php:186
295
+ #: frontend/models/FFWDModelPopupBox.php:188
296
+ msgid " ago"
297
+ msgstr ""
298
+
299
+ #: frontend/models/FFWDModelBlog_style.php:211
300
+ #: frontend/views/FFWDViewBlog_style.php:1398
301
+ #: frontend/views/FFWDViewBlog_style.php:1412
302
+ msgid "See more"
303
+ msgstr ""
304
+
305
+ #: frontend/views/FFWDViewAlbum_compact.php:50
306
+ #: frontend/views/FFWDViewBlog_style.php:54
307
+ #: frontend/views/FFWDViewThumbnails.php:51
308
+ #: frontend/views/FFWDViewThumbnails_masonry.php:47
309
+ msgid "There is no theme selected or the theme was deleted."
310
+ msgstr ""
311
+
312
+ #: frontend/views/FFWDViewAlbum_compact.php:617
313
+ msgid "Back"
314
+ msgstr ""
315
+
316
+ #: frontend/views/FFWDViewAlbum_compact.php:626
317
+ msgid "Album is empty."
318
+ msgstr ""
319
+
320
+ #: frontend/views/FFWDViewBlog_style.php:60
321
+ #: frontend/views/FFWDViewThumbnails.php:58
322
+ msgid "There are no objects in this facebook feed."
323
+ msgstr ""
324
+
325
+ #: frontend/views/FFWDViewBlog_style.php:1282
326
+ #: frontend/views/FFWDViewPopupBox.php:1309
327
+ #: frontend/views/FFWDViewPopupBox.php:1310
328
+ msgid "Share on Facebook"
329
+ msgstr ""
330
+
331
+ #: frontend/views/FFWDViewBlog_style.php:1289
332
+ #: frontend/views/FFWDViewPopupBox.php:1323
333
+ #: frontend/views/FFWDViewPopupBox.php:1324
334
+ msgid "Share on Google+"
335
+ msgstr ""
336
+
337
+ #: frontend/views/FFWDViewBlog_style.php:1296
338
+ #: frontend/views/FFWDViewPopupBox.php:1316
339
+ #: frontend/views/FFWDViewPopupBox.php:1317
340
+ msgid "Share on Twitter"
341
+ msgstr ""
342
+
343
+ #: frontend/views/FFWDViewBlog_style.php:1311
344
+ #: frontend/views/FFWDViewPopupBox.php:1595
345
+ msgid "View on facebook"
346
+ msgstr ""
347
+
348
+ #: frontend/views/FFWDViewBlog_style.php:1391
349
+ #: frontend/views/FFWDViewBlog_style.php:1405
350
+ msgid "See less"
351
+ msgstr ""
352
+
353
+ #: frontend/views/FFWDViewPopupBox.php:1275
354
+ msgid "The image has been deleted."
355
+ msgstr ""
356
+
357
+ #: frontend/views/FFWDViewPopupBox.php:1285
358
+ #: frontend/views/FFWDViewPopupBox.php:2580
359
+ #: frontend/views/FFWDViewThumbnails.php:473
360
+ #: frontend/views/FFWDViewThumbnails_masonry.php:535
361
+ msgid "Play"
362
+ msgstr ""
363
+
364
+ #: frontend/views/FFWDViewPopupBox.php:1290
365
+ #: frontend/views/FFWDViewPopupBox.php:1942
366
+ #: frontend/views/FFWDViewPopupBox.php:2413
367
+ #: frontend/views/FFWDViewPopupBox.php:2514
368
+ msgid "Maximize"
369
+ msgstr ""
370
+
371
+ #: frontend/views/FFWDViewPopupBox.php:1294
372
+ #: frontend/views/FFWDViewPopupBox.php:1944
373
+ #: frontend/views/FFWDViewPopupBox.php:2516
374
+ msgid "Fullscreen"
375
+ msgstr ""
376
+
377
+ #: frontend/views/FFWDViewPopupBox.php:1299
378
+ msgid "Show info and comments"
379
+ msgstr ""
380
+
381
+ #: frontend/views/FFWDViewPopupBox.php:1330
382
+ #: frontend/views/FFWDViewPopupBox.php:1331
383
+ msgid "Share on Pinterest"
384
+ msgstr ""
385
+
386
+ #: frontend/views/FFWDViewPopupBox.php:1337
387
+ #: frontend/views/FFWDViewPopupBox.php:1338
388
+ msgid "Share on Tumblr"
389
+ msgstr ""
390
+
391
+ #: frontend/views/FFWDViewPopupBox.php:1345
392
+ msgid "Open image in original size."
393
+ msgstr ""
394
+
395
+ #: frontend/views/FFWDViewPopupBox.php:1353
396
+ msgid "Download original image"
397
+ msgstr ""
398
+
399
+ #: frontend/views/FFWDViewPopupBox.php:1514
400
+ #: frontend/views/FFWDViewPopupBox.php:2170
401
+ msgid "Hide Comments"
402
+ msgstr ""
403
+
404
+ #: frontend/views/FFWDViewPopupBox.php:2120
405
+ msgid "Show Comments"
406
+ msgstr ""
407
+
408
+ #: frontend/views/FFWDViewPopupBox.php:2454
409
+ #: frontend/views/FFWDViewPopupBox.php:3110
410
+ msgid "Restore"
411
+ msgstr ""
412
+
413
+ #: frontend/views/FFWDViewPopupBox.php:2563
414
+ msgid "Exit Fullscreen"
415
+ msgstr ""
416
+
417
+ #: frontend/views/FFWDViewPopupBox.php:2574
418
+ #: frontend/views/FFWDViewPopupBox.php:2589
419
+ msgid "Pause"
420
+ msgstr ""
421
+
422
+ #: update/update.php:27
423
+ msgid ""
424
+ "Facebook Feed by 10Web is a completely customizable, responsive solution to help "
425
+ "you display your Facebook feed on your WordPress website."
426
+ msgstr ""
427
+
428
+ #: update/update.php:84
429
+ msgid "Updates"
430
+ msgstr ""
431
+
432
+ #: update/update.php:132
433
+ #, php-format
434
+ msgid ""
435
+ "You can download the latest version of your plugin from your %s account.\n"
436
+ " After deactivating and deleting the current "
437
+ "version, install the downloaded version\n"
438
+ " of the plugin"
439
+ msgstr ""
440
+
441
+ #: update/update.php:171
442
+ #, php-format
443
+ msgid "Current version %s"
444
+ msgstr ""
445
+
446
+ #: update/update.php:180 update/update.php:255
447
+ #, php-format
448
+ msgid "There is a new %s version"
449
+ msgstr ""
450
+
451
+ #: update/update.php:182 update/update.php:236
452
+ msgid "What's new:"
453
+ msgstr ""
454
+
455
+ #: update/update.php:202 update/update.php:278
456
+ msgid "More updates"
457
+ msgstr ""
458
+
459
+ #: update/update.php:206 update/update.php:240
460
+ #, php-format
461
+ msgid "%s is up to date."
462
+ msgstr ""
463
+
464
+ #: update/update.php:275
465
+ msgid "Show less"
466
+ msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: customizable facebook feed, facebook, facebook feed, facebook group, faceb
4
  Requires at least: 3.4
5
  Requires PHP: 5.2
6
  Tested up to: 5.7
7
- Stable tag: 1.1.33
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -104,6 +104,10 @@ If you think you found a bug in 10Web Facebook Feed or have any problem/question
104
  The plugin uses Facebook API to get public data from Facebook. All the received data is cached in WordPress database for some short customizable period to provide optimization. You can delete or update cached data. You can optionally enable like button for Facebook page. If you do so, Facebook will load some JS and embedded content which may track visitors. Facebook embeds are regulated under terms of Facebook privacy policy https://www.facebook.com/policy.php.
105
 
106
  == Changelog ==
 
 
 
 
107
  = 1.1.33 =
108
  * Fixed: Compatibility with PHP8.
109
 
@@ -465,7 +469,7 @@ Navigate to **Appearance > Widgets** page to begin configuring a Facebook feed w
465
 
466
  **Premium** version of 10Web Facebook Feed plugin lets you change the appearance of the feeds using its **Themes.** Navigate to **10Web Facebook Feed > Themes** page to make modifications.
467
 
468
- WordPress Facebook Feed plugin includes **4 built-in themes,** one of which is set to be the default. You can modify these themes or create a new one. You have the option to reset the theme options to their defaults anytime.
469
 
470
  Each theme provided by 10Web Facebook Feed plugin consists of the following sections:
471
 
4
  Requires at least: 3.4
5
  Requires PHP: 5.2
6
  Tested up to: 5.7
7
+ Stable tag: 1.1.34
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
104
  The plugin uses Facebook API to get public data from Facebook. All the received data is cached in WordPress database for some short customizable period to provide optimization. You can delete or update cached data. You can optionally enable like button for Facebook page. If you do so, Facebook will load some JS and embedded content which may track visitors. Facebook embeds are regulated under terms of Facebook privacy policy https://www.facebook.com/policy.php.
105
 
106
  == Changelog ==
107
+ = 1.1.34 =
108
+ * Added: PO file for Polish.
109
+ * Fixed: Title with quote in it.
110
+
111
  = 1.1.33 =
112
  * Fixed: Compatibility with PHP8.
113
 
469
 
470
  **Premium** version of 10Web Facebook Feed plugin lets you change the appearance of the feeds using its **Themes.** Navigate to **10Web Facebook Feed > Themes** page to make modifications.
471
 
472
+ WordPress Facebook Feed plugin includes **7 built-in themes,** one of which is set to be the default. You can modify these themes or create a new one. You have the option to reset the theme options to their defaults anytime.
473
 
474
  Each theme provided by 10Web Facebook Feed plugin consists of the following sections:
475