Yasr – Yet Another Stars Rating - Version 0.8.4

Version Description

Download this release

Release Info

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

Code changes from version 0.8.3 to 0.8.4

css/yasr-admin.css CHANGED
@@ -278,7 +278,8 @@ div.bigstars .rateit-selected
278
  margin: 10px;
279
  }
280
 
281
- #yasr-snippet-explained {
 
282
  border: 2px dashed #CCC;
283
  padding: 15px;
284
  margin: 10px;
278
  margin: 10px;
279
  }
280
 
281
+ .yasr-help-box-settings {
282
+ display: none;
283
  border: 2px dashed #CCC;
284
  padding: 15px;
285
  margin: 10px;
js/jquery-cookie.min.js DELETED
@@ -1 +0,0 @@
1
- (function(e){if(typeof define==="function"&&define.amd){define(["jquery"],e)}else if(typeof exports==="object"){e(require("jquery"))}else{e(jQuery)}})(function(e){function n(e){return u.raw?e:encodeURIComponent(e)}function r(e){return u.raw?e:decodeURIComponent(e)}function i(e){return n(u.json?JSON.stringify(e):String(e))}function s(e){if(e.indexOf('"')===0){e=e.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\")}try{e=decodeURIComponent(e.replace(t," "));return u.json?JSON.parse(e):e}catch(n){}}function o(t,n){var r=u.raw?t:s(t);return e.isFunction(n)?n(r):r}var t=/\+/g;var u=e.cookie=function(t,s,a){if(s!==undefined&&!e.isFunction(s)){a=e.extend({},u.defaults,a);if(typeof a.expires==="number"){var f=a.expires,l=a.expires=new Date;l.setTime(+l+f*864e5)}return document.cookie=[n(t),"=",i(s),a.expires?"; expires="+a.expires.toUTCString():"",a.path?"; path="+a.path:"",a.domain?"; domain="+a.domain:"",a.secure?"; secure":""].join("")}var c=t?undefined:{};var h=document.cookie?document.cookie.split("; "):[];for(var p=0,d=h.length;p<d;p++){var v=h[p].split("=");var m=r(v.shift());var g=v.join("=");if(t&&t===m){c=o(g,s);break}if(!t&&(g=o(g))!==undefined){c[m]=g}}return c};u.defaults={};e.removeCookie=function(t,n){if(e.cookie(t)===undefined){return false}e.cookie(t,"",e.extend({},n,{expires:-1}));return!e.cookie(t)}})
 
js/yasr-admin.js CHANGED
@@ -326,6 +326,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
326
  jQuery('.yasr-general-options-text-before').prop('disabled', false);
327
  jQuery('#yasr-general-options-custom-text-before-overall').val('Our Score');
328
  jQuery('#yasr-general-options-custom-text-before-visitor').val('Our Reader Score');
 
329
  jQuery('#yasr-general-options-custom-text-already-rated').val('You have already voted this article with');
330
 
331
  });
@@ -334,6 +335,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
334
  jQuery('.yasr-general-options-text-before').prop('disabled', true);
335
  });
336
 
 
 
 
 
 
337
  jQuery('#yasr-snippet-explained-link').on('click', function () {
338
  jQuery('#yasr-snippet-explained').toggle('slow');
339
  return false; // prevent default click action from happening!
326
  jQuery('.yasr-general-options-text-before').prop('disabled', false);
327
  jQuery('#yasr-general-options-custom-text-before-overall').val('Our Score');
328
  jQuery('#yasr-general-options-custom-text-before-visitor').val('Our Reader Score');
329
+ jQuery('#yasr-general-options-custom-text-after-visitor').val('[Total: %total_count% Average: %average%]');
330
  jQuery('#yasr-general-options-custom-text-already-rated').val('You have already voted this article with');
331
 
332
  });
335
  jQuery('.yasr-general-options-text-before').prop('disabled', true);
336
  });
337
 
338
+ jQuery('#yasr-doc-custom-text-link').on('click', function() {
339
+ jQuery('#yasr-doc-custom-text-div').toggle('slow');
340
+ return false;
341
+ });
342
+
343
  jQuery('#yasr-snippet-explained-link').on('click', function () {
344
  jQuery('#yasr-snippet-explained').toggle('slow');
345
  return false; // prevent default click action from happening!
js/yasr-front.js CHANGED
@@ -4,111 +4,41 @@
4
 
5
  jQuery('#yasr_rateit_visitor_votes_' + postid).bind('over', function (event, value) { jQuery(this).attr('title', tooltipValues[value-1]); });
6
 
7
- var cookiename = "yasr_visitor_vote_" + postid;
8
-
9
  //Should be useless from version 0.7.9, just to be safe
10
  if (voteIfUserAlredyRated == "0" ) {
11
  voteIfUserAlredyRated = false;
12
  }
13
 
14
- //If user is not logged in
15
- if (! loggedUser) {
16
-
17
- //Check if has cookie and if so print readonly visitor shortcode
18
- if (jQuery.cookie(cookiename)) {
19
-
20
- var cookievote=jQuery.cookie(cookiename);
21
-
22
- var data = {
23
- action: 'yasr_readonly_visitor_shortcode',
24
- size: size,
25
- rating: cookievote,
26
- post_id: postid
27
- }
28
-
29
- jQuery.post(ajaxurl, data, function(response) {
30
- jQuery('#yasr_visitor_votes_' + postid).html(response);
31
- jQuery('.rateit').rateit();
32
- });
33
-
34
- } //End if jquery cookie
35
-
36
- //If not logged and not cookie allowed to voted
37
- else {
38
- yasrDefaultRatingShortcode (postid);
39
- }
40
-
41
- } //End if (!loggeduser)
42
-
43
- //else, if is a logged in user
44
- else {
45
-
46
- //Do this code only if he has rated yet
47
- //Check only for value in db, not cookie, see here https://wordpress.org/support/topic/vote-updates-and-different-users-votes-problem
48
- if (voteIfUserAlredyRated) {
49
-
50
- jQuery('#yasr_rateit_visitor_votes_' + postid).on('rated', function() {
51
-
52
- var el = jQuery(this);
53
- var value = el.rateit('value');
54
- var value = value.toFixed(1); //
55
-
56
- if (value < 1) {
57
- jQuery('#yasr_visitor_votes_' + postid).html('You can\'t vote 0');
58
- }
59
-
60
- else {
61
-
62
- jQuery('#yasr_visitor_votes_' + postid).html(loaderHtml);
63
-
64
- var data = {
65
- action: 'yasr_update_visitor_rating',
66
- rating: value,
67
- post_id: postid,
68
- size: size,
69
- nonce_visitor: nonceVisitor
70
- };
71
 
72
- //Send value to the Server
73
- jQuery.post(ajaxurl, data, function(response) {
74
- //response
75
- jQuery('#yasr_visitor_votes_' + postid).html(response);
76
- jQuery('.rateit').rateit();
77
- //Create a cookie to disable double vote
78
- jQuery.cookie(cookiename, value, { expires : 360 });
79
- }) ;
80
-
81
- }
82
-
83
- });//End function update vote
84
 
85
- } //End if jvoteIfUserAlredyRated == true
 
 
86
 
87
  else {
88
 
89
- yasrDefaultRatingShortcode (postid);
90
 
91
- }
 
92
 
93
- } //End else logged
94
-
95
- function yasrDefaultRatingShortcode (postid) {
96
-
97
- //On click Insert visitor votes
98
- jQuery('#yasr_rateit_visitor_votes_' + postid).on('rated', function() {
99
-
100
- var el = jQuery(this);
101
- var value = el.rateit('value');
102
- var value = value.toFixed(1); //
103
 
104
- if (value < 1) {
105
- jQuery('#yasr_visitor_votes_' + postid).html('You can\'t vote 0');
106
  }
107
 
 
108
  else {
109
 
110
- jQuery('#yasr_visitor_votes_' + postid).html(loaderHtml);
111
-
112
  var data = {
113
  action: 'yasr_send_visitor_rating',
114
  rating: value,
@@ -117,20 +47,19 @@
117
  nonce_visitor: nonceVisitor
118
  };
119
 
120
- //Send value to the Server
121
- jQuery.post(ajaxurl, data, function(response) {
122
- //response
123
- jQuery('#yasr_visitor_votes_' + postid).html(response);
124
- jQuery('.rateit').rateit();
125
- //Create a cookie to disable double vote
126
- jQuery.cookie(cookiename, value, { expires : 360 });
127
- }) ;
128
 
129
- }
 
 
 
 
130
 
131
- });
 
 
132
 
133
- } //End function default_rating_shortcode
134
 
135
  } //End function yasr visitor votes
136
 
4
 
5
  jQuery('#yasr_rateit_visitor_votes_' + postid).bind('over', function (event, value) { jQuery(this).attr('title', tooltipValues[value-1]); });
6
 
 
 
7
  //Should be useless from version 0.7.9, just to be safe
8
  if (voteIfUserAlredyRated == "0" ) {
9
  voteIfUserAlredyRated = false;
10
  }
11
 
12
+ jQuery('#yasr_rateit_visitor_votes_' + postid).on('rated', function() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
+ var el = jQuery(this);
15
+ var value = el.rateit('value');
16
+ var value = value.toFixed(1); //
 
 
 
 
 
 
 
 
 
17
 
18
+ if (value < 1) {
19
+ jQuery('#yasr_visitor_votes_' + postid).html('You can\'t vote 0');
20
+ }
21
 
22
  else {
23
 
24
+ jQuery('#yasr_visitor_votes_' + postid).html(loaderHtml);
25
 
26
+ //If loggedin user and has already rated for a post/page update the vote
27
+ if (loggedUser && voteIfUserAlredyRated) {
28
 
29
+ var data = {
30
+ action: 'yasr_update_visitor_rating',
31
+ rating: value,
32
+ post_id: postid,
33
+ size: size,
34
+ nonce_visitor: nonceVisitor
35
+ };
 
 
 
36
 
 
 
37
  }
38
 
39
+ //else is a new vote
40
  else {
41
 
 
 
42
  var data = {
43
  action: 'yasr_send_visitor_rating',
44
  rating: value,
47
  nonce_visitor: nonceVisitor
48
  };
49
 
50
+ }
 
 
 
 
 
 
 
51
 
52
+ //Send value to the Server
53
+ jQuery.post(ajaxurl, data, function(response) {
54
+ //response
55
+ jQuery('#yasr_visitor_votes_' + postid).html(response);
56
+ jQuery('.rateit').rateit();
57
 
58
+ }) ;
59
+
60
+ } //End else value <1
61
 
62
+ });//End function insert/update vote
63
 
64
  } //End function yasr visitor votes
65
 
languages/yasr-de_DE.mo CHANGED
Binary file
languages/yasr-de_DE.po CHANGED
@@ -2,16 +2,16 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Yet Another Stars Rating v0.6.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-03-03 12:36+0100\n"
6
- "PO-Revision-Date: 2015-03-03 12:36+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"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Generator: Poedit 1.5.4\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
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"
@@ -26,6 +26,10 @@ msgstr "Gib eine Bewertung ab"
26
 
27
  # @ yasr
28
  #: ../yasr-metabox-top-right.php:71 ../lib/yasr-shortcode-functions.php:136
 
 
 
 
29
  msgid "Loading, please wait"
30
  msgstr "Wird geladen, bitte warten"
31
 
@@ -42,7 +46,7 @@ msgstr ""
42
  # @ default
43
  # @ yasr
44
  #: ../yasr-metabox-top-right.php:193 ../yasr-metabox-multiple-rating.php:46
45
- #: ../lib/yasr-settings-functions.php:505
46
  msgid "Select"
47
  msgstr "Auswählen"
48
 
@@ -56,102 +60,113 @@ msgstr ""
56
  "ein, wo die Bewertung angezeigt werden soll."
57
 
58
  # @ yasr
59
- #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:111
60
  #: ../lib/yasr-ajax-functions.php:44 ../lib/yasr-ajax-functions.php:187
61
- #: ../lib/yasr-ajax-functions.php:332 ../lib/yasr-ajax-functions.php:736
62
  msgid "You do not have sufficient permissions to access this page."
63
  msgstr ""
64
  "Du verfügst nicht über ausreichende Berechtigungen um auf diese Seite "
65
  "zuzugreifen."
66
 
67
  # @ yasr
68
- #: ../yasr-settings-page.php:33
69
  #, fuzzy
70
  msgid "Settings"
71
  msgstr "Einstellungen gespeichert"
72
 
73
  # @ yasr
74
- #: ../yasr-settings-page.php:76
75
  msgid "General Settings"
76
  msgstr "Allgemeine Einstellungen"
77
 
78
  # @ yasr
79
- #: ../yasr-settings-page.php:77
80
  msgid "Multi Sets"
81
  msgstr "Multi-Sets"
82
 
83
  # @ yasr
84
- #: ../yasr-settings-page.php:78
85
  msgid "Styles"
86
  msgstr "Styles"
87
 
88
  # @ yasr
89
- #: ../yasr-settings-page.php:79
90
- msgid "Pro Features!"
91
- msgstr "Pro Funktionen!"
 
 
 
 
 
 
 
 
 
 
92
 
93
  # @ default
94
- #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:276
 
95
  msgid "Save"
96
  msgstr "Speichern"
97
 
98
  # @ yasr
99
- #: ../yasr-settings-page.php:116
100
  msgid "Import Gd Star Rating"
101
  msgstr "Importiere Gd Star Rating Daten"
102
 
103
  # @ yasr
104
- #: ../yasr-settings-page.php:117
105
  msgid "I've found a previous installation of Gd Star Rating."
106
  msgstr "Es wurde eine Installation von Gd Star Rating gefunden."
107
 
108
  # @ yasr
109
- #: ../yasr-settings-page.php:117
110
  msgid "Do you want proceed to import data?"
111
  msgstr "Willst du mit dem Import der Daten fortfahren?"
112
 
113
  # @ yasr
114
- #: ../yasr-settings-page.php:119
115
  msgid "Yes, Begin Import"
116
  msgstr "Ja, Import starten"
117
 
118
  # @ default
119
- #: ../yasr-settings-page.php:123
120
  msgid "Click on Proceed to import Gd Star Rating data."
121
  msgstr "Klicke auf Fortfahren um die Gd Star Rating Daten zu importieren."
122
 
123
  # @ yasr
124
- #: ../yasr-settings-page.php:126 ../yasr-settings-page.php:159
125
  msgid "Proceed"
126
  msgstr "Fortfahren"
127
 
128
  # @ yasr
129
- #: ../yasr-settings-page.php:148
130
  msgid "Manage GD Star Data"
131
  msgstr "Verwalte GD Star Rating Daten"
132
 
133
  # @ default
134
- #: ../yasr-settings-page.php:149
135
  msgid "Gd Star Rating has been already imported."
136
  msgstr "Gd Star Rating Daten wurden bereits importiert."
137
 
138
  # @ yasr
139
- #: ../yasr-settings-page.php:150
140
  msgid "If you wish you can import it again, but"
141
  msgstr "Du kannst die Daten erneut importieren, aber"
142
 
143
  # @ yasr
144
- #: ../yasr-settings-page.php:150
145
  msgid "you will lose all data you've collect since the import!"
146
  msgstr "dann gehen alle gesammelten Daten seit dem letzten Import verloren!"
147
 
148
  # @ default
149
- #: ../yasr-settings-page.php:152
150
  msgid "Ok, Import Again"
151
  msgstr "Ok, erneut importieren"
152
 
153
  # @ default
154
- #: ../yasr-settings-page.php:156
155
  msgid ""
156
  "Click on Proceed to import again Gd Star Rating data. This may take a while!"
157
  msgstr ""
@@ -159,17 +174,17 @@ msgstr ""
159
  "kann eine Weile dauern!"
160
 
161
  # @ yasr
162
- #: ../yasr-settings-page.php:196
163
  msgid "Manage Multi Set"
164
  msgstr "Multi-Sets verwalten"
165
 
166
  # @ yasr
167
- #: ../yasr-settings-page.php:200
168
  msgid "What is a Multi Set?"
169
  msgstr "Was ist ein Multi-Set?"
170
 
171
  # @ yasr
172
- #: ../yasr-settings-page.php:204
173
  msgid ""
174
  "Multi Set allows you to insert a rate for each aspect about the product / "
175
  "local business / whetever you're reviewing, example in the image below."
@@ -179,7 +194,7 @@ msgstr ""
179
  "zeigt ein Beispiel."
180
 
181
  # @ yasr
182
- #: ../yasr-settings-page.php:208
183
  msgid ""
184
  "You can create up to 99 different Multi Set and each one can contain up to 9 "
185
  "different fields. Once you've saved it, you can insert the rates while "
@@ -192,7 +207,7 @@ msgstr ""
192
  "(klicken zum Vergrößern) zu sehen ist."
193
 
194
  # @ yasr
195
- #: ../yasr-settings-page.php:212
196
  msgid ""
197
  "In order to insert your Multi Sets into a post or page, you can either past "
198
  "the short code that will appear at the bottom of the box or just click on "
@@ -203,117 +218,111 @@ msgstr ""
203
  "den Stern im Editor klicken und \"Insert Multi-Set\" wählen."
204
 
205
  # @ yasr
206
- #: ../yasr-settings-page.php:218
207
  msgid "Close this message"
208
  msgstr "Nachricht schließen"
209
 
210
- # @ yasr
211
- #: ../yasr-settings-page.php:246 ../lib/yasr-settings-functions.php:1294
212
- #: ../lib/yasr-settings-functions.php:1320
213
- msgid "Donations"
214
- msgstr "Spenden"
215
-
216
- # @ yasr
217
- #: ../yasr-settings-page.php:248 ../lib/yasr-settings-functions.php:1296
218
- #: ../lib/yasr-settings-functions.php:1322
219
- msgid ""
220
- "If you have found this plugin useful, please consider making a donation to "
221
- "help support future development. Your support will be much appreciated. "
222
- msgstr ""
223
- "Wenn du das Plugin nützlich gefunden hast, dann unterstütze doch die "
224
- "Weiterentwicklung mit einer kleinen Spende. Deine Unterstützung ist uns viel "
225
- "Wert."
226
-
227
- # @ yasr
228
- #: ../yasr-settings-page.php:250 ../lib/yasr-settings-functions.php:1298
229
- #: ../lib/yasr-settings-functions.php:1324
230
- msgid "Thank you!"
231
- msgstr "Herzlichen Dank!"
232
-
233
  # @ default
234
  #: ../yasr-metabox-multiple-rating.php:35
235
  msgid "Choose wich set you want to use"
236
  msgstr "Wähle ein Multi-Set aus"
237
 
238
  # @ yasr
239
- #: ../lib/yasr-shortcode-functions.php:185
240
- #: ../lib/yasr-shortcode-functions.php:207
241
  msgid "You've already voted this article with"
242
  msgstr "Du hast hier bewertet mit "
243
 
244
  # @ yasr
245
- #: ../lib/yasr-shortcode-functions.php:218
246
  msgid "You must sign to vote"
247
  msgstr "Um eine Bewertung abzugeben musst du angemeldet sein"
248
 
249
  # @ yasr
250
- #: ../lib/yasr-shortcode-functions.php:227 ../lib/yasr-ajax-functions.php:1011
251
- #: ../lib/yasr-ajax-functions.php:1019 ../lib/yasr-ajax-functions.php:1148
252
- #: ../lib/yasr-ajax-functions.php:1220
253
  msgid "Total: "
254
  msgstr "Gesamt:"
255
 
256
  # @ yasr
257
- #: ../lib/yasr-shortcode-functions.php:227
258
  msgid "Average: "
259
  msgstr "Durchschnitt: "
260
 
 
 
 
 
261
  # @ yasr
262
- #: ../lib/yasr-shortcode-functions.php:392
 
263
  msgid "Rating"
264
  msgstr "Bewertung"
265
 
266
  # @ yasr
267
- #: ../lib/yasr-shortcode-functions.php:406
268
  msgid "You don't have any votes stored"
269
  msgstr "Es sind keine Autoren-Bewertungen gespeichert"
270
 
271
- #: ../lib/yasr-shortcode-functions.php:442
272
- #: ../lib/yasr-shortcode-functions.php:480
273
  msgid "Post / Page"
274
  msgstr "Beitrag / Seite"
275
 
276
- #: ../lib/yasr-shortcode-functions.php:443
277
- #: ../lib/yasr-shortcode-functions.php:481
 
 
278
  msgid "Order By"
279
  msgstr "sortieren nach"
280
 
281
  # @ yasr
282
- #: ../lib/yasr-shortcode-functions.php:443
283
- #: ../lib/yasr-shortcode-functions.php:481
 
 
 
284
  msgid "Most Rated"
285
  msgstr "meist bewertet"
286
 
287
  # @ yasr
288
- #: ../lib/yasr-shortcode-functions.php:443
289
- #: ../lib/yasr-shortcode-functions.php:481
 
 
 
290
  msgid "Highest Rated"
291
  msgstr "höchste Bewertung"
292
 
293
  # @ yasr
294
- #: ../lib/yasr-shortcode-functions.php:460
295
- #: ../lib/yasr-shortcode-functions.php:495
 
 
296
  msgid "Total:"
297
  msgstr "Gesamt:"
298
 
299
  # @ yasr
300
- #: ../lib/yasr-shortcode-functions.php:460
301
- #: ../lib/yasr-shortcode-functions.php:495
 
 
302
  msgid "Average"
303
  msgstr "Durchschnitt: "
304
 
305
  # @ yasr
306
- #: ../lib/yasr-shortcode-functions.php:472
307
  msgid "You've not enough data"
308
  msgstr "Sie haben nicht genügend Daten"
309
 
310
  # @ yasr
311
- #: ../lib/yasr-shortcode-functions.php:507
312
  msgid "You've not enought data"
313
  msgstr "Sie haben nicht genug Daten"
314
 
315
  # @ default
316
- #: ../lib/yasr-shortcode-functions.php:592
317
  msgid ""
318
  "Problem while retrieving the top 5 most active reviewers. Did you publish "
319
  "any review?"
@@ -322,7 +331,7 @@ msgstr ""
322
  "Bewertung veröffentlicht"
323
 
324
  # @ default
325
- #: ../lib/yasr-shortcode-functions.php:660
326
  msgid ""
327
  "Problem while retrieving the top 10 active users chart. Are you sure you "
328
  "have votes to show?"
@@ -363,13 +372,13 @@ msgstr "Wollen Sie Statistiken für Besucher-Stimmen zeigen?"
363
 
364
  # @ yasr
365
  #: ../lib/yasr-settings-functions.php:55
366
- msgid "Which color scheme do you want to use?"
367
- msgstr "Welches Farbschema willst du nutzen?"
368
 
369
  # @ yasr
370
  #: ../lib/yasr-settings-functions.php:56
371
- msgid "Allow only logged in user to vote?"
372
- msgstr "Nur angemeldete Besucher dürfen abstimmen?"
373
 
374
  # @ yasr
375
  #: ../lib/yasr-settings-functions.php:57
@@ -393,7 +402,12 @@ msgstr "Bewertung automatisch einfügen?"
393
  #: ../lib/yasr-settings-functions.php:204
394
  #: ../lib/yasr-settings-functions.php:230
395
  #: ../lib/yasr-settings-functions.php:262
396
- #: ../lib/yasr-settings-functions.php:313
 
 
 
 
 
397
  msgid "Yes"
398
  msgstr "Ja"
399
 
@@ -404,7 +418,13 @@ msgstr "Ja"
404
  #: ../lib/yasr-settings-functions.php:209
405
  #: ../lib/yasr-settings-functions.php:235
406
  #: ../lib/yasr-settings-functions.php:267
407
- #: ../lib/yasr-settings-functions.php:318
 
 
 
 
 
 
408
  msgid "No"
409
  msgstr "Nein"
410
 
@@ -419,7 +439,7 @@ msgid "Overall Rating / Author Rating"
419
  msgstr "Gesamtbewertung (Autorenbewertung)"
420
 
421
  # @ yasr
422
- #: ../lib/yasr-settings-functions.php:102 ../lib/yasr-ajax-functions.php:462
423
  msgid "Visitor Votes"
424
  msgstr "Besucherbewertung"
425
 
@@ -445,23 +465,34 @@ msgstr "Nach dem Artikel"
445
 
446
  # @ yasr
447
  #: ../lib/yasr-settings-functions.php:122
 
 
448
  msgid "Size"
449
  msgstr "Größe"
450
 
451
  # @ yasr
452
- #: ../lib/yasr-settings-functions.php:126 ../lib/yasr-ajax-functions.php:452
453
- #: ../lib/yasr-ajax-functions.php:470
 
 
 
454
  msgid "Small"
455
  msgstr "Klein"
456
 
457
  # @ yasr
458
- #: ../lib/yasr-settings-functions.php:131 ../lib/yasr-ajax-functions.php:453
459
- #: ../lib/yasr-ajax-functions.php:471
 
 
 
460
  msgid "Medium"
461
  msgstr "Mittel"
462
 
463
- #: ../lib/yasr-settings-functions.php:136 ../lib/yasr-ajax-functions.php:454
464
- #: ../lib/yasr-ajax-functions.php:472
 
 
 
465
  msgid "Large"
466
  msgstr "Groß"
467
 
@@ -528,67 +559,57 @@ msgstr ""
528
  "Besucher bereits eine Bewertung abgegeben hat"
529
 
530
  # @ yasr
531
- #: ../lib/yasr-settings-functions.php:296
532
- msgid ""
533
- "Seems like you've imported gd star rating in the past, but then deleted the "
534
- "logs table. For now, you can't enable statistics"
535
- msgstr ""
536
- "Es scheint, dass Sie GD Sterne in der Vergangenheit importiert haben, aber "
537
- "dann die Protokoll Tabelle gelöscht wurde. Jetzt können Sie keine "
538
- "Statistiken ermöglichen"
539
 
540
  # @ yasr
541
- #: ../lib/yasr-settings-functions.php:338
 
 
 
 
 
542
  msgid "Light"
543
  msgstr "Hell"
544
 
545
  # @ yasr
546
- #: ../lib/yasr-settings-functions.php:343
547
  msgid "Dark"
548
  msgstr "Dunkel"
549
 
550
  # @ yasr
551
- #: ../lib/yasr-settings-functions.php:348
552
  msgid "Preview"
553
  msgstr "Vorschau"
554
 
555
  # @ yasr
556
- #: ../lib/yasr-settings-functions.php:353
557
  msgid "Light theme"
558
  msgstr "Helles Theme"
559
 
560
  # @ yasr
561
- #: ../lib/yasr-settings-functions.php:358
562
  msgid "Dark Theme"
563
  msgstr "Dunkles Theme"
564
 
565
  # @ yasr
566
- #: ../lib/yasr-settings-functions.php:376
567
- msgid "Allow only logged-in users"
568
- msgstr "Nur angemeldete Besucher erlauben"
569
-
570
- # @ yasr
571
- #: ../lib/yasr-settings-functions.php:380
572
- msgid "Allow everybody (logged in and anonymous)"
573
- msgstr "Jedem erlauben (angemeldete und anonyme Besucher)"
574
-
575
- # @ yasr
576
- #: ../lib/yasr-settings-functions.php:397
577
  msgid "Review Rating"
578
  msgstr "Review Rating (Autorenbewertung)"
579
 
580
  # @ yasr
581
- #: ../lib/yasr-settings-functions.php:401
582
  msgid "Aggregate Rating"
583
  msgstr "Aggregate Rating (Besucherbewertung)"
584
 
585
  # @ yasr
586
- #: ../lib/yasr-settings-functions.php:406
587
  msgid "What is this?"
588
  msgstr "Was ist das?"
589
 
590
  # @ yasr
591
- #: ../lib/yasr-settings-functions.php:411
592
  msgid ""
593
  "If you select \"Review Rating\", your site will be indexed from search "
594
  "engines like this: "
@@ -597,7 +618,7 @@ msgstr ""
597
  "aussehen:"
598
 
599
  # @ yasr
600
- #: ../lib/yasr-settings-functions.php:416
601
  msgid ""
602
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
603
  "this"
@@ -606,22 +627,22 @@ msgstr ""
606
  "wie folgt aus:"
607
 
608
  # @ yasr
609
- #: ../lib/yasr-settings-functions.php:434
610
  msgid "Stars"
611
  msgstr "Sterne"
612
 
613
  # @ yasr
614
- #: ../lib/yasr-settings-functions.php:438
615
  msgid "Numbers"
616
  msgstr "Zahlen"
617
 
618
  # @ yasr
619
- #: ../lib/yasr-settings-functions.php:450
620
  msgid "Add New Multiple Set"
621
  msgstr "Neues Multi-Set hinzufügen"
622
 
623
  # @ yasr
624
- #: ../lib/yasr-settings-functions.php:451
625
  msgid ""
626
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
627
  "characters"
@@ -630,57 +651,57 @@ msgstr ""
630
  "Zeichen lang sein"
631
 
632
  # @ yasr
633
- #: ../lib/yasr-settings-functions.php:454
634
  msgid "Name"
635
  msgstr "Name"
636
 
637
  # @ yasr
638
- #: ../lib/yasr-settings-functions.php:459
639
  msgid "You can insert up to nine elements"
640
  msgstr "Sie können bis zu neun Elemente einfügen"
641
 
642
  # @ yasr
643
- #: ../lib/yasr-settings-functions.php:464
644
  msgid "Element "
645
  msgstr "Element"
646
 
647
  # @ yasr
648
- #: ../lib/yasr-settings-functions.php:474
649
  msgid "Create New Set"
650
  msgstr "Neues Multi-Set anlegen"
651
 
652
  # @ yasr
653
- #: ../lib/yasr-settings-functions.php:495
654
- #: ../lib/yasr-settings-functions.php:527
655
  msgid "Manage Multiple Set"
656
  msgstr "Verschiedene Multi-Sets verwalten"
657
 
658
  # @ yasr
659
- #: ../lib/yasr-settings-functions.php:497
660
  msgid "Wich set do you want to edit or remove?"
661
  msgstr "Welches Multi-Set möchtest du bearbeiten oder löschen?"
662
 
663
  # @ yasr
664
- #: ../lib/yasr-settings-functions.php:537
665
- #: ../lib/yasr-settings-functions.php:655
666
  msgid "Field name"
667
  msgstr "Feldname"
668
 
669
  # @ yasr
670
- #: ../lib/yasr-settings-functions.php:541
671
- #: ../lib/yasr-settings-functions.php:659
672
  msgid "Remove"
673
  msgstr "Entfernen"
674
 
675
  # @ yasr
676
- #: ../lib/yasr-settings-functions.php:583
677
- #: ../lib/yasr-settings-functions.php:701
678
  msgid "Remove whole set?"
679
  msgstr "Komplettes Multi-Set entfernen?"
680
 
681
  # @ yasr
682
- #: ../lib/yasr-settings-functions.php:596
683
- #: ../lib/yasr-settings-functions.php:714
684
  msgid ""
685
  "If you remove something you will remove all the votes for that set or field. "
686
  "This operation CAN'T BE undone."
@@ -689,57 +710,57 @@ msgstr ""
689
  "Element gelöscht. Dies kann nicht rückgängig gemacht werden."
690
 
691
  # @ yasr
692
- #: ../lib/yasr-settings-functions.php:603
693
- #: ../lib/yasr-settings-functions.php:721
694
  msgid "You can use up to 9 elements"
695
  msgstr "Du kannst bist zu 9 Elementen nutzen"
696
 
697
  # @ yasr
698
- #: ../lib/yasr-settings-functions.php:605
699
- #: ../lib/yasr-settings-functions.php:723
700
  msgid "Add element"
701
  msgstr "Element hinzufügen"
702
 
703
  # @ yasr
704
- #: ../lib/yasr-settings-functions.php:607
705
- #: ../lib/yasr-settings-functions.php:725
706
  msgid "Save changes"
707
  msgstr "Änderungen speichern"
708
 
709
  # @ yasr
710
- #: ../lib/yasr-settings-functions.php:617
711
  msgid "No Multiple Set were found"
712
  msgstr "Keine Multi-Sets gefunden"
713
 
714
  # @ yasr
715
- #: ../lib/yasr-settings-functions.php:867
716
- #: ../lib/yasr-settings-functions.php:1135
717
  msgid "Settings Saved"
718
  msgstr "Einstellungen gespeichert"
719
 
720
  # @ yasr
721
- #: ../lib/yasr-settings-functions.php:872
722
  msgid "Something goes wrong trying insert set field name. Please report it"
723
  msgstr ""
724
  "Beim einfügen des Multi-Set Feldnamens ist etwas schief gelaufen. Bitte "
725
  "melde das Problem"
726
 
727
  # @ yasr
728
- #: ../lib/yasr-settings-functions.php:878
729
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
730
  msgstr ""
731
  "Beim Einfügen des Multi-Sets ist etwas schief gelaufen. Bitte melde das "
732
  "Problem"
733
 
734
  # @ yasr
735
- #: ../lib/yasr-settings-functions.php:953
736
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
737
  msgstr ""
738
  "Beim Löschen des Multi-Sets ist etwas schief gelaufen. Bitte melde das "
739
  "Problem"
740
 
741
  # @ yasr
742
- #: ../lib/yasr-settings-functions.php:999
743
  msgid ""
744
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
745
  msgstr ""
@@ -747,7 +768,7 @@ msgstr ""
747
  "das Problem"
748
 
749
  # @ yasr
750
- #: ../lib/yasr-settings-functions.php:1063
751
  msgid ""
752
  "Something goes wrong trying to update a Multi Set's element. Please report it"
753
  msgstr ""
@@ -755,7 +776,7 @@ msgstr ""
755
  "Bitte melde das Problem"
756
 
757
  # @ yasr
758
- #: ../lib/yasr-settings-functions.php:1120
759
  msgid ""
760
  "Something goes wrong trying to insert set field name in edit form. Please "
761
  "report it"
@@ -764,17 +785,17 @@ msgstr ""
764
  "melde das Problem"
765
 
766
  # @ yasr
767
- #: ../lib/yasr-settings-functions.php:1163
768
  msgid "Style Options"
769
  msgstr "Style Optionen"
770
 
771
  # @ yasr
772
- #: ../lib/yasr-settings-functions.php:1164
773
  msgid "Custom CSS Styles"
774
  msgstr "Benutzerdefiniertes CSS"
775
 
776
  # @ yasr
777
- #: ../lib/yasr-settings-functions.php:1169
778
  msgid ""
779
  "Please use text area below to write your own CSS styles to override the "
780
  "default ones."
@@ -783,179 +804,100 @@ msgstr ""
783
  "CSS-Code zu überschreiben."
784
 
785
  # @ yasr
786
- #: ../lib/yasr-settings-functions.php:1171
787
  msgid "Leave it blank if you don't know what you're doing"
788
  msgstr " Lasse diesen Bereich leer, wenn du nicht weißt was du tust."
789
 
790
  # @ yasr
791
- #: ../lib/yasr-settings-functions.php:1194
792
- msgid "Looking for more features?"
793
- msgstr "Auf der Suche nach mehr Funktionen?"
794
-
795
- #: ../lib/yasr-settings-functions.php:1195
796
- msgid "Upgrade to yasr pro!"
797
- msgstr "Zu Yasr Pro wechseln!"
798
-
799
- #: ../lib/yasr-settings-functions.php:1211
800
- msgid "Unlimited ratings and votes"
801
- msgstr ""
802
-
803
- #: ../lib/yasr-settings-functions.php:1217
804
- msgid "Works with shortcodes"
805
- msgstr ""
806
-
807
- # @ yasr
808
- #: ../lib/yasr-settings-functions.php:1223
809
- #, fuzzy
810
- msgid "Multi Set Support"
811
- msgstr "Multi-Sets"
812
-
813
- # @ yasr
814
- #: ../lib/yasr-settings-functions.php:1228
815
- #, fuzzy
816
- msgid "Logs and stats for visitors votes"
817
- msgstr "Wollen Sie Statistiken für Besucher-Stimmen zeigen?"
818
-
819
- #: ../lib/yasr-settings-functions.php:1233
820
- msgid "Localization (.po and .mo files included)"
821
- msgstr ""
822
-
823
- #: ../lib/yasr-settings-functions.php:1238
824
- msgid "Rich Snippet Support"
825
- msgstr ""
826
-
827
- #: ../lib/yasr-settings-functions.php:1243
828
- msgid "Rankings for reviews, votes and users"
829
- msgstr ""
830
-
831
- #: ../lib/yasr-settings-functions.php:1248
832
- msgid "Rankings Customization"
833
- msgstr ""
834
-
835
- #: ../lib/yasr-settings-functions.php:1253
836
- msgid "Stars Customization"
837
- msgstr ""
838
-
839
- # @ yasr
840
- #: ../lib/yasr-settings-functions.php:1254
841
- #, fuzzy
842
- msgid "Size Only"
843
- msgstr "Größe"
844
-
845
- #: ../lib/yasr-settings-functions.php:1255
846
- msgid ""
847
- "Users can choose different ready to use sets or can upload their own images."
848
- msgstr ""
849
-
850
- #: ../lib/yasr-settings-functions.php:1258
851
- msgid "Visitors can vote on Multi Set"
852
- msgstr ""
853
-
854
- #: ../lib/yasr-settings-functions.php:1263
855
- msgid "Users can review in comments"
856
- msgstr ""
857
-
858
- # @ yasr
859
- #: ../lib/yasr-settings-functions.php:1274
860
- msgid "Not avaible yet"
861
- msgstr "Nicht verfügbar"
862
-
863
- # @ yasr
864
- #: ../lib/yasr-settings-functions.php:1306
865
- #: ../lib/yasr-settings-functions.php:1333
866
- msgid "Follow YASR official site!"
867
- msgstr "Folgen Sie Yasr offiziellen Website!"
868
-
869
- # @ yasr
870
- #: ../lib/yasr-settings-functions.php:1363
871
  msgid "No previous Gd Star Rating installation was found"
872
  msgstr "Es wurde keine Gd Star Ratings Installation gefunden"
873
 
874
  # @ yasr
875
- #: ../lib/yasr-db-functions.php:280
876
  msgid "No recenet votes yet"
877
  msgstr "Keine aktuellen Bewertungen vorhanden"
878
 
879
  # @ default
880
- #: ../lib/yasr-db-functions.php:295 ../lib/yasr-ajax-functions.php:761
881
  msgid "anonymous"
882
  msgstr "Anonym"
883
 
884
  # @ yasr
885
- #: ../lib/yasr-db-functions.php:318 ../lib/yasr-ajax-functions.php:784
886
  msgid "Ip address"
887
  msgstr "IP-Adresse"
888
 
889
  # @ yasr
890
- #: ../lib/yasr-db-functions.php:359 ../lib/yasr-ajax-functions.php:825
891
  msgid "Pages"
892
  msgstr "Seiten"
893
 
894
  # @ yasr
895
- #: ../lib/yasr-functions.php:99 ../lib/yasr-functions.php:100
896
  msgid "Yet Another Stars Rating: Settings"
897
  msgstr "Yet Another Stars Rating"
898
 
899
- #: ../lib/yasr-functions.php:143
900
  msgid "YASR"
901
  msgstr ""
902
 
903
  # @ yasr
904
- #: ../lib/yasr-functions.php:144
905
  msgid "Yet Another Stars Rating: Multiple set"
906
  msgstr "Yet Another Stars Rating: Multi-Sets"
907
 
908
  # @ yasr
909
- #: ../lib/yasr-functions.php:150
910
  msgid "Overall Rating"
911
  msgstr "Gesamtbewertung"
912
 
913
  # @ default
914
- #: ../lib/yasr-functions.php:160
915
  msgid "You don't have enought privileges to insert Overall Rating"
916
  msgstr ""
917
  "Du hast nicht die notwendigen Berechtigungen um eine Gesamtbewertung "
918
  "einzufügen"
919
 
920
  # @ default
921
- #: ../lib/yasr-functions.php:170
922
  msgid "You don't have enought privileges to insert Multi Set"
923
  msgstr ""
924
  "Du hast nicht die notwendigen Berechtigungen um ein Multi-Set einzufügen"
925
 
926
  # @ yasr
927
- #: ../lib/yasr-functions.php:310
928
  msgid " reviewed by "
929
  msgstr " geschrieben von "
930
 
931
  # @ yasr
932
- #: ../lib/yasr-functions.php:311
933
  msgid " on "
934
  msgstr " am"
935
 
936
  # @ yasr
937
- #: ../lib/yasr-functions.php:312
938
  msgid " rated "
939
  msgstr " ist bewertet mit "
940
 
941
  # @ yasr
942
- #: ../lib/yasr-functions.php:312
943
  msgid " of"
944
  msgstr ""
945
 
946
  # @ yasr
947
- #: ../lib/yasr-functions.php:359
948
  msgid " written by "
949
- msgstr "geschrieben von "
950
 
951
  # @ yasr
952
- #: ../lib/yasr-functions.php:361
953
  #, fuzzy
954
  msgid " average rating "
955
  msgstr " Durchschnittsbewertung"
956
 
957
  # @ yasr
958
- #: ../lib/yasr-functions.php:362
959
  msgid " user ratings"
960
  msgstr " Besucherbewertungen"
961
 
@@ -1004,138 +946,185 @@ msgstr "Wähle eine Bewertung für jedes Element"
1004
  msgid "Main"
1005
  msgstr "Allgemein"
1006
 
 
 
 
 
1007
  # @ yasr
1008
- #: ../lib/yasr-ajax-functions.php:433
1009
- msgid "Charts"
 
1010
  msgstr "Charts"
1011
 
1012
  # @ yasr
1013
- #: ../lib/yasr-ajax-functions.php:435
1014
  msgid "Read the doc"
1015
  msgstr "Lese die Dokumentation"
1016
 
1017
  # @ yasr
1018
- #: ../lib/yasr-ajax-functions.php:444
1019
  msgid "Overall Rating / Review"
1020
  msgstr "Gesamtbewertung (Autorenbewertung)"
1021
 
1022
  # @ yasr
1023
- #: ../lib/yasr-ajax-functions.php:446
1024
  msgid "Insert Overall Rating"
1025
  msgstr "Gesamtbewertung einfügen"
1026
 
1027
  # @ yasr
1028
- #: ../lib/yasr-ajax-functions.php:447
1029
  msgid "Insert Overall Rating / Review for this post"
1030
  msgstr "Gesamtbewertung der Review-Autoren einfügen"
1031
 
1032
  # @ yasr
1033
- #: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
1034
  msgid "Choose Size"
1035
  msgstr "Größe wählen"
1036
 
1037
  # @ yasr
1038
- #: ../lib/yasr-ajax-functions.php:464
1039
  msgid "Insert Visitor Votes"
1040
  msgstr "Besucherbewertung einfügen"
1041
 
1042
  # @ yasr
1043
- #: ../lib/yasr-ajax-functions.php:465
1044
  msgid "Insert the ability for your visitor to vote"
1045
  msgstr "Besucher dürfen Bewertungen abgeben"
1046
 
1047
  # @ yasr
1048
- #: ../lib/yasr-ajax-functions.php:482
1049
  msgid "If you want to insert a Multi Set, pick one:"
1050
  msgstr "Vorhandene Multi-Sets"
1051
 
1052
  # @ yasr
1053
- #: ../lib/yasr-ajax-functions.php:488
1054
  msgid "Choose wich set you want to insert."
1055
  msgstr "Wähle das einzufügende Multi-Set."
1056
 
1057
  # @ yasr
1058
- #: ../lib/yasr-ajax-functions.php:496
1059
  msgid "Insert Multiset:"
1060
  msgstr "Multi-Set einfügen:"
1061
 
1062
  # @ yasr
1063
- #: ../lib/yasr-ajax-functions.php:499
1064
  msgid "Insert Multiple Set"
1065
  msgstr "Multi-Set einfügen"
1066
 
1067
  # @ yasr
1068
- #: ../lib/yasr-ajax-functions.php:500
1069
  msgid "Insert multiple set in this post ?"
1070
  msgstr "Multi-Set in Artikel/Seite einfügen?"
1071
 
1072
  # @ yasr
1073
- #: ../lib/yasr-ajax-functions.php:515
1074
  msgid "Ranking reviews"
1075
  msgstr "Rang Bewertungen"
1076
 
1077
  # @ yasr
1078
- #: ../lib/yasr-ajax-functions.php:516
1079
  msgid "Insert Ranking reviews"
1080
  msgstr "Rang Bewertungen einfügen"
1081
 
1082
  # @ yasr
1083
- #: ../lib/yasr-ajax-functions.php:517
1084
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
1085
  msgstr "Top 10 Bewertung für [yasr_overall_rating] shortcode einfügen."
1086
 
1087
  # @ yasr
1088
- #: ../lib/yasr-ajax-functions.php:521
1089
  msgid "Users' ranking"
1090
  msgstr "Benutzer-Rangliste"
1091
 
1092
  # @ yasr
1093
- #: ../lib/yasr-ajax-functions.php:522
1094
  msgid "Insert Users ranking"
1095
  msgstr "Benutzer-Rangliste einfügen"
1096
 
1097
  # @ yasr
1098
- #: ../lib/yasr-ajax-functions.php:523
1099
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
1100
  msgstr "Top 10 Wertung für [yasr_visitor_votes] shortcode einfügen"
1101
 
1102
  # @ yasr
1103
- #: ../lib/yasr-ajax-functions.php:527
1104
  msgid "Most active reviewers"
1105
  msgstr "Top 5 Aktivste Review-Autoren"
1106
 
1107
  # @ yasr
1108
- #: ../lib/yasr-ajax-functions.php:528
1109
  msgid "Insert Most Active Reviewers"
1110
  msgstr "meist aktivste Bewertungen einfügen"
1111
 
1112
  # @ yasr
1113
- #: ../lib/yasr-ajax-functions.php:529
1114
  msgid "Insert Top 5 active reviewers"
1115
  msgstr "Füge die Top 5 aktivsten Review-Autoren ein"
1116
 
1117
  # @ yasr
1118
- #: ../lib/yasr-ajax-functions.php:533
1119
  msgid "Most Active Users"
1120
  msgstr "meist aktivste Benutzer"
1121
 
1122
  # @ yasr
1123
- #: ../lib/yasr-ajax-functions.php:534
1124
  msgid "Insert Most Active Users"
1125
  msgstr "Aktivste Benutzer einfügen."
1126
 
1127
  # @ yasr
1128
- #: ../lib/yasr-ajax-functions.php:535
1129
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
1130
  msgstr "Top 10 Abstimmer [yasr_visitor_votes] Shortcode einfügen"
1131
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1132
  # @ yasr
1133
- #: ../lib/yasr-ajax-functions.php:606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1134
  msgid "Reviews and Visitor Votes have been successfull imported."
1135
  msgstr "Autoren-Reviews und Bewertungen wurden erfolgreich importiert."
1136
 
1137
  # @ yasr
1138
- #: ../lib/yasr-ajax-functions.php:612
1139
  msgid ""
1140
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
1141
  "THIS MAY TAKE A WHILE!"
@@ -1144,107 +1133,603 @@ msgstr ""
1144
  "KANN ETWAS DAUERN!"
1145
 
1146
  # @ yasr
1147
- #: ../lib/yasr-ajax-functions.php:614
1148
  msgid "Proceed Step 2"
1149
  msgstr "Fortfahren mit Schritt 2"
1150
 
1151
  # @ yasr
1152
- #: ../lib/yasr-ajax-functions.php:621
1153
  msgid "Something goes wrong! Refresh the page and try again!"
1154
  msgstr ""
1155
  "Hier ist etwas schief gelaufen. Bitte aktualisiere die Seite und versuche es "
1156
  "noch einmal!"
1157
 
1158
  # @ yasr
1159
- #: ../lib/yasr-ajax-functions.php:650
1160
  msgid "I've found Multiple Set! Importing..."
1161
  msgstr "Es wurden verschiedene Multi-Sets gefunden. Starte Import..."
1162
 
1163
  # @ yasr
1164
- #: ../lib/yasr-ajax-functions.php:659
1165
  msgid "Multi Set's name has been successfull imported."
1166
  msgstr "Multi-Set Namen wurden erfolgreich importiert."
1167
 
1168
  # @ yasr
1169
- #: ../lib/yasr-ajax-functions.php:661
1170
  msgid "Now I'm going to import Multi Set data"
1171
  msgstr "Der Import der Multi-Set Daten wird gestartet"
1172
 
1173
  # @ yasr
1174
- #: ../lib/yasr-ajax-functions.php:672
1175
  msgid "All votes has been successfull imported."
1176
  msgstr "Alle Bewertungen wurden erfolgreich importiert."
1177
 
1178
  # @ yasr
1179
- #: ../lib/yasr-ajax-functions.php:674
1180
  msgid "Done"
1181
  msgstr "Fertig"
1182
 
1183
  # @ yasr
1184
- #: ../lib/yasr-ajax-functions.php:679
1185
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
1186
  msgstr ""
1187
  "Es wurden Multi-Set Bewertungen gefunden aber diese konnten nicht in der "
1188
  "Datenbank gespeichert werden."
1189
 
1190
  # @ yasr
1191
- #: ../lib/yasr-ajax-functions.php:687
1192
  msgid "I've found Multi Set but with no data"
1193
  msgstr "Das Multi-Set wurde gefunden aber es sind keine Daten vorhanden"
1194
 
1195
  # @ yasr
1196
- #: ../lib/yasr-ajax-functions.php:696
1197
  msgid "I've found Multi Sets names but I couldn't insert into db"
1198
  msgstr ""
1199
  "Multi-Set Namen wurde gefunden aber konnten nicht in die Datenbank "
1200
  "importiert werden"
1201
 
1202
  # @ yasr
1203
- #: ../lib/yasr-ajax-functions.php:704
1204
  msgid "Multisets were not found. Imported is done!"
1205
  msgstr "Kein Multi-Set gefunden aber Import war erfolgreich!"
1206
 
1207
  # @ yasr
1208
- #: ../lib/yasr-ajax-functions.php:748
1209
  msgid "No Recenet votes yet"
1210
  msgstr "Keine kürzlichen Bewertungen"
1211
 
1212
  # @ yasr
1213
- #: ../lib/yasr-ajax-functions.php:915 ../lib/yasr-ajax-functions.php:1057
1214
  msgid "Error: you can't vote 0"
1215
  msgstr "Fehler: Sie können nicht 0 wählen!"
1216
 
1217
  # @ yasr
1218
- #: ../lib/yasr-ajax-functions.php:1011 ../lib/yasr-ajax-functions.php:1019
1219
  msgid "Average rating"
1220
  msgstr "Durchschnittsbewertung"
1221
 
1222
  # @ yasr
1223
- #: ../lib/yasr-ajax-functions.php:1012 ../lib/yasr-ajax-functions.php:1020
1224
  msgid "Vote Saved"
1225
  msgstr "Bewertung gespeichert"
1226
 
1227
  # @ yasr
1228
- #: ../lib/yasr-ajax-functions.php:1149
1229
  msgid "Vote updated"
1230
  msgstr "Bewertung aktualisiert"
1231
 
1232
  # @ yasr
1233
- #: ../lib/yasr-ajax-functions.php:1220
1234
  msgid "Average "
1235
  msgstr "Durchschnitt: "
1236
 
1237
  # @ yasr
1238
- #: ../lib/yasr-ajax-functions.php:1231
1239
  #, fuzzy
1240
  msgid "You've already voted this article"
1241
  msgstr "Du hast hier bewertet mit "
1242
 
1243
  # @ yasr
1244
- #: ../lib/yasr-ajax-functions.php:1356
 
 
1245
  #, fuzzy
1246
  msgid "stars"
1247
  msgstr "Sterne"
1248
 
1249
- #~ msgid "'bad', 'poor', 'ok', 'good', 'super'"
1250
- #~ msgstr "'schlecht', 'mangelhaft', 'OK', 'gut', 'super'"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Yet Another Stars Rating v0.6.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-03-14 16:37+0100\n"
6
+ "PO-Revision-Date: 2015-04-21 10:19+0100\n"
7
+ "Last-Translator: Jens Tonnier <jens@tonnier.de>\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"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.7.6\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
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"
26
 
27
  # @ yasr
28
  #: ../yasr-metabox-top-right.php:71 ../lib/yasr-shortcode-functions.php:136
29
+ #: ../lib/pro/yasr-pro-functions.php:59
30
+ #: ../lib/pro/yasr-pro-comment-form-functions.php:237
31
+ #: ../lib/pro/yasr-pro-settings-functions.php:816
32
+ #: ../lib/pro/yasr-pro-settings-functions.php:831
33
  msgid "Loading, please wait"
34
  msgstr "Wird geladen, bitte warten"
35
 
46
  # @ default
47
  # @ yasr
48
  #: ../yasr-metabox-top-right.php:193 ../yasr-metabox-multiple-rating.php:46
49
+ #: ../lib/yasr-settings-functions.php:485
50
  msgid "Select"
51
  msgstr "Auswählen"
52
 
60
  "ein, wo die Bewertung angezeigt werden soll."
61
 
62
  # @ yasr
63
+ #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:112
64
  #: ../lib/yasr-ajax-functions.php:44 ../lib/yasr-ajax-functions.php:187
65
+ #: ../lib/yasr-ajax-functions.php:332 ../lib/yasr-ajax-functions.php:797
66
  msgid "You do not have sufficient permissions to access this page."
67
  msgstr ""
68
  "Du verfügst nicht über ausreichende Berechtigungen um auf diese Seite "
69
  "zuzugreifen."
70
 
71
  # @ yasr
72
+ #: ../yasr-settings-page.php:44
73
  #, fuzzy
74
  msgid "Settings"
75
  msgstr "Einstellungen gespeichert"
76
 
77
  # @ yasr
78
+ #: ../yasr-settings-page.php:87
79
  msgid "General Settings"
80
  msgstr "Allgemeine Einstellungen"
81
 
82
  # @ yasr
83
+ #: ../yasr-settings-page.php:88
84
  msgid "Multi Sets"
85
  msgstr "Multi-Sets"
86
 
87
  # @ yasr
88
+ #: ../yasr-settings-page.php:89
89
  msgid "Styles"
90
  msgstr "Styles"
91
 
92
  # @ yasr
93
+ #: ../yasr-settings-page.php:90
94
+ #, fuzzy
95
+ msgid "Pro Options!"
96
+ msgstr "Style Optionen"
97
+
98
+ # @ yasr
99
+ #: ../yasr-settings-page.php:91 ../lib/yasr-ajax-functions.php:433
100
+ msgid "Charts"
101
+ msgstr "Charts"
102
+
103
+ #: ../yasr-settings-page.php:92
104
+ msgid "License"
105
+ msgstr ""
106
 
107
  # @ default
108
+ #: ../yasr-settings-page.php:108 ../yasr-settings-page.php:269
109
+ #: ../yasr-settings-page.php:307
110
  msgid "Save"
111
  msgstr "Speichern"
112
 
113
  # @ yasr
114
+ #: ../yasr-settings-page.php:126
115
  msgid "Import Gd Star Rating"
116
  msgstr "Importiere Gd Star Rating Daten"
117
 
118
  # @ yasr
119
+ #: ../yasr-settings-page.php:127
120
  msgid "I've found a previous installation of Gd Star Rating."
121
  msgstr "Es wurde eine Installation von Gd Star Rating gefunden."
122
 
123
  # @ yasr
124
+ #: ../yasr-settings-page.php:127
125
  msgid "Do you want proceed to import data?"
126
  msgstr "Willst du mit dem Import der Daten fortfahren?"
127
 
128
  # @ yasr
129
+ #: ../yasr-settings-page.php:129
130
  msgid "Yes, Begin Import"
131
  msgstr "Ja, Import starten"
132
 
133
  # @ default
134
+ #: ../yasr-settings-page.php:133
135
  msgid "Click on Proceed to import Gd Star Rating data."
136
  msgstr "Klicke auf Fortfahren um die Gd Star Rating Daten zu importieren."
137
 
138
  # @ yasr
139
+ #: ../yasr-settings-page.php:136 ../yasr-settings-page.php:169
140
  msgid "Proceed"
141
  msgstr "Fortfahren"
142
 
143
  # @ yasr
144
+ #: ../yasr-settings-page.php:158
145
  msgid "Manage GD Star Data"
146
  msgstr "Verwalte GD Star Rating Daten"
147
 
148
  # @ default
149
+ #: ../yasr-settings-page.php:159
150
  msgid "Gd Star Rating has been already imported."
151
  msgstr "Gd Star Rating Daten wurden bereits importiert."
152
 
153
  # @ yasr
154
+ #: ../yasr-settings-page.php:160
155
  msgid "If you wish you can import it again, but"
156
  msgstr "Du kannst die Daten erneut importieren, aber"
157
 
158
  # @ yasr
159
+ #: ../yasr-settings-page.php:160
160
  msgid "you will lose all data you've collect since the import!"
161
  msgstr "dann gehen alle gesammelten Daten seit dem letzten Import verloren!"
162
 
163
  # @ default
164
+ #: ../yasr-settings-page.php:162
165
  msgid "Ok, Import Again"
166
  msgstr "Ok, erneut importieren"
167
 
168
  # @ default
169
+ #: ../yasr-settings-page.php:166
170
  msgid ""
171
  "Click on Proceed to import again Gd Star Rating data. This may take a while!"
172
  msgstr ""
174
  "kann eine Weile dauern!"
175
 
176
  # @ yasr
177
+ #: ../yasr-settings-page.php:203
178
  msgid "Manage Multi Set"
179
  msgstr "Multi-Sets verwalten"
180
 
181
  # @ yasr
182
+ #: ../yasr-settings-page.php:207
183
  msgid "What is a Multi Set?"
184
  msgstr "Was ist ein Multi-Set?"
185
 
186
  # @ yasr
187
+ #: ../yasr-settings-page.php:211
188
  msgid ""
189
  "Multi Set allows you to insert a rate for each aspect about the product / "
190
  "local business / whetever you're reviewing, example in the image below."
194
  "zeigt ein Beispiel."
195
 
196
  # @ yasr
197
+ #: ../yasr-settings-page.php:215
198
  msgid ""
199
  "You can create up to 99 different Multi Set and each one can contain up to 9 "
200
  "different fields. Once you've saved it, you can insert the rates while "
207
  "(klicken zum Vergrößern) zu sehen ist."
208
 
209
  # @ yasr
210
+ #: ../yasr-settings-page.php:219
211
  msgid ""
212
  "In order to insert your Multi Sets into a post or page, you can either past "
213
  "the short code that will appear at the bottom of the box or just click on "
218
  "den Stern im Editor klicken und \"Insert Multi-Set\" wählen."
219
 
220
  # @ yasr
221
+ #: ../yasr-settings-page.php:225
222
  msgid "Close this message"
223
  msgstr "Nachricht schließen"
224
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
225
  # @ default
226
  #: ../yasr-metabox-multiple-rating.php:35
227
  msgid "Choose wich set you want to use"
228
  msgstr "Wähle ein Multi-Set aus"
229
 
230
  # @ yasr
231
+ #: ../lib/yasr-shortcode-functions.php:187
232
+ #: ../lib/yasr-shortcode-functions.php:209
233
  msgid "You've already voted this article with"
234
  msgstr "Du hast hier bewertet mit "
235
 
236
  # @ yasr
237
+ #: ../lib/yasr-shortcode-functions.php:220
238
  msgid "You must sign to vote"
239
  msgstr "Um eine Bewertung abzugeben musst du angemeldet sein"
240
 
241
  # @ yasr
242
+ #: ../lib/yasr-shortcode-functions.php:243 ../lib/yasr-ajax-functions.php:1072
243
+ #: ../lib/yasr-ajax-functions.php:1080 ../lib/yasr-ajax-functions.php:1211
244
+ #: ../lib/yasr-ajax-functions.php:1289
245
  msgid "Total: "
246
  msgstr "Gesamt:"
247
 
248
  # @ yasr
249
+ #: ../lib/yasr-shortcode-functions.php:243
250
  msgid "Average: "
251
  msgstr "Durchschnitt: "
252
 
253
+ #: ../lib/yasr-shortcode-functions.php:263
254
+ msgid "bad, poor, ok, good, super"
255
+ msgstr ""
256
+
257
  # @ yasr
258
+ #: ../lib/yasr-shortcode-functions.php:411
259
+ #: ../lib/pro/yasr-pro-comment-form-functions.php:124
260
  msgid "Rating"
261
  msgstr "Bewertung"
262
 
263
  # @ yasr
264
+ #: ../lib/yasr-shortcode-functions.php:425
265
  msgid "You don't have any votes stored"
266
  msgstr "Es sind keine Autoren-Bewertungen gespeichert"
267
 
268
+ #: ../lib/yasr-shortcode-functions.php:461
269
+ #: ../lib/yasr-shortcode-functions.php:499
270
  msgid "Post / Page"
271
  msgstr "Beitrag / Seite"
272
 
273
+ #: ../lib/yasr-shortcode-functions.php:462
274
+ #: ../lib/yasr-shortcode-functions.php:500
275
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:264
276
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:301
277
  msgid "Order By"
278
  msgstr "sortieren nach"
279
 
280
  # @ yasr
281
+ #: ../lib/yasr-shortcode-functions.php:462
282
+ #: ../lib/yasr-shortcode-functions.php:500
283
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:264
284
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:301
285
+ #: ../lib/pro/yasr-pro-settings-functions.php:271
286
  msgid "Most Rated"
287
  msgstr "meist bewertet"
288
 
289
  # @ yasr
290
+ #: ../lib/yasr-shortcode-functions.php:462
291
+ #: ../lib/yasr-shortcode-functions.php:500
292
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:264
293
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:301
294
+ #: ../lib/pro/yasr-pro-settings-functions.php:275
295
  msgid "Highest Rated"
296
  msgstr "höchste Bewertung"
297
 
298
  # @ yasr
299
+ #: ../lib/yasr-shortcode-functions.php:479
300
+ #: ../lib/yasr-shortcode-functions.php:514
301
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:279
302
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:315
303
  msgid "Total:"
304
  msgstr "Gesamt:"
305
 
306
  # @ yasr
307
+ #: ../lib/yasr-shortcode-functions.php:479
308
+ #: ../lib/yasr-shortcode-functions.php:514
309
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:279
310
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:315
311
  msgid "Average"
312
  msgstr "Durchschnitt: "
313
 
314
  # @ yasr
315
+ #: ../lib/yasr-shortcode-functions.php:491
316
  msgid "You've not enough data"
317
  msgstr "Sie haben nicht genügend Daten"
318
 
319
  # @ yasr
320
+ #: ../lib/yasr-shortcode-functions.php:526
321
  msgid "You've not enought data"
322
  msgstr "Sie haben nicht genug Daten"
323
 
324
  # @ default
325
+ #: ../lib/yasr-shortcode-functions.php:611
326
  msgid ""
327
  "Problem while retrieving the top 5 most active reviewers. Did you publish "
328
  "any review?"
331
  "Bewertung veröffentlicht"
332
 
333
  # @ default
334
+ #: ../lib/yasr-shortcode-functions.php:679
335
  msgid ""
336
  "Problem while retrieving the top 10 active users chart. Are you sure you "
337
  "have votes to show?"
372
 
373
  # @ yasr
374
  #: ../lib/yasr-settings-functions.php:55
375
+ msgid "Allow only logged in user to vote?"
376
+ msgstr "Nur angemeldete Besucher dürfen abstimmen?"
377
 
378
  # @ yasr
379
  #: ../lib/yasr-settings-functions.php:56
380
+ msgid "Which color scheme do you want to use?"
381
+ msgstr "Welches Farbschema willst du nutzen?"
382
 
383
  # @ yasr
384
  #: ../lib/yasr-settings-functions.php:57
402
  #: ../lib/yasr-settings-functions.php:204
403
  #: ../lib/yasr-settings-functions.php:230
404
  #: ../lib/yasr-settings-functions.php:262
405
+ #: ../lib/yasr-settings-functions.php:297
406
+ #: ../lib/pro/yasr-pro-settings-functions.php:110
407
+ #: ../lib/pro/yasr-pro-settings-functions.php:145
408
+ #: ../lib/pro/yasr-pro-settings-functions.php:341
409
+ #: ../lib/pro/yasr-pro-settings-functions.php:377
410
+ #: ../lib/pro/yasr-pro-settings-functions.php:696
411
  msgid "Yes"
412
  msgstr "Ja"
413
 
418
  #: ../lib/yasr-settings-functions.php:209
419
  #: ../lib/yasr-settings-functions.php:235
420
  #: ../lib/yasr-settings-functions.php:267
421
+ #: ../lib/yasr-settings-functions.php:302
422
+ #: ../lib/pro/yasr-pro-settings-functions.php:83
423
+ #: ../lib/pro/yasr-pro-settings-functions.php:106
424
+ #: ../lib/pro/yasr-pro-settings-functions.php:141
425
+ #: ../lib/pro/yasr-pro-settings-functions.php:337
426
+ #: ../lib/pro/yasr-pro-settings-functions.php:373
427
+ #: ../lib/pro/yasr-pro-settings-functions.php:700
428
  msgid "No"
429
  msgstr "Nein"
430
 
439
  msgstr "Gesamtbewertung (Autorenbewertung)"
440
 
441
  # @ yasr
442
+ #: ../lib/yasr-settings-functions.php:102 ../lib/yasr-ajax-functions.php:464
443
  msgid "Visitor Votes"
444
  msgstr "Besucherbewertung"
445
 
465
 
466
  # @ yasr
467
  #: ../lib/yasr-settings-functions.php:122
468
+ #: ../lib/pro/yasr-pro-settings-functions.php:61
469
+ #: ../lib/pro/yasr-pro-settings-functions.php:247
470
  msgid "Size"
471
  msgstr "Größe"
472
 
473
  # @ yasr
474
+ #: ../lib/yasr-settings-functions.php:126 ../lib/yasr-ajax-functions.php:454
475
+ #: ../lib/yasr-ajax-functions.php:472
476
+ #: ../lib/pro/yasr-pro-settings-functions.php:66
477
+ #: ../lib/pro/yasr-pro-settings-functions.php:252
478
+ #: ../lib/pro/yasr-pro-settings-functions.php:723
479
  msgid "Small"
480
  msgstr "Klein"
481
 
482
  # @ yasr
483
+ #: ../lib/yasr-settings-functions.php:131 ../lib/yasr-ajax-functions.php:455
484
+ #: ../lib/yasr-ajax-functions.php:473
485
+ #: ../lib/pro/yasr-pro-settings-functions.php:71
486
+ #: ../lib/pro/yasr-pro-settings-functions.php:257
487
+ #: ../lib/pro/yasr-pro-settings-functions.php:728
488
  msgid "Medium"
489
  msgstr "Mittel"
490
 
491
+ #: ../lib/yasr-settings-functions.php:136 ../lib/yasr-ajax-functions.php:456
492
+ #: ../lib/yasr-ajax-functions.php:474
493
+ #: ../lib/pro/yasr-pro-settings-functions.php:76
494
+ #: ../lib/pro/yasr-pro-settings-functions.php:262
495
+ #: ../lib/pro/yasr-pro-settings-functions.php:733
496
  msgid "Large"
497
  msgstr "Groß"
498
 
559
  "Besucher bereits eine Bewertung abgegeben hat"
560
 
561
  # @ yasr
562
+ #: ../lib/yasr-settings-functions.php:320
563
+ msgid "Allow only logged-in users"
564
+ msgstr "Nur angemeldete Besucher erlauben"
 
 
 
 
 
565
 
566
  # @ yasr
567
+ #: ../lib/yasr-settings-functions.php:324
568
+ msgid "Allow everybody (logged in and anonymous)"
569
+ msgstr "Jedem erlauben (angemeldete und anonyme Besucher)"
570
+
571
+ # @ yasr
572
+ #: ../lib/yasr-settings-functions.php:340
573
  msgid "Light"
574
  msgstr "Hell"
575
 
576
  # @ yasr
577
+ #: ../lib/yasr-settings-functions.php:345
578
  msgid "Dark"
579
  msgstr "Dunkel"
580
 
581
  # @ yasr
582
+ #: ../lib/yasr-settings-functions.php:350
583
  msgid "Preview"
584
  msgstr "Vorschau"
585
 
586
  # @ yasr
587
+ #: ../lib/yasr-settings-functions.php:355
588
  msgid "Light theme"
589
  msgstr "Helles Theme"
590
 
591
  # @ yasr
592
+ #: ../lib/yasr-settings-functions.php:360
593
  msgid "Dark Theme"
594
  msgstr "Dunkles Theme"
595
 
596
  # @ yasr
597
+ #: ../lib/yasr-settings-functions.php:377
 
 
 
 
 
 
 
 
 
 
598
  msgid "Review Rating"
599
  msgstr "Review Rating (Autorenbewertung)"
600
 
601
  # @ yasr
602
+ #: ../lib/yasr-settings-functions.php:381
603
  msgid "Aggregate Rating"
604
  msgstr "Aggregate Rating (Besucherbewertung)"
605
 
606
  # @ yasr
607
+ #: ../lib/yasr-settings-functions.php:386
608
  msgid "What is this?"
609
  msgstr "Was ist das?"
610
 
611
  # @ yasr
612
+ #: ../lib/yasr-settings-functions.php:391
613
  msgid ""
614
  "If you select \"Review Rating\", your site will be indexed from search "
615
  "engines like this: "
618
  "aussehen:"
619
 
620
  # @ yasr
621
+ #: ../lib/yasr-settings-functions.php:396
622
  msgid ""
623
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
624
  "this"
627
  "wie folgt aus:"
628
 
629
  # @ yasr
630
+ #: ../lib/yasr-settings-functions.php:414
631
  msgid "Stars"
632
  msgstr "Sterne"
633
 
634
  # @ yasr
635
+ #: ../lib/yasr-settings-functions.php:418
636
  msgid "Numbers"
637
  msgstr "Zahlen"
638
 
639
  # @ yasr
640
+ #: ../lib/yasr-settings-functions.php:430
641
  msgid "Add New Multiple Set"
642
  msgstr "Neues Multi-Set hinzufügen"
643
 
644
  # @ yasr
645
+ #: ../lib/yasr-settings-functions.php:431
646
  msgid ""
647
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
648
  "characters"
651
  "Zeichen lang sein"
652
 
653
  # @ yasr
654
+ #: ../lib/yasr-settings-functions.php:434
655
  msgid "Name"
656
  msgstr "Name"
657
 
658
  # @ yasr
659
+ #: ../lib/yasr-settings-functions.php:439
660
  msgid "You can insert up to nine elements"
661
  msgstr "Sie können bis zu neun Elemente einfügen"
662
 
663
  # @ yasr
664
+ #: ../lib/yasr-settings-functions.php:444
665
  msgid "Element "
666
  msgstr "Element"
667
 
668
  # @ yasr
669
+ #: ../lib/yasr-settings-functions.php:454
670
  msgid "Create New Set"
671
  msgstr "Neues Multi-Set anlegen"
672
 
673
  # @ yasr
674
+ #: ../lib/yasr-settings-functions.php:475
675
+ #: ../lib/yasr-settings-functions.php:507
676
  msgid "Manage Multiple Set"
677
  msgstr "Verschiedene Multi-Sets verwalten"
678
 
679
  # @ yasr
680
+ #: ../lib/yasr-settings-functions.php:477
681
  msgid "Wich set do you want to edit or remove?"
682
  msgstr "Welches Multi-Set möchtest du bearbeiten oder löschen?"
683
 
684
  # @ yasr
685
+ #: ../lib/yasr-settings-functions.php:517
686
+ #: ../lib/yasr-settings-functions.php:635
687
  msgid "Field name"
688
  msgstr "Feldname"
689
 
690
  # @ yasr
691
+ #: ../lib/yasr-settings-functions.php:521
692
+ #: ../lib/yasr-settings-functions.php:639
693
  msgid "Remove"
694
  msgstr "Entfernen"
695
 
696
  # @ yasr
697
+ #: ../lib/yasr-settings-functions.php:563
698
+ #: ../lib/yasr-settings-functions.php:681
699
  msgid "Remove whole set?"
700
  msgstr "Komplettes Multi-Set entfernen?"
701
 
702
  # @ yasr
703
+ #: ../lib/yasr-settings-functions.php:576
704
+ #: ../lib/yasr-settings-functions.php:694
705
  msgid ""
706
  "If you remove something you will remove all the votes for that set or field. "
707
  "This operation CAN'T BE undone."
710
  "Element gelöscht. Dies kann nicht rückgängig gemacht werden."
711
 
712
  # @ yasr
713
+ #: ../lib/yasr-settings-functions.php:583
714
+ #: ../lib/yasr-settings-functions.php:701
715
  msgid "You can use up to 9 elements"
716
  msgstr "Du kannst bist zu 9 Elementen nutzen"
717
 
718
  # @ yasr
719
+ #: ../lib/yasr-settings-functions.php:585
720
+ #: ../lib/yasr-settings-functions.php:703
721
  msgid "Add element"
722
  msgstr "Element hinzufügen"
723
 
724
  # @ yasr
725
+ #: ../lib/yasr-settings-functions.php:587
726
+ #: ../lib/yasr-settings-functions.php:705
727
  msgid "Save changes"
728
  msgstr "Änderungen speichern"
729
 
730
  # @ yasr
731
+ #: ../lib/yasr-settings-functions.php:597
732
  msgid "No Multiple Set were found"
733
  msgstr "Keine Multi-Sets gefunden"
734
 
735
  # @ yasr
736
+ #: ../lib/yasr-settings-functions.php:847
737
+ #: ../lib/yasr-settings-functions.php:1115
738
  msgid "Settings Saved"
739
  msgstr "Einstellungen gespeichert"
740
 
741
  # @ yasr
742
+ #: ../lib/yasr-settings-functions.php:852
743
  msgid "Something goes wrong trying insert set field name. Please report it"
744
  msgstr ""
745
  "Beim einfügen des Multi-Set Feldnamens ist etwas schief gelaufen. Bitte "
746
  "melde das Problem"
747
 
748
  # @ yasr
749
+ #: ../lib/yasr-settings-functions.php:858
750
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
751
  msgstr ""
752
  "Beim Einfügen des Multi-Sets ist etwas schief gelaufen. Bitte melde das "
753
  "Problem"
754
 
755
  # @ yasr
756
+ #: ../lib/yasr-settings-functions.php:933
757
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
758
  msgstr ""
759
  "Beim Löschen des Multi-Sets ist etwas schief gelaufen. Bitte melde das "
760
  "Problem"
761
 
762
  # @ yasr
763
+ #: ../lib/yasr-settings-functions.php:979
764
  msgid ""
765
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
766
  msgstr ""
768
  "das Problem"
769
 
770
  # @ yasr
771
+ #: ../lib/yasr-settings-functions.php:1043
772
  msgid ""
773
  "Something goes wrong trying to update a Multi Set's element. Please report it"
774
  msgstr ""
776
  "Bitte melde das Problem"
777
 
778
  # @ yasr
779
+ #: ../lib/yasr-settings-functions.php:1100
780
  msgid ""
781
  "Something goes wrong trying to insert set field name in edit form. Please "
782
  "report it"
785
  "melde das Problem"
786
 
787
  # @ yasr
788
+ #: ../lib/yasr-settings-functions.php:1143
789
  msgid "Style Options"
790
  msgstr "Style Optionen"
791
 
792
  # @ yasr
793
+ #: ../lib/yasr-settings-functions.php:1144
794
  msgid "Custom CSS Styles"
795
  msgstr "Benutzerdefiniertes CSS"
796
 
797
  # @ yasr
798
+ #: ../lib/yasr-settings-functions.php:1149
799
  msgid ""
800
  "Please use text area below to write your own CSS styles to override the "
801
  "default ones."
804
  "CSS-Code zu überschreiben."
805
 
806
  # @ yasr
807
+ #: ../lib/yasr-settings-functions.php:1151
808
  msgid "Leave it blank if you don't know what you're doing"
809
  msgstr " Lasse diesen Bereich leer, wenn du nicht weißt was du tust."
810
 
811
  # @ yasr
812
+ #: ../lib/yasr-settings-functions.php:1184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
813
  msgid "No previous Gd Star Rating installation was found"
814
  msgstr "Es wurde keine Gd Star Ratings Installation gefunden"
815
 
816
  # @ yasr
817
+ #: ../lib/yasr-db-functions.php:288
818
  msgid "No recenet votes yet"
819
  msgstr "Keine aktuellen Bewertungen vorhanden"
820
 
821
  # @ default
822
+ #: ../lib/yasr-db-functions.php:303 ../lib/yasr-ajax-functions.php:822
823
  msgid "anonymous"
824
  msgstr "Anonym"
825
 
826
  # @ yasr
827
+ #: ../lib/yasr-db-functions.php:326 ../lib/yasr-ajax-functions.php:845
828
  msgid "Ip address"
829
  msgstr "IP-Adresse"
830
 
831
  # @ yasr
832
+ #: ../lib/yasr-db-functions.php:367 ../lib/yasr-ajax-functions.php:886
833
  msgid "Pages"
834
  msgstr "Seiten"
835
 
836
  # @ yasr
837
+ #: ../lib/yasr-functions.php:100 ../lib/yasr-functions.php:101
838
  msgid "Yet Another Stars Rating: Settings"
839
  msgstr "Yet Another Stars Rating"
840
 
841
+ #: ../lib/yasr-functions.php:144
842
  msgid "YASR"
843
  msgstr ""
844
 
845
  # @ yasr
846
+ #: ../lib/yasr-functions.php:145
847
  msgid "Yet Another Stars Rating: Multiple set"
848
  msgstr "Yet Another Stars Rating: Multi-Sets"
849
 
850
  # @ yasr
851
+ #: ../lib/yasr-functions.php:151
852
  msgid "Overall Rating"
853
  msgstr "Gesamtbewertung"
854
 
855
  # @ default
856
+ #: ../lib/yasr-functions.php:161
857
  msgid "You don't have enought privileges to insert Overall Rating"
858
  msgstr ""
859
  "Du hast nicht die notwendigen Berechtigungen um eine Gesamtbewertung "
860
  "einzufügen"
861
 
862
  # @ default
863
+ #: ../lib/yasr-functions.php:171
864
  msgid "You don't have enought privileges to insert Multi Set"
865
  msgstr ""
866
  "Du hast nicht die notwendigen Berechtigungen um ein Multi-Set einzufügen"
867
 
868
  # @ yasr
869
+ #: ../lib/yasr-functions.php:311
870
  msgid " reviewed by "
871
  msgstr " geschrieben von "
872
 
873
  # @ yasr
874
+ #: ../lib/yasr-functions.php:312
875
  msgid " on "
876
  msgstr " am"
877
 
878
  # @ yasr
879
+ #: ../lib/yasr-functions.php:313
880
  msgid " rated "
881
  msgstr " ist bewertet mit "
882
 
883
  # @ yasr
884
+ #: ../lib/yasr-functions.php:313
885
  msgid " of"
886
  msgstr ""
887
 
888
  # @ yasr
889
+ #: ../lib/yasr-functions.php:360
890
  msgid " written by "
891
+ msgstr " geschrieben von "
892
 
893
  # @ yasr
894
+ #: ../lib/yasr-functions.php:362
895
  #, fuzzy
896
  msgid " average rating "
897
  msgstr " Durchschnittsbewertung"
898
 
899
  # @ yasr
900
+ #: ../lib/yasr-functions.php:363
901
  msgid " user ratings"
902
  msgstr " Besucherbewertungen"
903
 
946
  msgid "Main"
947
  msgstr "Allgemein"
948
 
949
+ #: ../lib/yasr-ajax-functions.php:434
950
+ msgid "Comments"
951
+ msgstr ""
952
+
953
  # @ yasr
954
+ #: ../lib/yasr-ajax-functions.php:435
955
+ #, fuzzy
956
+ msgid "Pro Charts"
957
  msgstr "Charts"
958
 
959
  # @ yasr
960
+ #: ../lib/yasr-ajax-functions.php:437
961
  msgid "Read the doc"
962
  msgstr "Lese die Dokumentation"
963
 
964
  # @ yasr
965
+ #: ../lib/yasr-ajax-functions.php:446
966
  msgid "Overall Rating / Review"
967
  msgstr "Gesamtbewertung (Autorenbewertung)"
968
 
969
  # @ yasr
970
+ #: ../lib/yasr-ajax-functions.php:448
971
  msgid "Insert Overall Rating"
972
  msgstr "Gesamtbewertung einfügen"
973
 
974
  # @ yasr
975
+ #: ../lib/yasr-ajax-functions.php:449
976
  msgid "Insert Overall Rating / Review for this post"
977
  msgstr "Gesamtbewertung der Review-Autoren einfügen"
978
 
979
  # @ yasr
980
+ #: ../lib/yasr-ajax-functions.php:452 ../lib/yasr-ajax-functions.php:470
981
  msgid "Choose Size"
982
  msgstr "Größe wählen"
983
 
984
  # @ yasr
985
+ #: ../lib/yasr-ajax-functions.php:466
986
  msgid "Insert Visitor Votes"
987
  msgstr "Besucherbewertung einfügen"
988
 
989
  # @ yasr
990
+ #: ../lib/yasr-ajax-functions.php:467
991
  msgid "Insert the ability for your visitor to vote"
992
  msgstr "Besucher dürfen Bewertungen abgeben"
993
 
994
  # @ yasr
995
+ #: ../lib/yasr-ajax-functions.php:484
996
  msgid "If you want to insert a Multi Set, pick one:"
997
  msgstr "Vorhandene Multi-Sets"
998
 
999
  # @ yasr
1000
+ #: ../lib/yasr-ajax-functions.php:490
1001
  msgid "Choose wich set you want to insert."
1002
  msgstr "Wähle das einzufügende Multi-Set."
1003
 
1004
  # @ yasr
1005
+ #: ../lib/yasr-ajax-functions.php:498
1006
  msgid "Insert Multiset:"
1007
  msgstr "Multi-Set einfügen:"
1008
 
1009
  # @ yasr
1010
+ #: ../lib/yasr-ajax-functions.php:501
1011
  msgid "Insert Multiple Set"
1012
  msgstr "Multi-Set einfügen"
1013
 
1014
  # @ yasr
1015
+ #: ../lib/yasr-ajax-functions.php:502
1016
  msgid "Insert multiple set in this post ?"
1017
  msgstr "Multi-Set in Artikel/Seite einfügen?"
1018
 
1019
  # @ yasr
1020
+ #: ../lib/yasr-ajax-functions.php:517
1021
  msgid "Ranking reviews"
1022
  msgstr "Rang Bewertungen"
1023
 
1024
  # @ yasr
1025
+ #: ../lib/yasr-ajax-functions.php:518
1026
  msgid "Insert Ranking reviews"
1027
  msgstr "Rang Bewertungen einfügen"
1028
 
1029
  # @ yasr
1030
+ #: ../lib/yasr-ajax-functions.php:519
1031
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
1032
  msgstr "Top 10 Bewertung für [yasr_overall_rating] shortcode einfügen."
1033
 
1034
  # @ yasr
1035
+ #: ../lib/yasr-ajax-functions.php:523
1036
  msgid "Users' ranking"
1037
  msgstr "Benutzer-Rangliste"
1038
 
1039
  # @ yasr
1040
+ #: ../lib/yasr-ajax-functions.php:524
1041
  msgid "Insert Users ranking"
1042
  msgstr "Benutzer-Rangliste einfügen"
1043
 
1044
  # @ yasr
1045
+ #: ../lib/yasr-ajax-functions.php:525
1046
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
1047
  msgstr "Top 10 Wertung für [yasr_visitor_votes] shortcode einfügen"
1048
 
1049
  # @ yasr
1050
+ #: ../lib/yasr-ajax-functions.php:529
1051
  msgid "Most active reviewers"
1052
  msgstr "Top 5 Aktivste Review-Autoren"
1053
 
1054
  # @ yasr
1055
+ #: ../lib/yasr-ajax-functions.php:530
1056
  msgid "Insert Most Active Reviewers"
1057
  msgstr "meist aktivste Bewertungen einfügen"
1058
 
1059
  # @ yasr
1060
+ #: ../lib/yasr-ajax-functions.php:531
1061
  msgid "Insert Top 5 active reviewers"
1062
  msgstr "Füge die Top 5 aktivsten Review-Autoren ein"
1063
 
1064
  # @ yasr
1065
+ #: ../lib/yasr-ajax-functions.php:535
1066
  msgid "Most Active Users"
1067
  msgstr "meist aktivste Benutzer"
1068
 
1069
  # @ yasr
1070
+ #: ../lib/yasr-ajax-functions.php:536
1071
  msgid "Insert Most Active Users"
1072
  msgstr "Aktivste Benutzer einfügen."
1073
 
1074
  # @ yasr
1075
+ #: ../lib/yasr-ajax-functions.php:537
1076
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
1077
  msgstr "Top 10 Abstimmer [yasr_visitor_votes] Shortcode einfügen"
1078
 
1079
+ #: ../lib/yasr-ajax-functions.php:548
1080
+ msgid "Insert Progress Bars"
1081
+ msgstr ""
1082
+
1083
+ #: ../lib/yasr-ajax-functions.php:549
1084
+ msgid "Insert Progress Bars stats"
1085
+ msgstr ""
1086
+
1087
+ #: ../lib/yasr-ajax-functions.php:550
1088
+ msgid "Insert progress bars statistics for review in comments"
1089
+ msgstr ""
1090
+
1091
+ # @ yasr
1092
+ #: ../lib/yasr-ajax-functions.php:554
1093
+ #, fuzzy
1094
+ msgid "Insert Average Rating"
1095
+ msgstr "Gesamtbewertung einfügen"
1096
+
1097
  # @ yasr
1098
+ #: ../lib/yasr-ajax-functions.php:555
1099
+ #, fuzzy
1100
+ msgid "Insert Stars Average"
1101
+ msgstr "Benutzer-Rangliste einfügen"
1102
+
1103
+ #: ../lib/yasr-ajax-functions.php:556
1104
+ msgid "Insert the average (in stars) of all ratings in comments"
1105
+ msgstr ""
1106
+
1107
+ # @ yasr
1108
+ #: ../lib/yasr-ajax-functions.php:571
1109
+ #, fuzzy
1110
+ msgid "You've not saved any shortcode."
1111
+ msgstr "Es sind keine Autoren-Bewertungen gespeichert"
1112
+
1113
+ #: ../lib/yasr-ajax-functions.php:574 ../lib/yasr-ajax-functions.php:593
1114
+ msgid "Click here"
1115
+ msgstr ""
1116
+
1117
+ #: ../lib/yasr-ajax-functions.php:585
1118
+ msgid "Your saved shortcodes:"
1119
+ msgstr ""
1120
+
1121
+ # @ yasr
1122
+ #: ../lib/yasr-ajax-functions.php:667
1123
  msgid "Reviews and Visitor Votes have been successfull imported."
1124
  msgstr "Autoren-Reviews und Bewertungen wurden erfolgreich importiert."
1125
 
1126
  # @ yasr
1127
+ #: ../lib/yasr-ajax-functions.php:673
1128
  msgid ""
1129
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
1130
  "THIS MAY TAKE A WHILE!"
1133
  "KANN ETWAS DAUERN!"
1134
 
1135
  # @ yasr
1136
+ #: ../lib/yasr-ajax-functions.php:675
1137
  msgid "Proceed Step 2"
1138
  msgstr "Fortfahren mit Schritt 2"
1139
 
1140
  # @ yasr
1141
+ #: ../lib/yasr-ajax-functions.php:682
1142
  msgid "Something goes wrong! Refresh the page and try again!"
1143
  msgstr ""
1144
  "Hier ist etwas schief gelaufen. Bitte aktualisiere die Seite und versuche es "
1145
  "noch einmal!"
1146
 
1147
  # @ yasr
1148
+ #: ../lib/yasr-ajax-functions.php:711
1149
  msgid "I've found Multiple Set! Importing..."
1150
  msgstr "Es wurden verschiedene Multi-Sets gefunden. Starte Import..."
1151
 
1152
  # @ yasr
1153
+ #: ../lib/yasr-ajax-functions.php:720
1154
  msgid "Multi Set's name has been successfull imported."
1155
  msgstr "Multi-Set Namen wurden erfolgreich importiert."
1156
 
1157
  # @ yasr
1158
+ #: ../lib/yasr-ajax-functions.php:722
1159
  msgid "Now I'm going to import Multi Set data"
1160
  msgstr "Der Import der Multi-Set Daten wird gestartet"
1161
 
1162
  # @ yasr
1163
+ #: ../lib/yasr-ajax-functions.php:733
1164
  msgid "All votes has been successfull imported."
1165
  msgstr "Alle Bewertungen wurden erfolgreich importiert."
1166
 
1167
  # @ yasr
1168
+ #: ../lib/yasr-ajax-functions.php:735
1169
  msgid "Done"
1170
  msgstr "Fertig"
1171
 
1172
  # @ yasr
1173
+ #: ../lib/yasr-ajax-functions.php:740
1174
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
1175
  msgstr ""
1176
  "Es wurden Multi-Set Bewertungen gefunden aber diese konnten nicht in der "
1177
  "Datenbank gespeichert werden."
1178
 
1179
  # @ yasr
1180
+ #: ../lib/yasr-ajax-functions.php:748
1181
  msgid "I've found Multi Set but with no data"
1182
  msgstr "Das Multi-Set wurde gefunden aber es sind keine Daten vorhanden"
1183
 
1184
  # @ yasr
1185
+ #: ../lib/yasr-ajax-functions.php:757
1186
  msgid "I've found Multi Sets names but I couldn't insert into db"
1187
  msgstr ""
1188
  "Multi-Set Namen wurde gefunden aber konnten nicht in die Datenbank "
1189
  "importiert werden"
1190
 
1191
  # @ yasr
1192
+ #: ../lib/yasr-ajax-functions.php:765
1193
  msgid "Multisets were not found. Imported is done!"
1194
  msgstr "Kein Multi-Set gefunden aber Import war erfolgreich!"
1195
 
1196
  # @ yasr
1197
+ #: ../lib/yasr-ajax-functions.php:809
1198
  msgid "No Recenet votes yet"
1199
  msgstr "Keine kürzlichen Bewertungen"
1200
 
1201
  # @ yasr
1202
+ #: ../lib/yasr-ajax-functions.php:976 ../lib/yasr-ajax-functions.php:1118
1203
  msgid "Error: you can't vote 0"
1204
  msgstr "Fehler: Sie können nicht 0 wählen!"
1205
 
1206
  # @ yasr
1207
+ #: ../lib/yasr-ajax-functions.php:1072 ../lib/yasr-ajax-functions.php:1080
1208
  msgid "Average rating"
1209
  msgstr "Durchschnittsbewertung"
1210
 
1211
  # @ yasr
1212
+ #: ../lib/yasr-ajax-functions.php:1073 ../lib/yasr-ajax-functions.php:1081
1213
  msgid "Vote Saved"
1214
  msgstr "Bewertung gespeichert"
1215
 
1216
  # @ yasr
1217
+ #: ../lib/yasr-ajax-functions.php:1214
1218
  msgid "Vote updated"
1219
  msgstr "Bewertung aktualisiert"
1220
 
1221
  # @ yasr
1222
+ #: ../lib/yasr-ajax-functions.php:1289
1223
  msgid "Average "
1224
  msgstr "Durchschnitt: "
1225
 
1226
  # @ yasr
1227
+ #: ../lib/yasr-ajax-functions.php:1300
1228
  #, fuzzy
1229
  msgid "You've already voted this article"
1230
  msgstr "Du hast hier bewertet mit "
1231
 
1232
  # @ yasr
1233
+ #: ../lib/yasr-ajax-functions.php:1420
1234
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:643
1235
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:681
1236
  #, fuzzy
1237
  msgid "stars"
1238
  msgstr "Sterne"
1239
 
1240
+ # @ yasr
1241
+ #: ../lib/yasr-ajax-functions.php:1425
1242
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:653
1243
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:684
1244
+ #, fuzzy
1245
+ msgid "star"
1246
+ msgstr "Sterne"
1247
+
1248
+ # @ yasr
1249
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:126
1250
+ #, fuzzy
1251
+ msgid "You don't have any votes stored with this params"
1252
+ msgstr "Es sind keine Autoren-Bewertungen gespeichert"
1253
+
1254
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:292
1255
+ msgid ""
1256
+ "You've not enought data. Try to choose a lower number of votes for most "
1257
+ "rated page"
1258
+ msgstr ""
1259
+
1260
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:327
1261
+ msgid ""
1262
+ "You've not enought data. Try to choose a lower number of votes for highest "
1263
+ "rated page"
1264
+ msgstr ""
1265
+
1266
+ # @ default
1267
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:442
1268
+ #, fuzzy
1269
+ msgid ""
1270
+ "Problem while retriving the most active reviewers chart. Did you published "
1271
+ "any review?"
1272
+ msgstr ""
1273
+ "Problem beim Abrufen die Top-5 aktivsten Rezensenten. Haben Sie irgendeine "
1274
+ "Bewertung veröffentlicht"
1275
+
1276
+ # @ default
1277
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:539
1278
+ #, fuzzy
1279
+ msgid ""
1280
+ "Problem while retriving the top 10 active users chart. Are you sure you have "
1281
+ "votes to show?"
1282
+ msgstr ""
1283
+ "Problem beim Abrufen der Top 10 von aktiven Nutzern anzuzeigen.. Sind Sie "
1284
+ "sicher, dass Sie auch Stimmen, zum anzeigen haben?"
1285
+
1286
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:724
1287
+ #: ../lib/pro/yasr-pro-shortcode-functions.php:817
1288
+ msgid "Comment Reviews for this post are disabled. Please enable it first"
1289
+ msgstr ""
1290
+
1291
+ # @ yasr
1292
+ #: ../lib/pro/yasr-pro-ajax-functions.php:41
1293
+ #: ../lib/pro/yasr-pro-ajax-functions.php:82
1294
+ #: ../lib/pro/yasr-pro-ajax-functions.php:123
1295
+ #: ../lib/pro/yasr-pro-ajax-functions.php:164
1296
+ #, fuzzy
1297
+ msgid "Shortcode Saved"
1298
+ msgstr "Bewertung gespeichert"
1299
+
1300
+ #: ../lib/pro/yasr-pro-ajax-functions.php:44
1301
+ #: ../lib/pro/yasr-pro-ajax-functions.php:85
1302
+ #: ../lib/pro/yasr-pro-ajax-functions.php:126
1303
+ #: ../lib/pro/yasr-pro-ajax-functions.php:167
1304
+ #: ../lib/pro/yasr-pro-ajax-functions.php:265
1305
+ #: ../lib/pro/yasr-pro-ajax-functions.php:319
1306
+ #: ../lib/pro/EDD_SL_Plugin_Updater.php:425
1307
+ msgid "Something goes wrong"
1308
+ msgstr ""
1309
+
1310
+ #: ../lib/pro/yasr-pro-ajax-functions.php:207
1311
+ msgid "Reviews in comments enbaled"
1312
+ msgstr ""
1313
+
1314
+ #: ../lib/pro/yasr-pro-ajax-functions.php:213
1315
+ msgid "Reviews in comments disabled"
1316
+ msgstr ""
1317
+
1318
+ # @ yasr
1319
+ #: ../lib/pro/yasr-pro-ajax-functions.php:221
1320
+ #, fuzzy
1321
+ msgid "Something goes wrong. Try again or report it."
1322
+ msgstr ""
1323
+ "Beim einfügen des Multi-Set Feldnamens ist etwas schief gelaufen. Bitte "
1324
+ "melde das Problem"
1325
+
1326
+ #: ../lib/pro/yasr-pro-ajax-functions.php:295
1327
+ msgid "Title must be at least 2 chars"
1328
+ msgstr ""
1329
+
1330
+ #: ../lib/pro/yasr-pro-ajax-functions.php:302
1331
+ msgid "Title must be shorter than 100 chars"
1332
+ msgstr ""
1333
+
1334
+ # @ yasr
1335
+ #: ../lib/pro/yasr-pro-ajax-functions.php:314
1336
+ #, fuzzy
1337
+ msgid "Title Updated"
1338
+ msgstr "Bewertung aktualisiert"
1339
+
1340
+ #: ../lib/pro/EDD_SL_Plugin_Updater.php:154
1341
+ #, php-format
1342
+ msgid ""
1343
+ "There is a new version of %1$s available. <a target=\"_blank\" class="
1344
+ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
1345
+ msgstr ""
1346
+
1347
+ #: ../lib/pro/EDD_SL_Plugin_Updater.php:161
1348
+ #, php-format
1349
+ msgid ""
1350
+ "There is a new version of %1$s available. <a target=\"_blank\" class="
1351
+ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
1352
+ "\">update now</a>."
1353
+ msgstr ""
1354
+
1355
+ # @ yasr
1356
+ #: ../lib/pro/EDD_SL_Plugin_Updater.php:301
1357
+ #, fuzzy
1358
+ msgid "You do not have permission to install plugin updates"
1359
+ msgstr ""
1360
+ "Du verfügst nicht über ausreichende Berechtigungen um auf diese Seite "
1361
+ "zuzugreifen."
1362
+
1363
+ #: ../lib/pro/EDD_SL_Plugin_Updater.php:301
1364
+ msgid "Error"
1365
+ msgstr ""
1366
+
1367
+ #: ../lib/pro/EDD_SL_Plugin_Updater.php:421
1368
+ msgid "A regular license was saved, update this page"
1369
+ msgstr ""
1370
+
1371
+ #: ../lib/pro/EDD_SL_Plugin_Updater.php:434
1372
+ msgid "This license is invalid"
1373
+ msgstr ""
1374
+
1375
+ # @ yasr
1376
+ #: ../lib/pro/EDD_SL_Plugin_Updater.php:446
1377
+ #, fuzzy
1378
+ msgid "Something goes wrong tryng to activating license. Please report it"
1379
+ msgstr ""
1380
+ "Beim Löschen des Multi-Sets ist etwas schief gelaufen. Bitte melde das "
1381
+ "Problem"
1382
+
1383
+ #: ../lib/pro/yasr-pro-functions.php:37
1384
+ msgid "Reviews in comments for this post / page are ENABLED"
1385
+ msgstr ""
1386
+
1387
+ #: ../lib/pro/yasr-pro-functions.php:43
1388
+ msgid "Reviews in comments for this post / page are DISABLED"
1389
+ msgstr ""
1390
+
1391
+ #: ../lib/pro/yasr-pro-functions.php:53
1392
+ msgid "Check / unchek to enable/disable reviews in comments "
1393
+ msgstr ""
1394
+
1395
+ # @ yasr
1396
+ #: ../lib/pro/yasr-pro-comment-form-functions.php:100
1397
+ #, fuzzy
1398
+ msgid "If you want to leave a review, please"
1399
+ msgstr "Vorhandene Multi-Sets"
1400
+
1401
+ #: ../lib/pro/yasr-pro-comment-form-functions.php:101
1402
+ msgid "Login"
1403
+ msgstr ""
1404
+
1405
+ #: ../lib/pro/yasr-pro-comment-form-functions.php:103
1406
+ msgid "or"
1407
+ msgstr ""
1408
+
1409
+ #: ../lib/pro/yasr-pro-comment-form-functions.php:104
1410
+ msgid "Register"
1411
+ msgstr ""
1412
+
1413
+ #: ../lib/pro/yasr-pro-comment-form-functions.php:106
1414
+ msgid "first."
1415
+ msgstr ""
1416
+
1417
+ #: ../lib/pro/yasr-pro-comment-form-functions.php:116
1418
+ msgid "Add your own review"
1419
+ msgstr ""
1420
+
1421
+ #: ../lib/pro/yasr-pro-comment-form-functions.php:133
1422
+ msgid "Review Summary"
1423
+ msgstr ""
1424
+
1425
+ # @ yasr
1426
+ #: ../lib/pro/yasr-pro-settings-functions.php:20
1427
+ #, fuzzy
1428
+ msgid "Build Overall Rating Chart"
1429
+ msgstr "Gesamtbewertung"
1430
+
1431
+ # @ yasr
1432
+ #: ../lib/pro/yasr-pro-settings-functions.php:28
1433
+ #: ../lib/pro/yasr-pro-settings-functions.php:214
1434
+ #: ../lib/pro/yasr-pro-settings-functions.php:446
1435
+ #: ../lib/pro/yasr-pro-settings-functions.php:530
1436
+ #, fuzzy
1437
+ msgid "Show Options"
1438
+ msgstr "Style Optionen"
1439
+
1440
+ # @ yasr
1441
+ #: ../lib/pro/yasr-pro-settings-functions.php:30
1442
+ #: ../lib/pro/yasr-pro-settings-functions.php:216
1443
+ #: ../lib/pro/yasr-pro-settings-functions.php:448
1444
+ #: ../lib/pro/yasr-pro-settings-functions.php:532
1445
+ #, fuzzy
1446
+ msgid "Hide Options"
1447
+ msgstr "Style Optionen"
1448
+
1449
+ #: ../lib/pro/yasr-pro-settings-functions.php:34
1450
+ #: ../lib/pro/yasr-pro-settings-functions.php:220
1451
+ #: ../lib/pro/yasr-pro-settings-functions.php:452
1452
+ #: ../lib/pro/yasr-pro-settings-functions.php:536
1453
+ msgid "How many rows do you want to display?"
1454
+ msgstr ""
1455
+
1456
+ # @ yasr
1457
+ #: ../lib/pro/yasr-pro-settings-functions.php:79
1458
+ #, fuzzy
1459
+ msgid "Show text before or after the stars?"
1460
+ msgstr ""
1461
+ "Benutzerdefinierter Text der vor oder nach der Bewertung angezeigt wird"
1462
+
1463
+ # @ yasr
1464
+ #: ../lib/pro/yasr-pro-settings-functions.php:87
1465
+ #, fuzzy
1466
+ msgid "Yes, before the stars"
1467
+ msgstr "Vor dem Artikel"
1468
+
1469
+ # @ yasr
1470
+ #: ../lib/pro/yasr-pro-settings-functions.php:91
1471
+ #, fuzzy
1472
+ msgid "Yes, after the stars"
1473
+ msgstr "Nach dem Artikel"
1474
+
1475
+ #: ../lib/pro/yasr-pro-settings-functions.php:95
1476
+ msgid "Text to show"
1477
+ msgstr ""
1478
+
1479
+ # @ yasr
1480
+ #: ../lib/pro/yasr-pro-settings-functions.php:97
1481
+ #, fuzzy
1482
+ msgid "Rating:"
1483
+ msgstr "Bewertung"
1484
+
1485
+ #: ../lib/pro/yasr-pro-settings-functions.php:102
1486
+ #: ../lib/pro/yasr-pro-settings-functions.php:333
1487
+ msgid "Do you want to specify a category?"
1488
+ msgstr ""
1489
+
1490
+ # @ yasr
1491
+ #: ../lib/pro/yasr-pro-settings-functions.php:137
1492
+ #: ../lib/pro/yasr-pro-settings-functions.php:369
1493
+ #, fuzzy
1494
+ msgid "Do you want to specify a custom post type?"
1495
+ msgstr "Verwenden Sie nur in benutzerdefinierte Post-Typen?"
1496
+
1497
+ # @ yasr
1498
+ #: ../lib/pro/yasr-pro-settings-functions.php:164
1499
+ #: ../lib/pro/yasr-pro-settings-functions.php:396
1500
+ #, fuzzy
1501
+ msgid "You don't use custom post types"
1502
+ msgstr "Verwenden Sie nur in benutzerdefinierte Post-Typen?"
1503
+
1504
+ # @ yasr
1505
+ #: ../lib/pro/yasr-pro-settings-functions.php:173
1506
+ #: ../lib/pro/yasr-pro-settings-functions.php:405
1507
+ #: ../lib/pro/yasr-pro-settings-functions.php:491
1508
+ #: ../lib/pro/yasr-pro-settings-functions.php:575
1509
+ #, fuzzy
1510
+ msgid "Create Shortcode"
1511
+ msgstr "Neues Multi-Set anlegen"
1512
+
1513
+ #: ../lib/pro/yasr-pro-settings-functions.php:177
1514
+ #: ../lib/pro/yasr-pro-settings-functions.php:409
1515
+ #: ../lib/pro/yasr-pro-settings-functions.php:494
1516
+ #: ../lib/pro/yasr-pro-settings-functions.php:578
1517
+ msgid ""
1518
+ "This is the shortcode you've just created: paste it in the post or page "
1519
+ "where you want to make it appears"
1520
+ msgstr ""
1521
+
1522
+ #: ../lib/pro/yasr-pro-settings-functions.php:181
1523
+ #: ../lib/pro/yasr-pro-settings-functions.php:413
1524
+ #: ../lib/pro/yasr-pro-settings-functions.php:498
1525
+ #: ../lib/pro/yasr-pro-settings-functions.php:582
1526
+ msgid "Do you want to add this shortcode in the visual shortcode creator?"
1527
+ msgstr ""
1528
+
1529
+ #: ../lib/pro/yasr-pro-settings-functions.php:184
1530
+ #: ../lib/pro/yasr-pro-settings-functions.php:416
1531
+ #: ../lib/pro/yasr-pro-settings-functions.php:501
1532
+ #: ../lib/pro/yasr-pro-settings-functions.php:585
1533
+ msgid "Yes, save it!"
1534
+ msgstr ""
1535
+
1536
+ #: ../lib/pro/yasr-pro-settings-functions.php:190
1537
+ #: ../lib/pro/yasr-pro-settings-functions.php:422
1538
+ #: ../lib/pro/yasr-pro-settings-functions.php:507
1539
+ #: ../lib/pro/yasr-pro-settings-functions.php:591
1540
+ msgid ""
1541
+ "You DON'T NEED to save this shortcode to make it work. You can just copy and "
1542
+ "paste in a post or page"
1543
+ msgstr ""
1544
+
1545
+ # @ yasr
1546
+ #: ../lib/pro/yasr-pro-settings-functions.php:206
1547
+ #, fuzzy
1548
+ msgid "Build Visitor Votes Chart"
1549
+ msgstr "Besucherbewertung"
1550
+
1551
+ # @ yasr
1552
+ #: ../lib/pro/yasr-pro-settings-functions.php:267
1553
+ #, fuzzy
1554
+ msgid "Choose default view"
1555
+ msgstr "Größe wählen"
1556
+
1557
+ #: ../lib/pro/yasr-pro-settings-functions.php:279
1558
+ msgid "Number of minimum votes for most rated page"
1559
+ msgstr ""
1560
+
1561
+ #: ../lib/pro/yasr-pro-settings-functions.php:306
1562
+ msgid "Number of minimum votes for highest rated page"
1563
+ msgstr ""
1564
+
1565
+ # @ yasr
1566
+ #: ../lib/pro/yasr-pro-settings-functions.php:438
1567
+ #, fuzzy
1568
+ msgid "Build Most Active Reviewers Chart"
1569
+ msgstr "meist aktivste Bewertungen einfügen"
1570
+
1571
+ #: ../lib/pro/yasr-pro-settings-functions.php:479
1572
+ #: ../lib/pro/yasr-pro-settings-functions.php:563
1573
+ msgid "Do you want to use Username or Display Name?"
1574
+ msgstr ""
1575
+
1576
+ #: ../lib/pro/yasr-pro-settings-functions.php:483
1577
+ #: ../lib/pro/yasr-pro-settings-functions.php:567
1578
+ msgid "Username"
1579
+ msgstr ""
1580
+
1581
+ #: ../lib/pro/yasr-pro-settings-functions.php:487
1582
+ #: ../lib/pro/yasr-pro-settings-functions.php:571
1583
+ msgid "User display name"
1584
+ msgstr ""
1585
+
1586
+ # @ yasr
1587
+ #: ../lib/pro/yasr-pro-settings-functions.php:522
1588
+ #, fuzzy
1589
+ msgid "Build Most Active Users charts"
1590
+ msgstr "meist aktivste Benutzer"
1591
+
1592
+ # @ yasr
1593
+ #: ../lib/pro/yasr-pro-settings-functions.php:627
1594
+ #, fuzzy
1595
+ msgid "Yasr Pro General Options"
1596
+ msgstr "Allgemeine Einstellungen"
1597
+
1598
+ # @ yasr
1599
+ #: ../lib/pro/yasr-pro-settings-functions.php:628
1600
+ #, fuzzy
1601
+ msgid "Choose Stars Set"
1602
+ msgstr "Größe wählen"
1603
+
1604
+ #: ../lib/pro/yasr-pro-settings-functions.php:629
1605
+ msgid "Review In Comments Options"
1606
+ msgstr ""
1607
+
1608
+ #: ../lib/pro/yasr-pro-settings-functions.php:670
1609
+ msgid ""
1610
+ "First star is the empty one, second appears when mouse is hover and last is "
1611
+ "the one showing rating"
1612
+ msgstr ""
1613
+
1614
+ #: ../lib/pro/yasr-pro-settings-functions.php:672
1615
+ msgid "Just a reminder: here you choose only the theme and not the size!"
1616
+ msgstr ""
1617
+
1618
+ # @ yasr
1619
+ #: ../lib/pro/yasr-pro-settings-functions.php:691
1620
+ #, fuzzy
1621
+ msgid "Use auto insert?"
1622
+ msgstr "Bewertung automatisch einfügen?"
1623
+
1624
+ #: ../lib/pro/yasr-pro-settings-functions.php:707
1625
+ msgid ""
1626
+ "By enabling this, in every comment form YASR will add the fields in order to "
1627
+ "enable your visitors to add their own reviews."
1628
+ msgstr ""
1629
+
1630
+ #: ../lib/pro/yasr-pro-settings-functions.php:709
1631
+ msgid ""
1632
+ "If you choose \"Yes\" but want to exclude a specific post or page, just open "
1633
+ "the editor page and disable it. "
1634
+ msgstr ""
1635
+
1636
+ #: ../lib/pro/yasr-pro-settings-functions.php:711
1637
+ msgid "Vice versa if you choose \"No\". "
1638
+ msgstr ""
1639
+
1640
+ # @ yasr
1641
+ #: ../lib/pro/yasr-pro-settings-functions.php:718
1642
+ #, fuzzy
1643
+ msgid "Size?"
1644
+ msgstr "Größe"
1645
+
1646
+ #: ../lib/pro/yasr-pro-settings-functions.php:791
1647
+ msgid "Your license is valid and active."
1648
+ msgstr ""
1649
+
1650
+ #: ../lib/pro/yasr-pro-settings-functions.php:794
1651
+ msgid "Will expire on"
1652
+ msgstr ""
1653
+
1654
+ #: ../lib/pro/yasr-pro-settings-functions.php:811
1655
+ #: ../lib/pro/yasr-pro-settings-functions.php:827
1656
+ msgid "Enter your license key"
1657
+ msgstr ""
1658
+
1659
+ #: ../lib/pro/yasr-pro-settings-functions.php:813
1660
+ msgid ""
1661
+ "This license is invalid. Insert the valid one and click on Activate License"
1662
+ msgstr ""
1663
+
1664
+ #: ../lib/pro/yasr-pro-settings-functions.php:815
1665
+ #: ../lib/pro/yasr-pro-settings-functions.php:830
1666
+ msgid "Activate License"
1667
+ msgstr ""
1668
+
1669
+ #: ../lib/pro/yasr-pro-settings-functions.php:837
1670
+ msgid "License in needed to get updates and support."
1671
+ msgstr ""
1672
+
1673
+ #: ../lib/pro/yasr-pro-settings-functions.php:839
1674
+ msgid ""
1675
+ "When your license will expire you'll need to renew it if you want to get "
1676
+ "support and updates."
1677
+ msgstr ""
1678
+
1679
+ # @ yasr
1680
+ #~ msgid ""
1681
+ #~ "Seems like you've imported gd star rating in the past, but then deleted "
1682
+ #~ "the logs table. For now, you can't enable statistics"
1683
+ #~ msgstr ""
1684
+ #~ "Es scheint, dass Sie GD Sterne in der Vergangenheit importiert haben, "
1685
+ #~ "aber dann die Protokoll Tabelle gelöscht wurde. Jetzt können Sie keine "
1686
+ #~ "Statistiken ermöglichen"
1687
+
1688
+ # @ yasr
1689
+ #, fuzzy
1690
+ #~ msgid "Theme"
1691
+ #~ msgstr "Dunkles Theme"
1692
+
1693
+ # @ default
1694
+ #, fuzzy
1695
+ #~ msgid "Choose which Star Set you wish to use"
1696
+ #~ msgstr "Wähle ein Multi-Set aus"
1697
+
1698
+ # @ yasr
1699
+ #~ msgid "Pro Features!"
1700
+ #~ msgstr "Pro Funktionen!"
1701
+
1702
+ # @ yasr
1703
+ #~ msgid "Donations"
1704
+ #~ msgstr "Spenden"
1705
+
1706
+ # @ yasr
1707
+ #~ msgid ""
1708
+ #~ "If you have found this plugin useful, please consider making a donation "
1709
+ #~ "to help support future development. Your support will be much "
1710
+ #~ "appreciated. "
1711
+ #~ msgstr ""
1712
+ #~ "Wenn du das Plugin nützlich gefunden hast, dann unterstütze doch die "
1713
+ #~ "Weiterentwicklung mit einer kleinen Spende. Deine Unterstützung ist uns "
1714
+ #~ "viel Wert."
1715
+
1716
+ # @ yasr
1717
+ #~ msgid "Thank you!"
1718
+ #~ msgstr "Herzlichen Dank!"
1719
+
1720
+ # @ yasr
1721
+ #~ msgid "Looking for more features?"
1722
+ #~ msgstr "Auf der Suche nach mehr Funktionen?"
1723
+
1724
+ #~ msgid "Upgrade to yasr pro!"
1725
+ #~ msgstr "Zu Yasr Pro wechseln!"
1726
+
1727
+ # @ yasr
1728
+ #, fuzzy
1729
+ #~ msgid "Multi Set Support"
1730
+ #~ msgstr "Multi-Sets"
1731
+
1732
+ # @ yasr
1733
+ #, fuzzy
1734
+ #~ msgid "Logs and stats for visitors votes"
1735
+ #~ msgstr "Wollen Sie Statistiken für Besucher-Stimmen zeigen?"
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: 2015-04-06 10:06+0100\n"
5
- "PO-Revision-Date: 2015-04-06 10:06+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
@@ -20,7 +20,8 @@ msgstr ""
20
  msgid "Rate this article / item"
21
  msgstr "Vota questo articolo / oggetto"
22
 
23
- #: ../yasr-metabox-top-right.php:71 ../lib/yasr-shortcode-functions.php:136
 
24
  msgid "Loading, please wait"
25
  msgstr "Caricamento, attendere prego"
26
 
@@ -28,20 +29,20 @@ msgstr "Caricamento, attendere prego"
28
  msgid "Save Vote"
29
  msgstr "Salva Voto"
30
 
31
- #: ../yasr-metabox-top-right.php:164
32
  msgid "This review is about a..."
33
  msgstr "Questa recensione è..."
34
 
35
- #: ../yasr-metabox-top-right.php:169
36
- msgid "Product, Places, Other"
37
- msgstr "Prodotto, Posto, Altro"
38
 
39
- #: ../yasr-metabox-top-right.php:197 ../yasr-metabox-multiple-rating.php:46
40
- #: ../lib/yasr-settings-functions.php:517
41
  msgid "Select"
42
  msgstr "Seleziona"
43
 
44
- #: ../yasr-metabox-top-right.php:215
45
  msgid ""
46
  "Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
47
  "where you want to display this rating"
@@ -49,9 +50,9 @@ msgstr ""
49
  "Ricorda di inserire questo shortcode <strong>[yasr_overall_rating]</strong> "
50
  "dove vuoi far apparire questo voto"
51
 
52
- #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:111
53
  #: ../lib/yasr-ajax-functions.php:44 ../lib/yasr-ajax-functions.php:187
54
- #: ../lib/yasr-ajax-functions.php:332 ../lib/yasr-ajax-functions.php:736
55
  msgid "You do not have sufficient permissions to access this page."
56
  msgstr "Non hai permeessi sufficienti per accedere a questa pagina"
57
 
@@ -75,8 +76,8 @@ msgstr "Stili"
75
  msgid "Pro Features!"
76
  msgstr "Funzioni Pro!"
77
 
78
- #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:254
79
- #: ../yasr-settings-page.php:294
80
  msgid "Save"
81
  msgstr "Salva"
82
 
@@ -175,13 +176,13 @@ msgstr ""
175
  msgid "Close this message"
176
  msgstr "Chiudi questo messaggio"
177
 
178
- #: ../yasr-settings-page.php:264 ../lib/yasr-settings-functions.php:1306
179
- #: ../lib/yasr-settings-functions.php:1332
180
  msgid "Donations"
181
  msgstr "Donazioni"
182
 
183
- #: ../yasr-settings-page.php:266 ../lib/yasr-settings-functions.php:1308
184
- #: ../lib/yasr-settings-functions.php:1334
185
  msgid ""
186
  "If you have found this plugin useful, please consider making a donation to "
187
  "help support future development. Your support will be much appreciated. "
@@ -190,8 +191,8 @@ msgstr ""
190
  "supportarne lo sviluppo. Il tuo aiuto sarà molto apprezzato! P.s. YASR è "
191
  "made in Italy ;)"
192
 
193
- #: ../yasr-settings-page.php:268 ../lib/yasr-settings-functions.php:1310
194
- #: ../lib/yasr-settings-functions.php:1336
195
  msgid "Thank you!"
196
  msgstr "Grazie!"
197
 
@@ -199,76 +200,81 @@ msgstr "Grazie!"
199
  msgid "Choose wich set you want to use"
200
  msgstr "Scegli che set vuoi usare"
201
 
202
- #: ../lib/yasr-shortcode-functions.php:187
203
- #: ../lib/yasr-shortcode-functions.php:209
 
204
  msgid "You've already voted this article with"
205
  msgstr "Hai già votato questo articolo con "
206
 
207
- #: ../lib/yasr-shortcode-functions.php:220
 
208
  msgid "You must sign to vote"
209
  msgstr "Devi fare il login per votare"
210
 
211
- #: ../lib/yasr-shortcode-functions.php:243 ../lib/yasr-ajax-functions.php:1016
212
- #: ../lib/yasr-ajax-functions.php:1024 ../lib/yasr-ajax-functions.php:1157
213
- #: ../lib/yasr-ajax-functions.php:1235
214
  msgid "Total: "
215
  msgstr "Voti: "
216
 
217
- #: ../lib/yasr-shortcode-functions.php:243
218
  msgid "Average: "
219
  msgstr "Media Voto: "
220
 
221
- #: ../lib/yasr-shortcode-functions.php:263
222
  msgid "bad, poor, ok, good, super"
223
  msgstr "pessimo, scarso, ok, buono, super"
224
 
225
- #: ../lib/yasr-shortcode-functions.php:502
 
 
 
 
226
  msgid "Rating"
227
  msgstr "Voto"
228
 
229
- #: ../lib/yasr-shortcode-functions.php:516
230
  msgid "You don't have any votes stored"
231
  msgstr "Non hai alcun voto salvato"
232
 
233
- #: ../lib/yasr-shortcode-functions.php:552
234
- #: ../lib/yasr-shortcode-functions.php:590
235
  msgid "Post / Page"
236
  msgstr "Post / Pagina"
237
 
238
- #: ../lib/yasr-shortcode-functions.php:553
239
- #: ../lib/yasr-shortcode-functions.php:591
240
  msgid "Order By"
241
  msgstr "Ordina per"
242
 
243
- #: ../lib/yasr-shortcode-functions.php:553
244
- #: ../lib/yasr-shortcode-functions.php:591
245
  msgid "Most Rated"
246
  msgstr "Più Votati"
247
 
248
- #: ../lib/yasr-shortcode-functions.php:553
249
- #: ../lib/yasr-shortcode-functions.php:591
250
  msgid "Highest Rated"
251
  msgstr "Voto più alto"
252
 
253
- #: ../lib/yasr-shortcode-functions.php:570
254
- #: ../lib/yasr-shortcode-functions.php:605
255
  msgid "Total:"
256
  msgstr "Voti:"
257
 
258
- #: ../lib/yasr-shortcode-functions.php:570
259
- #: ../lib/yasr-shortcode-functions.php:605
260
  msgid "Average"
261
  msgstr "Media"
262
 
263
- #: ../lib/yasr-shortcode-functions.php:582
264
  msgid "You've not enough data"
265
  msgstr "Non hai abbastanza dati"
266
 
267
- #: ../lib/yasr-shortcode-functions.php:617
268
  msgid "You've not enought data"
269
  msgstr "Non hai abbastanza dati"
270
 
271
- #: ../lib/yasr-shortcode-functions.php:702
272
  msgid ""
273
  "Problem while retrieving the top 5 most active reviewers. Did you publish "
274
  "any review?"
@@ -276,7 +282,7 @@ msgstr ""
276
  "C'è stato un problema nell'ottenere la classifica dei 5 recensori più "
277
  "attivi. Hai pubblicato qualche recensione?"
278
 
279
- #: ../lib/yasr-shortcode-functions.php:770
280
  msgid ""
281
  "Problem while retrieving the top 10 active users chart. Are you sure you "
282
  "have votes to show?"
@@ -284,131 +290,131 @@ msgstr ""
284
  "C'è stato un problema nell'ottenere la classifica dei 10 utenti più attivi. "
285
  "Sei sicuro di avere voti da mostrare?"
286
 
287
- #: ../lib/yasr-settings-functions.php:49
288
  msgid "General settings"
289
  msgstr "Impostazioni Generali"
290
 
291
- #: ../lib/yasr-settings-functions.php:50
292
  msgid "Auto insert options"
293
  msgstr "Opzioni inserimento automatico"
294
 
295
- #: ../lib/yasr-settings-functions.php:51
296
  msgid "Show \"Overall Rating\" in Archive Page?"
297
  msgstr "Mostrare il \"Voto Complessivo\" nella Pagine Archivio?"
298
 
299
- #: ../lib/yasr-settings-functions.php:52
300
  msgid "Show \"Visitor Votes\" in Archive Page?"
301
  msgstr "Mostare il \"Voto Utenti\" nelle Pagine Archivio?"
302
 
303
- #: ../lib/yasr-settings-functions.php:53
304
  msgid "Insert custom text to show before / after stars"
305
  msgstr "Inserisci testo personalizzato da mostrare prima / dopo le stelle"
306
 
307
- #: ../lib/yasr-settings-functions.php:54
308
  msgid "Do you want show stats for visitors votes?"
309
  msgstr "Vuoi mostrare le statistiche per i voti utenti?"
310
 
311
- #: ../lib/yasr-settings-functions.php:55
312
  msgid "Allow only logged in user to vote?"
313
  msgstr "Permettere la votazione ai soli utenti loggati?"
314
 
315
- #: ../lib/yasr-settings-functions.php:56
316
  msgid "Which rich snippets do you want to use?"
317
  msgstr "Quale rich snippets vuoi usare?"
318
 
319
- #: ../lib/yasr-settings-functions.php:57
320
  msgid "How do you want to rate \"Overall Rating\"?"
321
  msgstr "Cosa vuoi usare per inserire il \"Voto Complessivo\"?"
322
 
323
- #: ../lib/yasr-settings-functions.php:71
324
  msgid "Use Auto Insert?"
325
  msgstr "Usare l'inserimento automatico?"
326
 
327
- #: ../lib/yasr-settings-functions.php:74
328
- #: ../lib/yasr-settings-functions.php:143
329
- #: ../lib/yasr-settings-functions.php:161
330
- #: ../lib/yasr-settings-functions.php:203
331
- #: ../lib/yasr-settings-functions.php:229
332
- #: ../lib/yasr-settings-functions.php:261
333
- #: ../lib/yasr-settings-functions.php:296
334
  msgid "Yes"
335
  msgstr "Si"
336
 
337
- #: ../lib/yasr-settings-functions.php:88
338
- #: ../lib/yasr-settings-functions.php:148
339
- #: ../lib/yasr-settings-functions.php:166
340
- #: ../lib/yasr-settings-functions.php:208
341
- #: ../lib/yasr-settings-functions.php:234
342
- #: ../lib/yasr-settings-functions.php:266
343
- #: ../lib/yasr-settings-functions.php:301
344
  msgid "No"
345
  msgstr "No"
346
 
347
- #: ../lib/yasr-settings-functions.php:94
348
  msgid "What?"
349
  msgstr "Cosa?"
350
 
351
- #: ../lib/yasr-settings-functions.php:97
352
  msgid "Overall Rating / Author Rating"
353
  msgstr "Voto Complessivo / Voto Autore"
354
 
355
- #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
356
  msgid "Visitor Votes"
357
  msgstr "Voto Utenti"
358
 
359
- #: ../lib/yasr-settings-functions.php:105
360
  msgid "Both"
361
  msgstr "Entrambi"
362
 
363
- #: ../lib/yasr-settings-functions.php:109
364
  msgid "Where?"
365
  msgstr "Dove?"
366
 
367
- #: ../lib/yasr-settings-functions.php:112
368
  msgid "Before the post"
369
  msgstr "Prima del contenuto"
370
 
371
- #: ../lib/yasr-settings-functions.php:116
372
  msgid "After the post"
373
  msgstr "Dopo il contenuto"
374
 
375
- #: ../lib/yasr-settings-functions.php:121
376
  msgid "Size"
377
  msgstr "Grandezza"
378
 
379
- #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
380
- #: ../lib/yasr-ajax-functions.php:470
381
  msgid "Small"
382
  msgstr "Piccolo"
383
 
384
- #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
385
- #: ../lib/yasr-ajax-functions.php:471
386
  msgid "Medium"
387
  msgstr "Medio"
388
 
389
- #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
390
- #: ../lib/yasr-ajax-functions.php:472
391
  msgid "Large"
392
  msgstr "Grande"
393
 
394
- #: ../lib/yasr-settings-functions.php:140
395
  msgid "Exclude Pages?"
396
  msgstr "Escludere pagine?"
397
 
398
- #: ../lib/yasr-settings-functions.php:158
399
  msgid "Use only in custom post types?"
400
  msgstr "Usare solo nei custom post type?"
401
 
402
- #: ../lib/yasr-settings-functions.php:170
403
  msgid "You see this because you use custom post types."
404
  msgstr "Vedi questo perché usi i custom post type."
405
 
406
- #: ../lib/yasr-settings-functions.php:172
407
  msgid "If you want to use auto insert only in custom post types, choose Yes"
408
  msgstr ""
409
  "Se vuoi usare l'inserimento automatico solo nei custom post type, spunta Si"
410
 
411
- #: ../lib/yasr-settings-functions.php:212
412
  msgid ""
413
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
414
  "article or page, but also in pages like Home Page, category pages or "
@@ -418,7 +424,7 @@ msgstr ""
418
  "articolo o nella singola pagina, ma anche in pagine come l' Home Page, "
419
  "categorie o archivi"
420
 
421
- #: ../lib/yasr-settings-functions.php:238
422
  msgid ""
423
  "If you enable this, \"Visitor Votes\" will be showed not only in the single "
424
  "article or page, but also in pages like Home Page, category pages or "
@@ -428,40 +434,60 @@ msgstr ""
428
  "articolo o nella singola pagina, ma anche in pagine come l' Home Page, "
429
  "categorie o archivi"
430
 
431
- #: ../lib/yasr-settings-functions.php:271
432
  msgid "Custom text to display before Overall Rating"
433
  msgstr "Testo personalizzato da visualizzare prima del Voto Complessivo"
434
 
435
- #: ../lib/yasr-settings-functions.php:276
436
- msgid "Custom text to display before Visitor Rating"
437
- msgstr "Testo personalizzato da visualizzare prima del Voto Utenti"
438
 
439
- #: ../lib/yasr-settings-functions.php:281
 
 
 
 
440
  msgid "Custom text to display when a non logged user has already rated"
441
  msgstr ""
442
  "Testo personalizzato da mostrare quanto un utente non loggato ha già votato"
443
 
444
- #: ../lib/yasr-settings-functions.php:319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445
  msgid "Allow only logged-in users"
446
  msgstr "Permetti solo agli utenti loggati"
447
 
448
- #: ../lib/yasr-settings-functions.php:323
449
  msgid "Allow everybody (logged in and anonymous)"
450
  msgstr "Permetti a tutti (loggati ed anonimi)"
451
 
452
- #: ../lib/yasr-settings-functions.php:340
453
  msgid "Review Rating"
454
  msgstr "Voto Recensione"
455
 
456
- #: ../lib/yasr-settings-functions.php:344
457
  msgid "Aggregate Rating"
458
  msgstr "Media Voto Utenti"
459
 
460
- #: ../lib/yasr-settings-functions.php:349
461
  msgid "What is this?"
462
  msgstr "Cos'è questo?"
463
 
464
- #: ../lib/yasr-settings-functions.php:354
465
  msgid ""
466
  "If you select \"Review Rating\", your site will be indexed from search "
467
  "engines like this: "
@@ -469,51 +495,50 @@ msgstr ""
469
  "Se hai scelto \"Voto Recensione\", il sito verrà indicizzato dai motori di "
470
  "ricerca così:"
471
 
472
- #: ../lib/yasr-settings-functions.php:359
473
  msgid ""
474
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
475
  "this"
476
  msgstr ""
477
  "Se, invece, hai scelto \"Media Voto Utenti\", il sito verrà indicizzato così"
478
 
479
- #: ../lib/yasr-settings-functions.php:377
480
  msgid "Stars"
481
  msgstr "Stelle"
482
 
483
- #: ../lib/yasr-settings-functions.php:381
484
  msgid "Numbers"
485
  msgstr "Numeri"
486
 
487
- #: ../lib/yasr-settings-functions.php:406
488
  msgid "Which color scheme do you want to use?"
489
  msgstr "Che schema di colori vuoi usare?"
490
 
491
- #: ../lib/yasr-settings-functions.php:427
492
  msgid "Light"
493
  msgstr "Chiaro"
494
 
495
- #: ../lib/yasr-settings-functions.php:432
496
  msgid "Dark"
497
  msgstr "Scuro"
498
 
499
- #: ../lib/yasr-settings-functions.php:437
500
  msgid "Preview"
501
  msgstr "Anteprima"
502
 
503
- #: ../lib/yasr-settings-functions.php:442
504
  msgid "Light theme"
505
  msgstr "Tema chiaro"
506
 
507
- #: ../lib/yasr-settings-functions.php:447
508
- #, fuzzy
509
  msgid "Dark theme"
510
  msgstr "Tema scuro"
511
 
512
- #: ../lib/yasr-settings-functions.php:462
513
  msgid "Add New Multiple Set"
514
  msgstr "Set Multipli"
515
 
516
- #: ../lib/yasr-settings-functions.php:463
517
  msgid ""
518
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
519
  "characters"
@@ -521,48 +546,48 @@ msgstr ""
521
  "Nome, Elemento#1 e Elemento#2 DEVONO essere riempiti e devono essere lunghi "
522
  "almeno 3 caratteri"
523
 
524
- #: ../lib/yasr-settings-functions.php:466
525
  msgid "Name"
526
  msgstr "Nome"
527
 
528
- #: ../lib/yasr-settings-functions.php:471
529
  msgid "You can insert up to nine elements"
530
  msgstr "Puoi inserire fino a nove elementi"
531
 
532
- #: ../lib/yasr-settings-functions.php:476
533
  msgid "Element "
534
  msgstr "Elemento"
535
 
536
- #: ../lib/yasr-settings-functions.php:486
537
  msgid "Create New Set"
538
  msgstr "Crea Nuovo Set"
539
 
540
- #: ../lib/yasr-settings-functions.php:507
541
- #: ../lib/yasr-settings-functions.php:539
542
  msgid "Manage Multiple Set"
543
  msgstr "Gestisci Set Multiplo"
544
 
545
- #: ../lib/yasr-settings-functions.php:509
546
  msgid "Wich set do you want to edit or remove?"
547
  msgstr "Quale set vuoi modificare o rimuovere"
548
 
549
- #: ../lib/yasr-settings-functions.php:549
550
- #: ../lib/yasr-settings-functions.php:667
551
  msgid "Field name"
552
  msgstr "Nome campo"
553
 
554
- #: ../lib/yasr-settings-functions.php:553
555
- #: ../lib/yasr-settings-functions.php:671
556
  msgid "Remove"
557
  msgstr "Rimuovi"
558
 
559
- #: ../lib/yasr-settings-functions.php:595
560
- #: ../lib/yasr-settings-functions.php:713
561
  msgid "Remove whole set?"
562
  msgstr "Rimuovere l'intero set?"
563
 
564
- #: ../lib/yasr-settings-functions.php:608
565
- #: ../lib/yasr-settings-functions.php:726
566
  msgid ""
567
  "If you remove something you will remove all the votes for that set or field. "
568
  "This operation CAN'T BE undone."
@@ -570,63 +595,63 @@ msgstr ""
570
  "Se rimuovi qualcosa rimuoverai anche i voti per quel set o campo. Questa "
571
  "operazione NON PUÒ ESSERE ANNULLATA"
572
 
573
- #: ../lib/yasr-settings-functions.php:615
574
- #: ../lib/yasr-settings-functions.php:733
575
  msgid "You can use up to 9 elements"
576
  msgstr "Puoi usare fino a 9 elementi"
577
 
578
- #: ../lib/yasr-settings-functions.php:617
579
- #: ../lib/yasr-settings-functions.php:735
580
  msgid "Add element"
581
  msgstr "Aggiungi elemento"
582
 
583
- #: ../lib/yasr-settings-functions.php:619
584
- #: ../lib/yasr-settings-functions.php:737
585
  msgid "Save changes"
586
  msgstr "Salva modifiche"
587
 
588
- #: ../lib/yasr-settings-functions.php:629
589
  msgid "No Multiple Set were found"
590
  msgstr "Nessun Set Multiplo trovato"
591
 
592
- #: ../lib/yasr-settings-functions.php:879
593
- #: ../lib/yasr-settings-functions.php:1147
594
  msgid "Settings Saved"
595
  msgstr "Impostazioni Salvate"
596
 
597
- #: ../lib/yasr-settings-functions.php:884
598
  msgid "Something goes wrong trying insert set field name. Please report it"
599
  msgstr ""
600
  "Qualcosa è andato storto cercando di inserire un elemento. Per favore "
601
  "segnalalo"
602
 
603
- #: ../lib/yasr-settings-functions.php:890
604
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
605
  msgstr ""
606
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
607
  "favore segnalalo"
608
 
609
- #: ../lib/yasr-settings-functions.php:965
610
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
611
  msgstr ""
612
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
613
  "favore segnalalo"
614
 
615
- #: ../lib/yasr-settings-functions.php:1011
616
  msgid ""
617
  "Something goes wrong trying to delete a Multi Set's element. 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:1075
623
  msgid ""
624
  "Something goes wrong trying to update 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:1132
630
  msgid ""
631
  "Something goes wrong trying to insert set field name in edit form. Please "
632
  "report it"
@@ -634,15 +659,15 @@ msgstr ""
634
  "Qualcosa è andato storto cercando di inserire il campo nel form di modifica. "
635
  "Per favore segnalalo"
636
 
637
- #: ../lib/yasr-settings-functions.php:1175
638
  msgid "Style Options"
639
  msgstr "Opzioni Stili"
640
 
641
- #: ../lib/yasr-settings-functions.php:1176
642
  msgid "Custom CSS Styles"
643
  msgstr "Stili CSS Personalizzati"
644
 
645
- #: ../lib/yasr-settings-functions.php:1181
646
  msgid ""
647
  "Please use text area below to write your own CSS styles to override the "
648
  "default ones."
@@ -650,156 +675,148 @@ msgstr ""
650
  "Usa l'area di testo sottostante per scrivere le tue regole CSS che "
651
  "sovrascriveranno quelle di default"
652
 
653
- #: ../lib/yasr-settings-functions.php:1183
654
  msgid "Leave it blank if you don't know what you're doing"
655
  msgstr "Lascialo vuoto se non stai cosa stai facendo"
656
 
657
- #: ../lib/yasr-settings-functions.php:1206
658
  msgid "Looking for more features?"
659
  msgstr "Hai bisogno di più funzioni?"
660
 
661
- #: ../lib/yasr-settings-functions.php:1207
662
  msgid "Upgrade to yasr pro!"
663
  msgstr "Passa a yasr pro!"
664
 
665
- #: ../lib/yasr-settings-functions.php:1223
666
  msgid "Unlimited ratings and votes"
667
  msgstr "Voti e recensioni illimitate"
668
 
669
- #: ../lib/yasr-settings-functions.php:1229
670
  msgid "Works with shortcodes"
671
  msgstr "Funziona con gli shortcodes"
672
 
673
- #: ../lib/yasr-settings-functions.php:1235
674
  msgid "Multi Set Support"
675
  msgstr "Supporto Set Multipli"
676
 
677
- #: ../lib/yasr-settings-functions.php:1240
678
  msgid "Logs and stats for visitors votes"
679
  msgstr "Log e statistiche per i voti utenti"
680
 
681
- #: ../lib/yasr-settings-functions.php:1245
682
  msgid "Localization (.po and .mo files included)"
683
  msgstr "Traducibile (files .po e .mo inclusi)"
684
 
685
- #: ../lib/yasr-settings-functions.php:1250
686
  msgid "Rich Snippet Support"
687
  msgstr "Supporto per Rich Snippet"
688
 
689
- #: ../lib/yasr-settings-functions.php:1255
690
  msgid "Rankings for reviews, votes and users"
691
  msgstr "Classifiche per recensioni, voti e utenti"
692
 
693
- #: ../lib/yasr-settings-functions.php:1260
694
  msgid "Rankings Customization"
695
  msgstr "Personalizzazione Classifiche"
696
 
697
- #: ../lib/yasr-settings-functions.php:1265
698
  msgid "Stars Customization"
699
  msgstr "Personalizzazione Stelle"
700
 
701
- #: ../lib/yasr-settings-functions.php:1266
702
  msgid "Size Only"
703
  msgstr "Solo la grandezza"
704
 
705
- #: ../lib/yasr-settings-functions.php:1267
706
  msgid ""
707
  "Users can choose different ready to use sets or can upload their own images."
708
  msgstr ""
709
  "È possibile scegliere diversi set pronti all'uso o caricare le proprie "
710
  "immagini"
711
 
712
- #: ../lib/yasr-settings-functions.php:1270
713
- msgid "Visitors can vote on Multi Set"
714
- msgstr "I visitatori possono votare nei Multi Set"
715
-
716
- #: ../lib/yasr-settings-functions.php:1275
717
  msgid "Users can review in comments"
718
  msgstr "Gli utenti possono recensire nei commenti"
719
 
720
- #: ../lib/yasr-settings-functions.php:1286
721
  msgid "Not avaible yet"
722
  msgstr "Non ancora disponibile"
723
 
724
- #: ../lib/yasr-settings-functions.php:1318
725
- #: ../lib/yasr-settings-functions.php:1345
726
  msgid "Follow YASR official site!"
727
  msgstr "Segui il sito ufficiale di YASR!"
728
 
729
- #: ../lib/yasr-settings-functions.php:1375
730
  msgid "No previous Gd Star Rating installation was found"
731
  msgstr "Installazione precedente di Gd Star Rating non stata trovata"
732
 
733
- #: ../lib/yasr-db-functions.php:286
734
  msgid "No recenet votes yet"
735
  msgstr "Ancora nessun voto recente"
736
 
737
- #: ../lib/yasr-db-functions.php:301 ../lib/yasr-ajax-functions.php:761
738
  msgid "anonymous"
739
  msgstr "anonimo"
740
 
741
- #: ../lib/yasr-db-functions.php:310 ../lib/yasr-ajax-functions.php:770
742
  #, php-format
743
- msgid "Vote %d from %s on"
744
  msgstr ""
745
 
746
- #: ../lib/yasr-db-functions.php:326 ../lib/yasr-ajax-functions.php:786
747
  msgid "Ip address"
748
  msgstr "Indirizzo Ip"
749
 
750
- #: ../lib/yasr-db-functions.php:367 ../lib/yasr-ajax-functions.php:827
751
  msgid "Pages"
752
  msgstr "Pagine"
753
 
754
- #: ../lib/yasr-functions.php:99 ../lib/yasr-functions.php:100
755
  msgid "Yet Another Stars Rating: Settings"
756
  msgstr "Yet Another Stars Rating: Impostazioni"
757
 
758
  #: ../lib/yasr-functions.php:143
759
- msgid "YASR"
760
- msgstr ""
761
-
762
- #: ../lib/yasr-functions.php:144
763
  msgid "Yet Another Stars Rating: Multiple set"
764
  msgstr "Yet Another Stars Rating: Set Multipli"
765
 
766
- #: ../lib/yasr-functions.php:150
767
  msgid "Overall Rating"
768
  msgstr "Voto Complessivo "
769
 
770
- #: ../lib/yasr-functions.php:160
771
  msgid "You don't have enought privileges to insert Overall Rating"
772
  msgstr "Non hai permessi sufficienti per inserire il Voto Complessivo"
773
 
774
- #: ../lib/yasr-functions.php:170
775
  msgid "You don't have enought privileges to insert Multi Set"
776
  msgstr "Non hai abbastanza permessi per inserire un Multi Set"
777
 
778
- #: ../lib/yasr-functions.php:310
779
  msgid " reviewed by "
780
  msgstr " recensito da "
781
 
782
- #: ../lib/yasr-functions.php:311
783
  msgid " on "
784
  msgstr " il "
785
 
786
- #: ../lib/yasr-functions.php:312
787
  msgid " rated "
788
  msgstr " votato "
789
 
790
- #: ../lib/yasr-functions.php:312
791
  msgid " of"
792
  msgstr "su"
793
 
794
- #: ../lib/yasr-functions.php:359
795
  msgid " written by "
796
  msgstr " scritto da "
797
 
798
- #: ../lib/yasr-functions.php:361
799
  msgid " average rating "
800
  msgstr " media voto "
801
 
802
- #: ../lib/yasr-functions.php:362
803
  msgid " user ratings"
804
  msgstr " voti utenti "
805
 
@@ -822,127 +839,139 @@ msgstr ""
822
  msgid "Choose a vote for each element"
823
  msgstr "Scegli un voto per ogni elemento"
824
 
825
- #: ../lib/yasr-ajax-functions.php:255 ../lib/yasr-ajax-functions.php:298
826
- msgid "Remember to insert this shortcode"
827
- msgstr "Ricorda di inserire questo shortcode"
828
 
829
- #: ../lib/yasr-ajax-functions.php:257 ../lib/yasr-ajax-functions.php:300
830
- msgid "where you want to display this multi set"
831
- msgstr "dove vuoi mostrare questo Multi Set"
 
 
832
 
833
- #: ../lib/yasr-ajax-functions.php:265
834
  msgid "Choose a vote for every element"
835
  msgstr "Scegli un voto per ogni elemento"
836
 
837
- #: ../lib/yasr-ajax-functions.php:432
838
  msgid "Main"
839
  msgstr ""
840
 
841
- #: ../lib/yasr-ajax-functions.php:433
842
  msgid "Charts"
843
  msgstr "Classifiche"
844
 
845
- #: ../lib/yasr-ajax-functions.php:435
846
  msgid "Read the doc"
847
  msgstr "Leggi la documentazione"
848
 
849
- #: ../lib/yasr-ajax-functions.php:444
850
  msgid "Overall Rating / Review"
851
  msgstr "Voto Complessivo"
852
 
853
- #: ../lib/yasr-ajax-functions.php:446
854
  msgid "Insert Overall Rating"
855
  msgstr "Inserisci Voto Complessivo"
856
 
857
- #: ../lib/yasr-ajax-functions.php:447
858
  msgid "Insert Overall Rating / Review for this post"
859
  msgstr "Inserisci Voto Complessivo / Recensione per questo post"
860
 
861
- #: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
862
  msgid "Choose Size"
863
  msgstr "Scegli la grandezza"
864
 
865
- #: ../lib/yasr-ajax-functions.php:464
866
  msgid "Insert Visitor Votes"
867
  msgstr "Inserisci Voti Utenti"
868
 
869
- #: ../lib/yasr-ajax-functions.php:465
870
  msgid "Insert the ability for your visitor to vote"
871
  msgstr "Permetti ai tuoi visitatori di votare"
872
 
873
- #: ../lib/yasr-ajax-functions.php:482
874
  msgid "If you want to insert a Multi Set, pick one:"
875
  msgstr "Se vuoi inserire un Set Multiplo, scegline uno:"
876
 
877
- #: ../lib/yasr-ajax-functions.php:488
878
  msgid "Choose wich set you want to insert."
879
  msgstr "Scegli quale Set Multiplo inserire"
880
 
881
- #: ../lib/yasr-ajax-functions.php:496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
882
  msgid "Insert Multiset:"
883
  msgstr "Inserisci Set Multiplo:"
884
 
885
- #: ../lib/yasr-ajax-functions.php:499
886
  msgid "Insert Multiple Set"
887
  msgstr "Inserisci Set Multiplo"
888
 
889
- #: ../lib/yasr-ajax-functions.php:500
890
- msgid "Insert multiple set in this post ?"
891
- msgstr "Vuoi inserire il Set Multiplo per questo post ?"
892
-
893
- #: ../lib/yasr-ajax-functions.php:515
894
  msgid "Ranking reviews"
895
  msgstr "Classifica recensioni"
896
 
897
- #: ../lib/yasr-ajax-functions.php:516
898
  msgid "Insert Ranking reviews"
899
  msgstr "Classifica recensioni"
900
 
901
- #: ../lib/yasr-ajax-functions.php:517
902
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
903
  msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_overall_rating]"
904
 
905
- #: ../lib/yasr-ajax-functions.php:521
906
  msgid "Users' ranking"
907
  msgstr "Classifica degli utenti"
908
 
909
- #: ../lib/yasr-ajax-functions.php:522
910
  msgid "Insert Users ranking"
911
  msgstr "Inserisci Classifica Utenti"
912
 
913
- #: ../lib/yasr-ajax-functions.php:523
914
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
915
  msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_visitor_votes]"
916
 
917
- #: ../lib/yasr-ajax-functions.php:527
918
  msgid "Most active reviewers"
919
  msgstr "Recensori più attivi"
920
 
921
- #: ../lib/yasr-ajax-functions.php:528
922
  msgid "Insert Most Active Reviewers"
923
  msgstr "Inserisci i 5 recensori più attivi"
924
 
925
- #: ../lib/yasr-ajax-functions.php:529
926
  msgid "Insert Top 5 active reviewers"
927
  msgstr "Inserisci i 5 recensori più attivi"
928
 
929
- #: ../lib/yasr-ajax-functions.php:533
930
  msgid "Most Active Users"
931
  msgstr "Utenti più attivi"
932
 
933
- #: ../lib/yasr-ajax-functions.php:534
934
  msgid "Insert Most Active Users"
935
  msgstr "Inserisci i 10 utenti più attivi"
936
 
937
- #: ../lib/yasr-ajax-functions.php:535
938
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
939
  msgstr "Inserisci i 10 utenti più attivi in [yasr_visitor_votes]"
940
 
941
- #: ../lib/yasr-ajax-functions.php:606
942
  msgid "Reviews and Visitor Votes have been successfull imported."
943
  msgstr "Recensioni e Voti utenti sono stati importati con successo."
944
 
945
- #: ../lib/yasr-ajax-functions.php:612
946
  msgid ""
947
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
948
  "THIS MAY TAKE A WHILE!"
@@ -950,85 +979,109 @@ msgstr ""
950
  "Step2: Contrellerò se hai usato Set Multipli e se li trovo l'importerò: PUÒ "
951
  "RICHIEDERE UN PÒ DI TEMPO!"
952
 
953
- #: ../lib/yasr-ajax-functions.php:614
954
  msgid "Proceed Step 2"
955
  msgstr "Procedi Step 2"
956
 
957
- #: ../lib/yasr-ajax-functions.php:621
958
  msgid "Something goes wrong! Refresh the page and try again!"
959
  msgstr "Qualcosa è andato storto! Aggiorna la pagina e prova ancora!"
960
 
961
- #: ../lib/yasr-ajax-functions.php:650
962
  msgid "I've found Multiple Set! Importing..."
963
  msgstr "Set Multipli trovati! Importazione..."
964
 
965
- #: ../lib/yasr-ajax-functions.php:659
966
  msgid "Multi Set's name has been successfull imported."
967
  msgstr "I nomi dei Set Multipli sono stati importati con successo"
968
 
969
- #: ../lib/yasr-ajax-functions.php:661
970
  msgid "Now I'm going to import Multi Set data"
971
  msgstr "Ora importerò i dati dei Set Multipli"
972
 
973
- #: ../lib/yasr-ajax-functions.php:672
974
  msgid "All votes has been successfull imported."
975
  msgstr "Tutti i voti sono stati importati con successo"
976
 
977
- #: ../lib/yasr-ajax-functions.php:674
978
  msgid "Done"
979
  msgstr "Fatto"
980
 
981
- #: ../lib/yasr-ajax-functions.php:679
982
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
983
  msgstr "Ho trovato i voti per i Set Multi ma non li ho potuti inserire nel db"
984
 
985
- #: ../lib/yasr-ajax-functions.php:687
986
  msgid "I've found Multi Set but with no data"
987
  msgstr "ho trovato Set Multipli ma senza dati"
988
 
989
- #: ../lib/yasr-ajax-functions.php:696
990
  msgid "I've found Multi Sets names but I couldn't insert into db"
991
  msgstr "Ho trovato Set Multipli ma non li ho potuti inserire nel db"
992
 
993
- #: ../lib/yasr-ajax-functions.php:704
994
  msgid "Multisets were not found. Imported is done!"
995
  msgstr "Set Multipli non trovati. Importazione dati conclusa!"
996
 
997
- #: ../lib/yasr-ajax-functions.php:748
998
  msgid "No Recenet votes yet"
999
  msgstr "Ancora nessun voto recente"
1000
 
1001
- #: ../lib/yasr-ajax-functions.php:920 ../lib/yasr-ajax-functions.php:1064
 
 
 
 
 
1002
  msgid "Error: you can't vote 0"
1003
  msgstr "Errore: non puoi votare 0"
1004
 
1005
- #: ../lib/yasr-ajax-functions.php:1016 ../lib/yasr-ajax-functions.php:1024
1006
- msgid "Average rating"
1007
- msgstr "Media Voto "
1008
 
1009
- #: ../lib/yasr-ajax-functions.php:1017 ../lib/yasr-ajax-functions.php:1025
1010
  msgid "Vote Saved"
1011
  msgstr "Voto Salvato"
1012
 
1013
- #: ../lib/yasr-ajax-functions.php:1160
1014
  msgid "Vote updated"
1015
  msgstr "Voto Aggiornato"
1016
 
1017
- #: ../lib/yasr-ajax-functions.php:1235
1018
- msgid "Average "
1019
- msgstr "Media Voto "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1020
 
1021
- #: ../lib/yasr-ajax-functions.php:1246
1022
- msgid "You've already voted this article"
1023
- msgstr "Hai già votato questo articolo"
1024
 
1025
- #: ../lib/yasr-ajax-functions.php:1366
1026
- msgid "stars"
1027
- msgstr "stelle"
1028
 
1029
- #: ../lib/yasr-ajax-functions.php:1371
1030
- msgid "star"
1031
- msgstr "stella"
1032
 
1033
  #~ msgid ""
1034
  #~ "Seems like you've imported gd star rating in the past, but then deleted "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Yasr Translation\n"
4
+ "POT-Creation-Date: 2015-04-22 15:42+0100\n"
5
+ "PO-Revision-Date: 2015-04-22 15:44+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
20
  msgid "Rate this article / item"
21
  msgstr "Vota questo articolo / oggetto"
22
 
23
+ #: ../yasr-metabox-top-right.php:71 ../lib/yasr-shortcode-functions.php:138
24
+ #: ../lib/yasr-shortcode-functions.php:543
25
  msgid "Loading, please wait"
26
  msgstr "Caricamento, attendere prego"
27
 
29
  msgid "Save Vote"
30
  msgstr "Salva Voto"
31
 
32
+ #: ../yasr-metabox-top-right.php:166
33
  msgid "This review is about a..."
34
  msgstr "Questa recensione è..."
35
 
36
+ #: ../yasr-metabox-top-right.php:171
37
+ msgid "Product, Place, Other"
38
+ msgstr "Product, Place, Other"
39
 
40
+ #: ../yasr-metabox-top-right.php:199 ../yasr-metabox-multiple-rating.php:46
41
+ #: ../lib/yasr-settings-functions.php:540
42
  msgid "Select"
43
  msgstr "Seleziona"
44
 
45
+ #: ../yasr-metabox-top-right.php:217
46
  msgid ""
47
  "Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
48
  "where you want to display this rating"
50
  "Ricorda di inserire questo shortcode <strong>[yasr_overall_rating]</strong> "
51
  "dove vuoi far apparire questo voto"
52
 
53
+ #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:110
54
  #: ../lib/yasr-ajax-functions.php:44 ../lib/yasr-ajax-functions.php:187
55
+ #: ../lib/yasr-ajax-functions.php:336 ../lib/yasr-ajax-functions.php:753
56
  msgid "You do not have sufficient permissions to access this page."
57
  msgstr "Non hai permeessi sufficienti per accedere a questa pagina"
58
 
76
  msgid "Pro Features!"
77
  msgstr "Funzioni Pro!"
78
 
79
+ #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:255
80
+ #: ../yasr-settings-page.php:295
81
  msgid "Save"
82
  msgstr "Salva"
83
 
176
  msgid "Close this message"
177
  msgstr "Chiudi questo messaggio"
178
 
179
+ #: ../yasr-settings-page.php:265 ../lib/yasr-settings-functions.php:1324
180
+ #: ../lib/yasr-settings-functions.php:1350
181
  msgid "Donations"
182
  msgstr "Donazioni"
183
 
184
+ #: ../yasr-settings-page.php:267 ../lib/yasr-settings-functions.php:1326
185
+ #: ../lib/yasr-settings-functions.php:1352
186
  msgid ""
187
  "If you have found this plugin useful, please consider making a donation to "
188
  "help support future development. Your support will be much appreciated. "
191
  "supportarne lo sviluppo. Il tuo aiuto sarà molto apprezzato! P.s. YASR è "
192
  "made in Italy ;)"
193
 
194
+ #: ../yasr-settings-page.php:269 ../lib/yasr-settings-functions.php:1328
195
+ #: ../lib/yasr-settings-functions.php:1354
196
  msgid "Thank you!"
197
  msgstr "Grazie!"
198
 
200
  msgid "Choose wich set you want to use"
201
  msgstr "Scegli che set vuoi usare"
202
 
203
+ #: ../lib/yasr-shortcode-functions.php:217
204
+ #: ../lib/yasr-shortcode-functions.php:229
205
+ #: ../lib/yasr-shortcode-functions.php:258
206
  msgid "You've already voted this article with"
207
  msgstr "Hai già votato questo articolo con "
208
 
209
+ #: ../lib/yasr-shortcode-functions.php:269
210
+ #: ../lib/yasr-shortcode-functions.php:571
211
  msgid "You must sign to vote"
212
  msgstr "Devi fare il login per votare"
213
 
214
+ #: ../lib/yasr-shortcode-functions.php:311 ../lib/yasr-ajax-functions.php:1040
215
+ #: ../lib/yasr-ajax-functions.php:1048 ../lib/yasr-ajax-functions.php:1181
 
216
  msgid "Total: "
217
  msgstr "Voti: "
218
 
219
+ #: ../lib/yasr-shortcode-functions.php:311
220
  msgid "Average: "
221
  msgstr "Media Voto: "
222
 
223
+ #: ../lib/yasr-shortcode-functions.php:327
224
  msgid "bad, poor, ok, good, super"
225
  msgstr "pessimo, scarso, ok, buono, super"
226
 
227
+ #: ../lib/yasr-shortcode-functions.php:550
228
+ msgid "Thank you for voting! "
229
+ msgstr "Grazie per aver votato!"
230
+
231
+ #: ../lib/yasr-shortcode-functions.php:691
232
  msgid "Rating"
233
  msgstr "Voto"
234
 
235
+ #: ../lib/yasr-shortcode-functions.php:705
236
  msgid "You don't have any votes stored"
237
  msgstr "Non hai alcun voto salvato"
238
 
239
+ #: ../lib/yasr-shortcode-functions.php:741
240
+ #: ../lib/yasr-shortcode-functions.php:779
241
  msgid "Post / Page"
242
  msgstr "Post / Pagina"
243
 
244
+ #: ../lib/yasr-shortcode-functions.php:742
245
+ #: ../lib/yasr-shortcode-functions.php:780
246
  msgid "Order By"
247
  msgstr "Ordina per"
248
 
249
+ #: ../lib/yasr-shortcode-functions.php:742
250
+ #: ../lib/yasr-shortcode-functions.php:780
251
  msgid "Most Rated"
252
  msgstr "Più Votati"
253
 
254
+ #: ../lib/yasr-shortcode-functions.php:742
255
+ #: ../lib/yasr-shortcode-functions.php:780
256
  msgid "Highest Rated"
257
  msgstr "Voto più alto"
258
 
259
+ #: ../lib/yasr-shortcode-functions.php:759
260
+ #: ../lib/yasr-shortcode-functions.php:794
261
  msgid "Total:"
262
  msgstr "Voti:"
263
 
264
+ #: ../lib/yasr-shortcode-functions.php:759
265
+ #: ../lib/yasr-shortcode-functions.php:794
266
  msgid "Average"
267
  msgstr "Media"
268
 
269
+ #: ../lib/yasr-shortcode-functions.php:771
270
  msgid "You've not enough data"
271
  msgstr "Non hai abbastanza dati"
272
 
273
+ #: ../lib/yasr-shortcode-functions.php:806
274
  msgid "You've not enought data"
275
  msgstr "Non hai abbastanza dati"
276
 
277
+ #: ../lib/yasr-shortcode-functions.php:891
278
  msgid ""
279
  "Problem while retrieving the top 5 most active reviewers. Did you publish "
280
  "any review?"
282
  "C'è stato un problema nell'ottenere la classifica dei 5 recensori più "
283
  "attivi. Hai pubblicato qualche recensione?"
284
 
285
+ #: ../lib/yasr-shortcode-functions.php:959
286
  msgid ""
287
  "Problem while retrieving the top 10 active users chart. Are you sure you "
288
  "have votes to show?"
290
  "C'è stato un problema nell'ottenere la classifica dei 10 utenti più attivi. "
291
  "Sei sicuro di avere voti da mostrare?"
292
 
293
+ #: ../lib/yasr-settings-functions.php:50
294
  msgid "General settings"
295
  msgstr "Impostazioni Generali"
296
 
297
+ #: ../lib/yasr-settings-functions.php:51
298
  msgid "Auto insert options"
299
  msgstr "Opzioni inserimento automatico"
300
 
301
+ #: ../lib/yasr-settings-functions.php:52
302
  msgid "Show \"Overall Rating\" in Archive Page?"
303
  msgstr "Mostrare il \"Voto Complessivo\" nella Pagine Archivio?"
304
 
305
+ #: ../lib/yasr-settings-functions.php:53
306
  msgid "Show \"Visitor Votes\" in Archive Page?"
307
  msgstr "Mostare il \"Voto Utenti\" nelle Pagine Archivio?"
308
 
309
+ #: ../lib/yasr-settings-functions.php:54
310
  msgid "Insert custom text to show before / after stars"
311
  msgstr "Inserisci testo personalizzato da mostrare prima / dopo le stelle"
312
 
313
+ #: ../lib/yasr-settings-functions.php:55
314
  msgid "Do you want show stats for visitors votes?"
315
  msgstr "Vuoi mostrare le statistiche per i voti utenti?"
316
 
317
+ #: ../lib/yasr-settings-functions.php:56
318
  msgid "Allow only logged in user to vote?"
319
  msgstr "Permettere la votazione ai soli utenti loggati?"
320
 
321
+ #: ../lib/yasr-settings-functions.php:57
322
  msgid "Which rich snippets do you want to use?"
323
  msgstr "Quale rich snippets vuoi usare?"
324
 
325
+ #: ../lib/yasr-settings-functions.php:58
326
  msgid "How do you want to rate \"Overall Rating\"?"
327
  msgstr "Cosa vuoi usare per inserire il \"Voto Complessivo\"?"
328
 
329
+ #: ../lib/yasr-settings-functions.php:72
330
  msgid "Use Auto Insert?"
331
  msgstr "Usare l'inserimento automatico?"
332
 
333
+ #: ../lib/yasr-settings-functions.php:75
334
+ #: ../lib/yasr-settings-functions.php:144
335
+ #: ../lib/yasr-settings-functions.php:162
336
+ #: ../lib/yasr-settings-functions.php:204
337
+ #: ../lib/yasr-settings-functions.php:230
338
+ #: ../lib/yasr-settings-functions.php:264
339
+ #: ../lib/yasr-settings-functions.php:319
340
  msgid "Yes"
341
  msgstr "Si"
342
 
343
+ #: ../lib/yasr-settings-functions.php:89
344
+ #: ../lib/yasr-settings-functions.php:149
345
+ #: ../lib/yasr-settings-functions.php:167
346
+ #: ../lib/yasr-settings-functions.php:209
347
+ #: ../lib/yasr-settings-functions.php:235
348
+ #: ../lib/yasr-settings-functions.php:269
349
+ #: ../lib/yasr-settings-functions.php:324
350
  msgid "No"
351
  msgstr "No"
352
 
353
+ #: ../lib/yasr-settings-functions.php:95
354
  msgid "What?"
355
  msgstr "Cosa?"
356
 
357
+ #: ../lib/yasr-settings-functions.php:98
358
  msgid "Overall Rating / Author Rating"
359
  msgstr "Voto Complessivo / Voto Autore"
360
 
361
+ #: ../lib/yasr-settings-functions.php:102 ../lib/yasr-ajax-functions.php:471
362
  msgid "Visitor Votes"
363
  msgstr "Voto Utenti"
364
 
365
+ #: ../lib/yasr-settings-functions.php:106
366
  msgid "Both"
367
  msgstr "Entrambi"
368
 
369
+ #: ../lib/yasr-settings-functions.php:110
370
  msgid "Where?"
371
  msgstr "Dove?"
372
 
373
+ #: ../lib/yasr-settings-functions.php:113
374
  msgid "Before the post"
375
  msgstr "Prima del contenuto"
376
 
377
+ #: ../lib/yasr-settings-functions.php:117
378
  msgid "After the post"
379
  msgstr "Dopo il contenuto"
380
 
381
+ #: ../lib/yasr-settings-functions.php:122
382
  msgid "Size"
383
  msgstr "Grandezza"
384
 
385
+ #: ../lib/yasr-settings-functions.php:126 ../lib/yasr-ajax-functions.php:461
386
+ #: ../lib/yasr-ajax-functions.php:479
387
  msgid "Small"
388
  msgstr "Piccolo"
389
 
390
+ #: ../lib/yasr-settings-functions.php:131 ../lib/yasr-ajax-functions.php:462
391
+ #: ../lib/yasr-ajax-functions.php:480
392
  msgid "Medium"
393
  msgstr "Medio"
394
 
395
+ #: ../lib/yasr-settings-functions.php:136 ../lib/yasr-ajax-functions.php:463
396
+ #: ../lib/yasr-ajax-functions.php:481
397
  msgid "Large"
398
  msgstr "Grande"
399
 
400
+ #: ../lib/yasr-settings-functions.php:141
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:213
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
  "articolo o nella singola pagina, ma anche in pagine come l' Home Page, "
425
  "categorie o archivi"
426
 
427
+ #: ../lib/yasr-settings-functions.php:239
428
  msgid ""
429
  "If you enable this, \"Visitor Votes\" will be showed not only in the single "
430
  "article or page, but also in pages like Home Page, category pages or "
434
  "articolo o nella singola pagina, ma anche in pagine come l' Home Page, "
435
  "categorie o archivi"
436
 
437
+ #: ../lib/yasr-settings-functions.php:274
438
  msgid "Custom text to display before Overall Rating"
439
  msgstr "Testo personalizzato da visualizzare prima del Voto Complessivo"
440
 
441
+ #: ../lib/yasr-settings-functions.php:279
442
+ msgid "Custom text to display BEFORE Visitor Rating"
443
+ msgstr "Testo personalizzato da visualizzare PRIMA del Voto Utenti"
444
 
445
+ #: ../lib/yasr-settings-functions.php:285
446
+ msgid "Custom text to display AFTER Visitor Rating"
447
+ msgstr "Testo personalizzato da visualizzare dopo del Voto Utenti"
448
+
449
+ #: ../lib/yasr-settings-functions.php:290
450
  msgid "Custom text to display when a non logged user has already rated"
451
  msgstr ""
452
  "Testo personalizzato da mostrare quanto un utente non loggato ha già votato"
453
 
454
+ #: ../lib/yasr-settings-functions.php:295
455
+ msgid "Help"
456
+ msgstr ""
457
+
458
+ #: ../lib/yasr-settings-functions.php:299
459
+ msgid ""
460
+ "In the first field you can use %overall_rating% pattern to show the overall "
461
+ "rating."
462
+ msgstr ""
463
+
464
+ #: ../lib/yasr-settings-functions.php:303
465
+ msgid ""
466
+ "In the Second and Third fields you can use %total_count% pattern to show the "
467
+ "total count, and %average% pattern to show the average"
468
+ msgstr ""
469
+
470
+ #: ../lib/yasr-settings-functions.php:342
471
  msgid "Allow only logged-in users"
472
  msgstr "Permetti solo agli utenti loggati"
473
 
474
+ #: ../lib/yasr-settings-functions.php:346
475
  msgid "Allow everybody (logged in and anonymous)"
476
  msgstr "Permetti a tutti (loggati ed anonimi)"
477
 
478
+ #: ../lib/yasr-settings-functions.php:363
479
  msgid "Review Rating"
480
  msgstr "Voto Recensione"
481
 
482
+ #: ../lib/yasr-settings-functions.php:367
483
  msgid "Aggregate Rating"
484
  msgstr "Media Voto Utenti"
485
 
486
+ #: ../lib/yasr-settings-functions.php:372
487
  msgid "What is this?"
488
  msgstr "Cos'è questo?"
489
 
490
+ #: ../lib/yasr-settings-functions.php:377
491
  msgid ""
492
  "If you select \"Review Rating\", your site will be indexed from search "
493
  "engines like this: "
495
  "Se hai scelto \"Voto Recensione\", il sito verrà indicizzato dai motori di "
496
  "ricerca così:"
497
 
498
+ #: ../lib/yasr-settings-functions.php:382
499
  msgid ""
500
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
501
  "this"
502
  msgstr ""
503
  "Se, invece, hai scelto \"Media Voto Utenti\", il sito verrà indicizzato così"
504
 
505
+ #: ../lib/yasr-settings-functions.php:400
506
  msgid "Stars"
507
  msgstr "Stelle"
508
 
509
+ #: ../lib/yasr-settings-functions.php:404
510
  msgid "Numbers"
511
  msgstr "Numeri"
512
 
513
+ #: ../lib/yasr-settings-functions.php:429
514
  msgid "Which color scheme do you want to use?"
515
  msgstr "Che schema di colori vuoi usare?"
516
 
517
+ #: ../lib/yasr-settings-functions.php:450
518
  msgid "Light"
519
  msgstr "Chiaro"
520
 
521
+ #: ../lib/yasr-settings-functions.php:455
522
  msgid "Dark"
523
  msgstr "Scuro"
524
 
525
+ #: ../lib/yasr-settings-functions.php:460
526
  msgid "Preview"
527
  msgstr "Anteprima"
528
 
529
+ #: ../lib/yasr-settings-functions.php:465
530
  msgid "Light theme"
531
  msgstr "Tema chiaro"
532
 
533
+ #: ../lib/yasr-settings-functions.php:470
 
534
  msgid "Dark theme"
535
  msgstr "Tema scuro"
536
 
537
+ #: ../lib/yasr-settings-functions.php:485
538
  msgid "Add New Multiple Set"
539
  msgstr "Set Multipli"
540
 
541
+ #: ../lib/yasr-settings-functions.php:486
542
  msgid ""
543
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
544
  "characters"
546
  "Nome, Elemento#1 e Elemento#2 DEVONO essere riempiti e devono essere lunghi "
547
  "almeno 3 caratteri"
548
 
549
+ #: ../lib/yasr-settings-functions.php:489
550
  msgid "Name"
551
  msgstr "Nome"
552
 
553
+ #: ../lib/yasr-settings-functions.php:494
554
  msgid "You can insert up to nine elements"
555
  msgstr "Puoi inserire fino a nove elementi"
556
 
557
+ #: ../lib/yasr-settings-functions.php:499
558
  msgid "Element "
559
  msgstr "Elemento"
560
 
561
+ #: ../lib/yasr-settings-functions.php:509
562
  msgid "Create New Set"
563
  msgstr "Crea Nuovo Set"
564
 
565
+ #: ../lib/yasr-settings-functions.php:530
566
+ #: ../lib/yasr-settings-functions.php:562
567
  msgid "Manage Multiple Set"
568
  msgstr "Gestisci Set Multiplo"
569
 
570
+ #: ../lib/yasr-settings-functions.php:532
571
  msgid "Wich set do you want to edit or remove?"
572
  msgstr "Quale set vuoi modificare o rimuovere"
573
 
574
+ #: ../lib/yasr-settings-functions.php:572
575
+ #: ../lib/yasr-settings-functions.php:690
576
  msgid "Field name"
577
  msgstr "Nome campo"
578
 
579
+ #: ../lib/yasr-settings-functions.php:576
580
+ #: ../lib/yasr-settings-functions.php:694
581
  msgid "Remove"
582
  msgstr "Rimuovi"
583
 
584
+ #: ../lib/yasr-settings-functions.php:618
585
+ #: ../lib/yasr-settings-functions.php:736
586
  msgid "Remove whole set?"
587
  msgstr "Rimuovere l'intero set?"
588
 
589
+ #: ../lib/yasr-settings-functions.php:631
590
+ #: ../lib/yasr-settings-functions.php:749
591
  msgid ""
592
  "If you remove something you will remove all the votes for that set or field. "
593
  "This operation CAN'T BE undone."
595
  "Se rimuovi qualcosa rimuoverai anche i voti per quel set o campo. Questa "
596
  "operazione NON PUÒ ESSERE ANNULLATA"
597
 
598
+ #: ../lib/yasr-settings-functions.php:638
599
+ #: ../lib/yasr-settings-functions.php:756
600
  msgid "You can use up to 9 elements"
601
  msgstr "Puoi usare fino a 9 elementi"
602
 
603
+ #: ../lib/yasr-settings-functions.php:640
604
+ #: ../lib/yasr-settings-functions.php:758
605
  msgid "Add element"
606
  msgstr "Aggiungi elemento"
607
 
608
+ #: ../lib/yasr-settings-functions.php:642
609
+ #: ../lib/yasr-settings-functions.php:760
610
  msgid "Save changes"
611
  msgstr "Salva modifiche"
612
 
613
+ #: ../lib/yasr-settings-functions.php:652
614
  msgid "No Multiple Set were found"
615
  msgstr "Nessun Set Multiplo trovato"
616
 
617
+ #: ../lib/yasr-settings-functions.php:902
618
+ #: ../lib/yasr-settings-functions.php:1170
619
  msgid "Settings Saved"
620
  msgstr "Impostazioni Salvate"
621
 
622
+ #: ../lib/yasr-settings-functions.php:907
623
  msgid "Something goes wrong trying insert set field name. Please report it"
624
  msgstr ""
625
  "Qualcosa è andato storto cercando di inserire un elemento. Per favore "
626
  "segnalalo"
627
 
628
+ #: ../lib/yasr-settings-functions.php:913
629
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
630
  msgstr ""
631
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
632
  "favore segnalalo"
633
 
634
+ #: ../lib/yasr-settings-functions.php:988
635
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
636
  msgstr ""
637
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
638
  "favore segnalalo"
639
 
640
+ #: ../lib/yasr-settings-functions.php:1034
641
  msgid ""
642
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
643
  msgstr ""
644
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
645
  "favore segnalalo"
646
 
647
+ #: ../lib/yasr-settings-functions.php:1098
648
  msgid ""
649
  "Something goes wrong trying to update a Multi Set's element. Please report it"
650
  msgstr ""
651
  "Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
652
  "favore segnalalo"
653
 
654
+ #: ../lib/yasr-settings-functions.php:1155
655
  msgid ""
656
  "Something goes wrong trying to insert set field name in edit form. Please "
657
  "report it"
659
  "Qualcosa è andato storto cercando di inserire il campo nel form di modifica. "
660
  "Per favore segnalalo"
661
 
662
+ #: ../lib/yasr-settings-functions.php:1198
663
  msgid "Style Options"
664
  msgstr "Opzioni Stili"
665
 
666
+ #: ../lib/yasr-settings-functions.php:1199
667
  msgid "Custom CSS Styles"
668
  msgstr "Stili CSS Personalizzati"
669
 
670
+ #: ../lib/yasr-settings-functions.php:1204
671
  msgid ""
672
  "Please use text area below to write your own CSS styles to override the "
673
  "default ones."
675
  "Usa l'area di testo sottostante per scrivere le tue regole CSS che "
676
  "sovrascriveranno quelle di default"
677
 
678
+ #: ../lib/yasr-settings-functions.php:1206
679
  msgid "Leave it blank if you don't know what you're doing"
680
  msgstr "Lascialo vuoto se non stai cosa stai facendo"
681
 
682
+ #: ../lib/yasr-settings-functions.php:1229
683
  msgid "Looking for more features?"
684
  msgstr "Hai bisogno di più funzioni?"
685
 
686
+ #: ../lib/yasr-settings-functions.php:1230
687
  msgid "Upgrade to yasr pro!"
688
  msgstr "Passa a yasr pro!"
689
 
690
+ #: ../lib/yasr-settings-functions.php:1246
691
  msgid "Unlimited ratings and votes"
692
  msgstr "Voti e recensioni illimitate"
693
 
694
+ #: ../lib/yasr-settings-functions.php:1252
695
  msgid "Works with shortcodes"
696
  msgstr "Funziona con gli shortcodes"
697
 
698
+ #: ../lib/yasr-settings-functions.php:1258
699
  msgid "Multi Set Support"
700
  msgstr "Supporto Set Multipli"
701
 
702
+ #: ../lib/yasr-settings-functions.php:1263
703
  msgid "Logs and stats for visitors votes"
704
  msgstr "Log e statistiche per i voti utenti"
705
 
706
+ #: ../lib/yasr-settings-functions.php:1268
707
  msgid "Localization (.po and .mo files included)"
708
  msgstr "Traducibile (files .po e .mo inclusi)"
709
 
710
+ #: ../lib/yasr-settings-functions.php:1273
711
  msgid "Rich Snippet Support"
712
  msgstr "Supporto per Rich Snippet"
713
 
714
+ #: ../lib/yasr-settings-functions.php:1278
715
  msgid "Rankings for reviews, votes and users"
716
  msgstr "Classifiche per recensioni, voti e utenti"
717
 
718
+ #: ../lib/yasr-settings-functions.php:1283
719
  msgid "Rankings Customization"
720
  msgstr "Personalizzazione Classifiche"
721
 
722
+ #: ../lib/yasr-settings-functions.php:1288
723
  msgid "Stars Customization"
724
  msgstr "Personalizzazione Stelle"
725
 
726
+ #: ../lib/yasr-settings-functions.php:1289
727
  msgid "Size Only"
728
  msgstr "Solo la grandezza"
729
 
730
+ #: ../lib/yasr-settings-functions.php:1290
731
  msgid ""
732
  "Users can choose different ready to use sets or can upload their own images."
733
  msgstr ""
734
  "È possibile scegliere diversi set pronti all'uso o caricare le proprie "
735
  "immagini"
736
 
737
+ #: ../lib/yasr-settings-functions.php:1293
 
 
 
 
738
  msgid "Users can review in comments"
739
  msgstr "Gli utenti possono recensire nei commenti"
740
 
741
+ #: ../lib/yasr-settings-functions.php:1304
742
  msgid "Not avaible yet"
743
  msgstr "Non ancora disponibile"
744
 
745
+ #: ../lib/yasr-settings-functions.php:1336
746
+ #: ../lib/yasr-settings-functions.php:1363
747
  msgid "Follow YASR official site!"
748
  msgstr "Segui il sito ufficiale di YASR!"
749
 
750
+ #: ../lib/yasr-settings-functions.php:1393
751
  msgid "No previous Gd Star Rating installation was found"
752
  msgstr "Installazione precedente di Gd Star Rating non stata trovata"
753
 
754
+ #: ../lib/yasr-db-functions.php:309
755
  msgid "No recenet votes yet"
756
  msgstr "Ancora nessun voto recente"
757
 
758
+ #: ../lib/yasr-db-functions.php:324 ../lib/yasr-ajax-functions.php:778
759
  msgid "anonymous"
760
  msgstr "anonimo"
761
 
762
+ #: ../lib/yasr-db-functions.php:333
763
  #, php-format
764
+ msgid "Vote %d from %s on "
765
  msgstr ""
766
 
767
+ #: ../lib/yasr-db-functions.php:349 ../lib/yasr-ajax-functions.php:803
768
  msgid "Ip address"
769
  msgstr "Indirizzo Ip"
770
 
771
+ #: ../lib/yasr-db-functions.php:390 ../lib/yasr-ajax-functions.php:844
772
  msgid "Pages"
773
  msgstr "Pagine"
774
 
775
+ #: ../lib/yasr-functions.php:98 ../lib/yasr-functions.php:99
776
  msgid "Yet Another Stars Rating: Settings"
777
  msgstr "Yet Another Stars Rating: Impostazioni"
778
 
779
  #: ../lib/yasr-functions.php:143
 
 
 
 
780
  msgid "Yet Another Stars Rating: Multiple set"
781
  msgstr "Yet Another Stars Rating: Set Multipli"
782
 
783
+ #: ../lib/yasr-functions.php:149
784
  msgid "Overall Rating"
785
  msgstr "Voto Complessivo "
786
 
787
+ #: ../lib/yasr-functions.php:159
788
  msgid "You don't have enought privileges to insert Overall Rating"
789
  msgstr "Non hai permessi sufficienti per inserire il Voto Complessivo"
790
 
791
+ #: ../lib/yasr-functions.php:169
792
  msgid "You don't have enought privileges to insert Multi Set"
793
  msgstr "Non hai abbastanza permessi per inserire un Multi Set"
794
 
795
+ #: ../lib/yasr-functions.php:309
796
  msgid " reviewed by "
797
  msgstr " recensito da "
798
 
799
+ #: ../lib/yasr-functions.php:310
800
  msgid " on "
801
  msgstr " il "
802
 
803
+ #: ../lib/yasr-functions.php:311
804
  msgid " rated "
805
  msgstr " votato "
806
 
807
+ #: ../lib/yasr-functions.php:311
808
  msgid " of"
809
  msgstr "su"
810
 
811
+ #: ../lib/yasr-functions.php:358
812
  msgid " written by "
813
  msgstr " scritto da "
814
 
815
+ #: ../lib/yasr-functions.php:360
816
  msgid " average rating "
817
  msgstr " media voto "
818
 
819
+ #: ../lib/yasr-functions.php:361
820
  msgid " user ratings"
821
  msgstr " voti utenti "
822
 
839
  msgid "Choose a vote for each element"
840
  msgstr "Scegli un voto per ogni elemento"
841
 
842
+ #: ../lib/yasr-ajax-functions.php:257 ../lib/yasr-ajax-functions.php:301
843
+ msgid "If you want to insert this multiset, paste this shortcode "
844
+ msgstr "Se vuoi inserire questo Set Multiplo, incolla questo shortcode "
845
 
846
+ #: ../lib/yasr-ajax-functions.php:259 ../lib/yasr-ajax-functions.php:303
847
+ msgid ""
848
+ "If, instead, you want allow your visitor to vote on this multiset, use this "
849
+ "shortcode"
850
+ msgstr ""
851
 
852
+ #: ../lib/yasr-ajax-functions.php:268
853
  msgid "Choose a vote for every element"
854
  msgstr "Scegli un voto per ogni elemento"
855
 
856
+ #: ../lib/yasr-ajax-functions.php:441
857
  msgid "Main"
858
  msgstr ""
859
 
860
+ #: ../lib/yasr-ajax-functions.php:442
861
  msgid "Charts"
862
  msgstr "Classifiche"
863
 
864
+ #: ../lib/yasr-ajax-functions.php:444
865
  msgid "Read the doc"
866
  msgstr "Leggi la documentazione"
867
 
868
+ #: ../lib/yasr-ajax-functions.php:453
869
  msgid "Overall Rating / Review"
870
  msgstr "Voto Complessivo"
871
 
872
+ #: ../lib/yasr-ajax-functions.php:455
873
  msgid "Insert Overall Rating"
874
  msgstr "Inserisci Voto Complessivo"
875
 
876
+ #: ../lib/yasr-ajax-functions.php:456
877
  msgid "Insert Overall Rating / Review for this post"
878
  msgstr "Inserisci Voto Complessivo / Recensione per questo post"
879
 
880
+ #: ../lib/yasr-ajax-functions.php:459 ../lib/yasr-ajax-functions.php:477
881
  msgid "Choose Size"
882
  msgstr "Scegli la grandezza"
883
 
884
+ #: ../lib/yasr-ajax-functions.php:473
885
  msgid "Insert Visitor Votes"
886
  msgstr "Inserisci Voti Utenti"
887
 
888
+ #: ../lib/yasr-ajax-functions.php:474
889
  msgid "Insert the ability for your visitor to vote"
890
  msgstr "Permetti ai tuoi visitatori di votare"
891
 
892
+ #: ../lib/yasr-ajax-functions.php:491
893
  msgid "If you want to insert a Multi Set, pick one:"
894
  msgstr "Se vuoi inserire un Set Multiplo, scegline uno:"
895
 
896
+ #: ../lib/yasr-ajax-functions.php:497
897
  msgid "Choose wich set you want to insert."
898
  msgstr "Scegli quale Set Multiplo inserire"
899
 
900
+ #: ../lib/yasr-ajax-functions.php:499 ../lib/yasr-ajax-functions.php:516
901
+ msgid "Readonly?"
902
+ msgstr ""
903
+
904
+ #: ../lib/yasr-ajax-functions.php:501 ../lib/yasr-ajax-functions.php:517
905
+ msgid ""
906
+ "If Readonly is checked, only you can insert the votes (in the box above the "
907
+ "editor)"
908
+ msgstr ""
909
+
910
+ #: ../lib/yasr-ajax-functions.php:502
911
+ msgid "Insert Multi Set"
912
+ msgstr "Inserisci Set Multiplo"
913
+
914
+ #: ../lib/yasr-ajax-functions.php:511
915
  msgid "Insert Multiset:"
916
  msgstr "Inserisci Set Multiplo:"
917
 
918
+ #: ../lib/yasr-ajax-functions.php:514
919
  msgid "Insert Multiple Set"
920
  msgstr "Inserisci Set Multiplo"
921
 
922
+ #: ../lib/yasr-ajax-functions.php:532
 
 
 
 
923
  msgid "Ranking reviews"
924
  msgstr "Classifica recensioni"
925
 
926
+ #: ../lib/yasr-ajax-functions.php:533
927
  msgid "Insert Ranking reviews"
928
  msgstr "Classifica recensioni"
929
 
930
+ #: ../lib/yasr-ajax-functions.php:534
931
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
932
  msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_overall_rating]"
933
 
934
+ #: ../lib/yasr-ajax-functions.php:538
935
  msgid "Users' ranking"
936
  msgstr "Classifica degli utenti"
937
 
938
+ #: ../lib/yasr-ajax-functions.php:539
939
  msgid "Insert Users ranking"
940
  msgstr "Inserisci Classifica Utenti"
941
 
942
+ #: ../lib/yasr-ajax-functions.php:540
943
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
944
  msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_visitor_votes]"
945
 
946
+ #: ../lib/yasr-ajax-functions.php:544
947
  msgid "Most active reviewers"
948
  msgstr "Recensori più attivi"
949
 
950
+ #: ../lib/yasr-ajax-functions.php:545
951
  msgid "Insert Most Active Reviewers"
952
  msgstr "Inserisci i 5 recensori più attivi"
953
 
954
+ #: ../lib/yasr-ajax-functions.php:546
955
  msgid "Insert Top 5 active reviewers"
956
  msgstr "Inserisci i 5 recensori più attivi"
957
 
958
+ #: ../lib/yasr-ajax-functions.php:550
959
  msgid "Most Active Users"
960
  msgstr "Utenti più attivi"
961
 
962
+ #: ../lib/yasr-ajax-functions.php:551
963
  msgid "Insert Most Active Users"
964
  msgstr "Inserisci i 10 utenti più attivi"
965
 
966
+ #: ../lib/yasr-ajax-functions.php:552
967
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
968
  msgstr "Inserisci i 10 utenti più attivi in [yasr_visitor_votes]"
969
 
970
+ #: ../lib/yasr-ajax-functions.php:623
971
  msgid "Reviews and Visitor Votes have been successfull imported."
972
  msgstr "Recensioni e Voti utenti sono stati importati con successo."
973
 
974
+ #: ../lib/yasr-ajax-functions.php:629
975
  msgid ""
976
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
977
  "THIS MAY TAKE A WHILE!"
979
  "Step2: Contrellerò se hai usato Set Multipli e se li trovo l'importerò: PUÒ "
980
  "RICHIEDERE UN PÒ DI TEMPO!"
981
 
982
+ #: ../lib/yasr-ajax-functions.php:631
983
  msgid "Proceed Step 2"
984
  msgstr "Procedi Step 2"
985
 
986
+ #: ../lib/yasr-ajax-functions.php:638
987
  msgid "Something goes wrong! Refresh the page and try again!"
988
  msgstr "Qualcosa è andato storto! Aggiorna la pagina e prova ancora!"
989
 
990
+ #: ../lib/yasr-ajax-functions.php:667
991
  msgid "I've found Multiple Set! Importing..."
992
  msgstr "Set Multipli trovati! Importazione..."
993
 
994
+ #: ../lib/yasr-ajax-functions.php:676
995
  msgid "Multi Set's name has been successfull imported."
996
  msgstr "I nomi dei Set Multipli sono stati importati con successo"
997
 
998
+ #: ../lib/yasr-ajax-functions.php:678
999
  msgid "Now I'm going to import Multi Set data"
1000
  msgstr "Ora importerò i dati dei Set Multipli"
1001
 
1002
+ #: ../lib/yasr-ajax-functions.php:689
1003
  msgid "All votes has been successfull imported."
1004
  msgstr "Tutti i voti sono stati importati con successo"
1005
 
1006
+ #: ../lib/yasr-ajax-functions.php:691
1007
  msgid "Done"
1008
  msgstr "Fatto"
1009
 
1010
+ #: ../lib/yasr-ajax-functions.php:696
1011
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
1012
  msgstr "Ho trovato i voti per i Set Multi ma non li ho potuti inserire nel db"
1013
 
1014
+ #: ../lib/yasr-ajax-functions.php:704
1015
  msgid "I've found Multi Set but with no data"
1016
  msgstr "ho trovato Set Multipli ma senza dati"
1017
 
1018
+ #: ../lib/yasr-ajax-functions.php:713
1019
  msgid "I've found Multi Sets names but I couldn't insert into db"
1020
  msgstr "Ho trovato Set Multipli ma non li ho potuti inserire nel db"
1021
 
1022
+ #: ../lib/yasr-ajax-functions.php:721
1023
  msgid "Multisets were not found. Imported is done!"
1024
  msgstr "Set Multipli non trovati. Importazione dati conclusa!"
1025
 
1026
+ #: ../lib/yasr-ajax-functions.php:765
1027
  msgid "No Recenet votes yet"
1028
  msgstr "Ancora nessun voto recente"
1029
 
1030
+ #: ../lib/yasr-ajax-functions.php:787
1031
+ #, php-format
1032
+ msgid "Vote %d from %s on"
1033
+ msgstr ""
1034
+
1035
+ #: ../lib/yasr-ajax-functions.php:937 ../lib/yasr-ajax-functions.php:1088
1036
  msgid "Error: you can't vote 0"
1037
  msgstr "Errore: non puoi votare 0"
1038
 
1039
+ #: ../lib/yasr-ajax-functions.php:1040 ../lib/yasr-ajax-functions.php:1048
1040
+ msgid "Average:"
1041
+ msgstr "Media:"
1042
 
1043
+ #: ../lib/yasr-ajax-functions.php:1041 ../lib/yasr-ajax-functions.php:1049
1044
  msgid "Vote Saved"
1045
  msgstr "Voto Salvato"
1046
 
1047
+ #: ../lib/yasr-ajax-functions.php:1184
1048
  msgid "Vote updated"
1049
  msgstr "Voto Aggiornato"
1050
 
1051
+ #: ../lib/yasr-ajax-functions.php:1294
1052
+ msgid "Rating saved!"
1053
+ msgstr "Voto salvato!"
1054
+
1055
+ #: ../lib/yasr-ajax-functions.php:1300
1056
+ msgid "Rating not saved. Please Try again"
1057
+ msgstr ""
1058
+
1059
+ #~ msgid "Visitors can vote on Multi Set"
1060
+ #~ msgstr "I visitatori possono votare nei Multi Set"
1061
+
1062
+ #~ msgid "Remember to insert this shortcode"
1063
+ #~ msgstr "Ricorda di inserire questo shortcode"
1064
+
1065
+ #~ msgid "where you want to display this multi set"
1066
+ #~ msgstr "dove vuoi mostrare questo Multi Set"
1067
+
1068
+ #~ msgid "Insert multiple set in this post ?"
1069
+ #~ msgstr "Vuoi inserire il Set Multiplo per questo post ?"
1070
+
1071
+ #~ msgid "Average rating"
1072
+ #~ msgstr "Media Voto "
1073
+
1074
+ #~ msgid "Average "
1075
+ #~ msgstr "Media Voto "
1076
 
1077
+ #~ msgid "You've already voted this article"
1078
+ #~ msgstr "Hai già votato questo articolo"
 
1079
 
1080
+ #~ msgid "stars"
1081
+ #~ msgstr "stelle"
 
1082
 
1083
+ #~ msgid "star"
1084
+ #~ msgstr "stella"
 
1085
 
1086
  #~ msgid ""
1087
  #~ "Seems like you've imported gd star rating in the past, but then deleted "
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: 2015-04-06 10:06+0100\n"
5
- "PO-Revision-Date: 2015-04-06 10:06+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: En\n"
@@ -19,7 +19,8 @@ msgstr ""
19
  msgid "Rate this article / item"
20
  msgstr ""
21
 
22
- #: ../yasr-metabox-top-right.php:71 ../lib/yasr-shortcode-functions.php:136
 
23
  msgid "Loading, please wait"
24
  msgstr ""
25
 
@@ -27,28 +28,28 @@ msgstr ""
27
  msgid "Save Vote"
28
  msgstr ""
29
 
30
- #: ../yasr-metabox-top-right.php:164
31
  msgid "This review is about a..."
32
  msgstr ""
33
 
34
- #: ../yasr-metabox-top-right.php:169
35
- msgid "Product, Places, Other"
36
  msgstr ""
37
 
38
- #: ../yasr-metabox-top-right.php:197 ../yasr-metabox-multiple-rating.php:46
39
- #: ../lib/yasr-settings-functions.php:517
40
  msgid "Select"
41
  msgstr ""
42
 
43
- #: ../yasr-metabox-top-right.php:215
44
  msgid ""
45
  "Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
46
  "where you want to display this rating"
47
  msgstr ""
48
 
49
- #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:111
50
  #: ../lib/yasr-ajax-functions.php:44 ../lib/yasr-ajax-functions.php:187
51
- #: ../lib/yasr-ajax-functions.php:332 ../lib/yasr-ajax-functions.php:736
52
  msgid "You do not have sufficient permissions to access this page."
53
  msgstr ""
54
 
@@ -72,8 +73,8 @@ msgstr ""
72
  msgid "Pro Features!"
73
  msgstr ""
74
 
75
- #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:254
76
- #: ../yasr-settings-page.php:294
77
  msgid "Save"
78
  msgstr ""
79
 
@@ -159,20 +160,20 @@ msgstr ""
159
  msgid "Close this message"
160
  msgstr ""
161
 
162
- #: ../yasr-settings-page.php:264 ../lib/yasr-settings-functions.php:1306
163
- #: ../lib/yasr-settings-functions.php:1332
164
  msgid "Donations"
165
  msgstr ""
166
 
167
- #: ../yasr-settings-page.php:266 ../lib/yasr-settings-functions.php:1308
168
- #: ../lib/yasr-settings-functions.php:1334
169
  msgid ""
170
  "If you have found this plugin useful, please consider making a donation to "
171
  "help support future development. Your support will be much appreciated. "
172
  msgstr ""
173
 
174
- #: ../yasr-settings-page.php:268 ../lib/yasr-settings-functions.php:1310
175
- #: ../lib/yasr-settings-functions.php:1336
176
  msgid "Thank you!"
177
  msgstr ""
178
 
@@ -180,571 +181,588 @@ msgstr ""
180
  msgid "Choose wich set you want to use"
181
  msgstr ""
182
 
183
- #: ../lib/yasr-shortcode-functions.php:187
184
- #: ../lib/yasr-shortcode-functions.php:209
 
185
  msgid "You've already voted this article with"
186
  msgstr ""
187
 
188
- #: ../lib/yasr-shortcode-functions.php:220
 
189
  msgid "You must sign to vote"
190
  msgstr ""
191
 
192
- #: ../lib/yasr-shortcode-functions.php:243 ../lib/yasr-ajax-functions.php:1016
193
- #: ../lib/yasr-ajax-functions.php:1024 ../lib/yasr-ajax-functions.php:1157
194
- #: ../lib/yasr-ajax-functions.php:1235
195
  msgid "Total: "
196
  msgstr ""
197
 
198
- #: ../lib/yasr-shortcode-functions.php:243
199
  msgid "Average: "
200
  msgstr ""
201
 
202
- #: ../lib/yasr-shortcode-functions.php:263
203
  msgid "bad, poor, ok, good, super"
204
  msgstr ""
205
 
206
- #: ../lib/yasr-shortcode-functions.php:502
 
 
 
 
207
  msgid "Rating"
208
  msgstr ""
209
 
210
- #: ../lib/yasr-shortcode-functions.php:516
211
  msgid "You don't have any votes stored"
212
  msgstr ""
213
 
214
- #: ../lib/yasr-shortcode-functions.php:552
215
- #: ../lib/yasr-shortcode-functions.php:590
216
  msgid "Post / Page"
217
  msgstr ""
218
 
219
- #: ../lib/yasr-shortcode-functions.php:553
220
- #: ../lib/yasr-shortcode-functions.php:591
221
  msgid "Order By"
222
  msgstr ""
223
 
224
- #: ../lib/yasr-shortcode-functions.php:553
225
- #: ../lib/yasr-shortcode-functions.php:591
226
  msgid "Most Rated"
227
  msgstr ""
228
 
229
- #: ../lib/yasr-shortcode-functions.php:553
230
- #: ../lib/yasr-shortcode-functions.php:591
231
  msgid "Highest Rated"
232
  msgstr ""
233
 
234
- #: ../lib/yasr-shortcode-functions.php:570
235
- #: ../lib/yasr-shortcode-functions.php:605
236
  msgid "Total:"
237
  msgstr ""
238
 
239
- #: ../lib/yasr-shortcode-functions.php:570
240
- #: ../lib/yasr-shortcode-functions.php:605
241
  msgid "Average"
242
  msgstr ""
243
 
244
- #: ../lib/yasr-shortcode-functions.php:582
245
  msgid "You've not enough data"
246
  msgstr ""
247
 
248
- #: ../lib/yasr-shortcode-functions.php:617
249
  msgid "You've not enought data"
250
  msgstr ""
251
 
252
- #: ../lib/yasr-shortcode-functions.php:702
253
  msgid ""
254
  "Problem while retrieving the top 5 most active reviewers. Did you publish "
255
  "any review?"
256
  msgstr ""
257
 
258
- #: ../lib/yasr-shortcode-functions.php:770
259
  msgid ""
260
  "Problem while retrieving the top 10 active users chart. Are you sure you "
261
  "have votes to show?"
262
  msgstr ""
263
 
264
- #: ../lib/yasr-settings-functions.php:49
265
  msgid "General settings"
266
  msgstr ""
267
 
268
- #: ../lib/yasr-settings-functions.php:50
269
  msgid "Auto insert options"
270
  msgstr ""
271
 
272
- #: ../lib/yasr-settings-functions.php:51
273
  msgid "Show \"Overall Rating\" in Archive Page?"
274
  msgstr ""
275
 
276
- #: ../lib/yasr-settings-functions.php:52
277
  msgid "Show \"Visitor Votes\" in Archive Page?"
278
  msgstr ""
279
 
280
- #: ../lib/yasr-settings-functions.php:53
281
  msgid "Insert custom text to show before / after stars"
282
  msgstr ""
283
 
284
- #: ../lib/yasr-settings-functions.php:54
285
  msgid "Do you want show stats for visitors votes?"
286
  msgstr ""
287
 
288
- #: ../lib/yasr-settings-functions.php:55
289
  msgid "Allow only logged in user to vote?"
290
  msgstr ""
291
 
292
- #: ../lib/yasr-settings-functions.php:56
293
  msgid "Which rich snippets do you want to use?"
294
  msgstr ""
295
 
296
- #: ../lib/yasr-settings-functions.php:57
297
  msgid "How do you want to rate \"Overall Rating\"?"
298
  msgstr ""
299
 
300
- #: ../lib/yasr-settings-functions.php:71
301
  msgid "Use Auto Insert?"
302
  msgstr ""
303
 
304
- #: ../lib/yasr-settings-functions.php:74
305
- #: ../lib/yasr-settings-functions.php:143
306
- #: ../lib/yasr-settings-functions.php:161
307
- #: ../lib/yasr-settings-functions.php:203
308
- #: ../lib/yasr-settings-functions.php:229
309
- #: ../lib/yasr-settings-functions.php:261
310
- #: ../lib/yasr-settings-functions.php:296
311
  msgid "Yes"
312
  msgstr ""
313
 
314
- #: ../lib/yasr-settings-functions.php:88
315
- #: ../lib/yasr-settings-functions.php:148
316
- #: ../lib/yasr-settings-functions.php:166
317
- #: ../lib/yasr-settings-functions.php:208
318
- #: ../lib/yasr-settings-functions.php:234
319
- #: ../lib/yasr-settings-functions.php:266
320
- #: ../lib/yasr-settings-functions.php:301
321
  msgid "No"
322
  msgstr ""
323
 
324
- #: ../lib/yasr-settings-functions.php:94
325
  msgid "What?"
326
  msgstr ""
327
 
328
- #: ../lib/yasr-settings-functions.php:97
329
  msgid "Overall Rating / Author Rating"
330
  msgstr ""
331
 
332
- #: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
333
  msgid "Visitor Votes"
334
  msgstr ""
335
 
336
- #: ../lib/yasr-settings-functions.php:105
337
  msgid "Both"
338
  msgstr ""
339
 
340
- #: ../lib/yasr-settings-functions.php:109
341
  msgid "Where?"
342
  msgstr ""
343
 
344
- #: ../lib/yasr-settings-functions.php:112
345
  msgid "Before the post"
346
  msgstr ""
347
 
348
- #: ../lib/yasr-settings-functions.php:116
349
  msgid "After the post"
350
  msgstr ""
351
 
352
- #: ../lib/yasr-settings-functions.php:121
353
  msgid "Size"
354
  msgstr ""
355
 
356
- #: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
357
- #: ../lib/yasr-ajax-functions.php:470
358
  msgid "Small"
359
  msgstr ""
360
 
361
- #: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
362
- #: ../lib/yasr-ajax-functions.php:471
363
  msgid "Medium"
364
  msgstr ""
365
 
366
- #: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
367
- #: ../lib/yasr-ajax-functions.php:472
368
  msgid "Large"
369
  msgstr ""
370
 
371
- #: ../lib/yasr-settings-functions.php:140
372
  msgid "Exclude Pages?"
373
  msgstr ""
374
 
375
- #: ../lib/yasr-settings-functions.php:158
376
  msgid "Use only in custom post types?"
377
  msgstr ""
378
 
379
- #: ../lib/yasr-settings-functions.php:170
380
  msgid "You see this because you use custom post types."
381
  msgstr ""
382
 
383
- #: ../lib/yasr-settings-functions.php:172
384
  msgid "If you want to use auto insert only in custom post types, choose Yes"
385
  msgstr ""
386
 
387
- #: ../lib/yasr-settings-functions.php:212
388
  msgid ""
389
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
390
  "article or page, but also in pages like Home Page, category pages or "
391
  "archives."
392
  msgstr ""
393
 
394
- #: ../lib/yasr-settings-functions.php:238
395
  msgid ""
396
  "If you enable this, \"Visitor Votes\" will be showed not only in the single "
397
  "article or page, but also in pages like Home Page, category pages or "
398
  "archives."
399
  msgstr ""
400
 
401
- #: ../lib/yasr-settings-functions.php:271
402
  msgid "Custom text to display before Overall Rating"
403
  msgstr ""
404
 
405
- #: ../lib/yasr-settings-functions.php:276
406
- msgid "Custom text to display before Visitor Rating"
407
  msgstr ""
408
 
409
- #: ../lib/yasr-settings-functions.php:281
 
 
 
 
410
  msgid "Custom text to display when a non logged user has already rated"
411
  msgstr ""
412
 
413
- #: ../lib/yasr-settings-functions.php:319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
414
  msgid "Allow only logged-in users"
415
  msgstr ""
416
 
417
- #: ../lib/yasr-settings-functions.php:323
418
  msgid "Allow everybody (logged in and anonymous)"
419
  msgstr ""
420
 
421
- #: ../lib/yasr-settings-functions.php:340
422
  msgid "Review Rating"
423
  msgstr ""
424
 
425
- #: ../lib/yasr-settings-functions.php:344
426
  msgid "Aggregate Rating"
427
  msgstr ""
428
 
429
- #: ../lib/yasr-settings-functions.php:349
430
  msgid "What is this?"
431
  msgstr ""
432
 
433
- #: ../lib/yasr-settings-functions.php:354
434
  msgid ""
435
  "If you select \"Review Rating\", your site will be indexed from search "
436
  "engines like this: "
437
  msgstr ""
438
 
439
- #: ../lib/yasr-settings-functions.php:359
440
  msgid ""
441
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
442
  "this"
443
  msgstr ""
444
 
445
- #: ../lib/yasr-settings-functions.php:377
446
  msgid "Stars"
447
  msgstr ""
448
 
449
- #: ../lib/yasr-settings-functions.php:381
450
  msgid "Numbers"
451
  msgstr ""
452
 
453
- #: ../lib/yasr-settings-functions.php:406
454
  msgid "Which color scheme do you want to use?"
455
  msgstr ""
456
 
457
- #: ../lib/yasr-settings-functions.php:427
458
  msgid "Light"
459
  msgstr ""
460
 
461
- #: ../lib/yasr-settings-functions.php:432
462
  msgid "Dark"
463
  msgstr ""
464
 
465
- #: ../lib/yasr-settings-functions.php:437
466
  msgid "Preview"
467
  msgstr ""
468
 
469
- #: ../lib/yasr-settings-functions.php:442
470
  msgid "Light theme"
471
  msgstr ""
472
 
473
- #: ../lib/yasr-settings-functions.php:447
474
  msgid "Dark theme"
475
  msgstr ""
476
 
477
- #: ../lib/yasr-settings-functions.php:462
478
  msgid "Add New Multiple Set"
479
  msgstr ""
480
 
481
- #: ../lib/yasr-settings-functions.php:463
482
  msgid ""
483
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
484
  "characters"
485
  msgstr ""
486
 
487
- #: ../lib/yasr-settings-functions.php:466
488
  msgid "Name"
489
  msgstr ""
490
 
491
- #: ../lib/yasr-settings-functions.php:471
492
  msgid "You can insert up to nine elements"
493
  msgstr ""
494
 
495
- #: ../lib/yasr-settings-functions.php:476
496
  msgid "Element "
497
  msgstr ""
498
 
499
- #: ../lib/yasr-settings-functions.php:486
500
  msgid "Create New Set"
501
  msgstr ""
502
 
503
- #: ../lib/yasr-settings-functions.php:507
504
- #: ../lib/yasr-settings-functions.php:539
505
  msgid "Manage Multiple Set"
506
  msgstr ""
507
 
508
- #: ../lib/yasr-settings-functions.php:509
509
  msgid "Wich set do you want to edit or remove?"
510
  msgstr ""
511
 
512
- #: ../lib/yasr-settings-functions.php:549
513
- #: ../lib/yasr-settings-functions.php:667
514
  msgid "Field name"
515
  msgstr ""
516
 
517
- #: ../lib/yasr-settings-functions.php:553
518
- #: ../lib/yasr-settings-functions.php:671
519
  msgid "Remove"
520
  msgstr ""
521
 
522
- #: ../lib/yasr-settings-functions.php:595
523
- #: ../lib/yasr-settings-functions.php:713
524
  msgid "Remove whole set?"
525
  msgstr ""
526
 
527
- #: ../lib/yasr-settings-functions.php:608
528
- #: ../lib/yasr-settings-functions.php:726
529
  msgid ""
530
  "If you remove something you will remove all the votes for that set or field. "
531
  "This operation CAN'T BE undone."
532
  msgstr ""
533
 
534
- #: ../lib/yasr-settings-functions.php:615
535
- #: ../lib/yasr-settings-functions.php:733
536
  msgid "You can use up to 9 elements"
537
  msgstr ""
538
 
539
- #: ../lib/yasr-settings-functions.php:617
540
- #: ../lib/yasr-settings-functions.php:735
541
  msgid "Add element"
542
  msgstr ""
543
 
544
- #: ../lib/yasr-settings-functions.php:619
545
- #: ../lib/yasr-settings-functions.php:737
546
  msgid "Save changes"
547
  msgstr ""
548
 
549
- #: ../lib/yasr-settings-functions.php:629
550
  msgid "No Multiple Set were found"
551
  msgstr ""
552
 
553
- #: ../lib/yasr-settings-functions.php:879
554
- #: ../lib/yasr-settings-functions.php:1147
555
  msgid "Settings Saved"
556
  msgstr ""
557
 
558
- #: ../lib/yasr-settings-functions.php:884
559
  msgid "Something goes wrong trying insert set field name. Please report it"
560
  msgstr ""
561
 
562
- #: ../lib/yasr-settings-functions.php:890
563
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
564
  msgstr ""
565
 
566
- #: ../lib/yasr-settings-functions.php:965
567
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
568
  msgstr ""
569
 
570
- #: ../lib/yasr-settings-functions.php:1011
571
  msgid ""
572
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
573
  msgstr ""
574
 
575
- #: ../lib/yasr-settings-functions.php:1075
576
  msgid ""
577
  "Something goes wrong trying to update a Multi Set's element. Please report it"
578
  msgstr ""
579
 
580
- #: ../lib/yasr-settings-functions.php:1132
581
  msgid ""
582
  "Something goes wrong trying to insert set field name in edit form. Please "
583
  "report it"
584
  msgstr ""
585
 
586
- #: ../lib/yasr-settings-functions.php:1175
587
  msgid "Style Options"
588
  msgstr ""
589
 
590
- #: ../lib/yasr-settings-functions.php:1176
591
  msgid "Custom CSS Styles"
592
  msgstr ""
593
 
594
- #: ../lib/yasr-settings-functions.php:1181
595
  msgid ""
596
  "Please use text area below to write your own CSS styles to override the "
597
  "default ones."
598
  msgstr ""
599
 
600
- #: ../lib/yasr-settings-functions.php:1183
601
  msgid "Leave it blank if you don't know what you're doing"
602
  msgstr ""
603
 
604
- #: ../lib/yasr-settings-functions.php:1206
605
  msgid "Looking for more features?"
606
  msgstr ""
607
 
608
- #: ../lib/yasr-settings-functions.php:1207
609
  msgid "Upgrade to yasr pro!"
610
  msgstr ""
611
 
612
- #: ../lib/yasr-settings-functions.php:1223
613
  msgid "Unlimited ratings and votes"
614
  msgstr ""
615
 
616
- #: ../lib/yasr-settings-functions.php:1229
617
  msgid "Works with shortcodes"
618
  msgstr ""
619
 
620
- #: ../lib/yasr-settings-functions.php:1235
621
  msgid "Multi Set Support"
622
  msgstr ""
623
 
624
- #: ../lib/yasr-settings-functions.php:1240
625
  msgid "Logs and stats for visitors votes"
626
  msgstr ""
627
 
628
- #: ../lib/yasr-settings-functions.php:1245
629
  msgid "Localization (.po and .mo files included)"
630
  msgstr ""
631
 
632
- #: ../lib/yasr-settings-functions.php:1250
633
  msgid "Rich Snippet Support"
634
  msgstr ""
635
 
636
- #: ../lib/yasr-settings-functions.php:1255
637
  msgid "Rankings for reviews, votes and users"
638
  msgstr ""
639
 
640
- #: ../lib/yasr-settings-functions.php:1260
641
  msgid "Rankings Customization"
642
  msgstr ""
643
 
644
- #: ../lib/yasr-settings-functions.php:1265
645
  msgid "Stars Customization"
646
  msgstr ""
647
 
648
- #: ../lib/yasr-settings-functions.php:1266
649
  msgid "Size Only"
650
  msgstr ""
651
 
652
- #: ../lib/yasr-settings-functions.php:1267
653
  msgid ""
654
  "Users can choose different ready to use sets or can upload their own images."
655
  msgstr ""
656
 
657
- #: ../lib/yasr-settings-functions.php:1270
658
- msgid "Visitors can vote on Multi Set"
659
- msgstr ""
660
-
661
- #: ../lib/yasr-settings-functions.php:1275
662
  msgid "Users can review in comments"
663
  msgstr ""
664
 
665
- #: ../lib/yasr-settings-functions.php:1286
666
  msgid "Not avaible yet"
667
  msgstr ""
668
 
669
- #: ../lib/yasr-settings-functions.php:1318
670
- #: ../lib/yasr-settings-functions.php:1345
671
  msgid "Follow YASR official site!"
672
  msgstr ""
673
 
674
- #: ../lib/yasr-settings-functions.php:1375
675
  msgid "No previous Gd Star Rating installation was found"
676
  msgstr ""
677
 
678
- #: ../lib/yasr-db-functions.php:286
679
  msgid "No recenet votes yet"
680
  msgstr ""
681
 
682
- #: ../lib/yasr-db-functions.php:301 ../lib/yasr-ajax-functions.php:761
683
  msgid "anonymous"
684
  msgstr ""
685
 
686
- #: ../lib/yasr-db-functions.php:310 ../lib/yasr-ajax-functions.php:770
687
  #, php-format
688
- msgid "Vote %d from %s on"
689
  msgstr ""
690
 
691
- #: ../lib/yasr-db-functions.php:326 ../lib/yasr-ajax-functions.php:786
692
  msgid "Ip address"
693
  msgstr ""
694
 
695
- #: ../lib/yasr-db-functions.php:367 ../lib/yasr-ajax-functions.php:827
696
  msgid "Pages"
697
  msgstr ""
698
 
699
- #: ../lib/yasr-functions.php:99 ../lib/yasr-functions.php:100
700
  msgid "Yet Another Stars Rating: Settings"
701
  msgstr ""
702
 
703
  #: ../lib/yasr-functions.php:143
704
- msgid "YASR"
705
- msgstr ""
706
-
707
- #: ../lib/yasr-functions.php:144
708
  msgid "Yet Another Stars Rating: Multiple set"
709
  msgstr ""
710
 
711
- #: ../lib/yasr-functions.php:150
712
  msgid "Overall Rating"
713
  msgstr ""
714
 
715
- #: ../lib/yasr-functions.php:160
716
  msgid "You don't have enought privileges to insert Overall Rating"
717
  msgstr ""
718
 
719
- #: ../lib/yasr-functions.php:170
720
  msgid "You don't have enought privileges to insert Multi Set"
721
  msgstr ""
722
 
723
- #: ../lib/yasr-functions.php:310
724
  msgid " reviewed by "
725
  msgstr ""
726
 
727
- #: ../lib/yasr-functions.php:311
728
  msgid " on "
729
  msgstr ""
730
 
731
- #: ../lib/yasr-functions.php:312
732
  msgid " rated "
733
  msgstr ""
734
 
735
- #: ../lib/yasr-functions.php:312
736
  msgid " of"
737
  msgstr ""
738
 
739
- #: ../lib/yasr-functions.php:359
740
  msgid " written by "
741
  msgstr ""
742
 
743
- #: ../lib/yasr-functions.php:361
744
  msgid " average rating "
745
  msgstr ""
746
 
747
- #: ../lib/yasr-functions.php:362
748
  msgid " user ratings"
749
  msgstr ""
750
 
@@ -765,208 +783,217 @@ msgstr ""
765
  msgid "Choose a vote for each element"
766
  msgstr ""
767
 
768
- #: ../lib/yasr-ajax-functions.php:255 ../lib/yasr-ajax-functions.php:298
769
- msgid "Remember to insert this shortcode"
770
  msgstr ""
771
 
772
- #: ../lib/yasr-ajax-functions.php:257 ../lib/yasr-ajax-functions.php:300
773
- msgid "where you want to display this multi set"
 
 
774
  msgstr ""
775
 
776
- #: ../lib/yasr-ajax-functions.php:265
777
  msgid "Choose a vote for every element"
778
  msgstr ""
779
 
780
- #: ../lib/yasr-ajax-functions.php:432
781
  msgid "Main"
782
  msgstr ""
783
 
784
- #: ../lib/yasr-ajax-functions.php:433
785
  msgid "Charts"
786
  msgstr ""
787
 
788
- #: ../lib/yasr-ajax-functions.php:435
789
  msgid "Read the doc"
790
  msgstr ""
791
 
792
- #: ../lib/yasr-ajax-functions.php:444
793
  msgid "Overall Rating / Review"
794
  msgstr ""
795
 
796
- #: ../lib/yasr-ajax-functions.php:446
797
  msgid "Insert Overall Rating"
798
  msgstr ""
799
 
800
- #: ../lib/yasr-ajax-functions.php:447
801
  msgid "Insert Overall Rating / Review for this post"
802
  msgstr ""
803
 
804
- #: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
805
  msgid "Choose Size"
806
  msgstr ""
807
 
808
- #: ../lib/yasr-ajax-functions.php:464
809
  msgid "Insert Visitor Votes"
810
  msgstr ""
811
 
812
- #: ../lib/yasr-ajax-functions.php:465
813
  msgid "Insert the ability for your visitor to vote"
814
  msgstr ""
815
 
816
- #: ../lib/yasr-ajax-functions.php:482
817
  msgid "If you want to insert a Multi Set, pick one:"
818
  msgstr ""
819
 
820
- #: ../lib/yasr-ajax-functions.php:488
821
  msgid "Choose wich set you want to insert."
822
  msgstr ""
823
 
824
- #: ../lib/yasr-ajax-functions.php:496
825
- msgid "Insert Multiset:"
826
  msgstr ""
827
 
828
- #: ../lib/yasr-ajax-functions.php:499
829
- msgid "Insert Multiple Set"
 
 
830
  msgstr ""
831
 
832
- #: ../lib/yasr-ajax-functions.php:500
833
- msgid "Insert multiple set in this post ?"
834
  msgstr ""
835
 
836
- #: ../lib/yasr-ajax-functions.php:515
 
 
 
 
 
 
 
 
837
  msgid "Ranking reviews"
838
  msgstr ""
839
 
840
- #: ../lib/yasr-ajax-functions.php:516
841
  msgid "Insert Ranking reviews"
842
  msgstr ""
843
 
844
- #: ../lib/yasr-ajax-functions.php:517
845
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
846
  msgstr ""
847
 
848
- #: ../lib/yasr-ajax-functions.php:521
849
  msgid "Users' ranking"
850
  msgstr ""
851
 
852
- #: ../lib/yasr-ajax-functions.php:522
853
  msgid "Insert Users ranking"
854
  msgstr ""
855
 
856
- #: ../lib/yasr-ajax-functions.php:523
857
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
858
  msgstr ""
859
 
860
- #: ../lib/yasr-ajax-functions.php:527
861
  msgid "Most active reviewers"
862
  msgstr ""
863
 
864
- #: ../lib/yasr-ajax-functions.php:528
865
  msgid "Insert Most Active Reviewers"
866
  msgstr ""
867
 
868
- #: ../lib/yasr-ajax-functions.php:529
869
  msgid "Insert Top 5 active reviewers"
870
  msgstr ""
871
 
872
- #: ../lib/yasr-ajax-functions.php:533
873
  msgid "Most Active Users"
874
  msgstr ""
875
 
876
- #: ../lib/yasr-ajax-functions.php:534
877
  msgid "Insert Most Active Users"
878
  msgstr ""
879
 
880
- #: ../lib/yasr-ajax-functions.php:535
881
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
882
  msgstr ""
883
 
884
- #: ../lib/yasr-ajax-functions.php:606
885
  msgid "Reviews and Visitor Votes have been successfull imported."
886
  msgstr ""
887
 
888
- #: ../lib/yasr-ajax-functions.php:612
889
  msgid ""
890
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
891
  "THIS MAY TAKE A WHILE!"
892
  msgstr ""
893
 
894
- #: ../lib/yasr-ajax-functions.php:614
895
  msgid "Proceed Step 2"
896
  msgstr ""
897
 
898
- #: ../lib/yasr-ajax-functions.php:621
899
  msgid "Something goes wrong! Refresh the page and try again!"
900
  msgstr ""
901
 
902
- #: ../lib/yasr-ajax-functions.php:650
903
  msgid "I've found Multiple Set! Importing..."
904
  msgstr ""
905
 
906
- #: ../lib/yasr-ajax-functions.php:659
907
  msgid "Multi Set's name has been successfull imported."
908
  msgstr ""
909
 
910
- #: ../lib/yasr-ajax-functions.php:661
911
  msgid "Now I'm going to import Multi Set data"
912
  msgstr ""
913
 
914
- #: ../lib/yasr-ajax-functions.php:672
915
  msgid "All votes has been successfull imported."
916
  msgstr ""
917
 
918
- #: ../lib/yasr-ajax-functions.php:674
919
  msgid "Done"
920
  msgstr ""
921
 
922
- #: ../lib/yasr-ajax-functions.php:679
923
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
924
  msgstr ""
925
 
926
- #: ../lib/yasr-ajax-functions.php:687
927
  msgid "I've found Multi Set but with no data"
928
  msgstr ""
929
 
930
- #: ../lib/yasr-ajax-functions.php:696
931
  msgid "I've found Multi Sets names but I couldn't insert into db"
932
  msgstr ""
933
 
934
- #: ../lib/yasr-ajax-functions.php:704
935
  msgid "Multisets were not found. Imported is done!"
936
  msgstr ""
937
 
938
- #: ../lib/yasr-ajax-functions.php:748
939
  msgid "No Recenet votes yet"
940
  msgstr ""
941
 
942
- #: ../lib/yasr-ajax-functions.php:920 ../lib/yasr-ajax-functions.php:1064
 
 
 
 
 
943
  msgid "Error: you can't vote 0"
944
  msgstr ""
945
 
946
- #: ../lib/yasr-ajax-functions.php:1016 ../lib/yasr-ajax-functions.php:1024
947
- msgid "Average rating"
948
  msgstr ""
949
 
950
- #: ../lib/yasr-ajax-functions.php:1017 ../lib/yasr-ajax-functions.php:1025
951
  msgid "Vote Saved"
952
  msgstr ""
953
 
954
- #: ../lib/yasr-ajax-functions.php:1160
955
  msgid "Vote updated"
956
  msgstr ""
957
 
958
- #: ../lib/yasr-ajax-functions.php:1235
959
- msgid "Average "
960
- msgstr ""
961
-
962
- #: ../lib/yasr-ajax-functions.php:1246
963
- msgid "You've already voted this article"
964
- msgstr ""
965
-
966
- #: ../lib/yasr-ajax-functions.php:1366
967
- msgid "stars"
968
  msgstr ""
969
 
970
- #: ../lib/yasr-ajax-functions.php:1371
971
- msgid "star"
972
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YASR lenguages\n"
4
+ "POT-Creation-Date: 2015-04-22 15:42+0100\n"
5
+ "PO-Revision-Date: 2015-04-22 15:42+0100\n"
6
  "Last-Translator: Dario <thedudoworld@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: En\n"
19
  msgid "Rate this article / item"
20
  msgstr ""
21
 
22
+ #: ../yasr-metabox-top-right.php:71 ../lib/yasr-shortcode-functions.php:138
23
+ #: ../lib/yasr-shortcode-functions.php:543
24
  msgid "Loading, please wait"
25
  msgstr ""
26
 
28
  msgid "Save Vote"
29
  msgstr ""
30
 
31
+ #: ../yasr-metabox-top-right.php:166
32
  msgid "This review is about a..."
33
  msgstr ""
34
 
35
+ #: ../yasr-metabox-top-right.php:171
36
+ msgid "Product, Place, Other"
37
  msgstr ""
38
 
39
+ #: ../yasr-metabox-top-right.php:199 ../yasr-metabox-multiple-rating.php:46
40
+ #: ../lib/yasr-settings-functions.php:540
41
  msgid "Select"
42
  msgstr ""
43
 
44
+ #: ../yasr-metabox-top-right.php:217
45
  msgid ""
46
  "Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
47
  "where you want to display this rating"
48
  msgstr ""
49
 
50
+ #: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:110
51
  #: ../lib/yasr-ajax-functions.php:44 ../lib/yasr-ajax-functions.php:187
52
+ #: ../lib/yasr-ajax-functions.php:336 ../lib/yasr-ajax-functions.php:753
53
  msgid "You do not have sufficient permissions to access this page."
54
  msgstr ""
55
 
73
  msgid "Pro Features!"
74
  msgstr ""
75
 
76
+ #: ../yasr-settings-page.php:96 ../yasr-settings-page.php:255
77
+ #: ../yasr-settings-page.php:295
78
  msgid "Save"
79
  msgstr ""
80
 
160
  msgid "Close this message"
161
  msgstr ""
162
 
163
+ #: ../yasr-settings-page.php:265 ../lib/yasr-settings-functions.php:1324
164
+ #: ../lib/yasr-settings-functions.php:1350
165
  msgid "Donations"
166
  msgstr ""
167
 
168
+ #: ../yasr-settings-page.php:267 ../lib/yasr-settings-functions.php:1326
169
+ #: ../lib/yasr-settings-functions.php:1352
170
  msgid ""
171
  "If you have found this plugin useful, please consider making a donation to "
172
  "help support future development. Your support will be much appreciated. "
173
  msgstr ""
174
 
175
+ #: ../yasr-settings-page.php:269 ../lib/yasr-settings-functions.php:1328
176
+ #: ../lib/yasr-settings-functions.php:1354
177
  msgid "Thank you!"
178
  msgstr ""
179
 
181
  msgid "Choose wich set you want to use"
182
  msgstr ""
183
 
184
+ #: ../lib/yasr-shortcode-functions.php:217
185
+ #: ../lib/yasr-shortcode-functions.php:229
186
+ #: ../lib/yasr-shortcode-functions.php:258
187
  msgid "You've already voted this article with"
188
  msgstr ""
189
 
190
+ #: ../lib/yasr-shortcode-functions.php:269
191
+ #: ../lib/yasr-shortcode-functions.php:571
192
  msgid "You must sign to vote"
193
  msgstr ""
194
 
195
+ #: ../lib/yasr-shortcode-functions.php:311 ../lib/yasr-ajax-functions.php:1040
196
+ #: ../lib/yasr-ajax-functions.php:1048 ../lib/yasr-ajax-functions.php:1181
 
197
  msgid "Total: "
198
  msgstr ""
199
 
200
+ #: ../lib/yasr-shortcode-functions.php:311
201
  msgid "Average: "
202
  msgstr ""
203
 
204
+ #: ../lib/yasr-shortcode-functions.php:327
205
  msgid "bad, poor, ok, good, super"
206
  msgstr ""
207
 
208
+ #: ../lib/yasr-shortcode-functions.php:550
209
+ msgid "Thank you for voting! "
210
+ msgstr ""
211
+
212
+ #: ../lib/yasr-shortcode-functions.php:691
213
  msgid "Rating"
214
  msgstr ""
215
 
216
+ #: ../lib/yasr-shortcode-functions.php:705
217
  msgid "You don't have any votes stored"
218
  msgstr ""
219
 
220
+ #: ../lib/yasr-shortcode-functions.php:741
221
+ #: ../lib/yasr-shortcode-functions.php:779
222
  msgid "Post / Page"
223
  msgstr ""
224
 
225
+ #: ../lib/yasr-shortcode-functions.php:742
226
+ #: ../lib/yasr-shortcode-functions.php:780
227
  msgid "Order By"
228
  msgstr ""
229
 
230
+ #: ../lib/yasr-shortcode-functions.php:742
231
+ #: ../lib/yasr-shortcode-functions.php:780
232
  msgid "Most Rated"
233
  msgstr ""
234
 
235
+ #: ../lib/yasr-shortcode-functions.php:742
236
+ #: ../lib/yasr-shortcode-functions.php:780
237
  msgid "Highest Rated"
238
  msgstr ""
239
 
240
+ #: ../lib/yasr-shortcode-functions.php:759
241
+ #: ../lib/yasr-shortcode-functions.php:794
242
  msgid "Total:"
243
  msgstr ""
244
 
245
+ #: ../lib/yasr-shortcode-functions.php:759
246
+ #: ../lib/yasr-shortcode-functions.php:794
247
  msgid "Average"
248
  msgstr ""
249
 
250
+ #: ../lib/yasr-shortcode-functions.php:771
251
  msgid "You've not enough data"
252
  msgstr ""
253
 
254
+ #: ../lib/yasr-shortcode-functions.php:806
255
  msgid "You've not enought data"
256
  msgstr ""
257
 
258
+ #: ../lib/yasr-shortcode-functions.php:891
259
  msgid ""
260
  "Problem while retrieving the top 5 most active reviewers. Did you publish "
261
  "any review?"
262
  msgstr ""
263
 
264
+ #: ../lib/yasr-shortcode-functions.php:959
265
  msgid ""
266
  "Problem while retrieving the top 10 active users chart. Are you sure you "
267
  "have votes to show?"
268
  msgstr ""
269
 
270
+ #: ../lib/yasr-settings-functions.php:50
271
  msgid "General settings"
272
  msgstr ""
273
 
274
+ #: ../lib/yasr-settings-functions.php:51
275
  msgid "Auto insert options"
276
  msgstr ""
277
 
278
+ #: ../lib/yasr-settings-functions.php:52
279
  msgid "Show \"Overall Rating\" in Archive Page?"
280
  msgstr ""
281
 
282
+ #: ../lib/yasr-settings-functions.php:53
283
  msgid "Show \"Visitor Votes\" in Archive Page?"
284
  msgstr ""
285
 
286
+ #: ../lib/yasr-settings-functions.php:54
287
  msgid "Insert custom text to show before / after stars"
288
  msgstr ""
289
 
290
+ #: ../lib/yasr-settings-functions.php:55
291
  msgid "Do you want show stats for visitors votes?"
292
  msgstr ""
293
 
294
+ #: ../lib/yasr-settings-functions.php:56
295
  msgid "Allow only logged in user to vote?"
296
  msgstr ""
297
 
298
+ #: ../lib/yasr-settings-functions.php:57
299
  msgid "Which rich snippets do you want to use?"
300
  msgstr ""
301
 
302
+ #: ../lib/yasr-settings-functions.php:58
303
  msgid "How do you want to rate \"Overall Rating\"?"
304
  msgstr ""
305
 
306
+ #: ../lib/yasr-settings-functions.php:72
307
  msgid "Use Auto Insert?"
308
  msgstr ""
309
 
310
+ #: ../lib/yasr-settings-functions.php:75
311
+ #: ../lib/yasr-settings-functions.php:144
312
+ #: ../lib/yasr-settings-functions.php:162
313
+ #: ../lib/yasr-settings-functions.php:204
314
+ #: ../lib/yasr-settings-functions.php:230
315
+ #: ../lib/yasr-settings-functions.php:264
316
+ #: ../lib/yasr-settings-functions.php:319
317
  msgid "Yes"
318
  msgstr ""
319
 
320
+ #: ../lib/yasr-settings-functions.php:89
321
+ #: ../lib/yasr-settings-functions.php:149
322
+ #: ../lib/yasr-settings-functions.php:167
323
+ #: ../lib/yasr-settings-functions.php:209
324
+ #: ../lib/yasr-settings-functions.php:235
325
+ #: ../lib/yasr-settings-functions.php:269
326
+ #: ../lib/yasr-settings-functions.php:324
327
  msgid "No"
328
  msgstr ""
329
 
330
+ #: ../lib/yasr-settings-functions.php:95
331
  msgid "What?"
332
  msgstr ""
333
 
334
+ #: ../lib/yasr-settings-functions.php:98
335
  msgid "Overall Rating / Author Rating"
336
  msgstr ""
337
 
338
+ #: ../lib/yasr-settings-functions.php:102 ../lib/yasr-ajax-functions.php:471
339
  msgid "Visitor Votes"
340
  msgstr ""
341
 
342
+ #: ../lib/yasr-settings-functions.php:106
343
  msgid "Both"
344
  msgstr ""
345
 
346
+ #: ../lib/yasr-settings-functions.php:110
347
  msgid "Where?"
348
  msgstr ""
349
 
350
+ #: ../lib/yasr-settings-functions.php:113
351
  msgid "Before the post"
352
  msgstr ""
353
 
354
+ #: ../lib/yasr-settings-functions.php:117
355
  msgid "After the post"
356
  msgstr ""
357
 
358
+ #: ../lib/yasr-settings-functions.php:122
359
  msgid "Size"
360
  msgstr ""
361
 
362
+ #: ../lib/yasr-settings-functions.php:126 ../lib/yasr-ajax-functions.php:461
363
+ #: ../lib/yasr-ajax-functions.php:479
364
  msgid "Small"
365
  msgstr ""
366
 
367
+ #: ../lib/yasr-settings-functions.php:131 ../lib/yasr-ajax-functions.php:462
368
+ #: ../lib/yasr-ajax-functions.php:480
369
  msgid "Medium"
370
  msgstr ""
371
 
372
+ #: ../lib/yasr-settings-functions.php:136 ../lib/yasr-ajax-functions.php:463
373
+ #: ../lib/yasr-ajax-functions.php:481
374
  msgid "Large"
375
  msgstr ""
376
 
377
+ #: ../lib/yasr-settings-functions.php:141
378
  msgid "Exclude Pages?"
379
  msgstr ""
380
 
381
+ #: ../lib/yasr-settings-functions.php:159
382
  msgid "Use only in custom post types?"
383
  msgstr ""
384
 
385
+ #: ../lib/yasr-settings-functions.php:171
386
  msgid "You see this because you use custom post types."
387
  msgstr ""
388
 
389
+ #: ../lib/yasr-settings-functions.php:173
390
  msgid "If you want to use auto insert only in custom post types, choose Yes"
391
  msgstr ""
392
 
393
+ #: ../lib/yasr-settings-functions.php:213
394
  msgid ""
395
  "If you enable this, \"Overall Rating\" will be showed not only in the single "
396
  "article or page, but also in pages like Home Page, category pages or "
397
  "archives."
398
  msgstr ""
399
 
400
+ #: ../lib/yasr-settings-functions.php:239
401
  msgid ""
402
  "If you enable this, \"Visitor Votes\" will be showed not only in the single "
403
  "article or page, but also in pages like Home Page, category pages or "
404
  "archives."
405
  msgstr ""
406
 
407
+ #: ../lib/yasr-settings-functions.php:274
408
  msgid "Custom text to display before Overall Rating"
409
  msgstr ""
410
 
411
+ #: ../lib/yasr-settings-functions.php:279
412
+ msgid "Custom text to display BEFORE Visitor Rating"
413
  msgstr ""
414
 
415
+ #: ../lib/yasr-settings-functions.php:285
416
+ msgid "Custom text to display AFTER Visitor Rating"
417
+ msgstr ""
418
+
419
+ #: ../lib/yasr-settings-functions.php:290
420
  msgid "Custom text to display when a non logged user has already rated"
421
  msgstr ""
422
 
423
+ #: ../lib/yasr-settings-functions.php:295
424
+ msgid "Help"
425
+ msgstr ""
426
+
427
+ #: ../lib/yasr-settings-functions.php:299
428
+ msgid ""
429
+ "In the first field you can use %overall_rating% pattern to show the overall "
430
+ "rating."
431
+ msgstr ""
432
+
433
+ #: ../lib/yasr-settings-functions.php:303
434
+ msgid ""
435
+ "In the Second and Third fields you can use %total_count% pattern to show the "
436
+ "total count, and %average% pattern to show the average"
437
+ msgstr ""
438
+
439
+ #: ../lib/yasr-settings-functions.php:342
440
  msgid "Allow only logged-in users"
441
  msgstr ""
442
 
443
+ #: ../lib/yasr-settings-functions.php:346
444
  msgid "Allow everybody (logged in and anonymous)"
445
  msgstr ""
446
 
447
+ #: ../lib/yasr-settings-functions.php:363
448
  msgid "Review Rating"
449
  msgstr ""
450
 
451
+ #: ../lib/yasr-settings-functions.php:367
452
  msgid "Aggregate Rating"
453
  msgstr ""
454
 
455
+ #: ../lib/yasr-settings-functions.php:372
456
  msgid "What is this?"
457
  msgstr ""
458
 
459
+ #: ../lib/yasr-settings-functions.php:377
460
  msgid ""
461
  "If you select \"Review Rating\", your site will be indexed from search "
462
  "engines like this: "
463
  msgstr ""
464
 
465
+ #: ../lib/yasr-settings-functions.php:382
466
  msgid ""
467
  "If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
468
  "this"
469
  msgstr ""
470
 
471
+ #: ../lib/yasr-settings-functions.php:400
472
  msgid "Stars"
473
  msgstr ""
474
 
475
+ #: ../lib/yasr-settings-functions.php:404
476
  msgid "Numbers"
477
  msgstr ""
478
 
479
+ #: ../lib/yasr-settings-functions.php:429
480
  msgid "Which color scheme do you want to use?"
481
  msgstr ""
482
 
483
+ #: ../lib/yasr-settings-functions.php:450
484
  msgid "Light"
485
  msgstr ""
486
 
487
+ #: ../lib/yasr-settings-functions.php:455
488
  msgid "Dark"
489
  msgstr ""
490
 
491
+ #: ../lib/yasr-settings-functions.php:460
492
  msgid "Preview"
493
  msgstr ""
494
 
495
+ #: ../lib/yasr-settings-functions.php:465
496
  msgid "Light theme"
497
  msgstr ""
498
 
499
+ #: ../lib/yasr-settings-functions.php:470
500
  msgid "Dark theme"
501
  msgstr ""
502
 
503
+ #: ../lib/yasr-settings-functions.php:485
504
  msgid "Add New Multiple Set"
505
  msgstr ""
506
 
507
+ #: ../lib/yasr-settings-functions.php:486
508
  msgid ""
509
  "Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
510
  "characters"
511
  msgstr ""
512
 
513
+ #: ../lib/yasr-settings-functions.php:489
514
  msgid "Name"
515
  msgstr ""
516
 
517
+ #: ../lib/yasr-settings-functions.php:494
518
  msgid "You can insert up to nine elements"
519
  msgstr ""
520
 
521
+ #: ../lib/yasr-settings-functions.php:499
522
  msgid "Element "
523
  msgstr ""
524
 
525
+ #: ../lib/yasr-settings-functions.php:509
526
  msgid "Create New Set"
527
  msgstr ""
528
 
529
+ #: ../lib/yasr-settings-functions.php:530
530
+ #: ../lib/yasr-settings-functions.php:562
531
  msgid "Manage Multiple Set"
532
  msgstr ""
533
 
534
+ #: ../lib/yasr-settings-functions.php:532
535
  msgid "Wich set do you want to edit or remove?"
536
  msgstr ""
537
 
538
+ #: ../lib/yasr-settings-functions.php:572
539
+ #: ../lib/yasr-settings-functions.php:690
540
  msgid "Field name"
541
  msgstr ""
542
 
543
+ #: ../lib/yasr-settings-functions.php:576
544
+ #: ../lib/yasr-settings-functions.php:694
545
  msgid "Remove"
546
  msgstr ""
547
 
548
+ #: ../lib/yasr-settings-functions.php:618
549
+ #: ../lib/yasr-settings-functions.php:736
550
  msgid "Remove whole set?"
551
  msgstr ""
552
 
553
+ #: ../lib/yasr-settings-functions.php:631
554
+ #: ../lib/yasr-settings-functions.php:749
555
  msgid ""
556
  "If you remove something you will remove all the votes for that set or field. "
557
  "This operation CAN'T BE undone."
558
  msgstr ""
559
 
560
+ #: ../lib/yasr-settings-functions.php:638
561
+ #: ../lib/yasr-settings-functions.php:756
562
  msgid "You can use up to 9 elements"
563
  msgstr ""
564
 
565
+ #: ../lib/yasr-settings-functions.php:640
566
+ #: ../lib/yasr-settings-functions.php:758
567
  msgid "Add element"
568
  msgstr ""
569
 
570
+ #: ../lib/yasr-settings-functions.php:642
571
+ #: ../lib/yasr-settings-functions.php:760
572
  msgid "Save changes"
573
  msgstr ""
574
 
575
+ #: ../lib/yasr-settings-functions.php:652
576
  msgid "No Multiple Set were found"
577
  msgstr ""
578
 
579
+ #: ../lib/yasr-settings-functions.php:902
580
+ #: ../lib/yasr-settings-functions.php:1170
581
  msgid "Settings Saved"
582
  msgstr ""
583
 
584
+ #: ../lib/yasr-settings-functions.php:907
585
  msgid "Something goes wrong trying insert set field name. Please report it"
586
  msgstr ""
587
 
588
+ #: ../lib/yasr-settings-functions.php:913
589
  msgid "Something goes wrong trying insert Multi Set name. Please report it"
590
  msgstr ""
591
 
592
+ #: ../lib/yasr-settings-functions.php:988
593
  msgid "Something goes wrong trying to delete a Multi Set . Please report it"
594
  msgstr ""
595
 
596
+ #: ../lib/yasr-settings-functions.php:1034
597
  msgid ""
598
  "Something goes wrong trying to delete a Multi Set's element. Please report it"
599
  msgstr ""
600
 
601
+ #: ../lib/yasr-settings-functions.php:1098
602
  msgid ""
603
  "Something goes wrong trying to update a Multi Set's element. Please report it"
604
  msgstr ""
605
 
606
+ #: ../lib/yasr-settings-functions.php:1155
607
  msgid ""
608
  "Something goes wrong trying to insert set field name in edit form. Please "
609
  "report it"
610
  msgstr ""
611
 
612
+ #: ../lib/yasr-settings-functions.php:1198
613
  msgid "Style Options"
614
  msgstr ""
615
 
616
+ #: ../lib/yasr-settings-functions.php:1199
617
  msgid "Custom CSS Styles"
618
  msgstr ""
619
 
620
+ #: ../lib/yasr-settings-functions.php:1204
621
  msgid ""
622
  "Please use text area below to write your own CSS styles to override the "
623
  "default ones."
624
  msgstr ""
625
 
626
+ #: ../lib/yasr-settings-functions.php:1206
627
  msgid "Leave it blank if you don't know what you're doing"
628
  msgstr ""
629
 
630
+ #: ../lib/yasr-settings-functions.php:1229
631
  msgid "Looking for more features?"
632
  msgstr ""
633
 
634
+ #: ../lib/yasr-settings-functions.php:1230
635
  msgid "Upgrade to yasr pro!"
636
  msgstr ""
637
 
638
+ #: ../lib/yasr-settings-functions.php:1246
639
  msgid "Unlimited ratings and votes"
640
  msgstr ""
641
 
642
+ #: ../lib/yasr-settings-functions.php:1252
643
  msgid "Works with shortcodes"
644
  msgstr ""
645
 
646
+ #: ../lib/yasr-settings-functions.php:1258
647
  msgid "Multi Set Support"
648
  msgstr ""
649
 
650
+ #: ../lib/yasr-settings-functions.php:1263
651
  msgid "Logs and stats for visitors votes"
652
  msgstr ""
653
 
654
+ #: ../lib/yasr-settings-functions.php:1268
655
  msgid "Localization (.po and .mo files included)"
656
  msgstr ""
657
 
658
+ #: ../lib/yasr-settings-functions.php:1273
659
  msgid "Rich Snippet Support"
660
  msgstr ""
661
 
662
+ #: ../lib/yasr-settings-functions.php:1278
663
  msgid "Rankings for reviews, votes and users"
664
  msgstr ""
665
 
666
+ #: ../lib/yasr-settings-functions.php:1283
667
  msgid "Rankings Customization"
668
  msgstr ""
669
 
670
+ #: ../lib/yasr-settings-functions.php:1288
671
  msgid "Stars Customization"
672
  msgstr ""
673
 
674
+ #: ../lib/yasr-settings-functions.php:1289
675
  msgid "Size Only"
676
  msgstr ""
677
 
678
+ #: ../lib/yasr-settings-functions.php:1290
679
  msgid ""
680
  "Users can choose different ready to use sets or can upload their own images."
681
  msgstr ""
682
 
683
+ #: ../lib/yasr-settings-functions.php:1293
 
 
 
 
684
  msgid "Users can review in comments"
685
  msgstr ""
686
 
687
+ #: ../lib/yasr-settings-functions.php:1304
688
  msgid "Not avaible yet"
689
  msgstr ""
690
 
691
+ #: ../lib/yasr-settings-functions.php:1336
692
+ #: ../lib/yasr-settings-functions.php:1363
693
  msgid "Follow YASR official site!"
694
  msgstr ""
695
 
696
+ #: ../lib/yasr-settings-functions.php:1393
697
  msgid "No previous Gd Star Rating installation was found"
698
  msgstr ""
699
 
700
+ #: ../lib/yasr-db-functions.php:309
701
  msgid "No recenet votes yet"
702
  msgstr ""
703
 
704
+ #: ../lib/yasr-db-functions.php:324 ../lib/yasr-ajax-functions.php:778
705
  msgid "anonymous"
706
  msgstr ""
707
 
708
+ #: ../lib/yasr-db-functions.php:333
709
  #, php-format
710
+ msgid "Vote %d from %s on "
711
  msgstr ""
712
 
713
+ #: ../lib/yasr-db-functions.php:349 ../lib/yasr-ajax-functions.php:803
714
  msgid "Ip address"
715
  msgstr ""
716
 
717
+ #: ../lib/yasr-db-functions.php:390 ../lib/yasr-ajax-functions.php:844
718
  msgid "Pages"
719
  msgstr ""
720
 
721
+ #: ../lib/yasr-functions.php:98 ../lib/yasr-functions.php:99
722
  msgid "Yet Another Stars Rating: Settings"
723
  msgstr ""
724
 
725
  #: ../lib/yasr-functions.php:143
 
 
 
 
726
  msgid "Yet Another Stars Rating: Multiple set"
727
  msgstr ""
728
 
729
+ #: ../lib/yasr-functions.php:149
730
  msgid "Overall Rating"
731
  msgstr ""
732
 
733
+ #: ../lib/yasr-functions.php:159
734
  msgid "You don't have enought privileges to insert Overall Rating"
735
  msgstr ""
736
 
737
+ #: ../lib/yasr-functions.php:169
738
  msgid "You don't have enought privileges to insert Multi Set"
739
  msgstr ""
740
 
741
+ #: ../lib/yasr-functions.php:309
742
  msgid " reviewed by "
743
  msgstr ""
744
 
745
+ #: ../lib/yasr-functions.php:310
746
  msgid " on "
747
  msgstr ""
748
 
749
+ #: ../lib/yasr-functions.php:311
750
  msgid " rated "
751
  msgstr ""
752
 
753
+ #: ../lib/yasr-functions.php:311
754
  msgid " of"
755
  msgstr ""
756
 
757
+ #: ../lib/yasr-functions.php:358
758
  msgid " written by "
759
  msgstr ""
760
 
761
+ #: ../lib/yasr-functions.php:360
762
  msgid " average rating "
763
  msgstr ""
764
 
765
+ #: ../lib/yasr-functions.php:361
766
  msgid " user ratings"
767
  msgstr ""
768
 
783
  msgid "Choose a vote for each element"
784
  msgstr ""
785
 
786
+ #: ../lib/yasr-ajax-functions.php:257 ../lib/yasr-ajax-functions.php:301
787
+ msgid "If you want to insert this multiset, paste this shortcode "
788
  msgstr ""
789
 
790
+ #: ../lib/yasr-ajax-functions.php:259 ../lib/yasr-ajax-functions.php:303
791
+ msgid ""
792
+ "If, instead, you want allow your visitor to vote on this multiset, use this "
793
+ "shortcode"
794
  msgstr ""
795
 
796
+ #: ../lib/yasr-ajax-functions.php:268
797
  msgid "Choose a vote for every element"
798
  msgstr ""
799
 
800
+ #: ../lib/yasr-ajax-functions.php:441
801
  msgid "Main"
802
  msgstr ""
803
 
804
+ #: ../lib/yasr-ajax-functions.php:442
805
  msgid "Charts"
806
  msgstr ""
807
 
808
+ #: ../lib/yasr-ajax-functions.php:444
809
  msgid "Read the doc"
810
  msgstr ""
811
 
812
+ #: ../lib/yasr-ajax-functions.php:453
813
  msgid "Overall Rating / Review"
814
  msgstr ""
815
 
816
+ #: ../lib/yasr-ajax-functions.php:455
817
  msgid "Insert Overall Rating"
818
  msgstr ""
819
 
820
+ #: ../lib/yasr-ajax-functions.php:456
821
  msgid "Insert Overall Rating / Review for this post"
822
  msgstr ""
823
 
824
+ #: ../lib/yasr-ajax-functions.php:459 ../lib/yasr-ajax-functions.php:477
825
  msgid "Choose Size"
826
  msgstr ""
827
 
828
+ #: ../lib/yasr-ajax-functions.php:473
829
  msgid "Insert Visitor Votes"
830
  msgstr ""
831
 
832
+ #: ../lib/yasr-ajax-functions.php:474
833
  msgid "Insert the ability for your visitor to vote"
834
  msgstr ""
835
 
836
+ #: ../lib/yasr-ajax-functions.php:491
837
  msgid "If you want to insert a Multi Set, pick one:"
838
  msgstr ""
839
 
840
+ #: ../lib/yasr-ajax-functions.php:497
841
  msgid "Choose wich set you want to insert."
842
  msgstr ""
843
 
844
+ #: ../lib/yasr-ajax-functions.php:499 ../lib/yasr-ajax-functions.php:516
845
+ msgid "Readonly?"
846
  msgstr ""
847
 
848
+ #: ../lib/yasr-ajax-functions.php:501 ../lib/yasr-ajax-functions.php:517
849
+ msgid ""
850
+ "If Readonly is checked, only you can insert the votes (in the box above the "
851
+ "editor)"
852
  msgstr ""
853
 
854
+ #: ../lib/yasr-ajax-functions.php:502
855
+ msgid "Insert Multi Set"
856
  msgstr ""
857
 
858
+ #: ../lib/yasr-ajax-functions.php:511
859
+ msgid "Insert Multiset:"
860
+ msgstr ""
861
+
862
+ #: ../lib/yasr-ajax-functions.php:514
863
+ msgid "Insert Multiple Set"
864
+ msgstr ""
865
+
866
+ #: ../lib/yasr-ajax-functions.php:532
867
  msgid "Ranking reviews"
868
  msgstr ""
869
 
870
+ #: ../lib/yasr-ajax-functions.php:533
871
  msgid "Insert Ranking reviews"
872
  msgstr ""
873
 
874
+ #: ../lib/yasr-ajax-functions.php:534
875
  msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
876
  msgstr ""
877
 
878
+ #: ../lib/yasr-ajax-functions.php:538
879
  msgid "Users' ranking"
880
  msgstr ""
881
 
882
+ #: ../lib/yasr-ajax-functions.php:539
883
  msgid "Insert Users ranking"
884
  msgstr ""
885
 
886
+ #: ../lib/yasr-ajax-functions.php:540
887
  msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
888
  msgstr ""
889
 
890
+ #: ../lib/yasr-ajax-functions.php:544
891
  msgid "Most active reviewers"
892
  msgstr ""
893
 
894
+ #: ../lib/yasr-ajax-functions.php:545
895
  msgid "Insert Most Active Reviewers"
896
  msgstr ""
897
 
898
+ #: ../lib/yasr-ajax-functions.php:546
899
  msgid "Insert Top 5 active reviewers"
900
  msgstr ""
901
 
902
+ #: ../lib/yasr-ajax-functions.php:550
903
  msgid "Most Active Users"
904
  msgstr ""
905
 
906
+ #: ../lib/yasr-ajax-functions.php:551
907
  msgid "Insert Most Active Users"
908
  msgstr ""
909
 
910
+ #: ../lib/yasr-ajax-functions.php:552
911
  msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
912
  msgstr ""
913
 
914
+ #: ../lib/yasr-ajax-functions.php:623
915
  msgid "Reviews and Visitor Votes have been successfull imported."
916
  msgstr ""
917
 
918
+ #: ../lib/yasr-ajax-functions.php:629
919
  msgid ""
920
  "Step2: I will check if you used Multiple Sets and if so I will import them. "
921
  "THIS MAY TAKE A WHILE!"
922
  msgstr ""
923
 
924
+ #: ../lib/yasr-ajax-functions.php:631
925
  msgid "Proceed Step 2"
926
  msgstr ""
927
 
928
+ #: ../lib/yasr-ajax-functions.php:638
929
  msgid "Something goes wrong! Refresh the page and try again!"
930
  msgstr ""
931
 
932
+ #: ../lib/yasr-ajax-functions.php:667
933
  msgid "I've found Multiple Set! Importing..."
934
  msgstr ""
935
 
936
+ #: ../lib/yasr-ajax-functions.php:676
937
  msgid "Multi Set's name has been successfull imported."
938
  msgstr ""
939
 
940
+ #: ../lib/yasr-ajax-functions.php:678
941
  msgid "Now I'm going to import Multi Set data"
942
  msgstr ""
943
 
944
+ #: ../lib/yasr-ajax-functions.php:689
945
  msgid "All votes has been successfull imported."
946
  msgstr ""
947
 
948
+ #: ../lib/yasr-ajax-functions.php:691
949
  msgid "Done"
950
  msgstr ""
951
 
952
+ #: ../lib/yasr-ajax-functions.php:696
953
  msgid "I've found Multiple Set's votes but I couldn't insert into db"
954
  msgstr ""
955
 
956
+ #: ../lib/yasr-ajax-functions.php:704
957
  msgid "I've found Multi Set but with no data"
958
  msgstr ""
959
 
960
+ #: ../lib/yasr-ajax-functions.php:713
961
  msgid "I've found Multi Sets names but I couldn't insert into db"
962
  msgstr ""
963
 
964
+ #: ../lib/yasr-ajax-functions.php:721
965
  msgid "Multisets were not found. Imported is done!"
966
  msgstr ""
967
 
968
+ #: ../lib/yasr-ajax-functions.php:765
969
  msgid "No Recenet votes yet"
970
  msgstr ""
971
 
972
+ #: ../lib/yasr-ajax-functions.php:787
973
+ #, php-format
974
+ msgid "Vote %d from %s on"
975
+ msgstr ""
976
+
977
+ #: ../lib/yasr-ajax-functions.php:937 ../lib/yasr-ajax-functions.php:1088
978
  msgid "Error: you can't vote 0"
979
  msgstr ""
980
 
981
+ #: ../lib/yasr-ajax-functions.php:1040 ../lib/yasr-ajax-functions.php:1048
982
+ msgid "Average:"
983
  msgstr ""
984
 
985
+ #: ../lib/yasr-ajax-functions.php:1041 ../lib/yasr-ajax-functions.php:1049
986
  msgid "Vote Saved"
987
  msgstr ""
988
 
989
+ #: ../lib/yasr-ajax-functions.php:1184
990
  msgid "Vote updated"
991
  msgstr ""
992
 
993
+ #: ../lib/yasr-ajax-functions.php:1294
994
+ msgid "Rating saved!"
 
 
 
 
 
 
 
 
995
  msgstr ""
996
 
997
+ #: ../lib/yasr-ajax-functions.php:1300
998
+ msgid "Rating not saved. Please Try again"
999
  msgstr ""
lib/yasr-ajax-functions.php CHANGED
@@ -1005,7 +1005,14 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
1005
  );
1006
  }
1007
 
 
 
1008
  if ($row_exists_result || $new_row_result ) {
 
 
 
 
 
1009
  global $current_user;
1010
  get_currentuserinfo();
1011
 
@@ -1181,22 +1188,25 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
1181
  }
1182
 
1183
 
 
1184
 
1185
- /****** Echo a readonly star set if user has already voted for a post ******/
 
1186
 
1187
- add_action( 'wp_ajax_yasr_readonly_visitor_shortcode', 'yasr_readonly_visitor_shortcode_callback' );
1188
- add_action( 'wp_ajax_nopriv_yasr_readonly_visitor_shortcode', 'yasr_readonly_visitor_shortcode_callback' );
1189
 
1190
- function yasr_readonly_visitor_shortcode_callback() {
1191
- if(isset($_POST['rating']) && isset($_POST['post_id']) && isset($_POST['size'])) {
1192
- $rating = $_POST['rating'];
1193
  $post_id = $_POST['post_id'];
1194
- $size = $_POST['size'];
1195
-
1196
- if($post_id == '') {
1197
 
1198
- exit();
 
 
1199
 
 
 
1200
  }
1201
 
1202
  }
@@ -1204,99 +1214,98 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
1204
  exit();
1205
  }
1206
 
1207
- if ($size === 'small') {
1208
- $rateit_class='rateit';
1209
- $px_size = '16';
1210
- }
1211
-
1212
- elseif ($size === 'medium') {
1213
- $rateit_class = 'rateit medium';
1214
- $px_size = '24';
1215
- }
1216
-
1217
- //default values
1218
- else {
1219
- $rateit_class = 'rateit bigstars';
1220
- $px_size = '32';
1221
  }
1222
 
1223
  global $wpdb;
1224
 
1225
- //I've to pass post_id here cause get_the_id doesn't work if called with ajax
1226
- $array_votes=yasr_get_visitor_votes($post_id);
1227
 
1228
- foreach ($array_votes as $vote) {
1229
- $number_of_votes = $vote->number_of_votes;
1230
- $sum_votes = $vote->sum_votes;
1231
- }
1232
 
1233
- //This should never happen, only if a user manually erase data from tables
1234
- if ($number_of_votes == 0) {
1235
- $number_of_votes = 1;
1236
- }
 
 
 
1237
 
1238
- $average_rating = $sum_votes/$number_of_votes;
 
 
 
1239
 
1240
- $average_rating = round ($average_rating, 1);
 
1241
 
1242
 
1243
- //Check if user specifyed a custom text to display when a vistor has rated
 
 
 
 
 
 
 
 
 
 
 
 
 
1244
 
1245
- $shortcode = "<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>";
1246
-
1247
- if (YASR_VISITORS_STATS === 'yes') {
1248
- $shortcode .= "<span class=\"dashicons dashicons-chart-bar yasr-dashicons-visitor-stats \" id=\"yasr-total-average-dashicon-$post_id\" title=\"yasr-stats-dashicon\"></span>";
1249
- }
1250
 
1251
- $shortcode.="<span class=\"yasr-total-average-container\" id=\"yasr-total-average-text_$post_id\" title=\"yasr-stats\">
1252
- [" . __("Total: ", "yasr") . "$number_of_votes &nbsp; &nbsp;" . __("Average " , "yasr") . "$average_rating/5 ]
1253
- </span>";
1254
 
1255
- if( YASR_TEXT_BEFORE_STARS == 1 && YASR_CUSTOM_TEXT_USER_VOTED != '' ) {
1256
 
1257
- $shortcode .= "<span class=\"yasr-small-block-bold\" id=\"yasr-already-voted-text\">" . YASR_CUSTOM_TEXT_USER_VOTED . " </span>";
1258
 
1259
- }
1260
 
1261
- else {
1262
 
1263
- $shortcode .= "<span class=\"yasr-small-block-bold\" id=\"yasr-already-voted-text\">" . __("You've already voted this article", "yasr") . " $rating </span>";
1264
 
1265
- }
1266
 
1267
- echo $shortcode;
 
 
1268
 
1269
- ?>
1270
 
1271
- <script type="text/javascript">
1272
 
1273
- jQuery(document).ready(function() {
1274
 
1275
- var postid = <?php echo (json_encode($post_id)); ?>;
1276
- var ajaxurl = <?php echo (json_encode(admin_url('admin-ajax.php'))); ?>;
1277
 
1278
- var visitorStatsEnabled = <?php echo (json_encode(YASR_VISITORS_STATS)); ?>;
1279
 
1280
- //If stats are enabled call the function
1281
- if (visitorStatsEnabled == 'yes') {
1282
- yasrDrawTipsProgress (postid, ajaxurl);
1283
- }
1284
 
1285
- });
1286
 
1287
- </script>
1288
 
1289
- <?php
1290
 
 
1291
 
1292
- die(); // this is required to return a proper result
1293
 
 
 
1294
  } //End callback function
1295
 
1296
-
1297
- /****** Draw the stats for visitors votes ******/
1298
-
1299
- add_action( 'wp_ajax_yasr_stats_visitors_votes', 'yasr_stats_visitors_votes_callback' );
1300
  add_action( 'wp_ajax_nopriv_yasr_stats_visitors_votes', 'yasr_stats_visitors_votes_callback' );
1301
 
1302
  function yasr_stats_visitors_votes_callback () {
@@ -1426,122 +1435,4 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
1426
 
1427
  }
1428
 
1429
-
1430
- /****** Get Multiple value from visitor and insert into db, used in yasr-shortcode-functions ******/
1431
-
1432
- add_action( 'wp_ajax_yasr_visitor_multiset_field_vote', 'yasr_visitor_multiset_field_vote_callback' );
1433
- add_action ('wp_ajax_nopriv_yasr_visitor_multiset_field_vote', 'yasr_visitor_multiset_field_vote_callback');
1434
-
1435
- function yasr_visitor_multiset_field_vote_callback() {
1436
-
1437
- if (isset($_POST['post_id']) && isset($_POST['rating']) && isset($_POST['set_type'])) {
1438
- $post_id = $_POST['post_id'];
1439
- $rating = $_POST['rating'];
1440
- $set_type = $_POST['set_type'];
1441
- $nonce = $_POST['nonce'];
1442
-
1443
- if ($post_id == '' || $set_type == '') {
1444
- exit("Missing post id or set type");
1445
- }
1446
-
1447
- if ($rating == "") {
1448
- exit("You must insert at least a rating");
1449
- }
1450
-
1451
- }
1452
- else {
1453
- exit();
1454
- }
1455
-
1456
- if ( ! wp_verify_nonce( $nonce, 'yasr_nonce_insert_visitor_rating_multiset' ) ) {
1457
- die( 'Security check' );
1458
- }
1459
-
1460
- global $wpdb;
1461
-
1462
- $array_error = array();
1463
-
1464
- foreach ($rating as $rating_values) {
1465
-
1466
- $id_field = $rating_values['field'];
1467
- $rating = $rating_values['rating'];
1468
-
1469
- //Find the existing votes
1470
- $existing_vote=$wpdb->get_results($wpdb->prepare("SELECT number_of_votes, sum_votes FROM " . YASR_MULTI_SET_VALUES_TABLE . "
1471
- WHERE post_id = %d
1472
- AND set_type = %d
1473
- AND field_id = %d
1474
- ",
1475
- $post_id, $set_type, $id_field));
1476
-
1477
- foreach ($existing_vote as $user_votes) {
1478
- $number_of_votes = $user_votes->number_of_votes;
1479
- $user_votes_sum = $user_votes->sum_votes;
1480
- }
1481
-
1482
- $number_of_votes=$number_of_votes+1;
1483
- $user_votes_sum=$user_votes_sum+$rating;
1484
-
1485
-
1486
- $query_success=$wpdb->update(
1487
- YASR_MULTI_SET_VALUES_TABLE,
1488
- array (
1489
- 'number_of_votes' => $number_of_votes,
1490
- 'sum_votes' => $user_votes_sum,
1491
- ),
1492
- array (
1493
- 'post_id' => $post_id,
1494
- 'field_id' => $id_field,
1495
- 'set_type' => $set_type
1496
- ),
1497
- array('%d', '%s' ),
1498
- array( '%d', '%d', '%d' )
1499
- );
1500
-
1501
- if ($query_success) {
1502
-
1503
- $array_error[] = 0;
1504
-
1505
- }
1506
-
1507
- else {
1508
-
1509
- $array_error[] = 1;
1510
-
1511
- }
1512
-
1513
- } //End foreach ($rating as $rating_values)
1514
-
1515
- $error_found = FALSE;
1516
-
1517
- foreach ($array_error as $error) {
1518
-
1519
- if ($error === 1) {
1520
-
1521
- $error_found = TRUE;
1522
-
1523
- }
1524
-
1525
- }
1526
-
1527
- if(!$error_found) {
1528
-
1529
- $cookiename = 'yasr_multi_visitor_cookie_' . $post_id;
1530
-
1531
- yasr_setcookie($cookiename, 'true');
1532
-
1533
- _e('Rating saved!', 'yasr');
1534
-
1535
- }
1536
-
1537
- else {
1538
-
1539
- _e('Rating not saved. Please Try again', 'yasr');
1540
-
1541
- }
1542
-
1543
- die();
1544
-
1545
- } //End callback function
1546
-
1547
  ?>
1005
  );
1006
  }
1007
 
1008
+
1009
+ //If one of this is true update the log table
1010
  if ($row_exists_result || $new_row_result ) {
1011
+
1012
+ $cookiename = "yasr_visitor_vote_" . $post_id;
1013
+
1014
+ yasr_setcookie($cookiename, $rating);
1015
+
1016
  global $current_user;
1017
  get_currentuserinfo();
1018
 
1188
  }
1189
 
1190
 
1191
+ /****** Get Multiple value from visitor and insert into db, used in yasr-shortcode-functions ******/
1192
 
1193
+ add_action( 'wp_ajax_yasr_visitor_multiset_field_vote', 'yasr_visitor_multiset_field_vote_callback' );
1194
+ add_action ('wp_ajax_nopriv_yasr_visitor_multiset_field_vote', 'yasr_visitor_multiset_field_vote_callback');
1195
 
1196
+ function yasr_visitor_multiset_field_vote_callback() {
 
1197
 
1198
+ if (isset($_POST['post_id']) && isset($_POST['rating']) && isset($_POST['set_type'])) {
 
 
1199
  $post_id = $_POST['post_id'];
1200
+ $rating = $_POST['rating'];
1201
+ $set_type = $_POST['set_type'];
1202
+ $nonce = $_POST['nonce'];
1203
 
1204
+ if ($post_id == '' || $set_type == '') {
1205
+ exit("Missing post id or set type");
1206
+ }
1207
 
1208
+ if ($rating == "") {
1209
+ exit("You must insert at least a rating");
1210
  }
1211
 
1212
  }
1214
  exit();
1215
  }
1216
 
1217
+ if ( ! wp_verify_nonce( $nonce, 'yasr_nonce_insert_visitor_rating_multiset' ) ) {
1218
+ die( 'Security check' );
 
 
 
 
 
 
 
 
 
 
 
 
1219
  }
1220
 
1221
  global $wpdb;
1222
 
1223
+ $array_error = array();
 
1224
 
1225
+ foreach ($rating as $rating_values) {
1226
+
1227
+ $id_field = $rating_values['field'];
1228
+ $rating = $rating_values['rating'];
1229
 
1230
+ //Find the existing votes
1231
+ $existing_vote=$wpdb->get_results($wpdb->prepare("SELECT number_of_votes, sum_votes FROM " . YASR_MULTI_SET_VALUES_TABLE . "
1232
+ WHERE post_id = %d
1233
+ AND set_type = %d
1234
+ AND field_id = %d
1235
+ ",
1236
+ $post_id, $set_type, $id_field));
1237
 
1238
+ foreach ($existing_vote as $user_votes) {
1239
+ $number_of_votes = $user_votes->number_of_votes;
1240
+ $user_votes_sum = $user_votes->sum_votes;
1241
+ }
1242
 
1243
+ $number_of_votes=$number_of_votes+1;
1244
+ $user_votes_sum=$user_votes_sum+$rating;
1245
 
1246
 
1247
+ $query_success=$wpdb->update(
1248
+ YASR_MULTI_SET_VALUES_TABLE,
1249
+ array (
1250
+ 'number_of_votes' => $number_of_votes,
1251
+ 'sum_votes' => $user_votes_sum,
1252
+ ),
1253
+ array (
1254
+ 'post_id' => $post_id,
1255
+ 'field_id' => $id_field,
1256
+ 'set_type' => $set_type
1257
+ ),
1258
+ array('%d', '%s' ),
1259
+ array( '%d', '%d', '%d' )
1260
+ );
1261
 
1262
+ if ($query_success) {
 
 
 
 
1263
 
1264
+ $array_error[] = 0;
 
 
1265
 
1266
+ }
1267
 
1268
+ else {
1269
 
1270
+ $array_error[] = 1;
1271
 
1272
+ }
1273
 
1274
+ } //End foreach ($rating as $rating_values)
1275
 
1276
+ $error_found = FALSE;
1277
 
1278
+ foreach ($array_error as $error) {
1279
+
1280
+ if ($error === 1) {
1281
 
1282
+ $error_found = TRUE;
1283
 
1284
+ }
1285
 
1286
+ }
1287
 
1288
+ if(!$error_found) {
 
1289
 
1290
+ $cookiename = 'yasr_multi_visitor_cookie_' . $post_id;
1291
 
1292
+ yasr_setcookie($cookiename, 'true');
 
 
 
1293
 
1294
+ _e('Rating saved!', 'yasr');
1295
 
1296
+ }
1297
 
1298
+ else {
1299
 
1300
+ _e('Rating not saved. Please Try again', 'yasr');
1301
 
1302
+ }
1303
 
1304
+ die();
1305
+
1306
  } //End callback function
1307
 
1308
+ add_action( 'wp_ajax_yasr_stats_visitors_votes', 'yasr_stats_visitors_votes_callback' );
 
 
 
1309
  add_action( 'wp_ajax_nopriv_yasr_stats_visitors_votes', 'yasr_stats_visitors_votes_callback' );
1310
 
1311
  function yasr_stats_visitors_votes_callback () {
1435
 
1436
  }
1437
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1438
  ?>
lib/yasr-db-functions.php CHANGED
@@ -330,7 +330,7 @@ add_action( 'plugins_loaded', 'add_action_dashboard_widget_log' );
330
  $title_post = get_the_title( $column->post_id );
331
  $link = get_permalink( $column->post_id );
332
 
333
- $yasr_log_vote_text = sprintf(__('Vote %d from %s on', 'yasr'), $column->vote, '<strong style="color: blue">'.$user->user_login.'</strong>' );
334
 
335
  echo "
336
 
330
  $title_post = get_the_title( $column->post_id );
331
  $link = get_permalink( $column->post_id );
332
 
333
+ $yasr_log_vote_text = sprintf(__('Vote %d from %s on ', 'yasr'), $column->vote, '<strong style="color: blue">'.$user->user_login.'</strong>' );
334
 
335
  echo "
336
 
lib/yasr-functions.php CHANGED
@@ -51,7 +51,6 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
51
 
52
 
53
  wp_enqueue_script( 'rateit', YASR_JS_DIR . 'jquery.rateit.min.js' , array('jquery'), '1.0.22', TRUE );
54
- wp_enqueue_script( 'cookie', YASR_JS_DIR . 'jquery-cookie.min.js' , array('jquery', 'rateit'), '1.4.0', TRUE );
55
 
56
  //if visitors stats are enabled
57
  if (YASR_VISITORS_STATS === 'yes') {
@@ -140,7 +139,7 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
140
  //If multiset are used then add 2 metabox, 1 for overall rating and 1 for multiple rating
141
  if ($multi_set) {
142
  foreach ($post_type_where_display_metabox as $post_type) {
143
- add_meta_box( 'yasr_metabox_overall_rating', __( 'YASR', 'yasr' ), 'yasr_metabox_overall_rating_content', $post_type, 'side', 'high' );
144
  add_meta_box( 'yasr_metabox_multiple_rating', __( 'Yet Another Stars Rating: Multiple set', 'yasr' ), 'yasr_metabox_multiple_rating_content', $post_type, 'normal', 'high' );
145
  }
146
  }
51
 
52
 
53
  wp_enqueue_script( 'rateit', YASR_JS_DIR . 'jquery.rateit.min.js' , array('jquery'), '1.0.22', TRUE );
 
54
 
55
  //if visitors stats are enabled
56
  if (YASR_VISITORS_STATS === 'yes') {
139
  //If multiset are used then add 2 metabox, 1 for overall rating and 1 for multiple rating
140
  if ($multi_set) {
141
  foreach ($post_type_where_display_metabox as $post_type) {
142
+ add_meta_box( 'yasr_metabox_overall_rating', 'YASR', 'yasr_metabox_overall_rating_content', $post_type, 'side', 'high' );
143
  add_meta_box( 'yasr_metabox_multiple_rating', __( 'Yet Another Stars Rating: Multiple set', 'yasr' ), 'yasr_metabox_multiple_rating_content', $post_type, 'normal', 'high' );
144
  }
145
  }
lib/yasr-settings-functions.php CHANGED
@@ -32,18 +32,19 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
32
 
33
  //This is to avoid undefined offset
34
  if ($option && $option['auto_insert_enabled']==0) {
35
- $option['auto_insert_what']='overall_rating';
36
- $option['auto_insert_where']='top';
37
- $option['auto_insert_exclude_pages']='yes';
38
- $option['auto_insert_size']='large';
39
- $option['auto_insert_custom_post_only']='no';
40
  }
41
 
42
  //This is to avoid undefined offset
43
  if ($option && $option['text_before_stars']==0) {
44
- $option['text_before_overall']='';
45
- $option['text_before_visitor_rating']='';
46
- $option['custom_text_user_voted']='';
 
47
  }
48
 
49
  add_settings_section( 'yasr_general_options_section_id', __('General settings', 'yasr'), 'yasr_section_callback', 'yasr_general_settings_tab' );
@@ -253,6 +254,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
253
 
254
  $text_before_visitor_rating = htmlspecialchars("$option[text_before_visitor_rating]");
255
 
 
 
256
  $custom_text_user_votes = htmlentities("$option[custom_text_user_voted]");
257
 
258
  ?>
@@ -266,20 +269,40 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
266
  <?php _e('No', 'yasr'); ?>
267
 
268
  <br /> <br />
269
-
270
  <input type='text' name='yasr_general_options[text_before_overall]' id="yasr-general-options-custom-text-before-overall" class='yasr-general-options-text-before' <?php printf('value="%s"', $text_before_overall); ?> maxlength="40"/>
271
- <?php _e('Custom text to display before Overall Rating', 'yasr')?>
272
-
273
- <br /> <br />
274
 
275
- <input type='text' name='yasr_general_options[text_before_visitor_rating]' id="yasr-general-options-custom-text-before-visitor" class='yasr-general-options-text-before' <?php printf('value="%s"', $text_before_visitor_rating); ?> maxlength="40"/>
276
- <?php _e('Custom text to display before Visitor Rating', 'yasr')?>
 
 
277
 
278
  <br /> <br />
279
 
280
- <input type='text' name='yasr_general_options[custom_text_user_voted]' id="yasr-general-options-custom-text-already-rated" class='yasr-general-options-text-before' <?php printf('value="%s"', $custom_text_user_votes); ?> maxlength="60"/>
281
- <?php _e('Custom text to display when a non logged user has already rated', 'yasr')?>
282
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
 
284
  <p>&nbsp;</p>
285
 
32
 
33
  //This is to avoid undefined offset
34
  if ($option && $option['auto_insert_enabled']==0) {
35
+ $option['auto_insert_what'] = 'overall_rating';
36
+ $option['auto_insert_where'] = 'top';
37
+ $option['auto_insert_exclude_pages'] = 'yes';
38
+ $option['auto_insert_size'] = 'large';
39
+ $option['auto_insert_custom_post_only'] = 'no';
40
  }
41
 
42
  //This is to avoid undefined offset
43
  if ($option && $option['text_before_stars']==0) {
44
+ $option['text_before_overall'] = '';
45
+ $option['text_before_visitor_rating'] = '';
46
+ $option['text_after_visitor_rating'] = '';
47
+ $option['custom_text_user_voted'] = '';
48
  }
49
 
50
  add_settings_section( 'yasr_general_options_section_id', __('General settings', 'yasr'), 'yasr_section_callback', 'yasr_general_settings_tab' );
254
 
255
  $text_before_visitor_rating = htmlspecialchars("$option[text_before_visitor_rating]");
256
 
257
+ $text_after_visitor_rating = htmlspecialchars("$option[text_after_visitor_rating]");
258
+
259
  $custom_text_user_votes = htmlentities("$option[custom_text_user_voted]");
260
 
261
  ?>
269
  <?php _e('No', 'yasr'); ?>
270
 
271
  <br /> <br />
272
+
273
  <input type='text' name='yasr_general_options[text_before_overall]' id="yasr-general-options-custom-text-before-overall" class='yasr-general-options-text-before' <?php printf('value="%s"', $text_before_overall); ?> maxlength="40"/>
274
+ <?php _e('Custom text to display before Overall Rating', 'yasr')?>
 
 
275
 
276
+ <br /> <br /> <br />
277
+
278
+ <input type='text' name='yasr_general_options[text_before_visitor_rating]' id="yasr-general-options-custom-text-before-visitor" class='yasr-general-options-text-before' <?php printf('value="%s"', $text_before_visitor_rating); ?> maxlength="80"/>
279
+ <?php _e('Custom text to display BEFORE Visitor Rating', 'yasr')?>
280
 
281
  <br /> <br />
282
 
 
 
283
 
284
+ <input type='text' name='yasr_general_options[text_after_visitor_rating]' id="yasr-general-options-custom-text-after-visitor" class='yasr-general-options-text-before' <?php printf('value="%s"', $text_after_visitor_rating); ?> maxlength="80"/>
285
+ <?php _e('Custom text to display AFTER Visitor Rating', 'yasr')?>
286
+
287
+ <br /> <br /> <br />
288
+
289
+ <input type='text' name='yasr_general_options[custom_text_user_voted]' id="yasr-general-options-custom-text-already-rated" class='yasr-general-options-text-before' <?php printf('value="%s"', $custom_text_user_votes); ?> maxlength="60"/>
290
+ <?php _e('Custom text to display when a non logged user has already rated', 'yasr')?>
291
+
292
+
293
+ <br /> <br />
294
+
295
+ <a href="#" id="yasr-doc-custom-text-link"><?php _e('Help', 'yasr'); ?></a>
296
+
297
+ <div id="yasr-doc-custom-text-div" class="yasr-help-box-settings">
298
+
299
+ <?php _e('In the first field you can use %overall_rating% pattern to show the overall rating.', 'yasr');?>
300
+
301
+ <br /> <br />
302
+
303
+ <?php _e('In the Second and Third fields you can use %total_count% pattern to show the total count, and %average% pattern to show the average', 'yasr');?>
304
+
305
+ </div>
306
 
307
  <p>&nbsp;</p>
308
 
lib/yasr-shortcode-functions.php CHANGED
@@ -47,8 +47,10 @@ function shortcode_overall_rating_callback ($atts) {
47
 
48
  if (YASR_TEXT_BEFORE_STARS == 1 && YASR_TEXT_BEFORE_OVERALL != '') {
49
 
 
 
50
  $shortcode_html = "<div class=\"yasr-container-custom-text-and-overall\">
51
- <span id=\"yasr-custom-text-before-overall\">" . YASR_TEXT_BEFORE_OVERALL . "</span>";
52
 
53
  }
54
 
@@ -165,6 +167,34 @@ function shortcode_visitor_votes_callback ($atts) {
165
  $px_size = '32';
166
  }
167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  $vote_if_user_already_rated = FALSE;
169
 
170
  $shortcode_html = "<div id=\"yasr_visitor_votes_$post_id\" class=\"yasr-visitor-votes\">";
@@ -173,11 +203,11 @@ function shortcode_visitor_votes_callback ($atts) {
173
  //if anonymous are allowed to vote
174
  if (YASR_ALLOWED_USER === 'allow_anonymous') {
175
 
176
- $readonly = 'false'; //readonly is ALWAYS false
177
-
178
- //I've to block a logged in user that has already rated
179
  if ( is_user_logged_in() ) {
180
 
 
 
181
  //Chek if a logged in user has already rated for this post
182
  $vote_if_user_already_rated = yasr_check_if_user_already_voted();
183
 
@@ -189,6 +219,25 @@ function shortcode_visitor_votes_callback ($atts) {
189
  }
190
 
191
  } //End if user is logged
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
 
193
  } //end if ($allow_logged_option['allowed_user']==='allow_anonymous') {
194
 
@@ -235,74 +284,89 @@ function shortcode_visitor_votes_callback ($atts) {
235
 
236
  }
237
 
238
- $shortcode_html .= "<div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes_$post_id\" 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=\"$readonly\"></div>";
239
 
240
- $shortcode_html .= $span_dashicon;
241
 
242
- $shortcode_html .= "<span class=\"yasr-total-average-container\" id=\"yasr-total-average-text_$post_id\" title=\"yasr-stats\">
243
- [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]
244
- </span>";
245
 
246
- $shortcode_html.= $span_after_rate_it;
 
247
 
248
- $shortcode_html .= "</div>";
249
 
 
250
 
 
251
 
252
- if(YASR_TEXT_BEFORE_STARS == 1 && YASR_TEXT_BEFORE_VISITOR_RATING != '') {
253
 
254
- $shortcode_html_tmp = "<div class=\"yasr-container-custom-text-and-visitor-rating\">
255
- <span id=\"yasr-custom-text-before-visitor-rating\">" . YASR_TEXT_BEFORE_VISITOR_RATING . "</span>" . $shortcode_html . "</div>";
256
 
257
- $shortcode_html = $shortcode_html_tmp;
 
 
 
 
 
 
258
 
259
  }
260
 
261
- //if (!is_feed()) {
262
 
263
- $var_tooltip_values = __("bad, poor, ok, good, super", "yasr");
264
- $var_tooltip_values= json_encode($var_tooltip_values);
265
 
266
- $var_post_id = json_encode($post_id);
267
- $var_ajax_url = json_encode(admin_url('admin-ajax.php'));
268
- $var_size = json_encode($size);
269
- $var_logged_user = json_encode(is_user_logged_in());
270
- $var_vote_if_user_already_rated = json_encode($vote_if_user_already_rated);
271
- $var_loader_html = json_encode("$loader_html");
272
- $var_nonce_visitor = json_encode("$ajax_nonce_visitor");
273
 
274
- $var_visitor_stats_enabled = json_encode(YASR_VISITORS_STATS);
275
 
276
- $javascript = "
277
 
278
- <script type=\"text/javascript\">
279
 
280
- jQuery(document).ready(function() {
 
281
 
282
- var stringTooltipValues = $var_tooltip_values;
283
- var arrayTooltipValues = stringTooltipValues.split(', ');
284
- var postid = $var_post_id;
285
- var ajaxurl = $var_ajax_url;
286
- var size = $var_size;
287
- var loggedUser = $var_logged_user;
288
- var voteIfUserAlredyRated = $var_vote_if_user_already_rated;
289
- var loaderHtml = $var_loader_html;
290
- var nonceVisitor = $var_nonce_visitor;
291
-
292
- yasrVisitorsVotes(arrayTooltipValues, postid, ajaxurl, size, loggedUser, voteIfUserAlredyRated, loaderHtml, nonceVisitor);
293
 
294
- var visitorStatsEnabled = $var_visitor_stats_enabled;
295
 
296
- //If stats are enabled call the function
297
- if (visitorStatsEnabled == 'yes') {
298
- yasrDrawTipsProgress (postid, ajaxurl);
299
- }
300
 
301
- });
302
 
303
- </script>
304
 
305
- ";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
 
307
 
308
  //IF show visitor votes in loop is disabled use is_singular && is_main query
@@ -323,8 +387,6 @@ function shortcode_visitor_votes_callback ($atts) {
323
 
324
  }
325
 
326
- // } //End (!is_feed)
327
-
328
  } //End function shortcode_visitor_votes_callback
329
 
330
 
47
 
48
  if (YASR_TEXT_BEFORE_STARS == 1 && YASR_TEXT_BEFORE_OVERALL != '') {
49
 
50
+ $text_before_star = str_replace('%overall_rating%', $overall_rating, YASR_TEXT_BEFORE_OVERALL);
51
+
52
  $shortcode_html = "<div class=\"yasr-container-custom-text-and-overall\">
53
+ <span id=\"yasr-custom-text-before-overall\">" . $text_before_star . "</span>";
54
 
55
  }
56
 
167
  $px_size = '32';
168
  }
169
 
170
+ $cookiename = 'yasr_visitor_vote_' . $post_id;
171
+
172
+ if (isset($_COOKIE[$cookiename])) {
173
+
174
+ $cookie_value = $_COOKIE[$cookiename];
175
+
176
+ $cookie_value = (int)$cookie_value;
177
+
178
+ if ($cookie_value > 5) {
179
+
180
+ $cookie_value = 5;
181
+
182
+ }
183
+
184
+ elseif ($cookie_value < 1) {
185
+
186
+ $cookie_value = 1;
187
+
188
+ }
189
+
190
+ }
191
+
192
+ else {
193
+
194
+ $cookie_value = FALSE;
195
+
196
+ }
197
+
198
  $vote_if_user_already_rated = FALSE;
199
 
200
  $shortcode_html = "<div id=\"yasr_visitor_votes_$post_id\" class=\"yasr-visitor-votes\">";
203
  //if anonymous are allowed to vote
204
  if (YASR_ALLOWED_USER === 'allow_anonymous') {
205
 
206
+ //I've to checl a logged in user that has already rated
 
 
207
  if ( is_user_logged_in() ) {
208
 
209
+ $readonly = 'false';
210
+
211
  //Chek if a logged in user has already rated for this post
212
  $vote_if_user_already_rated = yasr_check_if_user_already_voted();
213
 
219
  }
220
 
221
  } //End if user is logged
222
+
223
+ else {
224
+
225
+ //if cookie exists
226
+ if($cookie_value) {
227
+
228
+ $readonly = 'true';
229
+ $span_after_rate_it="<span class=\"yasr-small-block-bold\" id=\"yasr-already-voted-text\">" . __("You've already voted this article with", "yasr") . " $cookie_value </span>";
230
+
231
+
232
+ }
233
+
234
+ else {
235
+
236
+ $readonly = 'false';
237
+
238
+ }
239
+
240
+ }
241
 
242
  } //end if ($allow_logged_option['allowed_user']==='allow_anonymous') {
243
 
284
 
285
  }
286
 
287
+ if(YASR_TEXT_BEFORE_STARS == 1 && YASR_TEXT_BEFORE_VISITOR_RATING != '') {
288
 
289
+ $text_before_star = str_replace('%total_count%', $votes_number, YASR_TEXT_BEFORE_VISITOR_RATING);
290
 
291
+ $text_before_star = str_replace('%average%', $medium_rating, $text_before_star);
 
 
292
 
293
+ $shortcode_html .= "<div class=\"yasr-container-custom-text-and-visitor-rating\">
294
+ <span id=\"yasr-custom-text-before-visitor-rating\">" . $text_before_star . "</span></div>";
295
 
296
+ }
297
 
298
+ if(YASR_TEXT_BEFORE_STARS == 1 && YASR_TEXT_AFTER_VISITOR_RATING != '') {
299
 
300
+ $text_after_star = str_replace('%total_count%', $votes_number, YASR_TEXT_AFTER_VISITOR_RATING);
301
 
302
+ $text_after_star = str_replace('%average%', $medium_rating, $text_after_star);
303
 
304
+ $span_text_after_star = "<span id=\"yasr-custom-text-after-visitor-rating\">" . $text_after_star . "</span>";
 
305
 
306
+ }
307
+
308
+ else {
309
+
310
+ $span_text_after_star .= "<span class=\"yasr-total-average-container\" id=\"yasr-total-average-text_$post_id\" title=\"yasr-stats\">
311
+ [" . __("Total: ", "yasr") . "$votes_number &nbsp; &nbsp;" . __("Average: ","yasr") . "$medium_rating/5]
312
+ </span>";
313
 
314
  }
315
 
316
+ $shortcode_html .= "<div class=\"$rateit_class\" id=\"yasr_rateit_visitor_votes_$post_id\" 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=\"$readonly\"></div>";
317
 
318
+ $shortcode_html .= $span_dashicon;
 
319
 
320
+ $shortcode_html .= $span_text_after_star;
 
 
 
 
 
 
321
 
322
+ $shortcode_html .= $span_after_rate_it;
323
 
324
+ $shortcode_html .= "</div>";
325
 
 
326
 
327
+ $var_tooltip_values = __("bad, poor, ok, good, super", "yasr");
328
+ $var_tooltip_values= json_encode($var_tooltip_values);
329
 
330
+ $var_post_id = json_encode($post_id);
331
+ $var_ajax_url = json_encode(admin_url('admin-ajax.php'));
332
+ $var_size = json_encode($size);
333
+ $var_logged_user = json_encode(is_user_logged_in());
334
+ $var_vote_if_user_already_rated = json_encode($vote_if_user_already_rated);
335
+ $var_loader_html = json_encode("$loader_html");
336
+ $var_nonce_visitor = json_encode("$ajax_nonce_visitor");
 
 
 
 
337
 
338
+ $var_visitor_stats_enabled = json_encode(YASR_VISITORS_STATS);
339
 
340
+ $javascript = "
 
 
 
341
 
342
+ <script type=\"text/javascript\">
343
 
344
+ jQuery(document).ready(function() {
345
 
346
+ var stringTooltipValues = $var_tooltip_values;
347
+ var arrayTooltipValues = stringTooltipValues.split(', ');
348
+ var postid = $var_post_id;
349
+ var ajaxurl = $var_ajax_url;
350
+ var size = $var_size;
351
+ var loggedUser = $var_logged_user;
352
+ var voteIfUserAlredyRated = $var_vote_if_user_already_rated;
353
+ var loaderHtml = $var_loader_html;
354
+ var nonceVisitor = $var_nonce_visitor;
355
+
356
+ yasrVisitorsVotes(arrayTooltipValues, postid, ajaxurl, size, loggedUser, voteIfUserAlredyRated, loaderHtml, nonceVisitor);
357
+
358
+ var visitorStatsEnabled = $var_visitor_stats_enabled;
359
+
360
+ //If stats are enabled call the function
361
+ if (visitorStatsEnabled == 'yes') {
362
+ yasrDrawTipsProgress (postid, ajaxurl);
363
+ }
364
+
365
+ });
366
+
367
+ </script>
368
+
369
+ ";
370
 
371
 
372
  //IF show visitor votes in loop is disabled use is_singular && is_main query
387
 
388
  }
389
 
 
 
390
  } //End function shortcode_visitor_votes_callback
391
 
392
 
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.2
7
- Stable tag: 0.8.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
@@ -119,6 +119,11 @@ Of course not: you can easily add it on the visual editor just by clicking on th
119
 
120
  == Changelog ==
121
 
 
 
 
 
 
122
  = 0.8.3 =
123
  * NEW FEATURE: added shortcode yasr_visitor_multiset. Now everyone can vonte in a Multi Set!
124
  * FIXED: fixed schema type selection
4
  Requires at least: 3.5
5
  Contributors: Dudo
6
  Tested up to: 4.2
7
+ Stable tag: 0.8.4
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
119
 
120
  == Changelog ==
121
 
122
+ = 0.3.0 =
123
+ * NEW FEATURE: User can customize text after Visitor Votes.
124
+ * TWIKED: Visitor Votes have been partially rewritten, is much faster now
125
+ * REMOVED: Removed jquery cookie
126
+
127
  = 0.8.3 =
128
  * NEW FEATURE: added shortcode yasr_visitor_multiset. Now everyone can vonte in a Multi Set!
129
  * FIXED: fixed schema type selection
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.8.3
7
  * Author: Dario Curvino
8
  * Author URI: https://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.8.3');
32
 
33
  //Plugin relative path
34
  define( "YASR_RELATIVE_PATH", dirname(__FILE__) );
@@ -84,6 +84,7 @@ if ( YASR_TEXT_BEFORE_STARS == 1 ) {
84
 
85
  define ("YASR_TEXT_BEFORE_OVERALL", $stored_options['text_before_overall']);
86
  define ("YASR_TEXT_BEFORE_VISITOR_RATING", $stored_options['text_before_visitor_rating']);
 
87
  define ("YASR_CUSTOM_TEXT_USER_VOTED", $stored_options['custom_text_user_voted']);
88
 
89
  }
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.8.4
7
  * Author: Dario Curvino
8
  * Author URI: https://yetanotherstarsrating.com/
9
  * License: GPL2
28
  */
29
 
30
 
31
+ define('YASR_VERSION_NUM', '0.8.4');
32
 
33
  //Plugin relative path
34
  define( "YASR_RELATIVE_PATH", dirname(__FILE__) );
84
 
85
  define ("YASR_TEXT_BEFORE_OVERALL", $stored_options['text_before_overall']);
86
  define ("YASR_TEXT_BEFORE_VISITOR_RATING", $stored_options['text_before_visitor_rating']);
87
+ define ("YASR_TEXT_AFTER_VISITOR_RATING", $stored_options['text_after_visitor_rating']);
88
  define ("YASR_CUSTOM_TEXT_USER_VOTED", $stored_options['custom_text_user_voted']);
89
 
90
  }