YOP Poll - Version 6.3.2

Version Description

  • fixed issue with migrating polls from versions lower than 6.0.0
Download this release

Release Info

Developer yourownprogrammer
Plugin Icon 128x128 YOP Poll
Version 6.3.2
Comparing to
See all releases

Code changes from version 6.3.1 to 6.3.2

admin/admin.php CHANGED
@@ -322,6 +322,10 @@ class YOP_Poll_Admin {
322
  $maintenance = new YOP_POLL_Maintenance();
323
  $maintenance->update_to_version_6_3_1();
324
  }
 
 
 
 
325
  }
326
  }
327
  public function load_translations() {
322
  $maintenance = new YOP_POLL_Maintenance();
323
  $maintenance->update_to_version_6_3_1();
324
  }
325
+ if ( true === version_compare( $installed_version, '6.3.2', '<' ) ) {
326
+ $maintenance = new YOP_POLL_Maintenance();
327
+ $maintenance->update_to_version_6_3_2();
328
+ }
329
  }
330
  }
331
  public function load_translations() {
admin/assets/css/{admin-6.3.1.css → admin-6.3.2.css} RENAMED
File without changes
admin/assets/js/{admin-6.3.1.min.js → admin-6.3.2.min.js} RENAMED
File without changes
admin/inc/ClassYopPollImporter4x.php CHANGED
@@ -304,7 +304,8 @@ class ClassYopPollImporter4x {
304
  isset( $unserialized_meta['email_notifications_body'] ) ? $unserialized_meta['email_notifications_body'] : 'New Vote',
305
  'enableGdpr' => 'no',
306
  'gdprSolution' => 'consent',
307
- 'gdprConsentText' => ''
 
308
  ],
309
  'access' => [
310
  'votePermissions' => $vote_perms,
@@ -379,7 +380,7 @@ class ClassYopPollImporter4x {
379
  'allowOtherAnswers' => isset( $unserialized_meta['allow_other_answers'] ) ? $unserialized_meta['allow_other_answers'] : 'yes',
380
  'otherAnswersLabel' => isset( $unserialized_meta['other_answers_label'] ) ? $unserialized_meta['other_answers_label'] : 'Other',
381
  'addOtherAnswers' =>
382
- isset( $unserialized_meta['add_other_answers_to_default_answers'] ) ? $unserialized_meta['add_other_answers_to_default_answers'] : 'no',
383
  'displayOtherAnswersInResults' =>
384
  isset( $unserialized_meta['display_other_answers_values'] ) ? $unserialized_meta['display_other_answers_values'] : 'no',
385
  'allowMultipleAnswers' =>
304
  isset( $unserialized_meta['email_notifications_body'] ) ? $unserialized_meta['email_notifications_body'] : 'New Vote',
305
  'enableGdpr' => 'no',
306
  'gdprSolution' => 'consent',
307
+ 'gdprConsentText' => '',
308
+ 'notificationMessageLocation' => 'top'
309
  ],
310
  'access' => [
311
  'votePermissions' => $vote_perms,
380
  'allowOtherAnswers' => isset( $unserialized_meta['allow_other_answers'] ) ? $unserialized_meta['allow_other_answers'] : 'yes',
381
  'otherAnswersLabel' => isset( $unserialized_meta['other_answers_label'] ) ? $unserialized_meta['other_answers_label'] : 'Other',
382
  'addOtherAnswers' =>
383
+ ( isset( $unserialized_meta['add_other_answers_to_default_answers'] ) && ( '' !== strval( $unserialized_meta['add_other_answers_to_default_answers'] ) ) ) ? $unserialized_meta['add_other_answers_to_default_answers'] : 'no',
384
  'displayOtherAnswersInResults' =>
385
  isset( $unserialized_meta['display_other_answers_values'] ) ? $unserialized_meta['display_other_answers_values'] : 'no',
386
  'allowMultipleAnswers' =>
admin/inc/ClassYopPollImporter5x.php CHANGED
@@ -255,7 +255,8 @@ class ClassYopPollImporter5x {
255
  'enableGdpr' => 'no',
256
  'gdprSolution' => 'consent',
257
  'gdprConsentText' => '',
258
- 'loadWithAjax' => 'no'
 
259
  ],
260
  'access' => [
261
  'votePermissions' => $vote_perms,
@@ -370,7 +371,7 @@ class ClassYopPollImporter5x {
370
  'allowOtherAnswers' => isset( $unserialized_q_meta['allow_other_answers'] ) && '' != $unserialized_q_meta['allow_other_answers'] ? $unserialized_q_meta['allow_other_answers'] : 'no',
371
  'otherAnswersLabel' => isset( $unserialized_q_meta['other_answers_label'] ) && '' != trim( $unserialized_q_meta['other_answers_label'] ) ? $unserialized_q_meta['other_answers_label'] : 'Other',
372
  'addOtherAnswers' =>
373
- isset( $unserialized_q_meta['add_other_answers_to_default_answers'] ) ? $unserialized_q_meta['add_other_answers_to_default_answers'] : 'no',
374
  'displayOtherAnswersInResults' =>
375
  isset( $unserialized_q_meta['display_other_answers_values'] ) ? $unserialized_q_meta['display_other_answers_values'] : 'no',
376
  'resultsColorForOtherAnswers' => '#000000',
@@ -447,7 +448,7 @@ class ClassYopPollImporter5x {
447
  'allowOtherAnswers' => isset( $unserialized_q_meta['allow_other_answers'] ) && '' != $unserialized_q_meta['allow_other_answers'] ? $unserialized_q_meta['allow_other_answers'] : 'no',
448
  'otherAnswersLabel' => isset( $unserialized_q_meta['other_answers_label'] ) && '' != trim( $unserialized_q_meta['other_answers_label'] ) ? $unserialized_q_meta['other_answers_label'] : 'Other',
449
  'addOtherAnswers' =>
450
- isset( $unserialized_q_meta['add_other_answers_to_default_answers'] ) ? $unserialized_q_meta['add_other_answers_to_default_answers'] : 'no',
451
  'displayOtherAnswersInResults' =>
452
  isset( $unserialized_q_meta['display_other_answers_values'] ) ? $unserialized_q_meta['display_other_answers_values'] : 'no',
453
  'resultsColorForOtherAnswers' => '#000000',
255
  'enableGdpr' => 'no',
256
  'gdprSolution' => 'consent',
257
  'gdprConsentText' => '',
258
+ 'loadWithAjax' => 'no',
259
+ 'notificationMessageLocation' => 'top'
260
  ],
261
  'access' => [
262
  'votePermissions' => $vote_perms,
371
  'allowOtherAnswers' => isset( $unserialized_q_meta['allow_other_answers'] ) && '' != $unserialized_q_meta['allow_other_answers'] ? $unserialized_q_meta['allow_other_answers'] : 'no',
372
  'otherAnswersLabel' => isset( $unserialized_q_meta['other_answers_label'] ) && '' != trim( $unserialized_q_meta['other_answers_label'] ) ? $unserialized_q_meta['other_answers_label'] : 'Other',
373
  'addOtherAnswers' =>
374
+ ( isset( $unserialized_q_meta['add_other_answers_to_default_answers'] ) && ( '' !== strval( $unserialized_q_meta['add_other_answers_to_default_answers'] ) ) ) ? $unserialized_q_meta['add_other_answers_to_default_answers'] : 'no',
375
  'displayOtherAnswersInResults' =>
376
  isset( $unserialized_q_meta['display_other_answers_values'] ) ? $unserialized_q_meta['display_other_answers_values'] : 'no',
377
  'resultsColorForOtherAnswers' => '#000000',
448
  'allowOtherAnswers' => isset( $unserialized_q_meta['allow_other_answers'] ) && '' != $unserialized_q_meta['allow_other_answers'] ? $unserialized_q_meta['allow_other_answers'] : 'no',
449
  'otherAnswersLabel' => isset( $unserialized_q_meta['other_answers_label'] ) && '' != trim( $unserialized_q_meta['other_answers_label'] ) ? $unserialized_q_meta['other_answers_label'] : 'Other',
450
  'addOtherAnswers' =>
451
+ ( isset( $unserialized_q_meta['add_other_answers_to_default_answers'] ) && ( '' !== strval( $unserialized_q_meta['add_other_answers_to_default_answers'] ) ) ) ? $unserialized_q_meta['add_other_answers_to_default_answers'] : 'no',
452
  'displayOtherAnswersInResults' =>
453
  isset( $unserialized_q_meta['display_other_answers_values'] ) ? $unserialized_q_meta['display_other_answers_values'] : 'no',
454
  'resultsColorForOtherAnswers' => '#000000',
admin/inc/maintenance.php CHANGED
@@ -140,6 +140,9 @@ class YOP_POLL_Maintenance {
140
  public function update_to_version_6_3_1() {
141
  update_option( 'yop_poll_version', '6.3.1' );
142
  }
 
 
 
143
  public function create_archive_page() {
144
  $poll_archive_page = get_page_by_path( 'yop-poll-archive', ARRAY_A );
145
  if ( ! $poll_archive_page ) {
140
  public function update_to_version_6_3_1() {
141
  update_option( 'yop_poll_version', '6.3.1' );
142
  }
143
+ public function update_to_version_6_3_2() {
144
+ update_option( 'yop_poll_version', '6.3.2' );
145
+ }
146
  public function create_archive_page() {
147
  $poll_archive_page = get_page_by_path( 'yop-poll-archive', ARRAY_A );
148
  if ( ! $poll_archive_page ) {
languages/yop-poll.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: YOP Poll 6.3.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yop-poll-free\n"
7
- "POT-Creation-Date: 2021-09-27 07:42:53+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -71,200 +71,200 @@ msgstr ""
71
  msgid "Skip and Deactivate"
72
  msgstr ""
73
 
74
- #: admin/admin.php:341 admin/admin.php:342
75
  msgid "Yop Poll"
76
  msgstr ""
77
 
78
- #: admin/admin.php:355 admin/admin.php:356 admin/admin.php:654
79
  #: admin/views/bans/add.php:23 admin/views/bans/edit.php:25
80
  #: admin/views/bans/edit.php:31 admin/views/polls/view.php:155
81
  #: admin/views/results/view.php:17 admin/views/results/votes.php:95
82
  msgid "All Polls"
83
  msgstr ""
84
 
85
- #: admin/admin.php:370 admin/admin.php:371 admin/views/bans/view.php:151
86
  #: admin/views/polls/view.php:166
87
  msgid "Add New"
88
  msgstr ""
89
 
90
- #: admin/admin.php:381 admin/admin.php:382 admin/views/bans/view.php:140
91
  msgid "Bans"
92
  msgstr ""
93
 
94
- #: admin/admin.php:392 admin/admin.php:393 admin/views/logs/view.php:108
95
  msgid "Logs"
96
  msgstr ""
97
 
98
- #: admin/admin.php:407 admin/admin.php:408
99
  msgid "Settings"
100
  msgstr ""
101
 
102
- #: admin/admin.php:419 admin/admin.php:420
103
  msgid "Migrate old records"
104
  msgstr ""
105
 
106
- #: admin/admin.php:431 admin/admin.php:432
107
  msgid "Upgrade to Pro"
108
  msgstr ""
109
 
110
- #: admin/admin.php:520
111
  msgid "New Custom Field"
112
  msgstr ""
113
 
114
- #: admin/admin.php:521
115
  msgid "Warning"
116
  msgstr ""
117
 
118
- #: admin/admin.php:522 admin/admin.php:523
119
  msgid "Are you sure you want to delete this poll?"
120
  msgstr ""
121
 
122
- #: admin/admin.php:524
123
  msgid "Are you sure you want to delete these polls?"
124
  msgstr ""
125
 
126
- #: admin/admin.php:525 admin/admin.php:526
127
  msgid "Are you sure you want to clone this poll?"
128
  msgstr ""
129
 
130
- #: admin/admin.php:527
131
  msgid "Are you sure you want to clone these polls?"
132
  msgstr ""
133
 
134
- #: admin/admin.php:528 admin/admin.php:529
135
  msgid "Are you sure you want to reset votes for this poll?"
136
  msgstr ""
137
 
138
- #: admin/admin.php:530
139
  msgid "Are you sure you want to reset votes for these polls?"
140
  msgstr ""
141
 
142
- #: admin/admin.php:531
143
  msgid "No bulk action selected"
144
  msgstr ""
145
 
146
- #: admin/admin.php:532
147
  msgid "No polls selected"
148
  msgstr ""
149
 
150
- #: admin/admin.php:533
151
  msgid "No bans selected"
152
  msgstr ""
153
 
154
- #: admin/admin.php:534
155
  msgid "No logs selected"
156
  msgstr ""
157
 
158
- #: admin/admin.php:535
159
  msgid "No votes selected"
160
  msgstr ""
161
 
162
- #: admin/admin.php:536 admin/admin.php:609
163
  msgid "Are you sure you want to delete this ban?"
164
  msgstr ""
165
 
166
- #: admin/admin.php:537
167
  msgid "Are you sure you want to delete these bans?"
168
  msgstr ""
169
 
170
- #: admin/admin.php:538 admin/admin.php:610
171
  msgid "Are you sure you want to delete this log?"
172
  msgstr ""
173
 
174
- #: admin/admin.php:539
175
  msgid "Are you sure you want to delete these logs?"
176
  msgstr ""
177
 
178
- #: admin/admin.php:540
179
  msgid "Are you sure you want to delete this vote?"
180
  msgstr ""
181
 
182
- #: admin/admin.php:541
183
  msgid "Are you sure you want to delete these votes?"
184
  msgstr ""
185
 
186
- #: admin/admin.php:542
187
  msgid "Are you sure you want to delete this answer?"
188
  msgstr ""
189
 
190
- #: admin/admin.php:543
191
  msgid "Answer can't be deleted. At least one answer is required!"
192
  msgstr ""
193
 
194
- #: admin/admin.php:544
195
  msgid "Are you sure you want to delete this custom field?"
196
  msgstr ""
197
 
198
- #: admin/admin.php:545 admin/views/polls/add/main.php:188
199
  #: admin/views/polls/edit/main.php:213 admin/views/results/votes.php:196
200
  msgid "Cancel"
201
  msgstr ""
202
 
203
- #: admin/admin.php:546
204
  msgid "Ok"
205
  msgstr ""
206
 
207
- #: admin/admin.php:547
208
  msgid "Before generating the preview a template is required"
209
  msgstr ""
210
 
211
- #: admin/admin.php:548
212
  msgid "Before generating the preview a skin is required"
213
  msgstr ""
214
 
215
- #: admin/admin.php:549
216
  msgid "Number of columns is missing"
217
  msgstr ""
218
 
219
- #: admin/admin.php:550
220
  msgid "Too many columns. Max 12 allowed"
221
  msgstr ""
222
 
223
- #: admin/admin.php:551
224
  msgid "Click to select"
225
  msgstr ""
226
 
227
- #: admin/admin.php:552 admin/views/polls/add/main.php:194
228
  msgid "Publish immediately"
229
  msgstr ""
230
 
231
- #: admin/admin.php:553
232
  msgid "Schedule for"
233
  msgstr ""
234
 
235
- #: admin/admin.php:554
236
  msgid "Code Copied To Clipboard"
237
  msgstr ""
238
 
239
- #: admin/admin.php:556
240
  msgid "Press"
241
  msgstr ""
242
 
243
- #: admin/admin.php:557
244
  msgid " to copy"
245
  msgstr ""
246
 
247
- #: admin/admin.php:558
248
  msgid "No Support"
249
  msgstr ""
250
 
251
- #: admin/admin.php:560
252
  msgid "Element added"
253
  msgstr ""
254
 
255
- #: admin/admin.php:572
256
  msgid "Poll Preview"
257
  msgstr ""
258
 
259
- #: admin/admin.php:573
260
  msgid "Show preview for"
261
  msgstr ""
262
 
263
- #: admin/admin.php:574 admin/views/settings/view.php:324
264
  msgid "Voting"
265
  msgstr ""
266
 
267
- #: admin/admin.php:575 admin/views/polls/add/main.php:108
268
  #: admin/views/polls/add/options-poll.php:40
269
  #: admin/views/polls/edit/main.php:124 admin/views/polls/view.php:345
270
  #: admin/views/polls/view.php:630 admin/views/results/view.php:24
@@ -272,93 +272,93 @@ msgstr ""
272
  msgid "Results"
273
  msgstr ""
274
 
275
- #: admin/admin.php:586
276
  msgid "Template is missing"
277
  msgstr ""
278
 
279
- #: admin/admin.php:587
280
  msgid "Skin is missing"
281
  msgstr ""
282
 
283
- #: admin/admin.php:588
284
  msgid " is missing"
285
  msgstr ""
286
 
287
- #: admin/admin.php:589
288
  msgid "Poll name is missing"
289
  msgstr ""
290
 
291
- #: admin/admin.php:590
292
  msgid "Question Text is missing"
293
  msgstr ""
294
 
295
- #: admin/admin.php:591
296
  msgid "Answer Text is missing"
297
  msgstr ""
298
 
299
- #: admin/admin.php:592
300
  msgid "Answer Link is missing"
301
  msgstr ""
302
 
303
- #: admin/admin.php:593
304
  msgid "Answer Embed is missing"
305
  msgstr ""
306
 
307
- #: admin/admin.php:594
308
  msgid "Label for Other is missing"
309
  msgstr ""
310
 
311
- #: admin/admin.php:595
312
  msgid "Minimum answers is missing"
313
  msgstr ""
314
 
315
- #: admin/admin.php:596
316
  msgid "Maximum answers is missing"
317
  msgstr ""
318
 
319
- #: admin/admin.php:597
320
  msgid "Custom Field Name is missing"
321
  msgstr ""
322
 
323
- #: admin/admin.php:598
324
  msgid "Poll Start Date is missing"
325
  msgstr ""
326
 
327
- #: admin/admin.php:599
328
  msgid "Poll End Date is missing"
329
  msgstr ""
330
 
331
- #: admin/admin.php:600
332
  msgid "Custom Date for displaying results is missing"
333
  msgstr ""
334
 
335
- #: admin/admin.php:601
336
  msgid "Show Results Time is missing"
337
  msgstr ""
338
 
339
- #: admin/admin.php:602
340
  msgid "Show Results To is missing"
341
  msgstr ""
342
 
343
- #: admin/admin.php:603
344
  msgid "Vote As WordPress User is missing"
345
  msgstr ""
346
 
347
- #: admin/admin.php:606
348
  msgid "Ban For is missing"
349
  msgstr ""
350
 
351
- #: admin/admin.php:607
352
  msgid "Ban Value is missing"
353
  msgstr ""
354
 
355
- #: admin/admin.php:611 admin/admin.php:1212 admin/admin.php:1436
356
  #: admin/models/logs.php:410 admin/models/votes.php:1403
357
  msgid "Question"
358
  msgstr ""
359
 
360
- #: admin/admin.php:612 admin/admin.php:1209 admin/admin.php:1214
361
- #: admin/admin.php:1433 admin/admin.php:1438 admin/models/logs.php:408
362
  #: admin/models/logs.php:412 admin/models/votes.php:1405
363
  #: admin/views/polls/add/elements.php:107
364
  #: admin/views/polls/add/elements.php:181
@@ -367,154 +367,154 @@ msgstr ""
367
  msgid "Answer"
368
  msgstr ""
369
 
370
- #: admin/admin.php:613 admin/views/logs/view.php:368
371
  #: admin/views/results/votes.php:404
372
  msgid "View Details"
373
  msgstr ""
374
 
375
- #: admin/admin.php:614
376
  msgid "Hide Details"
377
  msgstr ""
378
 
379
- #: admin/admin.php:615
380
  msgid "Number of Votes"
381
  msgstr ""
382
 
383
- #: admin/admin.php:617
384
  msgid "vote"
385
  msgstr ""
386
 
387
- #: admin/admin.php:618
388
  msgid "votes"
389
  msgstr ""
390
 
391
- #: admin/admin.php:621
392
  msgid "Got It. Continue with the migration"
393
  msgstr ""
394
 
395
- #: admin/admin.php:622
396
  msgid "Hold On. I want to change settings"
397
  msgstr ""
398
 
399
- #: admin/admin.php:623
400
  msgid "Please review your settings before continue"
401
  msgstr ""
402
 
403
- #: admin/admin.php:624
404
  msgid "Your selection"
405
  msgstr ""
406
 
407
- #: admin/admin.php:625
408
  msgid ""
409
  "This setting will migrate all data from previous version without any "
410
  "anonymization"
411
  msgstr ""
412
 
413
- #: admin/admin.php:626
414
  msgid ""
415
  "This setting will migrate all data from previous version but ips will be "
416
  "anonymized"
417
  msgstr ""
418
 
419
- #: admin/admin.php:627
420
  msgid "This setting will migrate everything except ip addresses. "
421
  msgstr ""
422
 
423
- #: admin/admin.php:628
424
  msgid "Response:"
425
  msgstr ""
426
 
427
- #: admin/admin.php:629
428
  msgid "All done."
429
  msgstr ""
430
 
431
- #: admin/admin.php:630
432
  msgid "Migration started"
433
  msgstr ""
434
 
435
- #: admin/admin.php:646 admin/views/polls/edit/main.php:14
436
  msgid "Edit Poll"
437
  msgstr ""
438
 
439
- #: admin/admin.php:650
440
  msgid "View Poll Results"
441
  msgstr ""
442
 
443
- #: admin/admin.php:663
444
  msgid "View Logs"
445
  msgstr ""
446
 
447
- #: admin/admin.php:672 admin/views/bans/add.php:4
448
  msgid "Add Ban"
449
  msgstr ""
450
 
451
- #: admin/admin.php:676 admin/views/bans/edit.php:4
452
  msgid "Edit Ban"
453
  msgstr ""
454
 
455
- #: admin/admin.php:680
456
  msgid "All Bans"
457
  msgstr ""
458
 
459
- #: admin/admin.php:779 admin/admin.php:1304
460
  msgid "You don't have sufficient permissions to access this page"
461
  msgstr ""
462
 
463
- #: admin/admin.php:791
464
  msgid "Poll successfully added"
465
  msgstr ""
466
 
467
- #: admin/admin.php:799 admin/admin.php:825 admin/admin.php:828
468
- #: admin/admin.php:848 admin/admin.php:851 admin/admin.php:854
469
- #: admin/admin.php:894 admin/admin.php:908 admin/admin.php:911
470
- #: admin/admin.php:914 admin/admin.php:949 admin/admin.php:974
471
- #: admin/admin.php:1168 admin/admin.php:1221 admin/admin.php:1224
472
- #: admin/admin.php:1227 admin/admin.php:1284 admin/admin.php:1326
473
- #: admin/admin.php:1329 admin/admin.php:1332 admin/admin.php:1351
474
- #: admin/admin.php:1354 admin/admin.php:1394 admin/admin.php:1445
475
- #: admin/admin.php:1448 admin/admin.php:1474 admin/admin.php:1518
476
- #: admin/admin.php:1538 admin/admin.php:1541 admin/admin.php:1544
477
- #: admin/admin.php:1584 admin/admin.php:1608 admin/admin.php:1611
478
- #: admin/inc/ClassYopPollImporter4x.php:743
479
- #: admin/inc/ClassYopPollImporter4x.php:795
480
- #: admin/inc/ClassYopPollImporter5x.php:2586
481
- #: admin/inc/ClassYopPollImporter5x.php:2650
482
  msgid "You are not allowed to perform this action"
483
  msgstr ""
484
 
485
- #: admin/admin.php:816
486
  msgid "Poll successfully updated"
487
  msgstr ""
488
 
489
- #: admin/admin.php:843 admin/admin.php:879
490
  msgid "Poll successfully deleted"
491
  msgstr ""
492
 
493
- #: admin/admin.php:886 admin/models/polls.php:571
494
  msgid "Error deleting poll"
495
  msgstr ""
496
 
497
- #: admin/admin.php:903 admin/admin.php:934
498
  msgid "Poll successfully cloned"
499
  msgstr ""
500
 
501
- #: admin/admin.php:941 admin/models/polls.php:631
502
  msgid "Error cloning poll"
503
  msgstr ""
504
 
505
- #: admin/admin.php:969
506
  msgid "Votes successfully reset"
507
  msgstr ""
508
 
509
- #: admin/admin.php:971 admin/models/polls.php:650
510
  msgid "Error resetting votes"
511
  msgstr ""
512
 
513
- #: admin/admin.php:1084 admin/admin.php:1123 admin/models/bans.php:379
514
  msgid "Invalid poll"
515
  msgstr ""
516
 
517
- #: admin/admin.php:1208 admin/admin.php:1432 admin/models/logs.php:407
518
  #: admin/views/custom-field.php:31 admin/views/polls/add/elements.php:15
519
  #: admin/views/polls/edit/elements.php:15
520
  #: admin/views/polls/edit/elements.php:496
@@ -523,67 +523,67 @@ msgstr ""
523
  msgid "Custom Field"
524
  msgstr ""
525
 
526
- #: admin/admin.php:1279
527
  msgid "Ban successfully added"
528
  msgstr ""
529
 
530
- #: admin/admin.php:1321 admin/admin.php:1379
531
  msgid "Ban successfully deleted"
532
  msgstr ""
533
 
534
- #: admin/admin.php:1346
535
  msgid "Ban successfully updated"
536
  msgstr ""
537
 
538
- #: admin/admin.php:1386 admin/models/bans.php:356
539
  msgid "Error deleting ban"
540
  msgstr ""
541
 
542
- #: admin/admin.php:1403
543
  msgid "Vote Recorded"
544
  msgstr ""
545
 
546
- #: admin/admin.php:1408 admin/admin.php:1626
547
  msgid "Invalid data 1"
548
  msgstr ""
549
 
550
- #: admin/admin.php:1411 admin/admin.php:1629
551
  msgid "Invalid data 2"
552
  msgstr ""
553
 
554
- #: admin/admin.php:1465 admin/admin.php:1503
555
  msgid "Vote successfully deleted"
556
  msgstr ""
557
 
558
- #: admin/admin.php:1467 admin/admin.php:1471 admin/admin.php:1510
559
  msgid "Error deleting vote"
560
  msgstr ""
561
 
562
- #: admin/admin.php:1533 admin/admin.php:1569
563
  msgid "Log successfully deleted"
564
  msgstr ""
565
 
566
- #: admin/admin.php:1576 admin/models/logs.php:459
567
  msgid "Error deleting log"
568
  msgstr ""
569
 
570
- #: admin/admin.php:1603
571
  msgid "Settings updated"
572
  msgstr ""
573
 
574
- #: admin/admin.php:1621
575
  msgid "Votes Succesfully Added"
576
  msgstr ""
577
 
578
- #: admin/admin.php:1642
579
  msgid "Error generating poll"
580
  msgstr ""
581
 
582
- #: admin/admin.php:1649
583
  msgid "Setting Updated"
584
  msgstr ""
585
 
586
- #: admin/admin.php:1668
587
  msgid "Guide Sent"
588
  msgstr ""
589
 
@@ -623,33 +623,33 @@ msgstr ""
623
  msgid "Tracking Id:"
624
  msgstr ""
625
 
626
- #: admin/inc/ClassYopPollImporter4x.php:467
627
- #: admin/inc/ClassYopPollImporter5x.php:601
628
  msgid "No bans to process."
629
  msgstr ""
630
 
631
- #: admin/inc/ClassYopPollImporter4x.php:470
632
- #: admin/inc/ClassYopPollImporter5x.php:604
633
  msgid "No bans table, skipping."
634
  msgstr ""
635
 
636
- #: admin/inc/ClassYopPollImporter4x.php:653
637
- #: admin/inc/ClassYopPollImporter4x.php:657
638
- #: admin/inc/ClassYopPollImporter5x.php:632
639
- #: admin/inc/ClassYopPollImporter5x.php:724
640
  msgid "No votes to process."
641
  msgstr ""
642
 
643
- #: admin/inc/ClassYopPollImporter4x.php:661
644
- #: admin/inc/ClassYopPollImporter5x.php:728
645
  msgid "No votes table, skipping."
646
  msgstr ""
647
 
648
- #: admin/inc/ClassYopPollImporter5x.php:755
649
  msgid "No logs to process."
650
  msgstr ""
651
 
652
- #: admin/inc/ClassYopPollImporter5x.php:851
653
  msgid "No logs table, skipping."
654
  msgstr ""
655
 
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: YOP Poll 6.3.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yop-poll-free\n"
7
+ "POT-Creation-Date: 2021-11-25 07:55:31+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
71
  msgid "Skip and Deactivate"
72
  msgstr ""
73
 
74
+ #: admin/admin.php:345 admin/admin.php:346
75
  msgid "Yop Poll"
76
  msgstr ""
77
 
78
+ #: admin/admin.php:359 admin/admin.php:360 admin/admin.php:658
79
  #: admin/views/bans/add.php:23 admin/views/bans/edit.php:25
80
  #: admin/views/bans/edit.php:31 admin/views/polls/view.php:155
81
  #: admin/views/results/view.php:17 admin/views/results/votes.php:95
82
  msgid "All Polls"
83
  msgstr ""
84
 
85
+ #: admin/admin.php:374 admin/admin.php:375 admin/views/bans/view.php:151
86
  #: admin/views/polls/view.php:166
87
  msgid "Add New"
88
  msgstr ""
89
 
90
+ #: admin/admin.php:385 admin/admin.php:386 admin/views/bans/view.php:140
91
  msgid "Bans"
92
  msgstr ""
93
 
94
+ #: admin/admin.php:396 admin/admin.php:397 admin/views/logs/view.php:108
95
  msgid "Logs"
96
  msgstr ""
97
 
98
+ #: admin/admin.php:411 admin/admin.php:412
99
  msgid "Settings"
100
  msgstr ""
101
 
102
+ #: admin/admin.php:423 admin/admin.php:424
103
  msgid "Migrate old records"
104
  msgstr ""
105
 
106
+ #: admin/admin.php:435 admin/admin.php:436
107
  msgid "Upgrade to Pro"
108
  msgstr ""
109
 
110
+ #: admin/admin.php:524
111
  msgid "New Custom Field"
112
  msgstr ""
113
 
114
+ #: admin/admin.php:525
115
  msgid "Warning"
116
  msgstr ""
117
 
118
+ #: admin/admin.php:526 admin/admin.php:527
119
  msgid "Are you sure you want to delete this poll?"
120
  msgstr ""
121
 
122
+ #: admin/admin.php:528
123
  msgid "Are you sure you want to delete these polls?"
124
  msgstr ""
125
 
126
+ #: admin/admin.php:529 admin/admin.php:530
127
  msgid "Are you sure you want to clone this poll?"
128
  msgstr ""
129
 
130
+ #: admin/admin.php:531
131
  msgid "Are you sure you want to clone these polls?"
132
  msgstr ""
133
 
134
+ #: admin/admin.php:532 admin/admin.php:533
135
  msgid "Are you sure you want to reset votes for this poll?"
136
  msgstr ""
137
 
138
+ #: admin/admin.php:534
139
  msgid "Are you sure you want to reset votes for these polls?"
140
  msgstr ""
141
 
142
+ #: admin/admin.php:535
143
  msgid "No bulk action selected"
144
  msgstr ""
145
 
146
+ #: admin/admin.php:536
147
  msgid "No polls selected"
148
  msgstr ""
149
 
150
+ #: admin/admin.php:537
151
  msgid "No bans selected"
152
  msgstr ""
153
 
154
+ #: admin/admin.php:538
155
  msgid "No logs selected"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:539
159
  msgid "No votes selected"
160
  msgstr ""
161
 
162
+ #: admin/admin.php:540 admin/admin.php:613
163
  msgid "Are you sure you want to delete this ban?"
164
  msgstr ""
165
 
166
+ #: admin/admin.php:541
167
  msgid "Are you sure you want to delete these bans?"
168
  msgstr ""
169
 
170
+ #: admin/admin.php:542 admin/admin.php:614
171
  msgid "Are you sure you want to delete this log?"
172
  msgstr ""
173
 
174
+ #: admin/admin.php:543
175
  msgid "Are you sure you want to delete these logs?"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:544
179
  msgid "Are you sure you want to delete this vote?"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:545
183
  msgid "Are you sure you want to delete these votes?"
184
  msgstr ""
185
 
186
+ #: admin/admin.php:546
187
  msgid "Are you sure you want to delete this answer?"
188
  msgstr ""
189
 
190
+ #: admin/admin.php:547
191
  msgid "Answer can't be deleted. At least one answer is required!"
192
  msgstr ""
193
 
194
+ #: admin/admin.php:548
195
  msgid "Are you sure you want to delete this custom field?"
196
  msgstr ""
197
 
198
+ #: admin/admin.php:549 admin/views/polls/add/main.php:188
199
  #: admin/views/polls/edit/main.php:213 admin/views/results/votes.php:196
200
  msgid "Cancel"
201
  msgstr ""
202
 
203
+ #: admin/admin.php:550
204
  msgid "Ok"
205
  msgstr ""
206
 
207
+ #: admin/admin.php:551
208
  msgid "Before generating the preview a template is required"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:552
212
  msgid "Before generating the preview a skin is required"
213
  msgstr ""
214
 
215
+ #: admin/admin.php:553
216
  msgid "Number of columns is missing"
217
  msgstr ""
218
 
219
+ #: admin/admin.php:554
220
  msgid "Too many columns. Max 12 allowed"
221
  msgstr ""
222
 
223
+ #: admin/admin.php:555
224
  msgid "Click to select"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:556 admin/views/polls/add/main.php:194
228
  msgid "Publish immediately"
229
  msgstr ""
230
 
231
+ #: admin/admin.php:557
232
  msgid "Schedule for"
233
  msgstr ""
234
 
235
+ #: admin/admin.php:558
236
  msgid "Code Copied To Clipboard"
237
  msgstr ""
238
 
239
+ #: admin/admin.php:560
240
  msgid "Press"
241
  msgstr ""
242
 
243
+ #: admin/admin.php:561
244
  msgid " to copy"
245
  msgstr ""
246
 
247
+ #: admin/admin.php:562
248
  msgid "No Support"
249
  msgstr ""
250
 
251
+ #: admin/admin.php:564
252
  msgid "Element added"
253
  msgstr ""
254
 
255
+ #: admin/admin.php:576
256
  msgid "Poll Preview"
257
  msgstr ""
258
 
259
+ #: admin/admin.php:577
260
  msgid "Show preview for"
261
  msgstr ""
262
 
263
+ #: admin/admin.php:578 admin/views/settings/view.php:324
264
  msgid "Voting"
265
  msgstr ""
266
 
267
+ #: admin/admin.php:579 admin/views/polls/add/main.php:108
268
  #: admin/views/polls/add/options-poll.php:40
269
  #: admin/views/polls/edit/main.php:124 admin/views/polls/view.php:345
270
  #: admin/views/polls/view.php:630 admin/views/results/view.php:24
272
  msgid "Results"
273
  msgstr ""
274
 
275
+ #: admin/admin.php:590
276
  msgid "Template is missing"
277
  msgstr ""
278
 
279
+ #: admin/admin.php:591
280
  msgid "Skin is missing"
281
  msgstr ""
282
 
283
+ #: admin/admin.php:592
284
  msgid " is missing"
285
  msgstr ""
286
 
287
+ #: admin/admin.php:593
288
  msgid "Poll name is missing"
289
  msgstr ""
290
 
291
+ #: admin/admin.php:594
292
  msgid "Question Text is missing"
293
  msgstr ""
294
 
295
+ #: admin/admin.php:595
296
  msgid "Answer Text is missing"
297
  msgstr ""
298
 
299
+ #: admin/admin.php:596
300
  msgid "Answer Link is missing"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:597
304
  msgid "Answer Embed is missing"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:598
308
  msgid "Label for Other is missing"
309
  msgstr ""
310
 
311
+ #: admin/admin.php:599
312
  msgid "Minimum answers is missing"
313
  msgstr ""
314
 
315
+ #: admin/admin.php:600
316
  msgid "Maximum answers is missing"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:601
320
  msgid "Custom Field Name is missing"
321
  msgstr ""
322
 
323
+ #: admin/admin.php:602
324
  msgid "Poll Start Date is missing"
325
  msgstr ""
326
 
327
+ #: admin/admin.php:603
328
  msgid "Poll End Date is missing"
329
  msgstr ""
330
 
331
+ #: admin/admin.php:604
332
  msgid "Custom Date for displaying results is missing"
333
  msgstr ""
334
 
335
+ #: admin/admin.php:605
336
  msgid "Show Results Time is missing"
337
  msgstr ""
338
 
339
+ #: admin/admin.php:606
340
  msgid "Show Results To is missing"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:607
344
  msgid "Vote As WordPress User is missing"
345
  msgstr ""
346
 
347
+ #: admin/admin.php:610
348
  msgid "Ban For is missing"
349
  msgstr ""
350
 
351
+ #: admin/admin.php:611
352
  msgid "Ban Value is missing"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:615 admin/admin.php:1216 admin/admin.php:1440
356
  #: admin/models/logs.php:410 admin/models/votes.php:1403
357
  msgid "Question"
358
  msgstr ""
359
 
360
+ #: admin/admin.php:616 admin/admin.php:1213 admin/admin.php:1218
361
+ #: admin/admin.php:1437 admin/admin.php:1442 admin/models/logs.php:408
362
  #: admin/models/logs.php:412 admin/models/votes.php:1405
363
  #: admin/views/polls/add/elements.php:107
364
  #: admin/views/polls/add/elements.php:181
367
  msgid "Answer"
368
  msgstr ""
369
 
370
+ #: admin/admin.php:617 admin/views/logs/view.php:368
371
  #: admin/views/results/votes.php:404
372
  msgid "View Details"
373
  msgstr ""
374
 
375
+ #: admin/admin.php:618
376
  msgid "Hide Details"
377
  msgstr ""
378
 
379
+ #: admin/admin.php:619
380
  msgid "Number of Votes"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:621
384
  msgid "vote"
385
  msgstr ""
386
 
387
+ #: admin/admin.php:622
388
  msgid "votes"
389
  msgstr ""
390
 
391
+ #: admin/admin.php:625
392
  msgid "Got It. Continue with the migration"
393
  msgstr ""
394
 
395
+ #: admin/admin.php:626
396
  msgid "Hold On. I want to change settings"
397
  msgstr ""
398
 
399
+ #: admin/admin.php:627
400
  msgid "Please review your settings before continue"
401
  msgstr ""
402
 
403
+ #: admin/admin.php:628
404
  msgid "Your selection"
405
  msgstr ""
406
 
407
+ #: admin/admin.php:629
408
  msgid ""
409
  "This setting will migrate all data from previous version without any "
410
  "anonymization"
411
  msgstr ""
412
 
413
+ #: admin/admin.php:630
414
  msgid ""
415
  "This setting will migrate all data from previous version but ips will be "
416
  "anonymized"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:631
420
  msgid "This setting will migrate everything except ip addresses. "
421
  msgstr ""
422
 
423
+ #: admin/admin.php:632
424
  msgid "Response:"
425
  msgstr ""
426
 
427
+ #: admin/admin.php:633
428
  msgid "All done."
429
  msgstr ""
430
 
431
+ #: admin/admin.php:634
432
  msgid "Migration started"
433
  msgstr ""
434
 
435
+ #: admin/admin.php:650 admin/views/polls/edit/main.php:14
436
  msgid "Edit Poll"
437
  msgstr ""
438
 
439
+ #: admin/admin.php:654
440
  msgid "View Poll Results"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:667
444
  msgid "View Logs"
445
  msgstr ""
446
 
447
+ #: admin/admin.php:676 admin/views/bans/add.php:4
448
  msgid "Add Ban"
449
  msgstr ""
450
 
451
+ #: admin/admin.php:680 admin/views/bans/edit.php:4
452
  msgid "Edit Ban"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:684
456
  msgid "All Bans"
457
  msgstr ""
458
 
459
+ #: admin/admin.php:783 admin/admin.php:1308
460
  msgid "You don't have sufficient permissions to access this page"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:795
464
  msgid "Poll successfully added"
465
  msgstr ""
466
 
467
+ #: admin/admin.php:803 admin/admin.php:829 admin/admin.php:832
468
+ #: admin/admin.php:852 admin/admin.php:855 admin/admin.php:858
469
+ #: admin/admin.php:898 admin/admin.php:912 admin/admin.php:915
470
+ #: admin/admin.php:918 admin/admin.php:953 admin/admin.php:978
471
+ #: admin/admin.php:1172 admin/admin.php:1225 admin/admin.php:1228
472
+ #: admin/admin.php:1231 admin/admin.php:1288 admin/admin.php:1330
473
+ #: admin/admin.php:1333 admin/admin.php:1336 admin/admin.php:1355
474
+ #: admin/admin.php:1358 admin/admin.php:1398 admin/admin.php:1449
475
+ #: admin/admin.php:1452 admin/admin.php:1478 admin/admin.php:1522
476
+ #: admin/admin.php:1542 admin/admin.php:1545 admin/admin.php:1548
477
+ #: admin/admin.php:1588 admin/admin.php:1612 admin/admin.php:1615
478
+ #: admin/inc/ClassYopPollImporter4x.php:744
479
+ #: admin/inc/ClassYopPollImporter4x.php:796
480
+ #: admin/inc/ClassYopPollImporter5x.php:2587
481
+ #: admin/inc/ClassYopPollImporter5x.php:2651
482
  msgid "You are not allowed to perform this action"
483
  msgstr ""
484
 
485
+ #: admin/admin.php:820
486
  msgid "Poll successfully updated"
487
  msgstr ""
488
 
489
+ #: admin/admin.php:847 admin/admin.php:883
490
  msgid "Poll successfully deleted"
491
  msgstr ""
492
 
493
+ #: admin/admin.php:890 admin/models/polls.php:571
494
  msgid "Error deleting poll"
495
  msgstr ""
496
 
497
+ #: admin/admin.php:907 admin/admin.php:938
498
  msgid "Poll successfully cloned"
499
  msgstr ""
500
 
501
+ #: admin/admin.php:945 admin/models/polls.php:631
502
  msgid "Error cloning poll"
503
  msgstr ""
504
 
505
+ #: admin/admin.php:973
506
  msgid "Votes successfully reset"
507
  msgstr ""
508
 
509
+ #: admin/admin.php:975 admin/models/polls.php:650
510
  msgid "Error resetting votes"
511
  msgstr ""
512
 
513
+ #: admin/admin.php:1088 admin/admin.php:1127 admin/models/bans.php:379
514
  msgid "Invalid poll"
515
  msgstr ""
516
 
517
+ #: admin/admin.php:1212 admin/admin.php:1436 admin/models/logs.php:407
518
  #: admin/views/custom-field.php:31 admin/views/polls/add/elements.php:15
519
  #: admin/views/polls/edit/elements.php:15
520
  #: admin/views/polls/edit/elements.php:496
523
  msgid "Custom Field"
524
  msgstr ""
525
 
526
+ #: admin/admin.php:1283
527
  msgid "Ban successfully added"
528
  msgstr ""
529
 
530
+ #: admin/admin.php:1325 admin/admin.php:1383
531
  msgid "Ban successfully deleted"
532
  msgstr ""
533
 
534
+ #: admin/admin.php:1350
535
  msgid "Ban successfully updated"
536
  msgstr ""
537
 
538
+ #: admin/admin.php:1390 admin/models/bans.php:356
539
  msgid "Error deleting ban"
540
  msgstr ""
541
 
542
+ #: admin/admin.php:1407
543
  msgid "Vote Recorded"
544
  msgstr ""
545
 
546
+ #: admin/admin.php:1412 admin/admin.php:1630
547
  msgid "Invalid data 1"
548
  msgstr ""
549
 
550
+ #: admin/admin.php:1415 admin/admin.php:1633
551
  msgid "Invalid data 2"
552
  msgstr ""
553
 
554
+ #: admin/admin.php:1469 admin/admin.php:1507
555
  msgid "Vote successfully deleted"
556
  msgstr ""
557
 
558
+ #: admin/admin.php:1471 admin/admin.php:1475 admin/admin.php:1514
559
  msgid "Error deleting vote"
560
  msgstr ""
561
 
562
+ #: admin/admin.php:1537 admin/admin.php:1573
563
  msgid "Log successfully deleted"
564
  msgstr ""
565
 
566
+ #: admin/admin.php:1580 admin/models/logs.php:459
567
  msgid "Error deleting log"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:1607
571
  msgid "Settings updated"
572
  msgstr ""
573
 
574
+ #: admin/admin.php:1625
575
  msgid "Votes Succesfully Added"
576
  msgstr ""
577
 
578
+ #: admin/admin.php:1646
579
  msgid "Error generating poll"
580
  msgstr ""
581
 
582
+ #: admin/admin.php:1653
583
  msgid "Setting Updated"
584
  msgstr ""
585
 
586
+ #: admin/admin.php:1672
587
  msgid "Guide Sent"
588
  msgstr ""
589
 
623
  msgid "Tracking Id:"
624
  msgstr ""
625
 
626
+ #: admin/inc/ClassYopPollImporter4x.php:468
627
+ #: admin/inc/ClassYopPollImporter5x.php:602
628
  msgid "No bans to process."
629
  msgstr ""
630
 
631
+ #: admin/inc/ClassYopPollImporter4x.php:471
632
+ #: admin/inc/ClassYopPollImporter5x.php:605
633
  msgid "No bans table, skipping."
634
  msgstr ""
635
 
636
+ #: admin/inc/ClassYopPollImporter4x.php:654
637
+ #: admin/inc/ClassYopPollImporter4x.php:658
638
+ #: admin/inc/ClassYopPollImporter5x.php:633
639
+ #: admin/inc/ClassYopPollImporter5x.php:725
640
  msgid "No votes to process."
641
  msgstr ""
642
 
643
+ #: admin/inc/ClassYopPollImporter4x.php:662
644
+ #: admin/inc/ClassYopPollImporter5x.php:729
645
  msgid "No votes table, skipping."
646
  msgstr ""
647
 
648
+ #: admin/inc/ClassYopPollImporter5x.php:756
649
  msgid "No logs to process."
650
  msgstr ""
651
 
652
+ #: admin/inc/ClassYopPollImporter5x.php:852
653
  msgid "No logs table, skipping."
654
  msgstr ""
655
 
public/assets/css/{yop-poll-public-6.3.1.css → yop-poll-public-6.3.2.css} RENAMED
File without changes
public/assets/js/{yop-poll-public-6.3.1.min.js → yop-poll-public-6.3.2.min.js} RENAMED
File without changes
readme.txt CHANGED
@@ -119,6 +119,9 @@ You can have only one question per poll.
119
 
120
  == Changelog ==
121
 
 
 
 
122
  = 6.3.1 =
123
  * fixed XSS bugs CVE-2021-24833, CVE-2021-24834 - Props to Vishnupriya Ilango of Fortinet's FortiGuard Labs
124
  * fixed issue with custom styles not applying to custom fields
119
 
120
  == Changelog ==
121
 
122
+ = 6.3.2 =
123
+ * fixed issue with migrating polls from versions lower than 6.0.0
124
+
125
  = 6.3.1 =
126
  * fixed XSS bugs CVE-2021-24833, CVE-2021-24834 - Props to Vishnupriya Ilango of Fortinet's FortiGuard Labs
127
  * fixed issue with custom styles not applying to custom fields
yop_poll.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: YOP Poll
4
  Plugin URI: https://yop-poll.com
5
  Description: Use a full option polling functionality to get the answers you need. YOP Poll is the perfect, easy to use poll plugin for your WordPress website.
6
- Version: 6.3.1
7
  Author: yourownprogrammer
8
  Author URI: https://yop-poll.com
9
  License: GPL2
@@ -11,7 +11,7 @@ License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
  Domain Path: /languages
12
  Text Domain: yop-poll
13
  */
14
- define ( 'YOP_POLL_VERSION', '6.3.1' );
15
  define ( 'YOP_POLL_URL', plugin_dir_url( __FILE__ ) );
16
  define ( 'YOP_POLL_PATH', plugin_dir_path( __FILE__ ) );
17
  define ( 'YOP_POLL_TEST_MODE', false );
3
  Plugin Name: YOP Poll
4
  Plugin URI: https://yop-poll.com
5
  Description: Use a full option polling functionality to get the answers you need. YOP Poll is the perfect, easy to use poll plugin for your WordPress website.
6
+ Version: 6.3.2
7
  Author: yourownprogrammer
8
  Author URI: https://yop-poll.com
9
  License: GPL2
11
  Domain Path: /languages
12
  Text Domain: yop-poll
13
  */
14
+ define ( 'YOP_POLL_VERSION', '6.3.2' );
15
  define ( 'YOP_POLL_URL', plugin_dir_url( __FILE__ ) );
16
  define ( 'YOP_POLL_PATH', plugin_dir_path( __FILE__ ) );
17
  define ( 'YOP_POLL_TEST_MODE', false );