Yasr – Yet Another Stars Rating - Version 0.6.5

Version Description

  • New feature! If you use Visitors Rating stars set, you can now see statistics by hovering the mouse on the text [Total: X Average:Y]
  • Bug fixes (stars changing size) in [yasr_visitor_rating]
  • Fixed typos
  • Huge cleanups
Download this release

Release Info

Developer Dudo
Plugin Icon 128x128 Yasr – Yet Another Stars Rating
Version 0.6.5
Comparing to
See all releases

Code changes from version 0.6.3 to 0.6.5

css/yasr-admin.css CHANGED
@@ -187,7 +187,6 @@ div.bigstars .rateit-selected
187
 
188
  /*** End metabox overall rating ***/
189
 
190
-
191
  #multi_rating_table
192
  {
193
  vertical-align: text-top;
187
 
188
  /*** End metabox overall rating ***/
189
 
 
190
  #multi_rating_table
191
  {
192
  vertical-align: text-top;
css/yasr.css CHANGED
@@ -21,6 +21,7 @@
21
  background: url('../img/star.png');
22
  height: 16px;
23
  outline: none;
 
24
  }
25
 
26
  .rateit .rateit-range * {
@@ -198,21 +199,73 @@ div.bigstars .rateit-selected
198
  #yasr_visitor_votes {
199
  font-size: small;
200
  display: inline-block;
201
- vertical-align: top;
202
  }
203
 
204
  .yasr-total-average-text {
205
- display: block;
206
  }
207
 
208
  .yasr-total-average-text-medium {
209
  display: block;
210
  }
211
 
212
- .yasr-visitor-shortcode-small-already-voted-text{
213
  display: block;
 
 
214
  }
215
 
216
  .yasr-highest-rated-text{
217
  display: block;
218
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  background: url('../img/star.png');
22
  height: 16px;
23
  outline: none;
24
+ vertical-align: -5px;
25
  }
26
 
27
  .rateit .rateit-range * {
199
  #yasr_visitor_votes {
200
  font-size: small;
201
  display: inline-block;
 
202
  }
203
 
204
  .yasr-total-average-text {
205
+ display: inline-block;
206
  }
207
 
208
  .yasr-total-average-text-medium {
209
  display: block;
210
  }
211
 
212
+ .yasr-small-block-bold {
213
  display: block;
214
+ font-weight: bold;
215
+ font-size: 12px;
216
  }
217
 
218
  .yasr-highest-rated-text{
219
  display: block;
220
+ }
221
+
222
+ /*** Progress bar***/
223
+
224
+ .yasr-progress-bars-container {
225
+ width: 100%;
226
+ }
227
+
228
+ .yasr-progress-bar-row-container {
229
+ padding-top: 2px;
230
+ padding-left: 10px;
231
+ padding-right: 10px;
232
+ display: block;
233
+ }
234
+
235
+ .yasr-progress-bar-name {
236
+ width: 15%;
237
+ text-align: left;
238
+ margin-right: 5px;
239
+ }
240
+
241
+ .yasr-progress-bar {
242
+ display: inline-block;
243
+ width: 60%;
244
+ height: 15px;
245
+ margin-right: 5px;
246
+ border-bottom-right-radius: 0px;
247
+ border-bottom-left-radius: 0px;
248
+ border-top-right-radius: 0px;
249
+ border-top-left-radius: 0px;
250
+ margin-bottom: -2px;
251
+ }
252
+
253
+ /*I must use this to remove radius on top left.*/
254
+
255
+ .yasr-progress-bar > .ui-progressbar-value {
256
+ border-bottom-left-radius: 0px;
257
+ border-top-left-radius: 0px;
258
+ background: #FFD700;
259
+ }
260
+
261
+
262
+ /*** End progress bar ***/
263
+
264
+
265
+ /*** Tooltip ***/
266
+
267
+ .yasr-visitors-stats-tooltip {
268
+ width: 250px;
269
+ }
270
+
271
+ /*** Tooltip ***/
js/yasr-admin.js CHANGED
@@ -686,4 +686,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
686
 
687
  });
688
 
689
- /****** End yasr db functions ******/
686
 
687
  });
688
 
689
+ /****** End yasr db functions ******/
js/yasr-front.js CHANGED
@@ -1,22 +1,4 @@
1
- /*
2
-
3
- Copyright 2014 Dario Curvino (email : d.curvino@tiscali.it)
4
-
5
- This program is free software: you can redistribute it and/or modify
6
- it under the terms of the GNU General Public License as published by
7
- the Free Software Foundation, either version 2 of the License, or
8
- (at your option) any later version.
9
-
10
- This program is distributed in the hope that it will be useful,
11
- but WITHOUT ANY WARRANTY; without even the implied warranty of
12
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
- GNU General Public License for more details.
14
-
15
- You should have received a copy of the GNU General Public License
16
- along with this program. If not, see <http://www.gnu.org/licenses/>
17
- */
18
-
19
- /****** Yasr shortcode functions file ******/
20
 
21
  function yasrVisitorsVotes (tooltipValues, postid, ajaxurl, size, loggedUser, voteIfUserAlredyRated, votes, votesNumber, loaderHtml, nonceVisitor) {
22
 
@@ -66,7 +48,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
66
  //Check if has cookie or vote in db
67
  if (jQuery.cookie(cookiename) || voteIfUserAlredyRated != '') {
68
 
69
- jQuery('#yasr-rateit-visitor-votes-logged-rated').on('rated', function() {
70
 
71
  var el = jQuery(this);
72
  var value = el.rateit('value');
@@ -152,16 +134,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
152
  } //End function default_rating_shortcode
153
 
154
  } //End function yasr visitor votes
155
-
156
 
157
  function yasrMostOrHighestRatedChart (ajaxurl) {
158
 
159
  //Link do nothing
160
- jQuery('#yasr_multi_chart_link_to_nothing').on("click", function () {
161
 
162
  return false; // prevent default click action from happening!
163
 
164
- });
165
 
166
  //By default, hide the highest rated chart
167
  jQuery('#yasr-highest-rated-posts').hide();
@@ -175,20 +157,82 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
175
 
176
  return false; // prevent default click action from happening!
177
 
178
- });
179
 
180
- //Vice versa
181
- jQuery('#yasr_multi_chart_most').on("click", function () {
182
 
183
- jQuery('#yasr-highest-rated-posts').hide();
184
 
185
- jQuery('#yasr-most-rated-posts').show();
186
 
187
- return false; // prevent default click action from happening!
188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  });
190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  }
192
 
193
 
194
- /****** Yasr shortcode functions file ******/
 
1
+ /****** Yasr shortcode page ******/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  function yasrVisitorsVotes (tooltipValues, postid, ajaxurl, size, loggedUser, voteIfUserAlredyRated, votes, votesNumber, loaderHtml, nonceVisitor) {
4
 
48
  //Check if has cookie or vote in db
49
  if (jQuery.cookie(cookiename) || voteIfUserAlredyRated != '') {
50
 
51
+ jQuery('#yasr_rateit_visitor_votes').on('rated', function() {
52
 
53
  var el = jQuery(this);
54
  var value = el.rateit('value');
134
  } //End function default_rating_shortcode
135
 
136
  } //End function yasr visitor votes
137
+
138
 
139
  function yasrMostOrHighestRatedChart (ajaxurl) {
140
 
141
  //Link do nothing
142
+ /*jQuery('#yasr_multi_chart_link_to_nothing').on("click", function () {
143
 
144
  return false; // prevent default click action from happening!
145
 
146
+ });*/
147
 
148
  //By default, hide the highest rated chart
149
  jQuery('#yasr-highest-rated-posts').hide();
157
 
158
  return false; // prevent default click action from happening!
159
 
160
+ });
161
 
162
+ //Vice versa
163
+ jQuery('#yasr_multi_chart_most').on("click", function () {
164
 
165
+ jQuery('#yasr-highest-rated-posts').hide();
166
 
167
+ jQuery('#yasr-most-rated-posts').show();
168
 
169
+ return false; // prevent default click action from happening!
170
 
171
+ });
172
+
173
+ }
174
+
175
+
176
+ /****** End Yasr shortcode page ******/
177
+
178
+
179
+ /****** Tooltip function ******/
180
+
181
+ //used in ajax page
182
+ function yasrDrawProgressBars (valueProgressbar) {
183
+
184
+ var i = null;
185
+
186
+ var j = 0; //This is for the array
187
+
188
+ for (i=5; i>0; i--) {
189
+
190
+ jQuery( "#yasr-progress-bar-" + i).progressbar({
191
+ value: valueProgressbar[j]
192
  });
193
 
194
+ j=j+1;
195
+
196
+ }
197
+
198
+
199
+ }
200
+
201
+ //used in shortcode page and ajax page
202
+ function yasrDrawTipsProgress(postid, ajaxurl) {
203
+
204
+ var varTipsContent = null;
205
+
206
+ jQuery('.yasr-total-average-text').tooltip({
207
+
208
+ position: { my: 'center bottom' , at: 'center top-10' },
209
+ tooltipClass: "yasr-visitors-stats-tooltip",
210
+ content: function(tipsContent) {
211
+
212
+ if (!varTipsContent) {
213
+
214
+ var data = {
215
+ action: 'yasr_stats_visitors_votes',
216
+ post_id: postid
217
+ }
218
+
219
+ jQuery.post(ajaxurl, data, function(response) {
220
+ varTipsContent = response;
221
+ tipsContent(response);
222
+ });
223
+
224
+ }
225
+
226
+ else {
227
+ return varTipsContent;
228
+ }
229
+
230
+ }
231
+
232
+ });
233
+
234
  }
235
 
236
 
237
+
238
+ /****** End tooltipfunction ******/
languages/yasr-de_DE.mo CHANGED
Binary file
languages/yasr-de_DE.po CHANGED
@@ -2,10 +2,11 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Yet Another Stars Rating v0.6.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-10-11 16:08+0100\n"
6
- "PO-Revision-Date: 2014-10-11 16:12+0100\n"
7
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,14 +17,13 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: .\n"
18
  "X-Textdomain-Support: yes\n"
19
- "Language: de_DE\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
  "X-Poedit-SearchPath-1: ../lib\n"
22
 
23
  # @ yasr
24
- #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
25
- #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:196
26
- #: ../lib/yasr-ajax-functions.php:335 ../lib/yasr-ajax-functions.php:717
27
  msgid "You do not have sufficient permissions to access this page."
28
  msgstr ""
29
  "Du verfügst nicht über ausreichende Berechtigungen um auf diese Seite "
@@ -50,68 +50,72 @@ msgstr "Multi-Sets"
50
  msgid "Styles"
51
  msgstr "Styles"
52
 
 
 
 
 
53
  # @ default
54
- #: ../yasr-settings-page.php:94 ../yasr-settings-page.php:277
55
  msgid "Save"
56
  msgstr "Speichern"
57
 
58
  # @ yasr
59
- #: ../yasr-settings-page.php:114
60
  msgid "Import Gd Star Rating"
61
  msgstr "Importiere Gd Star Rating Daten"
62
 
63
  # @ yasr
64
- #: ../yasr-settings-page.php:115
65
  msgid "I've found a previous installation of Gd Star Rating."
66
  msgstr "Es wurde eine Installation von Gd Star Rating gefunden."
67
 
68
  # @ yasr
69
- #: ../yasr-settings-page.php:115
70
  msgid "Do you want proceed to import data?"
71
  msgstr "Willst du mit dem Import der Daten fortfahren?"
72
 
73
  # @ yasr
74
- #: ../yasr-settings-page.php:117
75
  msgid "Yes, Begin Import"
76
  msgstr "Ja, Import starten"
77
 
78
  # @ default
79
- #: ../yasr-settings-page.php:121
80
  msgid "Click on Proceed to import Gd Star Rating data."
81
  msgstr "Klicke auf Fortfahren um die Gd Star Rating Daten zu importieren."
82
 
83
  # @ yasr
84
- #: ../yasr-settings-page.php:124 ../yasr-settings-page.php:157
85
  msgid "Proceed"
86
  msgstr "Fortfahren"
87
 
88
  # @ yasr
89
- #: ../yasr-settings-page.php:146
90
  msgid "Manage GD Star Data"
91
  msgstr "Verwalte GD Star Rating Daten"
92
 
93
  # @ default
94
- #: ../yasr-settings-page.php:147
95
  msgid "Gd Star Rating has been already imported."
96
  msgstr "Gd Star Rating Daten wurden bereits importiert."
97
 
98
  # @ yasr
99
- #: ../yasr-settings-page.php:148
100
  msgid "If you wish you can import it again, but"
101
  msgstr "Du kannst die Daten erneut importieren, aber"
102
 
103
  # @ yasr
104
- #: ../yasr-settings-page.php:148
105
  msgid "you will lose all data you've collect since the import!"
106
  msgstr "dann gehen alle gesammelten Daten seit dem letzten Import verloren!"
107
 
108
  # @ default
109
- #: ../yasr-settings-page.php:150
110
  msgid "Ok, Import Again"
111
  msgstr "Ok, erneut importieren"
112
 
113
  # @ default
114
- #: ../yasr-settings-page.php:154
115
  msgid ""
116
  "Click on Proceed to import again Gd Star Rating data. This may take a while!"
117
  msgstr ""
@@ -119,12 +123,12 @@ msgstr ""
119
  "kann eine Weile dauern!"
120
 
121
  # @ yasr
122
- #: ../yasr-settings-page.php:195
123
  msgid "Manage Multi Set"
124
  msgstr "Multi-Sets verwalten"
125
 
126
  # @ yasr
127
- #: ../yasr-settings-page.php:199
128
  msgid "What is a Multi Set?"
129
  msgstr "Was ist ein Multi-Set?"
130
 
@@ -168,14 +172,14 @@ msgid "Close this message"
168
  msgstr "Nachricht schließen"
169
 
170
  # @ yasr
171
- #: ../yasr-settings-page.php:247 ../lib/yasr-functions.php:446
172
- #: ../lib/yasr-functions.php:472
173
  msgid "Donations"
174
  msgstr "Spenden"
175
 
176
  # @ yasr
177
- #: ../yasr-settings-page.php:249 ../lib/yasr-functions.php:448
178
- #: ../lib/yasr-functions.php:474
179
  msgid ""
180
  "If you have found this plugin useful, please consider making a donation to "
181
  "help support future development. Your support will be much appreciated. "
@@ -185,8 +189,8 @@ msgstr ""
185
  "Wert."
186
 
187
  # @ yasr
188
- #: ../yasr-settings-page.php:251 ../lib/yasr-functions.php:450
189
- #: ../lib/yasr-functions.php:476
190
  msgid "Thank you!"
191
  msgstr "Herzlichen Dank!"
192
 
@@ -199,7 +203,7 @@ msgstr "Wähle ein Multi-Set aus"
199
  # @ yasr
200
  #: ../yasr-metabox-multiple-rating.php:46
201
  #: ../yasr-metabox-overall-rating.php:193
202
- #: ../lib/yasr-settings-functions.php:431
203
  msgid "Select"
204
  msgstr "Auswählen"
205
 
@@ -210,7 +214,7 @@ msgstr "Gib eine Bewertung ab"
210
 
211
  # @ yasr
212
  #: ../yasr-metabox-overall-rating.php:71
213
- #: ../lib/yasr-shortcode-functions.php:147
214
  msgid "Loading, please wait"
215
  msgstr "Wird geladen, bitte warten"
216
 
@@ -234,144 +238,154 @@ msgstr ""
234
  "ein, wo die Bewertung angezeigt werden soll."
235
 
236
  # @ yasr
237
- #: ../lib/yasr-shortcode-functions.php:192
238
- #: ../lib/yasr-shortcode-functions.php:204
239
- #: ../lib/yasr-shortcode-functions.php:209
240
- #: ../lib/yasr-shortcode-functions.php:224
241
- #: ../lib/yasr-shortcode-functions.php:229
242
- #: ../lib/yasr-shortcode-functions.php:249
243
- #: ../lib/yasr-shortcode-functions.php:260
244
- #: ../lib/yasr-shortcode-functions.php:266
245
- #: ../lib/yasr-shortcode-functions.php:281
246
- #: ../lib/yasr-shortcode-functions.php:287 ../lib/yasr-ajax-functions.php:979
247
- #: ../lib/yasr-ajax-functions.php:987 ../lib/yasr-ajax-functions.php:1086
248
- #: ../lib/yasr-ajax-functions.php:1094 ../lib/yasr-ajax-functions.php:1102
249
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
250
  msgid "Total: "
251
  msgstr "Gesamt:"
252
 
253
  # @ yasr
254
- #: ../lib/yasr-shortcode-functions.php:192
255
- #: ../lib/yasr-shortcode-functions.php:204
256
- #: ../lib/yasr-shortcode-functions.php:209
257
- #: ../lib/yasr-shortcode-functions.php:224
258
- #: ../lib/yasr-shortcode-functions.php:229
259
- #: ../lib/yasr-shortcode-functions.php:249
260
- #: ../lib/yasr-shortcode-functions.php:260
261
- #: ../lib/yasr-shortcode-functions.php:266
262
- #: ../lib/yasr-shortcode-functions.php:281
263
- #: ../lib/yasr-shortcode-functions.php:287
264
  #, fuzzy
265
  msgid "Average: "
266
  msgstr "Durchschnitt: "
267
 
268
  # @ yasr
269
- #: ../lib/yasr-shortcode-functions.php:193
270
- #: ../lib/yasr-shortcode-functions.php:250
271
  msgid "You've already voted this article with"
272
  msgstr "Du hast hier bewertet mit "
273
 
274
  # @ yasr
275
- #: ../lib/yasr-shortcode-functions.php:282
276
- #: ../lib/yasr-shortcode-functions.php:288
277
  msgid "You must sign to vote"
278
  msgstr "Um eine Bewertung abzugeben musst du angemeldet sein"
279
 
280
  # @ yasr
281
- #: ../lib/yasr-shortcode-functions.php:312
282
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
283
  msgstr "'schlecht', 'mangelhaft', 'OK', 'gut', 'super'"
284
 
285
  # @ yasr
286
- #: ../lib/yasr-shortcode-functions.php:419
287
  msgid "Rating"
288
  msgstr "Bewertung"
289
 
290
  # @ yasr
291
- #: ../lib/yasr-shortcode-functions.php:433
292
  msgid "You don't have any votes stored"
293
  msgstr "Es sind keine Autoren-Bewertungen gespeichert"
294
 
295
- #: ../lib/yasr-shortcode-functions.php:469
296
- #: ../lib/yasr-shortcode-functions.php:507
297
  msgid "Post / Page"
298
  msgstr "Beitrag / Seite"
299
 
300
  # @ yasr
301
- #: ../lib/yasr-shortcode-functions.php:470
302
- #: ../lib/yasr-shortcode-functions.php:508
303
  msgid "Order By"
304
  msgstr "sortieren nach"
305
 
306
  # @ yasr
307
- #: ../lib/yasr-shortcode-functions.php:470
308
- #: ../lib/yasr-shortcode-functions.php:508
309
  msgid "Most Rated"
310
  msgstr "meist bewertet"
311
 
312
  # @ yasr
313
- #: ../lib/yasr-shortcode-functions.php:470
314
- #: ../lib/yasr-shortcode-functions.php:508
315
  msgid "Highest Rated"
316
  msgstr "höchste Bewertung"
317
 
318
  # @ yasr
319
- #: ../lib/yasr-shortcode-functions.php:487
320
- #: ../lib/yasr-shortcode-functions.php:522
321
  msgid "Total:"
322
  msgstr "Gesamt:"
323
 
324
  # @ yasr
325
- #: ../lib/yasr-shortcode-functions.php:487
326
- #: ../lib/yasr-shortcode-functions.php:522
327
  msgid "Average"
328
  msgstr "Durchschnitt: "
329
 
330
  # @ yasr
331
- #: ../lib/yasr-shortcode-functions.php:499
332
- #: ../lib/yasr-shortcode-functions.php:534
 
 
 
 
 
333
  msgid "You've not enought data"
334
  msgstr "Sie haben nicht genug Daten"
335
 
336
  # @ default
337
- #: ../lib/yasr-shortcode-functions.php:619
 
338
  msgid ""
339
- "Problem while retriving the top 5 most active reviewers. Did you published "
340
  "any review?"
341
  msgstr ""
342
  "Es ist ein Problem beim Laden der 5 aktivsten Review-Autoren aufgetreten. "
343
  "Hast du bereits ein Review veröffentlicht?"
344
 
345
  # @ default
346
- #: ../lib/yasr-shortcode-functions.php:687
 
347
  msgid ""
348
- "Problem while retriving the top 10 active users chart. Are you sure you have "
349
- "votes to show?"
350
  msgstr ""
351
  "Es ist ein Problem beim Laden der Top 10 aktivsten Nutzer aufgetreten. Sind "
352
  "Sie sicher das Bewertungen vorhanden sind?"
353
 
354
  # @ yasr
355
- #: ../lib/yasr-settings-functions.php:50
356
  msgid "General settings"
357
  msgstr "Allgemeine Einstellungen"
358
 
359
  # @ yasr
360
- #: ../lib/yasr-settings-functions.php:51
361
  msgid "Auto insert options"
362
  msgstr "Anzeigeoptionen"
363
 
364
  # @ yasr
365
- #: ../lib/yasr-settings-functions.php:52
366
  msgid "Show \"Overall Rating\" in Home Page?"
367
  msgstr "Gesamtbewertung auf der Startseite anzeigen?"
368
 
369
  # @ yasr
370
- #: ../lib/yasr-settings-functions.php:53
371
  msgid "Insert custom text to show before / after stars"
372
  msgstr ""
373
  "Benutzerdefinierter Text der vor oder nach der Bewertung angezeigt wird"
374
 
 
 
 
 
375
  # @ yasr
376
  #: ../lib/yasr-settings-functions.php:54
377
  msgid "Which color scheme do you want to use?"
@@ -400,18 +414,20 @@ msgstr "Bewertung automatisch einfügen?"
400
  # @ yasr
401
  #: ../lib/yasr-settings-functions.php:74
402
  #: ../lib/yasr-settings-functions.php:143
403
- #: ../lib/yasr-settings-functions.php:162
404
- #: ../lib/yasr-settings-functions.php:195
405
- #: ../lib/yasr-settings-functions.php:227
 
406
  msgid "Yes"
407
  msgstr "Ja"
408
 
409
  # @ yasr
410
  #: ../lib/yasr-settings-functions.php:88
411
  #: ../lib/yasr-settings-functions.php:148
412
- #: ../lib/yasr-settings-functions.php:167
413
- #: ../lib/yasr-settings-functions.php:200
414
- #: ../lib/yasr-settings-functions.php:232
 
415
  msgid "No"
416
  msgstr "Nein"
417
 
@@ -426,7 +442,7 @@ msgid "Overall Rating / Author Rating"
426
  msgstr "Gesamtbewertung (Autorenbewertung)"
427
 
428
  # @ yasr
429
- #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
430
  msgid "Visitor Votes"
431
  msgstr "Besucherbewertung"
432
 
@@ -456,20 +472,20 @@ msgid "Size"
456
  msgstr "Größe"
457
 
458
  # @ yasr
459
- #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
460
- #: ../lib/yasr-ajax-functions.php:470
461
  msgid "Small"
462
  msgstr "Klein"
463
 
464
  # @ yasr
465
- #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
466
- #: ../lib/yasr-ajax-functions.php:471
467
  msgid "Medium"
468
  msgstr "Mittel"
469
 
470
  # @ yasr
471
- #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
472
- #: ../lib/yasr-ajax-functions.php:472
473
  msgid "Large"
474
  msgstr "Groß"
475
 
@@ -479,24 +495,24 @@ msgid "Exclude Pages?"
479
  msgstr "Seiten ausschließen?"
480
 
481
  # @ yasr
482
- #: ../lib/yasr-settings-functions.php:159
483
  msgid "Use only in custom post types?"
484
  msgstr "Verwenden Sie nur in benutzerdefinierte Post-Typen?"
485
 
486
  # @ yasr
487
- #: ../lib/yasr-settings-functions.php:171
488
  msgid "You see this because you use custom post types."
489
  msgstr "Sie sehen dies, weil Sie benutzerdefinierte Post-Typen verwenden."
490
 
491
  # @ yasr
492
- #: ../lib/yasr-settings-functions.php:173
493
  msgid "If you want to use auto insert only in custom post types, choose Yes"
494
  msgstr ""
495
  "Wenn Sie Auto-Insert nur in benutzerdefinierten Post-Typen verwenden "
496
  "möchten, wählen Sie Ja."
497
 
498
  # @ yasr
499
- #: ../lib/yasr-settings-functions.php:204
500
  msgid ""
501
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
502
  "article or page, but also in pages like Home Page, category pages or "
@@ -507,74 +523,80 @@ msgstr ""
507
  "Kategorien und im Archiv."
508
 
509
  # @ yasr
510
- #: ../lib/yasr-settings-functions.php:237
511
  msgid "Custom text to display before Overall Rating"
512
  msgstr "Benutzerdefinierter Text vor der Gesamtbewertung (Autorenbewertung)"
513
 
514
  # @ yasr
515
- #: ../lib/yasr-settings-functions.php:242
516
  msgid "Custom text to display before Visitor Rating"
517
  msgstr "Benutzerdefinierter Text vor der Besucherbewertung"
518
 
519
  # @ yasr
520
- #: ../lib/yasr-settings-functions.php:247
521
  msgid "Custom text to display when a non logged user has already rated"
522
  msgstr ""
523
  "Benutzerdefinierter Text der angezeigt wird, wenn ein nicht angemeldeter "
524
  "Besucher bereits eine Bewertung abgegeben hat"
525
 
 
 
 
 
 
 
526
  # @ yasr
527
- #: ../lib/yasr-settings-functions.php:263
528
  msgid "Light"
529
  msgstr "Hell"
530
 
531
  # @ yasr
532
- #: ../lib/yasr-settings-functions.php:268
533
  msgid "Dark"
534
  msgstr "Dunkel"
535
 
536
  # @ yasr
537
- #: ../lib/yasr-settings-functions.php:273
538
  msgid "Preview"
539
  msgstr "Vorschau"
540
 
541
  # @ yasr
542
- #: ../lib/yasr-settings-functions.php:278
543
  msgid "Light theme"
544
  msgstr "Helles Theme"
545
 
546
  # @ yasr
547
- #: ../lib/yasr-settings-functions.php:283
548
  msgid "Dark Theme"
549
  msgstr "Dunkles Theme"
550
 
551
  # @ yasr
552
- #: ../lib/yasr-settings-functions.php:301
553
  msgid "Allow only logged-in users"
554
  msgstr "Nur angemeldete Besucher erlauben"
555
 
556
  # @ yasr
557
- #: ../lib/yasr-settings-functions.php:305
558
  msgid "Allow everybody (logged in and anonymous)"
559
  msgstr "Jedem erlauben (angemeldete und anonyme Besucher)"
560
 
561
  # @ yasr
562
- #: ../lib/yasr-settings-functions.php:322
563
  msgid "Review Rating"
564
  msgstr "Review Rating (Autorenbewertung)"
565
 
566
  # @ yasr
567
- #: ../lib/yasr-settings-functions.php:326
568
  msgid "Aggregate Rating"
569
  msgstr "Aggregate Rating (Besucherbewertung)"
570
 
571
  # @ yasr
572
- #: ../lib/yasr-settings-functions.php:331
573
  msgid "What is this?"
574
  msgstr "Was ist das?"
575
 
576
  # @ yasr
577
- #: ../lib/yasr-settings-functions.php:336
578
  msgid ""
579
  "If you select \"Review Rating\", your site will be indexed from search "
580
  "engines like this: "
@@ -583,7 +605,7 @@ msgstr ""
583
  "aussehen:"
584
 
585
  # @ yasr
586
- #: ../lib/yasr-settings-functions.php:341
587
  msgid ""
588
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
589
  "this"
@@ -592,22 +614,22 @@ msgstr ""
592
  "wie folgt aus:"
593
 
594
  # @ yasr
595
- #: ../lib/yasr-settings-functions.php:359
596
  msgid "Stars"
597
  msgstr "Sterne"
598
 
599
  # @ yasr
600
- #: ../lib/yasr-settings-functions.php:363
601
  msgid "Numbers"
602
  msgstr "Zahlen"
603
 
604
  # @ yasr
605
- #: ../lib/yasr-settings-functions.php:376
606
  msgid "Add New Multiple Set"
607
  msgstr "Neues Multi-Set hinzufügen"
608
 
609
  # @ yasr
610
- #: ../lib/yasr-settings-functions.php:377
611
  msgid ""
612
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
613
  "characters"
@@ -616,57 +638,58 @@ msgstr ""
616
  "Zeichen lang sein"
617
 
618
  # @ yasr
619
- #: ../lib/yasr-settings-functions.php:380
620
  msgid "Name"
621
  msgstr "Name"
622
 
623
  # @ yasr
624
- #: ../lib/yasr-settings-functions.php:385
625
- msgid "You can insert up to nine element"
 
626
  msgstr "Du kannst bis zu 9 Elemente einfügen"
627
 
628
  # @ yasr
629
- #: ../lib/yasr-settings-functions.php:390
630
  msgid "Element "
631
  msgstr "Element"
632
 
633
  # @ yasr
634
- #: ../lib/yasr-settings-functions.php:400
635
  msgid "Create New Set"
636
  msgstr "Neues Multi-Set anlegen"
637
 
638
  # @ yasr
639
- #: ../lib/yasr-settings-functions.php:421
640
- #: ../lib/yasr-settings-functions.php:453
641
  msgid "Manage Multiple Set"
642
  msgstr "Verschiedene Multi-Sets verwalten"
643
 
644
  # @ yasr
645
- #: ../lib/yasr-settings-functions.php:423
646
  msgid "Wich set do you want to edit or remove?"
647
  msgstr "Welches Multi-Set möchtest du bearbeiten oder löschen?"
648
 
649
  # @ yasr
650
- #: ../lib/yasr-settings-functions.php:463
651
- #: ../lib/yasr-settings-functions.php:581
652
  msgid "Field name"
653
  msgstr "Feldname"
654
 
655
  # @ yasr
656
- #: ../lib/yasr-settings-functions.php:467
657
- #: ../lib/yasr-settings-functions.php:585
658
  msgid "Remove"
659
  msgstr "Entfernen"
660
 
661
  # @ yasr
662
- #: ../lib/yasr-settings-functions.php:509
663
- #: ../lib/yasr-settings-functions.php:627
664
  msgid "Remove whole set?"
665
  msgstr "Komplettes Multi-Set entfernen?"
666
 
667
  # @ yasr
668
- #: ../lib/yasr-settings-functions.php:522
669
- #: ../lib/yasr-settings-functions.php:640
670
  msgid ""
671
  "If you remove something you will remove all the votes for that set or field. "
672
  "This operation CAN'T BE undone."
@@ -675,57 +698,57 @@ msgstr ""
675
  "Element gelöscht. Dies kann nicht rückgängig gemacht werden."
676
 
677
  # @ yasr
678
- #: ../lib/yasr-settings-functions.php:529
679
- #: ../lib/yasr-settings-functions.php:647
680
  msgid "You can use up to 9 elements"
681
  msgstr "Du kannst bist zu 9 Elementen nutzen"
682
 
683
  # @ yasr
684
- #: ../lib/yasr-settings-functions.php:531
685
- #: ../lib/yasr-settings-functions.php:649
686
  msgid "Add element"
687
  msgstr "Element hinzufügen"
688
 
689
  # @ yasr
690
- #: ../lib/yasr-settings-functions.php:533
691
- #: ../lib/yasr-settings-functions.php:651
692
  msgid "Save changes"
693
  msgstr "Änderungen speichern"
694
 
695
  # @ yasr
696
- #: ../lib/yasr-settings-functions.php:543
697
  msgid "No Multiple Set were found"
698
  msgstr "Keine Multi-Sets gefunden"
699
 
700
  # @ yasr
701
- #: ../lib/yasr-settings-functions.php:793
702
- #: ../lib/yasr-settings-functions.php:1061
703
  msgid "Settings Saved"
704
  msgstr "Einstellungen gespeichert"
705
 
706
  # @ yasr
707
- #: ../lib/yasr-settings-functions.php:798
708
  msgid "Something goes wrong trying insert set field name. Please report it"
709
  msgstr ""
710
  "Beim einfügen des Multi-Set Feldnamens ist etwas schief gelaufen. Bitte "
711
  "melde das Problem"
712
 
713
  # @ yasr
714
- #: ../lib/yasr-settings-functions.php:804
715
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
716
  msgstr ""
717
  "Beim Einfügen des Multi-Sets ist etwas schief gelaufen. Bitte melde das "
718
  "Problem"
719
 
720
  # @ yasr
721
- #: ../lib/yasr-settings-functions.php:879
722
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
723
  msgstr ""
724
  "Beim Löschen des Multi-Sets ist etwas schief gelaufen. Bitte melde das "
725
  "Problem"
726
 
727
  # @ yasr
728
- #: ../lib/yasr-settings-functions.php:925
729
  msgid ""
730
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
731
  msgstr ""
@@ -733,7 +756,7 @@ msgstr ""
733
  "das Problem"
734
 
735
  # @ yasr
736
- #: ../lib/yasr-settings-functions.php:989
737
  msgid ""
738
  "Something goes wrong trying to update a Multi Set's element. Please report it"
739
  msgstr ""
@@ -741,7 +764,7 @@ msgstr ""
741
  "Bitte melde das Problem"
742
 
743
  # @ yasr
744
- #: ../lib/yasr-settings-functions.php:1046
745
  msgid ""
746
  "Something goes wrong trying to insert set field name in edit form. Please "
747
  "report it"
@@ -750,17 +773,17 @@ msgstr ""
750
  "melde das Problem"
751
 
752
  # @ yasr
753
- #: ../lib/yasr-settings-functions.php:1089
754
  msgid "Style Options"
755
  msgstr "Style Optionen"
756
 
757
  # @ yasr
758
- #: ../lib/yasr-settings-functions.php:1090
759
  msgid "Custom CSS Styles"
760
  msgstr "Benutzerdefiniertes CSS"
761
 
762
  # @ yasr
763
- #: ../lib/yasr-settings-functions.php:1095
764
  msgid ""
765
  "Please use text area below to write your own CSS styles to override the "
766
  "default ones."
@@ -769,103 +792,116 @@ msgstr ""
769
  "CSS-Code zu überschreiben."
770
 
771
  # @ yasr
772
- #: ../lib/yasr-settings-functions.php:1097
773
  msgid "Leave it blank if you don't know what you're doing"
774
  msgstr " Lasse diesen Bereich leer, wenn du nicht weißt was du tust."
775
 
776
  # @ yasr
777
- #: ../lib/yasr-settings-functions.php:1130
778
  msgid "No previous Gd Star Rating installation was found"
779
  msgstr "Es wurde keine Gd Star Ratings Installation gefunden"
780
 
781
  # @ yasr
782
- #: ../lib/yasr-db-functions.php:267 ../lib/yasr-ajax-functions.php:729
783
- msgid "No Recenet votes yet"
 
784
  msgstr "Keine kürzlichen Bewertungen"
785
 
786
  # @ default
787
- #: ../lib/yasr-db-functions.php:282 ../lib/yasr-ajax-functions.php:742
788
  msgid "anonymous"
789
  msgstr "Anonym"
790
 
791
  # @ yasr
792
- #: ../lib/yasr-db-functions.php:305 ../lib/yasr-ajax-functions.php:765
793
  msgid "Ip address"
794
  msgstr "IP-Adresse"
795
 
796
  # @ yasr
797
- #: ../lib/yasr-db-functions.php:346 ../lib/yasr-ajax-functions.php:806
798
  msgid "Pages"
799
  msgstr "Seiten"
800
 
801
  # @ yasr
802
- #: ../lib/yasr-functions.php:86 ../lib/yasr-functions.php:87
803
  msgid "Yet Another Stars Rating: Settings"
804
  msgstr "Yet Another Stars Rating"
805
 
806
  # @ yasr
807
- #: ../lib/yasr-functions.php:130 ../lib/yasr-functions.php:137
808
  msgid "Overall Rating"
809
  msgstr "Gesamtbewertung"
810
 
811
  # @ yasr
812
- #: ../lib/yasr-functions.php:131
813
  msgid "Yet Another Stars Rating: Multiple set"
814
  msgstr "Yet Another Stars Rating: Multi-Sets"
815
 
816
  # @ default
817
- #: ../lib/yasr-functions.php:147
818
  msgid "You don't have enought privileges to insert Overall Rating"
819
  msgstr ""
820
  "Du hast nicht die notwendigen Berechtigungen um eine Gesamtbewertung "
821
  "einzufügen"
822
 
823
  # @ default
824
- #: ../lib/yasr-functions.php:157
825
  msgid "You don't have enought privileges to insert Multi Set"
826
  msgstr ""
827
  "Du hast nicht die notwendigen Berechtigungen um ein Multi-Set einzufügen"
828
 
829
  # @ yasr
830
- #: ../lib/yasr-functions.php:292
831
  msgid " reviewed by "
832
  msgstr " geschrieben von "
833
 
834
  # @ yasr
835
- #: ../lib/yasr-functions.php:293
836
  msgid " on "
837
  msgstr " am"
838
 
839
  # @ yasr
840
- #: ../lib/yasr-functions.php:294
841
  msgid " rated "
842
  msgstr " ist bewertet mit "
843
 
844
- #: ../lib/yasr-functions.php:294
845
  msgid " of"
846
  msgstr ""
847
 
848
  # @ yasr
849
- #: ../lib/yasr-functions.php:349
850
  msgid " written by "
851
  msgstr "geschrieben von "
852
 
853
  # @ yasr
854
- #: ../lib/yasr-functions.php:351
855
  #, fuzzy
856
  msgid " average rating "
857
  msgstr " durchschnittsbewertung"
858
 
859
  # @ yasr
860
- #: ../lib/yasr-functions.php:352
861
  msgid " user ratings"
862
  msgstr " Besucherbewertungen"
863
 
864
  # @ yasr
865
- #: ../lib/yasr-functions.php:458 ../lib/yasr-functions.php:485
866
  msgid "Follow YASR official site!"
867
  msgstr "Folgen Sie Yasr offiziellen Website!"
868
 
 
 
 
 
 
 
 
 
 
 
 
 
869
  # @ yasr
870
  #: ../lib/yasr-ajax-functions.php:101
871
  #, fuzzy
@@ -879,7 +915,7 @@ msgid "You've reset the vote"
879
  msgstr "Um eine Bewertung abzugeben musst du angemeldet sein"
880
 
881
  # @ yasr
882
- #: ../lib/yasr-ajax-functions.php:170
883
  msgid ""
884
  "There was an error while trying to insert the review type. Please report it"
885
  msgstr ""
@@ -887,162 +923,162 @@ msgstr ""
887
  "melden Sie es."
888
 
889
  # @ yasr
890
- #: ../lib/yasr-ajax-functions.php:207
891
  msgid "Choose a vote for each element"
892
  msgstr "Wähle eine Bewertung für jedes Element"
893
 
894
  # @ yasr
895
- #: ../lib/yasr-ajax-functions.php:263 ../lib/yasr-ajax-functions.php:306
896
  msgid "Remember to insert this shortcode"
897
  msgstr "Diesen Shortcode"
898
 
899
  # @ yasr
900
- #: ../lib/yasr-ajax-functions.php:265 ../lib/yasr-ajax-functions.php:308
901
  msgid "where you want to display this multi set"
902
  msgstr "an der Stelle einfügen, wo das Multi-Set angezeigt werden soll."
903
 
904
  # @ yasr
905
- #: ../lib/yasr-ajax-functions.php:273
906
  msgid "Choose a vote for every element"
907
  msgstr "Wähle eine Bewertung für jedes Element"
908
 
909
  # @ yasr
910
- #: ../lib/yasr-ajax-functions.php:432
911
  msgid "Main"
912
  msgstr "Allgemein"
913
 
914
  # @ yasr
915
- #: ../lib/yasr-ajax-functions.php:433
916
  msgid "Charts"
917
  msgstr "Charts"
918
 
919
  # @ yasr
920
- #: ../lib/yasr-ajax-functions.php:435
921
  msgid "Read the doc"
922
  msgstr "Lese die Dokumentation"
923
 
924
  # @ yasr
925
- #: ../lib/yasr-ajax-functions.php:444
926
  msgid "Overall Rating / Review"
927
  msgstr "Gesamtbewertung (Autorenbewertung)"
928
 
929
  # @ yasr
930
- #: ../lib/yasr-ajax-functions.php:446
931
  msgid "Insert Overall Rating"
932
  msgstr "Gesamtbewertung einfügen"
933
 
934
  # @ yasr
935
- #: ../lib/yasr-ajax-functions.php:447
936
  msgid "Insert Overall Rating / Review for this post"
937
  msgstr "Gesamtbewertung der Review-Autoren einfügen"
938
 
939
  # @ yasr
940
- #: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
941
  msgid "Choose Size"
942
  msgstr "Größe wählen"
943
 
944
  # @ yasr
945
- #: ../lib/yasr-ajax-functions.php:464
946
  msgid "Insert Visitor Votes"
947
  msgstr "Besucherbewertung einfügen"
948
 
949
  # @ yasr
950
- #: ../lib/yasr-ajax-functions.php:465
951
  msgid "Insert the ability for your visitor to vote"
952
  msgstr "Besucher dürfen Bewertungen abgeben"
953
 
954
  # @ yasr
955
- #: ../lib/yasr-ajax-functions.php:482
956
  msgid "If you want to insert a Multi Set, pick one:"
957
  msgstr "Vorhandene Multi-Sets"
958
 
959
  # @ yasr
960
- #: ../lib/yasr-ajax-functions.php:488
961
  msgid "Choose wich set you want to insert."
962
  msgstr "Wähle das einzufügende Multi-Set."
963
 
964
  # @ yasr
965
- #: ../lib/yasr-ajax-functions.php:496
966
  msgid "Insert Multiset:"
967
  msgstr "Multi-Set einfügen:"
968
 
969
  # @ yasr
970
- #: ../lib/yasr-ajax-functions.php:499
971
  msgid "Insert Multiple Set"
972
  msgstr "Multi-Set einfügen"
973
 
974
  # @ yasr
975
- #: ../lib/yasr-ajax-functions.php:500
976
  msgid "Insert multiple set in this post ?"
977
  msgstr "Multi-Set in Artikel/Seite einfügen?"
978
 
979
  # @ yasr
980
- #: ../lib/yasr-ajax-functions.php:515
981
  msgid "Ranking reviews"
982
  msgstr "Rang Bewertungen"
983
 
984
  # @ yasr
985
- #: ../lib/yasr-ajax-functions.php:516
986
  msgid "Insert Ranking reviews"
987
  msgstr "Rang Bewertungen einfügen"
988
 
989
  # @ yasr
990
- #: ../lib/yasr-ajax-functions.php:517
991
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
992
  msgstr "Top 10 Bewertung für [yasr_overall_rating] shortcode einfügen."
993
 
994
  # @ yasr
995
- #: ../lib/yasr-ajax-functions.php:521
996
  msgid "Users' ranking"
997
  msgstr "Benutzer-Rangliste"
998
 
999
  # @ yasr
1000
- #: ../lib/yasr-ajax-functions.php:522
1001
  msgid "Insert Users ranking"
1002
  msgstr "Benutzer-Rangliste einfügen"
1003
 
1004
  # @ yasr
1005
- #: ../lib/yasr-ajax-functions.php:523
1006
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
1007
  msgstr "Top 10 Wertung für [yasr_visitor_votes] shortcode einfügen"
1008
 
1009
  # @ yasr
1010
- #: ../lib/yasr-ajax-functions.php:527
1011
  msgid "Most active reviewers"
1012
  msgstr "Top 5 Aktivste Review-Autoren"
1013
 
1014
  # @ yasr
1015
- #: ../lib/yasr-ajax-functions.php:528
1016
  msgid "Insert Most Active Reviewers"
1017
  msgstr "meist aktivste Bewertungen einfügen"
1018
 
1019
  # @ yasr
1020
- #: ../lib/yasr-ajax-functions.php:529
1021
  msgid "Insert Top 5 active reviewers"
1022
  msgstr "Füge die Top 5 aktivsten Review-Autoren ein"
1023
 
1024
  # @ yasr
1025
- #: ../lib/yasr-ajax-functions.php:533
1026
  msgid "Most Active Users"
1027
  msgstr "meist aktivste Benutzer"
1028
 
1029
  # @ yasr
1030
- #: ../lib/yasr-ajax-functions.php:534
1031
  msgid "Insert Most Active Users"
1032
  msgstr "Aktivste Benutzer einfügen."
1033
 
1034
  # @ yasr
1035
- #: ../lib/yasr-ajax-functions.php:535
1036
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
1037
  msgstr "Top 10 Abstimmer [yasr_visitor_votes] Shortcode einfügen"
1038
 
1039
  # @ yasr
1040
- #: ../lib/yasr-ajax-functions.php:587
1041
  msgid "Reviews and Visitor Votes have been successfull imported."
1042
  msgstr "Autoren-Reviews und Bewertungen wurden erfolgreich importiert."
1043
 
1044
  # @ yasr
1045
- #: ../lib/yasr-ajax-functions.php:593
1046
  msgid ""
1047
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
1048
  "THIS MAY TAKE A WHILE!"
@@ -1051,88 +1087,93 @@ msgstr ""
1051
  "KANN ETWAS DAUERN!"
1052
 
1053
  # @ yasr
1054
- #: ../lib/yasr-ajax-functions.php:595
1055
  msgid "Proceed Step 2"
1056
  msgstr "Fortfahren mit Schritt 2"
1057
 
1058
  # @ yasr
1059
- #: ../lib/yasr-ajax-functions.php:602
1060
  msgid "Something goes wrong! Refresh the page and try again!"
1061
  msgstr ""
1062
  "Hier ist etwas schief gelaufen. Bitte aktualisiere die Seite und versuche es "
1063
  "noch einmal!"
1064
 
1065
  # @ yasr
1066
- #: ../lib/yasr-ajax-functions.php:631
1067
  msgid "I've found Multiple Set! Importing..."
1068
  msgstr "Es wurden verschiedene Multi-Sets gefunden. Starte Import..."
1069
 
1070
  # @ yasr
1071
- #: ../lib/yasr-ajax-functions.php:640
1072
  msgid "Multi Set's name has been successfull imported."
1073
  msgstr "Multi-Set Namen wurden erfolgreich importiert."
1074
 
1075
  # @ yasr
1076
- #: ../lib/yasr-ajax-functions.php:642
1077
  msgid "Now I'm going to import Multi Set data"
1078
  msgstr "Der Import der Multi-Set Daten wird gestartet"
1079
 
1080
  # @ yasr
1081
- #: ../lib/yasr-ajax-functions.php:653
1082
  msgid "All votes has been successfull imported."
1083
  msgstr "Alle Bewertungen wurden erfolgreich importiert."
1084
 
1085
  # @ yasr
1086
- #: ../lib/yasr-ajax-functions.php:655
1087
  msgid "Done"
1088
  msgstr "Fertig"
1089
 
1090
  # @ yasr
1091
- #: ../lib/yasr-ajax-functions.php:660
1092
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
1093
  msgstr ""
1094
  "Es wurden Multi-Set Bewertungen gefunden aber diese konnten nicht in der "
1095
  "Datenbank gespeichert werden."
1096
 
1097
  # @ yasr
1098
- #: ../lib/yasr-ajax-functions.php:668
1099
  msgid "I've found Multi Set but with no data"
1100
  msgstr "Das Multi-Set wurde gefunden aber es sind keine Daten vorhanden"
1101
 
1102
  # @ yasr
1103
- #: ../lib/yasr-ajax-functions.php:677
1104
  msgid "I've found Multi Sets names but I couldn't insert into db"
1105
  msgstr ""
1106
  "Multi-Set Namen wurde gefunden aber konnten nicht in die Datenbank "
1107
  "importiert werden"
1108
 
1109
  # @ yasr
1110
- #: ../lib/yasr-ajax-functions.php:685
1111
  msgid "Multisets were not found. Imported is done!"
1112
  msgstr "Kein Multi-Set gefunden aber Import war erfolgreich!"
1113
 
1114
  # @ yasr
1115
- #: ../lib/yasr-ajax-functions.php:888 ../lib/yasr-ajax-functions.php:1017
 
 
 
 
 
1116
  msgid "Error: you can't vote 0"
1117
  msgstr "Fehler: Sie können nicht 0 wählen!"
1118
 
1119
  # @ yasr
1120
- #: ../lib/yasr-ajax-functions.php:979 ../lib/yasr-ajax-functions.php:987
1121
  msgid "Average rating"
1122
  msgstr "Durchschnittsbewertung"
1123
 
1124
  # @ yasr
1125
- #: ../lib/yasr-ajax-functions.php:980 ../lib/yasr-ajax-functions.php:988
1126
  msgid "Vote Saved"
1127
  msgstr "Bewertung gespeichert"
1128
 
1129
  # @ yasr
1130
- #: ../lib/yasr-ajax-functions.php:1087 ../lib/yasr-ajax-functions.php:1095
1131
- #: ../lib/yasr-ajax-functions.php:1103
1132
- msgid "Vote Updated"
1133
  msgstr "Bewertung aktualisiert"
1134
 
1135
  # @ yasr
1136
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
1137
  msgid "Average "
1138
  msgstr "Durchschnitt: "
2
  msgstr ""
3
  "Project-Id-Version: Yet Another Stars Rating v0.6.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-10-28 18:43+0100\n"
6
+ "PO-Revision-Date: 2014-10-28 18:44+0100\n"
7
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
8
  "Language-Team: \n"
9
+ "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Textdomain-Support: yes\n"
 
20
  "X-Poedit-SearchPath-0: ..\n"
21
  "X-Poedit-SearchPath-1: ../lib\n"
22
 
23
  # @ yasr
24
+ #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:109
25
+ #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:192
26
+ #: ../lib/yasr-ajax-functions.php:331 ../lib/yasr-ajax-functions.php:732
27
  msgid "You do not have sufficient permissions to access this page."
28
  msgstr ""
29
  "Du verfügst nicht über ausreichende Berechtigungen um auf diese Seite "
50
  msgid "Styles"
51
  msgstr "Styles"
52
 
53
+ #: ../yasr-settings-page.php:79
54
+ msgid "Pro Features!"
55
+ msgstr ""
56
+
57
  # @ default
58
+ #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:276
59
  msgid "Save"
60
  msgstr "Speichern"
61
 
62
  # @ yasr
63
+ #: ../yasr-settings-page.php:116
64
  msgid "Import Gd Star Rating"
65
  msgstr "Importiere Gd Star Rating Daten"
66
 
67
  # @ yasr
68
+ #: ../yasr-settings-page.php:117
69
  msgid "I've found a previous installation of Gd Star Rating."
70
  msgstr "Es wurde eine Installation von Gd Star Rating gefunden."
71
 
72
  # @ yasr
73
+ #: ../yasr-settings-page.php:117
74
  msgid "Do you want proceed to import data?"
75
  msgstr "Willst du mit dem Import der Daten fortfahren?"
76
 
77
  # @ yasr
78
+ #: ../yasr-settings-page.php:119
79
  msgid "Yes, Begin Import"
80
  msgstr "Ja, Import starten"
81
 
82
  # @ default
83
+ #: ../yasr-settings-page.php:123
84
  msgid "Click on Proceed to import Gd Star Rating data."
85
  msgstr "Klicke auf Fortfahren um die Gd Star Rating Daten zu importieren."
86
 
87
  # @ yasr
88
+ #: ../yasr-settings-page.php:126 ../yasr-settings-page.php:159
89
  msgid "Proceed"
90
  msgstr "Fortfahren"
91
 
92
  # @ yasr
93
+ #: ../yasr-settings-page.php:148
94
  msgid "Manage GD Star Data"
95
  msgstr "Verwalte GD Star Rating Daten"
96
 
97
  # @ default
98
+ #: ../yasr-settings-page.php:149
99
  msgid "Gd Star Rating has been already imported."
100
  msgstr "Gd Star Rating Daten wurden bereits importiert."
101
 
102
  # @ yasr
103
+ #: ../yasr-settings-page.php:150
104
  msgid "If you wish you can import it again, but"
105
  msgstr "Du kannst die Daten erneut importieren, aber"
106
 
107
  # @ yasr
108
+ #: ../yasr-settings-page.php:150
109
  msgid "you will lose all data you've collect since the import!"
110
  msgstr "dann gehen alle gesammelten Daten seit dem letzten Import verloren!"
111
 
112
  # @ default
113
+ #: ../yasr-settings-page.php:152
114
  msgid "Ok, Import Again"
115
  msgstr "Ok, erneut importieren"
116
 
117
  # @ default
118
+ #: ../yasr-settings-page.php:156
119
  msgid ""
120
  "Click on Proceed to import again Gd Star Rating data. This may take a while!"
121
  msgstr ""
123
  "kann eine Weile dauern!"
124
 
125
  # @ yasr
126
+ #: ../yasr-settings-page.php:196
127
  msgid "Manage Multi Set"
128
  msgstr "Multi-Sets verwalten"
129
 
130
  # @ yasr
131
+ #: ../yasr-settings-page.php:200
132
  msgid "What is a Multi Set?"
133
  msgstr "Was ist ein Multi-Set?"
134
 
172
  msgstr "Nachricht schließen"
173
 
174
  # @ yasr
175
+ #: ../yasr-settings-page.php:246 ../lib/yasr-functions.php:457
176
+ #: ../lib/yasr-functions.php:483
177
  msgid "Donations"
178
  msgstr "Spenden"
179
 
180
  # @ yasr
181
+ #: ../yasr-settings-page.php:248 ../lib/yasr-functions.php:459
182
+ #: ../lib/yasr-functions.php:485
183
  msgid ""
184
  "If you have found this plugin useful, please consider making a donation to "
185
  "help support future development. Your support will be much appreciated. "
189
  "Wert."
190
 
191
  # @ yasr
192
+ #: ../yasr-settings-page.php:250 ../lib/yasr-functions.php:461
193
+ #: ../lib/yasr-functions.php:487
194
  msgid "Thank you!"
195
  msgstr "Herzlichen Dank!"
196
 
203
  # @ yasr
204
  #: ../yasr-metabox-multiple-rating.php:46
205
  #: ../yasr-metabox-overall-rating.php:193
206
+ #: ../lib/yasr-settings-functions.php:468
207
  msgid "Select"
208
  msgstr "Auswählen"
209
 
214
 
215
  # @ yasr
216
  #: ../yasr-metabox-overall-rating.php:71
217
+ #: ../lib/yasr-shortcode-functions.php:169
218
  msgid "Loading, please wait"
219
  msgstr "Wird geladen, bitte warten"
220
 
238
  "ein, wo die Bewertung angezeigt werden soll."
239
 
240
  # @ yasr
241
+ #: ../lib/yasr-shortcode-functions.php:214
242
+ #: ../lib/yasr-shortcode-functions.php:226
243
+ #: ../lib/yasr-shortcode-functions.php:231
244
+ #: ../lib/yasr-shortcode-functions.php:246
245
+ #: ../lib/yasr-shortcode-functions.php:251
246
+ #: ../lib/yasr-shortcode-functions.php:271
247
+ #: ../lib/yasr-shortcode-functions.php:282
248
+ #: ../lib/yasr-shortcode-functions.php:288
249
+ #: ../lib/yasr-shortcode-functions.php:303
250
+ #: ../lib/yasr-shortcode-functions.php:309 ../lib/yasr-ajax-functions.php:994
251
+ #: ../lib/yasr-ajax-functions.php:1002 ../lib/yasr-ajax-functions.php:1117
252
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
 
253
  msgid "Total: "
254
  msgstr "Gesamt:"
255
 
256
  # @ yasr
257
+ #: ../lib/yasr-shortcode-functions.php:214
258
+ #: ../lib/yasr-shortcode-functions.php:226
259
+ #: ../lib/yasr-shortcode-functions.php:231
260
+ #: ../lib/yasr-shortcode-functions.php:246
261
+ #: ../lib/yasr-shortcode-functions.php:251
262
+ #: ../lib/yasr-shortcode-functions.php:271
263
+ #: ../lib/yasr-shortcode-functions.php:282
264
+ #: ../lib/yasr-shortcode-functions.php:288
265
+ #: ../lib/yasr-shortcode-functions.php:303
266
+ #: ../lib/yasr-shortcode-functions.php:309
267
  #, fuzzy
268
  msgid "Average: "
269
  msgstr "Durchschnitt: "
270
 
271
  # @ yasr
272
+ #: ../lib/yasr-shortcode-functions.php:215
273
+ #: ../lib/yasr-shortcode-functions.php:272 ../lib/yasr-ajax-functions.php:1191
274
  msgid "You've already voted this article with"
275
  msgstr "Du hast hier bewertet mit "
276
 
277
  # @ yasr
278
+ #: ../lib/yasr-shortcode-functions.php:304
279
+ #: ../lib/yasr-shortcode-functions.php:310
280
  msgid "You must sign to vote"
281
  msgstr "Um eine Bewertung abzugeben musst du angemeldet sein"
282
 
283
  # @ yasr
284
+ #: ../lib/yasr-shortcode-functions.php:334
285
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
286
  msgstr "'schlecht', 'mangelhaft', 'OK', 'gut', 'super'"
287
 
288
  # @ yasr
289
+ #: ../lib/yasr-shortcode-functions.php:448
290
  msgid "Rating"
291
  msgstr "Bewertung"
292
 
293
  # @ yasr
294
+ #: ../lib/yasr-shortcode-functions.php:462
295
  msgid "You don't have any votes stored"
296
  msgstr "Es sind keine Autoren-Bewertungen gespeichert"
297
 
298
+ #: ../lib/yasr-shortcode-functions.php:498
299
+ #: ../lib/yasr-shortcode-functions.php:536
300
  msgid "Post / Page"
301
  msgstr "Beitrag / Seite"
302
 
303
  # @ yasr
304
+ #: ../lib/yasr-shortcode-functions.php:499
305
+ #: ../lib/yasr-shortcode-functions.php:537
306
  msgid "Order By"
307
  msgstr "sortieren nach"
308
 
309
  # @ yasr
310
+ #: ../lib/yasr-shortcode-functions.php:499
311
+ #: ../lib/yasr-shortcode-functions.php:537
312
  msgid "Most Rated"
313
  msgstr "meist bewertet"
314
 
315
  # @ yasr
316
+ #: ../lib/yasr-shortcode-functions.php:499
317
+ #: ../lib/yasr-shortcode-functions.php:537
318
  msgid "Highest Rated"
319
  msgstr "höchste Bewertung"
320
 
321
  # @ yasr
322
+ #: ../lib/yasr-shortcode-functions.php:516
323
+ #: ../lib/yasr-shortcode-functions.php:551
324
  msgid "Total:"
325
  msgstr "Gesamt:"
326
 
327
  # @ yasr
328
+ #: ../lib/yasr-shortcode-functions.php:516
329
+ #: ../lib/yasr-shortcode-functions.php:551
330
  msgid "Average"
331
  msgstr "Durchschnitt: "
332
 
333
  # @ yasr
334
+ #: ../lib/yasr-shortcode-functions.php:528
335
+ #, fuzzy
336
+ msgid "You've not enough data"
337
+ msgstr "Sie haben nicht genug Daten"
338
+
339
+ # @ yasr
340
+ #: ../lib/yasr-shortcode-functions.php:563
341
  msgid "You've not enought data"
342
  msgstr "Sie haben nicht genug Daten"
343
 
344
  # @ default
345
+ #: ../lib/yasr-shortcode-functions.php:648
346
+ #, fuzzy
347
  msgid ""
348
+ "Problem while retrieving the top 5 most active reviewers. Did you publish "
349
  "any review?"
350
  msgstr ""
351
  "Es ist ein Problem beim Laden der 5 aktivsten Review-Autoren aufgetreten. "
352
  "Hast du bereits ein Review veröffentlicht?"
353
 
354
  # @ default
355
+ #: ../lib/yasr-shortcode-functions.php:716
356
+ #, fuzzy
357
  msgid ""
358
+ "Problem while retrieving the top 10 active users chart. Are you sure you "
359
+ "have votes to show?"
360
  msgstr ""
361
  "Es ist ein Problem beim Laden der Top 10 aktivsten Nutzer aufgetreten. Sind "
362
  "Sie sicher das Bewertungen vorhanden sind?"
363
 
364
  # @ yasr
365
+ #: ../lib/yasr-settings-functions.php:49
366
  msgid "General settings"
367
  msgstr "Allgemeine Einstellungen"
368
 
369
  # @ yasr
370
+ #: ../lib/yasr-settings-functions.php:50
371
  msgid "Auto insert options"
372
  msgstr "Anzeigeoptionen"
373
 
374
  # @ yasr
375
+ #: ../lib/yasr-settings-functions.php:51
376
  msgid "Show \"Overall Rating\" in Home Page?"
377
  msgstr "Gesamtbewertung auf der Startseite anzeigen?"
378
 
379
  # @ yasr
380
+ #: ../lib/yasr-settings-functions.php:52
381
  msgid "Insert custom text to show before / after stars"
382
  msgstr ""
383
  "Benutzerdefinierter Text der vor oder nach der Bewertung angezeigt wird"
384
 
385
+ #: ../lib/yasr-settings-functions.php:53
386
+ msgid "Do you want show stats for visitors votes?"
387
+ msgstr ""
388
+
389
  # @ yasr
390
  #: ../lib/yasr-settings-functions.php:54
391
  msgid "Which color scheme do you want to use?"
414
  # @ yasr
415
  #: ../lib/yasr-settings-functions.php:74
416
  #: ../lib/yasr-settings-functions.php:143
417
+ #: ../lib/yasr-settings-functions.php:161
418
+ #: ../lib/yasr-settings-functions.php:193
419
+ #: ../lib/yasr-settings-functions.php:225
420
+ #: ../lib/yasr-settings-functions.php:276
421
  msgid "Yes"
422
  msgstr "Ja"
423
 
424
  # @ yasr
425
  #: ../lib/yasr-settings-functions.php:88
426
  #: ../lib/yasr-settings-functions.php:148
427
+ #: ../lib/yasr-settings-functions.php:166
428
+ #: ../lib/yasr-settings-functions.php:198
429
+ #: ../lib/yasr-settings-functions.php:230
430
+ #: ../lib/yasr-settings-functions.php:281
431
  msgid "No"
432
  msgstr "Nein"
433
 
442
  msgstr "Gesamtbewertung (Autorenbewertung)"
443
 
444
  # @ yasr
445
+ #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:458
446
  msgid "Visitor Votes"
447
  msgstr "Besucherbewertung"
448
 
472
  msgstr "Größe"
473
 
474
  # @ yasr
475
+ #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:448
476
+ #: ../lib/yasr-ajax-functions.php:466
477
  msgid "Small"
478
  msgstr "Klein"
479
 
480
  # @ yasr
481
+ #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:449
482
+ #: ../lib/yasr-ajax-functions.php:467
483
  msgid "Medium"
484
  msgstr "Mittel"
485
 
486
  # @ yasr
487
+ #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:450
488
+ #: ../lib/yasr-ajax-functions.php:468
489
  msgid "Large"
490
  msgstr "Groß"
491
 
495
  msgstr "Seiten ausschließen?"
496
 
497
  # @ yasr
498
+ #: ../lib/yasr-settings-functions.php:158
499
  msgid "Use only in custom post types?"
500
  msgstr "Verwenden Sie nur in benutzerdefinierte Post-Typen?"
501
 
502
  # @ yasr
503
+ #: ../lib/yasr-settings-functions.php:170
504
  msgid "You see this because you use custom post types."
505
  msgstr "Sie sehen dies, weil Sie benutzerdefinierte Post-Typen verwenden."
506
 
507
  # @ yasr
508
+ #: ../lib/yasr-settings-functions.php:172
509
  msgid "If you want to use auto insert only in custom post types, choose Yes"
510
  msgstr ""
511
  "Wenn Sie Auto-Insert nur in benutzerdefinierten Post-Typen verwenden "
512
  "möchten, wählen Sie Ja."
513
 
514
  # @ yasr
515
+ #: ../lib/yasr-settings-functions.php:202
516
  msgid ""
517
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
518
  "article or page, but also in pages like Home Page, category pages or "
523
  "Kategorien und im Archiv."
524
 
525
  # @ yasr
526
+ #: ../lib/yasr-settings-functions.php:235
527
  msgid "Custom text to display before Overall Rating"
528
  msgstr "Benutzerdefinierter Text vor der Gesamtbewertung (Autorenbewertung)"
529
 
530
  # @ yasr
531
+ #: ../lib/yasr-settings-functions.php:240
532
  msgid "Custom text to display before Visitor Rating"
533
  msgstr "Benutzerdefinierter Text vor der Besucherbewertung"
534
 
535
  # @ yasr
536
+ #: ../lib/yasr-settings-functions.php:245
537
  msgid "Custom text to display when a non logged user has already rated"
538
  msgstr ""
539
  "Benutzerdefinierter Text der angezeigt wird, wenn ein nicht angemeldeter "
540
  "Besucher bereits eine Bewertung abgegeben hat"
541
 
542
+ #: ../lib/yasr-settings-functions.php:259
543
+ msgid ""
544
+ "Seems like you've imported gd star rating in the past, but then deleted the "
545
+ "logs table. For now, you can't enable statistics"
546
+ msgstr ""
547
+
548
  # @ yasr
549
+ #: ../lib/yasr-settings-functions.php:301
550
  msgid "Light"
551
  msgstr "Hell"
552
 
553
  # @ yasr
554
+ #: ../lib/yasr-settings-functions.php:306
555
  msgid "Dark"
556
  msgstr "Dunkel"
557
 
558
  # @ yasr
559
+ #: ../lib/yasr-settings-functions.php:311
560
  msgid "Preview"
561
  msgstr "Vorschau"
562
 
563
  # @ yasr
564
+ #: ../lib/yasr-settings-functions.php:316
565
  msgid "Light theme"
566
  msgstr "Helles Theme"
567
 
568
  # @ yasr
569
+ #: ../lib/yasr-settings-functions.php:321
570
  msgid "Dark Theme"
571
  msgstr "Dunkles Theme"
572
 
573
  # @ yasr
574
+ #: ../lib/yasr-settings-functions.php:339
575
  msgid "Allow only logged-in users"
576
  msgstr "Nur angemeldete Besucher erlauben"
577
 
578
  # @ yasr
579
+ #: ../lib/yasr-settings-functions.php:343
580
  msgid "Allow everybody (logged in and anonymous)"
581
  msgstr "Jedem erlauben (angemeldete und anonyme Besucher)"
582
 
583
  # @ yasr
584
+ #: ../lib/yasr-settings-functions.php:360
585
  msgid "Review Rating"
586
  msgstr "Review Rating (Autorenbewertung)"
587
 
588
  # @ yasr
589
+ #: ../lib/yasr-settings-functions.php:364
590
  msgid "Aggregate Rating"
591
  msgstr "Aggregate Rating (Besucherbewertung)"
592
 
593
  # @ yasr
594
+ #: ../lib/yasr-settings-functions.php:369
595
  msgid "What is this?"
596
  msgstr "Was ist das?"
597
 
598
  # @ yasr
599
+ #: ../lib/yasr-settings-functions.php:374
600
  msgid ""
601
  "If you select \"Review Rating\", your site will be indexed from search "
602
  "engines like this: "
605
  "aussehen:"
606
 
607
  # @ yasr
608
+ #: ../lib/yasr-settings-functions.php:379
609
  msgid ""
610
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
611
  "this"
614
  "wie folgt aus:"
615
 
616
  # @ yasr
617
+ #: ../lib/yasr-settings-functions.php:397
618
  msgid "Stars"
619
  msgstr "Sterne"
620
 
621
  # @ yasr
622
+ #: ../lib/yasr-settings-functions.php:401
623
  msgid "Numbers"
624
  msgstr "Zahlen"
625
 
626
  # @ yasr
627
+ #: ../lib/yasr-settings-functions.php:413
628
  msgid "Add New Multiple Set"
629
  msgstr "Neues Multi-Set hinzufügen"
630
 
631
  # @ yasr
632
+ #: ../lib/yasr-settings-functions.php:414
633
  msgid ""
634
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
635
  "characters"
638
  "Zeichen lang sein"
639
 
640
  # @ yasr
641
+ #: ../lib/yasr-settings-functions.php:417
642
  msgid "Name"
643
  msgstr "Name"
644
 
645
  # @ yasr
646
+ #: ../lib/yasr-settings-functions.php:422
647
+ #, fuzzy
648
+ msgid "You can insert up to nine elements"
649
  msgstr "Du kannst bis zu 9 Elemente einfügen"
650
 
651
  # @ yasr
652
+ #: ../lib/yasr-settings-functions.php:427
653
  msgid "Element "
654
  msgstr "Element"
655
 
656
  # @ yasr
657
+ #: ../lib/yasr-settings-functions.php:437
658
  msgid "Create New Set"
659
  msgstr "Neues Multi-Set anlegen"
660
 
661
  # @ yasr
662
+ #: ../lib/yasr-settings-functions.php:458
663
+ #: ../lib/yasr-settings-functions.php:490
664
  msgid "Manage Multiple Set"
665
  msgstr "Verschiedene Multi-Sets verwalten"
666
 
667
  # @ yasr
668
+ #: ../lib/yasr-settings-functions.php:460
669
  msgid "Wich set do you want to edit or remove?"
670
  msgstr "Welches Multi-Set möchtest du bearbeiten oder löschen?"
671
 
672
  # @ yasr
673
+ #: ../lib/yasr-settings-functions.php:500
674
+ #: ../lib/yasr-settings-functions.php:618
675
  msgid "Field name"
676
  msgstr "Feldname"
677
 
678
  # @ yasr
679
+ #: ../lib/yasr-settings-functions.php:504
680
+ #: ../lib/yasr-settings-functions.php:622
681
  msgid "Remove"
682
  msgstr "Entfernen"
683
 
684
  # @ yasr
685
+ #: ../lib/yasr-settings-functions.php:546
686
+ #: ../lib/yasr-settings-functions.php:664
687
  msgid "Remove whole set?"
688
  msgstr "Komplettes Multi-Set entfernen?"
689
 
690
  # @ yasr
691
+ #: ../lib/yasr-settings-functions.php:559
692
+ #: ../lib/yasr-settings-functions.php:677
693
  msgid ""
694
  "If you remove something you will remove all the votes for that set or field. "
695
  "This operation CAN'T BE undone."
698
  "Element gelöscht. Dies kann nicht rückgängig gemacht werden."
699
 
700
  # @ yasr
701
+ #: ../lib/yasr-settings-functions.php:566
702
+ #: ../lib/yasr-settings-functions.php:684
703
  msgid "You can use up to 9 elements"
704
  msgstr "Du kannst bist zu 9 Elementen nutzen"
705
 
706
  # @ yasr
707
+ #: ../lib/yasr-settings-functions.php:568
708
+ #: ../lib/yasr-settings-functions.php:686
709
  msgid "Add element"
710
  msgstr "Element hinzufügen"
711
 
712
  # @ yasr
713
+ #: ../lib/yasr-settings-functions.php:570
714
+ #: ../lib/yasr-settings-functions.php:688
715
  msgid "Save changes"
716
  msgstr "Änderungen speichern"
717
 
718
  # @ yasr
719
+ #: ../lib/yasr-settings-functions.php:580
720
  msgid "No Multiple Set were found"
721
  msgstr "Keine Multi-Sets gefunden"
722
 
723
  # @ yasr
724
+ #: ../lib/yasr-settings-functions.php:830
725
+ #: ../lib/yasr-settings-functions.php:1098
726
  msgid "Settings Saved"
727
  msgstr "Einstellungen gespeichert"
728
 
729
  # @ yasr
730
+ #: ../lib/yasr-settings-functions.php:835
731
  msgid "Something goes wrong trying insert set field name. Please report it"
732
  msgstr ""
733
  "Beim einfügen des Multi-Set Feldnamens ist etwas schief gelaufen. Bitte "
734
  "melde das Problem"
735
 
736
  # @ yasr
737
+ #: ../lib/yasr-settings-functions.php:841
738
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
739
  msgstr ""
740
  "Beim Einfügen des Multi-Sets ist etwas schief gelaufen. Bitte melde das "
741
  "Problem"
742
 
743
  # @ yasr
744
+ #: ../lib/yasr-settings-functions.php:916
745
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
746
  msgstr ""
747
  "Beim Löschen des Multi-Sets ist etwas schief gelaufen. Bitte melde das "
748
  "Problem"
749
 
750
  # @ yasr
751
+ #: ../lib/yasr-settings-functions.php:962
752
  msgid ""
753
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
754
  msgstr ""
756
  "das Problem"
757
 
758
  # @ yasr
759
+ #: ../lib/yasr-settings-functions.php:1026
760
  msgid ""
761
  "Something goes wrong trying to update a Multi Set's element. Please report it"
762
  msgstr ""
764
  "Bitte melde das Problem"
765
 
766
  # @ yasr
767
+ #: ../lib/yasr-settings-functions.php:1083
768
  msgid ""
769
  "Something goes wrong trying to insert set field name in edit form. Please "
770
  "report it"
773
  "melde das Problem"
774
 
775
  # @ yasr
776
+ #: ../lib/yasr-settings-functions.php:1126
777
  msgid "Style Options"
778
  msgstr "Style Optionen"
779
 
780
  # @ yasr
781
+ #: ../lib/yasr-settings-functions.php:1127
782
  msgid "Custom CSS Styles"
783
  msgstr "Benutzerdefiniertes CSS"
784
 
785
  # @ yasr
786
+ #: ../lib/yasr-settings-functions.php:1132
787
  msgid ""
788
  "Please use text area below to write your own CSS styles to override the "
789
  "default ones."
792
  "CSS-Code zu überschreiben."
793
 
794
  # @ yasr
795
+ #: ../lib/yasr-settings-functions.php:1134
796
  msgid "Leave it blank if you don't know what you're doing"
797
  msgstr " Lasse diesen Bereich leer, wenn du nicht weißt was du tust."
798
 
799
  # @ yasr
800
+ #: ../lib/yasr-settings-functions.php:1167
801
  msgid "No previous Gd Star Rating installation was found"
802
  msgstr "Es wurde keine Gd Star Ratings Installation gefunden"
803
 
804
  # @ yasr
805
+ #: ../lib/yasr-db-functions.php:267
806
+ #, fuzzy
807
+ msgid "No recenet votes yet"
808
  msgstr "Keine kürzlichen Bewertungen"
809
 
810
  # @ default
811
+ #: ../lib/yasr-db-functions.php:282 ../lib/yasr-ajax-functions.php:757
812
  msgid "anonymous"
813
  msgstr "Anonym"
814
 
815
  # @ yasr
816
+ #: ../lib/yasr-db-functions.php:305 ../lib/yasr-ajax-functions.php:780
817
  msgid "Ip address"
818
  msgstr "IP-Adresse"
819
 
820
  # @ yasr
821
+ #: ../lib/yasr-db-functions.php:346 ../lib/yasr-ajax-functions.php:821
822
  msgid "Pages"
823
  msgstr "Seiten"
824
 
825
  # @ yasr
826
+ #: ../lib/yasr-functions.php:97 ../lib/yasr-functions.php:98
827
  msgid "Yet Another Stars Rating: Settings"
828
  msgstr "Yet Another Stars Rating"
829
 
830
  # @ yasr
831
+ #: ../lib/yasr-functions.php:141 ../lib/yasr-functions.php:148
832
  msgid "Overall Rating"
833
  msgstr "Gesamtbewertung"
834
 
835
  # @ yasr
836
+ #: ../lib/yasr-functions.php:142
837
  msgid "Yet Another Stars Rating: Multiple set"
838
  msgstr "Yet Another Stars Rating: Multi-Sets"
839
 
840
  # @ default
841
+ #: ../lib/yasr-functions.php:158
842
  msgid "You don't have enought privileges to insert Overall Rating"
843
  msgstr ""
844
  "Du hast nicht die notwendigen Berechtigungen um eine Gesamtbewertung "
845
  "einzufügen"
846
 
847
  # @ default
848
+ #: ../lib/yasr-functions.php:168
849
  msgid "You don't have enought privileges to insert Multi Set"
850
  msgstr ""
851
  "Du hast nicht die notwendigen Berechtigungen um ein Multi-Set einzufügen"
852
 
853
  # @ yasr
854
+ #: ../lib/yasr-functions.php:303
855
  msgid " reviewed by "
856
  msgstr " geschrieben von "
857
 
858
  # @ yasr
859
+ #: ../lib/yasr-functions.php:304
860
  msgid " on "
861
  msgstr " am"
862
 
863
  # @ yasr
864
+ #: ../lib/yasr-functions.php:305
865
  msgid " rated "
866
  msgstr " ist bewertet mit "
867
 
868
+ #: ../lib/yasr-functions.php:305
869
  msgid " of"
870
  msgstr ""
871
 
872
  # @ yasr
873
+ #: ../lib/yasr-functions.php:360
874
  msgid " written by "
875
  msgstr "geschrieben von "
876
 
877
  # @ yasr
878
+ #: ../lib/yasr-functions.php:362
879
  #, fuzzy
880
  msgid " average rating "
881
  msgstr " durchschnittsbewertung"
882
 
883
  # @ yasr
884
+ #: ../lib/yasr-functions.php:363
885
  msgid " user ratings"
886
  msgstr " Besucherbewertungen"
887
 
888
  # @ yasr
889
+ #: ../lib/yasr-functions.php:469 ../lib/yasr-functions.php:496
890
  msgid "Follow YASR official site!"
891
  msgstr "Folgen Sie Yasr offiziellen Website!"
892
 
893
+ #: ../lib/yasr-functions.php:515
894
+ msgid "Looking for more features?"
895
+ msgstr ""
896
+
897
+ #: ../lib/yasr-functions.php:516
898
+ msgid "Upgrade to yasr pro!"
899
+ msgstr ""
900
+
901
+ #: ../lib/yasr-functions.php:595
902
+ msgid "Not avaible yet"
903
+ msgstr ""
904
+
905
  # @ yasr
906
  #: ../lib/yasr-ajax-functions.php:101
907
  #, fuzzy
915
  msgstr "Um eine Bewertung abzugeben musst du angemeldet sein"
916
 
917
  # @ yasr
918
+ #: ../lib/yasr-ajax-functions.php:169
919
  msgid ""
920
  "There was an error while trying to insert the review type. Please report it"
921
  msgstr ""
923
  "melden Sie es."
924
 
925
  # @ yasr
926
+ #: ../lib/yasr-ajax-functions.php:203
927
  msgid "Choose a vote for each element"
928
  msgstr "Wähle eine Bewertung für jedes Element"
929
 
930
  # @ yasr
931
+ #: ../lib/yasr-ajax-functions.php:259 ../lib/yasr-ajax-functions.php:302
932
  msgid "Remember to insert this shortcode"
933
  msgstr "Diesen Shortcode"
934
 
935
  # @ yasr
936
+ #: ../lib/yasr-ajax-functions.php:261 ../lib/yasr-ajax-functions.php:304
937
  msgid "where you want to display this multi set"
938
  msgstr "an der Stelle einfügen, wo das Multi-Set angezeigt werden soll."
939
 
940
  # @ yasr
941
+ #: ../lib/yasr-ajax-functions.php:269
942
  msgid "Choose a vote for every element"
943
  msgstr "Wähle eine Bewertung für jedes Element"
944
 
945
  # @ yasr
946
+ #: ../lib/yasr-ajax-functions.php:428
947
  msgid "Main"
948
  msgstr "Allgemein"
949
 
950
  # @ yasr
951
+ #: ../lib/yasr-ajax-functions.php:429
952
  msgid "Charts"
953
  msgstr "Charts"
954
 
955
  # @ yasr
956
+ #: ../lib/yasr-ajax-functions.php:431
957
  msgid "Read the doc"
958
  msgstr "Lese die Dokumentation"
959
 
960
  # @ yasr
961
+ #: ../lib/yasr-ajax-functions.php:440
962
  msgid "Overall Rating / Review"
963
  msgstr "Gesamtbewertung (Autorenbewertung)"
964
 
965
  # @ yasr
966
+ #: ../lib/yasr-ajax-functions.php:442
967
  msgid "Insert Overall Rating"
968
  msgstr "Gesamtbewertung einfügen"
969
 
970
  # @ yasr
971
+ #: ../lib/yasr-ajax-functions.php:443
972
  msgid "Insert Overall Rating / Review for this post"
973
  msgstr "Gesamtbewertung der Review-Autoren einfügen"
974
 
975
  # @ yasr
976
+ #: ../lib/yasr-ajax-functions.php:446 ../lib/yasr-ajax-functions.php:464
977
  msgid "Choose Size"
978
  msgstr "Größe wählen"
979
 
980
  # @ yasr
981
+ #: ../lib/yasr-ajax-functions.php:460
982
  msgid "Insert Visitor Votes"
983
  msgstr "Besucherbewertung einfügen"
984
 
985
  # @ yasr
986
+ #: ../lib/yasr-ajax-functions.php:461
987
  msgid "Insert the ability for your visitor to vote"
988
  msgstr "Besucher dürfen Bewertungen abgeben"
989
 
990
  # @ yasr
991
+ #: ../lib/yasr-ajax-functions.php:478
992
  msgid "If you want to insert a Multi Set, pick one:"
993
  msgstr "Vorhandene Multi-Sets"
994
 
995
  # @ yasr
996
+ #: ../lib/yasr-ajax-functions.php:484
997
  msgid "Choose wich set you want to insert."
998
  msgstr "Wähle das einzufügende Multi-Set."
999
 
1000
  # @ yasr
1001
+ #: ../lib/yasr-ajax-functions.php:492
1002
  msgid "Insert Multiset:"
1003
  msgstr "Multi-Set einfügen:"
1004
 
1005
  # @ yasr
1006
+ #: ../lib/yasr-ajax-functions.php:495
1007
  msgid "Insert Multiple Set"
1008
  msgstr "Multi-Set einfügen"
1009
 
1010
  # @ yasr
1011
+ #: ../lib/yasr-ajax-functions.php:496
1012
  msgid "Insert multiple set in this post ?"
1013
  msgstr "Multi-Set in Artikel/Seite einfügen?"
1014
 
1015
  # @ yasr
1016
+ #: ../lib/yasr-ajax-functions.php:511
1017
  msgid "Ranking reviews"
1018
  msgstr "Rang Bewertungen"
1019
 
1020
  # @ yasr
1021
+ #: ../lib/yasr-ajax-functions.php:512
1022
  msgid "Insert Ranking reviews"
1023
  msgstr "Rang Bewertungen einfügen"
1024
 
1025
  # @ yasr
1026
+ #: ../lib/yasr-ajax-functions.php:513
1027
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
1028
  msgstr "Top 10 Bewertung für [yasr_overall_rating] shortcode einfügen."
1029
 
1030
  # @ yasr
1031
+ #: ../lib/yasr-ajax-functions.php:517
1032
  msgid "Users' ranking"
1033
  msgstr "Benutzer-Rangliste"
1034
 
1035
  # @ yasr
1036
+ #: ../lib/yasr-ajax-functions.php:518
1037
  msgid "Insert Users ranking"
1038
  msgstr "Benutzer-Rangliste einfügen"
1039
 
1040
  # @ yasr
1041
+ #: ../lib/yasr-ajax-functions.php:519
1042
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
1043
  msgstr "Top 10 Wertung für [yasr_visitor_votes] shortcode einfügen"
1044
 
1045
  # @ yasr
1046
+ #: ../lib/yasr-ajax-functions.php:523
1047
  msgid "Most active reviewers"
1048
  msgstr "Top 5 Aktivste Review-Autoren"
1049
 
1050
  # @ yasr
1051
+ #: ../lib/yasr-ajax-functions.php:524
1052
  msgid "Insert Most Active Reviewers"
1053
  msgstr "meist aktivste Bewertungen einfügen"
1054
 
1055
  # @ yasr
1056
+ #: ../lib/yasr-ajax-functions.php:525
1057
  msgid "Insert Top 5 active reviewers"
1058
  msgstr "Füge die Top 5 aktivsten Review-Autoren ein"
1059
 
1060
  # @ yasr
1061
+ #: ../lib/yasr-ajax-functions.php:529
1062
  msgid "Most Active Users"
1063
  msgstr "meist aktivste Benutzer"
1064
 
1065
  # @ yasr
1066
+ #: ../lib/yasr-ajax-functions.php:530
1067
  msgid "Insert Most Active Users"
1068
  msgstr "Aktivste Benutzer einfügen."
1069
 
1070
  # @ yasr
1071
+ #: ../lib/yasr-ajax-functions.php:531
1072
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
1073
  msgstr "Top 10 Abstimmer [yasr_visitor_votes] Shortcode einfügen"
1074
 
1075
  # @ yasr
1076
+ #: ../lib/yasr-ajax-functions.php:602
1077
  msgid "Reviews and Visitor Votes have been successfull imported."
1078
  msgstr "Autoren-Reviews und Bewertungen wurden erfolgreich importiert."
1079
 
1080
  # @ yasr
1081
+ #: ../lib/yasr-ajax-functions.php:608
1082
  msgid ""
1083
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
1084
  "THIS MAY TAKE A WHILE!"
1087
  "KANN ETWAS DAUERN!"
1088
 
1089
  # @ yasr
1090
+ #: ../lib/yasr-ajax-functions.php:610
1091
  msgid "Proceed Step 2"
1092
  msgstr "Fortfahren mit Schritt 2"
1093
 
1094
  # @ yasr
1095
+ #: ../lib/yasr-ajax-functions.php:617
1096
  msgid "Something goes wrong! Refresh the page and try again!"
1097
  msgstr ""
1098
  "Hier ist etwas schief gelaufen. Bitte aktualisiere die Seite und versuche es "
1099
  "noch einmal!"
1100
 
1101
  # @ yasr
1102
+ #: ../lib/yasr-ajax-functions.php:646
1103
  msgid "I've found Multiple Set! Importing..."
1104
  msgstr "Es wurden verschiedene Multi-Sets gefunden. Starte Import..."
1105
 
1106
  # @ yasr
1107
+ #: ../lib/yasr-ajax-functions.php:655
1108
  msgid "Multi Set's name has been successfull imported."
1109
  msgstr "Multi-Set Namen wurden erfolgreich importiert."
1110
 
1111
  # @ yasr
1112
+ #: ../lib/yasr-ajax-functions.php:657
1113
  msgid "Now I'm going to import Multi Set data"
1114
  msgstr "Der Import der Multi-Set Daten wird gestartet"
1115
 
1116
  # @ yasr
1117
+ #: ../lib/yasr-ajax-functions.php:668
1118
  msgid "All votes has been successfull imported."
1119
  msgstr "Alle Bewertungen wurden erfolgreich importiert."
1120
 
1121
  # @ yasr
1122
+ #: ../lib/yasr-ajax-functions.php:670
1123
  msgid "Done"
1124
  msgstr "Fertig"
1125
 
1126
  # @ yasr
1127
+ #: ../lib/yasr-ajax-functions.php:675
1128
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
1129
  msgstr ""
1130
  "Es wurden Multi-Set Bewertungen gefunden aber diese konnten nicht in der "
1131
  "Datenbank gespeichert werden."
1132
 
1133
  # @ yasr
1134
+ #: ../lib/yasr-ajax-functions.php:683
1135
  msgid "I've found Multi Set but with no data"
1136
  msgstr "Das Multi-Set wurde gefunden aber es sind keine Daten vorhanden"
1137
 
1138
  # @ yasr
1139
+ #: ../lib/yasr-ajax-functions.php:692
1140
  msgid "I've found Multi Sets names but I couldn't insert into db"
1141
  msgstr ""
1142
  "Multi-Set Namen wurde gefunden aber konnten nicht in die Datenbank "
1143
  "importiert werden"
1144
 
1145
  # @ yasr
1146
+ #: ../lib/yasr-ajax-functions.php:700
1147
  msgid "Multisets were not found. Imported is done!"
1148
  msgstr "Kein Multi-Set gefunden aber Import war erfolgreich!"
1149
 
1150
  # @ yasr
1151
+ #: ../lib/yasr-ajax-functions.php:744
1152
+ msgid "No Recenet votes yet"
1153
+ msgstr "Keine kürzlichen Bewertungen"
1154
+
1155
+ # @ yasr
1156
+ #: ../lib/yasr-ajax-functions.php:903 ../lib/yasr-ajax-functions.php:1032
1157
  msgid "Error: you can't vote 0"
1158
  msgstr "Fehler: Sie können nicht 0 wählen!"
1159
 
1160
  # @ yasr
1161
+ #: ../lib/yasr-ajax-functions.php:994 ../lib/yasr-ajax-functions.php:1002
1162
  msgid "Average rating"
1163
  msgstr "Durchschnittsbewertung"
1164
 
1165
  # @ yasr
1166
+ #: ../lib/yasr-ajax-functions.php:995 ../lib/yasr-ajax-functions.php:1003
1167
  msgid "Vote Saved"
1168
  msgstr "Bewertung gespeichert"
1169
 
1170
  # @ yasr
1171
+ #: ../lib/yasr-ajax-functions.php:1118
1172
+ #, fuzzy
1173
+ msgid "Vote updated"
1174
  msgstr "Bewertung aktualisiert"
1175
 
1176
  # @ yasr
1177
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
1178
  msgid "Average "
1179
  msgstr "Durchschnitt: "
languages/yasr-it_IT.mo CHANGED
Binary file
languages/yasr-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Yasr Translation\n"
4
- "POT-Creation-Date: 2014-10-22 11:13+0100\n"
5
- "PO-Revision-Date: 2014-10-22 11:15+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
@@ -16,9 +16,9 @@ msgstr ""
16
  "X-Poedit-SearchPath-0: ..\n"
17
  "X-Poedit-SearchPath-1: ../lib\n"
18
 
19
- #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
20
- #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:196
21
- #: ../lib/yasr-ajax-functions.php:335 ../lib/yasr-ajax-functions.php:717
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "Non hai permeessi sufficienti per accedere a questa pagina"
24
 
@@ -42,7 +42,7 @@ msgstr "Stili"
42
  msgid "Pro Features!"
43
  msgstr "Funzioni Pro!"
44
 
45
- #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:279
46
  msgid "Save"
47
  msgstr "Salva"
48
 
@@ -97,15 +97,15 @@ msgstr ""
97
  "Clicca su Procedi per importare di nuovo i dati di Gd Star Rating. Potrebbe "
98
  "richiedere un pò di tempo!"
99
 
100
- #: ../yasr-settings-page.php:197
101
  msgid "Manage Multi Set"
102
  msgstr "Set Multipli"
103
 
104
- #: ../yasr-settings-page.php:201
105
  msgid "What is a Multi Set?"
106
  msgstr "Che cos'è un Set Multiplo?"
107
 
108
- #: ../yasr-settings-page.php:206
109
  msgid ""
110
  "Multi Set allows you to insert a rate for each aspect about the product / "
111
  "local business / whetever you're reviewing, example in the image below."
@@ -114,7 +114,7 @@ msgstr ""
114
  "prodotto / attività / qualsiasi cosa tua stia recensendo, esempio "
115
  "nell'immagine sottostante."
116
 
117
- #: ../yasr-settings-page.php:210
118
  msgid ""
119
  "You can create up to 99 different Multi Set and each one can contain up to 9 "
120
  "different fields. Once you've saved it, you can insert the rates while "
@@ -126,7 +126,7 @@ msgstr ""
126
  "scrivendo il tuo articolo nel box sotto l'editor, come puoi vedere in questa "
127
  "immagine (clicca per allargare)"
128
 
129
- #: ../yasr-settings-page.php:214
130
  msgid ""
131
  "In order to insert your Multi Sets into a post or page, you can either past "
132
  "the short code that will appear at the bottom of the box or just click on "
@@ -137,17 +137,17 @@ msgstr ""
137
  "cliccare sulla stella presente nell'editor visuale e selezionare \"Inserisci "
138
  "Set Multiplo\""
139
 
140
- #: ../yasr-settings-page.php:220
141
  msgid "Close this message"
142
  msgstr "Chiudi questo messaggio"
143
 
144
- #: ../yasr-settings-page.php:249 ../lib/yasr-functions.php:446
145
- #: ../lib/yasr-functions.php:472
146
  msgid "Donations"
147
  msgstr "Donazioni"
148
 
149
- #: ../yasr-settings-page.php:251 ../lib/yasr-functions.php:448
150
- #: ../lib/yasr-functions.php:474
151
  msgid ""
152
  "If you have found this plugin useful, please consider making a donation to "
153
  "help support future development. Your support will be much appreciated. "
@@ -156,8 +156,8 @@ msgstr ""
156
  "supportarne lo sviluppo. Il tuo aiuto sarà molto apprezzato! P.s. YASR è "
157
  "made in Italy ;)"
158
 
159
- #: ../yasr-settings-page.php:253 ../lib/yasr-functions.php:450
160
- #: ../lib/yasr-functions.php:476
161
  msgid "Thank you!"
162
  msgstr "Grazie!"
163
 
@@ -167,7 +167,7 @@ msgstr "Scegli che set vuoi usare"
167
 
168
  #: ../yasr-metabox-multiple-rating.php:46
169
  #: ../yasr-metabox-overall-rating.php:193
170
- #: ../lib/yasr-settings-functions.php:431
171
  msgid "Select"
172
  msgstr "Seleziona"
173
 
@@ -176,7 +176,7 @@ msgid "Rate this article / item"
176
  msgstr "Vota questo articolo / oggetto"
177
 
178
  #: ../yasr-metabox-overall-rating.php:71
179
- #: ../lib/yasr-shortcode-functions.php:152
180
  msgid "Loading, please wait"
181
  msgstr "Caricamento, attendere prego"
182
 
@@ -196,124 +196,130 @@ msgstr ""
196
  "Ricorda di inserire questo shortcode <strong>[yasr_overall_rating]</strong> "
197
  "dove vuoi far apparire questo voto"
198
 
199
- #: ../lib/yasr-shortcode-functions.php:197
200
- #: ../lib/yasr-shortcode-functions.php:209
201
  #: ../lib/yasr-shortcode-functions.php:214
202
- #: ../lib/yasr-shortcode-functions.php:229
203
- #: ../lib/yasr-shortcode-functions.php:234
204
- #: ../lib/yasr-shortcode-functions.php:254
205
- #: ../lib/yasr-shortcode-functions.php:265
206
  #: ../lib/yasr-shortcode-functions.php:271
207
- #: ../lib/yasr-shortcode-functions.php:286
208
- #: ../lib/yasr-shortcode-functions.php:292 ../lib/yasr-ajax-functions.php:979
209
- #: ../lib/yasr-ajax-functions.php:987 ../lib/yasr-ajax-functions.php:1086
210
- #: ../lib/yasr-ajax-functions.php:1094 ../lib/yasr-ajax-functions.php:1102
211
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
 
212
  msgid "Total: "
213
  msgstr "Voti: "
214
 
215
- #: ../lib/yasr-shortcode-functions.php:197
216
- #: ../lib/yasr-shortcode-functions.php:209
217
  #: ../lib/yasr-shortcode-functions.php:214
218
- #: ../lib/yasr-shortcode-functions.php:229
219
- #: ../lib/yasr-shortcode-functions.php:234
220
- #: ../lib/yasr-shortcode-functions.php:254
221
- #: ../lib/yasr-shortcode-functions.php:265
222
  #: ../lib/yasr-shortcode-functions.php:271
223
- #: ../lib/yasr-shortcode-functions.php:286
224
- #: ../lib/yasr-shortcode-functions.php:292
 
 
225
  msgid "Average: "
226
  msgstr "Media Voto: "
227
 
228
- #: ../lib/yasr-shortcode-functions.php:198
229
- #: ../lib/yasr-shortcode-functions.php:255
230
  msgid "You've already voted this article with"
231
  msgstr "Hai già votato questo articolo con "
232
 
233
- #: ../lib/yasr-shortcode-functions.php:287
234
- #: ../lib/yasr-shortcode-functions.php:293
235
  msgid "You must sign to vote"
236
  msgstr "Devi fare il login per votare"
237
 
238
- #: ../lib/yasr-shortcode-functions.php:317
239
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
240
  msgstr "'pessimo', 'scarso', 'ok', 'buono', 'super'"
241
 
242
- #: ../lib/yasr-shortcode-functions.php:424
243
  msgid "Rating"
244
  msgstr "Voto"
245
 
246
- #: ../lib/yasr-shortcode-functions.php:438
247
  msgid "You don't have any votes stored"
248
  msgstr "Non hai alcun voto salvato"
249
 
250
- #: ../lib/yasr-shortcode-functions.php:474
251
- #: ../lib/yasr-shortcode-functions.php:512
252
  msgid "Post / Page"
253
  msgstr "Post / Pagina"
254
 
255
- #: ../lib/yasr-shortcode-functions.php:475
256
- #: ../lib/yasr-shortcode-functions.php:513
257
  msgid "Order By"
258
  msgstr "Ordina per"
259
 
260
- #: ../lib/yasr-shortcode-functions.php:475
261
- #: ../lib/yasr-shortcode-functions.php:513
262
  msgid "Most Rated"
263
  msgstr "Più Votati"
264
 
265
- #: ../lib/yasr-shortcode-functions.php:475
266
- #: ../lib/yasr-shortcode-functions.php:513
267
  msgid "Highest Rated"
268
  msgstr "Voto più alto"
269
 
270
- #: ../lib/yasr-shortcode-functions.php:492
271
- #: ../lib/yasr-shortcode-functions.php:527
272
  msgid "Total:"
273
  msgstr "Voti:"
274
 
275
- #: ../lib/yasr-shortcode-functions.php:492
276
- #: ../lib/yasr-shortcode-functions.php:527
277
  msgid "Average"
278
  msgstr "Media"
279
 
280
- #: ../lib/yasr-shortcode-functions.php:504
281
- #: ../lib/yasr-shortcode-functions.php:539
 
 
 
282
  msgid "You've not enought data"
283
  msgstr "Non hai abbastanza dati"
284
 
285
- #: ../lib/yasr-shortcode-functions.php:624
286
  msgid ""
287
- "Problem while retriving the top 5 most active reviewers. Did you published "
288
  "any review?"
289
  msgstr ""
290
  "C'è stato un problema nell'ottenere la classifica dei 5 recensori più "
291
  "attivi. Hai pubblicato qualche recensione?"
292
 
293
- #: ../lib/yasr-shortcode-functions.php:692
294
  msgid ""
295
- "Problem while retriving the top 10 active users chart. Are you sure you have "
296
- "votes to show?"
297
  msgstr ""
298
  "C'è stato un problema nell'ottenere la classifica dei 10 utenti più attivi. "
299
  "Sei sicuro di avere voti da mostrare?"
300
 
301
- #: ../lib/yasr-settings-functions.php:50
302
  msgid "General settings"
303
  msgstr "Impostazioni Generali"
304
 
305
- #: ../lib/yasr-settings-functions.php:51
306
  msgid "Auto insert options"
307
  msgstr "Opzioni inserimento automatico"
308
 
309
- #: ../lib/yasr-settings-functions.php:52
310
  msgid "Show \"Overall Rating\" in Home Page?"
311
  msgstr "Mostrare il Voto Complessivo nella Home Page?"
312
 
313
- #: ../lib/yasr-settings-functions.php:53
314
  msgid "Insert custom text to show before / after stars"
315
  msgstr "Inserisci testo personalizzato da mostrare prima / dopo le stelle"
316
 
 
 
 
 
317
  #: ../lib/yasr-settings-functions.php:54
318
  msgid "Which color scheme do you want to use?"
319
  msgstr "Che schema di colori vuoi usare?"
@@ -336,17 +342,19 @@ msgstr "Usare l'inserimento automatico?"
336
 
337
  #: ../lib/yasr-settings-functions.php:74
338
  #: ../lib/yasr-settings-functions.php:143
339
- #: ../lib/yasr-settings-functions.php:162
340
- #: ../lib/yasr-settings-functions.php:195
341
- #: ../lib/yasr-settings-functions.php:227
 
342
  msgid "Yes"
343
  msgstr "Si"
344
 
345
  #: ../lib/yasr-settings-functions.php:88
346
  #: ../lib/yasr-settings-functions.php:148
347
- #: ../lib/yasr-settings-functions.php:167
348
- #: ../lib/yasr-settings-functions.php:200
349
- #: ../lib/yasr-settings-functions.php:232
 
350
  msgid "No"
351
  msgstr "No"
352
 
@@ -358,7 +366,7 @@ msgstr "Cosa?"
358
  msgid "Overall Rating / Author Rating"
359
  msgstr "Voto Complessivo / Voto Autore"
360
 
361
- #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
362
  msgid "Visitor Votes"
363
  msgstr "Voto Utenti"
364
 
@@ -382,18 +390,18 @@ msgstr "Dopo il contenuto"
382
  msgid "Size"
383
  msgstr "Grandezza"
384
 
385
- #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
386
- #: ../lib/yasr-ajax-functions.php:470
387
  msgid "Small"
388
  msgstr "Piccolo"
389
 
390
- #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
391
- #: ../lib/yasr-ajax-functions.php:471
392
  msgid "Medium"
393
  msgstr "Medio"
394
 
395
- #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
396
- #: ../lib/yasr-ajax-functions.php:472
397
  msgid "Large"
398
  msgstr "Grande"
399
 
@@ -401,20 +409,20 @@ msgstr "Grande"
401
  msgid "Exclude Pages?"
402
  msgstr "Escludere pagine?"
403
 
404
- #: ../lib/yasr-settings-functions.php:159
405
  msgid "Use only in custom post types?"
406
  msgstr "Usare solo nei custom post type?"
407
 
408
- #: ../lib/yasr-settings-functions.php:171
409
  msgid "You see this because you use custom post types."
410
  msgstr "Vedi questo perché usi i custom post type."
411
 
412
- #: ../lib/yasr-settings-functions.php:173
413
  msgid "If you want to use auto insert only in custom post types, choose Yes"
414
  msgstr ""
415
  "Se vuoi usare l'inserimento automatico solo nei custom post type, spunta Si"
416
 
417
- #: ../lib/yasr-settings-functions.php:204
418
  msgid ""
419
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
420
  "article or page, but also in pages like Home Page, category pages or "
@@ -424,60 +432,68 @@ msgstr ""
424
  "articolo o nella singola pagina, ma anche in pagine come l' Home Page, "
425
  "categorie o archivi"
426
 
427
- #: ../lib/yasr-settings-functions.php:237
428
  msgid "Custom text to display before Overall Rating"
429
  msgstr "Testo personalizzato da visualizzare prima del Voto Complessivo"
430
 
431
- #: ../lib/yasr-settings-functions.php:242
432
  msgid "Custom text to display before Visitor Rating"
433
  msgstr "Testo personalizzato da visualizzare prima del Voto Utenti"
434
 
435
- #: ../lib/yasr-settings-functions.php:247
436
  msgid "Custom text to display when a non logged user has already rated"
437
  msgstr ""
438
  "Testo personalizzato da mostrare quanto un utente non loggato ha già votato"
439
 
440
- #: ../lib/yasr-settings-functions.php:263
 
 
 
 
 
 
 
 
441
  msgid "Light"
442
  msgstr "Chiaro"
443
 
444
- #: ../lib/yasr-settings-functions.php:268
445
  msgid "Dark"
446
  msgstr "Scuro"
447
 
448
- #: ../lib/yasr-settings-functions.php:273
449
  msgid "Preview"
450
  msgstr "Anteprima"
451
 
452
- #: ../lib/yasr-settings-functions.php:278
453
  msgid "Light theme"
454
  msgstr "Tema chiaro"
455
 
456
- #: ../lib/yasr-settings-functions.php:283
457
  msgid "Dark Theme"
458
  msgstr "Tema scuro"
459
 
460
- #: ../lib/yasr-settings-functions.php:301
461
  msgid "Allow only logged-in users"
462
  msgstr "Permetti solo agli utenti loggati"
463
 
464
- #: ../lib/yasr-settings-functions.php:305
465
  msgid "Allow everybody (logged in and anonymous)"
466
  msgstr "Permetti a tutti (loggati ed anonimi)"
467
 
468
- #: ../lib/yasr-settings-functions.php:322
469
  msgid "Review Rating"
470
  msgstr "Voto Recensione"
471
 
472
- #: ../lib/yasr-settings-functions.php:326
473
  msgid "Aggregate Rating"
474
  msgstr "Media Voto Utenti"
475
 
476
- #: ../lib/yasr-settings-functions.php:331
477
  msgid "What is this?"
478
  msgstr "Cos'è questo?"
479
 
480
- #: ../lib/yasr-settings-functions.php:336
481
  msgid ""
482
  "If you select \"Review Rating\", your site will be indexed from search "
483
  "engines like this: "
@@ -485,26 +501,26 @@ msgstr ""
485
  "Se hai scelto \"Voto Recensione\", il sito verrà indicizzato dai motori di "
486
  "ricerca così:"
487
 
488
- #: ../lib/yasr-settings-functions.php:341
489
  msgid ""
490
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
491
  "this"
492
  msgstr ""
493
  "Se, invece, hai scelto \"Media Voto Utenti\", il sito verrà indicizzato così"
494
 
495
- #: ../lib/yasr-settings-functions.php:359
496
  msgid "Stars"
497
  msgstr "Stelle"
498
 
499
- #: ../lib/yasr-settings-functions.php:363
500
  msgid "Numbers"
501
  msgstr "Numeri"
502
 
503
- #: ../lib/yasr-settings-functions.php:376
504
  msgid "Add New Multiple Set"
505
  msgstr "Set Multipli"
506
 
507
- #: ../lib/yasr-settings-functions.php:377
508
  msgid ""
509
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
510
  "characters"
@@ -512,48 +528,48 @@ msgstr ""
512
  "Nome, Elemento#1 e Elemento#2 DEVONO essere riempiti e devono essere lunghi "
513
  "almeno 3 caratteri"
514
 
515
- #: ../lib/yasr-settings-functions.php:380
516
  msgid "Name"
517
  msgstr "Nome"
518
 
519
- #: ../lib/yasr-settings-functions.php:385
520
- msgid "You can insert up to nine element"
521
  msgstr "Puoi inserire fino a nove elementi"
522
 
523
- #: ../lib/yasr-settings-functions.php:390
524
  msgid "Element "
525
  msgstr "Elemento"
526
 
527
- #: ../lib/yasr-settings-functions.php:400
528
  msgid "Create New Set"
529
  msgstr "Crea Nuovo Set"
530
 
531
- #: ../lib/yasr-settings-functions.php:421
532
- #: ../lib/yasr-settings-functions.php:453
533
  msgid "Manage Multiple Set"
534
  msgstr "Gestisci Set Multiplo"
535
 
536
- #: ../lib/yasr-settings-functions.php:423
537
  msgid "Wich set do you want to edit or remove?"
538
  msgstr "Quale set vuoi modificare o rimuovere"
539
 
540
- #: ../lib/yasr-settings-functions.php:463
541
- #: ../lib/yasr-settings-functions.php:581
542
  msgid "Field name"
543
  msgstr "Nome campo"
544
 
545
- #: ../lib/yasr-settings-functions.php:467
546
- #: ../lib/yasr-settings-functions.php:585
547
  msgid "Remove"
548
  msgstr "Rimuovi"
549
 
550
- #: ../lib/yasr-settings-functions.php:509
551
- #: ../lib/yasr-settings-functions.php:627
552
  msgid "Remove whole set?"
553
  msgstr "Rimuovere l'intero set?"
554
 
555
- #: ../lib/yasr-settings-functions.php:522
556
- #: ../lib/yasr-settings-functions.php:640
557
  msgid ""
558
  "If you remove something you will remove all the votes for that set or field. "
559
  "This operation CAN'T BE undone."
@@ -561,63 +577,63 @@ msgstr ""
561
  "Se rimuovi qualcosa rimuoverai anche i voti per quel set o campo. Questa "
562
  "operazione NON PUÒ ESSERE ANNULLATA"
563
 
564
- #: ../lib/yasr-settings-functions.php:529
565
- #: ../lib/yasr-settings-functions.php:647
566
  msgid "You can use up to 9 elements"
567
  msgstr "Puoi usare fino a 9 elementi"
568
 
569
- #: ../lib/yasr-settings-functions.php:531
570
- #: ../lib/yasr-settings-functions.php:649
571
  msgid "Add element"
572
  msgstr "Aggiungi elemento"
573
 
574
- #: ../lib/yasr-settings-functions.php:533
575
- #: ../lib/yasr-settings-functions.php:651
576
  msgid "Save changes"
577
  msgstr "Salva modifiche"
578
 
579
- #: ../lib/yasr-settings-functions.php:543
580
  msgid "No Multiple Set were found"
581
  msgstr "Nessun Set Multiplo trovato"
582
 
583
- #: ../lib/yasr-settings-functions.php:793
584
- #: ../lib/yasr-settings-functions.php:1061
585
  msgid "Settings Saved"
586
  msgstr "Impostazioni Salvate"
587
 
588
- #: ../lib/yasr-settings-functions.php:798
589
  msgid "Something goes wrong trying insert set field name. Please report it"
590
  msgstr ""
591
  "Qualcosa è andato storto cercando di inserire un elemento. Per favore "
592
  "segnalalo"
593
 
594
- #: ../lib/yasr-settings-functions.php:804
595
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
596
  msgstr ""
597
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
598
  "favore segnalalo"
599
 
600
- #: ../lib/yasr-settings-functions.php:879
601
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
602
  msgstr ""
603
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
604
  "favore segnalalo"
605
 
606
- #: ../lib/yasr-settings-functions.php:925
607
  msgid ""
608
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
609
  msgstr ""
610
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
611
  "favore segnalalo"
612
 
613
- #: ../lib/yasr-settings-functions.php:989
614
  msgid ""
615
  "Something goes wrong trying to update a Multi Set's element. Please report it"
616
  msgstr ""
617
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
618
  "favore segnalalo"
619
 
620
- #: ../lib/yasr-settings-functions.php:1046
621
  msgid ""
622
  "Something goes wrong trying to insert set field name in edit form. Please "
623
  "report it"
@@ -625,15 +641,15 @@ msgstr ""
625
  "Qualcosa è andato storto cercando di inserire il campo nel form di modifica. "
626
  "Per favore segnalalo"
627
 
628
- #: ../lib/yasr-settings-functions.php:1089
629
  msgid "Style Options"
630
  msgstr "Opzioni Stili"
631
 
632
- #: ../lib/yasr-settings-functions.php:1090
633
  msgid "Custom CSS Styles"
634
  msgstr "Stili CSS Personalizzati"
635
 
636
- #: ../lib/yasr-settings-functions.php:1095
637
  msgid ""
638
  "Please use text area below to write your own CSS styles to override the "
639
  "default ones."
@@ -641,91 +657,91 @@ msgstr ""
641
  "Usa l'area di testo sottostante per scrivere le tue regole CSS che "
642
  "sovrascriveranno quelle di default"
643
 
644
- #: ../lib/yasr-settings-functions.php:1097
645
  msgid "Leave it blank if you don't know what you're doing"
646
  msgstr "Lascialo vuoto se non stai cosa stai facendo"
647
 
648
- #: ../lib/yasr-settings-functions.php:1130
649
  msgid "No previous Gd Star Rating installation was found"
650
  msgstr "Installazione precedente di Gd Star Rating non stata trovata"
651
 
652
- #: ../lib/yasr-db-functions.php:267 ../lib/yasr-ajax-functions.php:729
653
- msgid "No Recenet votes yet"
654
  msgstr "Ancora nessun voto recente"
655
 
656
- #: ../lib/yasr-db-functions.php:282 ../lib/yasr-ajax-functions.php:742
657
  msgid "anonymous"
658
  msgstr "anonimo"
659
 
660
- #: ../lib/yasr-db-functions.php:305 ../lib/yasr-ajax-functions.php:765
661
  msgid "Ip address"
662
  msgstr "Indirizzo Ip"
663
 
664
- #: ../lib/yasr-db-functions.php:346 ../lib/yasr-ajax-functions.php:806
665
  msgid "Pages"
666
  msgstr "Pagine"
667
 
668
- #: ../lib/yasr-functions.php:86 ../lib/yasr-functions.php:87
669
  msgid "Yet Another Stars Rating: Settings"
670
  msgstr "Yet Another Stars Rating: Impostazioni"
671
 
672
- #: ../lib/yasr-functions.php:130 ../lib/yasr-functions.php:137
673
  msgid "Overall Rating"
674
  msgstr "Voto Complessivo "
675
 
676
- #: ../lib/yasr-functions.php:131
677
  msgid "Yet Another Stars Rating: Multiple set"
678
  msgstr "Yet Another Stars Rating: Set Multipli"
679
 
680
- #: ../lib/yasr-functions.php:147
681
  msgid "You don't have enought privileges to insert Overall Rating"
682
  msgstr "Non hai permessi sufficienti per inserire il Voto Complessivo"
683
 
684
- #: ../lib/yasr-functions.php:157
685
  msgid "You don't have enought privileges to insert Multi Set"
686
  msgstr "Non hai abbastanza permessi per inserire un Multi Set"
687
 
688
- #: ../lib/yasr-functions.php:292
689
  msgid " reviewed by "
690
  msgstr " recensito da "
691
 
692
- #: ../lib/yasr-functions.php:293
693
  msgid " on "
694
  msgstr " il "
695
 
696
- #: ../lib/yasr-functions.php:294
697
  msgid " rated "
698
  msgstr " votato "
699
 
700
- #: ../lib/yasr-functions.php:294
701
  msgid " of"
702
  msgstr "su"
703
 
704
- #: ../lib/yasr-functions.php:349
705
  msgid " written by "
706
  msgstr " scritto da "
707
 
708
- #: ../lib/yasr-functions.php:351
709
  msgid " average rating "
710
  msgstr " media voto "
711
 
712
- #: ../lib/yasr-functions.php:352
713
  msgid " user ratings"
714
  msgstr " voti utenti "
715
 
716
- #: ../lib/yasr-functions.php:458 ../lib/yasr-functions.php:485
717
  msgid "Follow YASR official site!"
718
  msgstr "Segui il sito ufficiale di YASR!"
719
 
720
- #: ../lib/yasr-functions.php:504
721
  msgid "Looking for more features?"
722
  msgstr "Hai bisogno di più funzioni?"
723
 
724
- #: ../lib/yasr-functions.php:505
725
  msgid "Upgrade to yasr pro!"
726
  msgstr "Passa a yasr pro!"
727
 
728
- #: ../lib/yasr-functions.php:584
729
  msgid "Not avaible yet"
730
  msgstr "Non ancora disponibile"
731
 
@@ -737,138 +753,138 @@ msgstr "Voto assegnato "
737
  msgid "You've reset the vote"
738
  msgstr "Hai resettato il voto"
739
 
740
- #: ../lib/yasr-ajax-functions.php:170
741
  msgid ""
742
  "There was an error while trying to insert the review type. Please report it"
743
  msgstr ""
744
  "Qualcosa è andato storto cercando di inserire un elemento. Per favore "
745
  "segnalalo"
746
 
747
- #: ../lib/yasr-ajax-functions.php:207
748
  msgid "Choose a vote for each element"
749
  msgstr "Scegli un voto per ogni elemento"
750
 
751
- #: ../lib/yasr-ajax-functions.php:263 ../lib/yasr-ajax-functions.php:306
752
  msgid "Remember to insert this shortcode"
753
  msgstr "Ricorda di inserire questo shortcode"
754
 
755
- #: ../lib/yasr-ajax-functions.php:265 ../lib/yasr-ajax-functions.php:308
756
  msgid "where you want to display this multi set"
757
  msgstr "dove vuoi mostrare questo Multi Set"
758
 
759
- #: ../lib/yasr-ajax-functions.php:273
760
  msgid "Choose a vote for every element"
761
  msgstr "Scegli un voto per ogni elemento"
762
 
763
- #: ../lib/yasr-ajax-functions.php:432
764
  msgid "Main"
765
  msgstr ""
766
 
767
- #: ../lib/yasr-ajax-functions.php:433
768
  msgid "Charts"
769
  msgstr "Classifiche"
770
 
771
- #: ../lib/yasr-ajax-functions.php:435
772
  msgid "Read the doc"
773
  msgstr "Leggi la documentazione"
774
 
775
- #: ../lib/yasr-ajax-functions.php:444
776
  msgid "Overall Rating / Review"
777
  msgstr "Voto Complessivo"
778
 
779
- #: ../lib/yasr-ajax-functions.php:446
780
  msgid "Insert Overall Rating"
781
  msgstr "Inserisci Voto Complessivo"
782
 
783
- #: ../lib/yasr-ajax-functions.php:447
784
  msgid "Insert Overall Rating / Review for this post"
785
  msgstr "Inserisci Voto Complessivo / Recensione per questo post"
786
 
787
- #: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
788
  msgid "Choose Size"
789
  msgstr "Scegli la grandezza"
790
 
791
- #: ../lib/yasr-ajax-functions.php:464
792
  msgid "Insert Visitor Votes"
793
  msgstr "Inserisci Voti Utenti"
794
 
795
- #: ../lib/yasr-ajax-functions.php:465
796
  msgid "Insert the ability for your visitor to vote"
797
  msgstr "Permetti ai tuoi visitatori di votare"
798
 
799
- #: ../lib/yasr-ajax-functions.php:482
800
  msgid "If you want to insert a Multi Set, pick one:"
801
  msgstr "Se vuoi inserire un Set Multiplo, scegline uno:"
802
 
803
- #: ../lib/yasr-ajax-functions.php:488
804
  msgid "Choose wich set you want to insert."
805
  msgstr "Scegli quale Set Multiplo inserire"
806
 
807
- #: ../lib/yasr-ajax-functions.php:496
808
  msgid "Insert Multiset:"
809
  msgstr "Inserisci Set Multiplo:"
810
 
811
- #: ../lib/yasr-ajax-functions.php:499
812
  msgid "Insert Multiple Set"
813
  msgstr "Inserisci Set Multiplo"
814
 
815
- #: ../lib/yasr-ajax-functions.php:500
816
  msgid "Insert multiple set in this post ?"
817
  msgstr "Vuoi inserire il Set Multiplo per questo post ?"
818
 
819
- #: ../lib/yasr-ajax-functions.php:515
820
  msgid "Ranking reviews"
821
  msgstr "Classifica recensioni"
822
 
823
- #: ../lib/yasr-ajax-functions.php:516
824
  msgid "Insert Ranking reviews"
825
  msgstr "Classifica recensioni"
826
 
827
- #: ../lib/yasr-ajax-functions.php:517
828
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
829
  msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_overall_rating]"
830
 
831
- #: ../lib/yasr-ajax-functions.php:521
832
  msgid "Users' ranking"
833
  msgstr "Classifica degli utenti"
834
 
835
- #: ../lib/yasr-ajax-functions.php:522
836
  msgid "Insert Users ranking"
837
  msgstr "Inserisci Classifica Utenti"
838
 
839
- #: ../lib/yasr-ajax-functions.php:523
840
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
841
  msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_visitor_votes]"
842
 
843
- #: ../lib/yasr-ajax-functions.php:527
844
  msgid "Most active reviewers"
845
  msgstr "Recensori più attivi"
846
 
847
- #: ../lib/yasr-ajax-functions.php:528
848
  msgid "Insert Most Active Reviewers"
849
  msgstr "Inserisci i 5 recensori più attivi"
850
 
851
- #: ../lib/yasr-ajax-functions.php:529
852
  msgid "Insert Top 5 active reviewers"
853
  msgstr "Inserisci i 5 recensori più attivi"
854
 
855
- #: ../lib/yasr-ajax-functions.php:533
856
  msgid "Most Active Users"
857
  msgstr "Utenti più attivi"
858
 
859
- #: ../lib/yasr-ajax-functions.php:534
860
  msgid "Insert Most Active Users"
861
  msgstr "Inserisci i 10 utenti più attivi"
862
 
863
- #: ../lib/yasr-ajax-functions.php:535
864
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
865
  msgstr "Inserisci i 10 utenti più attivi in [yasr_visitor_votes]"
866
 
867
- #: ../lib/yasr-ajax-functions.php:587
868
  msgid "Reviews and Visitor Votes have been successfull imported."
869
  msgstr "Recensioni e Voti utenti sono stati importati con successo."
870
 
871
- #: ../lib/yasr-ajax-functions.php:593
872
  msgid ""
873
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
874
  "THIS MAY TAKE A WHILE!"
@@ -876,68 +892,71 @@ msgstr ""
876
  "Step2: Contrellerò se hai usato Set Multipli e se li trovo l'importerò: PUÒ "
877
  "RICHIEDERE UN PÒ DI TEMPO!"
878
 
879
- #: ../lib/yasr-ajax-functions.php:595
880
  msgid "Proceed Step 2"
881
  msgstr "Procedi Step 2"
882
 
883
- #: ../lib/yasr-ajax-functions.php:602
884
  msgid "Something goes wrong! Refresh the page and try again!"
885
  msgstr "Qualcosa è andato storto! Aggiorna la pagina e prova ancora!"
886
 
887
- #: ../lib/yasr-ajax-functions.php:631
888
  msgid "I've found Multiple Set! Importing..."
889
  msgstr "Set Multipli trovati! Importazione..."
890
 
891
- #: ../lib/yasr-ajax-functions.php:640
892
  msgid "Multi Set's name has been successfull imported."
893
  msgstr "I nomi dei Set Multipli sono stati importati con successo"
894
 
895
- #: ../lib/yasr-ajax-functions.php:642
896
  msgid "Now I'm going to import Multi Set data"
897
  msgstr "Ora importerò i dati dei Set Multipli"
898
 
899
- #: ../lib/yasr-ajax-functions.php:653
900
  msgid "All votes has been successfull imported."
901
  msgstr "Tutti i voti sono stati importati con successo"
902
 
903
- #: ../lib/yasr-ajax-functions.php:655
904
  msgid "Done"
905
  msgstr "Fatto"
906
 
907
- #: ../lib/yasr-ajax-functions.php:660
908
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
909
  msgstr "Ho trovato i voti per i Set Multi ma non li ho potuti inserire nel db"
910
 
911
- #: ../lib/yasr-ajax-functions.php:668
912
  msgid "I've found Multi Set but with no data"
913
  msgstr "ho trovato Set Multipli ma senza dati"
914
 
915
- #: ../lib/yasr-ajax-functions.php:677
916
  msgid "I've found Multi Sets names but I couldn't insert into db"
917
  msgstr "Ho trovato Set Multipli ma non li ho potuti inserire nel db"
918
 
919
- #: ../lib/yasr-ajax-functions.php:685
920
  msgid "Multisets were not found. Imported is done!"
921
  msgstr "Set Multipli non trovati. Importazione dati conclusa!"
922
 
923
- #: ../lib/yasr-ajax-functions.php:888 ../lib/yasr-ajax-functions.php:1017
 
 
 
 
924
  msgid "Error: you can't vote 0"
925
  msgstr "Errore: non puoi votare 0"
926
 
927
- #: ../lib/yasr-ajax-functions.php:979 ../lib/yasr-ajax-functions.php:987
928
  msgid "Average rating"
929
  msgstr "Media Voto "
930
 
931
- #: ../lib/yasr-ajax-functions.php:980 ../lib/yasr-ajax-functions.php:988
932
  msgid "Vote Saved"
933
  msgstr "Voto Salvato"
934
 
935
- #: ../lib/yasr-ajax-functions.php:1087 ../lib/yasr-ajax-functions.php:1095
936
- #: ../lib/yasr-ajax-functions.php:1103
937
- msgid "Vote Updated"
938
  msgstr "Voto Aggiornato"
939
 
940
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
941
  msgid "Average "
942
  msgstr "Media Voto "
943
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Yasr Translation\n"
4
+ "POT-Creation-Date: 2014-10-28 18:44+0100\n"
5
+ "PO-Revision-Date: 2014-10-28 18:45+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
  "X-Poedit-SearchPath-1: ../lib\n"
18
 
19
+ #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:109
20
+ #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:192
21
+ #: ../lib/yasr-ajax-functions.php:331 ../lib/yasr-ajax-functions.php:732
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "Non hai permeessi sufficienti per accedere a questa pagina"
24
 
42
  msgid "Pro Features!"
43
  msgstr "Funzioni Pro!"
44
 
45
+ #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:276
46
  msgid "Save"
47
  msgstr "Salva"
48
 
97
  "Clicca su Procedi per importare di nuovo i dati di Gd Star Rating. Potrebbe "
98
  "richiedere un pò di tempo!"
99
 
100
+ #: ../yasr-settings-page.php:196
101
  msgid "Manage Multi Set"
102
  msgstr "Set Multipli"
103
 
104
+ #: ../yasr-settings-page.php:200
105
  msgid "What is a Multi Set?"
106
  msgstr "Che cos'è un Set Multiplo?"
107
 
108
+ #: ../yasr-settings-page.php:204
109
  msgid ""
110
  "Multi Set allows you to insert a rate for each aspect about the product / "
111
  "local business / whetever you're reviewing, example in the image below."
114
  "prodotto / attività / qualsiasi cosa tua stia recensendo, esempio "
115
  "nell'immagine sottostante."
116
 
117
+ #: ../yasr-settings-page.php:208
118
  msgid ""
119
  "You can create up to 99 different Multi Set and each one can contain up to 9 "
120
  "different fields. Once you've saved it, you can insert the rates while "
126
  "scrivendo il tuo articolo nel box sotto l'editor, come puoi vedere in questa "
127
  "immagine (clicca per allargare)"
128
 
129
+ #: ../yasr-settings-page.php:212
130
  msgid ""
131
  "In order to insert your Multi Sets into a post or page, you can either past "
132
  "the short code that will appear at the bottom of the box or just click on "
137
  "cliccare sulla stella presente nell'editor visuale e selezionare \"Inserisci "
138
  "Set Multiplo\""
139
 
140
+ #: ../yasr-settings-page.php:218
141
  msgid "Close this message"
142
  msgstr "Chiudi questo messaggio"
143
 
144
+ #: ../yasr-settings-page.php:246 ../lib/yasr-functions.php:457
145
+ #: ../lib/yasr-functions.php:483
146
  msgid "Donations"
147
  msgstr "Donazioni"
148
 
149
+ #: ../yasr-settings-page.php:248 ../lib/yasr-functions.php:459
150
+ #: ../lib/yasr-functions.php:485
151
  msgid ""
152
  "If you have found this plugin useful, please consider making a donation to "
153
  "help support future development. Your support will be much appreciated. "
156
  "supportarne lo sviluppo. Il tuo aiuto sarà molto apprezzato! P.s. YASR è "
157
  "made in Italy ;)"
158
 
159
+ #: ../yasr-settings-page.php:250 ../lib/yasr-functions.php:461
160
+ #: ../lib/yasr-functions.php:487
161
  msgid "Thank you!"
162
  msgstr "Grazie!"
163
 
167
 
168
  #: ../yasr-metabox-multiple-rating.php:46
169
  #: ../yasr-metabox-overall-rating.php:193
170
+ #: ../lib/yasr-settings-functions.php:468
171
  msgid "Select"
172
  msgstr "Seleziona"
173
 
176
  msgstr "Vota questo articolo / oggetto"
177
 
178
  #: ../yasr-metabox-overall-rating.php:71
179
+ #: ../lib/yasr-shortcode-functions.php:169
180
  msgid "Loading, please wait"
181
  msgstr "Caricamento, attendere prego"
182
 
196
  "Ricorda di inserire questo shortcode <strong>[yasr_overall_rating]</strong> "
197
  "dove vuoi far apparire questo voto"
198
 
 
 
199
  #: ../lib/yasr-shortcode-functions.php:214
200
+ #: ../lib/yasr-shortcode-functions.php:226
201
+ #: ../lib/yasr-shortcode-functions.php:231
202
+ #: ../lib/yasr-shortcode-functions.php:246
203
+ #: ../lib/yasr-shortcode-functions.php:251
204
  #: ../lib/yasr-shortcode-functions.php:271
205
+ #: ../lib/yasr-shortcode-functions.php:282
206
+ #: ../lib/yasr-shortcode-functions.php:288
207
+ #: ../lib/yasr-shortcode-functions.php:303
208
+ #: ../lib/yasr-shortcode-functions.php:309 ../lib/yasr-ajax-functions.php:994
209
+ #: ../lib/yasr-ajax-functions.php:1002 ../lib/yasr-ajax-functions.php:1117
210
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
211
  msgid "Total: "
212
  msgstr "Voti: "
213
 
 
 
214
  #: ../lib/yasr-shortcode-functions.php:214
215
+ #: ../lib/yasr-shortcode-functions.php:226
216
+ #: ../lib/yasr-shortcode-functions.php:231
217
+ #: ../lib/yasr-shortcode-functions.php:246
218
+ #: ../lib/yasr-shortcode-functions.php:251
219
  #: ../lib/yasr-shortcode-functions.php:271
220
+ #: ../lib/yasr-shortcode-functions.php:282
221
+ #: ../lib/yasr-shortcode-functions.php:288
222
+ #: ../lib/yasr-shortcode-functions.php:303
223
+ #: ../lib/yasr-shortcode-functions.php:309
224
  msgid "Average: "
225
  msgstr "Media Voto: "
226
 
227
+ #: ../lib/yasr-shortcode-functions.php:215
228
+ #: ../lib/yasr-shortcode-functions.php:272 ../lib/yasr-ajax-functions.php:1191
229
  msgid "You've already voted this article with"
230
  msgstr "Hai già votato questo articolo con "
231
 
232
+ #: ../lib/yasr-shortcode-functions.php:304
233
+ #: ../lib/yasr-shortcode-functions.php:310
234
  msgid "You must sign to vote"
235
  msgstr "Devi fare il login per votare"
236
 
237
+ #: ../lib/yasr-shortcode-functions.php:334
238
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
239
  msgstr "'pessimo', 'scarso', 'ok', 'buono', 'super'"
240
 
241
+ #: ../lib/yasr-shortcode-functions.php:448
242
  msgid "Rating"
243
  msgstr "Voto"
244
 
245
+ #: ../lib/yasr-shortcode-functions.php:462
246
  msgid "You don't have any votes stored"
247
  msgstr "Non hai alcun voto salvato"
248
 
249
+ #: ../lib/yasr-shortcode-functions.php:498
250
+ #: ../lib/yasr-shortcode-functions.php:536
251
  msgid "Post / Page"
252
  msgstr "Post / Pagina"
253
 
254
+ #: ../lib/yasr-shortcode-functions.php:499
255
+ #: ../lib/yasr-shortcode-functions.php:537
256
  msgid "Order By"
257
  msgstr "Ordina per"
258
 
259
+ #: ../lib/yasr-shortcode-functions.php:499
260
+ #: ../lib/yasr-shortcode-functions.php:537
261
  msgid "Most Rated"
262
  msgstr "Più Votati"
263
 
264
+ #: ../lib/yasr-shortcode-functions.php:499
265
+ #: ../lib/yasr-shortcode-functions.php:537
266
  msgid "Highest Rated"
267
  msgstr "Voto più alto"
268
 
269
+ #: ../lib/yasr-shortcode-functions.php:516
270
+ #: ../lib/yasr-shortcode-functions.php:551
271
  msgid "Total:"
272
  msgstr "Voti:"
273
 
274
+ #: ../lib/yasr-shortcode-functions.php:516
275
+ #: ../lib/yasr-shortcode-functions.php:551
276
  msgid "Average"
277
  msgstr "Media"
278
 
279
+ #: ../lib/yasr-shortcode-functions.php:528
280
+ msgid "You've not enough data"
281
+ msgstr "Non hai abbastanza dati"
282
+
283
+ #: ../lib/yasr-shortcode-functions.php:563
284
  msgid "You've not enought data"
285
  msgstr "Non hai abbastanza dati"
286
 
287
+ #: ../lib/yasr-shortcode-functions.php:648
288
  msgid ""
289
+ "Problem while retrieving the top 5 most active reviewers. Did you publish "
290
  "any review?"
291
  msgstr ""
292
  "C'è stato un problema nell'ottenere la classifica dei 5 recensori più "
293
  "attivi. Hai pubblicato qualche recensione?"
294
 
295
+ #: ../lib/yasr-shortcode-functions.php:716
296
  msgid ""
297
+ "Problem while retrieving the top 10 active users chart. Are you sure you "
298
+ "have votes to show?"
299
  msgstr ""
300
  "C'è stato un problema nell'ottenere la classifica dei 10 utenti più attivi. "
301
  "Sei sicuro di avere voti da mostrare?"
302
 
303
+ #: ../lib/yasr-settings-functions.php:49
304
  msgid "General settings"
305
  msgstr "Impostazioni Generali"
306
 
307
+ #: ../lib/yasr-settings-functions.php:50
308
  msgid "Auto insert options"
309
  msgstr "Opzioni inserimento automatico"
310
 
311
+ #: ../lib/yasr-settings-functions.php:51
312
  msgid "Show \"Overall Rating\" in Home Page?"
313
  msgstr "Mostrare il Voto Complessivo nella Home Page?"
314
 
315
+ #: ../lib/yasr-settings-functions.php:52
316
  msgid "Insert custom text to show before / after stars"
317
  msgstr "Inserisci testo personalizzato da mostrare prima / dopo le stelle"
318
 
319
+ #: ../lib/yasr-settings-functions.php:53
320
+ msgid "Do you want show stats for visitors votes?"
321
+ msgstr "Vuoi mostrare le statistiche per i voti utenti?"
322
+
323
  #: ../lib/yasr-settings-functions.php:54
324
  msgid "Which color scheme do you want to use?"
325
  msgstr "Che schema di colori vuoi usare?"
342
 
343
  #: ../lib/yasr-settings-functions.php:74
344
  #: ../lib/yasr-settings-functions.php:143
345
+ #: ../lib/yasr-settings-functions.php:161
346
+ #: ../lib/yasr-settings-functions.php:193
347
+ #: ../lib/yasr-settings-functions.php:225
348
+ #: ../lib/yasr-settings-functions.php:276
349
  msgid "Yes"
350
  msgstr "Si"
351
 
352
  #: ../lib/yasr-settings-functions.php:88
353
  #: ../lib/yasr-settings-functions.php:148
354
+ #: ../lib/yasr-settings-functions.php:166
355
+ #: ../lib/yasr-settings-functions.php:198
356
+ #: ../lib/yasr-settings-functions.php:230
357
+ #: ../lib/yasr-settings-functions.php:281
358
  msgid "No"
359
  msgstr "No"
360
 
366
  msgid "Overall Rating / Author Rating"
367
  msgstr "Voto Complessivo / Voto Autore"
368
 
369
+ #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:458
370
  msgid "Visitor Votes"
371
  msgstr "Voto Utenti"
372
 
390
  msgid "Size"
391
  msgstr "Grandezza"
392
 
393
+ #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:448
394
+ #: ../lib/yasr-ajax-functions.php:466
395
  msgid "Small"
396
  msgstr "Piccolo"
397
 
398
+ #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:449
399
+ #: ../lib/yasr-ajax-functions.php:467
400
  msgid "Medium"
401
  msgstr "Medio"
402
 
403
+ #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:450
404
+ #: ../lib/yasr-ajax-functions.php:468
405
  msgid "Large"
406
  msgstr "Grande"
407
 
409
  msgid "Exclude Pages?"
410
  msgstr "Escludere pagine?"
411
 
412
+ #: ../lib/yasr-settings-functions.php:158
413
  msgid "Use only in custom post types?"
414
  msgstr "Usare solo nei custom post type?"
415
 
416
+ #: ../lib/yasr-settings-functions.php:170
417
  msgid "You see this because you use custom post types."
418
  msgstr "Vedi questo perché usi i custom post type."
419
 
420
+ #: ../lib/yasr-settings-functions.php:172
421
  msgid "If you want to use auto insert only in custom post types, choose Yes"
422
  msgstr ""
423
  "Se vuoi usare l'inserimento automatico solo nei custom post type, spunta Si"
424
 
425
+ #: ../lib/yasr-settings-functions.php:202
426
  msgid ""
427
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
428
  "article or page, but also in pages like Home Page, category pages or "
432
  "articolo o nella singola pagina, ma anche in pagine come l' Home Page, "
433
  "categorie o archivi"
434
 
435
+ #: ../lib/yasr-settings-functions.php:235
436
  msgid "Custom text to display before Overall Rating"
437
  msgstr "Testo personalizzato da visualizzare prima del Voto Complessivo"
438
 
439
+ #: ../lib/yasr-settings-functions.php:240
440
  msgid "Custom text to display before Visitor Rating"
441
  msgstr "Testo personalizzato da visualizzare prima del Voto Utenti"
442
 
443
+ #: ../lib/yasr-settings-functions.php:245
444
  msgid "Custom text to display when a non logged user has already rated"
445
  msgstr ""
446
  "Testo personalizzato da mostrare quanto un utente non loggato ha già votato"
447
 
448
+ #: ../lib/yasr-settings-functions.php:259
449
+ msgid ""
450
+ "Seems like you've imported gd star rating in the past, but then deleted the "
451
+ "logs table. For now, you can't enable statistics"
452
+ msgstr ""
453
+ "Sembra che in passato hai importato Gd Star Rating, ma poi hai cancellato la "
454
+ "tabella con i log. Per il momento, non è possibile abilitare le statistiche"
455
+
456
+ #: ../lib/yasr-settings-functions.php:301
457
  msgid "Light"
458
  msgstr "Chiaro"
459
 
460
+ #: ../lib/yasr-settings-functions.php:306
461
  msgid "Dark"
462
  msgstr "Scuro"
463
 
464
+ #: ../lib/yasr-settings-functions.php:311
465
  msgid "Preview"
466
  msgstr "Anteprima"
467
 
468
+ #: ../lib/yasr-settings-functions.php:316
469
  msgid "Light theme"
470
  msgstr "Tema chiaro"
471
 
472
+ #: ../lib/yasr-settings-functions.php:321
473
  msgid "Dark Theme"
474
  msgstr "Tema scuro"
475
 
476
+ #: ../lib/yasr-settings-functions.php:339
477
  msgid "Allow only logged-in users"
478
  msgstr "Permetti solo agli utenti loggati"
479
 
480
+ #: ../lib/yasr-settings-functions.php:343
481
  msgid "Allow everybody (logged in and anonymous)"
482
  msgstr "Permetti a tutti (loggati ed anonimi)"
483
 
484
+ #: ../lib/yasr-settings-functions.php:360
485
  msgid "Review Rating"
486
  msgstr "Voto Recensione"
487
 
488
+ #: ../lib/yasr-settings-functions.php:364
489
  msgid "Aggregate Rating"
490
  msgstr "Media Voto Utenti"
491
 
492
+ #: ../lib/yasr-settings-functions.php:369
493
  msgid "What is this?"
494
  msgstr "Cos'è questo?"
495
 
496
+ #: ../lib/yasr-settings-functions.php:374
497
  msgid ""
498
  "If you select \"Review Rating\", your site will be indexed from search "
499
  "engines like this: "
501
  "Se hai scelto \"Voto Recensione\", il sito verrà indicizzato dai motori di "
502
  "ricerca così:"
503
 
504
+ #: ../lib/yasr-settings-functions.php:379
505
  msgid ""
506
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
507
  "this"
508
  msgstr ""
509
  "Se, invece, hai scelto \"Media Voto Utenti\", il sito verrà indicizzato così"
510
 
511
+ #: ../lib/yasr-settings-functions.php:397
512
  msgid "Stars"
513
  msgstr "Stelle"
514
 
515
+ #: ../lib/yasr-settings-functions.php:401
516
  msgid "Numbers"
517
  msgstr "Numeri"
518
 
519
+ #: ../lib/yasr-settings-functions.php:413
520
  msgid "Add New Multiple Set"
521
  msgstr "Set Multipli"
522
 
523
+ #: ../lib/yasr-settings-functions.php:414
524
  msgid ""
525
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
526
  "characters"
528
  "Nome, Elemento#1 e Elemento#2 DEVONO essere riempiti e devono essere lunghi "
529
  "almeno 3 caratteri"
530
 
531
+ #: ../lib/yasr-settings-functions.php:417
532
  msgid "Name"
533
  msgstr "Nome"
534
 
535
+ #: ../lib/yasr-settings-functions.php:422
536
+ msgid "You can insert up to nine elements"
537
  msgstr "Puoi inserire fino a nove elementi"
538
 
539
+ #: ../lib/yasr-settings-functions.php:427
540
  msgid "Element "
541
  msgstr "Elemento"
542
 
543
+ #: ../lib/yasr-settings-functions.php:437
544
  msgid "Create New Set"
545
  msgstr "Crea Nuovo Set"
546
 
547
+ #: ../lib/yasr-settings-functions.php:458
548
+ #: ../lib/yasr-settings-functions.php:490
549
  msgid "Manage Multiple Set"
550
  msgstr "Gestisci Set Multiplo"
551
 
552
+ #: ../lib/yasr-settings-functions.php:460
553
  msgid "Wich set do you want to edit or remove?"
554
  msgstr "Quale set vuoi modificare o rimuovere"
555
 
556
+ #: ../lib/yasr-settings-functions.php:500
557
+ #: ../lib/yasr-settings-functions.php:618
558
  msgid "Field name"
559
  msgstr "Nome campo"
560
 
561
+ #: ../lib/yasr-settings-functions.php:504
562
+ #: ../lib/yasr-settings-functions.php:622
563
  msgid "Remove"
564
  msgstr "Rimuovi"
565
 
566
+ #: ../lib/yasr-settings-functions.php:546
567
+ #: ../lib/yasr-settings-functions.php:664
568
  msgid "Remove whole set?"
569
  msgstr "Rimuovere l'intero set?"
570
 
571
+ #: ../lib/yasr-settings-functions.php:559
572
+ #: ../lib/yasr-settings-functions.php:677
573
  msgid ""
574
  "If you remove something you will remove all the votes for that set or field. "
575
  "This operation CAN'T BE undone."
577
  "Se rimuovi qualcosa rimuoverai anche i voti per quel set o campo. Questa "
578
  "operazione NON PUÒ ESSERE ANNULLATA"
579
 
580
+ #: ../lib/yasr-settings-functions.php:566
581
+ #: ../lib/yasr-settings-functions.php:684
582
  msgid "You can use up to 9 elements"
583
  msgstr "Puoi usare fino a 9 elementi"
584
 
585
+ #: ../lib/yasr-settings-functions.php:568
586
+ #: ../lib/yasr-settings-functions.php:686
587
  msgid "Add element"
588
  msgstr "Aggiungi elemento"
589
 
590
+ #: ../lib/yasr-settings-functions.php:570
591
+ #: ../lib/yasr-settings-functions.php:688
592
  msgid "Save changes"
593
  msgstr "Salva modifiche"
594
 
595
+ #: ../lib/yasr-settings-functions.php:580
596
  msgid "No Multiple Set were found"
597
  msgstr "Nessun Set Multiplo trovato"
598
 
599
+ #: ../lib/yasr-settings-functions.php:830
600
+ #: ../lib/yasr-settings-functions.php:1098
601
  msgid "Settings Saved"
602
  msgstr "Impostazioni Salvate"
603
 
604
+ #: ../lib/yasr-settings-functions.php:835
605
  msgid "Something goes wrong trying insert set field name. Please report it"
606
  msgstr ""
607
  "Qualcosa è andato storto cercando di inserire un elemento. Per favore "
608
  "segnalalo"
609
 
610
+ #: ../lib/yasr-settings-functions.php:841
611
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
612
  msgstr ""
613
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
614
  "favore segnalalo"
615
 
616
+ #: ../lib/yasr-settings-functions.php:916
617
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
618
  msgstr ""
619
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
620
  "favore segnalalo"
621
 
622
+ #: ../lib/yasr-settings-functions.php:962
623
  msgid ""
624
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
625
  msgstr ""
626
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
627
  "favore segnalalo"
628
 
629
+ #: ../lib/yasr-settings-functions.php:1026
630
  msgid ""
631
  "Something goes wrong trying to update a Multi Set's element. Please report it"
632
  msgstr ""
633
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
634
  "favore segnalalo"
635
 
636
+ #: ../lib/yasr-settings-functions.php:1083
637
  msgid ""
638
  "Something goes wrong trying to insert set field name in edit form. Please "
639
  "report it"
641
  "Qualcosa è andato storto cercando di inserire il campo nel form di modifica. "
642
  "Per favore segnalalo"
643
 
644
+ #: ../lib/yasr-settings-functions.php:1126
645
  msgid "Style Options"
646
  msgstr "Opzioni Stili"
647
 
648
+ #: ../lib/yasr-settings-functions.php:1127
649
  msgid "Custom CSS Styles"
650
  msgstr "Stili CSS Personalizzati"
651
 
652
+ #: ../lib/yasr-settings-functions.php:1132
653
  msgid ""
654
  "Please use text area below to write your own CSS styles to override the "
655
  "default ones."
657
  "Usa l'area di testo sottostante per scrivere le tue regole CSS che "
658
  "sovrascriveranno quelle di default"
659
 
660
+ #: ../lib/yasr-settings-functions.php:1134
661
  msgid "Leave it blank if you don't know what you're doing"
662
  msgstr "Lascialo vuoto se non stai cosa stai facendo"
663
 
664
+ #: ../lib/yasr-settings-functions.php:1167
665
  msgid "No previous Gd Star Rating installation was found"
666
  msgstr "Installazione precedente di Gd Star Rating non stata trovata"
667
 
668
+ #: ../lib/yasr-db-functions.php:267
669
+ msgid "No recenet votes yet"
670
  msgstr "Ancora nessun voto recente"
671
 
672
+ #: ../lib/yasr-db-functions.php:282 ../lib/yasr-ajax-functions.php:757
673
  msgid "anonymous"
674
  msgstr "anonimo"
675
 
676
+ #: ../lib/yasr-db-functions.php:305 ../lib/yasr-ajax-functions.php:780
677
  msgid "Ip address"
678
  msgstr "Indirizzo Ip"
679
 
680
+ #: ../lib/yasr-db-functions.php:346 ../lib/yasr-ajax-functions.php:821
681
  msgid "Pages"
682
  msgstr "Pagine"
683
 
684
+ #: ../lib/yasr-functions.php:97 ../lib/yasr-functions.php:98
685
  msgid "Yet Another Stars Rating: Settings"
686
  msgstr "Yet Another Stars Rating: Impostazioni"
687
 
688
+ #: ../lib/yasr-functions.php:141 ../lib/yasr-functions.php:148
689
  msgid "Overall Rating"
690
  msgstr "Voto Complessivo "
691
 
692
+ #: ../lib/yasr-functions.php:142
693
  msgid "Yet Another Stars Rating: Multiple set"
694
  msgstr "Yet Another Stars Rating: Set Multipli"
695
 
696
+ #: ../lib/yasr-functions.php:158
697
  msgid "You don't have enought privileges to insert Overall Rating"
698
  msgstr "Non hai permessi sufficienti per inserire il Voto Complessivo"
699
 
700
+ #: ../lib/yasr-functions.php:168
701
  msgid "You don't have enought privileges to insert Multi Set"
702
  msgstr "Non hai abbastanza permessi per inserire un Multi Set"
703
 
704
+ #: ../lib/yasr-functions.php:303
705
  msgid " reviewed by "
706
  msgstr " recensito da "
707
 
708
+ #: ../lib/yasr-functions.php:304
709
  msgid " on "
710
  msgstr " il "
711
 
712
+ #: ../lib/yasr-functions.php:305
713
  msgid " rated "
714
  msgstr " votato "
715
 
716
+ #: ../lib/yasr-functions.php:305
717
  msgid " of"
718
  msgstr "su"
719
 
720
+ #: ../lib/yasr-functions.php:360
721
  msgid " written by "
722
  msgstr " scritto da "
723
 
724
+ #: ../lib/yasr-functions.php:362
725
  msgid " average rating "
726
  msgstr " media voto "
727
 
728
+ #: ../lib/yasr-functions.php:363
729
  msgid " user ratings"
730
  msgstr " voti utenti "
731
 
732
+ #: ../lib/yasr-functions.php:469 ../lib/yasr-functions.php:496
733
  msgid "Follow YASR official site!"
734
  msgstr "Segui il sito ufficiale di YASR!"
735
 
736
+ #: ../lib/yasr-functions.php:515
737
  msgid "Looking for more features?"
738
  msgstr "Hai bisogno di più funzioni?"
739
 
740
+ #: ../lib/yasr-functions.php:516
741
  msgid "Upgrade to yasr pro!"
742
  msgstr "Passa a yasr pro!"
743
 
744
+ #: ../lib/yasr-functions.php:595
745
  msgid "Not avaible yet"
746
  msgstr "Non ancora disponibile"
747
 
753
  msgid "You've reset the vote"
754
  msgstr "Hai resettato il voto"
755
 
756
+ #: ../lib/yasr-ajax-functions.php:169
757
  msgid ""
758
  "There was an error while trying to insert the review type. Please report it"
759
  msgstr ""
760
  "Qualcosa è andato storto cercando di inserire un elemento. Per favore "
761
  "segnalalo"
762
 
763
+ #: ../lib/yasr-ajax-functions.php:203
764
  msgid "Choose a vote for each element"
765
  msgstr "Scegli un voto per ogni elemento"
766
 
767
+ #: ../lib/yasr-ajax-functions.php:259 ../lib/yasr-ajax-functions.php:302
768
  msgid "Remember to insert this shortcode"
769
  msgstr "Ricorda di inserire questo shortcode"
770
 
771
+ #: ../lib/yasr-ajax-functions.php:261 ../lib/yasr-ajax-functions.php:304
772
  msgid "where you want to display this multi set"
773
  msgstr "dove vuoi mostrare questo Multi Set"
774
 
775
+ #: ../lib/yasr-ajax-functions.php:269
776
  msgid "Choose a vote for every element"
777
  msgstr "Scegli un voto per ogni elemento"
778
 
779
+ #: ../lib/yasr-ajax-functions.php:428
780
  msgid "Main"
781
  msgstr ""
782
 
783
+ #: ../lib/yasr-ajax-functions.php:429
784
  msgid "Charts"
785
  msgstr "Classifiche"
786
 
787
+ #: ../lib/yasr-ajax-functions.php:431
788
  msgid "Read the doc"
789
  msgstr "Leggi la documentazione"
790
 
791
+ #: ../lib/yasr-ajax-functions.php:440
792
  msgid "Overall Rating / Review"
793
  msgstr "Voto Complessivo"
794
 
795
+ #: ../lib/yasr-ajax-functions.php:442
796
  msgid "Insert Overall Rating"
797
  msgstr "Inserisci Voto Complessivo"
798
 
799
+ #: ../lib/yasr-ajax-functions.php:443
800
  msgid "Insert Overall Rating / Review for this post"
801
  msgstr "Inserisci Voto Complessivo / Recensione per questo post"
802
 
803
+ #: ../lib/yasr-ajax-functions.php:446 ../lib/yasr-ajax-functions.php:464
804
  msgid "Choose Size"
805
  msgstr "Scegli la grandezza"
806
 
807
+ #: ../lib/yasr-ajax-functions.php:460
808
  msgid "Insert Visitor Votes"
809
  msgstr "Inserisci Voti Utenti"
810
 
811
+ #: ../lib/yasr-ajax-functions.php:461
812
  msgid "Insert the ability for your visitor to vote"
813
  msgstr "Permetti ai tuoi visitatori di votare"
814
 
815
+ #: ../lib/yasr-ajax-functions.php:478
816
  msgid "If you want to insert a Multi Set, pick one:"
817
  msgstr "Se vuoi inserire un Set Multiplo, scegline uno:"
818
 
819
+ #: ../lib/yasr-ajax-functions.php:484
820
  msgid "Choose wich set you want to insert."
821
  msgstr "Scegli quale Set Multiplo inserire"
822
 
823
+ #: ../lib/yasr-ajax-functions.php:492
824
  msgid "Insert Multiset:"
825
  msgstr "Inserisci Set Multiplo:"
826
 
827
+ #: ../lib/yasr-ajax-functions.php:495
828
  msgid "Insert Multiple Set"
829
  msgstr "Inserisci Set Multiplo"
830
 
831
+ #: ../lib/yasr-ajax-functions.php:496
832
  msgid "Insert multiple set in this post ?"
833
  msgstr "Vuoi inserire il Set Multiplo per questo post ?"
834
 
835
+ #: ../lib/yasr-ajax-functions.php:511
836
  msgid "Ranking reviews"
837
  msgstr "Classifica recensioni"
838
 
839
+ #: ../lib/yasr-ajax-functions.php:512
840
  msgid "Insert Ranking reviews"
841
  msgstr "Classifica recensioni"
842
 
843
+ #: ../lib/yasr-ajax-functions.php:513
844
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
845
  msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_overall_rating]"
846
 
847
+ #: ../lib/yasr-ajax-functions.php:517
848
  msgid "Users' ranking"
849
  msgstr "Classifica degli utenti"
850
 
851
+ #: ../lib/yasr-ajax-functions.php:518
852
  msgid "Insert Users ranking"
853
  msgstr "Inserisci Classifica Utenti"
854
 
855
+ #: ../lib/yasr-ajax-functions.php:519
856
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
857
  msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_visitor_votes]"
858
 
859
+ #: ../lib/yasr-ajax-functions.php:523
860
  msgid "Most active reviewers"
861
  msgstr "Recensori più attivi"
862
 
863
+ #: ../lib/yasr-ajax-functions.php:524
864
  msgid "Insert Most Active Reviewers"
865
  msgstr "Inserisci i 5 recensori più attivi"
866
 
867
+ #: ../lib/yasr-ajax-functions.php:525
868
  msgid "Insert Top 5 active reviewers"
869
  msgstr "Inserisci i 5 recensori più attivi"
870
 
871
+ #: ../lib/yasr-ajax-functions.php:529
872
  msgid "Most Active Users"
873
  msgstr "Utenti più attivi"
874
 
875
+ #: ../lib/yasr-ajax-functions.php:530
876
  msgid "Insert Most Active Users"
877
  msgstr "Inserisci i 10 utenti più attivi"
878
 
879
+ #: ../lib/yasr-ajax-functions.php:531
880
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
881
  msgstr "Inserisci i 10 utenti più attivi in [yasr_visitor_votes]"
882
 
883
+ #: ../lib/yasr-ajax-functions.php:602
884
  msgid "Reviews and Visitor Votes have been successfull imported."
885
  msgstr "Recensioni e Voti utenti sono stati importati con successo."
886
 
887
+ #: ../lib/yasr-ajax-functions.php:608
888
  msgid ""
889
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
890
  "THIS MAY TAKE A WHILE!"
892
  "Step2: Contrellerò se hai usato Set Multipli e se li trovo l'importerò: PUÒ "
893
  "RICHIEDERE UN PÒ DI TEMPO!"
894
 
895
+ #: ../lib/yasr-ajax-functions.php:610
896
  msgid "Proceed Step 2"
897
  msgstr "Procedi Step 2"
898
 
899
+ #: ../lib/yasr-ajax-functions.php:617
900
  msgid "Something goes wrong! Refresh the page and try again!"
901
  msgstr "Qualcosa è andato storto! Aggiorna la pagina e prova ancora!"
902
 
903
+ #: ../lib/yasr-ajax-functions.php:646
904
  msgid "I've found Multiple Set! Importing..."
905
  msgstr "Set Multipli trovati! Importazione..."
906
 
907
+ #: ../lib/yasr-ajax-functions.php:655
908
  msgid "Multi Set's name has been successfull imported."
909
  msgstr "I nomi dei Set Multipli sono stati importati con successo"
910
 
911
+ #: ../lib/yasr-ajax-functions.php:657
912
  msgid "Now I'm going to import Multi Set data"
913
  msgstr "Ora importerò i dati dei Set Multipli"
914
 
915
+ #: ../lib/yasr-ajax-functions.php:668
916
  msgid "All votes has been successfull imported."
917
  msgstr "Tutti i voti sono stati importati con successo"
918
 
919
+ #: ../lib/yasr-ajax-functions.php:670
920
  msgid "Done"
921
  msgstr "Fatto"
922
 
923
+ #: ../lib/yasr-ajax-functions.php:675
924
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
925
  msgstr "Ho trovato i voti per i Set Multi ma non li ho potuti inserire nel db"
926
 
927
+ #: ../lib/yasr-ajax-functions.php:683
928
  msgid "I've found Multi Set but with no data"
929
  msgstr "ho trovato Set Multipli ma senza dati"
930
 
931
+ #: ../lib/yasr-ajax-functions.php:692
932
  msgid "I've found Multi Sets names but I couldn't insert into db"
933
  msgstr "Ho trovato Set Multipli ma non li ho potuti inserire nel db"
934
 
935
+ #: ../lib/yasr-ajax-functions.php:700
936
  msgid "Multisets were not found. Imported is done!"
937
  msgstr "Set Multipli non trovati. Importazione dati conclusa!"
938
 
939
+ #: ../lib/yasr-ajax-functions.php:744
940
+ msgid "No Recenet votes yet"
941
+ msgstr "Ancora nessun voto recente"
942
+
943
+ #: ../lib/yasr-ajax-functions.php:903 ../lib/yasr-ajax-functions.php:1032
944
  msgid "Error: you can't vote 0"
945
  msgstr "Errore: non puoi votare 0"
946
 
947
+ #: ../lib/yasr-ajax-functions.php:994 ../lib/yasr-ajax-functions.php:1002
948
  msgid "Average rating"
949
  msgstr "Media Voto "
950
 
951
+ #: ../lib/yasr-ajax-functions.php:995 ../lib/yasr-ajax-functions.php:1003
952
  msgid "Vote Saved"
953
  msgstr "Voto Salvato"
954
 
955
+ #: ../lib/yasr-ajax-functions.php:1118
956
+ msgid "Vote updated"
 
957
  msgstr "Voto Aggiornato"
958
 
959
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
960
  msgid "Average "
961
  msgstr "Media Voto "
962
 
languages/yasr-nl_NL.mo CHANGED
Binary file
languages/yasr-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Yet Another Stars Rating v0.6.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-10-22 16:20+0100\n"
6
- "PO-Revision-Date: 2014-10-22 16:20+0100\n"
7
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
8
  "Language-Team: NL\n"
9
  "Language: nl_NL\n"
@@ -21,9 +21,9 @@ msgstr ""
21
  "X-Poedit-SearchPath-1: ../lib\n"
22
 
23
  # @ yasr
24
- #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
25
- #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:196
26
- #: ../lib/yasr-ajax-functions.php:335 ../lib/yasr-ajax-functions.php:717
27
  msgid "You do not have sufficient permissions to access this page."
28
  msgstr "Je hebt niet voldoende rechten om deze pagina te laden."
29
 
@@ -52,7 +52,7 @@ msgid "Pro Features!"
52
  msgstr ""
53
 
54
  # @ default
55
- #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:279
56
  msgid "Save"
57
  msgstr "Opslaan"
58
 
@@ -122,17 +122,17 @@ msgstr ""
122
  "duren!"
123
 
124
  # @ yasr
125
- #: ../yasr-settings-page.php:197
126
  msgid "Manage Multi Set"
127
  msgstr "Beheren Multi Set"
128
 
129
  # @ yasr
130
- #: ../yasr-settings-page.php:201
131
  msgid "What is a Multi Set?"
132
  msgstr "Wat is een Multi Set?"
133
 
134
  # @ yasr
135
- #: ../yasr-settings-page.php:206
136
  msgid ""
137
  "Multi Set allows you to insert a rate for each aspect about the product / "
138
  "local business / whetever you're reviewing, example in the image below."
@@ -142,7 +142,7 @@ msgstr ""
142
  "voorbeeld is in de afbeelding hieronder."
143
 
144
  # @ yasr
145
- #: ../yasr-settings-page.php:210
146
  msgid ""
147
  "You can create up to 99 different Multi Set and each one can contain up to 9 "
148
  "different fields. Once you've saved it, you can insert the rates while "
@@ -156,7 +156,7 @@ msgstr ""
156
  "groter te maken)"
157
 
158
  # @ yasr
159
- #: ../yasr-settings-page.php:214
160
  msgid ""
161
  "In order to insert your Multi Sets into a post or page, you can either past "
162
  "the short code that will appear at the bottom of the box or just click on "
@@ -167,19 +167,19 @@ msgstr ""
167
  "klikken op de ster in de tekstverwerker en \"Invoegen Multi Set\" selecteren."
168
 
169
  # @ yasr
170
- #: ../yasr-settings-page.php:220
171
  msgid "Close this message"
172
  msgstr "Sluit dit bericht"
173
 
174
  # @ yasr
175
- #: ../yasr-settings-page.php:249 ../lib/yasr-functions.php:446
176
- #: ../lib/yasr-functions.php:472
177
  msgid "Donations"
178
  msgstr "Donaties"
179
 
180
  # @ yasr
181
- #: ../yasr-settings-page.php:251 ../lib/yasr-functions.php:448
182
- #: ../lib/yasr-functions.php:474
183
  msgid ""
184
  "If you have found this plugin useful, please consider making a donation to "
185
  "help support future development. Your support will be much appreciated. "
@@ -188,8 +188,8 @@ msgstr ""
188
  "verdere ontwikkeling te ondersteunen. Je steun wordt erg gewaardeerd."
189
 
190
  # @ yasr
191
- #: ../yasr-settings-page.php:253 ../lib/yasr-functions.php:450
192
- #: ../lib/yasr-functions.php:476
193
  msgid "Thank you!"
194
  msgstr "Bedankt."
195
 
@@ -202,7 +202,7 @@ msgstr "Kies welke set je wilt gebruiken"
202
  # @ yasr
203
  #: ../yasr-metabox-multiple-rating.php:46
204
  #: ../yasr-metabox-overall-rating.php:193
205
- #: ../lib/yasr-settings-functions.php:431
206
  msgid "Select"
207
  msgstr "Selecteren"
208
 
@@ -213,7 +213,7 @@ msgstr "Stem op dit artikel of item"
213
 
214
  # @ yasr
215
  #: ../yasr-metabox-overall-rating.php:71
216
- #: ../lib/yasr-shortcode-functions.php:152
217
  msgid "Loading, please wait"
218
  msgstr "Laden, even wachten svp."
219
 
@@ -237,142 +237,152 @@ msgstr ""
237
  "voegen waar je deze stemming wilt tonen"
238
 
239
  # @ yasr
240
- #: ../lib/yasr-shortcode-functions.php:197
241
- #: ../lib/yasr-shortcode-functions.php:209
242
  #: ../lib/yasr-shortcode-functions.php:214
243
- #: ../lib/yasr-shortcode-functions.php:229
244
- #: ../lib/yasr-shortcode-functions.php:234
245
- #: ../lib/yasr-shortcode-functions.php:254
246
- #: ../lib/yasr-shortcode-functions.php:265
247
  #: ../lib/yasr-shortcode-functions.php:271
248
- #: ../lib/yasr-shortcode-functions.php:286
249
- #: ../lib/yasr-shortcode-functions.php:292 ../lib/yasr-ajax-functions.php:979
250
- #: ../lib/yasr-ajax-functions.php:987 ../lib/yasr-ajax-functions.php:1086
251
- #: ../lib/yasr-ajax-functions.php:1094 ../lib/yasr-ajax-functions.php:1102
252
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
 
253
  msgid "Total: "
254
  msgstr "Totaal: "
255
 
256
  # @ yasr
257
- #: ../lib/yasr-shortcode-functions.php:197
258
- #: ../lib/yasr-shortcode-functions.php:209
259
  #: ../lib/yasr-shortcode-functions.php:214
260
- #: ../lib/yasr-shortcode-functions.php:229
261
- #: ../lib/yasr-shortcode-functions.php:234
262
- #: ../lib/yasr-shortcode-functions.php:254
263
- #: ../lib/yasr-shortcode-functions.php:265
264
  #: ../lib/yasr-shortcode-functions.php:271
265
- #: ../lib/yasr-shortcode-functions.php:286
266
- #: ../lib/yasr-shortcode-functions.php:292
 
 
267
  msgid "Average: "
268
  msgstr "Gemiddelde: "
269
 
270
  # @ yasr
271
- #: ../lib/yasr-shortcode-functions.php:198
272
- #: ../lib/yasr-shortcode-functions.php:255
273
  msgid "You've already voted this article with"
274
  msgstr "Je hebt al op dit artikel gestemd met"
275
 
276
  # @ yasr
277
- #: ../lib/yasr-shortcode-functions.php:287
278
- #: ../lib/yasr-shortcode-functions.php:293
279
  msgid "You must sign to vote"
280
  msgstr "Je moet inloggen om te stemmen"
281
 
282
  # @ yasr
283
- #: ../lib/yasr-shortcode-functions.php:317
284
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
285
  msgstr "'slecht', 'matig', 'OK', 'goed', 'fantastisch'"
286
 
287
  # @ yasr
288
- #: ../lib/yasr-shortcode-functions.php:424
289
  msgid "Rating"
290
  msgstr "Stemming"
291
 
292
  # @ yasr
293
- #: ../lib/yasr-shortcode-functions.php:438
294
  msgid "You don't have any votes stored"
295
  msgstr "Je hebt geen opgeslagen stemmen"
296
 
297
- #: ../lib/yasr-shortcode-functions.php:474
298
- #: ../lib/yasr-shortcode-functions.php:512
299
  msgid "Post / Page"
300
  msgstr "Bericht / Pagina"
301
 
302
  # @ yasr
303
- #: ../lib/yasr-shortcode-functions.php:475
304
- #: ../lib/yasr-shortcode-functions.php:513
305
  msgid "Order By"
306
  msgstr "Sorteer Op"
307
 
308
  # @ yasr
309
- #: ../lib/yasr-shortcode-functions.php:475
310
- #: ../lib/yasr-shortcode-functions.php:513
311
  msgid "Most Rated"
312
  msgstr "Meeste op Gestemd"
313
 
314
  # @ yasr
315
- #: ../lib/yasr-shortcode-functions.php:475
316
- #: ../lib/yasr-shortcode-functions.php:513
317
  msgid "Highest Rated"
318
  msgstr "Hoogste Stemming"
319
 
320
  # @ yasr
321
- #: ../lib/yasr-shortcode-functions.php:492
322
- #: ../lib/yasr-shortcode-functions.php:527
323
  msgid "Total:"
324
  msgstr "Totaal:"
325
 
326
  # @ yasr
327
- #: ../lib/yasr-shortcode-functions.php:492
328
- #: ../lib/yasr-shortcode-functions.php:527
329
  msgid "Average"
330
  msgstr "Gemiddelde"
331
 
332
  # @ yasr
333
- #: ../lib/yasr-shortcode-functions.php:504
334
- #: ../lib/yasr-shortcode-functions.php:539
 
 
 
 
 
335
  msgid "You've not enought data"
336
  msgstr "Je hebt niet genoeg gegevens"
337
 
338
  # @ default
339
- #: ../lib/yasr-shortcode-functions.php:624
 
340
  msgid ""
341
- "Problem while retriving the top 5 most active reviewers. Did you published "
342
  "any review?"
343
  msgstr ""
344
  "Probleem tijdens het ophalen van de 5 meest actieve recensenten. Heb je wel "
345
  "een recensie gepubliceerd?"
346
 
347
  # @ default
348
- #: ../lib/yasr-shortcode-functions.php:692
 
349
  msgid ""
350
- "Problem while retriving the top 10 active users chart. Are you sure you have "
351
- "votes to show?"
352
  msgstr ""
353
  "Probleem tijdens het ophalen van de grafiek van de top 10 actieve "
354
  "gebruikers. Weet je zeker dat je wel stemmen hebt om te tonen?"
355
 
356
  # @ yasr
357
- #: ../lib/yasr-settings-functions.php:50
358
  msgid "General settings"
359
  msgstr "Algemene instellingen"
360
 
361
  # @ yasr
362
- #: ../lib/yasr-settings-functions.php:51
363
  msgid "Auto insert options"
364
  msgstr "Auto invoegopties"
365
 
366
  # @ yasr
367
- #: ../lib/yasr-settings-functions.php:52
368
  msgid "Show \"Overall Rating\" in Home Page?"
369
  msgstr "Toon \"Algemene Stemming\" op de Voorpagina?"
370
 
371
  # @ yasr
372
- #: ../lib/yasr-settings-functions.php:53
373
  msgid "Insert custom text to show before / after stars"
374
  msgstr "Invoegen aangepaste tekst om voor / na de sterren te tonen"
375
 
 
 
 
 
376
  # @ yasr
377
  #: ../lib/yasr-settings-functions.php:54
378
  msgid "Which color scheme do you want to use?"
@@ -401,18 +411,20 @@ msgstr "Gebruik Auto Invoegen?"
401
  # @ yasr
402
  #: ../lib/yasr-settings-functions.php:74
403
  #: ../lib/yasr-settings-functions.php:143
404
- #: ../lib/yasr-settings-functions.php:162
405
- #: ../lib/yasr-settings-functions.php:195
406
- #: ../lib/yasr-settings-functions.php:227
 
407
  msgid "Yes"
408
  msgstr "Ja"
409
 
410
  # @ yasr
411
  #: ../lib/yasr-settings-functions.php:88
412
  #: ../lib/yasr-settings-functions.php:148
413
- #: ../lib/yasr-settings-functions.php:167
414
- #: ../lib/yasr-settings-functions.php:200
415
- #: ../lib/yasr-settings-functions.php:232
 
416
  msgid "No"
417
  msgstr "Nee"
418
 
@@ -427,7 +439,7 @@ msgid "Overall Rating / Author Rating"
427
  msgstr "Algemene Stemming / Auteur Stemming"
428
 
429
  # @ yasr
430
- #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
431
  msgid "Visitor Votes"
432
  msgstr "Bezoekersstemmen"
433
 
@@ -457,20 +469,20 @@ msgid "Size"
457
  msgstr "Afmeting"
458
 
459
  # @ yasr
460
- #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
461
- #: ../lib/yasr-ajax-functions.php:470
462
  msgid "Small"
463
  msgstr "Klein"
464
 
465
  # @ yasr
466
- #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
467
- #: ../lib/yasr-ajax-functions.php:471
468
  msgid "Medium"
469
  msgstr "Gemiddeld"
470
 
471
  # @ yasr
472
- #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
473
- #: ../lib/yasr-ajax-functions.php:472
474
  msgid "Large"
475
  msgstr "Groot"
476
 
@@ -480,23 +492,23 @@ msgid "Exclude Pages?"
480
  msgstr "Negeer Pagina's"
481
 
482
  # @ yasr
483
- #: ../lib/yasr-settings-functions.php:159
484
  msgid "Use only in custom post types?"
485
  msgstr "Alleen gebruiken in custom post types?"
486
 
487
  # @ yasr
488
- #: ../lib/yasr-settings-functions.php:171
489
  msgid "You see this because you use custom post types."
490
  msgstr "Je ziet dit omdat je custom post types gebruikt."
491
 
492
  # @ yasr
493
- #: ../lib/yasr-settings-functions.php:173
494
  msgid "If you want to use auto insert only in custom post types, choose Yes"
495
  msgstr ""
496
  "Als je auto invoegen alleen wilt gebruiken bij custom post types, kies Ja"
497
 
498
  # @ yasr
499
- #: ../lib/yasr-settings-functions.php:204
500
  msgid ""
501
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
502
  "article or page, but also in pages like Home Page, category pages or "
@@ -507,74 +519,80 @@ msgstr ""
507
  "categoriepagina's of archiefpagina's."
508
 
509
  # @ yasr
510
- #: ../lib/yasr-settings-functions.php:237
511
  msgid "Custom text to display before Overall Rating"
512
  msgstr "Aangepaste tekst om te tonen voor Algemene Stemming"
513
 
514
  # @ yasr
515
- #: ../lib/yasr-settings-functions.php:242
516
  msgid "Custom text to display before Visitor Rating"
517
  msgstr "Aangepaste tekst om te tonen voor Bezoekersstemming"
518
 
519
  # @ yasr
520
- #: ../lib/yasr-settings-functions.php:247
521
  msgid "Custom text to display when a non logged user has already rated"
522
  msgstr ""
523
  "Aangepaste tekst om te tonen wanneer een niet-ingelogde gebruiker al gestemd "
524
  "heeft"
525
 
 
 
 
 
 
 
526
  # @ yasr
527
- #: ../lib/yasr-settings-functions.php:263
528
  msgid "Light"
529
  msgstr "Licht"
530
 
531
  # @ yasr
532
- #: ../lib/yasr-settings-functions.php:268
533
  msgid "Dark"
534
  msgstr "Donker"
535
 
536
  # @ yasr
537
- #: ../lib/yasr-settings-functions.php:273
538
  msgid "Preview"
539
  msgstr "Voorvertoning"
540
 
541
  # @ yasr
542
- #: ../lib/yasr-settings-functions.php:278
543
  msgid "Light theme"
544
  msgstr "Licht Thema"
545
 
546
  # @ yasr
547
- #: ../lib/yasr-settings-functions.php:283
548
  msgid "Dark Theme"
549
  msgstr "Donker Thema"
550
 
551
  # @ yasr
552
- #: ../lib/yasr-settings-functions.php:301
553
  msgid "Allow only logged-in users"
554
  msgstr "Alleen ingelogde gebruikers toestaan"
555
 
556
  # @ yasr
557
- #: ../lib/yasr-settings-functions.php:305
558
  msgid "Allow everybody (logged in and anonymous)"
559
  msgstr "Sta iedereen toe (ingelogd en anoniem)"
560
 
561
  # @ yasr
562
- #: ../lib/yasr-settings-functions.php:322
563
  msgid "Review Rating"
564
  msgstr "Recensie Stemming"
565
 
566
  # @ yasr
567
- #: ../lib/yasr-settings-functions.php:326
568
  msgid "Aggregate Rating"
569
  msgstr "Cumulatieve Stemming"
570
 
571
  # @ yasr
572
- #: ../lib/yasr-settings-functions.php:331
573
  msgid "What is this?"
574
  msgstr "Wat is dit?"
575
 
576
  # @ yasr
577
- #: ../lib/yasr-settings-functions.php:336
578
  msgid ""
579
  "If you select \"Review Rating\", your site will be indexed from search "
580
  "engines like this: "
@@ -583,7 +601,7 @@ msgstr ""
583
  "zoekmachines als volgt: "
584
 
585
  # @ yasr
586
- #: ../lib/yasr-settings-functions.php:341
587
  msgid ""
588
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
589
  "this"
@@ -592,22 +610,22 @@ msgstr ""
592
  "site ook geïndexeerd als volgt:"
593
 
594
  # @ yasr
595
- #: ../lib/yasr-settings-functions.php:359
596
  msgid "Stars"
597
  msgstr "Sterren"
598
 
599
  # @ yasr
600
- #: ../lib/yasr-settings-functions.php:363
601
  msgid "Numbers"
602
  msgstr "Getallen"
603
 
604
  # @ yasr
605
- #: ../lib/yasr-settings-functions.php:376
606
  msgid "Add New Multiple Set"
607
  msgstr "Toevoegen Nieuwe Multi Set"
608
 
609
  # @ yasr
610
- #: ../lib/yasr-settings-functions.php:377
611
  msgid ""
612
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
613
  "characters"
@@ -616,57 +634,58 @@ msgstr ""
616
  "lang zijn"
617
 
618
  # @ yasr
619
- #: ../lib/yasr-settings-functions.php:380
620
  msgid "Name"
621
  msgstr "Naam"
622
 
623
  # @ yasr
624
- #: ../lib/yasr-settings-functions.php:385
625
- msgid "You can insert up to nine element"
 
626
  msgstr "Je kunt tot 9 elementen invoegen"
627
 
628
  # @ yasr
629
- #: ../lib/yasr-settings-functions.php:390
630
  msgid "Element "
631
  msgstr "Element"
632
 
633
  # @ yasr
634
- #: ../lib/yasr-settings-functions.php:400
635
  msgid "Create New Set"
636
  msgstr "Aanmaken Nieuwe Set"
637
 
638
  # @ yasr
639
- #: ../lib/yasr-settings-functions.php:421
640
- #: ../lib/yasr-settings-functions.php:453
641
  msgid "Manage Multiple Set"
642
  msgstr "Beheer Multi Set"
643
 
644
  # @ yasr
645
- #: ../lib/yasr-settings-functions.php:423
646
  msgid "Wich set do you want to edit or remove?"
647
  msgstr "Welke set wil je bewerken of verwijderen?"
648
 
649
  # @ yasr
650
- #: ../lib/yasr-settings-functions.php:463
651
- #: ../lib/yasr-settings-functions.php:581
652
  msgid "Field name"
653
  msgstr "Veldnaam"
654
 
655
  # @ yasr
656
- #: ../lib/yasr-settings-functions.php:467
657
- #: ../lib/yasr-settings-functions.php:585
658
  msgid "Remove"
659
  msgstr "Verwijderen"
660
 
661
  # @ yasr
662
- #: ../lib/yasr-settings-functions.php:509
663
- #: ../lib/yasr-settings-functions.php:627
664
  msgid "Remove whole set?"
665
  msgstr "Verwijder hele set?"
666
 
667
  # @ yasr
668
- #: ../lib/yasr-settings-functions.php:522
669
- #: ../lib/yasr-settings-functions.php:640
670
  msgid ""
671
  "If you remove something you will remove all the votes for that set or field. "
672
  "This operation CAN'T BE undone."
@@ -675,57 +694,57 @@ msgstr ""
675
  "veld. Deze handeling kan NIET ongedaan gemaakt worden."
676
 
677
  # @ yasr
678
- #: ../lib/yasr-settings-functions.php:529
679
- #: ../lib/yasr-settings-functions.php:647
680
  msgid "You can use up to 9 elements"
681
  msgstr "Je kunt tot 9 elementen gebruiken"
682
 
683
  # @ yasr
684
- #: ../lib/yasr-settings-functions.php:531
685
- #: ../lib/yasr-settings-functions.php:649
686
  msgid "Add element"
687
  msgstr "Toevoegen element"
688
 
689
  # @ yasr
690
- #: ../lib/yasr-settings-functions.php:533
691
- #: ../lib/yasr-settings-functions.php:651
692
  msgid "Save changes"
693
  msgstr "Opslaan"
694
 
695
  # @ yasr
696
- #: ../lib/yasr-settings-functions.php:543
697
  msgid "No Multiple Set were found"
698
  msgstr "Geen Multi Set gevonden"
699
 
700
  # @ yasr
701
- #: ../lib/yasr-settings-functions.php:793
702
- #: ../lib/yasr-settings-functions.php:1061
703
  msgid "Settings Saved"
704
  msgstr "Instellingen Opgeslagen"
705
 
706
  # @ yasr
707
- #: ../lib/yasr-settings-functions.php:798
708
  msgid "Something goes wrong trying insert set field name. Please report it"
709
  msgstr ""
710
  "Er ging iets mis tijdens het invoegen van de veldnaam. Graag aangeven bij de "
711
  "maker"
712
 
713
  # @ yasr
714
- #: ../lib/yasr-settings-functions.php:804
715
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
716
  msgstr ""
717
  "Er ging iets mis tijdens het invoegen van de Multi Set naam. Graag aangeven "
718
  "bij de maker"
719
 
720
  # @ yasr
721
- #: ../lib/yasr-settings-functions.php:879
722
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
723
  msgstr ""
724
  "Er ging iets mis tijdens het verwijderen van een Multi Set. Graag aangeven "
725
  "bij de maker"
726
 
727
  # @ yasr
728
- #: ../lib/yasr-settings-functions.php:925
729
  msgid ""
730
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
731
  msgstr ""
@@ -733,7 +752,7 @@ msgstr ""
733
  "aangeven bij de maker"
734
 
735
  # @ yasr
736
- #: ../lib/yasr-settings-functions.php:989
737
  msgid ""
738
  "Something goes wrong trying to update a Multi Set's element. Please report it"
739
  msgstr ""
@@ -741,7 +760,7 @@ msgstr ""
741
  "aangeven bij de maker"
742
 
743
  # @ yasr
744
- #: ../lib/yasr-settings-functions.php:1046
745
  msgid ""
746
  "Something goes wrong trying to insert set field name in edit form. Please "
747
  "report it"
@@ -750,17 +769,17 @@ msgstr ""
750
  "formulier. Graag aangeven bij de maker"
751
 
752
  # @ yasr
753
- #: ../lib/yasr-settings-functions.php:1089
754
  msgid "Style Options"
755
  msgstr "Opmaak Opties"
756
 
757
  # @ yasr
758
- #: ../lib/yasr-settings-functions.php:1090
759
  msgid "Custom CSS Styles"
760
  msgstr "Aangepaste CSS Opmaak"
761
 
762
  # @ yasr
763
- #: ../lib/yasr-settings-functions.php:1095
764
  msgid ""
765
  "Please use text area below to write your own CSS styles to override the "
766
  "default ones."
@@ -769,108 +788,109 @@ msgstr ""
769
  "standaard opmaak te overschrijven. "
770
 
771
  # @ yasr
772
- #: ../lib/yasr-settings-functions.php:1097
773
  msgid "Leave it blank if you don't know what you're doing"
774
  msgstr "Laat het leeg als je niet weet wat dit is."
775
 
776
  # @ yasr
777
- #: ../lib/yasr-settings-functions.php:1130
778
  msgid "No previous Gd Star Rating installation was found"
779
  msgstr "Geen eerdere Gd Star Rating installatie gevonden"
780
 
781
  # @ yasr
782
- #: ../lib/yasr-db-functions.php:267 ../lib/yasr-ajax-functions.php:729
783
- msgid "No Recenet votes yet"
 
784
  msgstr "Geen Recente stemmen nog"
785
 
786
  # @ default
787
- #: ../lib/yasr-db-functions.php:282 ../lib/yasr-ajax-functions.php:742
788
  msgid "anonymous"
789
  msgstr "anoniem"
790
 
791
  # @ yasr
792
- #: ../lib/yasr-db-functions.php:305 ../lib/yasr-ajax-functions.php:765
793
  msgid "Ip address"
794
  msgstr "Ipadres"
795
 
796
  # @ yasr
797
- #: ../lib/yasr-db-functions.php:346 ../lib/yasr-ajax-functions.php:806
798
  msgid "Pages"
799
  msgstr "Pagina's"
800
 
801
  # @ yasr
802
- #: ../lib/yasr-functions.php:86 ../lib/yasr-functions.php:87
803
  msgid "Yet Another Stars Rating: Settings"
804
  msgstr "Yet Another Stars Rating: Instellingen"
805
 
806
  # @ yasr
807
- #: ../lib/yasr-functions.php:130 ../lib/yasr-functions.php:137
808
  msgid "Overall Rating"
809
  msgstr "Algemene Stemming"
810
 
811
  # @ yasr
812
- #: ../lib/yasr-functions.php:131
813
  msgid "Yet Another Stars Rating: Multiple set"
814
  msgstr "Yet Another Stars Rating: Multi Sets"
815
 
816
  # @ default
817
- #: ../lib/yasr-functions.php:147
818
  msgid "You don't have enought privileges to insert Overall Rating"
819
  msgstr "Je hebt niet genoeg rechten om Algemene Stemming in te voegen"
820
 
821
  # @ default
822
- #: ../lib/yasr-functions.php:157
823
  msgid "You don't have enought privileges to insert Multi Set"
824
  msgstr "Je hebt niet genoeg rechten om Multi Set in te voegen"
825
 
826
  # @ yasr
827
- #: ../lib/yasr-functions.php:292
828
  msgid " reviewed by "
829
  msgstr "gerecenseerd door"
830
 
831
  # @ yasr
832
- #: ../lib/yasr-functions.php:293
833
  msgid " on "
834
  msgstr "op"
835
 
836
  # @ yasr
837
- #: ../lib/yasr-functions.php:294
838
  msgid " rated "
839
  msgstr "gestemd"
840
 
841
- #: ../lib/yasr-functions.php:294
842
  msgid " of"
843
  msgstr "van"
844
 
845
  # @ yasr
846
- #: ../lib/yasr-functions.php:349
847
  msgid " written by "
848
  msgstr "geschreven door "
849
 
850
  # @ yasr
851
- #: ../lib/yasr-functions.php:351
852
  msgid " average rating "
853
  msgstr " gemiddelde stemming"
854
 
855
  # @ yasr
856
- #: ../lib/yasr-functions.php:352
857
  msgid " user ratings"
858
  msgstr "gebruikersstemmen"
859
 
860
  # @ yasr
861
- #: ../lib/yasr-functions.php:458 ../lib/yasr-functions.php:485
862
  msgid "Follow YASR official site!"
863
  msgstr "Volg de YASR officiële site"
864
 
865
- #: ../lib/yasr-functions.php:504
866
  msgid "Looking for more features?"
867
  msgstr ""
868
 
869
- #: ../lib/yasr-functions.php:505
870
  msgid "Upgrade to yasr pro!"
871
  msgstr ""
872
 
873
- #: ../lib/yasr-functions.php:584
874
  msgid "Not avaible yet"
875
  msgstr ""
876
 
@@ -885,7 +905,7 @@ msgid "You've reset the vote"
885
  msgstr "Je hebt de stem ingetrokken"
886
 
887
  # @ yasr
888
- #: ../lib/yasr-ajax-functions.php:170
889
  msgid ""
890
  "There was an error while trying to insert the review type. Please report it"
891
  msgstr ""
@@ -893,162 +913,162 @@ msgstr ""
893
  "bij de maker"
894
 
895
  # @ yasr
896
- #: ../lib/yasr-ajax-functions.php:207
897
  msgid "Choose a vote for each element"
898
  msgstr "Kies een stem voor ieder element"
899
 
900
  # @ yasr
901
- #: ../lib/yasr-ajax-functions.php:263 ../lib/yasr-ajax-functions.php:306
902
  msgid "Remember to insert this shortcode"
903
  msgstr "Vergeet niet deze shortcode in te voegen"
904
 
905
  # @ yasr
906
- #: ../lib/yasr-ajax-functions.php:265 ../lib/yasr-ajax-functions.php:308
907
  msgid "where you want to display this multi set"
908
  msgstr "waar je deze multi set wilt tonen"
909
 
910
  # @ yasr
911
- #: ../lib/yasr-ajax-functions.php:273
912
  msgid "Choose a vote for every element"
913
  msgstr "Kies een stem voor ieder element"
914
 
915
  # @ yasr
916
- #: ../lib/yasr-ajax-functions.php:432
917
  msgid "Main"
918
  msgstr "Hoofd"
919
 
920
  # @ yasr
921
- #: ../lib/yasr-ajax-functions.php:433
922
  msgid "Charts"
923
  msgstr "Grafieken"
924
 
925
  # @ yasr
926
- #: ../lib/yasr-ajax-functions.php:435
927
  msgid "Read the doc"
928
  msgstr "Lees de documentatie"
929
 
930
  # @ yasr
931
- #: ../lib/yasr-ajax-functions.php:444
932
  msgid "Overall Rating / Review"
933
  msgstr "Algemene Stemming / Recensie"
934
 
935
  # @ yasr
936
- #: ../lib/yasr-ajax-functions.php:446
937
  msgid "Insert Overall Rating"
938
  msgstr "Voeg Algemene Stemming in"
939
 
940
  # @ yasr
941
- #: ../lib/yasr-ajax-functions.php:447
942
  msgid "Insert Overall Rating / Review for this post"
943
  msgstr "Voeg Algemene Stemming / Recensie voor dit bericht in"
944
 
945
  # @ yasr
946
- #: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
947
  msgid "Choose Size"
948
  msgstr "Kies Grootte"
949
 
950
  # @ yasr
951
- #: ../lib/yasr-ajax-functions.php:464
952
  msgid "Insert Visitor Votes"
953
  msgstr "Invoegen Bezoekersstemmen"
954
 
955
  # @ yasr
956
- #: ../lib/yasr-ajax-functions.php:465
957
  msgid "Insert the ability for your visitor to vote"
958
  msgstr "Maak het mogelijk voor je bezoekers om te stemmen"
959
 
960
  # @ yasr
961
- #: ../lib/yasr-ajax-functions.php:482
962
  msgid "If you want to insert a Multi Set, pick one:"
963
  msgstr "Als je een Multi Set wilt invoegen, kies er één:"
964
 
965
  # @ yasr
966
- #: ../lib/yasr-ajax-functions.php:488
967
  msgid "Choose wich set you want to insert."
968
  msgstr "Kies welke set je wilt invoegen."
969
 
970
  # @ yasr
971
- #: ../lib/yasr-ajax-functions.php:496
972
  msgid "Insert Multiset:"
973
  msgstr "Invoegen Multi Set:"
974
 
975
  # @ yasr
976
- #: ../lib/yasr-ajax-functions.php:499
977
  msgid "Insert Multiple Set"
978
  msgstr "Invoegen Multi Set"
979
 
980
  # @ yasr
981
- #: ../lib/yasr-ajax-functions.php:500
982
  msgid "Insert multiple set in this post ?"
983
  msgstr "Invoegen Multi Set in dit bericht?"
984
 
985
  # @ yasr
986
- #: ../lib/yasr-ajax-functions.php:515
987
  msgid "Ranking reviews"
988
  msgstr "Ranglijst recensies"
989
 
990
  # @ yasr
991
- #: ../lib/yasr-ajax-functions.php:516
992
  msgid "Insert Ranking reviews"
993
  msgstr "Invoegen Ranglijst recensies"
994
 
995
  # @ yasr
996
- #: ../lib/yasr-ajax-functions.php:517
997
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
998
  msgstr "Invoegen Top 10 ranglijst voor [yasr_overall_rating] shortcode"
999
 
1000
  # @ yasr
1001
- #: ../lib/yasr-ajax-functions.php:521
1002
  msgid "Users' ranking"
1003
  msgstr "Gebruikersranglijst"
1004
 
1005
  # @ yasr
1006
- #: ../lib/yasr-ajax-functions.php:522
1007
  msgid "Insert Users ranking"
1008
  msgstr "Invoegen Gebruikersranglijst"
1009
 
1010
  # @ yasr
1011
- #: ../lib/yasr-ajax-functions.php:523
1012
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
1013
  msgstr "Invoegen Top 10 ranglijst voor [yasr_visitor_votes] shortcode"
1014
 
1015
  # @ yasr
1016
- #: ../lib/yasr-ajax-functions.php:527
1017
  msgid "Most active reviewers"
1018
  msgstr "Meest actieve recensenten"
1019
 
1020
  # @ yasr
1021
- #: ../lib/yasr-ajax-functions.php:528
1022
  msgid "Insert Most Active Reviewers"
1023
  msgstr "Invoegen Meest Actieve Recensenten"
1024
 
1025
  # @ yasr
1026
- #: ../lib/yasr-ajax-functions.php:529
1027
  msgid "Insert Top 5 active reviewers"
1028
  msgstr "Invoegen Top 5 actieve recensenten"
1029
 
1030
  # @ yasr
1031
- #: ../lib/yasr-ajax-functions.php:533
1032
  msgid "Most Active Users"
1033
  msgstr "Meest Actieve Gebruikers"
1034
 
1035
  # @ yasr
1036
- #: ../lib/yasr-ajax-functions.php:534
1037
  msgid "Insert Most Active Users"
1038
  msgstr "Invoegen Meest Actieve Gebruikers"
1039
 
1040
  # @ yasr
1041
- #: ../lib/yasr-ajax-functions.php:535
1042
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
1043
  msgstr "Invoegen Top 10 stemmers [yasr_visitor_votes] shortcode"
1044
 
1045
  # @ yasr
1046
- #: ../lib/yasr-ajax-functions.php:587
1047
  msgid "Reviews and Visitor Votes have been successfull imported."
1048
  msgstr "Recensies en Bezoekersstemmen zijn succesvol geïmporteerd."
1049
 
1050
  # @ yasr
1051
- #: ../lib/yasr-ajax-functions.php:593
1052
  msgid ""
1053
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
1054
  "THIS MAY TAKE A WHILE!"
@@ -1057,86 +1077,91 @@ msgstr ""
1057
  "KAN EVEN DUREN! "
1058
 
1059
  # @ yasr
1060
- #: ../lib/yasr-ajax-functions.php:595
1061
  msgid "Proceed Step 2"
1062
  msgstr "Verder met stap 2"
1063
 
1064
  # @ yasr
1065
- #: ../lib/yasr-ajax-functions.php:602
1066
  msgid "Something goes wrong! Refresh the page and try again!"
1067
  msgstr "Er ging iets mis. Vernieuw de pagina en probeer het nogmaals."
1068
 
1069
  # @ yasr
1070
- #: ../lib/yasr-ajax-functions.php:631
1071
  msgid "I've found Multiple Set! Importing..."
1072
  msgstr "Meerdere Multi Sets gevonden. Aan het importeren..."
1073
 
1074
  # @ yasr
1075
- #: ../lib/yasr-ajax-functions.php:640
1076
  msgid "Multi Set's name has been successfull imported."
1077
  msgstr "Naam van Multi Set is succesvol geïmporteerd."
1078
 
1079
  # @ yasr
1080
- #: ../lib/yasr-ajax-functions.php:642
1081
  msgid "Now I'm going to import Multi Set data"
1082
  msgstr "Beginnen met het importeren van Multi Set gegevens"
1083
 
1084
  # @ yasr
1085
- #: ../lib/yasr-ajax-functions.php:653
1086
  msgid "All votes has been successfull imported."
1087
  msgstr "Alle stemmen zijn succesvol geïmporteerd."
1088
 
1089
  # @ yasr
1090
- #: ../lib/yasr-ajax-functions.php:655
1091
  msgid "Done"
1092
  msgstr "Klaar"
1093
 
1094
  # @ yasr
1095
- #: ../lib/yasr-ajax-functions.php:660
1096
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
1097
  msgstr ""
1098
  "Er zijn stemmen van meerdere Multi Sets gevonden maar deze konden niet "
1099
  "geïmporteerd worden in de database"
1100
 
1101
  # @ yasr
1102
- #: ../lib/yasr-ajax-functions.php:668
1103
  msgid "I've found Multi Set but with no data"
1104
  msgstr "De Multi Set is gevonden maar deze bevat geen gegevens"
1105
 
1106
  # @ yasr
1107
- #: ../lib/yasr-ajax-functions.php:677
1108
  msgid "I've found Multi Sets names but I couldn't insert into db"
1109
  msgstr ""
1110
  "Multi Set namen zijn gevonden maar ze konden niet in de database "
1111
  "geïmporteerd worden"
1112
 
1113
  # @ yasr
1114
- #: ../lib/yasr-ajax-functions.php:685
1115
  msgid "Multisets were not found. Imported is done!"
1116
  msgstr "Geen Multi Sets gevonden. Importeren is klaar."
1117
 
1118
  # @ yasr
1119
- #: ../lib/yasr-ajax-functions.php:888 ../lib/yasr-ajax-functions.php:1017
 
 
 
 
 
1120
  msgid "Error: you can't vote 0"
1121
  msgstr "Error: je kunt niet 0 stemmen"
1122
 
1123
  # @ yasr
1124
- #: ../lib/yasr-ajax-functions.php:979 ../lib/yasr-ajax-functions.php:987
1125
  msgid "Average rating"
1126
  msgstr "Gemiddelde stemming"
1127
 
1128
  # @ yasr
1129
- #: ../lib/yasr-ajax-functions.php:980 ../lib/yasr-ajax-functions.php:988
1130
  msgid "Vote Saved"
1131
  msgstr "Stem Opgeslagen"
1132
 
1133
  # @ yasr
1134
- #: ../lib/yasr-ajax-functions.php:1087 ../lib/yasr-ajax-functions.php:1095
1135
- #: ../lib/yasr-ajax-functions.php:1103
1136
- msgid "Vote Updated"
1137
  msgstr "Stem Bijgewerkt"
1138
 
1139
  # @ yasr
1140
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
1141
  msgid "Average "
1142
  msgstr "Gemiddeld"
2
  msgstr ""
3
  "Project-Id-Version: Yet Another Stars Rating v0.6.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-10-28 18:44+0100\n"
6
+ "PO-Revision-Date: 2014-10-28 18:44+0100\n"
7
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
8
  "Language-Team: NL\n"
9
  "Language: nl_NL\n"
21
  "X-Poedit-SearchPath-1: ../lib\n"
22
 
23
  # @ yasr
24
+ #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:109
25
+ #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:192
26
+ #: ../lib/yasr-ajax-functions.php:331 ../lib/yasr-ajax-functions.php:732
27
  msgid "You do not have sufficient permissions to access this page."
28
  msgstr "Je hebt niet voldoende rechten om deze pagina te laden."
29
 
52
  msgstr ""
53
 
54
  # @ default
55
+ #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:276
56
  msgid "Save"
57
  msgstr "Opslaan"
58
 
122
  "duren!"
123
 
124
  # @ yasr
125
+ #: ../yasr-settings-page.php:196
126
  msgid "Manage Multi Set"
127
  msgstr "Beheren Multi Set"
128
 
129
  # @ yasr
130
+ #: ../yasr-settings-page.php:200
131
  msgid "What is a Multi Set?"
132
  msgstr "Wat is een Multi Set?"
133
 
134
  # @ yasr
135
+ #: ../yasr-settings-page.php:204
136
  msgid ""
137
  "Multi Set allows you to insert a rate for each aspect about the product / "
138
  "local business / whetever you're reviewing, example in the image below."
142
  "voorbeeld is in de afbeelding hieronder."
143
 
144
  # @ yasr
145
+ #: ../yasr-settings-page.php:208
146
  msgid ""
147
  "You can create up to 99 different Multi Set and each one can contain up to 9 "
148
  "different fields. Once you've saved it, you can insert the rates while "
156
  "groter te maken)"
157
 
158
  # @ yasr
159
+ #: ../yasr-settings-page.php:212
160
  msgid ""
161
  "In order to insert your Multi Sets into a post or page, you can either past "
162
  "the short code that will appear at the bottom of the box or just click on "
167
  "klikken op de ster in de tekstverwerker en \"Invoegen Multi Set\" selecteren."
168
 
169
  # @ yasr
170
+ #: ../yasr-settings-page.php:218
171
  msgid "Close this message"
172
  msgstr "Sluit dit bericht"
173
 
174
  # @ yasr
175
+ #: ../yasr-settings-page.php:246 ../lib/yasr-functions.php:457
176
+ #: ../lib/yasr-functions.php:483
177
  msgid "Donations"
178
  msgstr "Donaties"
179
 
180
  # @ yasr
181
+ #: ../yasr-settings-page.php:248 ../lib/yasr-functions.php:459
182
+ #: ../lib/yasr-functions.php:485
183
  msgid ""
184
  "If you have found this plugin useful, please consider making a donation to "
185
  "help support future development. Your support will be much appreciated. "
188
  "verdere ontwikkeling te ondersteunen. Je steun wordt erg gewaardeerd."
189
 
190
  # @ yasr
191
+ #: ../yasr-settings-page.php:250 ../lib/yasr-functions.php:461
192
+ #: ../lib/yasr-functions.php:487
193
  msgid "Thank you!"
194
  msgstr "Bedankt."
195
 
202
  # @ yasr
203
  #: ../yasr-metabox-multiple-rating.php:46
204
  #: ../yasr-metabox-overall-rating.php:193
205
+ #: ../lib/yasr-settings-functions.php:468
206
  msgid "Select"
207
  msgstr "Selecteren"
208
 
213
 
214
  # @ yasr
215
  #: ../yasr-metabox-overall-rating.php:71
216
+ #: ../lib/yasr-shortcode-functions.php:169
217
  msgid "Loading, please wait"
218
  msgstr "Laden, even wachten svp."
219
 
237
  "voegen waar je deze stemming wilt tonen"
238
 
239
  # @ yasr
 
 
240
  #: ../lib/yasr-shortcode-functions.php:214
241
+ #: ../lib/yasr-shortcode-functions.php:226
242
+ #: ../lib/yasr-shortcode-functions.php:231
243
+ #: ../lib/yasr-shortcode-functions.php:246
244
+ #: ../lib/yasr-shortcode-functions.php:251
245
  #: ../lib/yasr-shortcode-functions.php:271
246
+ #: ../lib/yasr-shortcode-functions.php:282
247
+ #: ../lib/yasr-shortcode-functions.php:288
248
+ #: ../lib/yasr-shortcode-functions.php:303
249
+ #: ../lib/yasr-shortcode-functions.php:309 ../lib/yasr-ajax-functions.php:994
250
+ #: ../lib/yasr-ajax-functions.php:1002 ../lib/yasr-ajax-functions.php:1117
251
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
252
  msgid "Total: "
253
  msgstr "Totaal: "
254
 
255
  # @ yasr
 
 
256
  #: ../lib/yasr-shortcode-functions.php:214
257
+ #: ../lib/yasr-shortcode-functions.php:226
258
+ #: ../lib/yasr-shortcode-functions.php:231
259
+ #: ../lib/yasr-shortcode-functions.php:246
260
+ #: ../lib/yasr-shortcode-functions.php:251
261
  #: ../lib/yasr-shortcode-functions.php:271
262
+ #: ../lib/yasr-shortcode-functions.php:282
263
+ #: ../lib/yasr-shortcode-functions.php:288
264
+ #: ../lib/yasr-shortcode-functions.php:303
265
+ #: ../lib/yasr-shortcode-functions.php:309
266
  msgid "Average: "
267
  msgstr "Gemiddelde: "
268
 
269
  # @ yasr
270
+ #: ../lib/yasr-shortcode-functions.php:215
271
+ #: ../lib/yasr-shortcode-functions.php:272 ../lib/yasr-ajax-functions.php:1191
272
  msgid "You've already voted this article with"
273
  msgstr "Je hebt al op dit artikel gestemd met"
274
 
275
  # @ yasr
276
+ #: ../lib/yasr-shortcode-functions.php:304
277
+ #: ../lib/yasr-shortcode-functions.php:310
278
  msgid "You must sign to vote"
279
  msgstr "Je moet inloggen om te stemmen"
280
 
281
  # @ yasr
282
+ #: ../lib/yasr-shortcode-functions.php:334
283
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
284
  msgstr "'slecht', 'matig', 'OK', 'goed', 'fantastisch'"
285
 
286
  # @ yasr
287
+ #: ../lib/yasr-shortcode-functions.php:448
288
  msgid "Rating"
289
  msgstr "Stemming"
290
 
291
  # @ yasr
292
+ #: ../lib/yasr-shortcode-functions.php:462
293
  msgid "You don't have any votes stored"
294
  msgstr "Je hebt geen opgeslagen stemmen"
295
 
296
+ #: ../lib/yasr-shortcode-functions.php:498
297
+ #: ../lib/yasr-shortcode-functions.php:536
298
  msgid "Post / Page"
299
  msgstr "Bericht / Pagina"
300
 
301
  # @ yasr
302
+ #: ../lib/yasr-shortcode-functions.php:499
303
+ #: ../lib/yasr-shortcode-functions.php:537
304
  msgid "Order By"
305
  msgstr "Sorteer Op"
306
 
307
  # @ yasr
308
+ #: ../lib/yasr-shortcode-functions.php:499
309
+ #: ../lib/yasr-shortcode-functions.php:537
310
  msgid "Most Rated"
311
  msgstr "Meeste op Gestemd"
312
 
313
  # @ yasr
314
+ #: ../lib/yasr-shortcode-functions.php:499
315
+ #: ../lib/yasr-shortcode-functions.php:537
316
  msgid "Highest Rated"
317
  msgstr "Hoogste Stemming"
318
 
319
  # @ yasr
320
+ #: ../lib/yasr-shortcode-functions.php:516
321
+ #: ../lib/yasr-shortcode-functions.php:551
322
  msgid "Total:"
323
  msgstr "Totaal:"
324
 
325
  # @ yasr
326
+ #: ../lib/yasr-shortcode-functions.php:516
327
+ #: ../lib/yasr-shortcode-functions.php:551
328
  msgid "Average"
329
  msgstr "Gemiddelde"
330
 
331
  # @ yasr
332
+ #: ../lib/yasr-shortcode-functions.php:528
333
+ #, fuzzy
334
+ msgid "You've not enough data"
335
+ msgstr "Je hebt niet genoeg gegevens"
336
+
337
+ # @ yasr
338
+ #: ../lib/yasr-shortcode-functions.php:563
339
  msgid "You've not enought data"
340
  msgstr "Je hebt niet genoeg gegevens"
341
 
342
  # @ default
343
+ #: ../lib/yasr-shortcode-functions.php:648
344
+ #, fuzzy
345
  msgid ""
346
+ "Problem while retrieving the top 5 most active reviewers. Did you publish "
347
  "any review?"
348
  msgstr ""
349
  "Probleem tijdens het ophalen van de 5 meest actieve recensenten. Heb je wel "
350
  "een recensie gepubliceerd?"
351
 
352
  # @ default
353
+ #: ../lib/yasr-shortcode-functions.php:716
354
+ #, fuzzy
355
  msgid ""
356
+ "Problem while retrieving the top 10 active users chart. Are you sure you "
357
+ "have votes to show?"
358
  msgstr ""
359
  "Probleem tijdens het ophalen van de grafiek van de top 10 actieve "
360
  "gebruikers. Weet je zeker dat je wel stemmen hebt om te tonen?"
361
 
362
  # @ yasr
363
+ #: ../lib/yasr-settings-functions.php:49
364
  msgid "General settings"
365
  msgstr "Algemene instellingen"
366
 
367
  # @ yasr
368
+ #: ../lib/yasr-settings-functions.php:50
369
  msgid "Auto insert options"
370
  msgstr "Auto invoegopties"
371
 
372
  # @ yasr
373
+ #: ../lib/yasr-settings-functions.php:51
374
  msgid "Show \"Overall Rating\" in Home Page?"
375
  msgstr "Toon \"Algemene Stemming\" op de Voorpagina?"
376
 
377
  # @ yasr
378
+ #: ../lib/yasr-settings-functions.php:52
379
  msgid "Insert custom text to show before / after stars"
380
  msgstr "Invoegen aangepaste tekst om voor / na de sterren te tonen"
381
 
382
+ #: ../lib/yasr-settings-functions.php:53
383
+ msgid "Do you want show stats for visitors votes?"
384
+ msgstr ""
385
+
386
  # @ yasr
387
  #: ../lib/yasr-settings-functions.php:54
388
  msgid "Which color scheme do you want to use?"
411
  # @ yasr
412
  #: ../lib/yasr-settings-functions.php:74
413
  #: ../lib/yasr-settings-functions.php:143
414
+ #: ../lib/yasr-settings-functions.php:161
415
+ #: ../lib/yasr-settings-functions.php:193
416
+ #: ../lib/yasr-settings-functions.php:225
417
+ #: ../lib/yasr-settings-functions.php:276
418
  msgid "Yes"
419
  msgstr "Ja"
420
 
421
  # @ yasr
422
  #: ../lib/yasr-settings-functions.php:88
423
  #: ../lib/yasr-settings-functions.php:148
424
+ #: ../lib/yasr-settings-functions.php:166
425
+ #: ../lib/yasr-settings-functions.php:198
426
+ #: ../lib/yasr-settings-functions.php:230
427
+ #: ../lib/yasr-settings-functions.php:281
428
  msgid "No"
429
  msgstr "Nee"
430
 
439
  msgstr "Algemene Stemming / Auteur Stemming"
440
 
441
  # @ yasr
442
+ #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:458
443
  msgid "Visitor Votes"
444
  msgstr "Bezoekersstemmen"
445
 
469
  msgstr "Afmeting"
470
 
471
  # @ yasr
472
+ #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:448
473
+ #: ../lib/yasr-ajax-functions.php:466
474
  msgid "Small"
475
  msgstr "Klein"
476
 
477
  # @ yasr
478
+ #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:449
479
+ #: ../lib/yasr-ajax-functions.php:467
480
  msgid "Medium"
481
  msgstr "Gemiddeld"
482
 
483
  # @ yasr
484
+ #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:450
485
+ #: ../lib/yasr-ajax-functions.php:468
486
  msgid "Large"
487
  msgstr "Groot"
488
 
492
  msgstr "Negeer Pagina's"
493
 
494
  # @ yasr
495
+ #: ../lib/yasr-settings-functions.php:158
496
  msgid "Use only in custom post types?"
497
  msgstr "Alleen gebruiken in custom post types?"
498
 
499
  # @ yasr
500
+ #: ../lib/yasr-settings-functions.php:170
501
  msgid "You see this because you use custom post types."
502
  msgstr "Je ziet dit omdat je custom post types gebruikt."
503
 
504
  # @ yasr
505
+ #: ../lib/yasr-settings-functions.php:172
506
  msgid "If you want to use auto insert only in custom post types, choose Yes"
507
  msgstr ""
508
  "Als je auto invoegen alleen wilt gebruiken bij custom post types, kies Ja"
509
 
510
  # @ yasr
511
+ #: ../lib/yasr-settings-functions.php:202
512
  msgid ""
513
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
514
  "article or page, but also in pages like Home Page, category pages or "
519
  "categoriepagina's of archiefpagina's."
520
 
521
  # @ yasr
522
+ #: ../lib/yasr-settings-functions.php:235
523
  msgid "Custom text to display before Overall Rating"
524
  msgstr "Aangepaste tekst om te tonen voor Algemene Stemming"
525
 
526
  # @ yasr
527
+ #: ../lib/yasr-settings-functions.php:240
528
  msgid "Custom text to display before Visitor Rating"
529
  msgstr "Aangepaste tekst om te tonen voor Bezoekersstemming"
530
 
531
  # @ yasr
532
+ #: ../lib/yasr-settings-functions.php:245
533
  msgid "Custom text to display when a non logged user has already rated"
534
  msgstr ""
535
  "Aangepaste tekst om te tonen wanneer een niet-ingelogde gebruiker al gestemd "
536
  "heeft"
537
 
538
+ #: ../lib/yasr-settings-functions.php:259
539
+ msgid ""
540
+ "Seems like you've imported gd star rating in the past, but then deleted the "
541
+ "logs table. For now, you can't enable statistics"
542
+ msgstr ""
543
+
544
  # @ yasr
545
+ #: ../lib/yasr-settings-functions.php:301
546
  msgid "Light"
547
  msgstr "Licht"
548
 
549
  # @ yasr
550
+ #: ../lib/yasr-settings-functions.php:306
551
  msgid "Dark"
552
  msgstr "Donker"
553
 
554
  # @ yasr
555
+ #: ../lib/yasr-settings-functions.php:311
556
  msgid "Preview"
557
  msgstr "Voorvertoning"
558
 
559
  # @ yasr
560
+ #: ../lib/yasr-settings-functions.php:316
561
  msgid "Light theme"
562
  msgstr "Licht Thema"
563
 
564
  # @ yasr
565
+ #: ../lib/yasr-settings-functions.php:321
566
  msgid "Dark Theme"
567
  msgstr "Donker Thema"
568
 
569
  # @ yasr
570
+ #: ../lib/yasr-settings-functions.php:339
571
  msgid "Allow only logged-in users"
572
  msgstr "Alleen ingelogde gebruikers toestaan"
573
 
574
  # @ yasr
575
+ #: ../lib/yasr-settings-functions.php:343
576
  msgid "Allow everybody (logged in and anonymous)"
577
  msgstr "Sta iedereen toe (ingelogd en anoniem)"
578
 
579
  # @ yasr
580
+ #: ../lib/yasr-settings-functions.php:360
581
  msgid "Review Rating"
582
  msgstr "Recensie Stemming"
583
 
584
  # @ yasr
585
+ #: ../lib/yasr-settings-functions.php:364
586
  msgid "Aggregate Rating"
587
  msgstr "Cumulatieve Stemming"
588
 
589
  # @ yasr
590
+ #: ../lib/yasr-settings-functions.php:369
591
  msgid "What is this?"
592
  msgstr "Wat is dit?"
593
 
594
  # @ yasr
595
+ #: ../lib/yasr-settings-functions.php:374
596
  msgid ""
597
  "If you select \"Review Rating\", your site will be indexed from search "
598
  "engines like this: "
601
  "zoekmachines als volgt: "
602
 
603
  # @ yasr
604
+ #: ../lib/yasr-settings-functions.php:379
605
  msgid ""
606
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
607
  "this"
610
  "site ook geïndexeerd als volgt:"
611
 
612
  # @ yasr
613
+ #: ../lib/yasr-settings-functions.php:397
614
  msgid "Stars"
615
  msgstr "Sterren"
616
 
617
  # @ yasr
618
+ #: ../lib/yasr-settings-functions.php:401
619
  msgid "Numbers"
620
  msgstr "Getallen"
621
 
622
  # @ yasr
623
+ #: ../lib/yasr-settings-functions.php:413
624
  msgid "Add New Multiple Set"
625
  msgstr "Toevoegen Nieuwe Multi Set"
626
 
627
  # @ yasr
628
+ #: ../lib/yasr-settings-functions.php:414
629
  msgid ""
630
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
631
  "characters"
634
  "lang zijn"
635
 
636
  # @ yasr
637
+ #: ../lib/yasr-settings-functions.php:417
638
  msgid "Name"
639
  msgstr "Naam"
640
 
641
  # @ yasr
642
+ #: ../lib/yasr-settings-functions.php:422
643
+ #, fuzzy
644
+ msgid "You can insert up to nine elements"
645
  msgstr "Je kunt tot 9 elementen invoegen"
646
 
647
  # @ yasr
648
+ #: ../lib/yasr-settings-functions.php:427
649
  msgid "Element "
650
  msgstr "Element"
651
 
652
  # @ yasr
653
+ #: ../lib/yasr-settings-functions.php:437
654
  msgid "Create New Set"
655
  msgstr "Aanmaken Nieuwe Set"
656
 
657
  # @ yasr
658
+ #: ../lib/yasr-settings-functions.php:458
659
+ #: ../lib/yasr-settings-functions.php:490
660
  msgid "Manage Multiple Set"
661
  msgstr "Beheer Multi Set"
662
 
663
  # @ yasr
664
+ #: ../lib/yasr-settings-functions.php:460
665
  msgid "Wich set do you want to edit or remove?"
666
  msgstr "Welke set wil je bewerken of verwijderen?"
667
 
668
  # @ yasr
669
+ #: ../lib/yasr-settings-functions.php:500
670
+ #: ../lib/yasr-settings-functions.php:618
671
  msgid "Field name"
672
  msgstr "Veldnaam"
673
 
674
  # @ yasr
675
+ #: ../lib/yasr-settings-functions.php:504
676
+ #: ../lib/yasr-settings-functions.php:622
677
  msgid "Remove"
678
  msgstr "Verwijderen"
679
 
680
  # @ yasr
681
+ #: ../lib/yasr-settings-functions.php:546
682
+ #: ../lib/yasr-settings-functions.php:664
683
  msgid "Remove whole set?"
684
  msgstr "Verwijder hele set?"
685
 
686
  # @ yasr
687
+ #: ../lib/yasr-settings-functions.php:559
688
+ #: ../lib/yasr-settings-functions.php:677
689
  msgid ""
690
  "If you remove something you will remove all the votes for that set or field. "
691
  "This operation CAN'T BE undone."
694
  "veld. Deze handeling kan NIET ongedaan gemaakt worden."
695
 
696
  # @ yasr
697
+ #: ../lib/yasr-settings-functions.php:566
698
+ #: ../lib/yasr-settings-functions.php:684
699
  msgid "You can use up to 9 elements"
700
  msgstr "Je kunt tot 9 elementen gebruiken"
701
 
702
  # @ yasr
703
+ #: ../lib/yasr-settings-functions.php:568
704
+ #: ../lib/yasr-settings-functions.php:686
705
  msgid "Add element"
706
  msgstr "Toevoegen element"
707
 
708
  # @ yasr
709
+ #: ../lib/yasr-settings-functions.php:570
710
+ #: ../lib/yasr-settings-functions.php:688
711
  msgid "Save changes"
712
  msgstr "Opslaan"
713
 
714
  # @ yasr
715
+ #: ../lib/yasr-settings-functions.php:580
716
  msgid "No Multiple Set were found"
717
  msgstr "Geen Multi Set gevonden"
718
 
719
  # @ yasr
720
+ #: ../lib/yasr-settings-functions.php:830
721
+ #: ../lib/yasr-settings-functions.php:1098
722
  msgid "Settings Saved"
723
  msgstr "Instellingen Opgeslagen"
724
 
725
  # @ yasr
726
+ #: ../lib/yasr-settings-functions.php:835
727
  msgid "Something goes wrong trying insert set field name. Please report it"
728
  msgstr ""
729
  "Er ging iets mis tijdens het invoegen van de veldnaam. Graag aangeven bij de "
730
  "maker"
731
 
732
  # @ yasr
733
+ #: ../lib/yasr-settings-functions.php:841
734
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
735
  msgstr ""
736
  "Er ging iets mis tijdens het invoegen van de Multi Set naam. Graag aangeven "
737
  "bij de maker"
738
 
739
  # @ yasr
740
+ #: ../lib/yasr-settings-functions.php:916
741
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
742
  msgstr ""
743
  "Er ging iets mis tijdens het verwijderen van een Multi Set. Graag aangeven "
744
  "bij de maker"
745
 
746
  # @ yasr
747
+ #: ../lib/yasr-settings-functions.php:962
748
  msgid ""
749
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
750
  msgstr ""
752
  "aangeven bij de maker"
753
 
754
  # @ yasr
755
+ #: ../lib/yasr-settings-functions.php:1026
756
  msgid ""
757
  "Something goes wrong trying to update a Multi Set's element. Please report it"
758
  msgstr ""
760
  "aangeven bij de maker"
761
 
762
  # @ yasr
763
+ #: ../lib/yasr-settings-functions.php:1083
764
  msgid ""
765
  "Something goes wrong trying to insert set field name in edit form. Please "
766
  "report it"
769
  "formulier. Graag aangeven bij de maker"
770
 
771
  # @ yasr
772
+ #: ../lib/yasr-settings-functions.php:1126
773
  msgid "Style Options"
774
  msgstr "Opmaak Opties"
775
 
776
  # @ yasr
777
+ #: ../lib/yasr-settings-functions.php:1127
778
  msgid "Custom CSS Styles"
779
  msgstr "Aangepaste CSS Opmaak"
780
 
781
  # @ yasr
782
+ #: ../lib/yasr-settings-functions.php:1132
783
  msgid ""
784
  "Please use text area below to write your own CSS styles to override the "
785
  "default ones."
788
  "standaard opmaak te overschrijven. "
789
 
790
  # @ yasr
791
+ #: ../lib/yasr-settings-functions.php:1134
792
  msgid "Leave it blank if you don't know what you're doing"
793
  msgstr "Laat het leeg als je niet weet wat dit is."
794
 
795
  # @ yasr
796
+ #: ../lib/yasr-settings-functions.php:1167
797
  msgid "No previous Gd Star Rating installation was found"
798
  msgstr "Geen eerdere Gd Star Rating installatie gevonden"
799
 
800
  # @ yasr
801
+ #: ../lib/yasr-db-functions.php:267
802
+ #, fuzzy
803
+ msgid "No recenet votes yet"
804
  msgstr "Geen Recente stemmen nog"
805
 
806
  # @ default
807
+ #: ../lib/yasr-db-functions.php:282 ../lib/yasr-ajax-functions.php:757
808
  msgid "anonymous"
809
  msgstr "anoniem"
810
 
811
  # @ yasr
812
+ #: ../lib/yasr-db-functions.php:305 ../lib/yasr-ajax-functions.php:780
813
  msgid "Ip address"
814
  msgstr "Ipadres"
815
 
816
  # @ yasr
817
+ #: ../lib/yasr-db-functions.php:346 ../lib/yasr-ajax-functions.php:821
818
  msgid "Pages"
819
  msgstr "Pagina's"
820
 
821
  # @ yasr
822
+ #: ../lib/yasr-functions.php:97 ../lib/yasr-functions.php:98
823
  msgid "Yet Another Stars Rating: Settings"
824
  msgstr "Yet Another Stars Rating: Instellingen"
825
 
826
  # @ yasr
827
+ #: ../lib/yasr-functions.php:141 ../lib/yasr-functions.php:148
828
  msgid "Overall Rating"
829
  msgstr "Algemene Stemming"
830
 
831
  # @ yasr
832
+ #: ../lib/yasr-functions.php:142
833
  msgid "Yet Another Stars Rating: Multiple set"
834
  msgstr "Yet Another Stars Rating: Multi Sets"
835
 
836
  # @ default
837
+ #: ../lib/yasr-functions.php:158
838
  msgid "You don't have enought privileges to insert Overall Rating"
839
  msgstr "Je hebt niet genoeg rechten om Algemene Stemming in te voegen"
840
 
841
  # @ default
842
+ #: ../lib/yasr-functions.php:168
843
  msgid "You don't have enought privileges to insert Multi Set"
844
  msgstr "Je hebt niet genoeg rechten om Multi Set in te voegen"
845
 
846
  # @ yasr
847
+ #: ../lib/yasr-functions.php:303
848
  msgid " reviewed by "
849
  msgstr "gerecenseerd door"
850
 
851
  # @ yasr
852
+ #: ../lib/yasr-functions.php:304
853
  msgid " on "
854
  msgstr "op"
855
 
856
  # @ yasr
857
+ #: ../lib/yasr-functions.php:305
858
  msgid " rated "
859
  msgstr "gestemd"
860
 
861
+ #: ../lib/yasr-functions.php:305
862
  msgid " of"
863
  msgstr "van"
864
 
865
  # @ yasr
866
+ #: ../lib/yasr-functions.php:360
867
  msgid " written by "
868
  msgstr "geschreven door "
869
 
870
  # @ yasr
871
+ #: ../lib/yasr-functions.php:362
872
  msgid " average rating "
873
  msgstr " gemiddelde stemming"
874
 
875
  # @ yasr
876
+ #: ../lib/yasr-functions.php:363
877
  msgid " user ratings"
878
  msgstr "gebruikersstemmen"
879
 
880
  # @ yasr
881
+ #: ../lib/yasr-functions.php:469 ../lib/yasr-functions.php:496
882
  msgid "Follow YASR official site!"
883
  msgstr "Volg de YASR officiële site"
884
 
885
+ #: ../lib/yasr-functions.php:515
886
  msgid "Looking for more features?"
887
  msgstr ""
888
 
889
+ #: ../lib/yasr-functions.php:516
890
  msgid "Upgrade to yasr pro!"
891
  msgstr ""
892
 
893
+ #: ../lib/yasr-functions.php:595
894
  msgid "Not avaible yet"
895
  msgstr ""
896
 
905
  msgstr "Je hebt de stem ingetrokken"
906
 
907
  # @ yasr
908
+ #: ../lib/yasr-ajax-functions.php:169
909
  msgid ""
910
  "There was an error while trying to insert the review type. Please report it"
911
  msgstr ""
913
  "bij de maker"
914
 
915
  # @ yasr
916
+ #: ../lib/yasr-ajax-functions.php:203
917
  msgid "Choose a vote for each element"
918
  msgstr "Kies een stem voor ieder element"
919
 
920
  # @ yasr
921
+ #: ../lib/yasr-ajax-functions.php:259 ../lib/yasr-ajax-functions.php:302
922
  msgid "Remember to insert this shortcode"
923
  msgstr "Vergeet niet deze shortcode in te voegen"
924
 
925
  # @ yasr
926
+ #: ../lib/yasr-ajax-functions.php:261 ../lib/yasr-ajax-functions.php:304
927
  msgid "where you want to display this multi set"
928
  msgstr "waar je deze multi set wilt tonen"
929
 
930
  # @ yasr
931
+ #: ../lib/yasr-ajax-functions.php:269
932
  msgid "Choose a vote for every element"
933
  msgstr "Kies een stem voor ieder element"
934
 
935
  # @ yasr
936
+ #: ../lib/yasr-ajax-functions.php:428
937
  msgid "Main"
938
  msgstr "Hoofd"
939
 
940
  # @ yasr
941
+ #: ../lib/yasr-ajax-functions.php:429
942
  msgid "Charts"
943
  msgstr "Grafieken"
944
 
945
  # @ yasr
946
+ #: ../lib/yasr-ajax-functions.php:431
947
  msgid "Read the doc"
948
  msgstr "Lees de documentatie"
949
 
950
  # @ yasr
951
+ #: ../lib/yasr-ajax-functions.php:440
952
  msgid "Overall Rating / Review"
953
  msgstr "Algemene Stemming / Recensie"
954
 
955
  # @ yasr
956
+ #: ../lib/yasr-ajax-functions.php:442
957
  msgid "Insert Overall Rating"
958
  msgstr "Voeg Algemene Stemming in"
959
 
960
  # @ yasr
961
+ #: ../lib/yasr-ajax-functions.php:443
962
  msgid "Insert Overall Rating / Review for this post"
963
  msgstr "Voeg Algemene Stemming / Recensie voor dit bericht in"
964
 
965
  # @ yasr
966
+ #: ../lib/yasr-ajax-functions.php:446 ../lib/yasr-ajax-functions.php:464
967
  msgid "Choose Size"
968
  msgstr "Kies Grootte"
969
 
970
  # @ yasr
971
+ #: ../lib/yasr-ajax-functions.php:460
972
  msgid "Insert Visitor Votes"
973
  msgstr "Invoegen Bezoekersstemmen"
974
 
975
  # @ yasr
976
+ #: ../lib/yasr-ajax-functions.php:461
977
  msgid "Insert the ability for your visitor to vote"
978
  msgstr "Maak het mogelijk voor je bezoekers om te stemmen"
979
 
980
  # @ yasr
981
+ #: ../lib/yasr-ajax-functions.php:478
982
  msgid "If you want to insert a Multi Set, pick one:"
983
  msgstr "Als je een Multi Set wilt invoegen, kies er één:"
984
 
985
  # @ yasr
986
+ #: ../lib/yasr-ajax-functions.php:484
987
  msgid "Choose wich set you want to insert."
988
  msgstr "Kies welke set je wilt invoegen."
989
 
990
  # @ yasr
991
+ #: ../lib/yasr-ajax-functions.php:492
992
  msgid "Insert Multiset:"
993
  msgstr "Invoegen Multi Set:"
994
 
995
  # @ yasr
996
+ #: ../lib/yasr-ajax-functions.php:495
997
  msgid "Insert Multiple Set"
998
  msgstr "Invoegen Multi Set"
999
 
1000
  # @ yasr
1001
+ #: ../lib/yasr-ajax-functions.php:496
1002
  msgid "Insert multiple set in this post ?"
1003
  msgstr "Invoegen Multi Set in dit bericht?"
1004
 
1005
  # @ yasr
1006
+ #: ../lib/yasr-ajax-functions.php:511
1007
  msgid "Ranking reviews"
1008
  msgstr "Ranglijst recensies"
1009
 
1010
  # @ yasr
1011
+ #: ../lib/yasr-ajax-functions.php:512
1012
  msgid "Insert Ranking reviews"
1013
  msgstr "Invoegen Ranglijst recensies"
1014
 
1015
  # @ yasr
1016
+ #: ../lib/yasr-ajax-functions.php:513
1017
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
1018
  msgstr "Invoegen Top 10 ranglijst voor [yasr_overall_rating] shortcode"
1019
 
1020
  # @ yasr
1021
+ #: ../lib/yasr-ajax-functions.php:517
1022
  msgid "Users' ranking"
1023
  msgstr "Gebruikersranglijst"
1024
 
1025
  # @ yasr
1026
+ #: ../lib/yasr-ajax-functions.php:518
1027
  msgid "Insert Users ranking"
1028
  msgstr "Invoegen Gebruikersranglijst"
1029
 
1030
  # @ yasr
1031
+ #: ../lib/yasr-ajax-functions.php:519
1032
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
1033
  msgstr "Invoegen Top 10 ranglijst voor [yasr_visitor_votes] shortcode"
1034
 
1035
  # @ yasr
1036
+ #: ../lib/yasr-ajax-functions.php:523
1037
  msgid "Most active reviewers"
1038
  msgstr "Meest actieve recensenten"
1039
 
1040
  # @ yasr
1041
+ #: ../lib/yasr-ajax-functions.php:524
1042
  msgid "Insert Most Active Reviewers"
1043
  msgstr "Invoegen Meest Actieve Recensenten"
1044
 
1045
  # @ yasr
1046
+ #: ../lib/yasr-ajax-functions.php:525
1047
  msgid "Insert Top 5 active reviewers"
1048
  msgstr "Invoegen Top 5 actieve recensenten"
1049
 
1050
  # @ yasr
1051
+ #: ../lib/yasr-ajax-functions.php:529
1052
  msgid "Most Active Users"
1053
  msgstr "Meest Actieve Gebruikers"
1054
 
1055
  # @ yasr
1056
+ #: ../lib/yasr-ajax-functions.php:530
1057
  msgid "Insert Most Active Users"
1058
  msgstr "Invoegen Meest Actieve Gebruikers"
1059
 
1060
  # @ yasr
1061
+ #: ../lib/yasr-ajax-functions.php:531
1062
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
1063
  msgstr "Invoegen Top 10 stemmers [yasr_visitor_votes] shortcode"
1064
 
1065
  # @ yasr
1066
+ #: ../lib/yasr-ajax-functions.php:602
1067
  msgid "Reviews and Visitor Votes have been successfull imported."
1068
  msgstr "Recensies en Bezoekersstemmen zijn succesvol geïmporteerd."
1069
 
1070
  # @ yasr
1071
+ #: ../lib/yasr-ajax-functions.php:608
1072
  msgid ""
1073
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
1074
  "THIS MAY TAKE A WHILE!"
1077
  "KAN EVEN DUREN! "
1078
 
1079
  # @ yasr
1080
+ #: ../lib/yasr-ajax-functions.php:610
1081
  msgid "Proceed Step 2"
1082
  msgstr "Verder met stap 2"
1083
 
1084
  # @ yasr
1085
+ #: ../lib/yasr-ajax-functions.php:617
1086
  msgid "Something goes wrong! Refresh the page and try again!"
1087
  msgstr "Er ging iets mis. Vernieuw de pagina en probeer het nogmaals."
1088
 
1089
  # @ yasr
1090
+ #: ../lib/yasr-ajax-functions.php:646
1091
  msgid "I've found Multiple Set! Importing..."
1092
  msgstr "Meerdere Multi Sets gevonden. Aan het importeren..."
1093
 
1094
  # @ yasr
1095
+ #: ../lib/yasr-ajax-functions.php:655
1096
  msgid "Multi Set's name has been successfull imported."
1097
  msgstr "Naam van Multi Set is succesvol geïmporteerd."
1098
 
1099
  # @ yasr
1100
+ #: ../lib/yasr-ajax-functions.php:657
1101
  msgid "Now I'm going to import Multi Set data"
1102
  msgstr "Beginnen met het importeren van Multi Set gegevens"
1103
 
1104
  # @ yasr
1105
+ #: ../lib/yasr-ajax-functions.php:668
1106
  msgid "All votes has been successfull imported."
1107
  msgstr "Alle stemmen zijn succesvol geïmporteerd."
1108
 
1109
  # @ yasr
1110
+ #: ../lib/yasr-ajax-functions.php:670
1111
  msgid "Done"
1112
  msgstr "Klaar"
1113
 
1114
  # @ yasr
1115
+ #: ../lib/yasr-ajax-functions.php:675
1116
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
1117
  msgstr ""
1118
  "Er zijn stemmen van meerdere Multi Sets gevonden maar deze konden niet "
1119
  "geïmporteerd worden in de database"
1120
 
1121
  # @ yasr
1122
+ #: ../lib/yasr-ajax-functions.php:683
1123
  msgid "I've found Multi Set but with no data"
1124
  msgstr "De Multi Set is gevonden maar deze bevat geen gegevens"
1125
 
1126
  # @ yasr
1127
+ #: ../lib/yasr-ajax-functions.php:692
1128
  msgid "I've found Multi Sets names but I couldn't insert into db"
1129
  msgstr ""
1130
  "Multi Set namen zijn gevonden maar ze konden niet in de database "
1131
  "geïmporteerd worden"
1132
 
1133
  # @ yasr
1134
+ #: ../lib/yasr-ajax-functions.php:700
1135
  msgid "Multisets were not found. Imported is done!"
1136
  msgstr "Geen Multi Sets gevonden. Importeren is klaar."
1137
 
1138
  # @ yasr
1139
+ #: ../lib/yasr-ajax-functions.php:744
1140
+ msgid "No Recenet votes yet"
1141
+ msgstr "Geen Recente stemmen nog"
1142
+
1143
+ # @ yasr
1144
+ #: ../lib/yasr-ajax-functions.php:903 ../lib/yasr-ajax-functions.php:1032
1145
  msgid "Error: you can't vote 0"
1146
  msgstr "Error: je kunt niet 0 stemmen"
1147
 
1148
  # @ yasr
1149
+ #: ../lib/yasr-ajax-functions.php:994 ../lib/yasr-ajax-functions.php:1002
1150
  msgid "Average rating"
1151
  msgstr "Gemiddelde stemming"
1152
 
1153
  # @ yasr
1154
+ #: ../lib/yasr-ajax-functions.php:995 ../lib/yasr-ajax-functions.php:1003
1155
  msgid "Vote Saved"
1156
  msgstr "Stem Opgeslagen"
1157
 
1158
  # @ yasr
1159
+ #: ../lib/yasr-ajax-functions.php:1118
1160
+ #, fuzzy
1161
+ msgid "Vote updated"
1162
  msgstr "Stem Bijgewerkt"
1163
 
1164
  # @ yasr
1165
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
1166
  msgid "Average "
1167
  msgstr "Gemiddeld"
languages/yasr-pl_PL.mo CHANGED
Binary file
languages/yasr-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YASR lenguages\n"
4
- "POT-Creation-Date: 2014-10-09 13:44+0100\n"
5
- "PO-Revision-Date: 2014-10-11 16:11+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: Hoek i Tutu Team <hoek@hoek.pl>\n"
8
  "Language: pl_PL\n"
@@ -16,9 +16,9 @@ msgstr ""
16
  "X-Poedit-SearchPath-0: ..\n"
17
  "X-Poedit-SearchPath-1: ../lib\n"
18
 
19
- #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
20
- #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:196
21
- #: ../lib/yasr-ajax-functions.php:335 ../lib/yasr-ajax-functions.php:717
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "Nie posiadasz wystarczających uprawnień, by wejść na tę stronę."
24
 
@@ -38,66 +38,70 @@ msgstr "Zestaw Ocen"
38
  msgid "Styles"
39
  msgstr "Style"
40
 
41
- #: ../yasr-settings-page.php:94 ../yasr-settings-page.php:277
 
 
 
 
42
  msgid "Save"
43
  msgstr "Zapisz"
44
 
45
- #: ../yasr-settings-page.php:114
46
  msgid "Import Gd Star Rating"
47
  msgstr "Importuj Gd Star Rating"
48
 
49
- #: ../yasr-settings-page.php:115
50
  msgid "I've found a previous installation of Gd Star Rating."
51
  msgstr "Znalazłem poprzednią instalacje Gd Star Rating."
52
 
53
- #: ../yasr-settings-page.php:115
54
  msgid "Do you want proceed to import data?"
55
  msgstr "Chcesz rozpocząć import danych?"
56
 
57
- #: ../yasr-settings-page.php:117
58
  msgid "Yes, Begin Import"
59
  msgstr "Tak, rozpocznij import"
60
 
61
- #: ../yasr-settings-page.php:121
62
  msgid "Click on Proceed to import Gd Star Rating data."
63
  msgstr "Kliknij na Dalej, aby zaimportować dane z Gd Star Rating."
64
 
65
- #: ../yasr-settings-page.php:124 ../yasr-settings-page.php:157
66
  msgid "Proceed"
67
  msgstr "Dalej"
68
 
69
- #: ../yasr-settings-page.php:146
70
  msgid "Manage GD Star Data"
71
  msgstr "Zarządzaj danymi GD Star"
72
 
73
- #: ../yasr-settings-page.php:147
74
  msgid "Gd Star Rating has been already imported."
75
  msgstr "GD Star Rating został już zaimportowany."
76
 
77
- #: ../yasr-settings-page.php:148
78
  msgid "If you wish you can import it again, but"
79
  msgstr "Jeśli chcesz możesz zaimportować ponownie, ale"
80
 
81
- #: ../yasr-settings-page.php:148
82
  msgid "you will lose all data you've collect since the import!"
83
  msgstr "utracisz wszystkie dane zebrane od ostatniego importu!"
84
 
85
- #: ../yasr-settings-page.php:150
86
  msgid "Ok, Import Again"
87
  msgstr "Ok, importuj ponownie"
88
 
89
- #: ../yasr-settings-page.php:154
90
  msgid ""
91
  "Click on Proceed to import again Gd Star Rating data. This may take a while!"
92
  msgstr ""
93
  "Kliknij na Dalej, aby ponownie zaimportować dane Gd Star Rating. To może "
94
  "chwilę potrwać!"
95
 
96
- #: ../yasr-settings-page.php:195
97
  msgid "Manage Multi Set"
98
  msgstr "Zarządzaj Zestawem Ocen"
99
 
100
- #: ../yasr-settings-page.php:199
101
  msgid "What is a Multi Set?"
102
  msgstr "Co to jest Zestaw Ocen?"
103
 
@@ -135,13 +139,13 @@ msgstr ""
135
  msgid "Close this message"
136
  msgstr "Zamknij tą wiadomość"
137
 
138
- #: ../yasr-settings-page.php:247 ../lib/yasr-functions.php:446
139
- #: ../lib/yasr-functions.php:472
140
  msgid "Donations"
141
  msgstr "Dotacje"
142
 
143
- #: ../yasr-settings-page.php:249 ../lib/yasr-functions.php:448
144
- #: ../lib/yasr-functions.php:474
145
  msgid ""
146
  "If you have found this plugin useful, please consider making a donation to "
147
  "help support future development. Your support will be much appreciated. "
@@ -150,8 +154,8 @@ msgstr ""
150
  "darowizny w celu wsparcia dalszego rozwoju. Twoja pomoc będzie bardzo mile "
151
  "widziana."
152
 
153
- #: ../yasr-settings-page.php:251 ../lib/yasr-functions.php:450
154
- #: ../lib/yasr-functions.php:476
155
  msgid "Thank you!"
156
  msgstr "Dziękuje!"
157
 
@@ -161,7 +165,7 @@ msgstr "Wybierz który zestaw chcesz używać"
161
 
162
  #: ../yasr-metabox-multiple-rating.php:46
163
  #: ../yasr-metabox-overall-rating.php:193
164
- #: ../lib/yasr-settings-functions.php:431
165
  msgid "Select"
166
  msgstr "Wybierz"
167
 
@@ -170,7 +174,7 @@ msgid "Rate this article / item"
170
  msgstr "Oceń ten wpis"
171
 
172
  #: ../yasr-metabox-overall-rating.php:71
173
- #: ../lib/yasr-shortcode-functions.php:147
174
  msgid "Loading, please wait"
175
  msgstr "Wczytywanie, proszę czekać"
176
 
@@ -190,120 +194,134 @@ msgstr ""
190
  "Pamiętaj aby wstawić ten kod <strong>[yasr_overall_rating]</strong> w "
191
  "miejscu gdzie ma wyświetlać się ocena"
192
 
193
- #: ../lib/yasr-shortcode-functions.php:192
194
- #: ../lib/yasr-shortcode-functions.php:204
195
- #: ../lib/yasr-shortcode-functions.php:209
196
- #: ../lib/yasr-shortcode-functions.php:224
197
- #: ../lib/yasr-shortcode-functions.php:229
198
- #: ../lib/yasr-shortcode-functions.php:249
199
- #: ../lib/yasr-shortcode-functions.php:260
200
- #: ../lib/yasr-shortcode-functions.php:266
201
- #: ../lib/yasr-shortcode-functions.php:281
202
- #: ../lib/yasr-shortcode-functions.php:287 ../lib/yasr-ajax-functions.php:979
203
- #: ../lib/yasr-ajax-functions.php:987 ../lib/yasr-ajax-functions.php:1086
204
- #: ../lib/yasr-ajax-functions.php:1094 ../lib/yasr-ajax-functions.php:1102
205
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
206
  msgid "Total: "
207
  msgstr "Głosów:"
208
 
209
- #: ../lib/yasr-shortcode-functions.php:192
210
- #: ../lib/yasr-shortcode-functions.php:204
211
- #: ../lib/yasr-shortcode-functions.php:209
212
- #: ../lib/yasr-shortcode-functions.php:224
213
- #: ../lib/yasr-shortcode-functions.php:229
214
- #: ../lib/yasr-shortcode-functions.php:249
215
- #: ../lib/yasr-shortcode-functions.php:260
216
- #: ../lib/yasr-shortcode-functions.php:266
217
- #: ../lib/yasr-shortcode-functions.php:281
218
- #: ../lib/yasr-shortcode-functions.php:287
219
  msgid "Average: "
220
  msgstr "Średnia:"
221
 
222
- #: ../lib/yasr-shortcode-functions.php:193
223
- #: ../lib/yasr-shortcode-functions.php:250
224
  msgid "You've already voted this article with"
225
  msgstr "Już oceniałeś. Twoja ocena to"
226
 
227
- #: ../lib/yasr-shortcode-functions.php:282
228
- #: ../lib/yasr-shortcode-functions.php:288
229
  msgid "You must sign to vote"
230
  msgstr "Musisz się zarejestrować, aby głosować"
231
 
232
- #: ../lib/yasr-shortcode-functions.php:312
233
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
234
  msgstr "'zły', 'słaby', 'ok', 'dobry', 'super'"
235
 
236
- #: ../lib/yasr-shortcode-functions.php:419
237
  msgid "Rating"
238
  msgstr "Ocena"
239
 
240
- #: ../lib/yasr-shortcode-functions.php:433
241
  msgid "You don't have any votes stored"
242
  msgstr "Nie masz żadnych przechowywanych głosów"
243
 
244
- #: ../lib/yasr-shortcode-functions.php:470
245
- #: ../lib/yasr-shortcode-functions.php:508
 
 
 
 
 
246
  msgid "Order By"
247
  msgstr ""
248
 
249
- #: ../lib/yasr-shortcode-functions.php:470
250
- #: ../lib/yasr-shortcode-functions.php:508
251
  #, fuzzy
252
  msgid "Most Rated"
253
  msgstr "Głos zaktualizowany"
254
 
255
- #: ../lib/yasr-shortcode-functions.php:470
256
- #: ../lib/yasr-shortcode-functions.php:508
257
  msgid "Highest Rated"
258
  msgstr ""
259
 
260
- #: ../lib/yasr-shortcode-functions.php:487
261
- #: ../lib/yasr-shortcode-functions.php:522
262
  msgid "Total:"
263
  msgstr "Głosów:"
264
 
265
- #: ../lib/yasr-shortcode-functions.php:487
266
- #: ../lib/yasr-shortcode-functions.php:522
267
  msgid "Average"
268
  msgstr "Średnia"
269
 
270
- #: ../lib/yasr-shortcode-functions.php:499
271
- #: ../lib/yasr-shortcode-functions.php:534
 
 
 
 
272
  msgid "You've not enought data"
273
  msgstr "Nie masz wystarczająco danych"
274
 
275
- #: ../lib/yasr-shortcode-functions.php:619
 
276
  msgid ""
277
- "Problem while retriving the top 5 most active reviewers. Did you published "
278
  "any review?"
279
  msgstr ""
280
  "Problem podczas pobierania Top 5 najaktywniejszych recenzentów. Czy "
281
  "opublikowałeś jakieś recenzje?"
282
 
283
- #: ../lib/yasr-shortcode-functions.php:687
 
284
  msgid ""
285
- "Problem while retriving the top 10 active users chart. Are you sure you have "
286
- "votes to show?"
287
  msgstr ""
288
  "Problem podczas pobierania wykresu Top 10 aktywnych użytkowników. Czy na "
289
  "pewno masz już jakieś głosy do pokazania?"
290
 
291
- #: ../lib/yasr-settings-functions.php:50
292
  msgid "General settings"
293
  msgstr "Ustawienia ogólne"
294
 
295
- #: ../lib/yasr-settings-functions.php:51
296
  msgid "Auto insert options"
297
  msgstr "Opcje auto wstawiania"
298
 
299
- #: ../lib/yasr-settings-functions.php:52
300
  msgid "Show \"Overall Rating\" in Home Page?"
301
  msgstr "Pokazać \"Ogólną Ocenę\" na stronie głównej?"
302
 
303
- #: ../lib/yasr-settings-functions.php:53
304
  msgid "Insert custom text to show before / after stars"
305
  msgstr "Wstaw własny tekst, aby pokazać przed / po gwiazdkach"
306
 
 
 
 
 
307
  #: ../lib/yasr-settings-functions.php:54
308
  msgid "Which color scheme do you want to use?"
309
  msgstr "Jakich kolorów chcesz użyć?"
@@ -327,17 +345,19 @@ msgstr "Użyć auto wstawianie?"
327
 
328
  #: ../lib/yasr-settings-functions.php:74
329
  #: ../lib/yasr-settings-functions.php:143
330
- #: ../lib/yasr-settings-functions.php:162
331
- #: ../lib/yasr-settings-functions.php:195
332
- #: ../lib/yasr-settings-functions.php:227
 
333
  msgid "Yes"
334
  msgstr "Tak"
335
 
336
  #: ../lib/yasr-settings-functions.php:88
337
  #: ../lib/yasr-settings-functions.php:148
338
- #: ../lib/yasr-settings-functions.php:167
339
- #: ../lib/yasr-settings-functions.php:200
340
- #: ../lib/yasr-settings-functions.php:232
 
341
  msgid "No"
342
  msgstr "Nie"
343
 
@@ -349,7 +369,7 @@ msgstr "Co?"
349
  msgid "Overall Rating / Author Rating"
350
  msgstr "Ogólna ocena / Ocena autora"
351
 
352
- #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
353
  msgid "Visitor Votes"
354
  msgstr "Głosy gości"
355
 
@@ -373,18 +393,18 @@ msgstr "Po wpisie"
373
  msgid "Size"
374
  msgstr "Rozmiar"
375
 
376
- #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
377
- #: ../lib/yasr-ajax-functions.php:470
378
  msgid "Small"
379
  msgstr "Małe"
380
 
381
- #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
382
- #: ../lib/yasr-ajax-functions.php:471
383
  msgid "Medium"
384
  msgstr "Średnie"
385
 
386
- #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
387
- #: ../lib/yasr-ajax-functions.php:472
388
  msgid "Large"
389
  msgstr "Duże"
390
 
@@ -392,21 +412,21 @@ msgstr "Duże"
392
  msgid "Exclude Pages?"
393
  msgstr "Wykluczyć strony?"
394
 
395
- #: ../lib/yasr-settings-functions.php:159
396
  msgid "Use only in custom post types?"
397
  msgstr "Używać tylko w niestandardowych postach?"
398
 
399
- #: ../lib/yasr-settings-functions.php:171
400
  msgid "You see this because you use custom post types."
401
  msgstr "Widzisz to, ponieważ używasz wpisów niestandardowych."
402
 
403
- #: ../lib/yasr-settings-functions.php:173
404
  msgid "If you want to use auto insert only in custom post types, choose Yes"
405
  msgstr ""
406
  "Jeśli chcesz użyć auto wstawiania tylko na niestandardowych wpisach, wybierz "
407
  "Tak"
408
 
409
- #: ../lib/yasr-settings-functions.php:204
410
  msgid ""
411
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
412
  "article or page, but also in pages like Home Page, category pages or "
@@ -416,60 +436,66 @@ msgstr ""
416
  "pojedyńczym artykule czy stronie ale też na stronie domowej, w kategoriach "
417
  "stron i archiwum."
418
 
419
- #: ../lib/yasr-settings-functions.php:237
420
  msgid "Custom text to display before Overall Rating"
421
  msgstr "Niestandardowy tekst do wyświetlenia przed Ogólną Oceną"
422
 
423
- #: ../lib/yasr-settings-functions.php:242
424
  msgid "Custom text to display before Visitor Rating"
425
  msgstr "Niestandardowy tekst do wyświetlenia przed Oceną Gości"
426
 
427
- #: ../lib/yasr-settings-functions.php:247
428
  msgid "Custom text to display when a non logged user has already rated"
429
  msgstr ""
430
  "Niestandardowy tekst do wyświetlenia gdy niezalogowany użytkownik już ocenił"
431
 
432
- #: ../lib/yasr-settings-functions.php:263
 
 
 
 
 
 
433
  msgid "Light"
434
  msgstr "Jasne"
435
 
436
- #: ../lib/yasr-settings-functions.php:268
437
  msgid "Dark"
438
  msgstr "Ciemne"
439
 
440
- #: ../lib/yasr-settings-functions.php:273
441
  msgid "Preview"
442
  msgstr "Podgląd"
443
 
444
- #: ../lib/yasr-settings-functions.php:278
445
  msgid "Light theme"
446
  msgstr "Jasny Temat"
447
 
448
- #: ../lib/yasr-settings-functions.php:283
449
  msgid "Dark Theme"
450
  msgstr "Ciemny Temat"
451
 
452
- #: ../lib/yasr-settings-functions.php:301
453
  msgid "Allow only logged-in users"
454
  msgstr "Pozwól tylko zalogowanym"
455
 
456
- #: ../lib/yasr-settings-functions.php:305
457
  msgid "Allow everybody (logged in and anonymous)"
458
  msgstr "Zezwalaj wszystkim (zalogowanym i anonimowym)"
459
 
460
- #: ../lib/yasr-settings-functions.php:322
461
  msgid "Review Rating"
462
  msgstr "Ocena recenzenta"
463
 
464
- #: ../lib/yasr-settings-functions.php:326
465
  msgid "Aggregate Rating"
466
  msgstr "Łączna ocena"
467
 
468
- #: ../lib/yasr-settings-functions.php:331
469
  msgid "What is this?"
470
  msgstr "Co to jest?"
471
 
472
- #: ../lib/yasr-settings-functions.php:336
473
  msgid ""
474
  "If you select \"Review Rating\", your site will be indexed from search "
475
  "engines like this: "
@@ -477,7 +503,7 @@ msgstr ""
477
  "Jeśli wybierzesz \"Ogólną Ocenę\", twoja strona będzie indeksowana w "
478
  "wyszukiwarkach właśnie tak:"
479
 
480
- #: ../lib/yasr-settings-functions.php:341
481
  msgid ""
482
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
483
  "this"
@@ -485,19 +511,19 @@ msgstr ""
485
  "Jeśli zamiast tego wybierzesz \"Łączną Ocenę\", twoja strona będzie "
486
  "indeksowana tak"
487
 
488
- #: ../lib/yasr-settings-functions.php:359
489
  msgid "Stars"
490
  msgstr "Gwiazdki"
491
 
492
- #: ../lib/yasr-settings-functions.php:363
493
  msgid "Numbers"
494
  msgstr "Cyfry"
495
 
496
- #: ../lib/yasr-settings-functions.php:376
497
  msgid "Add New Multiple Set"
498
  msgstr "Dodaj nowy zestaw ocen"
499
 
500
- #: ../lib/yasr-settings-functions.php:377
501
  msgid ""
502
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
503
  "characters"
@@ -505,48 +531,49 @@ msgstr ""
505
  "Nazwa, Element#1 i Element#2 MUSZĄ być wypełnione i muszą mieć minimum 3 "
506
  "znaki"
507
 
508
- #: ../lib/yasr-settings-functions.php:380
509
  msgid "Name"
510
  msgstr "Nazwa"
511
 
512
- #: ../lib/yasr-settings-functions.php:385
513
- msgid "You can insert up to nine element"
 
514
  msgstr "Można wstawić do dziewięciu elementów"
515
 
516
- #: ../lib/yasr-settings-functions.php:390
517
  msgid "Element "
518
  msgstr "Element"
519
 
520
- #: ../lib/yasr-settings-functions.php:400
521
  msgid "Create New Set"
522
  msgstr "Utwórz nowy zestaw"
523
 
524
- #: ../lib/yasr-settings-functions.php:421
525
- #: ../lib/yasr-settings-functions.php:453
526
  msgid "Manage Multiple Set"
527
  msgstr "Zarządzaj Zestawem Ocen"
528
 
529
- #: ../lib/yasr-settings-functions.php:423
530
  msgid "Wich set do you want to edit or remove?"
531
  msgstr "Który zestaw chcesz edytować lub usunąć?"
532
 
533
- #: ../lib/yasr-settings-functions.php:463
534
- #: ../lib/yasr-settings-functions.php:581
535
  msgid "Field name"
536
  msgstr "Nazwa pola"
537
 
538
- #: ../lib/yasr-settings-functions.php:467
539
- #: ../lib/yasr-settings-functions.php:585
540
  msgid "Remove"
541
  msgstr "Usuń"
542
 
543
- #: ../lib/yasr-settings-functions.php:509
544
- #: ../lib/yasr-settings-functions.php:627
545
  msgid "Remove whole set?"
546
  msgstr "Usunąć cały zestaw?"
547
 
548
- #: ../lib/yasr-settings-functions.php:522
549
- #: ../lib/yasr-settings-functions.php:640
550
  msgid ""
551
  "If you remove something you will remove all the votes for that set or field. "
552
  "This operation CAN'T BE undone."
@@ -554,56 +581,56 @@ msgstr ""
554
  "Jeśli coś usuniesz to usuniesz wszystkie głosy na tym zestawie lub polu. Ta "
555
  "operacja nie może być cofnięta."
556
 
557
- #: ../lib/yasr-settings-functions.php:529
558
- #: ../lib/yasr-settings-functions.php:647
559
  msgid "You can use up to 9 elements"
560
  msgstr "Możesz użyć do 9 elementów"
561
 
562
- #: ../lib/yasr-settings-functions.php:531
563
- #: ../lib/yasr-settings-functions.php:649
564
  msgid "Add element"
565
  msgstr "Dodaj element"
566
 
567
- #: ../lib/yasr-settings-functions.php:533
568
- #: ../lib/yasr-settings-functions.php:651
569
  msgid "Save changes"
570
  msgstr "Zapisz zmiany"
571
 
572
- #: ../lib/yasr-settings-functions.php:543
573
  msgid "No Multiple Set were found"
574
  msgstr "Nie znalezionu Zestawów Ocen"
575
 
576
- #: ../lib/yasr-settings-functions.php:793
577
- #: ../lib/yasr-settings-functions.php:1061
578
  msgid "Settings Saved"
579
  msgstr "Ustawienia zapisane"
580
 
581
- #: ../lib/yasr-settings-functions.php:798
582
  msgid "Something goes wrong trying insert set field name. Please report it"
583
  msgstr "Coś poszło nie tak podczas próby wstawiania pola nazwy. Zgłoś to"
584
 
585
- #: ../lib/yasr-settings-functions.php:804
586
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
587
  msgstr "Coś poszło nie tak podczas próby wstawiania Zestawu Ocen. Zgłoś to"
588
 
589
- #: ../lib/yasr-settings-functions.php:879
590
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
591
  msgstr "Coś poszło nie tak podczas próby kasowania Zestawu Ocen. Zgłoś to"
592
 
593
- #: ../lib/yasr-settings-functions.php:925
594
  msgid ""
595
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
596
  msgstr ""
597
  "Coś poszło nie tak podczas próby kasowania elementu Mulit Oceny. Zgłoś to"
598
 
599
- #: ../lib/yasr-settings-functions.php:989
600
  msgid ""
601
  "Something goes wrong trying to update a Multi Set's element. Please report it"
602
  msgstr ""
603
  "Coś poszło nie tak podczas próby aktualizowania elementu Mulit Oceny. Zgłoś "
604
  "to"
605
 
606
- #: ../lib/yasr-settings-functions.php:1046
607
  msgid ""
608
  "Something goes wrong trying to insert set field name in edit form. Please "
609
  "report it"
@@ -611,15 +638,15 @@ msgstr ""
611
  "Coś poszło nie tak podczas próby wstawiania pola nazwa w formularzu edycji. "
612
  "Zgłoś to"
613
 
614
- #: ../lib/yasr-settings-functions.php:1089
615
  msgid "Style Options"
616
  msgstr "Opcje stylu"
617
 
618
- #: ../lib/yasr-settings-functions.php:1090
619
  msgid "Custom CSS Styles"
620
  msgstr "Niestandardowy styl CSS"
621
 
622
- #: ../lib/yasr-settings-functions.php:1095
623
  msgid ""
624
  "Please use text area below to write your own CSS styles to override the "
625
  "default ones."
@@ -627,83 +654,96 @@ msgstr ""
627
  "Użyj pola tekstowego poniżej aby napisać swój własny styl CSS i zastąpić "
628
  "domyślny. "
629
 
630
- #: ../lib/yasr-settings-functions.php:1097
631
  msgid "Leave it blank if you don't know what you're doing"
632
  msgstr "Pozostaw puste, jeśli nie wiesz, co tu wstawić"
633
 
634
- #: ../lib/yasr-settings-functions.php:1130
635
  msgid "No previous Gd Star Rating installation was found"
636
  msgstr "Nie znaleziono wcześniejszych instalacji Gd Star Rating"
637
 
638
- #: ../lib/yasr-db-functions.php:259 ../lib/yasr-ajax-functions.php:729
639
- msgid "No Recenet votes yet"
 
640
  msgstr "Brak najnowszych głosów"
641
 
642
- #: ../lib/yasr-db-functions.php:274 ../lib/yasr-ajax-functions.php:742
643
  msgid "anonymous"
644
  msgstr "Anonim"
645
 
646
- #: ../lib/yasr-db-functions.php:297 ../lib/yasr-ajax-functions.php:765
647
  msgid "Ip address"
648
  msgstr "Adres IP"
649
 
650
- #: ../lib/yasr-db-functions.php:338 ../lib/yasr-ajax-functions.php:806
651
  msgid "Pages"
652
  msgstr "Strony"
653
 
654
- #: ../lib/yasr-functions.php:86 ../lib/yasr-functions.php:87
655
  msgid "Yet Another Stars Rating: Settings"
656
  msgstr "Yet Another Stars Rating: Ustawienia"
657
 
658
- #: ../lib/yasr-functions.php:130 ../lib/yasr-functions.php:137
659
  msgid "Overall Rating"
660
  msgstr "Ocena ogólna"
661
 
662
- #: ../lib/yasr-functions.php:131
663
  msgid "Yet Another Stars Rating: Multiple set"
664
  msgstr "Yet Another Stars Rating: Zestaw Ocen"
665
 
666
- #: ../lib/yasr-functions.php:147
667
  msgid "You don't have enought privileges to insert Overall Rating"
668
  msgstr "Nie masz wystarczającyh uprawnień aby wstawić Ogólną Ocenę"
669
 
670
- #: ../lib/yasr-functions.php:157
671
  msgid "You don't have enought privileges to insert Multi Set"
672
  msgstr "Nie masz wystarczającyh uprawnień aby wstawić Zestaw Ocen"
673
 
674
- #: ../lib/yasr-functions.php:292
675
  msgid " reviewed by "
676
  msgstr " zrecenzowane przez "
677
 
678
- #: ../lib/yasr-functions.php:293
679
  msgid " on "
680
  msgstr " dnia "
681
 
682
- #: ../lib/yasr-functions.php:294
683
  msgid " rated "
684
  msgstr " ocena "
685
 
686
- #: ../lib/yasr-functions.php:294
687
- msgid " on 5.0"
688
- msgstr " na 5.0"
689
 
690
- #: ../lib/yasr-functions.php:349
691
  #, fuzzy
692
  msgid " written by "
693
  msgstr " zrecenzowane przez "
694
 
695
- #: ../lib/yasr-functions.php:351
696
  msgid " average rating "
697
  msgstr "średnia ocen"
698
 
699
- #: ../lib/yasr-functions.php:352
700
  msgid " user ratings"
701
  msgstr "oceny użytkowników"
702
 
703
- #: ../lib/yasr-functions.php:458 ../lib/yasr-functions.php:485
704
  msgid "Follow YASR official site!"
705
  msgstr ""
706
 
 
 
 
 
 
 
 
 
 
 
 
 
707
  #: ../lib/yasr-ajax-functions.php:101
708
  msgid "You've rated it "
709
  msgstr "Już oceniłeś"
@@ -712,146 +752,146 @@ msgstr "Już oceniłeś"
712
  msgid "You've reset the vote"
713
  msgstr "Zresetowałeś głosy"
714
 
715
- #: ../lib/yasr-ajax-functions.php:170
716
  #, fuzzy
717
  msgid ""
718
  "There was an error while trying to insert the review type. Please report it"
719
  msgstr "Coś poszło nie tak podczas próby wstawiania pola nazwy. Zgłoś to"
720
 
721
- #: ../lib/yasr-ajax-functions.php:207
722
  msgid "Choose a vote for each element"
723
  msgstr "Wybierz głos dla każdego elementu"
724
 
725
- #: ../lib/yasr-ajax-functions.php:263 ../lib/yasr-ajax-functions.php:306
726
  msgid "Remember to insert this shortcode"
727
  msgstr "Pamiętaj aby wstawić ten kod"
728
 
729
- #: ../lib/yasr-ajax-functions.php:265 ../lib/yasr-ajax-functions.php:308
730
  msgid "where you want to display this multi set"
731
  msgstr "tam gdzie chcesz wyświetlić ten zestaw ocen"
732
 
733
- #: ../lib/yasr-ajax-functions.php:273
734
  msgid "Choose a vote for every element"
735
  msgstr "Wybierz głos dla każdego elementu"
736
 
737
- #: ../lib/yasr-ajax-functions.php:432
738
  msgid "Main"
739
  msgstr "Głowne"
740
 
741
- #: ../lib/yasr-ajax-functions.php:433
742
  msgid "Charts"
743
  msgstr "Wykresy"
744
 
745
- #: ../lib/yasr-ajax-functions.php:435
746
  msgid "Read the doc"
747
  msgstr "Przeczytaj dokumentacje"
748
 
749
- #: ../lib/yasr-ajax-functions.php:444
750
  msgid "Overall Rating / Review"
751
  msgstr "Ogólna ocena / przegląd"
752
 
753
- #: ../lib/yasr-ajax-functions.php:446
754
  msgid "Insert Overall Rating"
755
  msgstr "Wstaw ogolny ranking"
756
 
757
- #: ../lib/yasr-ajax-functions.php:447
758
  msgid "Insert Overall Rating / Review for this post"
759
  msgstr "Wstaw Ogólny Ranking / Oceny dla wpisu"
760
 
761
- #: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
762
  msgid "Choose Size"
763
  msgstr "Wybierz rozmiar"
764
 
765
- #: ../lib/yasr-ajax-functions.php:464
766
  msgid "Insert Visitor Votes"
767
  msgstr "Wstaw głosowanie gości"
768
 
769
- #: ../lib/yasr-ajax-functions.php:465
770
  msgid "Insert the ability for your visitor to vote"
771
  msgstr "Wstaw głosowanie dla gości"
772
 
773
- #: ../lib/yasr-ajax-functions.php:482
774
  msgid "If you want to insert a Multi Set, pick one:"
775
  msgstr "Jeśli chcesz wstawić Zestaw Ocen, wybierz jeden:"
776
 
777
- #: ../lib/yasr-ajax-functions.php:488
778
  msgid "Choose wich set you want to insert."
779
  msgstr "Wybierz zestaw, który chcesz wstawić."
780
 
781
- #: ../lib/yasr-ajax-functions.php:496
782
  msgid "Insert Multiset:"
783
  msgstr "Wstaw Zestaw Ocen"
784
 
785
- #: ../lib/yasr-ajax-functions.php:499
786
  msgid "Insert Multiple Set"
787
  msgstr "Wstaw Zestaw Ocen"
788
 
789
- #: ../lib/yasr-ajax-functions.php:500
790
  msgid "Insert multiple set in this post ?"
791
  msgstr "Dodać Zestaw Ocen do tego wpisu?"
792
 
793
- #: ../lib/yasr-ajax-functions.php:515
794
  msgid "Ranking reviews"
795
  msgstr ""
796
 
797
- #: ../lib/yasr-ajax-functions.php:516
798
  #, fuzzy
799
  msgid "Insert Ranking reviews"
800
  msgstr "Wstaw Top 5 aktywnych oceniających"
801
 
802
- #: ../lib/yasr-ajax-functions.php:517
803
  #, fuzzy
804
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
805
  msgstr "Wstaw Top 10 postów gości"
806
 
807
- #: ../lib/yasr-ajax-functions.php:521
808
  #, fuzzy
809
  msgid "Users' ranking"
810
  msgstr "Wstaw ogolny ranking"
811
 
812
- #: ../lib/yasr-ajax-functions.php:522
813
  #, fuzzy
814
  msgid "Insert Users ranking"
815
  msgstr "Wstaw ogolny ranking"
816
 
817
- #: ../lib/yasr-ajax-functions.php:523
818
  #, fuzzy
819
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
820
  msgstr "Wstaw Top 10 postów gości"
821
 
822
- #: ../lib/yasr-ajax-functions.php:527
823
  msgid "Most active reviewers"
824
  msgstr "Najbardziej aktywny recenzent"
825
 
826
- #: ../lib/yasr-ajax-functions.php:528
827
  #, fuzzy
828
  msgid "Insert Most Active Reviewers"
829
  msgstr "Wstaw Top 5 najaktywniejszych oceniających"
830
 
831
- #: ../lib/yasr-ajax-functions.php:529
832
  msgid "Insert Top 5 active reviewers"
833
  msgstr "Wstaw Top 5 aktywnych oceniających"
834
 
835
- #: ../lib/yasr-ajax-functions.php:533
836
  #, fuzzy
837
  msgid "Most Active Users"
838
  msgstr "Najaktywniejsi użytkownicy"
839
 
840
- #: ../lib/yasr-ajax-functions.php:534
841
  #, fuzzy
842
  msgid "Insert Most Active Users"
843
  msgstr "Wstaw Top 10 najaktywniejszych użytkowników"
844
 
845
- #: ../lib/yasr-ajax-functions.php:535
846
  #, fuzzy
847
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
848
  msgstr "Wstaw Top 10 postów gości"
849
 
850
- #: ../lib/yasr-ajax-functions.php:587
851
  msgid "Reviews and Visitor Votes have been successfull imported."
852
  msgstr "Opinie i Oceny gości zostały zaimportowane."
853
 
854
- #: ../lib/yasr-ajax-functions.php:593
855
  msgid ""
856
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
857
  "THIS MAY TAKE A WHILE!"
@@ -859,71 +899,78 @@ msgstr ""
859
  "Krok 2: Sprawdzę, czy stosuje się Zestawy Ocen, a jeśli tak będę je "
860
  "importować. TO MOŻE CHWILĘ POTRWAĆ!"
861
 
862
- #: ../lib/yasr-ajax-functions.php:595
863
  msgid "Proceed Step 2"
864
  msgstr "Następny krok 2"
865
 
866
- #: ../lib/yasr-ajax-functions.php:602
867
  msgid "Something goes wrong! Refresh the page and try again!"
868
  msgstr "Coś poszło nie tak! Odśwież stronę i spróbuj jeszcze raz!"
869
 
870
- #: ../lib/yasr-ajax-functions.php:631
871
  msgid "I've found Multiple Set! Importing..."
872
  msgstr "Znalazłem Zestaw Ocen! Importuje..."
873
 
874
- #: ../lib/yasr-ajax-functions.php:640
875
  msgid "Multi Set's name has been successfull imported."
876
  msgstr "Nazwa Zestawu Oceny została zaimportowana pomyślnie."
877
 
878
- #: ../lib/yasr-ajax-functions.php:642
879
  msgid "Now I'm going to import Multi Set data"
880
  msgstr "Teraz zaimportuje dane Zestawu Ocen"
881
 
882
- #: ../lib/yasr-ajax-functions.php:653
883
  msgid "All votes has been successfull imported."
884
  msgstr "Wszystkie głosy zostały pomyślnie zaimportowane."
885
 
886
- #: ../lib/yasr-ajax-functions.php:655
887
  msgid "Done"
888
  msgstr "Skończone"
889
 
890
- #: ../lib/yasr-ajax-functions.php:660
891
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
892
  msgstr "Znalazłem głosy Zestawu Ocen ale nie mogłem ich dodać do bazy"
893
 
894
- #: ../lib/yasr-ajax-functions.php:668
895
  msgid "I've found Multi Set but with no data"
896
  msgstr "Znalazłem Zestaw Ocen ale bez danych"
897
 
898
- #: ../lib/yasr-ajax-functions.php:677
899
  msgid "I've found Multi Sets names but I couldn't insert into db"
900
  msgstr "Znalazłem nazwy Multi Zestawów ale nie mogłem zamieścić ich w bazie"
901
 
902
- #: ../lib/yasr-ajax-functions.php:685
903
  msgid "Multisets were not found. Imported is done!"
904
  msgstr "Zestaw Ocen nie znaleziony. Importowanie zakończone!"
905
 
906
- #: ../lib/yasr-ajax-functions.php:888 ../lib/yasr-ajax-functions.php:1017
 
 
 
 
907
  msgid "Error: you can't vote 0"
908
  msgstr ""
909
 
910
- #: ../lib/yasr-ajax-functions.php:979 ../lib/yasr-ajax-functions.php:987
911
  msgid "Average rating"
912
  msgstr "Średnia ocen"
913
 
914
- #: ../lib/yasr-ajax-functions.php:980 ../lib/yasr-ajax-functions.php:988
915
  msgid "Vote Saved"
916
  msgstr "Głos zapisany"
917
 
918
- #: ../lib/yasr-ajax-functions.php:1087 ../lib/yasr-ajax-functions.php:1095
919
- #: ../lib/yasr-ajax-functions.php:1103
920
- msgid "Vote Updated"
921
  msgstr "Głos zaktualizowany"
922
 
923
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
924
  msgid "Average "
925
  msgstr "Średnia"
926
 
 
 
 
927
  #, fuzzy
928
  #~ msgid "Insert Reviews ranking"
929
  #~ msgstr "Wstaw ogolny ranking"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YASR lenguages\n"
4
+ "POT-Creation-Date: 2014-10-28 18:44+0100\n"
5
+ "PO-Revision-Date: 2014-10-28 18:44+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: Hoek i Tutu Team <hoek@hoek.pl>\n"
8
  "Language: pl_PL\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
  "X-Poedit-SearchPath-1: ../lib\n"
18
 
19
+ #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:109
20
+ #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:192
21
+ #: ../lib/yasr-ajax-functions.php:331 ../lib/yasr-ajax-functions.php:732
22
  msgid "You do not have sufficient permissions to access this page."
23
  msgstr "Nie posiadasz wystarczających uprawnień, by wejść na tę stronę."
24
 
38
  msgid "Styles"
39
  msgstr "Style"
40
 
41
+ #: ../yasr-settings-page.php:79
42
+ msgid "Pro Features!"
43
+ msgstr ""
44
+
45
+ #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:276
46
  msgid "Save"
47
  msgstr "Zapisz"
48
 
49
+ #: ../yasr-settings-page.php:116
50
  msgid "Import Gd Star Rating"
51
  msgstr "Importuj Gd Star Rating"
52
 
53
+ #: ../yasr-settings-page.php:117
54
  msgid "I've found a previous installation of Gd Star Rating."
55
  msgstr "Znalazłem poprzednią instalacje Gd Star Rating."
56
 
57
+ #: ../yasr-settings-page.php:117
58
  msgid "Do you want proceed to import data?"
59
  msgstr "Chcesz rozpocząć import danych?"
60
 
61
+ #: ../yasr-settings-page.php:119
62
  msgid "Yes, Begin Import"
63
  msgstr "Tak, rozpocznij import"
64
 
65
+ #: ../yasr-settings-page.php:123
66
  msgid "Click on Proceed to import Gd Star Rating data."
67
  msgstr "Kliknij na Dalej, aby zaimportować dane z Gd Star Rating."
68
 
69
+ #: ../yasr-settings-page.php:126 ../yasr-settings-page.php:159
70
  msgid "Proceed"
71
  msgstr "Dalej"
72
 
73
+ #: ../yasr-settings-page.php:148
74
  msgid "Manage GD Star Data"
75
  msgstr "Zarządzaj danymi GD Star"
76
 
77
+ #: ../yasr-settings-page.php:149
78
  msgid "Gd Star Rating has been already imported."
79
  msgstr "GD Star Rating został już zaimportowany."
80
 
81
+ #: ../yasr-settings-page.php:150
82
  msgid "If you wish you can import it again, but"
83
  msgstr "Jeśli chcesz możesz zaimportować ponownie, ale"
84
 
85
+ #: ../yasr-settings-page.php:150
86
  msgid "you will lose all data you've collect since the import!"
87
  msgstr "utracisz wszystkie dane zebrane od ostatniego importu!"
88
 
89
+ #: ../yasr-settings-page.php:152
90
  msgid "Ok, Import Again"
91
  msgstr "Ok, importuj ponownie"
92
 
93
+ #: ../yasr-settings-page.php:156
94
  msgid ""
95
  "Click on Proceed to import again Gd Star Rating data. This may take a while!"
96
  msgstr ""
97
  "Kliknij na Dalej, aby ponownie zaimportować dane Gd Star Rating. To może "
98
  "chwilę potrwać!"
99
 
100
+ #: ../yasr-settings-page.php:196
101
  msgid "Manage Multi Set"
102
  msgstr "Zarządzaj Zestawem Ocen"
103
 
104
+ #: ../yasr-settings-page.php:200
105
  msgid "What is a Multi Set?"
106
  msgstr "Co to jest Zestaw Ocen?"
107
 
139
  msgid "Close this message"
140
  msgstr "Zamknij tą wiadomość"
141
 
142
+ #: ../yasr-settings-page.php:246 ../lib/yasr-functions.php:457
143
+ #: ../lib/yasr-functions.php:483
144
  msgid "Donations"
145
  msgstr "Dotacje"
146
 
147
+ #: ../yasr-settings-page.php:248 ../lib/yasr-functions.php:459
148
+ #: ../lib/yasr-functions.php:485
149
  msgid ""
150
  "If you have found this plugin useful, please consider making a donation to "
151
  "help support future development. Your support will be much appreciated. "
154
  "darowizny w celu wsparcia dalszego rozwoju. Twoja pomoc będzie bardzo mile "
155
  "widziana."
156
 
157
+ #: ../yasr-settings-page.php:250 ../lib/yasr-functions.php:461
158
+ #: ../lib/yasr-functions.php:487
159
  msgid "Thank you!"
160
  msgstr "Dziękuje!"
161
 
165
 
166
  #: ../yasr-metabox-multiple-rating.php:46
167
  #: ../yasr-metabox-overall-rating.php:193
168
+ #: ../lib/yasr-settings-functions.php:468
169
  msgid "Select"
170
  msgstr "Wybierz"
171
 
174
  msgstr "Oceń ten wpis"
175
 
176
  #: ../yasr-metabox-overall-rating.php:71
177
+ #: ../lib/yasr-shortcode-functions.php:169
178
  msgid "Loading, please wait"
179
  msgstr "Wczytywanie, proszę czekać"
180
 
194
  "Pamiętaj aby wstawić ten kod <strong>[yasr_overall_rating]</strong> w "
195
  "miejscu gdzie ma wyświetlać się ocena"
196
 
197
+ #: ../lib/yasr-shortcode-functions.php:214
198
+ #: ../lib/yasr-shortcode-functions.php:226
199
+ #: ../lib/yasr-shortcode-functions.php:231
200
+ #: ../lib/yasr-shortcode-functions.php:246
201
+ #: ../lib/yasr-shortcode-functions.php:251
202
+ #: ../lib/yasr-shortcode-functions.php:271
203
+ #: ../lib/yasr-shortcode-functions.php:282
204
+ #: ../lib/yasr-shortcode-functions.php:288
205
+ #: ../lib/yasr-shortcode-functions.php:303
206
+ #: ../lib/yasr-shortcode-functions.php:309 ../lib/yasr-ajax-functions.php:994
207
+ #: ../lib/yasr-ajax-functions.php:1002 ../lib/yasr-ajax-functions.php:1117
208
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
 
209
  msgid "Total: "
210
  msgstr "Głosów:"
211
 
212
+ #: ../lib/yasr-shortcode-functions.php:214
213
+ #: ../lib/yasr-shortcode-functions.php:226
214
+ #: ../lib/yasr-shortcode-functions.php:231
215
+ #: ../lib/yasr-shortcode-functions.php:246
216
+ #: ../lib/yasr-shortcode-functions.php:251
217
+ #: ../lib/yasr-shortcode-functions.php:271
218
+ #: ../lib/yasr-shortcode-functions.php:282
219
+ #: ../lib/yasr-shortcode-functions.php:288
220
+ #: ../lib/yasr-shortcode-functions.php:303
221
+ #: ../lib/yasr-shortcode-functions.php:309
222
  msgid "Average: "
223
  msgstr "Średnia:"
224
 
225
+ #: ../lib/yasr-shortcode-functions.php:215
226
+ #: ../lib/yasr-shortcode-functions.php:272 ../lib/yasr-ajax-functions.php:1191
227
  msgid "You've already voted this article with"
228
  msgstr "Już oceniałeś. Twoja ocena to"
229
 
230
+ #: ../lib/yasr-shortcode-functions.php:304
231
+ #: ../lib/yasr-shortcode-functions.php:310
232
  msgid "You must sign to vote"
233
  msgstr "Musisz się zarejestrować, aby głosować"
234
 
235
+ #: ../lib/yasr-shortcode-functions.php:334
236
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
237
  msgstr "'zły', 'słaby', 'ok', 'dobry', 'super'"
238
 
239
+ #: ../lib/yasr-shortcode-functions.php:448
240
  msgid "Rating"
241
  msgstr "Ocena"
242
 
243
+ #: ../lib/yasr-shortcode-functions.php:462
244
  msgid "You don't have any votes stored"
245
  msgstr "Nie masz żadnych przechowywanych głosów"
246
 
247
+ #: ../lib/yasr-shortcode-functions.php:498
248
+ #: ../lib/yasr-shortcode-functions.php:536
249
+ msgid "Post / Page"
250
+ msgstr ""
251
+
252
+ #: ../lib/yasr-shortcode-functions.php:499
253
+ #: ../lib/yasr-shortcode-functions.php:537
254
  msgid "Order By"
255
  msgstr ""
256
 
257
+ #: ../lib/yasr-shortcode-functions.php:499
258
+ #: ../lib/yasr-shortcode-functions.php:537
259
  #, fuzzy
260
  msgid "Most Rated"
261
  msgstr "Głos zaktualizowany"
262
 
263
+ #: ../lib/yasr-shortcode-functions.php:499
264
+ #: ../lib/yasr-shortcode-functions.php:537
265
  msgid "Highest Rated"
266
  msgstr ""
267
 
268
+ #: ../lib/yasr-shortcode-functions.php:516
269
+ #: ../lib/yasr-shortcode-functions.php:551
270
  msgid "Total:"
271
  msgstr "Głosów:"
272
 
273
+ #: ../lib/yasr-shortcode-functions.php:516
274
+ #: ../lib/yasr-shortcode-functions.php:551
275
  msgid "Average"
276
  msgstr "Średnia"
277
 
278
+ #: ../lib/yasr-shortcode-functions.php:528
279
+ #, fuzzy
280
+ msgid "You've not enough data"
281
+ msgstr "Nie masz wystarczająco danych"
282
+
283
+ #: ../lib/yasr-shortcode-functions.php:563
284
  msgid "You've not enought data"
285
  msgstr "Nie masz wystarczająco danych"
286
 
287
+ #: ../lib/yasr-shortcode-functions.php:648
288
+ #, fuzzy
289
  msgid ""
290
+ "Problem while retrieving the top 5 most active reviewers. Did you publish "
291
  "any review?"
292
  msgstr ""
293
  "Problem podczas pobierania Top 5 najaktywniejszych recenzentów. Czy "
294
  "opublikowałeś jakieś recenzje?"
295
 
296
+ #: ../lib/yasr-shortcode-functions.php:716
297
+ #, fuzzy
298
  msgid ""
299
+ "Problem while retrieving the top 10 active users chart. Are you sure you "
300
+ "have votes to show?"
301
  msgstr ""
302
  "Problem podczas pobierania wykresu Top 10 aktywnych użytkowników. Czy na "
303
  "pewno masz już jakieś głosy do pokazania?"
304
 
305
+ #: ../lib/yasr-settings-functions.php:49
306
  msgid "General settings"
307
  msgstr "Ustawienia ogólne"
308
 
309
+ #: ../lib/yasr-settings-functions.php:50
310
  msgid "Auto insert options"
311
  msgstr "Opcje auto wstawiania"
312
 
313
+ #: ../lib/yasr-settings-functions.php:51
314
  msgid "Show \"Overall Rating\" in Home Page?"
315
  msgstr "Pokazać \"Ogólną Ocenę\" na stronie głównej?"
316
 
317
+ #: ../lib/yasr-settings-functions.php:52
318
  msgid "Insert custom text to show before / after stars"
319
  msgstr "Wstaw własny tekst, aby pokazać przed / po gwiazdkach"
320
 
321
+ #: ../lib/yasr-settings-functions.php:53
322
+ msgid "Do you want show stats for visitors votes?"
323
+ msgstr ""
324
+
325
  #: ../lib/yasr-settings-functions.php:54
326
  msgid "Which color scheme do you want to use?"
327
  msgstr "Jakich kolorów chcesz użyć?"
345
 
346
  #: ../lib/yasr-settings-functions.php:74
347
  #: ../lib/yasr-settings-functions.php:143
348
+ #: ../lib/yasr-settings-functions.php:161
349
+ #: ../lib/yasr-settings-functions.php:193
350
+ #: ../lib/yasr-settings-functions.php:225
351
+ #: ../lib/yasr-settings-functions.php:276
352
  msgid "Yes"
353
  msgstr "Tak"
354
 
355
  #: ../lib/yasr-settings-functions.php:88
356
  #: ../lib/yasr-settings-functions.php:148
357
+ #: ../lib/yasr-settings-functions.php:166
358
+ #: ../lib/yasr-settings-functions.php:198
359
+ #: ../lib/yasr-settings-functions.php:230
360
+ #: ../lib/yasr-settings-functions.php:281
361
  msgid "No"
362
  msgstr "Nie"
363
 
369
  msgid "Overall Rating / Author Rating"
370
  msgstr "Ogólna ocena / Ocena autora"
371
 
372
+ #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:458
373
  msgid "Visitor Votes"
374
  msgstr "Głosy gości"
375
 
393
  msgid "Size"
394
  msgstr "Rozmiar"
395
 
396
+ #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:448
397
+ #: ../lib/yasr-ajax-functions.php:466
398
  msgid "Small"
399
  msgstr "Małe"
400
 
401
+ #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:449
402
+ #: ../lib/yasr-ajax-functions.php:467
403
  msgid "Medium"
404
  msgstr "Średnie"
405
 
406
+ #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:450
407
+ #: ../lib/yasr-ajax-functions.php:468
408
  msgid "Large"
409
  msgstr "Duże"
410
 
412
  msgid "Exclude Pages?"
413
  msgstr "Wykluczyć strony?"
414
 
415
+ #: ../lib/yasr-settings-functions.php:158
416
  msgid "Use only in custom post types?"
417
  msgstr "Używać tylko w niestandardowych postach?"
418
 
419
+ #: ../lib/yasr-settings-functions.php:170
420
  msgid "You see this because you use custom post types."
421
  msgstr "Widzisz to, ponieważ używasz wpisów niestandardowych."
422
 
423
+ #: ../lib/yasr-settings-functions.php:172
424
  msgid "If you want to use auto insert only in custom post types, choose Yes"
425
  msgstr ""
426
  "Jeśli chcesz użyć auto wstawiania tylko na niestandardowych wpisach, wybierz "
427
  "Tak"
428
 
429
+ #: ../lib/yasr-settings-functions.php:202
430
  msgid ""
431
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
432
  "article or page, but also in pages like Home Page, category pages or "
436
  "pojedyńczym artykule czy stronie ale też na stronie domowej, w kategoriach "
437
  "stron i archiwum."
438
 
439
+ #: ../lib/yasr-settings-functions.php:235
440
  msgid "Custom text to display before Overall Rating"
441
  msgstr "Niestandardowy tekst do wyświetlenia przed Ogólną Oceną"
442
 
443
+ #: ../lib/yasr-settings-functions.php:240
444
  msgid "Custom text to display before Visitor Rating"
445
  msgstr "Niestandardowy tekst do wyświetlenia przed Oceną Gości"
446
 
447
+ #: ../lib/yasr-settings-functions.php:245
448
  msgid "Custom text to display when a non logged user has already rated"
449
  msgstr ""
450
  "Niestandardowy tekst do wyświetlenia gdy niezalogowany użytkownik już ocenił"
451
 
452
+ #: ../lib/yasr-settings-functions.php:259
453
+ msgid ""
454
+ "Seems like you've imported gd star rating in the past, but then deleted the "
455
+ "logs table. For now, you can't enable statistics"
456
+ msgstr ""
457
+
458
+ #: ../lib/yasr-settings-functions.php:301
459
  msgid "Light"
460
  msgstr "Jasne"
461
 
462
+ #: ../lib/yasr-settings-functions.php:306
463
  msgid "Dark"
464
  msgstr "Ciemne"
465
 
466
+ #: ../lib/yasr-settings-functions.php:311
467
  msgid "Preview"
468
  msgstr "Podgląd"
469
 
470
+ #: ../lib/yasr-settings-functions.php:316
471
  msgid "Light theme"
472
  msgstr "Jasny Temat"
473
 
474
+ #: ../lib/yasr-settings-functions.php:321
475
  msgid "Dark Theme"
476
  msgstr "Ciemny Temat"
477
 
478
+ #: ../lib/yasr-settings-functions.php:339
479
  msgid "Allow only logged-in users"
480
  msgstr "Pozwól tylko zalogowanym"
481
 
482
+ #: ../lib/yasr-settings-functions.php:343
483
  msgid "Allow everybody (logged in and anonymous)"
484
  msgstr "Zezwalaj wszystkim (zalogowanym i anonimowym)"
485
 
486
+ #: ../lib/yasr-settings-functions.php:360
487
  msgid "Review Rating"
488
  msgstr "Ocena recenzenta"
489
 
490
+ #: ../lib/yasr-settings-functions.php:364
491
  msgid "Aggregate Rating"
492
  msgstr "Łączna ocena"
493
 
494
+ #: ../lib/yasr-settings-functions.php:369
495
  msgid "What is this?"
496
  msgstr "Co to jest?"
497
 
498
+ #: ../lib/yasr-settings-functions.php:374
499
  msgid ""
500
  "If you select \"Review Rating\", your site will be indexed from search "
501
  "engines like this: "
503
  "Jeśli wybierzesz \"Ogólną Ocenę\", twoja strona będzie indeksowana w "
504
  "wyszukiwarkach właśnie tak:"
505
 
506
+ #: ../lib/yasr-settings-functions.php:379
507
  msgid ""
508
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
509
  "this"
511
  "Jeśli zamiast tego wybierzesz \"Łączną Ocenę\", twoja strona będzie "
512
  "indeksowana tak"
513
 
514
+ #: ../lib/yasr-settings-functions.php:397
515
  msgid "Stars"
516
  msgstr "Gwiazdki"
517
 
518
+ #: ../lib/yasr-settings-functions.php:401
519
  msgid "Numbers"
520
  msgstr "Cyfry"
521
 
522
+ #: ../lib/yasr-settings-functions.php:413
523
  msgid "Add New Multiple Set"
524
  msgstr "Dodaj nowy zestaw ocen"
525
 
526
+ #: ../lib/yasr-settings-functions.php:414
527
  msgid ""
528
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
529
  "characters"
531
  "Nazwa, Element#1 i Element#2 MUSZĄ być wypełnione i muszą mieć minimum 3 "
532
  "znaki"
533
 
534
+ #: ../lib/yasr-settings-functions.php:417
535
  msgid "Name"
536
  msgstr "Nazwa"
537
 
538
+ #: ../lib/yasr-settings-functions.php:422
539
+ #, fuzzy
540
+ msgid "You can insert up to nine elements"
541
  msgstr "Można wstawić do dziewięciu elementów"
542
 
543
+ #: ../lib/yasr-settings-functions.php:427
544
  msgid "Element "
545
  msgstr "Element"
546
 
547
+ #: ../lib/yasr-settings-functions.php:437
548
  msgid "Create New Set"
549
  msgstr "Utwórz nowy zestaw"
550
 
551
+ #: ../lib/yasr-settings-functions.php:458
552
+ #: ../lib/yasr-settings-functions.php:490
553
  msgid "Manage Multiple Set"
554
  msgstr "Zarządzaj Zestawem Ocen"
555
 
556
+ #: ../lib/yasr-settings-functions.php:460
557
  msgid "Wich set do you want to edit or remove?"
558
  msgstr "Który zestaw chcesz edytować lub usunąć?"
559
 
560
+ #: ../lib/yasr-settings-functions.php:500
561
+ #: ../lib/yasr-settings-functions.php:618
562
  msgid "Field name"
563
  msgstr "Nazwa pola"
564
 
565
+ #: ../lib/yasr-settings-functions.php:504
566
+ #: ../lib/yasr-settings-functions.php:622
567
  msgid "Remove"
568
  msgstr "Usuń"
569
 
570
+ #: ../lib/yasr-settings-functions.php:546
571
+ #: ../lib/yasr-settings-functions.php:664
572
  msgid "Remove whole set?"
573
  msgstr "Usunąć cały zestaw?"
574
 
575
+ #: ../lib/yasr-settings-functions.php:559
576
+ #: ../lib/yasr-settings-functions.php:677
577
  msgid ""
578
  "If you remove something you will remove all the votes for that set or field. "
579
  "This operation CAN'T BE undone."
581
  "Jeśli coś usuniesz to usuniesz wszystkie głosy na tym zestawie lub polu. Ta "
582
  "operacja nie może być cofnięta."
583
 
584
+ #: ../lib/yasr-settings-functions.php:566
585
+ #: ../lib/yasr-settings-functions.php:684
586
  msgid "You can use up to 9 elements"
587
  msgstr "Możesz użyć do 9 elementów"
588
 
589
+ #: ../lib/yasr-settings-functions.php:568
590
+ #: ../lib/yasr-settings-functions.php:686
591
  msgid "Add element"
592
  msgstr "Dodaj element"
593
 
594
+ #: ../lib/yasr-settings-functions.php:570
595
+ #: ../lib/yasr-settings-functions.php:688
596
  msgid "Save changes"
597
  msgstr "Zapisz zmiany"
598
 
599
+ #: ../lib/yasr-settings-functions.php:580
600
  msgid "No Multiple Set were found"
601
  msgstr "Nie znalezionu Zestawów Ocen"
602
 
603
+ #: ../lib/yasr-settings-functions.php:830
604
+ #: ../lib/yasr-settings-functions.php:1098
605
  msgid "Settings Saved"
606
  msgstr "Ustawienia zapisane"
607
 
608
+ #: ../lib/yasr-settings-functions.php:835
609
  msgid "Something goes wrong trying insert set field name. Please report it"
610
  msgstr "Coś poszło nie tak podczas próby wstawiania pola nazwy. Zgłoś to"
611
 
612
+ #: ../lib/yasr-settings-functions.php:841
613
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
614
  msgstr "Coś poszło nie tak podczas próby wstawiania Zestawu Ocen. Zgłoś to"
615
 
616
+ #: ../lib/yasr-settings-functions.php:916
617
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
618
  msgstr "Coś poszło nie tak podczas próby kasowania Zestawu Ocen. Zgłoś to"
619
 
620
+ #: ../lib/yasr-settings-functions.php:962
621
  msgid ""
622
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
623
  msgstr ""
624
  "Coś poszło nie tak podczas próby kasowania elementu Mulit Oceny. Zgłoś to"
625
 
626
+ #: ../lib/yasr-settings-functions.php:1026
627
  msgid ""
628
  "Something goes wrong trying to update a Multi Set's element. Please report it"
629
  msgstr ""
630
  "Coś poszło nie tak podczas próby aktualizowania elementu Mulit Oceny. Zgłoś "
631
  "to"
632
 
633
+ #: ../lib/yasr-settings-functions.php:1083
634
  msgid ""
635
  "Something goes wrong trying to insert set field name in edit form. Please "
636
  "report it"
638
  "Coś poszło nie tak podczas próby wstawiania pola nazwa w formularzu edycji. "
639
  "Zgłoś to"
640
 
641
+ #: ../lib/yasr-settings-functions.php:1126
642
  msgid "Style Options"
643
  msgstr "Opcje stylu"
644
 
645
+ #: ../lib/yasr-settings-functions.php:1127
646
  msgid "Custom CSS Styles"
647
  msgstr "Niestandardowy styl CSS"
648
 
649
+ #: ../lib/yasr-settings-functions.php:1132
650
  msgid ""
651
  "Please use text area below to write your own CSS styles to override the "
652
  "default ones."
654
  "Użyj pola tekstowego poniżej aby napisać swój własny styl CSS i zastąpić "
655
  "domyślny. "
656
 
657
+ #: ../lib/yasr-settings-functions.php:1134
658
  msgid "Leave it blank if you don't know what you're doing"
659
  msgstr "Pozostaw puste, jeśli nie wiesz, co tu wstawić"
660
 
661
+ #: ../lib/yasr-settings-functions.php:1167
662
  msgid "No previous Gd Star Rating installation was found"
663
  msgstr "Nie znaleziono wcześniejszych instalacji Gd Star Rating"
664
 
665
+ #: ../lib/yasr-db-functions.php:267
666
+ #, fuzzy
667
+ msgid "No recenet votes yet"
668
  msgstr "Brak najnowszych głosów"
669
 
670
+ #: ../lib/yasr-db-functions.php:282 ../lib/yasr-ajax-functions.php:757
671
  msgid "anonymous"
672
  msgstr "Anonim"
673
 
674
+ #: ../lib/yasr-db-functions.php:305 ../lib/yasr-ajax-functions.php:780
675
  msgid "Ip address"
676
  msgstr "Adres IP"
677
 
678
+ #: ../lib/yasr-db-functions.php:346 ../lib/yasr-ajax-functions.php:821
679
  msgid "Pages"
680
  msgstr "Strony"
681
 
682
+ #: ../lib/yasr-functions.php:97 ../lib/yasr-functions.php:98
683
  msgid "Yet Another Stars Rating: Settings"
684
  msgstr "Yet Another Stars Rating: Ustawienia"
685
 
686
+ #: ../lib/yasr-functions.php:141 ../lib/yasr-functions.php:148
687
  msgid "Overall Rating"
688
  msgstr "Ocena ogólna"
689
 
690
+ #: ../lib/yasr-functions.php:142
691
  msgid "Yet Another Stars Rating: Multiple set"
692
  msgstr "Yet Another Stars Rating: Zestaw Ocen"
693
 
694
+ #: ../lib/yasr-functions.php:158
695
  msgid "You don't have enought privileges to insert Overall Rating"
696
  msgstr "Nie masz wystarczającyh uprawnień aby wstawić Ogólną Ocenę"
697
 
698
+ #: ../lib/yasr-functions.php:168
699
  msgid "You don't have enought privileges to insert Multi Set"
700
  msgstr "Nie masz wystarczającyh uprawnień aby wstawić Zestaw Ocen"
701
 
702
+ #: ../lib/yasr-functions.php:303
703
  msgid " reviewed by "
704
  msgstr " zrecenzowane przez "
705
 
706
+ #: ../lib/yasr-functions.php:304
707
  msgid " on "
708
  msgstr " dnia "
709
 
710
+ #: ../lib/yasr-functions.php:305
711
  msgid " rated "
712
  msgstr " ocena "
713
 
714
+ #: ../lib/yasr-functions.php:305
715
+ msgid " of"
716
+ msgstr ""
717
 
718
+ #: ../lib/yasr-functions.php:360
719
  #, fuzzy
720
  msgid " written by "
721
  msgstr " zrecenzowane przez "
722
 
723
+ #: ../lib/yasr-functions.php:362
724
  msgid " average rating "
725
  msgstr "średnia ocen"
726
 
727
+ #: ../lib/yasr-functions.php:363
728
  msgid " user ratings"
729
  msgstr "oceny użytkowników"
730
 
731
+ #: ../lib/yasr-functions.php:469 ../lib/yasr-functions.php:496
732
  msgid "Follow YASR official site!"
733
  msgstr ""
734
 
735
+ #: ../lib/yasr-functions.php:515
736
+ msgid "Looking for more features?"
737
+ msgstr ""
738
+
739
+ #: ../lib/yasr-functions.php:516
740
+ msgid "Upgrade to yasr pro!"
741
+ msgstr ""
742
+
743
+ #: ../lib/yasr-functions.php:595
744
+ msgid "Not avaible yet"
745
+ msgstr ""
746
+
747
  #: ../lib/yasr-ajax-functions.php:101
748
  msgid "You've rated it "
749
  msgstr "Już oceniłeś"
752
  msgid "You've reset the vote"
753
  msgstr "Zresetowałeś głosy"
754
 
755
+ #: ../lib/yasr-ajax-functions.php:169
756
  #, fuzzy
757
  msgid ""
758
  "There was an error while trying to insert the review type. Please report it"
759
  msgstr "Coś poszło nie tak podczas próby wstawiania pola nazwy. Zgłoś to"
760
 
761
+ #: ../lib/yasr-ajax-functions.php:203
762
  msgid "Choose a vote for each element"
763
  msgstr "Wybierz głos dla każdego elementu"
764
 
765
+ #: ../lib/yasr-ajax-functions.php:259 ../lib/yasr-ajax-functions.php:302
766
  msgid "Remember to insert this shortcode"
767
  msgstr "Pamiętaj aby wstawić ten kod"
768
 
769
+ #: ../lib/yasr-ajax-functions.php:261 ../lib/yasr-ajax-functions.php:304
770
  msgid "where you want to display this multi set"
771
  msgstr "tam gdzie chcesz wyświetlić ten zestaw ocen"
772
 
773
+ #: ../lib/yasr-ajax-functions.php:269
774
  msgid "Choose a vote for every element"
775
  msgstr "Wybierz głos dla każdego elementu"
776
 
777
+ #: ../lib/yasr-ajax-functions.php:428
778
  msgid "Main"
779
  msgstr "Głowne"
780
 
781
+ #: ../lib/yasr-ajax-functions.php:429
782
  msgid "Charts"
783
  msgstr "Wykresy"
784
 
785
+ #: ../lib/yasr-ajax-functions.php:431
786
  msgid "Read the doc"
787
  msgstr "Przeczytaj dokumentacje"
788
 
789
+ #: ../lib/yasr-ajax-functions.php:440
790
  msgid "Overall Rating / Review"
791
  msgstr "Ogólna ocena / przegląd"
792
 
793
+ #: ../lib/yasr-ajax-functions.php:442
794
  msgid "Insert Overall Rating"
795
  msgstr "Wstaw ogolny ranking"
796
 
797
+ #: ../lib/yasr-ajax-functions.php:443
798
  msgid "Insert Overall Rating / Review for this post"
799
  msgstr "Wstaw Ogólny Ranking / Oceny dla wpisu"
800
 
801
+ #: ../lib/yasr-ajax-functions.php:446 ../lib/yasr-ajax-functions.php:464
802
  msgid "Choose Size"
803
  msgstr "Wybierz rozmiar"
804
 
805
+ #: ../lib/yasr-ajax-functions.php:460
806
  msgid "Insert Visitor Votes"
807
  msgstr "Wstaw głosowanie gości"
808
 
809
+ #: ../lib/yasr-ajax-functions.php:461
810
  msgid "Insert the ability for your visitor to vote"
811
  msgstr "Wstaw głosowanie dla gości"
812
 
813
+ #: ../lib/yasr-ajax-functions.php:478
814
  msgid "If you want to insert a Multi Set, pick one:"
815
  msgstr "Jeśli chcesz wstawić Zestaw Ocen, wybierz jeden:"
816
 
817
+ #: ../lib/yasr-ajax-functions.php:484
818
  msgid "Choose wich set you want to insert."
819
  msgstr "Wybierz zestaw, który chcesz wstawić."
820
 
821
+ #: ../lib/yasr-ajax-functions.php:492
822
  msgid "Insert Multiset:"
823
  msgstr "Wstaw Zestaw Ocen"
824
 
825
+ #: ../lib/yasr-ajax-functions.php:495
826
  msgid "Insert Multiple Set"
827
  msgstr "Wstaw Zestaw Ocen"
828
 
829
+ #: ../lib/yasr-ajax-functions.php:496
830
  msgid "Insert multiple set in this post ?"
831
  msgstr "Dodać Zestaw Ocen do tego wpisu?"
832
 
833
+ #: ../lib/yasr-ajax-functions.php:511
834
  msgid "Ranking reviews"
835
  msgstr ""
836
 
837
+ #: ../lib/yasr-ajax-functions.php:512
838
  #, fuzzy
839
  msgid "Insert Ranking reviews"
840
  msgstr "Wstaw Top 5 aktywnych oceniających"
841
 
842
+ #: ../lib/yasr-ajax-functions.php:513
843
  #, fuzzy
844
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
845
  msgstr "Wstaw Top 10 postów gości"
846
 
847
+ #: ../lib/yasr-ajax-functions.php:517
848
  #, fuzzy
849
  msgid "Users' ranking"
850
  msgstr "Wstaw ogolny ranking"
851
 
852
+ #: ../lib/yasr-ajax-functions.php:518
853
  #, fuzzy
854
  msgid "Insert Users ranking"
855
  msgstr "Wstaw ogolny ranking"
856
 
857
+ #: ../lib/yasr-ajax-functions.php:519
858
  #, fuzzy
859
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
860
  msgstr "Wstaw Top 10 postów gości"
861
 
862
+ #: ../lib/yasr-ajax-functions.php:523
863
  msgid "Most active reviewers"
864
  msgstr "Najbardziej aktywny recenzent"
865
 
866
+ #: ../lib/yasr-ajax-functions.php:524
867
  #, fuzzy
868
  msgid "Insert Most Active Reviewers"
869
  msgstr "Wstaw Top 5 najaktywniejszych oceniających"
870
 
871
+ #: ../lib/yasr-ajax-functions.php:525
872
  msgid "Insert Top 5 active reviewers"
873
  msgstr "Wstaw Top 5 aktywnych oceniających"
874
 
875
+ #: ../lib/yasr-ajax-functions.php:529
876
  #, fuzzy
877
  msgid "Most Active Users"
878
  msgstr "Najaktywniejsi użytkownicy"
879
 
880
+ #: ../lib/yasr-ajax-functions.php:530
881
  #, fuzzy
882
  msgid "Insert Most Active Users"
883
  msgstr "Wstaw Top 10 najaktywniejszych użytkowników"
884
 
885
+ #: ../lib/yasr-ajax-functions.php:531
886
  #, fuzzy
887
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
888
  msgstr "Wstaw Top 10 postów gości"
889
 
890
+ #: ../lib/yasr-ajax-functions.php:602
891
  msgid "Reviews and Visitor Votes have been successfull imported."
892
  msgstr "Opinie i Oceny gości zostały zaimportowane."
893
 
894
+ #: ../lib/yasr-ajax-functions.php:608
895
  msgid ""
896
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
897
  "THIS MAY TAKE A WHILE!"
899
  "Krok 2: Sprawdzę, czy stosuje się Zestawy Ocen, a jeśli tak będę je "
900
  "importować. TO MOŻE CHWILĘ POTRWAĆ!"
901
 
902
+ #: ../lib/yasr-ajax-functions.php:610
903
  msgid "Proceed Step 2"
904
  msgstr "Następny krok 2"
905
 
906
+ #: ../lib/yasr-ajax-functions.php:617
907
  msgid "Something goes wrong! Refresh the page and try again!"
908
  msgstr "Coś poszło nie tak! Odśwież stronę i spróbuj jeszcze raz!"
909
 
910
+ #: ../lib/yasr-ajax-functions.php:646
911
  msgid "I've found Multiple Set! Importing..."
912
  msgstr "Znalazłem Zestaw Ocen! Importuje..."
913
 
914
+ #: ../lib/yasr-ajax-functions.php:655
915
  msgid "Multi Set's name has been successfull imported."
916
  msgstr "Nazwa Zestawu Oceny została zaimportowana pomyślnie."
917
 
918
+ #: ../lib/yasr-ajax-functions.php:657
919
  msgid "Now I'm going to import Multi Set data"
920
  msgstr "Teraz zaimportuje dane Zestawu Ocen"
921
 
922
+ #: ../lib/yasr-ajax-functions.php:668
923
  msgid "All votes has been successfull imported."
924
  msgstr "Wszystkie głosy zostały pomyślnie zaimportowane."
925
 
926
+ #: ../lib/yasr-ajax-functions.php:670
927
  msgid "Done"
928
  msgstr "Skończone"
929
 
930
+ #: ../lib/yasr-ajax-functions.php:675
931
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
932
  msgstr "Znalazłem głosy Zestawu Ocen ale nie mogłem ich dodać do bazy"
933
 
934
+ #: ../lib/yasr-ajax-functions.php:683
935
  msgid "I've found Multi Set but with no data"
936
  msgstr "Znalazłem Zestaw Ocen ale bez danych"
937
 
938
+ #: ../lib/yasr-ajax-functions.php:692
939
  msgid "I've found Multi Sets names but I couldn't insert into db"
940
  msgstr "Znalazłem nazwy Multi Zestawów ale nie mogłem zamieścić ich w bazie"
941
 
942
+ #: ../lib/yasr-ajax-functions.php:700
943
  msgid "Multisets were not found. Imported is done!"
944
  msgstr "Zestaw Ocen nie znaleziony. Importowanie zakończone!"
945
 
946
+ #: ../lib/yasr-ajax-functions.php:744
947
+ msgid "No Recenet votes yet"
948
+ msgstr "Brak najnowszych głosów"
949
+
950
+ #: ../lib/yasr-ajax-functions.php:903 ../lib/yasr-ajax-functions.php:1032
951
  msgid "Error: you can't vote 0"
952
  msgstr ""
953
 
954
+ #: ../lib/yasr-ajax-functions.php:994 ../lib/yasr-ajax-functions.php:1002
955
  msgid "Average rating"
956
  msgstr "Średnia ocen"
957
 
958
+ #: ../lib/yasr-ajax-functions.php:995 ../lib/yasr-ajax-functions.php:1003
959
  msgid "Vote Saved"
960
  msgstr "Głos zapisany"
961
 
962
+ #: ../lib/yasr-ajax-functions.php:1118
963
+ #, fuzzy
964
+ msgid "Vote updated"
965
  msgstr "Głos zaktualizowany"
966
 
967
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
968
  msgid "Average "
969
  msgstr "Średnia"
970
 
971
+ #~ msgid " on 5.0"
972
+ #~ msgstr " na 5.0"
973
+
974
  #, fuzzy
975
  #~ msgid "Insert Reviews ranking"
976
  #~ msgstr "Wstaw ogolny ranking"
languages/yasr.mo CHANGED
Binary file
languages/yasr.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YASR lenguages\n"
4
- "POT-Creation-Date: 2014-10-11 15:19+0100\n"
5
- "PO-Revision-Date: 2014-10-11 16:09+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: En\n"
@@ -15,9 +15,9 @@ msgstr ""
15
  "X-Poedit-SearchPath-0: ..\n"
16
  "X-Poedit-SearchPath-1: ../lib\n"
17
 
18
- #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
19
- #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:196
20
- #: ../lib/yasr-ajax-functions.php:335 ../lib/yasr-ajax-functions.php:717
21
  msgid "You do not have sufficient permissions to access this page."
22
  msgstr ""
23
 
@@ -37,64 +37,68 @@ msgstr ""
37
  msgid "Styles"
38
  msgstr ""
39
 
40
- #: ../yasr-settings-page.php:94 ../yasr-settings-page.php:277
 
 
 
 
41
  msgid "Save"
42
  msgstr ""
43
 
44
- #: ../yasr-settings-page.php:114
45
  msgid "Import Gd Star Rating"
46
  msgstr ""
47
 
48
- #: ../yasr-settings-page.php:115
49
  msgid "I've found a previous installation of Gd Star Rating."
50
  msgstr ""
51
 
52
- #: ../yasr-settings-page.php:115
53
  msgid "Do you want proceed to import data?"
54
  msgstr ""
55
 
56
- #: ../yasr-settings-page.php:117
57
  msgid "Yes, Begin Import"
58
  msgstr ""
59
 
60
- #: ../yasr-settings-page.php:121
61
  msgid "Click on Proceed to import Gd Star Rating data."
62
  msgstr ""
63
 
64
- #: ../yasr-settings-page.php:124 ../yasr-settings-page.php:157
65
  msgid "Proceed"
66
  msgstr ""
67
 
68
- #: ../yasr-settings-page.php:146
69
  msgid "Manage GD Star Data"
70
  msgstr ""
71
 
72
- #: ../yasr-settings-page.php:147
73
  msgid "Gd Star Rating has been already imported."
74
  msgstr ""
75
 
76
- #: ../yasr-settings-page.php:148
77
  msgid "If you wish you can import it again, but"
78
  msgstr ""
79
 
80
- #: ../yasr-settings-page.php:148
81
  msgid "you will lose all data you've collect since the import!"
82
  msgstr ""
83
 
84
- #: ../yasr-settings-page.php:150
85
  msgid "Ok, Import Again"
86
  msgstr ""
87
 
88
- #: ../yasr-settings-page.php:154
89
  msgid ""
90
  "Click on Proceed to import again Gd Star Rating data. This may take a while!"
91
  msgstr ""
92
 
93
- #: ../yasr-settings-page.php:195
94
  msgid "Manage Multi Set"
95
  msgstr ""
96
 
97
- #: ../yasr-settings-page.php:199
98
  msgid "What is a Multi Set?"
99
  msgstr ""
100
 
@@ -123,20 +127,20 @@ msgstr ""
123
  msgid "Close this message"
124
  msgstr ""
125
 
126
- #: ../yasr-settings-page.php:247 ../lib/yasr-functions.php:446
127
- #: ../lib/yasr-functions.php:472
128
  msgid "Donations"
129
  msgstr ""
130
 
131
- #: ../yasr-settings-page.php:249 ../lib/yasr-functions.php:448
132
- #: ../lib/yasr-functions.php:474
133
  msgid ""
134
  "If you have found this plugin useful, please consider making a donation to "
135
  "help support future development. Your support will be much appreciated. "
136
  msgstr ""
137
 
138
- #: ../yasr-settings-page.php:251 ../lib/yasr-functions.php:450
139
- #: ../lib/yasr-functions.php:476
140
  msgid "Thank you!"
141
  msgstr ""
142
 
@@ -146,7 +150,7 @@ msgstr ""
146
 
147
  #: ../yasr-metabox-multiple-rating.php:46
148
  #: ../yasr-metabox-overall-rating.php:193
149
- #: ../lib/yasr-settings-functions.php:431
150
  msgid "Select"
151
  msgstr ""
152
 
@@ -155,7 +159,7 @@ msgid "Rate this article / item"
155
  msgstr ""
156
 
157
  #: ../yasr-metabox-overall-rating.php:71
158
- #: ../lib/yasr-shortcode-functions.php:147
159
  msgid "Loading, please wait"
160
  msgstr ""
161
 
@@ -173,120 +177,126 @@ msgid ""
173
  "where you want to display this rating"
174
  msgstr ""
175
 
176
- #: ../lib/yasr-shortcode-functions.php:192
177
- #: ../lib/yasr-shortcode-functions.php:204
178
- #: ../lib/yasr-shortcode-functions.php:209
179
- #: ../lib/yasr-shortcode-functions.php:224
180
- #: ../lib/yasr-shortcode-functions.php:229
181
- #: ../lib/yasr-shortcode-functions.php:249
182
- #: ../lib/yasr-shortcode-functions.php:260
183
- #: ../lib/yasr-shortcode-functions.php:266
184
- #: ../lib/yasr-shortcode-functions.php:281
185
- #: ../lib/yasr-shortcode-functions.php:287 ../lib/yasr-ajax-functions.php:979
186
- #: ../lib/yasr-ajax-functions.php:987 ../lib/yasr-ajax-functions.php:1086
187
- #: ../lib/yasr-ajax-functions.php:1094 ../lib/yasr-ajax-functions.php:1102
188
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
189
  msgid "Total: "
190
  msgstr ""
191
 
192
- #: ../lib/yasr-shortcode-functions.php:192
193
- #: ../lib/yasr-shortcode-functions.php:204
194
- #: ../lib/yasr-shortcode-functions.php:209
195
- #: ../lib/yasr-shortcode-functions.php:224
196
- #: ../lib/yasr-shortcode-functions.php:229
197
- #: ../lib/yasr-shortcode-functions.php:249
198
- #: ../lib/yasr-shortcode-functions.php:260
199
- #: ../lib/yasr-shortcode-functions.php:266
200
- #: ../lib/yasr-shortcode-functions.php:281
201
- #: ../lib/yasr-shortcode-functions.php:287
202
  msgid "Average: "
203
  msgstr ""
204
 
205
- #: ../lib/yasr-shortcode-functions.php:193
206
- #: ../lib/yasr-shortcode-functions.php:250
207
  msgid "You've already voted this article with"
208
  msgstr ""
209
 
210
- #: ../lib/yasr-shortcode-functions.php:282
211
- #: ../lib/yasr-shortcode-functions.php:288
212
  msgid "You must sign to vote"
213
  msgstr ""
214
 
215
- #: ../lib/yasr-shortcode-functions.php:312
216
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
217
  msgstr ""
218
 
219
- #: ../lib/yasr-shortcode-functions.php:419
220
  msgid "Rating"
221
  msgstr ""
222
 
223
- #: ../lib/yasr-shortcode-functions.php:433
224
  msgid "You don't have any votes stored"
225
  msgstr ""
226
 
227
- #: ../lib/yasr-shortcode-functions.php:469
228
- #: ../lib/yasr-shortcode-functions.php:507
229
  msgid "Post / Page"
230
  msgstr ""
231
 
232
- #: ../lib/yasr-shortcode-functions.php:470
233
- #: ../lib/yasr-shortcode-functions.php:508
234
  msgid "Order By"
235
  msgstr ""
236
 
237
- #: ../lib/yasr-shortcode-functions.php:470
238
- #: ../lib/yasr-shortcode-functions.php:508
239
  msgid "Most Rated"
240
  msgstr ""
241
 
242
- #: ../lib/yasr-shortcode-functions.php:470
243
- #: ../lib/yasr-shortcode-functions.php:508
244
  msgid "Highest Rated"
245
  msgstr ""
246
 
247
- #: ../lib/yasr-shortcode-functions.php:487
248
- #: ../lib/yasr-shortcode-functions.php:522
249
  msgid "Total:"
250
  msgstr ""
251
 
252
- #: ../lib/yasr-shortcode-functions.php:487
253
- #: ../lib/yasr-shortcode-functions.php:522
254
  msgid "Average"
255
  msgstr ""
256
 
257
- #: ../lib/yasr-shortcode-functions.php:499
258
- #: ../lib/yasr-shortcode-functions.php:534
 
 
 
259
  msgid "You've not enought data"
260
  msgstr ""
261
 
262
- #: ../lib/yasr-shortcode-functions.php:619
263
  msgid ""
264
- "Problem while retriving the top 5 most active reviewers. Did you published "
265
  "any review?"
266
  msgstr ""
267
 
268
- #: ../lib/yasr-shortcode-functions.php:687
269
  msgid ""
270
- "Problem while retriving the top 10 active users chart. Are you sure you have "
271
- "votes to show?"
272
  msgstr ""
273
 
274
- #: ../lib/yasr-settings-functions.php:50
275
  msgid "General settings"
276
  msgstr ""
277
 
278
- #: ../lib/yasr-settings-functions.php:51
279
  msgid "Auto insert options"
280
  msgstr ""
281
 
282
- #: ../lib/yasr-settings-functions.php:52
283
  msgid "Show \"Overall Rating\" in Home Page?"
284
  msgstr ""
285
 
286
- #: ../lib/yasr-settings-functions.php:53
287
  msgid "Insert custom text to show before / after stars"
288
  msgstr ""
289
 
 
 
 
 
290
  #: ../lib/yasr-settings-functions.php:54
291
  msgid "Which color scheme do you want to use?"
292
  msgstr ""
@@ -309,17 +319,19 @@ msgstr ""
309
 
310
  #: ../lib/yasr-settings-functions.php:74
311
  #: ../lib/yasr-settings-functions.php:143
312
- #: ../lib/yasr-settings-functions.php:162
313
- #: ../lib/yasr-settings-functions.php:195
314
- #: ../lib/yasr-settings-functions.php:227
 
315
  msgid "Yes"
316
  msgstr ""
317
 
318
  #: ../lib/yasr-settings-functions.php:88
319
  #: ../lib/yasr-settings-functions.php:148
320
- #: ../lib/yasr-settings-functions.php:167
321
- #: ../lib/yasr-settings-functions.php:200
322
- #: ../lib/yasr-settings-functions.php:232
 
323
  msgid "No"
324
  msgstr ""
325
 
@@ -331,7 +343,7 @@ msgstr ""
331
  msgid "Overall Rating / Author Rating"
332
  msgstr ""
333
 
334
- #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
335
  msgid "Visitor Votes"
336
  msgstr ""
337
 
@@ -355,18 +367,18 @@ msgstr ""
355
  msgid "Size"
356
  msgstr ""
357
 
358
- #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
359
- #: ../lib/yasr-ajax-functions.php:470
360
  msgid "Small"
361
  msgstr ""
362
 
363
- #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
364
- #: ../lib/yasr-ajax-functions.php:471
365
  msgid "Medium"
366
  msgstr ""
367
 
368
- #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
369
- #: ../lib/yasr-ajax-functions.php:472
370
  msgid "Large"
371
  msgstr ""
372
 
@@ -374,296 +386,314 @@ msgstr ""
374
  msgid "Exclude Pages?"
375
  msgstr ""
376
 
377
- #: ../lib/yasr-settings-functions.php:159
378
  msgid "Use only in custom post types?"
379
  msgstr ""
380
 
381
- #: ../lib/yasr-settings-functions.php:171
382
  msgid "You see this because you use custom post types."
383
  msgstr ""
384
 
385
- #: ../lib/yasr-settings-functions.php:173
386
  msgid "If you want to use auto insert only in custom post types, choose Yes"
387
  msgstr ""
388
 
389
- #: ../lib/yasr-settings-functions.php:204
390
  msgid ""
391
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
392
  "article or page, but also in pages like Home Page, category pages or "
393
  "archives."
394
  msgstr ""
395
 
396
- #: ../lib/yasr-settings-functions.php:237
397
  msgid "Custom text to display before Overall Rating"
398
  msgstr ""
399
 
400
- #: ../lib/yasr-settings-functions.php:242
401
  msgid "Custom text to display before Visitor Rating"
402
  msgstr ""
403
 
404
- #: ../lib/yasr-settings-functions.php:247
405
  msgid "Custom text to display when a non logged user has already rated"
406
  msgstr ""
407
 
408
- #: ../lib/yasr-settings-functions.php:263
 
 
 
 
 
 
409
  msgid "Light"
410
  msgstr ""
411
 
412
- #: ../lib/yasr-settings-functions.php:268
413
  msgid "Dark"
414
  msgstr ""
415
 
416
- #: ../lib/yasr-settings-functions.php:273
417
  msgid "Preview"
418
  msgstr ""
419
 
420
- #: ../lib/yasr-settings-functions.php:278
421
  msgid "Light theme"
422
  msgstr ""
423
 
424
- #: ../lib/yasr-settings-functions.php:283
425
  msgid "Dark Theme"
426
  msgstr ""
427
 
428
- #: ../lib/yasr-settings-functions.php:301
429
  msgid "Allow only logged-in users"
430
  msgstr ""
431
 
432
- #: ../lib/yasr-settings-functions.php:305
433
  msgid "Allow everybody (logged in and anonymous)"
434
  msgstr ""
435
 
436
- #: ../lib/yasr-settings-functions.php:322
437
  msgid "Review Rating"
438
  msgstr ""
439
 
440
- #: ../lib/yasr-settings-functions.php:326
441
  msgid "Aggregate Rating"
442
  msgstr ""
443
 
444
- #: ../lib/yasr-settings-functions.php:331
445
  msgid "What is this?"
446
  msgstr ""
447
 
448
- #: ../lib/yasr-settings-functions.php:336
449
  msgid ""
450
  "If you select \"Review Rating\", your site will be indexed from search "
451
  "engines like this: "
452
  msgstr ""
453
 
454
- #: ../lib/yasr-settings-functions.php:341
455
  msgid ""
456
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
457
  "this"
458
  msgstr ""
459
 
460
- #: ../lib/yasr-settings-functions.php:359
461
  msgid "Stars"
462
  msgstr ""
463
 
464
- #: ../lib/yasr-settings-functions.php:363
465
  msgid "Numbers"
466
  msgstr ""
467
 
468
- #: ../lib/yasr-settings-functions.php:376
469
  msgid "Add New Multiple Set"
470
  msgstr ""
471
 
472
- #: ../lib/yasr-settings-functions.php:377
473
  msgid ""
474
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
475
  "characters"
476
  msgstr ""
477
 
478
- #: ../lib/yasr-settings-functions.php:380
479
  msgid "Name"
480
  msgstr ""
481
 
482
- #: ../lib/yasr-settings-functions.php:385
483
- msgid "You can insert up to nine element"
484
  msgstr ""
485
 
486
- #: ../lib/yasr-settings-functions.php:390
487
  msgid "Element "
488
  msgstr ""
489
 
490
- #: ../lib/yasr-settings-functions.php:400
491
  msgid "Create New Set"
492
  msgstr ""
493
 
494
- #: ../lib/yasr-settings-functions.php:421
495
- #: ../lib/yasr-settings-functions.php:453
496
  msgid "Manage Multiple Set"
497
  msgstr ""
498
 
499
- #: ../lib/yasr-settings-functions.php:423
500
  msgid "Wich set do you want to edit or remove?"
501
  msgstr ""
502
 
503
- #: ../lib/yasr-settings-functions.php:463
504
- #: ../lib/yasr-settings-functions.php:581
505
  msgid "Field name"
506
  msgstr ""
507
 
508
- #: ../lib/yasr-settings-functions.php:467
509
- #: ../lib/yasr-settings-functions.php:585
510
  msgid "Remove"
511
  msgstr ""
512
 
513
- #: ../lib/yasr-settings-functions.php:509
514
- #: ../lib/yasr-settings-functions.php:627
515
  msgid "Remove whole set?"
516
  msgstr ""
517
 
518
- #: ../lib/yasr-settings-functions.php:522
519
- #: ../lib/yasr-settings-functions.php:640
520
  msgid ""
521
  "If you remove something you will remove all the votes for that set or field. "
522
  "This operation CAN'T BE undone."
523
  msgstr ""
524
 
525
- #: ../lib/yasr-settings-functions.php:529
526
- #: ../lib/yasr-settings-functions.php:647
527
  msgid "You can use up to 9 elements"
528
  msgstr ""
529
 
530
- #: ../lib/yasr-settings-functions.php:531
531
- #: ../lib/yasr-settings-functions.php:649
532
  msgid "Add element"
533
  msgstr ""
534
 
535
- #: ../lib/yasr-settings-functions.php:533
536
- #: ../lib/yasr-settings-functions.php:651
537
  msgid "Save changes"
538
  msgstr ""
539
 
540
- #: ../lib/yasr-settings-functions.php:543
541
  msgid "No Multiple Set were found"
542
  msgstr ""
543
 
544
- #: ../lib/yasr-settings-functions.php:793
545
- #: ../lib/yasr-settings-functions.php:1061
546
  msgid "Settings Saved"
547
  msgstr ""
548
 
549
- #: ../lib/yasr-settings-functions.php:798
550
  msgid "Something goes wrong trying insert set field name. Please report it"
551
  msgstr ""
552
 
553
- #: ../lib/yasr-settings-functions.php:804
554
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
555
  msgstr ""
556
 
557
- #: ../lib/yasr-settings-functions.php:879
558
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
559
  msgstr ""
560
 
561
- #: ../lib/yasr-settings-functions.php:925
562
  msgid ""
563
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
564
  msgstr ""
565
 
566
- #: ../lib/yasr-settings-functions.php:989
567
  msgid ""
568
  "Something goes wrong trying to update a Multi Set's element. Please report it"
569
  msgstr ""
570
 
571
- #: ../lib/yasr-settings-functions.php:1046
572
  msgid ""
573
  "Something goes wrong trying to insert set field name in edit form. Please "
574
  "report it"
575
  msgstr ""
576
 
577
- #: ../lib/yasr-settings-functions.php:1089
578
  msgid "Style Options"
579
  msgstr ""
580
 
581
- #: ../lib/yasr-settings-functions.php:1090
582
  msgid "Custom CSS Styles"
583
  msgstr ""
584
 
585
- #: ../lib/yasr-settings-functions.php:1095
586
  msgid ""
587
  "Please use text area below to write your own CSS styles to override the "
588
  "default ones."
589
  msgstr ""
590
 
591
- #: ../lib/yasr-settings-functions.php:1097
592
  msgid "Leave it blank if you don't know what you're doing"
593
  msgstr ""
594
 
595
- #: ../lib/yasr-settings-functions.php:1130
596
  msgid "No previous Gd Star Rating installation was found"
597
  msgstr ""
598
 
599
- #: ../lib/yasr-db-functions.php:267 ../lib/yasr-ajax-functions.php:729
600
- msgid "No Recenet votes yet"
601
  msgstr ""
602
 
603
- #: ../lib/yasr-db-functions.php:282 ../lib/yasr-ajax-functions.php:742
604
  msgid "anonymous"
605
  msgstr ""
606
 
607
- #: ../lib/yasr-db-functions.php:305 ../lib/yasr-ajax-functions.php:765
608
  msgid "Ip address"
609
  msgstr ""
610
 
611
- #: ../lib/yasr-db-functions.php:346 ../lib/yasr-ajax-functions.php:806
612
  msgid "Pages"
613
  msgstr ""
614
 
615
- #: ../lib/yasr-functions.php:86 ../lib/yasr-functions.php:87
616
  msgid "Yet Another Stars Rating: Settings"
617
  msgstr ""
618
 
619
- #: ../lib/yasr-functions.php:130 ../lib/yasr-functions.php:137
620
  msgid "Overall Rating"
621
  msgstr ""
622
 
623
- #: ../lib/yasr-functions.php:131
624
  msgid "Yet Another Stars Rating: Multiple set"
625
  msgstr ""
626
 
627
- #: ../lib/yasr-functions.php:147
628
  msgid "You don't have enought privileges to insert Overall Rating"
629
  msgstr ""
630
 
631
- #: ../lib/yasr-functions.php:157
632
  msgid "You don't have enought privileges to insert Multi Set"
633
  msgstr ""
634
 
635
- #: ../lib/yasr-functions.php:292
636
  msgid " reviewed by "
637
  msgstr ""
638
 
639
- #: ../lib/yasr-functions.php:293
640
  msgid " on "
641
  msgstr ""
642
 
643
- #: ../lib/yasr-functions.php:294
644
  msgid " rated "
645
  msgstr ""
646
 
647
- #: ../lib/yasr-functions.php:294
648
  msgid " of"
649
  msgstr ""
650
 
651
- #: ../lib/yasr-functions.php:349
652
  msgid " written by "
653
  msgstr ""
654
 
655
- #: ../lib/yasr-functions.php:351
656
  msgid " average rating "
657
  msgstr ""
658
 
659
- #: ../lib/yasr-functions.php:352
660
  msgid " user ratings"
661
  msgstr ""
662
 
663
- #: ../lib/yasr-functions.php:458 ../lib/yasr-functions.php:485
664
  msgid "Follow YASR official site!"
665
  msgstr ""
666
 
 
 
 
 
 
 
 
 
 
 
 
 
667
  #: ../lib/yasr-ajax-functions.php:101
668
  msgid "You've rated it "
669
  msgstr ""
@@ -672,202 +702,205 @@ msgstr ""
672
  msgid "You've reset the vote"
673
  msgstr ""
674
 
675
- #: ../lib/yasr-ajax-functions.php:170
676
  msgid ""
677
  "There was an error while trying to insert the review type. Please report it"
678
  msgstr ""
679
 
680
- #: ../lib/yasr-ajax-functions.php:207
681
  msgid "Choose a vote for each element"
682
  msgstr ""
683
 
684
- #: ../lib/yasr-ajax-functions.php:263 ../lib/yasr-ajax-functions.php:306
685
  msgid "Remember to insert this shortcode"
686
  msgstr ""
687
 
688
- #: ../lib/yasr-ajax-functions.php:265 ../lib/yasr-ajax-functions.php:308
689
  msgid "where you want to display this multi set"
690
  msgstr ""
691
 
692
- #: ../lib/yasr-ajax-functions.php:273
693
  msgid "Choose a vote for every element"
694
  msgstr ""
695
 
696
- #: ../lib/yasr-ajax-functions.php:432
697
  msgid "Main"
698
  msgstr ""
699
 
700
- #: ../lib/yasr-ajax-functions.php:433
701
  msgid "Charts"
702
  msgstr ""
703
 
704
- #: ../lib/yasr-ajax-functions.php:435
705
  msgid "Read the doc"
706
  msgstr ""
707
 
708
- #: ../lib/yasr-ajax-functions.php:444
709
  msgid "Overall Rating / Review"
710
  msgstr ""
711
 
712
- #: ../lib/yasr-ajax-functions.php:446
713
  msgid "Insert Overall Rating"
714
  msgstr ""
715
 
716
- #: ../lib/yasr-ajax-functions.php:447
717
  msgid "Insert Overall Rating / Review for this post"
718
  msgstr ""
719
 
720
- #: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
721
  msgid "Choose Size"
722
  msgstr ""
723
 
724
- #: ../lib/yasr-ajax-functions.php:464
725
  msgid "Insert Visitor Votes"
726
  msgstr ""
727
 
728
- #: ../lib/yasr-ajax-functions.php:465
729
  msgid "Insert the ability for your visitor to vote"
730
  msgstr ""
731
 
732
- #: ../lib/yasr-ajax-functions.php:482
733
  msgid "If you want to insert a Multi Set, pick one:"
734
  msgstr ""
735
 
736
- #: ../lib/yasr-ajax-functions.php:488
737
  msgid "Choose wich set you want to insert."
738
  msgstr ""
739
 
740
- #: ../lib/yasr-ajax-functions.php:496
741
  msgid "Insert Multiset:"
742
  msgstr ""
743
 
744
- #: ../lib/yasr-ajax-functions.php:499
745
  msgid "Insert Multiple Set"
746
  msgstr ""
747
 
748
- #: ../lib/yasr-ajax-functions.php:500
749
  msgid "Insert multiple set in this post ?"
750
  msgstr ""
751
 
752
- #: ../lib/yasr-ajax-functions.php:515
753
  msgid "Ranking reviews"
754
  msgstr ""
755
 
756
- #: ../lib/yasr-ajax-functions.php:516
757
  msgid "Insert Ranking reviews"
758
  msgstr ""
759
 
760
- #: ../lib/yasr-ajax-functions.php:517
761
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
762
  msgstr ""
763
 
764
- #: ../lib/yasr-ajax-functions.php:521
765
  msgid "Users' ranking"
766
  msgstr ""
767
 
768
- #: ../lib/yasr-ajax-functions.php:522
769
  msgid "Insert Users ranking"
770
  msgstr ""
771
 
772
- #: ../lib/yasr-ajax-functions.php:523
773
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
774
  msgstr ""
775
 
776
- #: ../lib/yasr-ajax-functions.php:527
777
  msgid "Most active reviewers"
778
  msgstr ""
779
 
780
- #: ../lib/yasr-ajax-functions.php:528
781
  msgid "Insert Most Active Reviewers"
782
  msgstr ""
783
 
784
- #: ../lib/yasr-ajax-functions.php:529
785
  msgid "Insert Top 5 active reviewers"
786
  msgstr ""
787
 
788
- #: ../lib/yasr-ajax-functions.php:533
789
  msgid "Most Active Users"
790
  msgstr ""
791
 
792
- #: ../lib/yasr-ajax-functions.php:534
793
  msgid "Insert Most Active Users"
794
  msgstr ""
795
 
796
- #: ../lib/yasr-ajax-functions.php:535
797
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
798
  msgstr ""
799
 
800
- #: ../lib/yasr-ajax-functions.php:587
801
  msgid "Reviews and Visitor Votes have been successfull imported."
802
  msgstr ""
803
 
804
- #: ../lib/yasr-ajax-functions.php:593
805
  msgid ""
806
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
807
  "THIS MAY TAKE A WHILE!"
808
  msgstr ""
809
 
810
- #: ../lib/yasr-ajax-functions.php:595
811
  msgid "Proceed Step 2"
812
  msgstr ""
813
 
814
- #: ../lib/yasr-ajax-functions.php:602
815
  msgid "Something goes wrong! Refresh the page and try again!"
816
  msgstr ""
817
 
818
- #: ../lib/yasr-ajax-functions.php:631
819
  msgid "I've found Multiple Set! Importing..."
820
  msgstr ""
821
 
822
- #: ../lib/yasr-ajax-functions.php:640
823
  msgid "Multi Set's name has been successfull imported."
824
  msgstr ""
825
 
826
- #: ../lib/yasr-ajax-functions.php:642
827
  msgid "Now I'm going to import Multi Set data"
828
  msgstr ""
829
 
830
- #: ../lib/yasr-ajax-functions.php:653
831
  msgid "All votes has been successfull imported."
832
  msgstr ""
833
 
834
- #: ../lib/yasr-ajax-functions.php:655
835
  msgid "Done"
836
  msgstr ""
837
 
838
- #: ../lib/yasr-ajax-functions.php:660
839
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
840
  msgstr ""
841
 
842
- #: ../lib/yasr-ajax-functions.php:668
843
  msgid "I've found Multi Set but with no data"
844
  msgstr ""
845
 
846
- #: ../lib/yasr-ajax-functions.php:677
847
  msgid "I've found Multi Sets names but I couldn't insert into db"
848
  msgstr ""
849
 
850
- #: ../lib/yasr-ajax-functions.php:685
851
  msgid "Multisets were not found. Imported is done!"
852
  msgstr ""
853
 
854
- #: ../lib/yasr-ajax-functions.php:888 ../lib/yasr-ajax-functions.php:1017
 
 
 
 
855
  msgid "Error: you can't vote 0"
856
  msgstr ""
857
 
858
- #: ../lib/yasr-ajax-functions.php:979 ../lib/yasr-ajax-functions.php:987
859
  msgid "Average rating"
860
  msgstr ""
861
 
862
- #: ../lib/yasr-ajax-functions.php:980 ../lib/yasr-ajax-functions.php:988
863
  msgid "Vote Saved"
864
  msgstr ""
865
 
866
- #: ../lib/yasr-ajax-functions.php:1087 ../lib/yasr-ajax-functions.php:1095
867
- #: ../lib/yasr-ajax-functions.php:1103
868
- msgid "Vote Updated"
869
  msgstr ""
870
 
871
- #: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
872
  msgid "Average "
873
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YASR lenguages\n"
4
+ "POT-Creation-Date: 2014-10-28 18:43+0100\n"
5
+ "PO-Revision-Date: 2014-10-28 18:43+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: En\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
  "X-Poedit-SearchPath-1: ../lib\n"
17
 
18
+ #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:109
19
+ #: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:192
20
+ #: ../lib/yasr-ajax-functions.php:331 ../lib/yasr-ajax-functions.php:732
21
  msgid "You do not have sufficient permissions to access this page."
22
  msgstr ""
23
 
37
  msgid "Styles"
38
  msgstr ""
39
 
40
+ #: ../yasr-settings-page.php:79
41
+ msgid "Pro Features!"
42
+ msgstr ""
43
+
44
+ #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:276
45
  msgid "Save"
46
  msgstr ""
47
 
48
+ #: ../yasr-settings-page.php:116
49
  msgid "Import Gd Star Rating"
50
  msgstr ""
51
 
52
+ #: ../yasr-settings-page.php:117
53
  msgid "I've found a previous installation of Gd Star Rating."
54
  msgstr ""
55
 
56
+ #: ../yasr-settings-page.php:117
57
  msgid "Do you want proceed to import data?"
58
  msgstr ""
59
 
60
+ #: ../yasr-settings-page.php:119
61
  msgid "Yes, Begin Import"
62
  msgstr ""
63
 
64
+ #: ../yasr-settings-page.php:123
65
  msgid "Click on Proceed to import Gd Star Rating data."
66
  msgstr ""
67
 
68
+ #: ../yasr-settings-page.php:126 ../yasr-settings-page.php:159
69
  msgid "Proceed"
70
  msgstr ""
71
 
72
+ #: ../yasr-settings-page.php:148
73
  msgid "Manage GD Star Data"
74
  msgstr ""
75
 
76
+ #: ../yasr-settings-page.php:149
77
  msgid "Gd Star Rating has been already imported."
78
  msgstr ""
79
 
80
+ #: ../yasr-settings-page.php:150
81
  msgid "If you wish you can import it again, but"
82
  msgstr ""
83
 
84
+ #: ../yasr-settings-page.php:150
85
  msgid "you will lose all data you've collect since the import!"
86
  msgstr ""
87
 
88
+ #: ../yasr-settings-page.php:152
89
  msgid "Ok, Import Again"
90
  msgstr ""
91
 
92
+ #: ../yasr-settings-page.php:156
93
  msgid ""
94
  "Click on Proceed to import again Gd Star Rating data. This may take a while!"
95
  msgstr ""
96
 
97
+ #: ../yasr-settings-page.php:196
98
  msgid "Manage Multi Set"
99
  msgstr ""
100
 
101
+ #: ../yasr-settings-page.php:200
102
  msgid "What is a Multi Set?"
103
  msgstr ""
104
 
127
  msgid "Close this message"
128
  msgstr ""
129
 
130
+ #: ../yasr-settings-page.php:246 ../lib/yasr-functions.php:457
131
+ #: ../lib/yasr-functions.php:483
132
  msgid "Donations"
133
  msgstr ""
134
 
135
+ #: ../yasr-settings-page.php:248 ../lib/yasr-functions.php:459
136
+ #: ../lib/yasr-functions.php:485
137
  msgid ""
138
  "If you have found this plugin useful, please consider making a donation to "
139
  "help support future development. Your support will be much appreciated. "
140
  msgstr ""
141
 
142
+ #: ../yasr-settings-page.php:250 ../lib/yasr-functions.php:461
143
+ #: ../lib/yasr-functions.php:487
144
  msgid "Thank you!"
145
  msgstr ""
146
 
150
 
151
  #: ../yasr-metabox-multiple-rating.php:46
152
  #: ../yasr-metabox-overall-rating.php:193
153
+ #: ../lib/yasr-settings-functions.php:468
154
  msgid "Select"
155
  msgstr ""
156
 
159
  msgstr ""
160
 
161
  #: ../yasr-metabox-overall-rating.php:71
162
+ #: ../lib/yasr-shortcode-functions.php:169
163
  msgid "Loading, please wait"
164
  msgstr ""
165
 
177
  "where you want to display this rating"
178
  msgstr ""
179
 
180
+ #: ../lib/yasr-shortcode-functions.php:214
181
+ #: ../lib/yasr-shortcode-functions.php:226
182
+ #: ../lib/yasr-shortcode-functions.php:231
183
+ #: ../lib/yasr-shortcode-functions.php:246
184
+ #: ../lib/yasr-shortcode-functions.php:251
185
+ #: ../lib/yasr-shortcode-functions.php:271
186
+ #: ../lib/yasr-shortcode-functions.php:282
187
+ #: ../lib/yasr-shortcode-functions.php:288
188
+ #: ../lib/yasr-shortcode-functions.php:303
189
+ #: ../lib/yasr-shortcode-functions.php:309 ../lib/yasr-ajax-functions.php:994
190
+ #: ../lib/yasr-ajax-functions.php:1002 ../lib/yasr-ajax-functions.php:1117
191
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
 
192
  msgid "Total: "
193
  msgstr ""
194
 
195
+ #: ../lib/yasr-shortcode-functions.php:214
196
+ #: ../lib/yasr-shortcode-functions.php:226
197
+ #: ../lib/yasr-shortcode-functions.php:231
198
+ #: ../lib/yasr-shortcode-functions.php:246
199
+ #: ../lib/yasr-shortcode-functions.php:251
200
+ #: ../lib/yasr-shortcode-functions.php:271
201
+ #: ../lib/yasr-shortcode-functions.php:282
202
+ #: ../lib/yasr-shortcode-functions.php:288
203
+ #: ../lib/yasr-shortcode-functions.php:303
204
+ #: ../lib/yasr-shortcode-functions.php:309
205
  msgid "Average: "
206
  msgstr ""
207
 
208
+ #: ../lib/yasr-shortcode-functions.php:215
209
+ #: ../lib/yasr-shortcode-functions.php:272 ../lib/yasr-ajax-functions.php:1191
210
  msgid "You've already voted this article with"
211
  msgstr ""
212
 
213
+ #: ../lib/yasr-shortcode-functions.php:304
214
+ #: ../lib/yasr-shortcode-functions.php:310
215
  msgid "You must sign to vote"
216
  msgstr ""
217
 
218
+ #: ../lib/yasr-shortcode-functions.php:334
219
  msgid "'bad', 'poor', 'ok', 'good', 'super'"
220
  msgstr ""
221
 
222
+ #: ../lib/yasr-shortcode-functions.php:448
223
  msgid "Rating"
224
  msgstr ""
225
 
226
+ #: ../lib/yasr-shortcode-functions.php:462
227
  msgid "You don't have any votes stored"
228
  msgstr ""
229
 
230
+ #: ../lib/yasr-shortcode-functions.php:498
231
+ #: ../lib/yasr-shortcode-functions.php:536
232
  msgid "Post / Page"
233
  msgstr ""
234
 
235
+ #: ../lib/yasr-shortcode-functions.php:499
236
+ #: ../lib/yasr-shortcode-functions.php:537
237
  msgid "Order By"
238
  msgstr ""
239
 
240
+ #: ../lib/yasr-shortcode-functions.php:499
241
+ #: ../lib/yasr-shortcode-functions.php:537
242
  msgid "Most Rated"
243
  msgstr ""
244
 
245
+ #: ../lib/yasr-shortcode-functions.php:499
246
+ #: ../lib/yasr-shortcode-functions.php:537
247
  msgid "Highest Rated"
248
  msgstr ""
249
 
250
+ #: ../lib/yasr-shortcode-functions.php:516
251
+ #: ../lib/yasr-shortcode-functions.php:551
252
  msgid "Total:"
253
  msgstr ""
254
 
255
+ #: ../lib/yasr-shortcode-functions.php:516
256
+ #: ../lib/yasr-shortcode-functions.php:551
257
  msgid "Average"
258
  msgstr ""
259
 
260
+ #: ../lib/yasr-shortcode-functions.php:528
261
+ msgid "You've not enough data"
262
+ msgstr ""
263
+
264
+ #: ../lib/yasr-shortcode-functions.php:563
265
  msgid "You've not enought data"
266
  msgstr ""
267
 
268
+ #: ../lib/yasr-shortcode-functions.php:648
269
  msgid ""
270
+ "Problem while retrieving the top 5 most active reviewers. Did you publish "
271
  "any review?"
272
  msgstr ""
273
 
274
+ #: ../lib/yasr-shortcode-functions.php:716
275
  msgid ""
276
+ "Problem while retrieving the top 10 active users chart. Are you sure you "
277
+ "have votes to show?"
278
  msgstr ""
279
 
280
+ #: ../lib/yasr-settings-functions.php:49
281
  msgid "General settings"
282
  msgstr ""
283
 
284
+ #: ../lib/yasr-settings-functions.php:50
285
  msgid "Auto insert options"
286
  msgstr ""
287
 
288
+ #: ../lib/yasr-settings-functions.php:51
289
  msgid "Show \"Overall Rating\" in Home Page?"
290
  msgstr ""
291
 
292
+ #: ../lib/yasr-settings-functions.php:52
293
  msgid "Insert custom text to show before / after stars"
294
  msgstr ""
295
 
296
+ #: ../lib/yasr-settings-functions.php:53
297
+ msgid "Do you want show stats for visitors votes?"
298
+ msgstr ""
299
+
300
  #: ../lib/yasr-settings-functions.php:54
301
  msgid "Which color scheme do you want to use?"
302
  msgstr ""
319
 
320
  #: ../lib/yasr-settings-functions.php:74
321
  #: ../lib/yasr-settings-functions.php:143
322
+ #: ../lib/yasr-settings-functions.php:161
323
+ #: ../lib/yasr-settings-functions.php:193
324
+ #: ../lib/yasr-settings-functions.php:225
325
+ #: ../lib/yasr-settings-functions.php:276
326
  msgid "Yes"
327
  msgstr ""
328
 
329
  #: ../lib/yasr-settings-functions.php:88
330
  #: ../lib/yasr-settings-functions.php:148
331
+ #: ../lib/yasr-settings-functions.php:166
332
+ #: ../lib/yasr-settings-functions.php:198
333
+ #: ../lib/yasr-settings-functions.php:230
334
+ #: ../lib/yasr-settings-functions.php:281
335
  msgid "No"
336
  msgstr ""
337
 
343
  msgid "Overall Rating / Author Rating"
344
  msgstr ""
345
 
346
+ #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:458
347
  msgid "Visitor Votes"
348
  msgstr ""
349
 
367
  msgid "Size"
368
  msgstr ""
369
 
370
+ #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:448
371
+ #: ../lib/yasr-ajax-functions.php:466
372
  msgid "Small"
373
  msgstr ""
374
 
375
+ #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:449
376
+ #: ../lib/yasr-ajax-functions.php:467
377
  msgid "Medium"
378
  msgstr ""
379
 
380
+ #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:450
381
+ #: ../lib/yasr-ajax-functions.php:468
382
  msgid "Large"
383
  msgstr ""
384
 
386
  msgid "Exclude Pages?"
387
  msgstr ""
388
 
389
+ #: ../lib/yasr-settings-functions.php:158
390
  msgid "Use only in custom post types?"
391
  msgstr ""
392
 
393
+ #: ../lib/yasr-settings-functions.php:170
394
  msgid "You see this because you use custom post types."
395
  msgstr ""
396
 
397
+ #: ../lib/yasr-settings-functions.php:172
398
  msgid "If you want to use auto insert only in custom post types, choose Yes"
399
  msgstr ""
400
 
401
+ #: ../lib/yasr-settings-functions.php:202
402
  msgid ""
403
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
404
  "article or page, but also in pages like Home Page, category pages or "
405
  "archives."
406
  msgstr ""
407
 
408
+ #: ../lib/yasr-settings-functions.php:235
409
  msgid "Custom text to display before Overall Rating"
410
  msgstr ""
411
 
412
+ #: ../lib/yasr-settings-functions.php:240
413
  msgid "Custom text to display before Visitor Rating"
414
  msgstr ""
415
 
416
+ #: ../lib/yasr-settings-functions.php:245
417
  msgid "Custom text to display when a non logged user has already rated"
418
  msgstr ""
419
 
420
+ #: ../lib/yasr-settings-functions.php:259
421
+ msgid ""
422
+ "Seems like you've imported gd star rating in the past, but then deleted the "
423
+ "logs table. For now, you can't enable statistics"
424
+ msgstr ""
425
+
426
+ #: ../lib/yasr-settings-functions.php:301
427
  msgid "Light"
428
  msgstr ""
429
 
430
+ #: ../lib/yasr-settings-functions.php:306
431
  msgid "Dark"
432
  msgstr ""
433
 
434
+ #: ../lib/yasr-settings-functions.php:311
435
  msgid "Preview"
436
  msgstr ""
437
 
438
+ #: ../lib/yasr-settings-functions.php:316
439
  msgid "Light theme"
440
  msgstr ""
441
 
442
+ #: ../lib/yasr-settings-functions.php:321
443
  msgid "Dark Theme"
444
  msgstr ""
445
 
446
+ #: ../lib/yasr-settings-functions.php:339
447
  msgid "Allow only logged-in users"
448
  msgstr ""
449
 
450
+ #: ../lib/yasr-settings-functions.php:343
451
  msgid "Allow everybody (logged in and anonymous)"
452
  msgstr ""
453
 
454
+ #: ../lib/yasr-settings-functions.php:360
455
  msgid "Review Rating"
456
  msgstr ""
457
 
458
+ #: ../lib/yasr-settings-functions.php:364
459
  msgid "Aggregate Rating"
460
  msgstr ""
461
 
462
+ #: ../lib/yasr-settings-functions.php:369
463
  msgid "What is this?"
464
  msgstr ""
465
 
466
+ #: ../lib/yasr-settings-functions.php:374
467
  msgid ""
468
  "If you select \"Review Rating\", your site will be indexed from search "
469
  "engines like this: "
470
  msgstr ""
471
 
472
+ #: ../lib/yasr-settings-functions.php:379
473
  msgid ""
474
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
475
  "this"
476
  msgstr ""
477
 
478
+ #: ../lib/yasr-settings-functions.php:397
479
  msgid "Stars"
480
  msgstr ""
481
 
482
+ #: ../lib/yasr-settings-functions.php:401
483
  msgid "Numbers"
484
  msgstr ""
485
 
486
+ #: ../lib/yasr-settings-functions.php:413
487
  msgid "Add New Multiple Set"
488
  msgstr ""
489
 
490
+ #: ../lib/yasr-settings-functions.php:414
491
  msgid ""
492
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
493
  "characters"
494
  msgstr ""
495
 
496
+ #: ../lib/yasr-settings-functions.php:417
497
  msgid "Name"
498
  msgstr ""
499
 
500
+ #: ../lib/yasr-settings-functions.php:422
501
+ msgid "You can insert up to nine elements"
502
  msgstr ""
503
 
504
+ #: ../lib/yasr-settings-functions.php:427
505
  msgid "Element "
506
  msgstr ""
507
 
508
+ #: ../lib/yasr-settings-functions.php:437
509
  msgid "Create New Set"
510
  msgstr ""
511
 
512
+ #: ../lib/yasr-settings-functions.php:458
513
+ #: ../lib/yasr-settings-functions.php:490
514
  msgid "Manage Multiple Set"
515
  msgstr ""
516
 
517
+ #: ../lib/yasr-settings-functions.php:460
518
  msgid "Wich set do you want to edit or remove?"
519
  msgstr ""
520
 
521
+ #: ../lib/yasr-settings-functions.php:500
522
+ #: ../lib/yasr-settings-functions.php:618
523
  msgid "Field name"
524
  msgstr ""
525
 
526
+ #: ../lib/yasr-settings-functions.php:504
527
+ #: ../lib/yasr-settings-functions.php:622
528
  msgid "Remove"
529
  msgstr ""
530
 
531
+ #: ../lib/yasr-settings-functions.php:546
532
+ #: ../lib/yasr-settings-functions.php:664
533
  msgid "Remove whole set?"
534
  msgstr ""
535
 
536
+ #: ../lib/yasr-settings-functions.php:559
537
+ #: ../lib/yasr-settings-functions.php:677
538
  msgid ""
539
  "If you remove something you will remove all the votes for that set or field. "
540
  "This operation CAN'T BE undone."
541
  msgstr ""
542
 
543
+ #: ../lib/yasr-settings-functions.php:566
544
+ #: ../lib/yasr-settings-functions.php:684
545
  msgid "You can use up to 9 elements"
546
  msgstr ""
547
 
548
+ #: ../lib/yasr-settings-functions.php:568
549
+ #: ../lib/yasr-settings-functions.php:686
550
  msgid "Add element"
551
  msgstr ""
552
 
553
+ #: ../lib/yasr-settings-functions.php:570
554
+ #: ../lib/yasr-settings-functions.php:688
555
  msgid "Save changes"
556
  msgstr ""
557
 
558
+ #: ../lib/yasr-settings-functions.php:580
559
  msgid "No Multiple Set were found"
560
  msgstr ""
561
 
562
+ #: ../lib/yasr-settings-functions.php:830
563
+ #: ../lib/yasr-settings-functions.php:1098
564
  msgid "Settings Saved"
565
  msgstr ""
566
 
567
+ #: ../lib/yasr-settings-functions.php:835
568
  msgid "Something goes wrong trying insert set field name. Please report it"
569
  msgstr ""
570
 
571
+ #: ../lib/yasr-settings-functions.php:841
572
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
573
  msgstr ""
574
 
575
+ #: ../lib/yasr-settings-functions.php:916
576
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
577
  msgstr ""
578
 
579
+ #: ../lib/yasr-settings-functions.php:962
580
  msgid ""
581
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
582
  msgstr ""
583
 
584
+ #: ../lib/yasr-settings-functions.php:1026
585
  msgid ""
586
  "Something goes wrong trying to update a Multi Set's element. Please report it"
587
  msgstr ""
588
 
589
+ #: ../lib/yasr-settings-functions.php:1083
590
  msgid ""
591
  "Something goes wrong trying to insert set field name in edit form. Please "
592
  "report it"
593
  msgstr ""
594
 
595
+ #: ../lib/yasr-settings-functions.php:1126
596
  msgid "Style Options"
597
  msgstr ""
598
 
599
+ #: ../lib/yasr-settings-functions.php:1127
600
  msgid "Custom CSS Styles"
601
  msgstr ""
602
 
603
+ #: ../lib/yasr-settings-functions.php:1132
604
  msgid ""
605
  "Please use text area below to write your own CSS styles to override the "
606
  "default ones."
607
  msgstr ""
608
 
609
+ #: ../lib/yasr-settings-functions.php:1134
610
  msgid "Leave it blank if you don't know what you're doing"
611
  msgstr ""
612
 
613
+ #: ../lib/yasr-settings-functions.php:1167
614
  msgid "No previous Gd Star Rating installation was found"
615
  msgstr ""
616
 
617
+ #: ../lib/yasr-db-functions.php:267
618
+ msgid "No recenet votes yet"
619
  msgstr ""
620
 
621
+ #: ../lib/yasr-db-functions.php:282 ../lib/yasr-ajax-functions.php:757
622
  msgid "anonymous"
623
  msgstr ""
624
 
625
+ #: ../lib/yasr-db-functions.php:305 ../lib/yasr-ajax-functions.php:780
626
  msgid "Ip address"
627
  msgstr ""
628
 
629
+ #: ../lib/yasr-db-functions.php:346 ../lib/yasr-ajax-functions.php:821
630
  msgid "Pages"
631
  msgstr ""
632
 
633
+ #: ../lib/yasr-functions.php:97 ../lib/yasr-functions.php:98
634
  msgid "Yet Another Stars Rating: Settings"
635
  msgstr ""
636
 
637
+ #: ../lib/yasr-functions.php:141 ../lib/yasr-functions.php:148
638
  msgid "Overall Rating"
639
  msgstr ""
640
 
641
+ #: ../lib/yasr-functions.php:142
642
  msgid "Yet Another Stars Rating: Multiple set"
643
  msgstr ""
644
 
645
+ #: ../lib/yasr-functions.php:158
646
  msgid "You don't have enought privileges to insert Overall Rating"
647
  msgstr ""
648
 
649
+ #: ../lib/yasr-functions.php:168
650
  msgid "You don't have enought privileges to insert Multi Set"
651
  msgstr ""
652
 
653
+ #: ../lib/yasr-functions.php:303
654
  msgid " reviewed by "
655
  msgstr ""
656
 
657
+ #: ../lib/yasr-functions.php:304
658
  msgid " on "
659
  msgstr ""
660
 
661
+ #: ../lib/yasr-functions.php:305
662
  msgid " rated "
663
  msgstr ""
664
 
665
+ #: ../lib/yasr-functions.php:305
666
  msgid " of"
667
  msgstr ""
668
 
669
+ #: ../lib/yasr-functions.php:360
670
  msgid " written by "
671
  msgstr ""
672
 
673
+ #: ../lib/yasr-functions.php:362
674
  msgid " average rating "
675
  msgstr ""
676
 
677
+ #: ../lib/yasr-functions.php:363
678
  msgid " user ratings"
679
  msgstr ""
680
 
681
+ #: ../lib/yasr-functions.php:469 ../lib/yasr-functions.php:496
682
  msgid "Follow YASR official site!"
683
  msgstr ""
684
 
685
+ #: ../lib/yasr-functions.php:515
686
+ msgid "Looking for more features?"
687
+ msgstr ""
688
+
689
+ #: ../lib/yasr-functions.php:516
690
+ msgid "Upgrade to yasr pro!"
691
+ msgstr ""
692
+
693
+ #: ../lib/yasr-functions.php:595
694
+ msgid "Not avaible yet"
695
+ msgstr ""
696
+
697
  #: ../lib/yasr-ajax-functions.php:101
698
  msgid "You've rated it "
699
  msgstr ""
702
  msgid "You've reset the vote"
703
  msgstr ""
704
 
705
+ #: ../lib/yasr-ajax-functions.php:169
706
  msgid ""
707
  "There was an error while trying to insert the review type. Please report it"
708
  msgstr ""
709
 
710
+ #: ../lib/yasr-ajax-functions.php:203
711
  msgid "Choose a vote for each element"
712
  msgstr ""
713
 
714
+ #: ../lib/yasr-ajax-functions.php:259 ../lib/yasr-ajax-functions.php:302
715
  msgid "Remember to insert this shortcode"
716
  msgstr ""
717
 
718
+ #: ../lib/yasr-ajax-functions.php:261 ../lib/yasr-ajax-functions.php:304
719
  msgid "where you want to display this multi set"
720
  msgstr ""
721
 
722
+ #: ../lib/yasr-ajax-functions.php:269
723
  msgid "Choose a vote for every element"
724
  msgstr ""
725
 
726
+ #: ../lib/yasr-ajax-functions.php:428
727
  msgid "Main"
728
  msgstr ""
729
 
730
+ #: ../lib/yasr-ajax-functions.php:429
731
  msgid "Charts"
732
  msgstr ""
733
 
734
+ #: ../lib/yasr-ajax-functions.php:431
735
  msgid "Read the doc"
736
  msgstr ""
737
 
738
+ #: ../lib/yasr-ajax-functions.php:440
739
  msgid "Overall Rating / Review"
740
  msgstr ""
741
 
742
+ #: ../lib/yasr-ajax-functions.php:442
743
  msgid "Insert Overall Rating"
744
  msgstr ""
745
 
746
+ #: ../lib/yasr-ajax-functions.php:443
747
  msgid "Insert Overall Rating / Review for this post"
748
  msgstr ""
749
 
750
+ #: ../lib/yasr-ajax-functions.php:446 ../lib/yasr-ajax-functions.php:464
751
  msgid "Choose Size"
752
  msgstr ""
753
 
754
+ #: ../lib/yasr-ajax-functions.php:460
755
  msgid "Insert Visitor Votes"
756
  msgstr ""
757
 
758
+ #: ../lib/yasr-ajax-functions.php:461
759
  msgid "Insert the ability for your visitor to vote"
760
  msgstr ""
761
 
762
+ #: ../lib/yasr-ajax-functions.php:478
763
  msgid "If you want to insert a Multi Set, pick one:"
764
  msgstr ""
765
 
766
+ #: ../lib/yasr-ajax-functions.php:484
767
  msgid "Choose wich set you want to insert."
768
  msgstr ""
769
 
770
+ #: ../lib/yasr-ajax-functions.php:492
771
  msgid "Insert Multiset:"
772
  msgstr ""
773
 
774
+ #: ../lib/yasr-ajax-functions.php:495
775
  msgid "Insert Multiple Set"
776
  msgstr ""
777
 
778
+ #: ../lib/yasr-ajax-functions.php:496
779
  msgid "Insert multiple set in this post ?"
780
  msgstr ""
781
 
782
+ #: ../lib/yasr-ajax-functions.php:511
783
  msgid "Ranking reviews"
784
  msgstr ""
785
 
786
+ #: ../lib/yasr-ajax-functions.php:512
787
  msgid "Insert Ranking reviews"
788
  msgstr ""
789
 
790
+ #: ../lib/yasr-ajax-functions.php:513
791
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
792
  msgstr ""
793
 
794
+ #: ../lib/yasr-ajax-functions.php:517
795
  msgid "Users' ranking"
796
  msgstr ""
797
 
798
+ #: ../lib/yasr-ajax-functions.php:518
799
  msgid "Insert Users ranking"
800
  msgstr ""
801
 
802
+ #: ../lib/yasr-ajax-functions.php:519
803
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
804
  msgstr ""
805
 
806
+ #: ../lib/yasr-ajax-functions.php:523
807
  msgid "Most active reviewers"
808
  msgstr ""
809
 
810
+ #: ../lib/yasr-ajax-functions.php:524
811
  msgid "Insert Most Active Reviewers"
812
  msgstr ""
813
 
814
+ #: ../lib/yasr-ajax-functions.php:525
815
  msgid "Insert Top 5 active reviewers"
816
  msgstr ""
817
 
818
+ #: ../lib/yasr-ajax-functions.php:529
819
  msgid "Most Active Users"
820
  msgstr ""
821
 
822
+ #: ../lib/yasr-ajax-functions.php:530
823
  msgid "Insert Most Active Users"
824
  msgstr ""
825
 
826
+ #: ../lib/yasr-ajax-functions.php:531
827
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
828
  msgstr ""
829
 
830
+ #: ../lib/yasr-ajax-functions.php:602
831
  msgid "Reviews and Visitor Votes have been successfull imported."
832
  msgstr ""
833
 
834
+ #: ../lib/yasr-ajax-functions.php:608
835
  msgid ""
836
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
837
  "THIS MAY TAKE A WHILE!"
838
  msgstr ""
839
 
840
+ #: ../lib/yasr-ajax-functions.php:610
841
  msgid "Proceed Step 2"
842
  msgstr ""
843
 
844
+ #: ../lib/yasr-ajax-functions.php:617
845
  msgid "Something goes wrong! Refresh the page and try again!"
846
  msgstr ""
847
 
848
+ #: ../lib/yasr-ajax-functions.php:646
849
  msgid "I've found Multiple Set! Importing..."
850
  msgstr ""
851
 
852
+ #: ../lib/yasr-ajax-functions.php:655
853
  msgid "Multi Set's name has been successfull imported."
854
  msgstr ""
855
 
856
+ #: ../lib/yasr-ajax-functions.php:657
857
  msgid "Now I'm going to import Multi Set data"
858
  msgstr ""
859
 
860
+ #: ../lib/yasr-ajax-functions.php:668
861
  msgid "All votes has been successfull imported."
862
  msgstr ""
863
 
864
+ #: ../lib/yasr-ajax-functions.php:670
865
  msgid "Done"
866
  msgstr ""
867
 
868
+ #: ../lib/yasr-ajax-functions.php:675
869
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
870
  msgstr ""
871
 
872
+ #: ../lib/yasr-ajax-functions.php:683
873
  msgid "I've found Multi Set but with no data"
874
  msgstr ""
875
 
876
+ #: ../lib/yasr-ajax-functions.php:692
877
  msgid "I've found Multi Sets names but I couldn't insert into db"
878
  msgstr ""
879
 
880
+ #: ../lib/yasr-ajax-functions.php:700
881
  msgid "Multisets were not found. Imported is done!"
882
  msgstr ""
883
 
884
+ #: ../lib/yasr-ajax-functions.php:744
885
+ msgid "No Recenet votes yet"
886
+ msgstr ""
887
+
888
+ #: ../lib/yasr-ajax-functions.php:903 ../lib/yasr-ajax-functions.php:1032
889
  msgid "Error: you can't vote 0"
890
  msgstr ""
891
 
892
+ #: ../lib/yasr-ajax-functions.php:994 ../lib/yasr-ajax-functions.php:1002
893
  msgid "Average rating"
894
  msgstr ""
895
 
896
+ #: ../lib/yasr-ajax-functions.php:995 ../lib/yasr-ajax-functions.php:1003
897
  msgid "Vote Saved"
898
  msgstr ""
899
 
900
+ #: ../lib/yasr-ajax-functions.php:1118
901
+ msgid "Vote updated"
 
902
  msgstr ""
903
 
904
+ #: ../lib/yasr-ajax-functions.php:1182 ../lib/yasr-ajax-functions.php:1190
905
  msgid "Average "
906
  msgstr ""
lib/yasr-ajax-functions.php CHANGED
@@ -28,7 +28,7 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
28
 
29
  add_action( 'wp_ajax_yasr_send_overall_rating', 'yasr_insert_overall_rating_callback' );
30
 
31
- function yasr_insert_overall_rating_callback() {
32
 
33
  if (isset($_POST['rating']) && ($_POST['post_id'])) {
34
  global $current_user;
@@ -112,7 +112,6 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
112
  }
113
 
114
 
115
-
116
  /****** Set the review type in yasr metabox overall rating ******/
117
 
118
  add_action ( 'wp_ajax_yasr_insert_review_type', 'yasr_insert_review_type_callback' );
@@ -175,9 +174,6 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
175
  }
176
 
177
 
178
-
179
-
180
-
181
  /****** Get Set name from post or page and output the set,
182
  used in yasr-metabox-multiple-rating******/
183
 
@@ -553,7 +549,8 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
553
 
554
  </script>
555
 
556
- <?php
 
557
  die();
558
 
559
  } //End callback function
@@ -574,11 +571,29 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
574
 
575
  function yasr_import_step1_callback () {
576
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
577
  //Import reviews from GD star
578
  $reviews=yasr_import_gdstar_data();
579
 
580
  //Insert GD star review in yasr votes table
581
- $check_query_success=yasr_insert_gdstar_data($reviews);
 
582
  ?>
583
 
584
  <div class="yasr-result-step-1">
@@ -976,16 +991,16 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
976
  $medium_rating = round ($total_rating, 1);
977
 
978
  echo "<div class=\"$rateit_class\" id=\"yasr_rateit_user_votes_voted\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$total_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
979
- <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average rating", "yasr") . " $medium_rating/5 ]</span>
980
- <strong>" . __("Vote Saved" , "yasr") . "</strong>";
981
 
982
  }
983
 
984
  elseif ($new_row_result) {
985
 
986
  echo "<div class=\"$rateit_class\" id=\"yasr_rateit_user_votes_voted\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
987
- <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average rating", "yasr") . " $rating/5 ]</span>
988
- <strong>". __("Vote Saved" , "yasr");
989
 
990
  }
991
 
@@ -1018,6 +1033,23 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
1018
  die();
1019
  }
1020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1021
  global $wpdb;
1022
 
1023
  $all_post_votes = $wpdb->get_results ("SELECT sum_votes, number_of_votes FROM " . YASR_VOTES_TABLE . " WHERE post_id=$post_id");
@@ -1080,30 +1112,10 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
1080
  $total_rating = ($new_sum / $number_of_votes);
1081
  $medium_rating=round ($total_rating, 1);
1082
 
1083
- if ($size == 'small') {
1084
-
1085
- echo "<div class=\"rateit\" id=\"yasr-rateit-user-votes-updated\" data-rateit-value=\"$total_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
1086
- <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average $medium_rating/5" , "yasr") . "]</span>
1087
- <strong>" . __("Vote Updated" , "yasr") . "</strong>";
1088
-
1089
- }
1090
-
1091
- elseif ($size == 'medium') {
1092
-
1093
- echo "<div class=\"rateit medium\" id=\"yasr-rateit-user-votes-updated\" data-rateit-starwidth=\"24\" data-rateit-starheight=\"24\" data-rateit-value=\"$total_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
1094
- <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average $medium_rating/5" , "yasr") . "]</span>
1095
- <strong>" . __("Vote Updated" , "yasr") . "</strong>";
1096
-
1097
- }
1098
-
1099
- elseif ($size == 'large' || $size =='' || ($size !='medium' && $size != 'small')) {
1100
-
1101
- echo "<div class=\"rateit bigstars\" id=\"yasr-rateit-user-votes-updated\" data-rateit-starwidth=\"32\" data-rateit-starheight=\"32\" data-rateit-value=\"$total_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
1102
- <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average $medium_rating/5" , "yasr") . "]</span>
1103
- <strong>" . __("Vote Updated" , "yasr") . "</strong>";
1104
-
1105
- }
1106
 
 
 
 
1107
 
1108
  die(); // this is required to return a proper result
1109
 
@@ -1126,6 +1138,22 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
1126
  exit();
1127
  }
1128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1129
  global $wpdb;
1130
 
1131
  //I've to pass post_id here cause get_the_id doesn't work if called with ajax
@@ -1136,13 +1164,13 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
1136
  $sum_votes = $vote->sum_votes;
1137
  }
1138
 
1139
- $average_rating = $sum_votes/$number_of_votes;
1140
-
1141
  //This should never happen, only if a user manually erase data from tables
1142
  if ($number_of_votes == 0) {
1143
  $number_of_votes = 1;
1144
  }
1145
 
 
 
1146
  $average_rating = round ($average_rating, 1);
1147
 
1148
 
@@ -1150,42 +1178,168 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
1150
 
1151
  if( YASR_TEXT_BEFORE_STARS == 1 && YASR_CUSTOM_TEXT_USER_VOTED != '' ) {
1152
 
1153
- if ($size == 'small') {
1154
- $rateit_class='rateit';
1155
- $px_size = '16';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1156
  }
1157
 
1158
- elseif ($size == 'medium') {
1159
- $rateit_class = 'rateit medium';
1160
- $px_size = '24';
 
 
 
 
 
 
1161
  }
1162
 
1163
- //default values
1164
  else {
1165
- $rateit_class = 'rateit bigstars';
1166
- $px_size = '32';
 
 
 
 
 
 
1167
  }
1168
 
1169
-
1170
- echo "<div class=\"$rateit_class\" id=\"yasr_rateit_user_votes_voted_ro\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$average_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
1171
- <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average " , "yasr") . "$average_rating/5 ]</span>
1172
- <strong>" . YASR_CUSTOM_TEXT_USER_VOTED . " </strong>";
1173
-
 
1174
 
1175
  }
1176
 
1177
- else {
1178
 
1179
- echo "<div class=\"rateit bigstars\" id=\"yasr_rateit_user_votes_voted_ro\" data-rateit-starwidth=\"32\" data-rateit-starheight=\"32\" data-rateit-value=\"$average_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
1180
- <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average " , "yasr") . "$average_rating/5 ]</span>
1181
- <strong>" . __("You've already voted this article with $rating", "yasr") . "</strong>";
1182
 
 
 
 
 
 
1183
  }
1184
 
 
1185
 
 
 
 
 
 
 
 
 
 
1186
 
1187
- die(); // this is required to return a proper result
1188
 
1189
- } //End callback function
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1190
 
1191
  ?>
28
 
29
  add_action( 'wp_ajax_yasr_send_overall_rating', 'yasr_insert_overall_rating_callback' );
30
 
31
+ function yasr_insert_overall_rating_callback() {
32
 
33
  if (isset($_POST['rating']) && ($_POST['post_id'])) {
34
  global $current_user;
112
  }
113
 
114
 
 
115
  /****** Set the review type in yasr metabox overall rating ******/
116
 
117
  add_action ( 'wp_ajax_yasr_insert_review_type', 'yasr_insert_review_type_callback' );
174
  }
175
 
176
 
 
 
 
177
  /****** Get Set name from post or page and output the set,
178
  used in yasr-metabox-multiple-rating******/
179
 
549
 
550
  </script>
551
 
552
+ <?php
553
+
554
  die();
555
 
556
  } //End callback function
571
 
572
  function yasr_import_step1_callback () {
573
 
574
+ //Since version 0.05 for pro and 0.6.5 for lite
575
+ $gd_star_logs_imported = get_option('yasr-gdstar-logs-imported');
576
+
577
+ if (!$gd_star_logs_imported) {
578
+
579
+ //Import logs from GD star
580
+ $logs = yasr_import_gdstar_logs();
581
+
582
+ //Insert logs if exists
583
+ $insert_logs = yasr_insert_gdstar_logs($logs);
584
+
585
+ if ($insert_logs) {
586
+ update_option('yasr-gdstar-logs-imported', '1');
587
+ }
588
+
589
+ }
590
+
591
  //Import reviews from GD star
592
  $reviews=yasr_import_gdstar_data();
593
 
594
  //Insert GD star review in yasr votes table
595
+ $check_query_success = yasr_insert_gdstar_data($reviews);
596
+
597
  ?>
598
 
599
  <div class="yasr-result-step-1">
991
  $medium_rating = round ($total_rating, 1);
992
 
993
  echo "<div class=\"$rateit_class\" id=\"yasr_rateit_user_votes_voted\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$total_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
994
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average rating", "yasr") . " $medium_rating/5 ]</span>
995
+ <span class=\"yasr-small-block-bold\" id=\"yasr-vote-saved\">" . __("Vote Saved" , "yasr") . "</span>";
996
 
997
  }
998
 
999
  elseif ($new_row_result) {
1000
 
1001
  echo "<div class=\"$rateit_class\" id=\"yasr_rateit_user_votes_voted\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
1002
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average rating", "yasr") . " $rating/5 ]</span>
1003
+ <span class=\"yasr-small-block-bold\" id=\"yasr-vote-saved\">" . __("Vote Saved" , "yasr") . "</span>";
1004
 
1005
  }
1006
 
1033
  die();
1034
  }
1035
 
1036
+ if ($size == 'small') {
1037
+ $rateit_class = 'rateit';
1038
+ $px_size = '16';
1039
+ }
1040
+
1041
+ elseif ($size == 'medium') {
1042
+ $rateit_class = 'rateit medium';
1043
+ $px_size = '24';
1044
+ }
1045
+
1046
+ //default values
1047
+ else {
1048
+ $rateit_class = 'rateit bigstars';
1049
+ $px_size = '32';
1050
+ }
1051
+
1052
+
1053
  global $wpdb;
1054
 
1055
  $all_post_votes = $wpdb->get_results ("SELECT sum_votes, number_of_votes FROM " . YASR_VOTES_TABLE . " WHERE post_id=$post_id");
1112
  $total_rating = ($new_sum / $number_of_votes);
1113
  $medium_rating=round ($total_rating, 1);
1114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1115
 
1116
+ echo "<div class=\"$rateit_class\" id=\"yasr-rateit-user-votes-updated\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$total_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
1117
+ <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average $medium_rating/5" , "yasr") . "]</span>
1118
+ <span class=\"yasr-small-block-bold\" id=\"yasr-already-voted-text\">" . __("Vote updated", "yasr") . "</span>";
1119
 
1120
  die(); // this is required to return a proper result
1121
 
1138
  exit();
1139
  }
1140
 
1141
+ if ($size === 'small') {
1142
+ $rateit_class='rateit';
1143
+ $px_size = '16';
1144
+ }
1145
+
1146
+ elseif ($size === 'medium') {
1147
+ $rateit_class = 'rateit medium';
1148
+ $px_size = '24';
1149
+ }
1150
+
1151
+ //default values
1152
+ else {
1153
+ $rateit_class = 'rateit bigstars';
1154
+ $px_size = '32';
1155
+ }
1156
+
1157
  global $wpdb;
1158
 
1159
  //I've to pass post_id here cause get_the_id doesn't work if called with ajax
1164
  $sum_votes = $vote->sum_votes;
1165
  }
1166
 
 
 
1167
  //This should never happen, only if a user manually erase data from tables
1168
  if ($number_of_votes == 0) {
1169
  $number_of_votes = 1;
1170
  }
1171
 
1172
+ $average_rating = $sum_votes/$number_of_votes;
1173
+
1174
  $average_rating = round ($average_rating, 1);
1175
 
1176
 
1178
 
1179
  if( YASR_TEXT_BEFORE_STARS == 1 && YASR_CUSTOM_TEXT_USER_VOTED != '' ) {
1180
 
1181
+ echo "<div class=\"$rateit_class\" id=\"yasr_rateit_user_votes_voted_ro\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$average_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
1182
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average " , "yasr") . "$average_rating/5 ]</span>
1183
+ <span class=\"yasr-small-block-bold\" id=\"yasr-already-voted-text\">" . YASR_CUSTOM_TEXT_USER_VOTED . " </span>";
1184
+
1185
+ }
1186
+
1187
+ else {
1188
+
1189
+ echo "<div class=\"$rateit_class\" id=\"yasr_rateit_user_votes_voted_ro\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$average_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
1190
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average " , "yasr") . "$average_rating/5 ]</span>
1191
+ <span class=\"yasr-small-block-bold\" id=\"yasr-already-voted-text\">" . __("You've already voted this article with", "yasr") . " $rating </span>";
1192
+
1193
+ }
1194
+
1195
+
1196
+ ?>
1197
+
1198
+ <script type="text/javascript">
1199
+
1200
+ jQuery(document).ready(function() {
1201
+
1202
+ var postid = <?php echo (json_encode($post_id)); ?>;
1203
+ var ajaxurl = <?php echo (json_encode(admin_url('admin-ajax.php'))); ?>;
1204
+
1205
+ yasrDrawTipsProgress (postid, ajaxurl);
1206
+
1207
+ });
1208
+
1209
+ </script>
1210
+
1211
+ <?php
1212
+
1213
+
1214
+ die(); // this is required to return a proper result
1215
+
1216
+ } //End callback function
1217
+
1218
+
1219
+ /****** Draw the stats for visitors votes ******/
1220
+
1221
+ add_action( 'wp_ajax_yasr_stats_visitors_votes', 'yasr_stats_visitors_votes_callback' );
1222
+ add_action( 'wp_ajax_nopriv_yasr_stats_visitors_votes', 'yasr_stats_visitors_votes_callback' );
1223
+
1224
+ function yasr_stats_visitors_votes_callback () {
1225
+
1226
+ if(isset($_POST['post_id'])) {
1227
+ $post_id = $_POST['post_id'];
1228
+ }
1229
+
1230
+ else {
1231
+ exit();
1232
+ }
1233
+
1234
+ $missing_vote = NULL; //avoid undefined variable
1235
+
1236
+ global $wpdb;
1237
+
1238
+ $stats = $wpdb->get_results ("SELECT ROUND( vote, 0 ) as vote, COUNT( vote ) AS n_of_votes
1239
+ FROM ". YASR_LOG_TABLE . "
1240
+ WHERE post_id=$post_id
1241
+ GROUP BY vote
1242
+ ORDER BY vote DESC
1243
+ ",
1244
+ ARRAY_A);
1245
+
1246
+ $total_votes=0; //Avoid undefined variable if stats exists. Necessary is $stats not exists
1247
+
1248
+ //if query return 0 wirte an empty array $existing_votes
1249
+ if (!$stats) {
1250
+ $existing_votes = array();
1251
+ }
1252
+
1253
+ else {
1254
+ //Write a new array with only existing votes, and count all the number of votes
1255
+ foreach ($stats as $votes) {
1256
+ $existing_votes[] = $votes['vote'];//Create an array with only existing votes
1257
+ $total_votes = $total_votes + $votes['n_of_votes'];
1258
  }
1259
 
1260
+ }
1261
+
1262
+ for ($i=1; $i<=5; $i++){
1263
+
1264
+ //If query return 0 write a new $stats array with index
1265
+ if (!$stats) {
1266
+ $stats[$i] = array();
1267
+ $stats[$i]['vote'] = $i;
1268
+ $stats[$i]['n_of_votes'] = 0;
1269
  }
1270
 
 
1271
  else {
1272
+
1273
+ //If in the new array there are some vote missing create a new array
1274
+ if(!in_array($i, $existing_votes)) {
1275
+ $missing_vote[$i] = array();
1276
+ $missing_vote[$i]['vote'] = $i;
1277
+ $missing_vote[$i]['n_of_votes'] = 0;
1278
+ }
1279
+
1280
  }
1281
 
1282
+ }
1283
+
1284
+ //If missing_vote exists merge it
1285
+ if ($missing_vote) {
1286
+
1287
+ $stats = array_merge($stats, $missing_vote);
1288
 
1289
  }
1290
 
1291
+ arsort($stats); //sort it by $votes[n_of_votes]
1292
 
1293
+ echo "<div class=\"yasr-progress-bars-container\">\n";
 
 
1294
 
1295
+ if ($total_votes == 0) {
1296
+ $increase_bar_value = 0;
1297
+ }
1298
+ else {
1299
+ $increase_bar_value = 100 / $total_votes; //Find how much all the bars should increase per vote
1300
  }
1301
 
1302
+ $i=5;
1303
 
1304
+ foreach ($stats as $logged_votes) {
1305
+
1306
+ if ($i != 0) {
1307
+
1308
+ echo "<div class=\"yasr-progress-bar-row-container\">
1309
+ <span class=\"yasr-progress-bar-name\">$i stars</span><span class=\"yasr-progress-bar\" id=\"yasr-progress-bar-$i\" ></span><span class=\"yasr-progress-bar-votes-count\">$logged_votes[n_of_votes]</span>
1310
+ </div>";
1311
+
1312
+ $value_progressbar = $increase_bar_value * $logged_votes['n_of_votes']; //value of the single bar
1313
 
1314
+ $value_progressbar = round ($value_progressbar, 2); //use only 2 decimal
1315
 
1316
+ $array_values_progressbar[] = $value_progressbar;
1317
+
1318
+ $i--;
1319
+
1320
+ }
1321
+
1322
+ } //End foreach
1323
+
1324
+ ?>
1325
+
1326
+ <script>
1327
+ jQuery( document ).ready(function() {
1328
+
1329
+ //var i = <?php echo (json_encode($i)); ?>;
1330
+ var arrayValueProgressbar = <?php echo (json_encode($array_values_progressbar)); ?>;
1331
+
1332
+ yasrDrawProgressBars (arrayValueProgressbar);
1333
+
1334
+ });
1335
+ </script>
1336
+
1337
+ <?php
1338
+
1339
+ echo "</div>";
1340
+
1341
+ die();
1342
+
1343
+ }
1344
 
1345
  ?>
lib/yasr-db-functions.php CHANGED
@@ -264,7 +264,7 @@ add_action( 'plugins_loaded', 'add_action_dashboard_widget_log' );
264
  $log_result = $wpdb->get_results ("SELECT * FROM ". YASR_LOG_TABLE . " ORDER BY date DESC LIMIT 0, $limit ");
265
 
266
  if (!$log_result) {
267
- _e("No Recenet votes yet", "yasr");
268
  }
269
 
270
  else {
@@ -369,7 +369,7 @@ add_action( 'plugins_loaded', 'add_action_dashboard_widget_log' );
369
 
370
  </div>";
371
 
372
- }
373
 
374
  } //End callback function
375
 
@@ -466,6 +466,4 @@ function yasr_check_if_user_already_voted() {
466
 
467
  }
468
 
469
-
470
-
471
  ?>
264
  $log_result = $wpdb->get_results ("SELECT * FROM ". YASR_LOG_TABLE . " ORDER BY date DESC LIMIT 0, $limit ");
265
 
266
  if (!$log_result) {
267
+ _e("No recenet votes yet", "yasr");
268
  }
269
 
270
  else {
369
 
370
  </div>";
371
 
372
+ } //End else
373
 
374
  } //End callback function
375
 
466
 
467
  }
468
 
 
 
469
  ?>
lib/yasr-functions.php CHANGED
@@ -28,8 +28,12 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
28
 
29
  function yasr_add_scripts () {
30
 
31
- wp_enqueue_style( 'yasrcss', YASR_CSS_DIR . 'yasr.css', FALSE, NULL, 'all' );
 
 
 
32
 
 
33
 
34
  //If choosen is light or not dark (force to be default)
35
  if (YASR_SCHEME_COLOR === 'light' || YASR_SCHEME_COLOR != 'dark' ) {
@@ -46,6 +50,13 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
46
 
47
  wp_enqueue_script( 'rateit', YASR_JS_DIR . 'jquery.rateit.min.js' , array('jquery'), '1.0.22', TRUE );
48
  wp_enqueue_script( 'cookie', YASR_JS_DIR . 'jquery-cookie.min.js' , array('jquery', 'rateit'), '1.4.0', TRUE );
 
 
 
 
 
 
 
49
  wp_enqueue_script( 'yasrfront', YASR_JS_DIR . 'yasr-front.js' , array('jquery', 'rateit'), '1.0.00', TRUE );
50
 
51
  }
@@ -53,10 +64,10 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
53
  function yasr_add_admin_scripts () {
54
 
55
  wp_enqueue_style( 'yasrcss', YASR_CSS_DIR . 'yasr-admin.css', FALSE, NULL, 'all' );
56
- wp_enqueue_style( 'wp-jquery-ui-dialog' );
57
 
58
  wp_enqueue_script( 'rateit', YASR_JS_DIR . 'jquery.rateit.min.js' , array('jquery'), '1.0.20', TRUE );
59
- wp_enqueue_script( 'jquery-ui-dialog' );
60
 
61
  wp_enqueue_script( 'yasradmin', YASR_JS_DIR . 'yasr-admin.js' , array('jquery', 'rateit'), '1.0.00', TRUE );
62
 
@@ -263,18 +274,18 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
263
 
264
  function yasr_add_schema($content) {
265
 
266
- $schema=NULL; //To avoid undefined variable notice outside the loop
267
 
268
  $review_choosen = yasr_get_snippet_type();
269
 
270
- if (YASR_SNIPPET == 'overall_rating') {
271
 
272
- $overall_rating=yasr_get_overall_rating();
273
 
274
- if($overall_rating && $overall_rating != '-1' && $overall_rating != '0.0') {
275
 
276
- if(is_singular() && is_main_query() ) {
277
- global $post;
278
 
279
  if ($review_choosen == 'Place') {
280
  $title = "<span itemprop=\"itemReviewed\" itemscope itemtype=\"http://schema.org/LocalBusiness\"> <span itemprop=\"name\">". get_the_title() ."</span></span>";
@@ -296,23 +307,23 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
296
 
297
  $schema = $div . $title . $author . $date . $rating . $end_div;
298
 
299
- }
300
 
301
- } //END id if $overall_rating != '-1'
302
 
303
- if( is_singular() && is_main_query() ) {
304
- return $content . $schema;
305
- }
306
 
307
- else {
308
- return $content;
309
- }
310
 
311
- } //end if ($choosen_snippet['snippet'] == 'overall_rating')
312
 
313
- if (YASR_SNIPPET == 'visitor_rating') {
314
 
315
- $visitor_votes = yasr_get_visitor_votes ();
316
 
317
  if ($visitor_votes) {
318
 
@@ -327,11 +338,11 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
327
  $visitor_rating = NULL;
328
  }
329
 
330
- if ($visitor_rating['sum'] != 0) {
331
 
332
- $average_rating = $visitor_rating['sum'] / $visitor_rating['votes_number'];
333
 
334
- $average_rating=round($average_rating, 1);
335
 
336
  if ($review_choosen == 'Place') {
337
  $div_1 = "<div class=\"yasr_schema\" itemscope itemtype=\"http://schema.org/LocalBusiness\">";
28
 
29
  function yasr_add_scripts () {
30
 
31
+ //if visitors stats are enabled
32
+ if (YASR_VISITORS_STATS === 'yes') {
33
+ wp_enqueue_style( 'jquery-ui','http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.min.css', FALSE, NULL, 'all' );
34
+ }
35
 
36
+ wp_enqueue_style( 'yasrcss', YASR_CSS_DIR . 'yasr.css', FALSE, NULL, 'all' );
37
 
38
  //If choosen is light or not dark (force to be default)
39
  if (YASR_SCHEME_COLOR === 'light' || YASR_SCHEME_COLOR != 'dark' ) {
50
 
51
  wp_enqueue_script( 'rateit', YASR_JS_DIR . 'jquery.rateit.min.js' , array('jquery'), '1.0.22', TRUE );
52
  wp_enqueue_script( 'cookie', YASR_JS_DIR . 'jquery-cookie.min.js' , array('jquery', 'rateit'), '1.4.0', TRUE );
53
+
54
+ //if visitors stats are enabled
55
+ if (YASR_VISITORS_STATS === 'yes') {
56
+ wp_enqueue_script( 'jquery-ui-progressbar' ); //script
57
+ wp_enqueue_script( 'jquery-ui-tooltip' ); //script
58
+ }
59
+
60
  wp_enqueue_script( 'yasrfront', YASR_JS_DIR . 'yasr-front.js' , array('jquery', 'rateit'), '1.0.00', TRUE );
61
 
62
  }
64
  function yasr_add_admin_scripts () {
65
 
66
  wp_enqueue_style( 'yasrcss', YASR_CSS_DIR . 'yasr-admin.css', FALSE, NULL, 'all' );
67
+ wp_enqueue_style( 'wp-jquery-ui-dialog' ); //style
68
 
69
  wp_enqueue_script( 'rateit', YASR_JS_DIR . 'jquery.rateit.min.js' , array('jquery'), '1.0.20', TRUE );
70
+ wp_enqueue_script( 'jquery-ui-dialog' ); //script
71
 
72
  wp_enqueue_script( 'yasradmin', YASR_JS_DIR . 'yasr-admin.js' , array('jquery', 'rateit'), '1.0.00', TRUE );
73
 
274
 
275
  function yasr_add_schema($content) {
276
 
277
+ $schema=NULL; //To avoid undefined variable notice outside the loop
278
 
279
  $review_choosen = yasr_get_snippet_type();
280
 
281
+ if (YASR_SNIPPET == 'overall_rating') {
282
 
283
+ $overall_rating=yasr_get_overall_rating();
284
 
285
+ if($overall_rating && $overall_rating != '-1' && $overall_rating != '0.0') {
286
 
287
+ if(is_singular() && is_main_query() ) {
288
+ global $post;
289
 
290
  if ($review_choosen == 'Place') {
291
  $title = "<span itemprop=\"itemReviewed\" itemscope itemtype=\"http://schema.org/LocalBusiness\"> <span itemprop=\"name\">". get_the_title() ."</span></span>";
307
 
308
  $schema = $div . $title . $author . $date . $rating . $end_div;
309
 
310
+ }
311
 
312
+ } //END id if $overall_rating != '-1'
313
 
314
+ if( is_singular() && is_main_query() ) {
315
+ return $content . $schema;
316
+ }
317
 
318
+ else {
319
+ return $content;
320
+ }
321
 
322
+ } //end if ($choosen_snippet['snippet'] == 'overall_rating')
323
 
324
+ if (YASR_SNIPPET == 'visitor_rating') {
325
 
326
+ $visitor_votes = yasr_get_visitor_votes ();
327
 
328
  if ($visitor_votes) {
329
 
338
  $visitor_rating = NULL;
339
  }
340
 
341
+ if ($visitor_rating['sum'] != 0) {
342
 
343
+ $average_rating = $visitor_rating['sum'] / $visitor_rating['votes_number'];
344
 
345
+ $average_rating=round($average_rating, 1);
346
 
347
  if ($review_choosen == 'Place') {
348
  $div_1 = "<div class=\"yasr_schema\" itemscope itemtype=\"http://schema.org/LocalBusiness\">";
lib/yasr-settings-functions.php CHANGED
@@ -18,7 +18,6 @@ You should have received a copy of the GNU General Public License
18
  along with this program. If not, see <http://www.gnu.org/licenses/>
19
  */
20
 
21
-
22
  /****** Add yasr general option ******/
23
 
24
  add_action( 'admin_init', 'yasr_general_options_init' ); //This is for general options
@@ -51,6 +50,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
51
  add_settings_field( 'yasr_use_auto_insert_id', __('Auto insert options', 'yasr'), 'yasr_auto_insert_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
52
  add_settings_field( 'yasr_show_overall_in_loop', __('Show "Overall Rating" in Home Page?', 'yasr'), 'yasr_show_overall_in_loop_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
53
  add_settings_field( 'yasr_custom_text', __('Insert custom text to show before / after stars', 'yasr'), 'yasr_custom_text_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
 
54
  add_settings_field( 'yasr_color_scheme', __('Which color scheme do you want to use?', 'yasr') , 'yasr_color_scheme_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
55
  add_settings_field( 'yasr_allow_only_logged_in_id', __('Allow only logged in user to vote?', 'yasr'), 'yasr_allow_only_logged_in_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
56
  add_settings_field( 'yasr_choose_snippet_id', __('Which rich snippets do you want to use?', 'yasr'), 'yasr_choose_snippet_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
@@ -150,7 +150,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
150
 
151
  <p>&nbsp;</p>
152
 
153
-
154
  <?php
155
 
156
  $custom_post_types = yasr_get_custom_post_type('bool');
@@ -178,7 +177,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
178
  }
179
 
180
  ?>
181
-
182
 
183
  <hr />
184
 
@@ -254,6 +252,46 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
254
  <?php
255
  }
256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
 
258
  function yasr_color_scheme_callback($option) {
259
 
@@ -368,7 +406,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
368
  }
369
 
370
 
371
-
372
  /****** Create a form for settings page to create new multi set ******/
373
  function yasr_display_multi_set_form() {
374
  ?>
@@ -382,7 +419,7 @@ function yasr_display_multi_set_form() {
382
  <input type="hidden" name="action" value="yasr_new_multi_set_form" />
383
 
384
  <p></p>
385
- <?php _e("You can insert up to nine element", "yasr") ?>
386
  <br />
387
 
388
  <?php for($i=1; $i<=9; $i++) {
@@ -1233,7 +1270,7 @@ function yasr_import_gdstar_multi_value(){
1233
  WHERE v.id = d.id
1234
  AND 0 <> (
1235
  SELECT SUM( user_votes )
1236
- FROM wp_gdsr_multis_values AS tabin
1237
  WHERE tabin.id = v.id )
1238
  AND p.ID = d.post_id
1239
  AND d.multi_id = m.multi_id
@@ -1261,6 +1298,22 @@ function yasr_import_gdstar_multi_value(){
1261
  return ($multi_set_data);
1262
  }
1263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1264
  /****** Insert Gd Star Rating review in overall rating ******/
1265
  function yasr_insert_gdstar_data($votes){
1266
  global $wpdb;
@@ -1281,6 +1334,31 @@ function yasr_insert_gdstar_data($votes){
1281
  return $result;
1282
  }
1283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1284
  /****** Insert gd star rating multi set name
1285
 
1286
  Thanks to Alessandro Carlo Chirico for his help in regex!
@@ -1362,4 +1440,4 @@ function yasr_insert_gdstar_multi_value($multi_datas) {
1362
  /****************************END IMPORT FUNCTIONS******************************/
1363
 
1364
 
1365
- ?>
18
  along with this program. If not, see <http://www.gnu.org/licenses/>
19
  */
20
 
 
21
  /****** Add yasr general option ******/
22
 
23
  add_action( 'admin_init', 'yasr_general_options_init' ); //This is for general options
50
  add_settings_field( 'yasr_use_auto_insert_id', __('Auto insert options', 'yasr'), 'yasr_auto_insert_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
51
  add_settings_field( 'yasr_show_overall_in_loop', __('Show "Overall Rating" in Home Page?', 'yasr'), 'yasr_show_overall_in_loop_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
52
  add_settings_field( 'yasr_custom_text', __('Insert custom text to show before / after stars', 'yasr'), 'yasr_custom_text_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
53
+ add_settings_field( 'yasr_visitors_stats', __('Do you want show stats for visitors votes?', 'yasr'), 'yasr_visitors_stats_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
54
  add_settings_field( 'yasr_color_scheme', __('Which color scheme do you want to use?', 'yasr') , 'yasr_color_scheme_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
55
  add_settings_field( 'yasr_allow_only_logged_in_id', __('Allow only logged in user to vote?', 'yasr'), 'yasr_allow_only_logged_in_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
56
  add_settings_field( 'yasr_choose_snippet_id', __('Which rich snippets do you want to use?', 'yasr'), 'yasr_choose_snippet_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
150
 
151
  <p>&nbsp;</p>
152
 
 
153
  <?php
154
 
155
  $custom_post_types = yasr_get_custom_post_type('bool');
177
  }
178
 
179
  ?>
 
180
 
181
  <hr />
182
 
252
  <?php
253
  }
254
 
255
+ function yasr_visitors_stats_callback($option) {
256
+
257
+ if ($option['visitors_stats'] === 'disabled') {
258
+
259
+ _e("Seems like you've imported gd star rating in the past, but then deleted the logs table. For now, you can't enable statistics", "yasr");
260
+
261
+ ?>
262
+
263
+ <p>&nbsp;</p>
264
+
265
+ <hr>
266
+
267
+ <?php
268
+
269
+ }
270
+
271
+ else {
272
+
273
+ ?>
274
+
275
+ <input type='radio' name='yasr_general_options[visitors_stats]' value='yes' class='yasr-general-options-scheme-color' <?php if ($option['visitors_stats']==='yes') echo " checked=\"checked\" "; ?> />
276
+ <?php _e('Yes', 'yasr')?>
277
+
278
+ &nbsp;&nbsp;&nbsp;
279
+
280
+ <input type='radio' name='yasr_general_options[visitors_stats]' value='no' class='yasr-general-options-scheme-color' <?php if ($option['visitors_stats']==='no') echo " checked=\"checked\" "; ?> />
281
+ <?php _e('No', 'yasr')?>
282
+ <br />
283
+
284
+ <br />
285
+
286
+ <p>&nbsp;</p>
287
+
288
+ <hr>
289
+
290
+ <?php
291
+
292
+ }
293
+
294
+ }
295
 
296
  function yasr_color_scheme_callback($option) {
297
 
406
  }
407
 
408
 
 
409
  /****** Create a form for settings page to create new multi set ******/
410
  function yasr_display_multi_set_form() {
411
  ?>
419
  <input type="hidden" name="action" value="yasr_new_multi_set_form" />
420
 
421
  <p></p>
422
+ <?php _e("You can insert up to nine elements", "yasr") ?>
423
  <br />
424
 
425
  <?php for($i=1; $i<=9; $i++) {
1270
  WHERE v.id = d.id
1271
  AND 0 <> (
1272
  SELECT SUM( user_votes )
1273
+ FROM $table_gdsr_multis_values AS tabin
1274
  WHERE tabin.id = v.id )
1275
  AND p.ID = d.post_id
1276
  AND d.multi_id = m.multi_id
1298
  return ($multi_set_data);
1299
  }
1300
 
1301
+ /****** Import gd star logs ******/
1302
+ function yasr_import_gdstar_logs() {
1303
+
1304
+ global $wpdb;
1305
+
1306
+ $table_gdsr_logs=$wpdb->prefix . 'gdsr_votes_log';
1307
+
1308
+ $gdsr_log_data = $wpdb->get_results (" SELECT id AS post_id, user_id, vote, voted AS date, ip
1309
+ FROM $table_gdsr_logs
1310
+ WHERE vote_type = 'article'
1311
+ ORDER BY date DESC ");
1312
+
1313
+ return $gdsr_log_data;
1314
+
1315
+ }
1316
+
1317
  /****** Insert Gd Star Rating review in overall rating ******/
1318
  function yasr_insert_gdstar_data($votes){
1319
  global $wpdb;
1334
  return $result;
1335
  }
1336
 
1337
+ /****** Insert logs ******/
1338
+ function yasr_insert_gdstar_logs($logs) {
1339
+ global $wpdb;
1340
+
1341
+ foreach ($logs as $column) {
1342
+ $result = $wpdb->replace(
1343
+ YASR_LOG_TABLE,
1344
+ array(
1345
+ 'post_id' => $column->post_id,
1346
+ 'multi_set_id' => '-1',
1347
+ 'user_id' => $column->user_id,
1348
+ 'vote' => $column->vote,
1349
+ 'date' => $column->date,
1350
+ 'ip' => $column->ip
1351
+ ),
1352
+ array( '%d', '%s', '%d', '%s', '%s', '%s' )
1353
+ );
1354
+ }
1355
+
1356
+ if ($result) {
1357
+ return TRUE;
1358
+ }
1359
+ }
1360
+
1361
+
1362
  /****** Insert gd star rating multi set name
1363
 
1364
  Thanks to Alessandro Carlo Chirico for his help in regex!
1440
  /****************************END IMPORT FUNCTIONS******************************/
1441
 
1442
 
1443
+ ?>
lib/yasr-shortcode-functions.php CHANGED
@@ -1,5 +1,23 @@
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // Exit if accessed directly
4
 
5
  /****** Add shortcode for overall rating ******/
@@ -53,7 +71,6 @@ function shortcode_overall_rating_callback ($atts) {
53
  $shortcode_html .= "<div class=\"$rateit_class\" id=\"yasr_rateit_overall\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$overall_rating\" data-rateit-step=\"0.1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>";
54
 
55
 
56
-
57
  if (YASR_TEXT_BEFORE_STARS == 1 && YASR_TEXT_BEFORE_OVERALL != '') {
58
 
59
  $shortcode_html .= "</div>";
@@ -193,9 +210,9 @@ function shortcode_visitor_votes_callback ($atts) {
193
  //If user has already rated show readonly stars
194
  if ($vote_if_user_already_rated) {
195
 
196
- $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr-rateit-visitor-votes-logged-rated\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
197
- <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>
198
- <strong>" . __("You've already voted this article with", "yasr") . " $vote_if_user_already_rated </strong></div>";
199
 
200
  }
201
 
@@ -206,12 +223,12 @@ function shortcode_visitor_votes_callback ($atts) {
206
 
207
  if ($votes_number>0) {
208
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
209
- <span class=\"yasr-total-average-text-small\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span></div>";
210
  }
211
 
212
  else {
213
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"0\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
214
- <span class=\"yasr-total-average-text-small\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span></div>";
215
  }
216
 
217
  } //End else
@@ -226,12 +243,12 @@ function shortcode_visitor_votes_callback ($atts) {
226
 
227
  if ($votes_number>0) {
228
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
229
- <span class=\"yasr-total-average-text-small\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span></div>";
230
  }
231
 
232
  else {
233
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"0\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
234
- <span class=\"yasr-total-average-text-small\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span></div>";
235
  }
236
 
237
  } //end else
@@ -250,9 +267,9 @@ function shortcode_visitor_votes_callback ($atts) {
250
 
251
  if ($vote_if_user_already_rated) {
252
 
253
- $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr-rateit-visitor-votes-logged-rated\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
254
- <span class=\"yasr-total-average-text\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>
255
- <strong>" . __("You've already voted this article with", "yasr") . " $vote_if_user_already_rated </strong></div>";
256
 
257
  }
258
 
@@ -262,13 +279,13 @@ function shortcode_visitor_votes_callback ($atts) {
262
 
263
  if ($votes_number>0) {
264
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
265
- <span class=\"yasr-total-average-text-small\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>
266
  </div>";
267
  }
268
 
269
  else {
270
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"0\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
271
- <span class=\"yasr-total-average-text-small\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>
272
  </div>";
273
  }
274
 
@@ -283,13 +300,13 @@ function shortcode_visitor_votes_callback ($atts) {
283
 
284
  if ($votes_number>0) {
285
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
286
- <span class=\"yasr-total-average-text-small\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>
287
  " . __("You must sign to vote", "yasr") . "</div>";
288
  }
289
 
290
  else {
291
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"0\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
292
- <span class=\"yasr-total-average-text-small\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>"
293
  . __("You must sign to vote", "yasr") . "</div>";
294
  }
295
 
@@ -327,6 +344,13 @@ function shortcode_visitor_votes_callback ($atts) {
327
 
328
  yasrVisitorsVotes(tooltipValues, postid, ajaxurl, size, loggedUser, voteIfUserAlredyRated, votes, votesNumber, loaderHtml, nonceVisitor);
329
 
 
 
 
 
 
 
 
330
  });
331
 
332
  </script>
@@ -501,7 +525,7 @@ function yasr_most_or_highest_rated_posts_callback () {
501
  } //End if $query_result_most_rated)
502
 
503
  else {
504
- $shortcode_html = __("You've not enought data","yasr") . "<br />";
505
  }
506
 
507
 
@@ -621,7 +645,7 @@ function yasr_top_5_reviewers_callback () {
621
 
622
  else {
623
 
624
- _e("Problem while retriving the top 5 most active reviewers. Did you published any review?");
625
 
626
  }
627
 
@@ -689,7 +713,7 @@ function yasr_top_ten_active_users_callback () {
689
  }
690
 
691
  else {
692
- _e("Problem while retriving the top 10 active users chart. Are you sure you have votes to show?");
693
  }
694
 
695
 
1
  <?php
2
 
3
+ /*
4
+
5
+ Copyright 2014 Dario Curvino (email : d.curvino@tiscali.it)
6
+
7
+ This program is free software: you can redistribute it and/or modify
8
+ it under the terms of the GNU General Public License as published by
9
+ the Free Software Foundation, either version 2 of the License, or
10
+ (at your option) any later version.
11
+
12
+ This program is distributed in the hope that it will be useful,
13
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ GNU General Public License for more details.
16
+
17
+ You should have received a copy of the GNU General Public License
18
+ along with this program. If not, see <http://www.gnu.org/licenses/>
19
+ */
20
+
21
  if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // Exit if accessed directly
22
 
23
  /****** Add shortcode for overall rating ******/
71
  $shortcode_html .= "<div class=\"$rateit_class\" id=\"yasr_rateit_overall\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$overall_rating\" data-rateit-step=\"0.1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>";
72
 
73
 
 
74
  if (YASR_TEXT_BEFORE_STARS == 1 && YASR_TEXT_BEFORE_OVERALL != '') {
75
 
76
  $shortcode_html .= "</div>";
210
  //If user has already rated show readonly stars
211
  if ($vote_if_user_already_rated) {
212
 
213
+ $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
214
+ <div class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</div>
215
+ <span class=\"yasr-small-block-bold\" id=\"yasr-already-voted-text\">" . __("You've already voted this article with", "yasr") . " $vote_if_user_already_rated </span></div>";
216
 
217
  }
218
 
223
 
224
  if ($votes_number>0) {
225
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
226
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span></div>";
227
  }
228
 
229
  else {
230
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"0\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
231
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span></div>";
232
  }
233
 
234
  } //End else
243
 
244
  if ($votes_number>0) {
245
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
246
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\"> [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span></div>";
247
  }
248
 
249
  else {
250
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"0\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
251
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span></div>";
252
  }
253
 
254
  } //end else
267
 
268
  if ($vote_if_user_already_rated) {
269
 
270
+ $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
271
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>
272
+ <span class=\"yasr-small-block-bold\" id=\"yasr-already-voted-text\">" . __("You've already voted this article with", "yasr") . " $vote_if_user_already_rated </span></div>";
273
 
274
  }
275
 
279
 
280
  if ($votes_number>0) {
281
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
282
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>
283
  </div>";
284
  }
285
 
286
  else {
287
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"0\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"false\"></div>
288
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>
289
  </div>";
290
  }
291
 
300
 
301
  if ($votes_number>0) {
302
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$medium_rating\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
303
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>
304
  " . __("You must sign to vote", "yasr") . "</div>";
305
  }
306
 
307
  else {
308
  $shortcode_html="<div id=\"yasr_visitor_votes\"><div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"0\" data-rateit-step=\"1\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
309
+ <span class=\"yasr-total-average-text\" title=\"yasr-stats\">[" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]</span>"
310
  . __("You must sign to vote", "yasr") . "</div>";
311
  }
312
 
344
 
345
  yasrVisitorsVotes(tooltipValues, postid, ajaxurl, size, loggedUser, voteIfUserAlredyRated, votes, votesNumber, loaderHtml, nonceVisitor);
346
 
347
+ var visitorStatsEnabled = <?php echo (json_encode(YASR_VISITORS_STATS)); ?>;
348
+
349
+ //If stats are enabled call the function
350
+ if (visitorStatsEnabled == 'yes') {
351
+ yasrDrawTipsProgress (postid, ajaxurl);
352
+ }
353
+
354
  });
355
 
356
  </script>
525
  } //End if $query_result_most_rated)
526
 
527
  else {
528
+ $shortcode_html = __("You've not enough data","yasr") . "<br />";
529
  }
530
 
531
 
645
 
646
  else {
647
 
648
+ _e("Problem while retrieving the top 5 most active reviewers. Did you publish any review?");
649
 
650
  }
651
 
713
  }
714
 
715
  else {
716
+ _e("Problem while retrieving the top 10 active users chart. Are you sure you have votes to show?");
717
  }
718
 
719
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: 5 star, admin, administrator, AJAX, five-star, javascript, jquery, post r
4
  Requires at least: 3.5
5
  Contributors: Dudo
6
  Tested up to: 4.0
7
- Stable tag: 0.6.3
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  Yet Another Stars Rating is a simple plugin which allows you and / or your visitor to rate a post or element. Ideal for review's website
@@ -40,7 +40,7 @@ If with gd-star-rating you're using a different number of stars from the default
40
  = Supported Languages =
41
  * English
42
  * Italian
43
- * German (thanks to Josef Seidl, http://www.blog-it-solutions.de/ )
44
  * Polish (thanks to Hoek i Tutu Team)
45
  * Dutch (thanks to Marcel Pol, http://zenoweb.nl )
46
 
@@ -87,6 +87,12 @@ Of course not: you can easily add it on the visual editor just by clicking on th
87
 
88
  == Changelog ==
89
 
 
 
 
 
 
 
90
  = 0.6.3 =
91
  * Added Pro info in settings page
92
 
4
  Requires at least: 3.5
5
  Contributors: Dudo
6
  Tested up to: 4.0
7
+ Stable tag: 0.6.5
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  Yet Another Stars Rating is a simple plugin which allows you and / or your visitor to rate a post or element. Ideal for review's website
40
  = Supported Languages =
41
  * English
42
  * Italian
43
+ * German (thanks to Josef Seidl, http://www.blog-it-solutions.de/ until version 0.0.5, than mp3-post )
44
  * Polish (thanks to Hoek i Tutu Team)
45
  * Dutch (thanks to Marcel Pol, http://zenoweb.nl )
46
 
87
 
88
  == Changelog ==
89
 
90
+ = 0.6.5 =
91
+ * New feature! If you use Visitors Rating stars set, you can now see statistics by hovering the mouse on the text [Total: X Average:Y]
92
+ * Bug fixes (stars changing size) in [yasr_visitor_rating]
93
+ * Fixed typos
94
+ * Huge cleanups
95
+
96
  = 0.6.3 =
97
  * Added Pro info in settings page
98
 
yasr-settings-page.php CHANGED
@@ -24,7 +24,7 @@ if ( !current_user_can( 'manage_options' ) ) {
24
  wp_die( __( 'You do not have sufficient permissions to access this page.', 'yasr' ));
25
  }
26
 
27
- $n_multi_set = NULL;
28
 
29
  ?>
30
 
@@ -172,36 +172,34 @@ $n_multi_set = NULL;
172
  <div class="yasr-space-settings-div">
173
  </div>
174
 
175
- <?php
176
  } //$gd_star_rating_found && $gd_star_imported==1$gd_star_rating_found = yasr_search_gd_star_rating();
177
 
178
  } //End if tab 'general_settings'
179
 
180
  ?>
181
 
 
182
 
183
- <?php
184
-
185
- if ($active_tab == 'manage_multi') {
186
 
187
- $multi_set=yasr_get_multi_set();
188
 
189
- global $wpdb;
190
 
191
- $n_multi_set = $wpdb->num_rows; //wpdb->num_rows always store the last of the last query
192
-
193
- ?>
194
 
195
- <div class="yasr-settingsdiv">
196
-
197
- <h3> <?php _e("Manage Multi Set", "yasr"); ?></h3>
198
 
199
- <p>
 
 
200
 
201
- <a href="#" id="yasr-multi-set-doc-link"><?php _e("What is a Multi Set?", "yasr") ?></a>
202
 
203
- </p>
204
 
 
205
  <div id="yasr-multi-set-doc-box" style="display:none">
206
  <?php _e("Multi Set allows you to insert a rate for each aspect about the product / local business / whetever you're reviewing, example in the image below.", "yasr");
207
 
@@ -229,7 +227,6 @@ $n_multi_set = NULL;
229
 
230
  </div> <!--yasr-new-multi-set-->
231
 
232
-
233
  </div> <!--End yasr-multi-set-left-->
234
 
235
  <div class="yasr-multi-set-right">
24
  wp_die( __( 'You do not have sufficient permissions to access this page.', 'yasr' ));
25
  }
26
 
27
+ $n_multi_set = NULL; //Evoid undefined variable when printed outside multiset tab
28
 
29
  ?>
30
 
172
  <div class="yasr-space-settings-div">
173
  </div>
174
 
175
+ <?php
176
  } //$gd_star_rating_found && $gd_star_imported==1$gd_star_rating_found = yasr_search_gd_star_rating();
177
 
178
  } //End if tab 'general_settings'
179
 
180
  ?>
181
 
182
+ <?php
183
 
184
+ if ($active_tab == 'manage_multi') {
 
 
185
 
186
+ $multi_set=yasr_get_multi_set();
187
 
188
+ global $wpdb;
189
 
190
+ $n_multi_set = $wpdb->num_rows; //wpdb->num_rows always store the last of the last query
 
 
191
 
192
+ ?>
 
 
193
 
194
+ <div class="yasr-settingsdiv">
195
+
196
+ <h3> <?php _e("Manage Multi Set", "yasr"); ?></h3>
197
 
198
+ <p>
199
 
200
+ <a href="#" id="yasr-multi-set-doc-link"><?php _e("What is a Multi Set?", "yasr") ?></a>
201
 
202
+ </p>
203
  <div id="yasr-multi-set-doc-box" style="display:none">
204
  <?php _e("Multi Set allows you to insert a rate for each aspect about the product / local business / whetever you're reviewing, example in the image below.", "yasr");
205
 
227
 
228
  </div> <!--yasr-new-multi-set-->
229
 
 
230
  </div> <!--End yasr-multi-set-left-->
231
 
232
  <div class="yasr-multi-set-right">
yet-another-stars-rating.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Yet Another Stars Rating
4
  * Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
5
  * Description: Rating system with rich snippets
6
- * Version: 0.6.3
7
  * Author: Dario Curvino
8
  * Author URI: http://yetanotherstarsrating.com/
9
  * License: GPL2
@@ -28,7 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
28
  */
29
 
30
 
31
- define('YASR_VERSION_NUM', '0.6.3');
32
 
33
  //Plugin absolute path
34
  define( "YASR_ABSOLUTE_PATH", dirname(__FILE__) );
@@ -115,6 +115,51 @@ if ($version_installed && $version_installed < '0.5.9') {
115
 
116
  }
117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
 
120
  if ($version_installed != YASR_VERSION_NUM) {
@@ -168,9 +213,11 @@ if ( YASR_TEXT_BEFORE_STARS == 1 ) {
168
 
169
  }
170
 
171
- define ("YASR_SNIPPET", $stored_options['snippet']);
172
- define ("YASR_ALLOWED_USER", $stored_options['allowed_user']);
173
  define ("YASR_SCHEME_COLOR", $stored_options['scheme_color']);
 
 
 
174
 
175
  //Get stored style options
176
  $custom_style = get_option ('yasr_style_options');
@@ -187,7 +234,4 @@ else {
187
 
188
  }
189
 
190
- define ("YASR_METABOX_OVERALL_RATING", $stored_options['metabox_overall_rating']);
191
-
192
-
193
  ?>
3
  * Plugin Name: Yet Another Stars Rating
4
  * Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
5
  * Description: Rating system with rich snippets
6
+ * Version: 0.6.5
7
  * Author: Dario Curvino
8
  * Author URI: http://yetanotherstarsrating.com/
9
  * License: GPL2
28
  */
29
 
30
 
31
+ define('YASR_VERSION_NUM', '0.6.5');
32
 
33
  //Plugin absolute path
34
  define( "YASR_ABSOLUTE_PATH", dirname(__FILE__) );
115
 
116
  }
117
 
118
+ //REmove in Jenuary
119
+ if ($version_installed && $version_installed < '0.6.5') {
120
+
121
+ $stored_options = get_option( 'yasr_general_options' );
122
+
123
+ $stored_options['visitors_stats'] = 'yes';
124
+
125
+ //delete all the 0 vote in yasr log
126
+ $delte_zero_votes_log = $wpdb->delete(
127
+ YASR_LOG_TABLE,
128
+ array ('vote' => '0.0'),
129
+ array ('%s')
130
+ );
131
+
132
+ $gdsr_imported = get_option('yasr-gdstar-imported');
133
+
134
+ $gdsr_logs_imported = get_option('yasr-gdstar-logs-imported');
135
+
136
+ if($gdsr_imported==1 && !$gdsr_logs_imported) {
137
+
138
+ $gdstar_table=$wpdb->prefix . 'gdsr_votes_log';
139
+
140
+ if ($wpdb->get_var("SHOW TABLES LIKE '$gdstar_table'") == $gdstar_table) {
141
+
142
+ //Import logs from GD star
143
+ $logs = yasr_import_gdstar_logs();
144
+
145
+ //Insert logs if exists
146
+ $insert_logs = yasr_insert_gdstar_logs($logs);
147
+
148
+ if ($insert_logs) {
149
+ update_option('yasr-gdstar-logs-imported', '1');
150
+ }
151
+
152
+ }
153
+
154
+ else {
155
+ $stored_options['visitors_stats'] = 'disabled';
156
+ }
157
+ }
158
+
159
+
160
+ update_option("yasr_general_options", $stored_options);
161
+
162
+ }
163
 
164
 
165
  if ($version_installed != YASR_VERSION_NUM) {
213
 
214
  }
215
 
216
+ define ("YASR_VISITORS_STATS", $stored_options['visitors_stats']);
 
217
  define ("YASR_SCHEME_COLOR", $stored_options['scheme_color']);
218
+ define ("YASR_ALLOWED_USER", $stored_options['allowed_user']);
219
+ define ("YASR_SNIPPET", $stored_options['snippet']);
220
+ define ("YASR_METABOX_OVERALL_RATING", $stored_options['metabox_overall_rating']);
221
 
222
  //Get stored style options
223
  $custom_style = get_option ('yasr_style_options');
234
 
235
  }
236
 
 
 
 
237
  ?>