Version Description
- Fixed: Undefined variable in yasr_visitor_votes shortcode
- Fixed: Fixed cursor style when is over the dashicon
- Tweaked: Stars' description is now translatable
- Twaeked: Dashicon doens't load if visitor stats are disabled
- Tweaked: Italian translation
Download this release
Release Info
Developer | Dudo |
Plugin | Yasr – Yet Another Stars Rating |
Version | 0.8.1 |
Comparing to | |
See all releases |
Code changes from version 0.8.0 to 0.8.1
- css/yasr.css +14 -5
- js/yasr-front.js +92 -2
- languages/yasr-it_IT.mo +0 -0
- languages/yasr-it_IT.po +117 -113
- languages/yasr-nb_NO.po +1030 -1029
- languages/yasr-pt_BR.mo +0 -0
- languages/yasr-pt_BR.po +1023 -0
- languages/yasr.mo +0 -0
- languages/yasr.pot +109 -107
- lib/yasr-ajax-functions.php +32 -19
- lib/yasr-functions.php +1 -1
- lib/yasr-settings-functions.php +13 -31
- lib/yasr-shortcode-functions.php +33 -14
- readme.txt +11 -3
- yet-another-stars-rating.php +2 -2
css/yasr.css
CHANGED
@@ -207,6 +207,9 @@ div.bigstars .rateit-selected
|
|
207 |
|
208 |
.yasr-dashicons-visitor-stats {
|
209 |
vertical-align: bottom;
|
|
|
|
|
|
|
210 |
}
|
211 |
|
212 |
.yasr-total-average-text-medium {
|
@@ -223,7 +226,8 @@ div.bigstars .rateit-selected
|
|
223 |
display: block;
|
224 |
}
|
225 |
|
226 |
-
/*** Progress bar
|
|
|
227 |
|
228 |
.yasr-progress-bars-container {
|
229 |
width: 100%;
|
@@ -237,14 +241,14 @@ div.bigstars .rateit-selected
|
|
237 |
}
|
238 |
|
239 |
.yasr-progress-bar-name {
|
240 |
-
width:
|
241 |
text-align: left;
|
242 |
-
|
243 |
}
|
244 |
|
245 |
.yasr-progress-bar {
|
246 |
display: inline-block;
|
247 |
-
width:
|
248 |
height: 15px;
|
249 |
margin-right: 5px;
|
250 |
border-bottom-right-radius: 0px;
|
@@ -262,6 +266,11 @@ div.bigstars .rateit-selected
|
|
262 |
background: #FFD700;
|
263 |
}
|
264 |
|
|
|
|
|
|
|
|
|
|
|
265 |
|
266 |
/*** End progress bar ***/
|
267 |
|
@@ -269,7 +278,7 @@ div.bigstars .rateit-selected
|
|
269 |
/*** Tooltip ***/
|
270 |
|
271 |
.yasr-visitors-stats-tooltip {
|
272 |
-
width:
|
273 |
}
|
274 |
|
275 |
/*** Tooltip ***/
|
207 |
|
208 |
.yasr-dashicons-visitor-stats {
|
209 |
vertical-align: bottom;
|
210 |
+
text-decoration: none;
|
211 |
+
cursor: pointer;
|
212 |
+
cursor: hand;
|
213 |
}
|
214 |
|
215 |
.yasr-total-average-text-medium {
|
226 |
display: block;
|
227 |
}
|
228 |
|
229 |
+
/*** Progress bar, this class are used in
|
230 |
+
yasr_pro_comment_reviews_stats shortcode too***/
|
231 |
|
232 |
.yasr-progress-bars-container {
|
233 |
width: 100%;
|
241 |
}
|
242 |
|
243 |
.yasr-progress-bar-name {
|
244 |
+
width: 60px;
|
245 |
text-align: left;
|
246 |
+
display: inline-block;
|
247 |
}
|
248 |
|
249 |
.yasr-progress-bar {
|
250 |
display: inline-block;
|
251 |
+
width: 150px;
|
252 |
height: 15px;
|
253 |
margin-right: 5px;
|
254 |
border-bottom-right-radius: 0px;
|
266 |
background: #FFD700;
|
267 |
}
|
268 |
|
269 |
+
.yasr-progress-bar-votes-count {
|
270 |
+
display: inline-block;
|
271 |
+
width: 40px;
|
272 |
+
}
|
273 |
+
|
274 |
|
275 |
/*** End progress bar ***/
|
276 |
|
278 |
/*** Tooltip ***/
|
279 |
|
280 |
.yasr-visitors-stats-tooltip {
|
281 |
+
width: 300px;
|
282 |
}
|
283 |
|
284 |
/*** Tooltip ***/
|
js/yasr-front.js
CHANGED
@@ -178,7 +178,7 @@
|
|
178 |
/****** Tooltip function ******/
|
179 |
|
180 |
//used in ajax page
|
181 |
-
function yasrDrawProgressBars (valueProgressbar) {
|
182 |
|
183 |
var i = null;
|
184 |
|
@@ -186,7 +186,7 @@
|
|
186 |
|
187 |
for (i=5; i>0; i--) {
|
188 |
|
189 |
-
jQuery( "#yasr-progress-bar-" + i).progressbar({
|
190 |
value: valueProgressbar[j]
|
191 |
});
|
192 |
|
@@ -242,3 +242,93 @@
|
|
242 |
|
243 |
|
244 |
/****** End tooltipfunction ******/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
/****** Tooltip function ******/
|
179 |
|
180 |
//used in ajax page
|
181 |
+
function yasrDrawProgressBars (valueProgressbar, postId) {
|
182 |
|
183 |
var i = null;
|
184 |
|
186 |
|
187 |
for (i=5; i>0; i--) {
|
188 |
|
189 |
+
jQuery( "#yasr-progress-bar-postid-"+postId+"-progress-bar-" + i).progressbar({
|
190 |
value: valueProgressbar[j]
|
191 |
});
|
192 |
|
242 |
|
243 |
|
244 |
/****** End tooltipfunction ******/
|
245 |
+
|
246 |
+
|
247 |
+
/****** draw progress bar for yasr_pro_comment_reviews_summary ******/
|
248 |
+
|
249 |
+
function yasrDrawProgressBarsReviewsSummery (valueProgressbar, postId) {
|
250 |
+
|
251 |
+
var i = null;
|
252 |
+
|
253 |
+
var j = 0; //This is for the array
|
254 |
+
|
255 |
+
for (i=5; i>0; i--) {
|
256 |
+
|
257 |
+
jQuery( "#yasr-pro-reviews-summary-postid-"+postId+"-progress-bar-" + i).progressbar({
|
258 |
+
value: valueProgressbar[j]
|
259 |
+
});
|
260 |
+
|
261 |
+
j=j+1;
|
262 |
+
|
263 |
+
}
|
264 |
+
|
265 |
+
}
|
266 |
+
|
267 |
+
/****** End progressbar function *******/
|
268 |
+
|
269 |
+
|
270 |
+
/****** Yasr pro shortcode page ******/
|
271 |
+
|
272 |
+
function yasrProMostOrHighestRatedChart (view) {
|
273 |
+
|
274 |
+
if (view != 'highest') {
|
275 |
+
|
276 |
+
//By default, hide the highest rated chart
|
277 |
+
jQuery('#yasr-pro-highest-rated-posts').hide();
|
278 |
+
|
279 |
+
//On click on highest, hide most and show highest
|
280 |
+
jQuery('#yasr-pro-multi-chart-highest').on("click", function () {
|
281 |
+
|
282 |
+
jQuery('#yasr-pro-most-rated-posts').hide();
|
283 |
+
|
284 |
+
jQuery('#yasr-pro-highest-rated-posts').show();
|
285 |
+
|
286 |
+
return false; // prevent default click action from happening!
|
287 |
+
|
288 |
+
});
|
289 |
+
|
290 |
+
//Vice versa
|
291 |
+
jQuery('#yasr-pro-multi-chart-most').on("click", function () {
|
292 |
+
|
293 |
+
jQuery('#yasr-pro-highest-rated-posts').hide();
|
294 |
+
|
295 |
+
jQuery('#yasr-pro-most-rated-posts').show();
|
296 |
+
|
297 |
+
return false; // prevent default click action from happening!
|
298 |
+
|
299 |
+
});
|
300 |
+
|
301 |
+
}
|
302 |
+
|
303 |
+
else {
|
304 |
+
|
305 |
+
//By default, hide the most rated chart
|
306 |
+
jQuery('#yasr-pro-most-rated-posts').hide();
|
307 |
+
|
308 |
+
//On click on most, hide highest and show most
|
309 |
+
jQuery('#yasr-pro-multi-chart-most').on("click", function () {
|
310 |
+
|
311 |
+
jQuery('#yasr-pro-highest-rated-posts').hide();
|
312 |
+
|
313 |
+
jQuery('#yasr-pro-most-rated-posts').show();
|
314 |
+
|
315 |
+
return false; // prevent default click action from happening!
|
316 |
+
|
317 |
+
});
|
318 |
+
|
319 |
+
//Vice versa
|
320 |
+
jQuery('#yasr-pro-multi-chart-highest').on("click", function () {
|
321 |
+
|
322 |
+
jQuery('#yasr-pro-most-rated-posts').hide();
|
323 |
+
|
324 |
+
jQuery('#yasr-pro-highest-rated-posts').show();
|
325 |
+
|
326 |
+
return false; // prevent default click action from happening!
|
327 |
+
|
328 |
+
});
|
329 |
+
|
330 |
+
}
|
331 |
+
|
332 |
+
}
|
333 |
+
|
334 |
+
/****** End Yasr pro shortcode page ******/
|
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-03-
|
5 |
-
"PO-Revision-Date: 2015-03-
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it_IT\n"
|
@@ -33,7 +33,7 @@ msgid "This review is about a..."
|
|
33 |
msgstr "Questa recensione è..."
|
34 |
|
35 |
#: ../yasr-metabox-top-right.php:193 ../yasr-metabox-multiple-rating.php:46
|
36 |
-
#: ../lib/yasr-settings-functions.php:
|
37 |
msgid "Select"
|
38 |
msgstr "Seleziona"
|
39 |
|
@@ -170,13 +170,13 @@ msgstr ""
|
|
170 |
msgid "Close this message"
|
171 |
msgstr "Chiudi questo messaggio"
|
172 |
|
173 |
-
#: ../yasr-settings-page.php:246 ../lib/yasr-settings-functions.php:
|
174 |
-
#: ../lib/yasr-settings-functions.php:
|
175 |
msgid "Donations"
|
176 |
msgstr "Donazioni"
|
177 |
|
178 |
-
#: ../yasr-settings-page.php:248 ../lib/yasr-settings-functions.php:
|
179 |
-
#: ../lib/yasr-settings-functions.php:
|
180 |
msgid ""
|
181 |
"If you have found this plugin useful, please consider making a donation to "
|
182 |
"help support future development. Your support will be much appreciated. "
|
@@ -185,8 +185,8 @@ msgstr ""
|
|
185 |
"supportarne lo sviluppo. Il tuo aiuto sarà molto apprezzato! P.s. YASR è "
|
186 |
"made in Italy ;)"
|
187 |
|
188 |
-
#: ../yasr-settings-page.php:250 ../lib/yasr-settings-functions.php:
|
189 |
-
#: ../lib/yasr-settings-functions.php:
|
190 |
msgid "Thank you!"
|
191 |
msgstr "Grazie!"
|
192 |
|
@@ -203,63 +203,67 @@ msgstr "Hai già votato questo articolo con "
|
|
203 |
msgid "You must sign to vote"
|
204 |
msgstr "Devi fare il login per votare"
|
205 |
|
206 |
-
#: ../lib/yasr-shortcode-functions.php:
|
207 |
#: ../lib/yasr-ajax-functions.php:1019 ../lib/yasr-ajax-functions.php:1148
|
208 |
#: ../lib/yasr-ajax-functions.php:1220
|
209 |
msgid "Total: "
|
210 |
msgstr "Voti: "
|
211 |
|
212 |
-
#: ../lib/yasr-shortcode-functions.php:
|
213 |
msgid "Average: "
|
214 |
msgstr "Media Voto: "
|
215 |
|
216 |
-
#: ../lib/yasr-shortcode-functions.php:
|
|
|
|
|
|
|
|
|
217 |
msgid "Rating"
|
218 |
msgstr "Voto"
|
219 |
|
220 |
-
#: ../lib/yasr-shortcode-functions.php:
|
221 |
msgid "You don't have any votes stored"
|
222 |
msgstr "Non hai alcun voto salvato"
|
223 |
|
224 |
-
#: ../lib/yasr-shortcode-functions.php:
|
225 |
-
#: ../lib/yasr-shortcode-functions.php:
|
226 |
msgid "Post / Page"
|
227 |
msgstr "Post / Pagina"
|
228 |
|
229 |
-
#: ../lib/yasr-shortcode-functions.php:
|
230 |
-
#: ../lib/yasr-shortcode-functions.php:
|
231 |
msgid "Order By"
|
232 |
msgstr "Ordina per"
|
233 |
|
234 |
-
#: ../lib/yasr-shortcode-functions.php:
|
235 |
-
#: ../lib/yasr-shortcode-functions.php:
|
236 |
msgid "Most Rated"
|
237 |
msgstr "Più Votati"
|
238 |
|
239 |
-
#: ../lib/yasr-shortcode-functions.php:
|
240 |
-
#: ../lib/yasr-shortcode-functions.php:
|
241 |
msgid "Highest Rated"
|
242 |
msgstr "Voto più alto"
|
243 |
|
244 |
-
#: ../lib/yasr-shortcode-functions.php:
|
245 |
-
#: ../lib/yasr-shortcode-functions.php:
|
246 |
msgid "Total:"
|
247 |
msgstr "Voti:"
|
248 |
|
249 |
-
#: ../lib/yasr-shortcode-functions.php:
|
250 |
-
#: ../lib/yasr-shortcode-functions.php:
|
251 |
msgid "Average"
|
252 |
msgstr "Media"
|
253 |
|
254 |
-
#: ../lib/yasr-shortcode-functions.php:
|
255 |
msgid "You've not enough data"
|
256 |
msgstr "Non hai abbastanza dati"
|
257 |
|
258 |
-
#: ../lib/yasr-shortcode-functions.php:
|
259 |
msgid "You've not enought data"
|
260 |
msgstr "Non hai abbastanza dati"
|
261 |
|
262 |
-
#: ../lib/yasr-shortcode-functions.php:
|
263 |
msgid ""
|
264 |
"Problem while retrieving the top 5 most active reviewers. Did you publish "
|
265 |
"any review?"
|
@@ -267,7 +271,7 @@ msgstr ""
|
|
267 |
"C'è stato un problema nell'ottenere la classifica dei 5 recensori più "
|
268 |
"attivi. Hai pubblicato qualche recensione?"
|
269 |
|
270 |
-
#: ../lib/yasr-shortcode-functions.php:
|
271 |
msgid ""
|
272 |
"Problem while retrieving the top 10 active users chart. Are you sure you "
|
273 |
"have votes to show?"
|
@@ -325,7 +329,7 @@ msgstr "Usare l'inserimento automatico?"
|
|
325 |
#: ../lib/yasr-settings-functions.php:204
|
326 |
#: ../lib/yasr-settings-functions.php:230
|
327 |
#: ../lib/yasr-settings-functions.php:262
|
328 |
-
#: ../lib/yasr-settings-functions.php:
|
329 |
msgid "Yes"
|
330 |
msgstr "Si"
|
331 |
|
@@ -335,7 +339,7 @@ msgstr "Si"
|
|
335 |
#: ../lib/yasr-settings-functions.php:209
|
336 |
#: ../lib/yasr-settings-functions.php:235
|
337 |
#: ../lib/yasr-settings-functions.php:267
|
338 |
-
#: ../lib/yasr-settings-functions.php:
|
339 |
msgid "No"
|
340 |
msgstr "No"
|
341 |
|
@@ -436,55 +440,47 @@ msgid "Custom text to display when a non logged user has already rated"
|
|
436 |
msgstr ""
|
437 |
"Testo personalizzato da mostrare quanto un utente non loggato ha già votato"
|
438 |
|
439 |
-
#: ../lib/yasr-settings-functions.php:
|
440 |
-
msgid ""
|
441 |
-
"Seems like you've imported gd star rating in the past, but then deleted the "
|
442 |
-
"logs table. For now, you can't enable statistics"
|
443 |
-
msgstr ""
|
444 |
-
"Sembra che in passato hai importato Gd Star Rating, ma poi hai cancellato la "
|
445 |
-
"tabella con i log. Per il momento, non è possibile abilitare le statistiche"
|
446 |
-
|
447 |
-
#: ../lib/yasr-settings-functions.php:338
|
448 |
msgid "Light"
|
449 |
msgstr "Chiaro"
|
450 |
|
451 |
-
#: ../lib/yasr-settings-functions.php:
|
452 |
msgid "Dark"
|
453 |
msgstr "Scuro"
|
454 |
|
455 |
-
#: ../lib/yasr-settings-functions.php:
|
456 |
msgid "Preview"
|
457 |
msgstr "Anteprima"
|
458 |
|
459 |
-
#: ../lib/yasr-settings-functions.php:
|
460 |
msgid "Light theme"
|
461 |
msgstr "Tema chiaro"
|
462 |
|
463 |
-
#: ../lib/yasr-settings-functions.php:
|
464 |
msgid "Dark Theme"
|
465 |
msgstr "Tema scuro"
|
466 |
|
467 |
-
#: ../lib/yasr-settings-functions.php:
|
468 |
msgid "Allow only logged-in users"
|
469 |
msgstr "Permetti solo agli utenti loggati"
|
470 |
|
471 |
-
#: ../lib/yasr-settings-functions.php:
|
472 |
msgid "Allow everybody (logged in and anonymous)"
|
473 |
msgstr "Permetti a tutti (loggati ed anonimi)"
|
474 |
|
475 |
-
#: ../lib/yasr-settings-functions.php:
|
476 |
msgid "Review Rating"
|
477 |
msgstr "Voto Recensione"
|
478 |
|
479 |
-
#: ../lib/yasr-settings-functions.php:
|
480 |
msgid "Aggregate Rating"
|
481 |
msgstr "Media Voto Utenti"
|
482 |
|
483 |
-
#: ../lib/yasr-settings-functions.php:
|
484 |
msgid "What is this?"
|
485 |
msgstr "Cos'è questo?"
|
486 |
|
487 |
-
#: ../lib/yasr-settings-functions.php:
|
488 |
msgid ""
|
489 |
"If you select \"Review Rating\", your site will be indexed from search "
|
490 |
"engines like this: "
|
@@ -492,26 +488,26 @@ msgstr ""
|
|
492 |
"Se hai scelto \"Voto Recensione\", il sito verrà indicizzato dai motori di "
|
493 |
"ricerca così:"
|
494 |
|
495 |
-
#: ../lib/yasr-settings-functions.php:
|
496 |
msgid ""
|
497 |
"If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
|
498 |
"this"
|
499 |
msgstr ""
|
500 |
"Se, invece, hai scelto \"Media Voto Utenti\", il sito verrà indicizzato così"
|
501 |
|
502 |
-
#: ../lib/yasr-settings-functions.php:
|
503 |
msgid "Stars"
|
504 |
msgstr "Stelle"
|
505 |
|
506 |
-
#: ../lib/yasr-settings-functions.php:
|
507 |
msgid "Numbers"
|
508 |
msgstr "Numeri"
|
509 |
|
510 |
-
#: ../lib/yasr-settings-functions.php:
|
511 |
msgid "Add New Multiple Set"
|
512 |
msgstr "Set Multipli"
|
513 |
|
514 |
-
#: ../lib/yasr-settings-functions.php:
|
515 |
msgid ""
|
516 |
"Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
|
517 |
"characters"
|
@@ -519,48 +515,48 @@ msgstr ""
|
|
519 |
"Nome, Elemento#1 e Elemento#2 DEVONO essere riempiti e devono essere lunghi "
|
520 |
"almeno 3 caratteri"
|
521 |
|
522 |
-
#: ../lib/yasr-settings-functions.php:
|
523 |
msgid "Name"
|
524 |
msgstr "Nome"
|
525 |
|
526 |
-
#: ../lib/yasr-settings-functions.php:
|
527 |
msgid "You can insert up to nine elements"
|
528 |
msgstr "Puoi inserire fino a nove elementi"
|
529 |
|
530 |
-
#: ../lib/yasr-settings-functions.php:
|
531 |
msgid "Element "
|
532 |
msgstr "Elemento"
|
533 |
|
534 |
-
#: ../lib/yasr-settings-functions.php:
|
535 |
msgid "Create New Set"
|
536 |
msgstr "Crea Nuovo Set"
|
537 |
|
538 |
-
#: ../lib/yasr-settings-functions.php:
|
539 |
-
#: ../lib/yasr-settings-functions.php:
|
540 |
msgid "Manage Multiple Set"
|
541 |
msgstr "Gestisci Set Multiplo"
|
542 |
|
543 |
-
#: ../lib/yasr-settings-functions.php:
|
544 |
msgid "Wich set do you want to edit or remove?"
|
545 |
msgstr "Quale set vuoi modificare o rimuovere"
|
546 |
|
547 |
-
#: ../lib/yasr-settings-functions.php:
|
548 |
-
#: ../lib/yasr-settings-functions.php:
|
549 |
msgid "Field name"
|
550 |
msgstr "Nome campo"
|
551 |
|
552 |
-
#: ../lib/yasr-settings-functions.php:
|
553 |
-
#: ../lib/yasr-settings-functions.php:
|
554 |
msgid "Remove"
|
555 |
msgstr "Rimuovi"
|
556 |
|
557 |
-
#: ../lib/yasr-settings-functions.php:
|
558 |
-
#: ../lib/yasr-settings-functions.php:
|
559 |
msgid "Remove whole set?"
|
560 |
msgstr "Rimuovere l'intero set?"
|
561 |
|
562 |
-
#: ../lib/yasr-settings-functions.php:
|
563 |
-
#: ../lib/yasr-settings-functions.php:
|
564 |
msgid ""
|
565 |
"If you remove something you will remove all the votes for that set or field. "
|
566 |
"This operation CAN'T BE undone."
|
@@ -568,63 +564,63 @@ msgstr ""
|
|
568 |
"Se rimuovi qualcosa rimuoverai anche i voti per quel set o campo. Questa "
|
569 |
"operazione NON PUÒ ESSERE ANNULLATA"
|
570 |
|
571 |
-
#: ../lib/yasr-settings-functions.php:
|
572 |
-
#: ../lib/yasr-settings-functions.php:
|
573 |
msgid "You can use up to 9 elements"
|
574 |
msgstr "Puoi usare fino a 9 elementi"
|
575 |
|
576 |
-
#: ../lib/yasr-settings-functions.php:
|
577 |
-
#: ../lib/yasr-settings-functions.php:
|
578 |
msgid "Add element"
|
579 |
msgstr "Aggiungi elemento"
|
580 |
|
581 |
-
#: ../lib/yasr-settings-functions.php:
|
582 |
-
#: ../lib/yasr-settings-functions.php:
|
583 |
msgid "Save changes"
|
584 |
msgstr "Salva modifiche"
|
585 |
|
586 |
-
#: ../lib/yasr-settings-functions.php:
|
587 |
msgid "No Multiple Set were found"
|
588 |
msgstr "Nessun Set Multiplo trovato"
|
589 |
|
590 |
-
#: ../lib/yasr-settings-functions.php:
|
591 |
-
#: ../lib/yasr-settings-functions.php:
|
592 |
msgid "Settings Saved"
|
593 |
msgstr "Impostazioni Salvate"
|
594 |
|
595 |
-
#: ../lib/yasr-settings-functions.php:
|
596 |
msgid "Something goes wrong trying insert set field name. Please report it"
|
597 |
msgstr ""
|
598 |
"Qualcosa è andato storto cercando di inserire un elemento. Per favore "
|
599 |
"segnalalo"
|
600 |
|
601 |
-
#: ../lib/yasr-settings-functions.php:
|
602 |
msgid "Something goes wrong trying insert Multi Set name. Please report it"
|
603 |
msgstr ""
|
604 |
"Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
|
605 |
"favore segnalalo"
|
606 |
|
607 |
-
#: ../lib/yasr-settings-functions.php:
|
608 |
msgid "Something goes wrong trying to delete a Multi Set . Please report it"
|
609 |
msgstr ""
|
610 |
"Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
|
611 |
"favore segnalalo"
|
612 |
|
613 |
-
#: ../lib/yasr-settings-functions.php:
|
614 |
msgid ""
|
615 |
"Something goes wrong trying to delete a Multi Set's element. Please report it"
|
616 |
msgstr ""
|
617 |
"Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
|
618 |
"favore segnalalo"
|
619 |
|
620 |
-
#: ../lib/yasr-settings-functions.php:
|
621 |
msgid ""
|
622 |
"Something goes wrong trying to update a Multi Set's element. Please report it"
|
623 |
msgstr ""
|
624 |
"Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
|
625 |
"favore segnalalo"
|
626 |
|
627 |
-
#: ../lib/yasr-settings-functions.php:
|
628 |
msgid ""
|
629 |
"Something goes wrong trying to insert set field name in edit form. Please "
|
630 |
"report it"
|
@@ -632,15 +628,15 @@ msgstr ""
|
|
632 |
"Qualcosa è andato storto cercando di inserire il campo nel form di modifica. "
|
633 |
"Per favore segnalalo"
|
634 |
|
635 |
-
#: ../lib/yasr-settings-functions.php:
|
636 |
msgid "Style Options"
|
637 |
msgstr "Opzioni Stili"
|
638 |
|
639 |
-
#: ../lib/yasr-settings-functions.php:
|
640 |
msgid "Custom CSS Styles"
|
641 |
msgstr "Stili CSS Personalizzati"
|
642 |
|
643 |
-
#: ../lib/yasr-settings-functions.php:
|
644 |
msgid ""
|
645 |
"Please use text area below to write your own CSS styles to override the "
|
646 |
"default ones."
|
@@ -648,83 +644,83 @@ msgstr ""
|
|
648 |
"Usa l'area di testo sottostante per scrivere le tue regole CSS che "
|
649 |
"sovrascriveranno quelle di default"
|
650 |
|
651 |
-
#: ../lib/yasr-settings-functions.php:
|
652 |
msgid "Leave it blank if you don't know what you're doing"
|
653 |
msgstr "Lascialo vuoto se non stai cosa stai facendo"
|
654 |
|
655 |
-
#: ../lib/yasr-settings-functions.php:
|
656 |
msgid "Looking for more features?"
|
657 |
msgstr "Hai bisogno di più funzioni?"
|
658 |
|
659 |
-
#: ../lib/yasr-settings-functions.php:
|
660 |
msgid "Upgrade to yasr pro!"
|
661 |
msgstr "Passa a yasr pro!"
|
662 |
|
663 |
-
#: ../lib/yasr-settings-functions.php:
|
664 |
msgid "Unlimited ratings and votes"
|
665 |
msgstr "Voti e recensioni illimitate"
|
666 |
|
667 |
-
#: ../lib/yasr-settings-functions.php:
|
668 |
msgid "Works with shortcodes"
|
669 |
msgstr "Funziona con gli shortcodes"
|
670 |
|
671 |
-
#: ../lib/yasr-settings-functions.php:
|
672 |
msgid "Multi Set Support"
|
673 |
msgstr "Supporto Set Multipli"
|
674 |
|
675 |
-
#: ../lib/yasr-settings-functions.php:
|
676 |
msgid "Logs and stats for visitors votes"
|
677 |
msgstr "Log e statistiche per i voti utenti"
|
678 |
|
679 |
-
#: ../lib/yasr-settings-functions.php:
|
680 |
msgid "Localization (.po and .mo files included)"
|
681 |
msgstr "Traducibile (files .po e .mo inclusi)"
|
682 |
|
683 |
-
#: ../lib/yasr-settings-functions.php:
|
684 |
msgid "Rich Snippet Support"
|
685 |
msgstr "Supporto per Rich Snippet"
|
686 |
|
687 |
-
#: ../lib/yasr-settings-functions.php:
|
688 |
msgid "Rankings for reviews, votes and users"
|
689 |
msgstr "Classifiche per recensioni, voti e utenti"
|
690 |
|
691 |
-
#: ../lib/yasr-settings-functions.php:
|
692 |
msgid "Rankings Customization"
|
693 |
msgstr "Personalizzazione Classifiche"
|
694 |
|
695 |
-
#: ../lib/yasr-settings-functions.php:
|
696 |
msgid "Stars Customization"
|
697 |
msgstr "Personalizzazione Stelle"
|
698 |
|
699 |
-
#: ../lib/yasr-settings-functions.php:
|
700 |
msgid "Size Only"
|
701 |
msgstr "Solo la grandezza"
|
702 |
|
703 |
-
#: ../lib/yasr-settings-functions.php:
|
704 |
msgid ""
|
705 |
"Users can choose different ready to use sets or can upload their own images."
|
706 |
msgstr ""
|
707 |
"È possibile scegliere diversi set pronti all'uso o caricare le proprie "
|
708 |
"immagini"
|
709 |
|
710 |
-
#: ../lib/yasr-settings-functions.php:
|
711 |
msgid "Visitors can vote on Multi Set"
|
712 |
msgstr "I visitatori possono votare nei Multi Set"
|
713 |
|
714 |
-
#: ../lib/yasr-settings-functions.php:
|
715 |
msgid "Users can review in comments"
|
716 |
msgstr "Gli utenti possono recensire nei commenti"
|
717 |
|
718 |
-
#: ../lib/yasr-settings-functions.php:
|
719 |
msgid "Not avaible yet"
|
720 |
msgstr "Non ancora disponibile"
|
721 |
|
722 |
-
#: ../lib/yasr-settings-functions.php:
|
723 |
-
#: ../lib/yasr-settings-functions.php:
|
724 |
msgid "Follow YASR official site!"
|
725 |
msgstr "Segui il sito ufficiale di YASR!"
|
726 |
|
727 |
-
#: ../lib/yasr-settings-functions.php:
|
728 |
msgid "No previous Gd Star Rating installation was found"
|
729 |
msgstr "Installazione precedente di Gd Star Rating non stata trovata"
|
730 |
|
@@ -1012,16 +1008,24 @@ msgid "Average "
|
|
1012 |
msgstr "Media Voto "
|
1013 |
|
1014 |
#: ../lib/yasr-ajax-functions.php:1231
|
1015 |
-
#, fuzzy
|
1016 |
msgid "You've already voted this article"
|
1017 |
-
msgstr "Hai già votato questo articolo
|
1018 |
|
1019 |
-
#: ../lib/yasr-ajax-functions.php:
|
1020 |
msgid "stars"
|
1021 |
msgstr "stelle"
|
1022 |
|
1023 |
-
|
1024 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1025 |
|
1026 |
#~ msgid " on 5.0"
|
1027 |
#~ msgstr " su 5.0 "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Yasr Translation\n"
|
4 |
+
"POT-Creation-Date: 2015-03-13 16:34+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-03-14 17:57+0100\n"
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it_IT\n"
|
33 |
msgstr "Questa recensione è..."
|
34 |
|
35 |
#: ../yasr-metabox-top-right.php:193 ../yasr-metabox-multiple-rating.php:46
|
36 |
+
#: ../lib/yasr-settings-functions.php:487
|
37 |
msgid "Select"
|
38 |
msgstr "Seleziona"
|
39 |
|
170 |
msgid "Close this message"
|
171 |
msgstr "Chiudi questo messaggio"
|
172 |
|
173 |
+
#: ../yasr-settings-page.php:246 ../lib/yasr-settings-functions.php:1276
|
174 |
+
#: ../lib/yasr-settings-functions.php:1302
|
175 |
msgid "Donations"
|
176 |
msgstr "Donazioni"
|
177 |
|
178 |
+
#: ../yasr-settings-page.php:248 ../lib/yasr-settings-functions.php:1278
|
179 |
+
#: ../lib/yasr-settings-functions.php:1304
|
180 |
msgid ""
|
181 |
"If you have found this plugin useful, please consider making a donation to "
|
182 |
"help support future development. Your support will be much appreciated. "
|
185 |
"supportarne lo sviluppo. Il tuo aiuto sarà molto apprezzato! P.s. YASR è "
|
186 |
"made in Italy ;)"
|
187 |
|
188 |
+
#: ../yasr-settings-page.php:250 ../lib/yasr-settings-functions.php:1280
|
189 |
+
#: ../lib/yasr-settings-functions.php:1306
|
190 |
msgid "Thank you!"
|
191 |
msgstr "Grazie!"
|
192 |
|
203 |
msgid "You must sign to vote"
|
204 |
msgstr "Devi fare il login per votare"
|
205 |
|
206 |
+
#: ../lib/yasr-shortcode-functions.php:243 ../lib/yasr-ajax-functions.php:1011
|
207 |
#: ../lib/yasr-ajax-functions.php:1019 ../lib/yasr-ajax-functions.php:1148
|
208 |
#: ../lib/yasr-ajax-functions.php:1220
|
209 |
msgid "Total: "
|
210 |
msgstr "Voti: "
|
211 |
|
212 |
+
#: ../lib/yasr-shortcode-functions.php:243
|
213 |
msgid "Average: "
|
214 |
msgstr "Media Voto: "
|
215 |
|
216 |
+
#: ../lib/yasr-shortcode-functions.php:263
|
217 |
+
msgid "bad, poor, ok, good, super"
|
218 |
+
msgstr "pessimo, scarso, ok, buono, super"
|
219 |
+
|
220 |
+
#: ../lib/yasr-shortcode-functions.php:411
|
221 |
msgid "Rating"
|
222 |
msgstr "Voto"
|
223 |
|
224 |
+
#: ../lib/yasr-shortcode-functions.php:425
|
225 |
msgid "You don't have any votes stored"
|
226 |
msgstr "Non hai alcun voto salvato"
|
227 |
|
228 |
+
#: ../lib/yasr-shortcode-functions.php:461
|
229 |
+
#: ../lib/yasr-shortcode-functions.php:499
|
230 |
msgid "Post / Page"
|
231 |
msgstr "Post / Pagina"
|
232 |
|
233 |
+
#: ../lib/yasr-shortcode-functions.php:462
|
234 |
+
#: ../lib/yasr-shortcode-functions.php:500
|
235 |
msgid "Order By"
|
236 |
msgstr "Ordina per"
|
237 |
|
238 |
+
#: ../lib/yasr-shortcode-functions.php:462
|
239 |
+
#: ../lib/yasr-shortcode-functions.php:500
|
240 |
msgid "Most Rated"
|
241 |
msgstr "Più Votati"
|
242 |
|
243 |
+
#: ../lib/yasr-shortcode-functions.php:462
|
244 |
+
#: ../lib/yasr-shortcode-functions.php:500
|
245 |
msgid "Highest Rated"
|
246 |
msgstr "Voto più alto"
|
247 |
|
248 |
+
#: ../lib/yasr-shortcode-functions.php:479
|
249 |
+
#: ../lib/yasr-shortcode-functions.php:514
|
250 |
msgid "Total:"
|
251 |
msgstr "Voti:"
|
252 |
|
253 |
+
#: ../lib/yasr-shortcode-functions.php:479
|
254 |
+
#: ../lib/yasr-shortcode-functions.php:514
|
255 |
msgid "Average"
|
256 |
msgstr "Media"
|
257 |
|
258 |
+
#: ../lib/yasr-shortcode-functions.php:491
|
259 |
msgid "You've not enough data"
|
260 |
msgstr "Non hai abbastanza dati"
|
261 |
|
262 |
+
#: ../lib/yasr-shortcode-functions.php:526
|
263 |
msgid "You've not enought data"
|
264 |
msgstr "Non hai abbastanza dati"
|
265 |
|
266 |
+
#: ../lib/yasr-shortcode-functions.php:611
|
267 |
msgid ""
|
268 |
"Problem while retrieving the top 5 most active reviewers. Did you publish "
|
269 |
"any review?"
|
271 |
"C'è stato un problema nell'ottenere la classifica dei 5 recensori più "
|
272 |
"attivi. Hai pubblicato qualche recensione?"
|
273 |
|
274 |
+
#: ../lib/yasr-shortcode-functions.php:679
|
275 |
msgid ""
|
276 |
"Problem while retrieving the top 10 active users chart. Are you sure you "
|
277 |
"have votes to show?"
|
329 |
#: ../lib/yasr-settings-functions.php:204
|
330 |
#: ../lib/yasr-settings-functions.php:230
|
331 |
#: ../lib/yasr-settings-functions.php:262
|
332 |
+
#: ../lib/yasr-settings-functions.php:297
|
333 |
msgid "Yes"
|
334 |
msgstr "Si"
|
335 |
|
339 |
#: ../lib/yasr-settings-functions.php:209
|
340 |
#: ../lib/yasr-settings-functions.php:235
|
341 |
#: ../lib/yasr-settings-functions.php:267
|
342 |
+
#: ../lib/yasr-settings-functions.php:302
|
343 |
msgid "No"
|
344 |
msgstr "No"
|
345 |
|
440 |
msgstr ""
|
441 |
"Testo personalizzato da mostrare quanto un utente non loggato ha già votato"
|
442 |
|
443 |
+
#: ../lib/yasr-settings-functions.php:320
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
msgid "Light"
|
445 |
msgstr "Chiaro"
|
446 |
|
447 |
+
#: ../lib/yasr-settings-functions.php:325
|
448 |
msgid "Dark"
|
449 |
msgstr "Scuro"
|
450 |
|
451 |
+
#: ../lib/yasr-settings-functions.php:330
|
452 |
msgid "Preview"
|
453 |
msgstr "Anteprima"
|
454 |
|
455 |
+
#: ../lib/yasr-settings-functions.php:335
|
456 |
msgid "Light theme"
|
457 |
msgstr "Tema chiaro"
|
458 |
|
459 |
+
#: ../lib/yasr-settings-functions.php:340
|
460 |
msgid "Dark Theme"
|
461 |
msgstr "Tema scuro"
|
462 |
|
463 |
+
#: ../lib/yasr-settings-functions.php:358
|
464 |
msgid "Allow only logged-in users"
|
465 |
msgstr "Permetti solo agli utenti loggati"
|
466 |
|
467 |
+
#: ../lib/yasr-settings-functions.php:362
|
468 |
msgid "Allow everybody (logged in and anonymous)"
|
469 |
msgstr "Permetti a tutti (loggati ed anonimi)"
|
470 |
|
471 |
+
#: ../lib/yasr-settings-functions.php:379
|
472 |
msgid "Review Rating"
|
473 |
msgstr "Voto Recensione"
|
474 |
|
475 |
+
#: ../lib/yasr-settings-functions.php:383
|
476 |
msgid "Aggregate Rating"
|
477 |
msgstr "Media Voto Utenti"
|
478 |
|
479 |
+
#: ../lib/yasr-settings-functions.php:388
|
480 |
msgid "What is this?"
|
481 |
msgstr "Cos'è questo?"
|
482 |
|
483 |
+
#: ../lib/yasr-settings-functions.php:393
|
484 |
msgid ""
|
485 |
"If you select \"Review Rating\", your site will be indexed from search "
|
486 |
"engines like this: "
|
488 |
"Se hai scelto \"Voto Recensione\", il sito verrà indicizzato dai motori di "
|
489 |
"ricerca così:"
|
490 |
|
491 |
+
#: ../lib/yasr-settings-functions.php:398
|
492 |
msgid ""
|
493 |
"If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
|
494 |
"this"
|
495 |
msgstr ""
|
496 |
"Se, invece, hai scelto \"Media Voto Utenti\", il sito verrà indicizzato così"
|
497 |
|
498 |
+
#: ../lib/yasr-settings-functions.php:416
|
499 |
msgid "Stars"
|
500 |
msgstr "Stelle"
|
501 |
|
502 |
+
#: ../lib/yasr-settings-functions.php:420
|
503 |
msgid "Numbers"
|
504 |
msgstr "Numeri"
|
505 |
|
506 |
+
#: ../lib/yasr-settings-functions.php:432
|
507 |
msgid "Add New Multiple Set"
|
508 |
msgstr "Set Multipli"
|
509 |
|
510 |
+
#: ../lib/yasr-settings-functions.php:433
|
511 |
msgid ""
|
512 |
"Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
|
513 |
"characters"
|
515 |
"Nome, Elemento#1 e Elemento#2 DEVONO essere riempiti e devono essere lunghi "
|
516 |
"almeno 3 caratteri"
|
517 |
|
518 |
+
#: ../lib/yasr-settings-functions.php:436
|
519 |
msgid "Name"
|
520 |
msgstr "Nome"
|
521 |
|
522 |
+
#: ../lib/yasr-settings-functions.php:441
|
523 |
msgid "You can insert up to nine elements"
|
524 |
msgstr "Puoi inserire fino a nove elementi"
|
525 |
|
526 |
+
#: ../lib/yasr-settings-functions.php:446
|
527 |
msgid "Element "
|
528 |
msgstr "Elemento"
|
529 |
|
530 |
+
#: ../lib/yasr-settings-functions.php:456
|
531 |
msgid "Create New Set"
|
532 |
msgstr "Crea Nuovo Set"
|
533 |
|
534 |
+
#: ../lib/yasr-settings-functions.php:477
|
535 |
+
#: ../lib/yasr-settings-functions.php:509
|
536 |
msgid "Manage Multiple Set"
|
537 |
msgstr "Gestisci Set Multiplo"
|
538 |
|
539 |
+
#: ../lib/yasr-settings-functions.php:479
|
540 |
msgid "Wich set do you want to edit or remove?"
|
541 |
msgstr "Quale set vuoi modificare o rimuovere"
|
542 |
|
543 |
+
#: ../lib/yasr-settings-functions.php:519
|
544 |
+
#: ../lib/yasr-settings-functions.php:637
|
545 |
msgid "Field name"
|
546 |
msgstr "Nome campo"
|
547 |
|
548 |
+
#: ../lib/yasr-settings-functions.php:523
|
549 |
+
#: ../lib/yasr-settings-functions.php:641
|
550 |
msgid "Remove"
|
551 |
msgstr "Rimuovi"
|
552 |
|
553 |
+
#: ../lib/yasr-settings-functions.php:565
|
554 |
+
#: ../lib/yasr-settings-functions.php:683
|
555 |
msgid "Remove whole set?"
|
556 |
msgstr "Rimuovere l'intero set?"
|
557 |
|
558 |
+
#: ../lib/yasr-settings-functions.php:578
|
559 |
+
#: ../lib/yasr-settings-functions.php:696
|
560 |
msgid ""
|
561 |
"If you remove something you will remove all the votes for that set or field. "
|
562 |
"This operation CAN'T BE undone."
|
564 |
"Se rimuovi qualcosa rimuoverai anche i voti per quel set o campo. Questa "
|
565 |
"operazione NON PUÒ ESSERE ANNULLATA"
|
566 |
|
567 |
+
#: ../lib/yasr-settings-functions.php:585
|
568 |
+
#: ../lib/yasr-settings-functions.php:703
|
569 |
msgid "You can use up to 9 elements"
|
570 |
msgstr "Puoi usare fino a 9 elementi"
|
571 |
|
572 |
+
#: ../lib/yasr-settings-functions.php:587
|
573 |
+
#: ../lib/yasr-settings-functions.php:705
|
574 |
msgid "Add element"
|
575 |
msgstr "Aggiungi elemento"
|
576 |
|
577 |
+
#: ../lib/yasr-settings-functions.php:589
|
578 |
+
#: ../lib/yasr-settings-functions.php:707
|
579 |
msgid "Save changes"
|
580 |
msgstr "Salva modifiche"
|
581 |
|
582 |
+
#: ../lib/yasr-settings-functions.php:599
|
583 |
msgid "No Multiple Set were found"
|
584 |
msgstr "Nessun Set Multiplo trovato"
|
585 |
|
586 |
+
#: ../lib/yasr-settings-functions.php:849
|
587 |
+
#: ../lib/yasr-settings-functions.php:1117
|
588 |
msgid "Settings Saved"
|
589 |
msgstr "Impostazioni Salvate"
|
590 |
|
591 |
+
#: ../lib/yasr-settings-functions.php:854
|
592 |
msgid "Something goes wrong trying insert set field name. Please report it"
|
593 |
msgstr ""
|
594 |
"Qualcosa è andato storto cercando di inserire un elemento. Per favore "
|
595 |
"segnalalo"
|
596 |
|
597 |
+
#: ../lib/yasr-settings-functions.php:860
|
598 |
msgid "Something goes wrong trying insert Multi Set name. Please report it"
|
599 |
msgstr ""
|
600 |
"Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
|
601 |
"favore segnalalo"
|
602 |
|
603 |
+
#: ../lib/yasr-settings-functions.php:935
|
604 |
msgid "Something goes wrong trying to delete a Multi Set . 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:981
|
610 |
msgid ""
|
611 |
"Something goes wrong trying to delete a Multi Set's element. Please report it"
|
612 |
msgstr ""
|
613 |
"Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
|
614 |
"favore segnalalo"
|
615 |
|
616 |
+
#: ../lib/yasr-settings-functions.php:1045
|
617 |
msgid ""
|
618 |
"Something goes wrong trying to update a Multi Set's element. Please report it"
|
619 |
msgstr ""
|
620 |
"Qualcosa è andato storto cercando di inserire il nome del Set Multiplo. Per "
|
621 |
"favore segnalalo"
|
622 |
|
623 |
+
#: ../lib/yasr-settings-functions.php:1102
|
624 |
msgid ""
|
625 |
"Something goes wrong trying to insert set field name in edit form. Please "
|
626 |
"report it"
|
628 |
"Qualcosa è andato storto cercando di inserire il campo nel form di modifica. "
|
629 |
"Per favore segnalalo"
|
630 |
|
631 |
+
#: ../lib/yasr-settings-functions.php:1145
|
632 |
msgid "Style Options"
|
633 |
msgstr "Opzioni Stili"
|
634 |
|
635 |
+
#: ../lib/yasr-settings-functions.php:1146
|
636 |
msgid "Custom CSS Styles"
|
637 |
msgstr "Stili CSS Personalizzati"
|
638 |
|
639 |
+
#: ../lib/yasr-settings-functions.php:1151
|
640 |
msgid ""
|
641 |
"Please use text area below to write your own CSS styles to override the "
|
642 |
"default ones."
|
644 |
"Usa l'area di testo sottostante per scrivere le tue regole CSS che "
|
645 |
"sovrascriveranno quelle di default"
|
646 |
|
647 |
+
#: ../lib/yasr-settings-functions.php:1153
|
648 |
msgid "Leave it blank if you don't know what you're doing"
|
649 |
msgstr "Lascialo vuoto se non stai cosa stai facendo"
|
650 |
|
651 |
+
#: ../lib/yasr-settings-functions.php:1176
|
652 |
msgid "Looking for more features?"
|
653 |
msgstr "Hai bisogno di più funzioni?"
|
654 |
|
655 |
+
#: ../lib/yasr-settings-functions.php:1177
|
656 |
msgid "Upgrade to yasr pro!"
|
657 |
msgstr "Passa a yasr pro!"
|
658 |
|
659 |
+
#: ../lib/yasr-settings-functions.php:1193
|
660 |
msgid "Unlimited ratings and votes"
|
661 |
msgstr "Voti e recensioni illimitate"
|
662 |
|
663 |
+
#: ../lib/yasr-settings-functions.php:1199
|
664 |
msgid "Works with shortcodes"
|
665 |
msgstr "Funziona con gli shortcodes"
|
666 |
|
667 |
+
#: ../lib/yasr-settings-functions.php:1205
|
668 |
msgid "Multi Set Support"
|
669 |
msgstr "Supporto Set Multipli"
|
670 |
|
671 |
+
#: ../lib/yasr-settings-functions.php:1210
|
672 |
msgid "Logs and stats for visitors votes"
|
673 |
msgstr "Log e statistiche per i voti utenti"
|
674 |
|
675 |
+
#: ../lib/yasr-settings-functions.php:1215
|
676 |
msgid "Localization (.po and .mo files included)"
|
677 |
msgstr "Traducibile (files .po e .mo inclusi)"
|
678 |
|
679 |
+
#: ../lib/yasr-settings-functions.php:1220
|
680 |
msgid "Rich Snippet Support"
|
681 |
msgstr "Supporto per Rich Snippet"
|
682 |
|
683 |
+
#: ../lib/yasr-settings-functions.php:1225
|
684 |
msgid "Rankings for reviews, votes and users"
|
685 |
msgstr "Classifiche per recensioni, voti e utenti"
|
686 |
|
687 |
+
#: ../lib/yasr-settings-functions.php:1230
|
688 |
msgid "Rankings Customization"
|
689 |
msgstr "Personalizzazione Classifiche"
|
690 |
|
691 |
+
#: ../lib/yasr-settings-functions.php:1235
|
692 |
msgid "Stars Customization"
|
693 |
msgstr "Personalizzazione Stelle"
|
694 |
|
695 |
+
#: ../lib/yasr-settings-functions.php:1236
|
696 |
msgid "Size Only"
|
697 |
msgstr "Solo la grandezza"
|
698 |
|
699 |
+
#: ../lib/yasr-settings-functions.php:1237
|
700 |
msgid ""
|
701 |
"Users can choose different ready to use sets or can upload their own images."
|
702 |
msgstr ""
|
703 |
"È possibile scegliere diversi set pronti all'uso o caricare le proprie "
|
704 |
"immagini"
|
705 |
|
706 |
+
#: ../lib/yasr-settings-functions.php:1240
|
707 |
msgid "Visitors can vote on Multi Set"
|
708 |
msgstr "I visitatori possono votare nei Multi Set"
|
709 |
|
710 |
+
#: ../lib/yasr-settings-functions.php:1245
|
711 |
msgid "Users can review in comments"
|
712 |
msgstr "Gli utenti possono recensire nei commenti"
|
713 |
|
714 |
+
#: ../lib/yasr-settings-functions.php:1256
|
715 |
msgid "Not avaible yet"
|
716 |
msgstr "Non ancora disponibile"
|
717 |
|
718 |
+
#: ../lib/yasr-settings-functions.php:1288
|
719 |
+
#: ../lib/yasr-settings-functions.php:1315
|
720 |
msgid "Follow YASR official site!"
|
721 |
msgstr "Segui il sito ufficiale di YASR!"
|
722 |
|
723 |
+
#: ../lib/yasr-settings-functions.php:1345
|
724 |
msgid "No previous Gd Star Rating installation was found"
|
725 |
msgstr "Installazione precedente di Gd Star Rating non stata trovata"
|
726 |
|
1008 |
msgstr "Media Voto "
|
1009 |
|
1010 |
#: ../lib/yasr-ajax-functions.php:1231
|
|
|
1011 |
msgid "You've already voted this article"
|
1012 |
+
msgstr "Hai già votato questo articolo"
|
1013 |
|
1014 |
+
#: ../lib/yasr-ajax-functions.php:1351
|
1015 |
msgid "stars"
|
1016 |
msgstr "stelle"
|
1017 |
|
1018 |
+
#: ../lib/yasr-ajax-functions.php:1356
|
1019 |
+
msgid "star"
|
1020 |
+
msgstr "stella"
|
1021 |
+
|
1022 |
+
#~ msgid ""
|
1023 |
+
#~ "Seems like you've imported gd star rating in the past, but then deleted "
|
1024 |
+
#~ "the logs table. For now, you can't enable statistics"
|
1025 |
+
#~ msgstr ""
|
1026 |
+
#~ "Sembra che in passato hai importato Gd Star Rating, ma poi hai cancellato "
|
1027 |
+
#~ "la tabella con i log. Per il momento, non è possibile abilitare le "
|
1028 |
+
#~ "statistiche"
|
1029 |
|
1030 |
#~ msgid " on 5.0"
|
1031 |
#~ msgstr " su 5.0 "
|
languages/yasr-nb_NO.po
CHANGED
@@ -1,1029 +1,1030 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: YASR lenguages\n"
|
4 |
-
"POT-Creation-Date: 2015-03-03 12:37+0100\n"
|
5 |
-
"PO-Revision-Date: 2015-03-03
|
6 |
-
"Last-Translator:
|
7 |
-
"
|
8 |
-
"Language:
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"Content-
|
12 |
-
"
|
13 |
-
"X-
|
14 |
-
"X-Poedit-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"X-Poedit-SearchPath-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
#: ../
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
"
|
44 |
-
|
45 |
-
|
46 |
-
"
|
47 |
-
|
48 |
-
|
49 |
-
#: ../
|
50 |
-
#: ../lib/yasr-ajax-functions.php:
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
"
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
"
|
141 |
-
|
142 |
-
|
143 |
-
"
|
144 |
-
"
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
"different
|
150 |
-
"
|
151 |
-
"
|
152 |
-
|
153 |
-
|
154 |
-
"
|
155 |
-
"
|
156 |
-
"
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
"
|
162 |
-
"the
|
163 |
-
|
164 |
-
|
165 |
-
"
|
166 |
-
"
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
#: ../lib/yasr-settings-functions.php:
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
#: ../lib/yasr-settings-functions.php:
|
179 |
-
|
180 |
-
|
181 |
-
"
|
182 |
-
|
183 |
-
|
184 |
-
"
|
185 |
-
"
|
186 |
-
|
187 |
-
|
188 |
-
#: ../lib/yasr-settings-functions.php:
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
#: ../lib/yasr-shortcode-functions.php:
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
#: ../lib/yasr-
|
207 |
-
#: ../lib/yasr-ajax-functions.php:
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
#: ../lib/yasr-shortcode-functions.php:
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
#: ../lib/yasr-shortcode-functions.php:
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
#: ../lib/yasr-shortcode-functions.php:
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
#: ../lib/yasr-shortcode-functions.php:
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
#: ../lib/yasr-shortcode-functions.php:
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
#: ../lib/yasr-shortcode-functions.php:
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
"
|
265 |
-
|
266 |
-
|
267 |
-
"
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
"
|
273 |
-
|
274 |
-
|
275 |
-
"du
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
#: ../lib/yasr-settings-functions.php:
|
323 |
-
#: ../lib/yasr-settings-functions.php:
|
324 |
-
#: ../lib/yasr-settings-functions.php:
|
325 |
-
#: ../lib/yasr-settings-functions.php:
|
326 |
-
#: ../lib/yasr-settings-functions.php:
|
327 |
-
#: ../lib/yasr-settings-functions.php:
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
#: ../lib/yasr-settings-functions.php:
|
333 |
-
#: ../lib/yasr-settings-functions.php:
|
334 |
-
#: ../lib/yasr-settings-functions.php:
|
335 |
-
#: ../lib/yasr-settings-functions.php:
|
336 |
-
#: ../lib/yasr-settings-functions.php:
|
337 |
-
#: ../lib/yasr-settings-functions.php:
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
#: ../lib/yasr-ajax-functions.php:
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
#: ../lib/yasr-ajax-functions.php:
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
#: ../lib/yasr-ajax-functions.php:
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
"
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
"
|
410 |
-
"
|
411 |
-
|
412 |
-
|
413 |
-
"
|
414 |
-
"
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
"
|
420 |
-
"
|
421 |
-
|
422 |
-
|
423 |
-
"
|
424 |
-
"
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
"
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
"
|
444 |
-
|
445 |
-
|
446 |
-
"
|
447 |
-
"
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
"
|
493 |
-
|
494 |
-
|
495 |
-
"
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
"
|
501 |
-
|
502 |
-
|
503 |
-
"
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
"
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
#: ../lib/yasr-settings-functions.php:
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
#: ../lib/yasr-settings-functions.php:
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
#: ../lib/yasr-settings-functions.php:
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
#: ../lib/yasr-settings-functions.php:
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
#: ../lib/yasr-settings-functions.php:
|
565 |
-
|
566 |
-
|
567 |
-
"
|
568 |
-
|
569 |
-
|
570 |
-
"
|
571 |
-
"
|
572 |
-
|
573 |
-
|
574 |
-
#: ../lib/yasr-settings-functions.php:
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
#: ../lib/yasr-settings-functions.php:
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
#: ../lib/yasr-settings-functions.php:
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
#: ../lib/yasr-settings-functions.php:
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
"
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
"
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
"
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
"
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
"
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
"
|
633 |
-
|
634 |
-
|
635 |
-
"
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
"
|
649 |
-
|
650 |
-
|
651 |
-
"
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
msgid "Size Only"
|
704 |
-
msgstr "
|
705 |
-
|
706 |
-
#: ../lib/yasr-settings-functions.php:1255
|
707 |
-
msgid ""
|
708 |
-
"Users can choose different ready to use sets or can upload their own images."
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
"
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
"
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
"
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
"
|
980 |
-
"
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
"
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
#~
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YASR lenguages\n"
|
4 |
+
"POT-Creation-Date: 2015-03-03 12:37+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-03-03 20:06+0100\n"
|
6 |
+
"Last-Translator: Spilleautomater|Casinobonuser "
|
7 |
+
"<admin@spilleautomatercasinobonuser.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: nb\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.7.4\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-SearchPath-1: ../lib\n"
|
19 |
+
|
20 |
+
#: ../yasr-metabox-top-right.php:65 ../yasr-metabox-top-right.php:99
|
21 |
+
msgid "Rate this article / item"
|
22 |
+
msgstr "Vurder denne artikkelen/dette elementet"
|
23 |
+
|
24 |
+
#: ../yasr-metabox-top-right.php:71 ../lib/yasr-shortcode-functions.php:136
|
25 |
+
msgid "Loading, please wait"
|
26 |
+
msgstr "Laster. Vennligst vent."
|
27 |
+
|
28 |
+
#: ../yasr-metabox-top-right.php:147
|
29 |
+
msgid "Save Vote"
|
30 |
+
msgstr "Lagre vurdering"
|
31 |
+
|
32 |
+
#: ../yasr-metabox-top-right.php:164
|
33 |
+
msgid "This review is about a..."
|
34 |
+
msgstr "Dette er en vurdering av..."
|
35 |
+
|
36 |
+
#: ../yasr-metabox-top-right.php:193 ../yasr-metabox-multiple-rating.php:46
|
37 |
+
#: ../lib/yasr-settings-functions.php:505
|
38 |
+
msgid "Select"
|
39 |
+
msgstr "Velg"
|
40 |
+
|
41 |
+
#: ../yasr-metabox-top-right.php:211
|
42 |
+
msgid ""
|
43 |
+
"Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
|
44 |
+
"where you want to display this rating"
|
45 |
+
msgstr ""
|
46 |
+
"Husk å legge inn dennne kodesnutten, <strong>[yasr_overall_rating]</"
|
47 |
+
"strong>, der hvor du ønsker at vurderingen skal vises"
|
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 "Du har ikke tilstrekkelig tillatelse til å få tilgang til denne siden."
|
54 |
+
|
55 |
+
#: ../yasr-settings-page.php:33
|
56 |
+
msgid "Settings"
|
57 |
+
msgstr "Innstillinger"
|
58 |
+
|
59 |
+
#: ../yasr-settings-page.php:76
|
60 |
+
msgid "General Settings"
|
61 |
+
msgstr "Generelle innstillinger"
|
62 |
+
|
63 |
+
#: ../yasr-settings-page.php:77
|
64 |
+
msgid "Multi Sets"
|
65 |
+
msgstr "Multisett"
|
66 |
+
|
67 |
+
#: ../yasr-settings-page.php:78
|
68 |
+
msgid "Styles"
|
69 |
+
msgstr "Stiler"
|
70 |
+
|
71 |
+
#: ../yasr-settings-page.php:79
|
72 |
+
msgid "Pro Features!"
|
73 |
+
msgstr "Pro-funksjoner!"
|
74 |
+
|
75 |
+
#: ../yasr-settings-page.php:96 ../yasr-settings-page.php:276
|
76 |
+
msgid "Save"
|
77 |
+
msgstr "Lagre"
|
78 |
+
|
79 |
+
#: ../yasr-settings-page.php:116
|
80 |
+
msgid "Import Gd Star Rating"
|
81 |
+
msgstr "Importer Gd-stjernevurdering"
|
82 |
+
|
83 |
+
#: ../yasr-settings-page.php:117
|
84 |
+
msgid "I've found a previous installation of Gd Star Rating."
|
85 |
+
msgstr "Jeg fant en tidligere installasjon av Gd-stjernevurdering"
|
86 |
+
|
87 |
+
#: ../yasr-settings-page.php:117
|
88 |
+
msgid "Do you want proceed to import data?"
|
89 |
+
msgstr "Vil du fortsette og importere data?"
|
90 |
+
|
91 |
+
#: ../yasr-settings-page.php:119
|
92 |
+
msgid "Yes, Begin Import"
|
93 |
+
msgstr "Ja, start importeringen"
|
94 |
+
|
95 |
+
#: ../yasr-settings-page.php:123
|
96 |
+
msgid "Click on Proceed to import Gd Star Rating data."
|
97 |
+
msgstr "Klikk på \"Fortsett\" for å importere data fra Gd-stjernevurdering."
|
98 |
+
|
99 |
+
#: ../yasr-settings-page.php:126 ../yasr-settings-page.php:159
|
100 |
+
msgid "Proceed"
|
101 |
+
msgstr "Fortsett"
|
102 |
+
|
103 |
+
#: ../yasr-settings-page.php:148
|
104 |
+
msgid "Manage GD Star Data"
|
105 |
+
msgstr "Administrer Gd-stjernevurdering"
|
106 |
+
|
107 |
+
#: ../yasr-settings-page.php:149
|
108 |
+
msgid "Gd Star Rating has been already imported."
|
109 |
+
msgstr "Gd-stjernevurdering har allerede blitt importert."
|
110 |
+
|
111 |
+
#: ../yasr-settings-page.php:150
|
112 |
+
msgid "If you wish you can import it again, but"
|
113 |
+
msgstr "Dersom du ønsker kan du importere en gang til, men"
|
114 |
+
|
115 |
+
#: ../yasr-settings-page.php:150
|
116 |
+
msgid "you will lose all data you've collect since the import!"
|
117 |
+
msgstr "du vil miste alle data du har samlet inn siden importeringen."
|
118 |
+
|
119 |
+
#: ../yasr-settings-page.php:152
|
120 |
+
msgid "Ok, Import Again"
|
121 |
+
msgstr "OK, importer en gang til"
|
122 |
+
|
123 |
+
#: ../yasr-settings-page.php:156
|
124 |
+
msgid ""
|
125 |
+
"Click on Proceed to import again Gd Star Rating data. This may take a while!"
|
126 |
+
msgstr ""
|
127 |
+
"Klikk på \"Fortsett\" for å importere Gd-stjernevurdering en gang til. Dette "
|
128 |
+
"kan ta en stund."
|
129 |
+
|
130 |
+
#: ../yasr-settings-page.php:196
|
131 |
+
msgid "Manage Multi Set"
|
132 |
+
msgstr "Administrer multisett"
|
133 |
+
|
134 |
+
#: ../yasr-settings-page.php:200
|
135 |
+
msgid "What is a Multi Set?"
|
136 |
+
msgstr "Hva er et multisett?"
|
137 |
+
|
138 |
+
#: ../yasr-settings-page.php:204
|
139 |
+
msgid ""
|
140 |
+
"Multi Set allows you to insert a rate for each aspect about the product / "
|
141 |
+
"local business / whetever you're reviewing, example in the image below."
|
142 |
+
msgstr ""
|
143 |
+
"Et multisett lar deg legge inn en vurdering av ulike aspekter ved produktet, "
|
144 |
+
"bedriften, eller hva enn du vurderer. Du kan se et eksempel på bildet "
|
145 |
+
"nedenfor."
|
146 |
+
|
147 |
+
#: ../yasr-settings-page.php:208
|
148 |
+
msgid ""
|
149 |
+
"You can create up to 99 different Multi Set and each one can contain up to 9 "
|
150 |
+
"different fields. Once you've saved it, you can insert the rates while "
|
151 |
+
"typing your article in the box below the editor, as you can see in this "
|
152 |
+
"image (click to see it larger)"
|
153 |
+
msgstr ""
|
154 |
+
"Du kan opprette opptil 99 ulike multisett, og hver av disse kan inneholde "
|
155 |
+
"opptil 9 ulike felter. Så snart du har lagret et sett, kan du legge inn "
|
156 |
+
"vurderingene dine mens du skriver artikkelen din inn i boksen nedenfor "
|
157 |
+
"redigeringsvinduet. Dette kan du se på dette bildet (klikk for å forstørre)"
|
158 |
+
|
159 |
+
#: ../yasr-settings-page.php:212
|
160 |
+
msgid ""
|
161 |
+
"In order to insert your Multi Sets into a post or page, you can either past "
|
162 |
+
"the short code that will appear at the bottom of the box or just click on "
|
163 |
+
"the star in the graphic editor and select \"Insert Multi Set\"."
|
164 |
+
msgstr ""
|
165 |
+
"Du kan legge inn multisettene dine i et innlegg eller på en side på to ulike "
|
166 |
+
"måter: Du kan legge inn kodesnutten du ser i bunnen av boksen, eller du kan "
|
167 |
+
"klikke på stjernen i redigeringsvinduet og så klikke \"Legg inn multisett\"."
|
168 |
+
|
169 |
+
#: ../yasr-settings-page.php:218
|
170 |
+
msgid "Close this message"
|
171 |
+
msgstr "Lukk denne meldingen"
|
172 |
+
|
173 |
+
#: ../yasr-settings-page.php:246 ../lib/yasr-settings-functions.php:1294
|
174 |
+
#: ../lib/yasr-settings-functions.php:1320
|
175 |
+
msgid "Donations"
|
176 |
+
msgstr "Donasjoner"
|
177 |
+
|
178 |
+
#: ../yasr-settings-page.php:248 ../lib/yasr-settings-functions.php:1296
|
179 |
+
#: ../lib/yasr-settings-functions.php:1322
|
180 |
+
msgid ""
|
181 |
+
"If you have found this plugin useful, please consider making a donation to "
|
182 |
+
"help support future development. Your support will be much appreciated. "
|
183 |
+
msgstr ""
|
184 |
+
"Dersom du synes denne utvidelsen er hjelpsom, vennligst vurder å gi en "
|
185 |
+
"donasjon for å hjelpe oss med fremtidig utvikling. Vi setter veldig stor "
|
186 |
+
"pris på støtten din."
|
187 |
+
|
188 |
+
#: ../yasr-settings-page.php:250 ../lib/yasr-settings-functions.php:1298
|
189 |
+
#: ../lib/yasr-settings-functions.php:1324
|
190 |
+
msgid "Thank you!"
|
191 |
+
msgstr "Tusen takk!"
|
192 |
+
|
193 |
+
#: ../yasr-metabox-multiple-rating.php:35
|
194 |
+
msgid "Choose wich set you want to use"
|
195 |
+
msgstr "Velg hvilket sett du vil bruke"
|
196 |
+
|
197 |
+
#: ../lib/yasr-shortcode-functions.php:185
|
198 |
+
#: ../lib/yasr-shortcode-functions.php:207
|
199 |
+
msgid "You've already voted this article with"
|
200 |
+
msgstr "Du har allerede gitt din vurdering. Du ga karaktereren "
|
201 |
+
|
202 |
+
#: ../lib/yasr-shortcode-functions.php:218
|
203 |
+
msgid "You must sign to vote"
|
204 |
+
msgstr "Du må logge inn for å vurdere"
|
205 |
+
|
206 |
+
#: ../lib/yasr-shortcode-functions.php:227 ../lib/yasr-ajax-functions.php:1011
|
207 |
+
#: ../lib/yasr-ajax-functions.php:1019 ../lib/yasr-ajax-functions.php:1148
|
208 |
+
#: ../lib/yasr-ajax-functions.php:1220
|
209 |
+
msgid "Total: "
|
210 |
+
msgstr "Totalt:"
|
211 |
+
|
212 |
+
#: ../lib/yasr-shortcode-functions.php:227
|
213 |
+
msgid "Average: "
|
214 |
+
msgstr "Gjennomsnitt:"
|
215 |
+
|
216 |
+
#: ../lib/yasr-shortcode-functions.php:392
|
217 |
+
msgid "Rating"
|
218 |
+
msgstr "Vurdering"
|
219 |
+
|
220 |
+
#: ../lib/yasr-shortcode-functions.php:406
|
221 |
+
msgid "You don't have any votes stored"
|
222 |
+
msgstr "Du har ingen vurderinger lagret"
|
223 |
+
|
224 |
+
#: ../lib/yasr-shortcode-functions.php:442
|
225 |
+
#: ../lib/yasr-shortcode-functions.php:480
|
226 |
+
msgid "Post / Page"
|
227 |
+
msgstr "Innlegg / side"
|
228 |
+
|
229 |
+
#: ../lib/yasr-shortcode-functions.php:443
|
230 |
+
#: ../lib/yasr-shortcode-functions.php:481
|
231 |
+
msgid "Order By"
|
232 |
+
msgstr "Sorter basert på "
|
233 |
+
|
234 |
+
#: ../lib/yasr-shortcode-functions.php:443
|
235 |
+
#: ../lib/yasr-shortcode-functions.php:481
|
236 |
+
msgid "Most Rated"
|
237 |
+
msgstr "Flest vurderinger"
|
238 |
+
|
239 |
+
#: ../lib/yasr-shortcode-functions.php:443
|
240 |
+
#: ../lib/yasr-shortcode-functions.php:481
|
241 |
+
msgid "Highest Rated"
|
242 |
+
msgstr "Høyest vurdering"
|
243 |
+
|
244 |
+
#: ../lib/yasr-shortcode-functions.php:460
|
245 |
+
#: ../lib/yasr-shortcode-functions.php:495
|
246 |
+
msgid "Total:"
|
247 |
+
msgstr "Total:"
|
248 |
+
|
249 |
+
#: ../lib/yasr-shortcode-functions.php:460
|
250 |
+
#: ../lib/yasr-shortcode-functions.php:495
|
251 |
+
msgid "Average"
|
252 |
+
msgstr "Gjennomsnittlig "
|
253 |
+
|
254 |
+
#: ../lib/yasr-shortcode-functions.php:472
|
255 |
+
msgid "You've not enough data"
|
256 |
+
msgstr "Du har ikke nok data"
|
257 |
+
|
258 |
+
#: ../lib/yasr-shortcode-functions.php:507
|
259 |
+
msgid "You've not enought data"
|
260 |
+
msgstr "Du har ikke nok data"
|
261 |
+
|
262 |
+
#: ../lib/yasr-shortcode-functions.php:592
|
263 |
+
msgid ""
|
264 |
+
"Problem while retrieving the top 5 most active reviewers. Did you publish "
|
265 |
+
"any review?"
|
266 |
+
msgstr ""
|
267 |
+
"Problem oppsto mens vi hentet de 5 mest aktive anmelderne . Har du publisert "
|
268 |
+
"en omtale?"
|
269 |
+
|
270 |
+
#: ../lib/yasr-shortcode-functions.php:660
|
271 |
+
msgid ""
|
272 |
+
"Problem while retrieving the top 10 active users chart. Are you sure you "
|
273 |
+
"have votes to show?"
|
274 |
+
msgstr ""
|
275 |
+
"Problem oppsto mens vi hentet de 5 mest aktive brukerne. Er du sikker på at "
|
276 |
+
"du har vurderinger som kan vises?"
|
277 |
+
|
278 |
+
#: ../lib/yasr-settings-functions.php:49
|
279 |
+
msgid "General settings"
|
280 |
+
msgstr "Generelle innstillinger"
|
281 |
+
|
282 |
+
#: ../lib/yasr-settings-functions.php:50
|
283 |
+
msgid "Auto insert options"
|
284 |
+
msgstr "Automatiske innleggingsalternativer"
|
285 |
+
|
286 |
+
#: ../lib/yasr-settings-functions.php:51
|
287 |
+
msgid "Show \"Overall Rating\" in Archive Page?"
|
288 |
+
msgstr "Vis \"Helhetsvurdering\" på arkivsiden?"
|
289 |
+
|
290 |
+
#: ../lib/yasr-settings-functions.php:52
|
291 |
+
msgid "Show \"Visitor Votes\" in Archive Page?"
|
292 |
+
msgstr "Vis \"Besøkendes vurderinger\" på arkivsiden?"
|
293 |
+
|
294 |
+
#: ../lib/yasr-settings-functions.php:53
|
295 |
+
msgid "Insert custom text to show before / after stars"
|
296 |
+
msgstr "Legg inn egentilpasset tekst som vises før/etter stjernene"
|
297 |
+
|
298 |
+
#: ../lib/yasr-settings-functions.php:54
|
299 |
+
msgid "Do you want show stats for visitors votes?"
|
300 |
+
msgstr "Vil du vise statistikker for besøkendes vurderinger?"
|
301 |
+
|
302 |
+
#: ../lib/yasr-settings-functions.php:55
|
303 |
+
msgid "Which color scheme do you want to use?"
|
304 |
+
msgstr "Hvilket fargevalg ønsker du å benytte?"
|
305 |
+
|
306 |
+
#: ../lib/yasr-settings-functions.php:56
|
307 |
+
msgid "Allow only logged in user to vote?"
|
308 |
+
msgstr "Tillat kun innloggede brukere å legge inn en vurdering?"
|
309 |
+
|
310 |
+
#: ../lib/yasr-settings-functions.php:57
|
311 |
+
msgid "Which rich snippets do you want to use?"
|
312 |
+
msgstr "Hvilken rikt tekstutdrag ønsker du å bruke? "
|
313 |
+
|
314 |
+
#: ../lib/yasr-settings-functions.php:58
|
315 |
+
msgid "How do you want to rate \"Overall Rating\"?"
|
316 |
+
msgstr "Hvordan ønsker du å vurdere \"Helhetsvurdering\"?"
|
317 |
+
|
318 |
+
#: ../lib/yasr-settings-functions.php:72
|
319 |
+
msgid "Use Auto Insert?"
|
320 |
+
msgstr "Bruk automatisk innlegging?"
|
321 |
+
|
322 |
+
#: ../lib/yasr-settings-functions.php:75
|
323 |
+
#: ../lib/yasr-settings-functions.php:144
|
324 |
+
#: ../lib/yasr-settings-functions.php:162
|
325 |
+
#: ../lib/yasr-settings-functions.php:204
|
326 |
+
#: ../lib/yasr-settings-functions.php:230
|
327 |
+
#: ../lib/yasr-settings-functions.php:262
|
328 |
+
#: ../lib/yasr-settings-functions.php:313
|
329 |
+
msgid "Yes"
|
330 |
+
msgstr "Ja"
|
331 |
+
|
332 |
+
#: ../lib/yasr-settings-functions.php:89
|
333 |
+
#: ../lib/yasr-settings-functions.php:149
|
334 |
+
#: ../lib/yasr-settings-functions.php:167
|
335 |
+
#: ../lib/yasr-settings-functions.php:209
|
336 |
+
#: ../lib/yasr-settings-functions.php:235
|
337 |
+
#: ../lib/yasr-settings-functions.php:267
|
338 |
+
#: ../lib/yasr-settings-functions.php:318
|
339 |
+
msgid "No"
|
340 |
+
msgstr "Nei"
|
341 |
+
|
342 |
+
#: ../lib/yasr-settings-functions.php:95
|
343 |
+
msgid "What?"
|
344 |
+
msgstr "Hva?"
|
345 |
+
|
346 |
+
#: ../lib/yasr-settings-functions.php:98
|
347 |
+
msgid "Overall Rating / Author Rating"
|
348 |
+
msgstr "Helhetsvurdering / skribentvurdering"
|
349 |
+
|
350 |
+
#: ../lib/yasr-settings-functions.php:102 ../lib/yasr-ajax-functions.php:462
|
351 |
+
msgid "Visitor Votes"
|
352 |
+
msgstr "Besøkendes vurderinger"
|
353 |
+
|
354 |
+
#: ../lib/yasr-settings-functions.php:106
|
355 |
+
msgid "Both"
|
356 |
+
msgstr "Begge"
|
357 |
+
|
358 |
+
#: ../lib/yasr-settings-functions.php:110
|
359 |
+
msgid "Where?"
|
360 |
+
msgstr "Hvor?"
|
361 |
+
|
362 |
+
#: ../lib/yasr-settings-functions.php:113
|
363 |
+
msgid "Before the post"
|
364 |
+
msgstr "Før innlegget"
|
365 |
+
|
366 |
+
#: ../lib/yasr-settings-functions.php:117
|
367 |
+
msgid "After the post"
|
368 |
+
msgstr "Etter innlegget"
|
369 |
+
|
370 |
+
#: ../lib/yasr-settings-functions.php:122
|
371 |
+
msgid "Size"
|
372 |
+
msgstr "Størrelse"
|
373 |
+
|
374 |
+
#: ../lib/yasr-settings-functions.php:126 ../lib/yasr-ajax-functions.php:452
|
375 |
+
#: ../lib/yasr-ajax-functions.php:470
|
376 |
+
msgid "Small"
|
377 |
+
msgstr "Liten"
|
378 |
+
|
379 |
+
#: ../lib/yasr-settings-functions.php:131 ../lib/yasr-ajax-functions.php:453
|
380 |
+
#: ../lib/yasr-ajax-functions.php:471
|
381 |
+
msgid "Medium"
|
382 |
+
msgstr "Middels"
|
383 |
+
|
384 |
+
#: ../lib/yasr-settings-functions.php:136 ../lib/yasr-ajax-functions.php:454
|
385 |
+
#: ../lib/yasr-ajax-functions.php:472
|
386 |
+
msgid "Large"
|
387 |
+
msgstr "Stor"
|
388 |
+
|
389 |
+
#: ../lib/yasr-settings-functions.php:141
|
390 |
+
msgid "Exclude Pages?"
|
391 |
+
msgstr "Ekskluder visse sider?"
|
392 |
+
|
393 |
+
#: ../lib/yasr-settings-functions.php:159
|
394 |
+
msgid "Use only in custom post types?"
|
395 |
+
msgstr "Bruk kun i egentilpassede innleggstyper?"
|
396 |
+
|
397 |
+
#: ../lib/yasr-settings-functions.php:171
|
398 |
+
msgid "You see this because you use custom post types."
|
399 |
+
msgstr "Du ser denne fordi du benytter egentilpassede innleggstyper."
|
400 |
+
|
401 |
+
#: ../lib/yasr-settings-functions.php:173
|
402 |
+
msgid "If you want to use auto insert only in custom post types, choose Yes"
|
403 |
+
msgstr ""
|
404 |
+
"Velg \"Ja\" dersom du kun ønsker å bruke automatisk innlegging i "
|
405 |
+
"egentilpassede innleggstyper"
|
406 |
+
|
407 |
+
#: ../lib/yasr-settings-functions.php:213
|
408 |
+
msgid ""
|
409 |
+
"If you enable this, \"Overall Rating\" will be showed not only in the single "
|
410 |
+
"article or page, but also in pages like Home Page, category pages or "
|
411 |
+
"archives."
|
412 |
+
msgstr ""
|
413 |
+
"Dersom du aktiverer dette, vil \"Helhetsvurdering\" ikke bare vises i "
|
414 |
+
"enkeltartikler og på sider, men også på andre sider som startsiden, "
|
415 |
+
"kategorisider eller i arkiver."
|
416 |
+
|
417 |
+
#: ../lib/yasr-settings-functions.php:239
|
418 |
+
msgid ""
|
419 |
+
"If you enable this, \"Visitor Votes\" will be showed not only in the single "
|
420 |
+
"article or page, but also in pages like Home Page, category pages or "
|
421 |
+
"archives."
|
422 |
+
msgstr ""
|
423 |
+
"Dersom du aktiverer denne, vil \"Besøkendes vurderinger\" ikke bare vises i "
|
424 |
+
"enkeltartikler og på sider, men også på andre sider som startsiden, "
|
425 |
+
"kategorisider eller i arkiver."
|
426 |
+
|
427 |
+
#: ../lib/yasr-settings-functions.php:272
|
428 |
+
msgid "Custom text to display before Overall Rating"
|
429 |
+
msgstr "Egentilpasset tekst som vises før helhetsvurderingen"
|
430 |
+
|
431 |
+
#: ../lib/yasr-settings-functions.php:277
|
432 |
+
msgid "Custom text to display before Visitor Rating"
|
433 |
+
msgstr "Egentilpasset tekst som vises før besøkendes vurdering"
|
434 |
+
|
435 |
+
#: ../lib/yasr-settings-functions.php:282
|
436 |
+
msgid "Custom text to display when a non logged user has already rated"
|
437 |
+
msgstr ""
|
438 |
+
"Egentilpasset tekst som vises når en bruker som ikke er innlogget allerede "
|
439 |
+
"har gitt sin vurdering"
|
440 |
+
|
441 |
+
#: ../lib/yasr-settings-functions.php:296
|
442 |
+
msgid ""
|
443 |
+
"Seems like you've imported gd star rating in the past, but then deleted the "
|
444 |
+
"logs table. For now, you can't enable statistics"
|
445 |
+
msgstr ""
|
446 |
+
"Det ser ut som at du har importert gd-stjernevurdering tidligere, men at "
|
447 |
+
"tabellen med loggene ble slettet. Du kan for øyeblikket ikke aktivere "
|
448 |
+
"statistikker."
|
449 |
+
|
450 |
+
#: ../lib/yasr-settings-functions.php:338
|
451 |
+
msgid "Light"
|
452 |
+
msgstr "Lyst"
|
453 |
+
|
454 |
+
#: ../lib/yasr-settings-functions.php:343
|
455 |
+
msgid "Dark"
|
456 |
+
msgstr "Mørkt"
|
457 |
+
|
458 |
+
#: ../lib/yasr-settings-functions.php:348
|
459 |
+
msgid "Preview"
|
460 |
+
msgstr "Forhåndsvisning"
|
461 |
+
|
462 |
+
#: ../lib/yasr-settings-functions.php:353
|
463 |
+
msgid "Light theme"
|
464 |
+
msgstr "Lyst tema"
|
465 |
+
|
466 |
+
#: ../lib/yasr-settings-functions.php:358
|
467 |
+
msgid "Dark Theme"
|
468 |
+
msgstr "Mørkt tema"
|
469 |
+
|
470 |
+
#: ../lib/yasr-settings-functions.php:376
|
471 |
+
msgid "Allow only logged-in users"
|
472 |
+
msgstr "Tillat kun innloggede brukere"
|
473 |
+
|
474 |
+
#: ../lib/yasr-settings-functions.php:380
|
475 |
+
msgid "Allow everybody (logged in and anonymous)"
|
476 |
+
msgstr "Tillat alle (innloggede og anonyme)"
|
477 |
+
|
478 |
+
#: ../lib/yasr-settings-functions.php:397
|
479 |
+
msgid "Review Rating"
|
480 |
+
msgstr "Vurdering"
|
481 |
+
|
482 |
+
#: ../lib/yasr-settings-functions.php:401
|
483 |
+
msgid "Aggregate Rating"
|
484 |
+
msgstr "Aggregert vurdering"
|
485 |
+
|
486 |
+
#: ../lib/yasr-settings-functions.php:406
|
487 |
+
msgid "What is this?"
|
488 |
+
msgstr "Hva er dette?"
|
489 |
+
|
490 |
+
#: ../lib/yasr-settings-functions.php:411
|
491 |
+
msgid ""
|
492 |
+
"If you select \"Review Rating\", your site will be indexed from search "
|
493 |
+
"engines like this: "
|
494 |
+
msgstr ""
|
495 |
+
"Dersom du velger \"Helhetsvurdering\", så vil siden din bli indeksert av "
|
496 |
+
"søkemotorer på denne måten:"
|
497 |
+
|
498 |
+
#: ../lib/yasr-settings-functions.php:416
|
499 |
+
msgid ""
|
500 |
+
"If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
|
501 |
+
"this"
|
502 |
+
msgstr ""
|
503 |
+
"Dersom du istedenfor velger \"Aggregert vurdering\", så vil siden din bli "
|
504 |
+
"indeksert på denne måten:"
|
505 |
+
|
506 |
+
#: ../lib/yasr-settings-functions.php:434
|
507 |
+
msgid "Stars"
|
508 |
+
msgstr "Stjerner"
|
509 |
+
|
510 |
+
#: ../lib/yasr-settings-functions.php:438
|
511 |
+
msgid "Numbers"
|
512 |
+
msgstr "Tall"
|
513 |
+
|
514 |
+
#: ../lib/yasr-settings-functions.php:450
|
515 |
+
msgid "Add New Multiple Set"
|
516 |
+
msgstr "Legg til nytt multisett"
|
517 |
+
|
518 |
+
#: ../lib/yasr-settings-functions.php:451
|
519 |
+
msgid ""
|
520 |
+
"Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
|
521 |
+
"characters"
|
522 |
+
msgstr "Navn, Element#1 og Element#2 MÅ fylles ut og inneholde minst tre tegn"
|
523 |
+
|
524 |
+
#: ../lib/yasr-settings-functions.php:454
|
525 |
+
msgid "Name"
|
526 |
+
msgstr "Navn"
|
527 |
+
|
528 |
+
#: ../lib/yasr-settings-functions.php:459
|
529 |
+
msgid "You can insert up to nine elements"
|
530 |
+
msgstr "Du kan legge inn opptil ni elementer"
|
531 |
+
|
532 |
+
#: ../lib/yasr-settings-functions.php:464
|
533 |
+
msgid "Element "
|
534 |
+
msgstr "Element"
|
535 |
+
|
536 |
+
#: ../lib/yasr-settings-functions.php:474
|
537 |
+
msgid "Create New Set"
|
538 |
+
msgstr "Opprett nytt sett"
|
539 |
+
|
540 |
+
#: ../lib/yasr-settings-functions.php:495
|
541 |
+
#: ../lib/yasr-settings-functions.php:527
|
542 |
+
msgid "Manage Multiple Set"
|
543 |
+
msgstr "Administrer multisett"
|
544 |
+
|
545 |
+
#: ../lib/yasr-settings-functions.php:497
|
546 |
+
msgid "Wich set do you want to edit or remove?"
|
547 |
+
msgstr "Hvilket sett ønsker du å endre eller slette?"
|
548 |
+
|
549 |
+
#: ../lib/yasr-settings-functions.php:537
|
550 |
+
#: ../lib/yasr-settings-functions.php:655
|
551 |
+
msgid "Field name"
|
552 |
+
msgstr "Feltnavn"
|
553 |
+
|
554 |
+
#: ../lib/yasr-settings-functions.php:541
|
555 |
+
#: ../lib/yasr-settings-functions.php:659
|
556 |
+
msgid "Remove"
|
557 |
+
msgstr "Slett"
|
558 |
+
|
559 |
+
#: ../lib/yasr-settings-functions.php:583
|
560 |
+
#: ../lib/yasr-settings-functions.php:701
|
561 |
+
msgid "Remove whole set?"
|
562 |
+
msgstr "Slett hele settet?"
|
563 |
+
|
564 |
+
#: ../lib/yasr-settings-functions.php:596
|
565 |
+
#: ../lib/yasr-settings-functions.php:714
|
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."
|
569 |
+
msgstr ""
|
570 |
+
"Hvis du sletter noe, så sletter du også alle vurderinger for det settet "
|
571 |
+
"eller feltet. Denne handlingen er endelig, og du kan ikke angre deg i "
|
572 |
+
"etterkant."
|
573 |
+
|
574 |
+
#: ../lib/yasr-settings-functions.php:603
|
575 |
+
#: ../lib/yasr-settings-functions.php:721
|
576 |
+
msgid "You can use up to 9 elements"
|
577 |
+
msgstr "Du kan bruke opptil ni elementer"
|
578 |
+
|
579 |
+
#: ../lib/yasr-settings-functions.php:605
|
580 |
+
#: ../lib/yasr-settings-functions.php:723
|
581 |
+
msgid "Add element"
|
582 |
+
msgstr "Legg til element"
|
583 |
+
|
584 |
+
#: ../lib/yasr-settings-functions.php:607
|
585 |
+
#: ../lib/yasr-settings-functions.php:725
|
586 |
+
msgid "Save changes"
|
587 |
+
msgstr "Lagre endringer"
|
588 |
+
|
589 |
+
#: ../lib/yasr-settings-functions.php:617
|
590 |
+
msgid "No Multiple Set were found"
|
591 |
+
msgstr "Vi fant ingen multisett"
|
592 |
+
|
593 |
+
#: ../lib/yasr-settings-functions.php:867
|
594 |
+
#: ../lib/yasr-settings-functions.php:1135
|
595 |
+
msgid "Settings Saved"
|
596 |
+
msgstr "Instillinger lagret"
|
597 |
+
|
598 |
+
#: ../lib/yasr-settings-functions.php:872
|
599 |
+
msgid "Something goes wrong trying insert set field name. Please report it"
|
600 |
+
msgstr ""
|
601 |
+
"Noe går galt mens vi forsøker å legge inn feltnavn i settet. Vennligst "
|
602 |
+
"rapporter dette."
|
603 |
+
|
604 |
+
#: ../lib/yasr-settings-functions.php:878
|
605 |
+
msgid "Something goes wrong trying insert Multi Set name. Please report it"
|
606 |
+
msgstr ""
|
607 |
+
"Noe går galt mens vi forsøker å legge inn navn på multisett. Vennligst "
|
608 |
+
"rapporter dette."
|
609 |
+
|
610 |
+
#: ../lib/yasr-settings-functions.php:953
|
611 |
+
msgid "Something goes wrong trying to delete a Multi Set . Please report it"
|
612 |
+
msgstr ""
|
613 |
+
"Noe går galt mens vi forsøker å slette et multisett. Vennligst rapporter "
|
614 |
+
"dette."
|
615 |
+
|
616 |
+
#: ../lib/yasr-settings-functions.php:999
|
617 |
+
msgid ""
|
618 |
+
"Something goes wrong trying to delete a Multi Set's element. Please report it"
|
619 |
+
msgstr ""
|
620 |
+
"Noe går galt mens vi forsøker å slette et element i multisettet. Vennligst "
|
621 |
+
"rapporter dette."
|
622 |
+
|
623 |
+
#: ../lib/yasr-settings-functions.php:1063
|
624 |
+
msgid ""
|
625 |
+
"Something goes wrong trying to update a Multi Set's element. Please report it"
|
626 |
+
msgstr ""
|
627 |
+
"Noe går galt mens vi forsøker å oppdatere et element i multisettet. "
|
628 |
+
"Vennligst rapporter dette."
|
629 |
+
|
630 |
+
#: ../lib/yasr-settings-functions.php:1120
|
631 |
+
msgid ""
|
632 |
+
"Something goes wrong trying to insert set field name in edit form. Please "
|
633 |
+
"report it"
|
634 |
+
msgstr ""
|
635 |
+
"Noe går galt mens vi forsøker å legge inn feltnavn i settet i endre-modus. "
|
636 |
+
"Vennligst rapporter dette."
|
637 |
+
|
638 |
+
#: ../lib/yasr-settings-functions.php:1163
|
639 |
+
msgid "Style Options"
|
640 |
+
msgstr "Stilvalg"
|
641 |
+
|
642 |
+
#: ../lib/yasr-settings-functions.php:1164
|
643 |
+
msgid "Custom CSS Styles"
|
644 |
+
msgstr "Egentilpassede CSS-stiler"
|
645 |
+
|
646 |
+
#: ../lib/yasr-settings-functions.php:1169
|
647 |
+
msgid ""
|
648 |
+
"Please use text area below to write your own CSS styles to override the "
|
649 |
+
"default ones."
|
650 |
+
msgstr ""
|
651 |
+
"Vennligst benytt tekstområdet nedenfor for å legge inn dine egne CSS-stiler. "
|
652 |
+
"Disse overstyrer standardstilene."
|
653 |
+
|
654 |
+
#: ../lib/yasr-settings-functions.php:1171
|
655 |
+
msgid "Leave it blank if you don't know what you're doing"
|
656 |
+
msgstr " Ikke legg inn noe her med mindre du vet hva du holder på med."
|
657 |
+
|
658 |
+
#: ../lib/yasr-settings-functions.php:1194
|
659 |
+
msgid "Looking for more features?"
|
660 |
+
msgstr "Ser du etter flere funksjoner?"
|
661 |
+
|
662 |
+
#: ../lib/yasr-settings-functions.php:1195
|
663 |
+
msgid "Upgrade to yasr pro!"
|
664 |
+
msgstr "Oppgrader til YASR pro!"
|
665 |
+
|
666 |
+
#: ../lib/yasr-settings-functions.php:1211
|
667 |
+
msgid "Unlimited ratings and votes"
|
668 |
+
msgstr "Ubegrenset antall brukervurderinger og stemmer"
|
669 |
+
|
670 |
+
#: ../lib/yasr-settings-functions.php:1217
|
671 |
+
msgid "Works with shortcodes"
|
672 |
+
msgstr "Fungerer med kortkoder"
|
673 |
+
|
674 |
+
#: ../lib/yasr-settings-functions.php:1223
|
675 |
+
msgid "Multi Set Support"
|
676 |
+
msgstr "Støtte for multisett"
|
677 |
+
|
678 |
+
#: ../lib/yasr-settings-functions.php:1228
|
679 |
+
msgid "Logs and stats for visitors votes"
|
680 |
+
msgstr "Logger og statistikker for besøkendes stemmer"
|
681 |
+
|
682 |
+
#: ../lib/yasr-settings-functions.php:1233
|
683 |
+
msgid "Localization (.po and .mo files included)"
|
684 |
+
msgstr "Lokalisering (.po- og .mo-filer inkludert)"
|
685 |
+
|
686 |
+
#: ../lib/yasr-settings-functions.php:1238
|
687 |
+
msgid "Rich Snippet Support"
|
688 |
+
msgstr "Støtte for rikt tekstutdrag"
|
689 |
+
|
690 |
+
#: ../lib/yasr-settings-functions.php:1243
|
691 |
+
msgid "Rankings for reviews, votes and users"
|
692 |
+
msgstr "Rangeringer for omtaler, stemmer og brukere"
|
693 |
+
|
694 |
+
#: ../lib/yasr-settings-functions.php:1248
|
695 |
+
msgid "Rankings Customization"
|
696 |
+
msgstr "Egendefinert rangering"
|
697 |
+
|
698 |
+
#: ../lib/yasr-settings-functions.php:1253
|
699 |
+
msgid "Stars Customization"
|
700 |
+
msgstr "Egendefinerte stjerner"
|
701 |
+
|
702 |
+
#: ../lib/yasr-settings-functions.php:1254
|
703 |
+
msgid "Size Only"
|
704 |
+
msgstr "Kun størrelse"
|
705 |
+
|
706 |
+
#: ../lib/yasr-settings-functions.php:1255
|
707 |
+
msgid ""
|
708 |
+
"Users can choose different ready to use sets or can upload their own images."
|
709 |
+
msgstr ""
|
710 |
+
"Brukere kan velge ulike sett som er klare for å brukes, eller de kan laste "
|
711 |
+
"opp sine egne bilder"
|
712 |
+
|
713 |
+
#: ../lib/yasr-settings-functions.php:1258
|
714 |
+
msgid "Visitors can vote on Multi Set"
|
715 |
+
msgstr "Besøkende kan stemme på multisett"
|
716 |
+
|
717 |
+
#: ../lib/yasr-settings-functions.php:1263
|
718 |
+
msgid "Users can review in comments"
|
719 |
+
msgstr "Brukere kan gi sin vurdering i kommentarfeltet"
|
720 |
+
|
721 |
+
#: ../lib/yasr-settings-functions.php:1274
|
722 |
+
msgid "Not avaible yet"
|
723 |
+
msgstr "Ikke tilgjengelig enda"
|
724 |
+
|
725 |
+
#: ../lib/yasr-settings-functions.php:1306
|
726 |
+
#: ../lib/yasr-settings-functions.php:1333
|
727 |
+
msgid "Follow YASR official site!"
|
728 |
+
msgstr "Følg YASRs offisielle side"
|
729 |
+
|
730 |
+
#: ../lib/yasr-settings-functions.php:1363
|
731 |
+
msgid "No previous Gd Star Rating installation was found"
|
732 |
+
msgstr "Ingen tidligere installasjon av Gd-stjernevurdering ble funnet"
|
733 |
+
|
734 |
+
#: ../lib/yasr-db-functions.php:280
|
735 |
+
msgid "No recenet votes yet"
|
736 |
+
msgstr "Ingen nylige vurderinger enda"
|
737 |
+
|
738 |
+
#: ../lib/yasr-db-functions.php:295 ../lib/yasr-ajax-functions.php:761
|
739 |
+
msgid "anonymous"
|
740 |
+
msgstr "anonym"
|
741 |
+
|
742 |
+
#: ../lib/yasr-db-functions.php:318 ../lib/yasr-ajax-functions.php:784
|
743 |
+
msgid "Ip address"
|
744 |
+
msgstr "IP-adresse"
|
745 |
+
|
746 |
+
#: ../lib/yasr-db-functions.php:359 ../lib/yasr-ajax-functions.php:825
|
747 |
+
msgid "Pages"
|
748 |
+
msgstr "Sider"
|
749 |
+
|
750 |
+
#: ../lib/yasr-functions.php:99 ../lib/yasr-functions.php:100
|
751 |
+
msgid "Yet Another Stars Rating: Settings"
|
752 |
+
msgstr "Yet Another Stars Rating: Innstillinger"
|
753 |
+
|
754 |
+
#: ../lib/yasr-functions.php:143
|
755 |
+
msgid "YASR"
|
756 |
+
msgstr "YASR"
|
757 |
+
|
758 |
+
#: ../lib/yasr-functions.php:144
|
759 |
+
msgid "Yet Another Stars Rating: Multiple set"
|
760 |
+
msgstr "Yet Another Stars Rating: Multisett"
|
761 |
+
|
762 |
+
#: ../lib/yasr-functions.php:150
|
763 |
+
msgid "Overall Rating"
|
764 |
+
msgstr "Helhetsvurdering"
|
765 |
+
|
766 |
+
#: ../lib/yasr-functions.php:160
|
767 |
+
msgid "You don't have enought privileges to insert Overall Rating"
|
768 |
+
msgstr "Du har ikke tillatelse til å legge inn helhetsvurdering"
|
769 |
+
|
770 |
+
#: ../lib/yasr-functions.php:170
|
771 |
+
msgid "You don't have enought privileges to insert Multi Set"
|
772 |
+
msgstr "Du har ikke tillatelse til å legge inn multisett"
|
773 |
+
|
774 |
+
#: ../lib/yasr-functions.php:310
|
775 |
+
msgid " reviewed by "
|
776 |
+
msgstr " ble vurdert av "
|
777 |
+
|
778 |
+
#: ../lib/yasr-functions.php:311
|
779 |
+
msgid " on "
|
780 |
+
msgstr " "
|
781 |
+
|
782 |
+
#: ../lib/yasr-functions.php:312
|
783 |
+
msgid " rated "
|
784 |
+
msgstr ", og fikk karakteren "
|
785 |
+
|
786 |
+
#: ../lib/yasr-functions.php:312
|
787 |
+
msgid " of"
|
788 |
+
msgstr " av"
|
789 |
+
|
790 |
+
#: ../lib/yasr-functions.php:359
|
791 |
+
msgid " written by "
|
792 |
+
msgstr " skrevet av"
|
793 |
+
|
794 |
+
#: ../lib/yasr-functions.php:361
|
795 |
+
msgid " average rating "
|
796 |
+
msgstr " vurdering"
|
797 |
+
|
798 |
+
#: ../lib/yasr-functions.php:362
|
799 |
+
msgid " user ratings"
|
800 |
+
msgstr " brukervurderinger"
|
801 |
+
|
802 |
+
#: ../lib/yasr-ajax-functions.php:96
|
803 |
+
msgid "You've rated it "
|
804 |
+
msgstr "Du ga karakteren"
|
805 |
+
|
806 |
+
#: ../lib/yasr-ajax-functions.php:100
|
807 |
+
msgid "You've reset the vote"
|
808 |
+
msgstr "Du har tilbakestilt vurderingen"
|
809 |
+
|
810 |
+
#: ../lib/yasr-ajax-functions.php:164
|
811 |
+
msgid ""
|
812 |
+
"There was an error while trying to insert the review type. Please report it"
|
813 |
+
msgstr ""
|
814 |
+
"En feil oppsto mens vi forsøkte å legge inn vurderingstypen. Vennligst "
|
815 |
+
"rapporter dette."
|
816 |
+
|
817 |
+
#: ../lib/yasr-ajax-functions.php:198
|
818 |
+
msgid "Choose a vote for each element"
|
819 |
+
msgstr "Velg en karakter for hvert element"
|
820 |
+
|
821 |
+
#: ../lib/yasr-ajax-functions.php:255 ../lib/yasr-ajax-functions.php:298
|
822 |
+
msgid "Remember to insert this shortcode"
|
823 |
+
msgstr "Husk å legge inn denne kodesnutten, "
|
824 |
+
|
825 |
+
#: ../lib/yasr-ajax-functions.php:257 ../lib/yasr-ajax-functions.php:300
|
826 |
+
msgid "where you want to display this multi set"
|
827 |
+
msgstr ", der hvor du ønsker at dette multisettet skal vises"
|
828 |
+
|
829 |
+
#: ../lib/yasr-ajax-functions.php:265
|
830 |
+
msgid "Choose a vote for every element"
|
831 |
+
msgstr "Velg en karakter for hvert element"
|
832 |
+
|
833 |
+
#: ../lib/yasr-ajax-functions.php:432
|
834 |
+
msgid "Main"
|
835 |
+
msgstr "Hoved"
|
836 |
+
|
837 |
+
#: ../lib/yasr-ajax-functions.php:433
|
838 |
+
msgid "Charts"
|
839 |
+
msgstr "Diagrammer"
|
840 |
+
|
841 |
+
#: ../lib/yasr-ajax-functions.php:435
|
842 |
+
msgid "Read the doc"
|
843 |
+
msgstr "Les dokumentet"
|
844 |
+
|
845 |
+
#: ../lib/yasr-ajax-functions.php:444
|
846 |
+
msgid "Overall Rating / Review"
|
847 |
+
msgstr "Helhetsvurdering / omtale"
|
848 |
+
|
849 |
+
#: ../lib/yasr-ajax-functions.php:446
|
850 |
+
msgid "Insert Overall Rating"
|
851 |
+
msgstr "Legg inn helhetsvurdering"
|
852 |
+
|
853 |
+
#: ../lib/yasr-ajax-functions.php:447
|
854 |
+
msgid "Insert Overall Rating / Review for this post"
|
855 |
+
msgstr "Legg inn helhetsvurdering/omtale for dette innlegget"
|
856 |
+
|
857 |
+
#: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
|
858 |
+
msgid "Choose Size"
|
859 |
+
msgstr "Velg størrelse"
|
860 |
+
|
861 |
+
#: ../lib/yasr-ajax-functions.php:464
|
862 |
+
msgid "Insert Visitor Votes"
|
863 |
+
msgstr "Legg inn besøkendes vurderinger"
|
864 |
+
|
865 |
+
#: ../lib/yasr-ajax-functions.php:465
|
866 |
+
msgid "Insert the ability for your visitor to vote"
|
867 |
+
msgstr "Legg inn muligheten for besøkende å foreta en vurdering"
|
868 |
+
|
869 |
+
#: ../lib/yasr-ajax-functions.php:482
|
870 |
+
msgid "If you want to insert a Multi Set, pick one:"
|
871 |
+
msgstr "Velg et multisett du ønsker å legge inn"
|
872 |
+
|
873 |
+
#: ../lib/yasr-ajax-functions.php:488
|
874 |
+
msgid "Choose wich set you want to insert."
|
875 |
+
msgstr "Velg hvilket multisett du vil legge inn."
|
876 |
+
|
877 |
+
#: ../lib/yasr-ajax-functions.php:496
|
878 |
+
msgid "Insert Multiset:"
|
879 |
+
msgstr "Lett inn multisett:"
|
880 |
+
|
881 |
+
#: ../lib/yasr-ajax-functions.php:499
|
882 |
+
msgid "Insert Multiple Set"
|
883 |
+
msgstr "Legg inn multisett"
|
884 |
+
|
885 |
+
#: ../lib/yasr-ajax-functions.php:500
|
886 |
+
msgid "Insert multiple set in this post ?"
|
887 |
+
msgstr "Legg inn multisett i dette innlegget?"
|
888 |
+
|
889 |
+
#: ../lib/yasr-ajax-functions.php:515
|
890 |
+
msgid "Ranking reviews"
|
891 |
+
msgstr "Rangeringsvurdering"
|
892 |
+
|
893 |
+
#: ../lib/yasr-ajax-functions.php:516
|
894 |
+
msgid "Insert Ranking reviews"
|
895 |
+
msgstr "Legg inn rangeringsvurderinger"
|
896 |
+
|
897 |
+
#: ../lib/yasr-ajax-functions.php:517
|
898 |
+
msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
|
899 |
+
msgstr "Legg inn de 10 høyest rangerte for kodesnutten [yasr_overall_rating]"
|
900 |
+
|
901 |
+
#: ../lib/yasr-ajax-functions.php:521
|
902 |
+
msgid "Users' ranking"
|
903 |
+
msgstr "Brukernes rangering"
|
904 |
+
|
905 |
+
#: ../lib/yasr-ajax-functions.php:522
|
906 |
+
msgid "Insert Users ranking"
|
907 |
+
msgstr "Legg inn brukernes rangering"
|
908 |
+
|
909 |
+
#: ../lib/yasr-ajax-functions.php:523
|
910 |
+
msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
|
911 |
+
msgstr "Legg inn de 10 høyest rangerte for kodesnutten [yasr_visitor_votes] "
|
912 |
+
|
913 |
+
#: ../lib/yasr-ajax-functions.php:527
|
914 |
+
msgid "Most active reviewers"
|
915 |
+
msgstr "Mest aktivere anmeldere"
|
916 |
+
|
917 |
+
#: ../lib/yasr-ajax-functions.php:528
|
918 |
+
msgid "Insert Most Active Reviewers"
|
919 |
+
msgstr "Legg inn mest aktive anmeldere"
|
920 |
+
|
921 |
+
#: ../lib/yasr-ajax-functions.php:529
|
922 |
+
msgid "Insert Top 5 active reviewers"
|
923 |
+
msgstr "Legg inn de 5 mest aktive anmelderne"
|
924 |
+
|
925 |
+
#: ../lib/yasr-ajax-functions.php:533
|
926 |
+
msgid "Most Active Users"
|
927 |
+
msgstr "Mest aktive brukere"
|
928 |
+
|
929 |
+
#: ../lib/yasr-ajax-functions.php:534
|
930 |
+
msgid "Insert Most Active Users"
|
931 |
+
msgstr "Legg inn mest aktive brukere"
|
932 |
+
|
933 |
+
#: ../lib/yasr-ajax-functions.php:535
|
934 |
+
msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
|
935 |
+
msgstr ""
|
936 |
+
"Legg inn kodesnutten [yasr_visitor_votes] for de 10 mest aktive anmelderne "
|
937 |
+
|
938 |
+
#: ../lib/yasr-ajax-functions.php:606
|
939 |
+
msgid "Reviews and Visitor Votes have been successfull imported."
|
940 |
+
msgstr "Omtaler og besøkendes vurderinger har blitt importert."
|
941 |
+
|
942 |
+
#: ../lib/yasr-ajax-functions.php:612
|
943 |
+
msgid ""
|
944 |
+
"Step2: I will check if you used Multiple Sets and if so I will import them. "
|
945 |
+
"THIS MAY TAKE A WHILE!"
|
946 |
+
msgstr ""
|
947 |
+
"Steg 2: Jeg vil sjekke om du brukte multisett, og jeg vil i så fall "
|
948 |
+
"importere dem. Dette kan ta litt tid."
|
949 |
+
|
950 |
+
#: ../lib/yasr-ajax-functions.php:614
|
951 |
+
msgid "Proceed Step 2"
|
952 |
+
msgstr "Fortsett til steg 2"
|
953 |
+
|
954 |
+
#: ../lib/yasr-ajax-functions.php:621
|
955 |
+
msgid "Something goes wrong! Refresh the page and try again!"
|
956 |
+
msgstr "Noe går galt. Oppdater siden (F5) og forsøk igjen."
|
957 |
+
|
958 |
+
#: ../lib/yasr-ajax-functions.php:650
|
959 |
+
msgid "I've found Multiple Set! Importing..."
|
960 |
+
msgstr "Jeg fant multisett. Importerer...."
|
961 |
+
|
962 |
+
#: ../lib/yasr-ajax-functions.php:659
|
963 |
+
msgid "Multi Set's name has been successfull imported."
|
964 |
+
msgstr "Multisettets navn har blitt importert."
|
965 |
+
|
966 |
+
#: ../lib/yasr-ajax-functions.php:661
|
967 |
+
msgid "Now I'm going to import Multi Set data"
|
968 |
+
msgstr "Nå skal jeg importere multisettets data"
|
969 |
+
|
970 |
+
#: ../lib/yasr-ajax-functions.php:672
|
971 |
+
msgid "All votes has been successfull imported."
|
972 |
+
msgstr "Alle vurderinger har blitt importert."
|
973 |
+
|
974 |
+
#: ../lib/yasr-ajax-functions.php:674
|
975 |
+
msgid "Done"
|
976 |
+
msgstr "Fullført"
|
977 |
+
|
978 |
+
#: ../lib/yasr-ajax-functions.php:679
|
979 |
+
msgid "I've found Multiple Set's votes but I couldn't insert into db"
|
980 |
+
msgstr ""
|
981 |
+
"Jeg har funnet vurderinger for multisettet, men kunne ikke legge dem inn i "
|
982 |
+
"databasen"
|
983 |
+
|
984 |
+
#: ../lib/yasr-ajax-functions.php:687
|
985 |
+
msgid "I've found Multi Set but with no data"
|
986 |
+
msgstr "Jeg har funnet multisett, men de har ingen data"
|
987 |
+
|
988 |
+
#: ../lib/yasr-ajax-functions.php:696
|
989 |
+
msgid "I've found Multi Sets names but I couldn't insert into db"
|
990 |
+
msgstr ""
|
991 |
+
"Jeg har funnet multisett-navn, men jeg kunne ikke legge dem inn i databasen"
|
992 |
+
|
993 |
+
#: ../lib/yasr-ajax-functions.php:704
|
994 |
+
msgid "Multisets were not found. Imported is done!"
|
995 |
+
msgstr "Multisett ble ikke funnet. Importeringen har blitt fullført."
|
996 |
+
|
997 |
+
#: ../lib/yasr-ajax-functions.php:748
|
998 |
+
msgid "No Recenet votes yet"
|
999 |
+
msgstr "Ingen nylige vurderinger enda"
|
1000 |
+
|
1001 |
+
#: ../lib/yasr-ajax-functions.php:915 ../lib/yasr-ajax-functions.php:1057
|
1002 |
+
msgid "Error: you can't vote 0"
|
1003 |
+
msgstr "Feil. Du kan ikke gi karakteren 0."
|
1004 |
+
|
1005 |
+
#: ../lib/yasr-ajax-functions.php:1011 ../lib/yasr-ajax-functions.php:1019
|
1006 |
+
msgid "Average rating"
|
1007 |
+
msgstr "Gjennomsnittlig vurdering:"
|
1008 |
+
|
1009 |
+
#: ../lib/yasr-ajax-functions.php:1012 ../lib/yasr-ajax-functions.php:1020
|
1010 |
+
msgid "Vote Saved"
|
1011 |
+
msgstr "Vurdering lagret"
|
1012 |
+
|
1013 |
+
#: ../lib/yasr-ajax-functions.php:1149
|
1014 |
+
msgid "Vote updated"
|
1015 |
+
msgstr "Vurdering oppdatert"
|
1016 |
+
|
1017 |
+
#: ../lib/yasr-ajax-functions.php:1220
|
1018 |
+
msgid "Average "
|
1019 |
+
msgstr "Gjennomsnitt:"
|
1020 |
+
|
1021 |
+
#: ../lib/yasr-ajax-functions.php:1231
|
1022 |
+
msgid "You've already voted this article"
|
1023 |
+
msgstr "Du har allerede gitt din vurdering."
|
1024 |
+
|
1025 |
+
#: ../lib/yasr-ajax-functions.php:1356
|
1026 |
+
msgid "stars"
|
1027 |
+
msgstr "stjerner"
|
1028 |
+
|
1029 |
+
#~ msgid "'bad', 'poor', 'ok', 'good', 'super'"
|
1030 |
+
#~ msgstr "'Dårlig', 'Ikke bra', 'OK', 'Bra', 'Helt super'"
|
languages/yasr-pt_BR.mo
ADDED
Binary file
|
languages/yasr-pt_BR.po
ADDED
@@ -0,0 +1,1023 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YASR lenguages\n"
|
4 |
+
"POT-Creation-Date: 2015-03-13 16:34+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-03-19 10:18+0100\n"
|
6 |
+
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.5.4\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
15 |
+
"Language: pt_BR\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
+
"X-Poedit-SearchPath-1: ../lib\n"
|
18 |
+
|
19 |
+
#: ../yasr-metabox-top-right.php:65 ../yasr-metabox-top-right.php:99
|
20 |
+
msgid "Rate this article / item"
|
21 |
+
msgstr "Classifique este artigo / item"
|
22 |
+
|
23 |
+
#: ../yasr-metabox-top-right.php:71 ../lib/yasr-shortcode-functions.php:136
|
24 |
+
msgid "Loading, please wait"
|
25 |
+
msgstr "Carregando, por favor aguarde"
|
26 |
+
|
27 |
+
#: ../yasr-metabox-top-right.php:147
|
28 |
+
msgid "Save Vote"
|
29 |
+
msgstr "Salvar Voto"
|
30 |
+
|
31 |
+
#: ../yasr-metabox-top-right.php:164
|
32 |
+
msgid "This review is about a..."
|
33 |
+
msgstr "Esta avaliação é sobre..."
|
34 |
+
|
35 |
+
#: ../yasr-metabox-top-right.php:193 ../yasr-metabox-multiple-rating.php:46
|
36 |
+
#: ../lib/yasr-settings-functions.php:487
|
37 |
+
msgid "Select"
|
38 |
+
msgstr "Selecionar"
|
39 |
+
|
40 |
+
#: ../yasr-metabox-top-right.php:211
|
41 |
+
msgid ""
|
42 |
+
"Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
|
43 |
+
"where you want to display this rating"
|
44 |
+
msgstr ""
|
45 |
+
"Lembre-se de inserir este shortcode <strong>[yasr_overall_rating]</strong> "
|
46 |
+
"onde você deseja exibir essa classificação"
|
47 |
+
|
48 |
+
#: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:111
|
49 |
+
#: ../lib/yasr-ajax-functions.php:44 ../lib/yasr-ajax-functions.php:187
|
50 |
+
#: ../lib/yasr-ajax-functions.php:332 ../lib/yasr-ajax-functions.php:736
|
51 |
+
msgid "You do not have sufficient permissions to access this page."
|
52 |
+
msgstr "Você não tem permissões suficientes para acessar esta página."
|
53 |
+
|
54 |
+
#: ../yasr-settings-page.php:33
|
55 |
+
msgid "Settings"
|
56 |
+
msgstr "Configurações"
|
57 |
+
|
58 |
+
#: ../yasr-settings-page.php:76
|
59 |
+
msgid "General Settings"
|
60 |
+
msgstr "Configurações Gerais"
|
61 |
+
|
62 |
+
#: ../yasr-settings-page.php:77
|
63 |
+
msgid "Multi Sets"
|
64 |
+
msgstr "Multi Sets"
|
65 |
+
|
66 |
+
#: ../yasr-settings-page.php:78
|
67 |
+
msgid "Styles"
|
68 |
+
msgstr "Estilos"
|
69 |
+
|
70 |
+
#: ../yasr-settings-page.php:79
|
71 |
+
msgid "Pro Features!"
|
72 |
+
msgstr "Recursos PRO!"
|
73 |
+
|
74 |
+
#: ../yasr-settings-page.php:96 ../yasr-settings-page.php:276
|
75 |
+
msgid "Save"
|
76 |
+
msgstr "Salvar"
|
77 |
+
|
78 |
+
#: ../yasr-settings-page.php:116
|
79 |
+
msgid "Import Gd Star Rating"
|
80 |
+
msgstr "Importar Gd Star Rating"
|
81 |
+
|
82 |
+
#: ../yasr-settings-page.php:117
|
83 |
+
msgid "I've found a previous installation of Gd Star Rating."
|
84 |
+
msgstr "Eu encontrei uma instalação anterior do Gd Star Rating."
|
85 |
+
|
86 |
+
#: ../yasr-settings-page.php:117
|
87 |
+
msgid "Do you want proceed to import data?"
|
88 |
+
msgstr "Você quer continuar a importar os dados?"
|
89 |
+
|
90 |
+
#: ../yasr-settings-page.php:119
|
91 |
+
msgid "Yes, Begin Import"
|
92 |
+
msgstr "Sim, começar a importação"
|
93 |
+
|
94 |
+
#: ../yasr-settings-page.php:123
|
95 |
+
msgid "Click on Proceed to import Gd Star Rating data."
|
96 |
+
msgstr "Clique em Continuar para importar dados de Gd Star Rating."
|
97 |
+
|
98 |
+
#: ../yasr-settings-page.php:126 ../yasr-settings-page.php:159
|
99 |
+
msgid "Proceed"
|
100 |
+
msgstr "Continuar"
|
101 |
+
|
102 |
+
#: ../yasr-settings-page.php:148
|
103 |
+
msgid "Manage GD Star Data"
|
104 |
+
msgstr "Gerenciar dados de GD Star"
|
105 |
+
|
106 |
+
#: ../yasr-settings-page.php:149
|
107 |
+
msgid "Gd Star Rating has been already imported."
|
108 |
+
msgstr "GD Star Rating já foi importado."
|
109 |
+
|
110 |
+
#: ../yasr-settings-page.php:150
|
111 |
+
msgid "If you wish you can import it again, but"
|
112 |
+
msgstr "Se desejar, você pode importá-lo novamente, mas"
|
113 |
+
|
114 |
+
#: ../yasr-settings-page.php:150
|
115 |
+
msgid "you will lose all data you've collect since the import!"
|
116 |
+
msgstr "você vai perder todos os dados já foram coletados desde a importação!"
|
117 |
+
|
118 |
+
#: ../yasr-settings-page.php:152
|
119 |
+
msgid "Ok, Import Again"
|
120 |
+
msgstr "Ok, importar novamente"
|
121 |
+
|
122 |
+
#: ../yasr-settings-page.php:156
|
123 |
+
msgid ""
|
124 |
+
"Click on Proceed to import again Gd Star Rating data. This may take a while!"
|
125 |
+
msgstr ""
|
126 |
+
"Clique em Continuar para importar novamente os dados do Gd Star Rating. Isto "
|
127 |
+
"pode demorar um pouco!"
|
128 |
+
|
129 |
+
#: ../yasr-settings-page.php:196
|
130 |
+
msgid "Manage Multi Set"
|
131 |
+
msgstr "Gerenciar Mult Set"
|
132 |
+
|
133 |
+
#: ../yasr-settings-page.php:200
|
134 |
+
msgid "What is a Multi Set?"
|
135 |
+
msgstr "O que é um Multi Set?"
|
136 |
+
|
137 |
+
#: ../yasr-settings-page.php:204
|
138 |
+
msgid ""
|
139 |
+
"Multi Set allows you to insert a rate for each aspect about the product / "
|
140 |
+
"local business / whetever you're reviewing, example in the image below."
|
141 |
+
msgstr ""
|
142 |
+
"Multi Set permite que você insira uma taxa por cada aspecto sobre o "
|
143 |
+
"produto / negócio local / qualquer coisa que está a analisar, exemplo na "
|
144 |
+
"imagem abaixo."
|
145 |
+
|
146 |
+
#: ../yasr-settings-page.php:208
|
147 |
+
msgid ""
|
148 |
+
"You can create up to 99 different Multi Set and each one can contain up to 9 "
|
149 |
+
"different fields. Once you've saved it, you can insert the rates while "
|
150 |
+
"typing your article in the box below the editor, as you can see in this "
|
151 |
+
"image (click to see it larger)"
|
152 |
+
msgstr ""
|
153 |
+
"Você pode criar até 99 diferentes Multi Sets e cada um pode conter até 9 "
|
154 |
+
"diferentes campos. Uma vez que você salvou ele, você pode inserir as taxas "
|
155 |
+
"enquanto estiver digitando seu artigo na caixa abaixo o editor, que você "
|
156 |
+
"pode ver nesta imagem (clique para vê-la maior)"
|
157 |
+
|
158 |
+
#: ../yasr-settings-page.php:212
|
159 |
+
msgid ""
|
160 |
+
"In order to insert your Multi Sets into a post or page, you can either past "
|
161 |
+
"the short code that will appear at the bottom of the box or just click on "
|
162 |
+
"the star in the graphic editor and select \"Insert Multi Set\"."
|
163 |
+
msgstr ""
|
164 |
+
"Para inserir seu Multi Set em um post ou página, você pode colocar o short "
|
165 |
+
"code que irá aparecer na parte inferior da caixa ou apenas clique na estrela "
|
166 |
+
"no editor gráfico e selecione \"Inserir Multi Set\"."
|
167 |
+
|
168 |
+
#: ../yasr-settings-page.php:218
|
169 |
+
msgid "Close this message"
|
170 |
+
msgstr "Fechar esta mensagem"
|
171 |
+
|
172 |
+
#: ../yasr-settings-page.php:246 ../lib/yasr-settings-functions.php:1276
|
173 |
+
#: ../lib/yasr-settings-functions.php:1302
|
174 |
+
msgid "Donations"
|
175 |
+
msgstr "Doações"
|
176 |
+
|
177 |
+
#: ../yasr-settings-page.php:248 ../lib/yasr-settings-functions.php:1278
|
178 |
+
#: ../lib/yasr-settings-functions.php:1304
|
179 |
+
msgid ""
|
180 |
+
"If you have found this plugin useful, please consider making a donation to "
|
181 |
+
"help support future development. Your support will be much appreciated. "
|
182 |
+
msgstr ""
|
183 |
+
"Se você achou este plugin útil, por favor considere fazer uma pequena doação "
|
184 |
+
"para ajudar a contribuir para o meu tempo investido e para promover o futuro "
|
185 |
+
"desenvolvimento. Sua ajuda será muito apreciada."
|
186 |
+
|
187 |
+
#: ../yasr-settings-page.php:250 ../lib/yasr-settings-functions.php:1280
|
188 |
+
#: ../lib/yasr-settings-functions.php:1306
|
189 |
+
msgid "Thank you!"
|
190 |
+
msgstr "Obrigado!"
|
191 |
+
|
192 |
+
#: ../yasr-metabox-multiple-rating.php:35
|
193 |
+
msgid "Choose wich set you want to use"
|
194 |
+
msgstr "Escolha o conjunto que você deseja usar"
|
195 |
+
|
196 |
+
#: ../lib/yasr-shortcode-functions.php:185
|
197 |
+
#: ../lib/yasr-shortcode-functions.php:207
|
198 |
+
msgid "You've already voted this article with"
|
199 |
+
msgstr "Você já votou neste artigo com"
|
200 |
+
|
201 |
+
#: ../lib/yasr-shortcode-functions.php:218
|
202 |
+
msgid "You must sign to vote"
|
203 |
+
msgstr "Você precisa estar logado para votar"
|
204 |
+
|
205 |
+
#: ../lib/yasr-shortcode-functions.php:243 ../lib/yasr-ajax-functions.php:1011
|
206 |
+
#: ../lib/yasr-ajax-functions.php:1019 ../lib/yasr-ajax-functions.php:1148
|
207 |
+
#: ../lib/yasr-ajax-functions.php:1220
|
208 |
+
msgid "Total: "
|
209 |
+
msgstr "Total: "
|
210 |
+
|
211 |
+
#: ../lib/yasr-shortcode-functions.php:243
|
212 |
+
msgid "Average: "
|
213 |
+
msgstr "Média: "
|
214 |
+
|
215 |
+
#: ../lib/yasr-shortcode-functions.php:263
|
216 |
+
msgid "bad, poor, ok, good, super"
|
217 |
+
msgstr "Detestei, Não Gostei, Gostei, Gostei Muito, Adorei"
|
218 |
+
|
219 |
+
#: ../lib/yasr-shortcode-functions.php:411
|
220 |
+
msgid "Rating"
|
221 |
+
msgstr "Avaliação"
|
222 |
+
|
223 |
+
#: ../lib/yasr-shortcode-functions.php:425
|
224 |
+
msgid "You don't have any votes stored"
|
225 |
+
msgstr "Você não tem nenhum voto armazenado"
|
226 |
+
|
227 |
+
#: ../lib/yasr-shortcode-functions.php:461
|
228 |
+
#: ../lib/yasr-shortcode-functions.php:499
|
229 |
+
msgid "Post / Page"
|
230 |
+
msgstr "Post / Página"
|
231 |
+
|
232 |
+
#: ../lib/yasr-shortcode-functions.php:462
|
233 |
+
#: ../lib/yasr-shortcode-functions.php:500
|
234 |
+
msgid "Order By"
|
235 |
+
msgstr "Ordenar Por"
|
236 |
+
|
237 |
+
#: ../lib/yasr-shortcode-functions.php:462
|
238 |
+
#: ../lib/yasr-shortcode-functions.php:500
|
239 |
+
msgid "Most Rated"
|
240 |
+
msgstr "Mais Votados"
|
241 |
+
|
242 |
+
#: ../lib/yasr-shortcode-functions.php:462
|
243 |
+
#: ../lib/yasr-shortcode-functions.php:500
|
244 |
+
msgid "Highest Rated"
|
245 |
+
msgstr "Mais Bem Classificados"
|
246 |
+
|
247 |
+
#: ../lib/yasr-shortcode-functions.php:479
|
248 |
+
#: ../lib/yasr-shortcode-functions.php:514
|
249 |
+
msgid "Total:"
|
250 |
+
msgstr "Total:"
|
251 |
+
|
252 |
+
#: ../lib/yasr-shortcode-functions.php:479
|
253 |
+
#: ../lib/yasr-shortcode-functions.php:514
|
254 |
+
msgid "Average"
|
255 |
+
msgstr "Média"
|
256 |
+
|
257 |
+
#: ../lib/yasr-shortcode-functions.php:491
|
258 |
+
msgid "You've not enough data"
|
259 |
+
msgstr "Você não tem dados suficiente"
|
260 |
+
|
261 |
+
#: ../lib/yasr-shortcode-functions.php:526
|
262 |
+
msgid "You've not enought data"
|
263 |
+
msgstr "Você não tem dados suficiente"
|
264 |
+
|
265 |
+
#: ../lib/yasr-shortcode-functions.php:611
|
266 |
+
msgid ""
|
267 |
+
"Problem while retrieving the top 5 most active reviewers. Did you publish "
|
268 |
+
"any review?"
|
269 |
+
msgstr ""
|
270 |
+
"Problema ao recuperar os revisores mais ativos do top 5. Você publicou "
|
271 |
+
"alguma revisão?"
|
272 |
+
|
273 |
+
#: ../lib/yasr-shortcode-functions.php:679
|
274 |
+
msgid ""
|
275 |
+
"Problem while retrieving the top 10 active users chart. Are you sure you "
|
276 |
+
"have votes to show?"
|
277 |
+
msgstr ""
|
278 |
+
"Problema ao recuperar o gráfico de usuários ativos do top 10. Tem certeza de "
|
279 |
+
"que você tem votos para mostrar?"
|
280 |
+
|
281 |
+
#: ../lib/yasr-settings-functions.php:49
|
282 |
+
msgid "General settings"
|
283 |
+
msgstr "Configurações Gerais"
|
284 |
+
|
285 |
+
#: ../lib/yasr-settings-functions.php:50
|
286 |
+
msgid "Auto insert options"
|
287 |
+
msgstr "Opções do Auto-Inserir"
|
288 |
+
|
289 |
+
#: ../lib/yasr-settings-functions.php:51
|
290 |
+
msgid "Show \"Overall Rating\" in Archive Page?"
|
291 |
+
msgstr "Mostrar \"Classificação Geral\" na página de arquivo?"
|
292 |
+
|
293 |
+
#: ../lib/yasr-settings-functions.php:52
|
294 |
+
msgid "Show \"Visitor Votes\" in Archive Page?"
|
295 |
+
msgstr "Mostrar \"Votos de Visitantes\" na página de arquivo?"
|
296 |
+
|
297 |
+
#: ../lib/yasr-settings-functions.php:53
|
298 |
+
msgid "Insert custom text to show before / after stars"
|
299 |
+
msgstr "Inserir texto personalizado para mostrar antes / depois das estrelas"
|
300 |
+
|
301 |
+
#: ../lib/yasr-settings-functions.php:54
|
302 |
+
msgid "Do you want show stats for visitors votes?"
|
303 |
+
msgstr "Você quer mostrar estatísticas para os votos de visitantes?"
|
304 |
+
|
305 |
+
#: ../lib/yasr-settings-functions.php:55
|
306 |
+
msgid "Which color scheme do you want to use?"
|
307 |
+
msgstr "Qual esquema de cor você quer usar?"
|
308 |
+
|
309 |
+
#: ../lib/yasr-settings-functions.php:56
|
310 |
+
msgid "Allow only logged in user to vote?"
|
311 |
+
msgstr "Permitir que somente o usuário logado vote?"
|
312 |
+
|
313 |
+
#: ../lib/yasr-settings-functions.php:57
|
314 |
+
msgid "Which rich snippets do you want to use?"
|
315 |
+
msgstr "Quais rich snippets você quer usar?"
|
316 |
+
|
317 |
+
#: ../lib/yasr-settings-functions.php:58
|
318 |
+
msgid "How do you want to rate \"Overall Rating\"?"
|
319 |
+
msgstr "Como quer taxar a \"Classificação Geral\"?"
|
320 |
+
|
321 |
+
#: ../lib/yasr-settings-functions.php:72
|
322 |
+
msgid "Use Auto Insert?"
|
323 |
+
msgstr "Usar Auto-Inserir?"
|
324 |
+
|
325 |
+
#: ../lib/yasr-settings-functions.php:75
|
326 |
+
#: ../lib/yasr-settings-functions.php:144
|
327 |
+
#: ../lib/yasr-settings-functions.php:162
|
328 |
+
#: ../lib/yasr-settings-functions.php:204
|
329 |
+
#: ../lib/yasr-settings-functions.php:230
|
330 |
+
#: ../lib/yasr-settings-functions.php:262
|
331 |
+
#: ../lib/yasr-settings-functions.php:297
|
332 |
+
msgid "Yes"
|
333 |
+
msgstr "Sim"
|
334 |
+
|
335 |
+
#: ../lib/yasr-settings-functions.php:89
|
336 |
+
#: ../lib/yasr-settings-functions.php:149
|
337 |
+
#: ../lib/yasr-settings-functions.php:167
|
338 |
+
#: ../lib/yasr-settings-functions.php:209
|
339 |
+
#: ../lib/yasr-settings-functions.php:235
|
340 |
+
#: ../lib/yasr-settings-functions.php:267
|
341 |
+
#: ../lib/yasr-settings-functions.php:302
|
342 |
+
msgid "No"
|
343 |
+
msgstr "Não"
|
344 |
+
|
345 |
+
#: ../lib/yasr-settings-functions.php:95
|
346 |
+
msgid "What?"
|
347 |
+
msgstr "O quê?"
|
348 |
+
|
349 |
+
#: ../lib/yasr-settings-functions.php:98
|
350 |
+
msgid "Overall Rating / Author Rating"
|
351 |
+
msgstr "Classificação Geral / Classificação por Autor"
|
352 |
+
|
353 |
+
#: ../lib/yasr-settings-functions.php:102 ../lib/yasr-ajax-functions.php:462
|
354 |
+
msgid "Visitor Votes"
|
355 |
+
msgstr "Votos de Visitantes"
|
356 |
+
|
357 |
+
#: ../lib/yasr-settings-functions.php:106
|
358 |
+
msgid "Both"
|
359 |
+
msgstr "Ambos"
|
360 |
+
|
361 |
+
#: ../lib/yasr-settings-functions.php:110
|
362 |
+
msgid "Where?"
|
363 |
+
msgstr "Onde?"
|
364 |
+
|
365 |
+
#: ../lib/yasr-settings-functions.php:113
|
366 |
+
msgid "Before the post"
|
367 |
+
msgstr "Antes do post"
|
368 |
+
|
369 |
+
#: ../lib/yasr-settings-functions.php:117
|
370 |
+
msgid "After the post"
|
371 |
+
msgstr "Depois do post"
|
372 |
+
|
373 |
+
#: ../lib/yasr-settings-functions.php:122
|
374 |
+
msgid "Size"
|
375 |
+
msgstr "Tamanho"
|
376 |
+
|
377 |
+
#: ../lib/yasr-settings-functions.php:126 ../lib/yasr-ajax-functions.php:452
|
378 |
+
#: ../lib/yasr-ajax-functions.php:470
|
379 |
+
msgid "Small"
|
380 |
+
msgstr "Pequeno"
|
381 |
+
|
382 |
+
#: ../lib/yasr-settings-functions.php:131 ../lib/yasr-ajax-functions.php:453
|
383 |
+
#: ../lib/yasr-ajax-functions.php:471
|
384 |
+
msgid "Medium"
|
385 |
+
msgstr "Médio"
|
386 |
+
|
387 |
+
#: ../lib/yasr-settings-functions.php:136 ../lib/yasr-ajax-functions.php:454
|
388 |
+
#: ../lib/yasr-ajax-functions.php:472
|
389 |
+
msgid "Large"
|
390 |
+
msgstr "Grande"
|
391 |
+
|
392 |
+
#: ../lib/yasr-settings-functions.php:141
|
393 |
+
msgid "Exclude Pages?"
|
394 |
+
msgstr "Excluir Páginas?"
|
395 |
+
|
396 |
+
#: ../lib/yasr-settings-functions.php:159
|
397 |
+
msgid "Use only in custom post types?"
|
398 |
+
msgstr "Usar somente em posts do tipo personalizado?"
|
399 |
+
|
400 |
+
#: ../lib/yasr-settings-functions.php:171
|
401 |
+
msgid "You see this because you use custom post types."
|
402 |
+
msgstr "Você vê isso porque você usa posts do tipo personalizado."
|
403 |
+
|
404 |
+
#: ../lib/yasr-settings-functions.php:173
|
405 |
+
msgid "If you want to use auto insert only in custom post types, choose Yes"
|
406 |
+
msgstr ""
|
407 |
+
"Se você quiser usar auto-inserir apenas em posts do tipo personalizado, "
|
408 |
+
"escolha Sim"
|
409 |
+
|
410 |
+
#: ../lib/yasr-settings-functions.php:213
|
411 |
+
msgid ""
|
412 |
+
"If you enable this, \"Overall Rating\" will be showed not only in the single "
|
413 |
+
"article or page, but also in pages like Home Page, category pages or "
|
414 |
+
"archives."
|
415 |
+
msgstr ""
|
416 |
+
"Se você ativar isso, \"Classificação Geral\" serão mostrados não somente no "
|
417 |
+
"artigo ou página, mas também em páginas como Página Inicial, páginas de "
|
418 |
+
"categorias ou arquivos."
|
419 |
+
|
420 |
+
#: ../lib/yasr-settings-functions.php:239
|
421 |
+
msgid ""
|
422 |
+
"If you enable this, \"Visitor Votes\" will be showed not only in the single "
|
423 |
+
"article or page, but also in pages like Home Page, category pages or "
|
424 |
+
"archives."
|
425 |
+
msgstr ""
|
426 |
+
"Se você ativar isso, \"Votos de visitante\" serão mostrados não somente no "
|
427 |
+
"artigo ou página, mas também em páginas como Página Inicial, páginas de "
|
428 |
+
"categorias ou arquivos."
|
429 |
+
|
430 |
+
#: ../lib/yasr-settings-functions.php:272
|
431 |
+
msgid "Custom text to display before Overall Rating"
|
432 |
+
msgstr "Texto personalizado para exibir antes da Classificação Geral"
|
433 |
+
|
434 |
+
#: ../lib/yasr-settings-functions.php:277
|
435 |
+
msgid "Custom text to display before Visitor Rating"
|
436 |
+
msgstr "Texto personalizado para exibir antes de um voto de visitante"
|
437 |
+
|
438 |
+
#: ../lib/yasr-settings-functions.php:282
|
439 |
+
msgid "Custom text to display when a non logged user has already rated"
|
440 |
+
msgstr ""
|
441 |
+
"Texto personalizado para exibir quando um usuário não conectado já tiver "
|
442 |
+
"votado"
|
443 |
+
|
444 |
+
#: ../lib/yasr-settings-functions.php:320
|
445 |
+
msgid "Light"
|
446 |
+
msgstr "Claro"
|
447 |
+
|
448 |
+
#: ../lib/yasr-settings-functions.php:325
|
449 |
+
msgid "Dark"
|
450 |
+
msgstr "Escuro"
|
451 |
+
|
452 |
+
#: ../lib/yasr-settings-functions.php:330
|
453 |
+
msgid "Preview"
|
454 |
+
msgstr "Pré Visualização"
|
455 |
+
|
456 |
+
#: ../lib/yasr-settings-functions.php:335
|
457 |
+
msgid "Light theme"
|
458 |
+
msgstr "Tema claro"
|
459 |
+
|
460 |
+
#: ../lib/yasr-settings-functions.php:340
|
461 |
+
msgid "Dark Theme"
|
462 |
+
msgstr "Tema escuro"
|
463 |
+
|
464 |
+
#: ../lib/yasr-settings-functions.php:358
|
465 |
+
msgid "Allow only logged-in users"
|
466 |
+
msgstr "Permitir apenas usuários logados"
|
467 |
+
|
468 |
+
#: ../lib/yasr-settings-functions.php:362
|
469 |
+
msgid "Allow everybody (logged in and anonymous)"
|
470 |
+
msgstr "Permitir para todos (logados e anônimos)"
|
471 |
+
|
472 |
+
#: ../lib/yasr-settings-functions.php:379
|
473 |
+
msgid "Review Rating"
|
474 |
+
msgstr "Nota da Classificação"
|
475 |
+
|
476 |
+
#: ../lib/yasr-settings-functions.php:383
|
477 |
+
msgid "Aggregate Rating"
|
478 |
+
msgstr "Classificação Agregada"
|
479 |
+
|
480 |
+
#: ../lib/yasr-settings-functions.php:388
|
481 |
+
msgid "What is this?"
|
482 |
+
msgstr "O que é isso?"
|
483 |
+
|
484 |
+
#: ../lib/yasr-settings-functions.php:393
|
485 |
+
msgid ""
|
486 |
+
"If you select \"Review Rating\", your site will be indexed from search "
|
487 |
+
"engines like this: "
|
488 |
+
msgstr ""
|
489 |
+
"Se você selecionar \"Nota da Classificação\", seu site será indexado assim "
|
490 |
+
"por mecanismos de busca: "
|
491 |
+
|
492 |
+
#: ../lib/yasr-settings-functions.php:398
|
493 |
+
msgid ""
|
494 |
+
"If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
|
495 |
+
"this"
|
496 |
+
msgstr ""
|
497 |
+
"Se, em vez disso, você escolhe \"Classificação Agregada\", seu site será "
|
498 |
+
"indexado assim"
|
499 |
+
|
500 |
+
#: ../lib/yasr-settings-functions.php:416
|
501 |
+
msgid "Stars"
|
502 |
+
msgstr "Estrelas"
|
503 |
+
|
504 |
+
#: ../lib/yasr-settings-functions.php:420
|
505 |
+
msgid "Numbers"
|
506 |
+
msgstr "Números"
|
507 |
+
|
508 |
+
#: ../lib/yasr-settings-functions.php:432
|
509 |
+
msgid "Add New Multiple Set"
|
510 |
+
msgstr "Adicionar Novo Multi Set"
|
511 |
+
|
512 |
+
#: ../lib/yasr-settings-functions.php:433
|
513 |
+
msgid ""
|
514 |
+
"Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
|
515 |
+
"characters"
|
516 |
+
msgstr ""
|
517 |
+
"Nome, Elemento#1 e Elemento#2 DEVEM ser preenchidos e devem ter pelo menos 3 "
|
518 |
+
"caracteres"
|
519 |
+
|
520 |
+
#: ../lib/yasr-settings-functions.php:436
|
521 |
+
msgid "Name"
|
522 |
+
msgstr "Nome"
|
523 |
+
|
524 |
+
#: ../lib/yasr-settings-functions.php:441
|
525 |
+
msgid "You can insert up to nine elements"
|
526 |
+
msgstr "Você pode inserir até nove elementos"
|
527 |
+
|
528 |
+
#: ../lib/yasr-settings-functions.php:446
|
529 |
+
msgid "Element "
|
530 |
+
msgstr "Elemento"
|
531 |
+
|
532 |
+
#: ../lib/yasr-settings-functions.php:456
|
533 |
+
msgid "Create New Set"
|
534 |
+
msgstr "Criar Novo Set"
|
535 |
+
|
536 |
+
#: ../lib/yasr-settings-functions.php:477
|
537 |
+
#: ../lib/yasr-settings-functions.php:509
|
538 |
+
msgid "Manage Multiple Set"
|
539 |
+
msgstr "Gerenciar Multi Set"
|
540 |
+
|
541 |
+
#: ../lib/yasr-settings-functions.php:479
|
542 |
+
msgid "Wich set do you want to edit or remove?"
|
543 |
+
msgstr "Qual set você quer editar ou remover?"
|
544 |
+
|
545 |
+
#: ../lib/yasr-settings-functions.php:519
|
546 |
+
#: ../lib/yasr-settings-functions.php:637
|
547 |
+
msgid "Field name"
|
548 |
+
msgstr "Nome do campo"
|
549 |
+
|
550 |
+
#: ../lib/yasr-settings-functions.php:523
|
551 |
+
#: ../lib/yasr-settings-functions.php:641
|
552 |
+
msgid "Remove"
|
553 |
+
msgstr "Remover"
|
554 |
+
|
555 |
+
#: ../lib/yasr-settings-functions.php:565
|
556 |
+
#: ../lib/yasr-settings-functions.php:683
|
557 |
+
msgid "Remove whole set?"
|
558 |
+
msgstr "Remover o set inteiro?"
|
559 |
+
|
560 |
+
#: ../lib/yasr-settings-functions.php:578
|
561 |
+
#: ../lib/yasr-settings-functions.php:696
|
562 |
+
msgid ""
|
563 |
+
"If you remove something you will remove all the votes for that set or field. "
|
564 |
+
"This operation CAN'T BE undone."
|
565 |
+
msgstr ""
|
566 |
+
"Se você remover alguma coisa isso irá remover todos os votos deste set ou "
|
567 |
+
"campo. Esta operação NÃO PODE ser desfeita."
|
568 |
+
|
569 |
+
#: ../lib/yasr-settings-functions.php:585
|
570 |
+
#: ../lib/yasr-settings-functions.php:703
|
571 |
+
msgid "You can use up to 9 elements"
|
572 |
+
msgstr "Você pode usar até 9 elementos"
|
573 |
+
|
574 |
+
#: ../lib/yasr-settings-functions.php:587
|
575 |
+
#: ../lib/yasr-settings-functions.php:705
|
576 |
+
msgid "Add element"
|
577 |
+
msgstr "Adicionar elemento"
|
578 |
+
|
579 |
+
#: ../lib/yasr-settings-functions.php:589
|
580 |
+
#: ../lib/yasr-settings-functions.php:707
|
581 |
+
msgid "Save changes"
|
582 |
+
msgstr "Salvar alterações"
|
583 |
+
|
584 |
+
#: ../lib/yasr-settings-functions.php:599
|
585 |
+
msgid "No Multiple Set were found"
|
586 |
+
msgstr "Nenhum Multi Set foi encontrado"
|
587 |
+
|
588 |
+
#: ../lib/yasr-settings-functions.php:849
|
589 |
+
#: ../lib/yasr-settings-functions.php:1117
|
590 |
+
msgid "Settings Saved"
|
591 |
+
msgstr "Configurações salvas"
|
592 |
+
|
593 |
+
#: ../lib/yasr-settings-functions.php:854
|
594 |
+
msgid "Something goes wrong trying insert set field name. Please report it"
|
595 |
+
msgstr ""
|
596 |
+
"Algo saiu errado ao tentar inserir nome do campo definido. Por favor reporte "
|
597 |
+
"isso"
|
598 |
+
|
599 |
+
#: ../lib/yasr-settings-functions.php:860
|
600 |
+
msgid "Something goes wrong trying insert Multi Set name. Please report it"
|
601 |
+
msgstr ""
|
602 |
+
"Algo saiu errado ao tentar inserir nome do Multi Set definido. Por favor "
|
603 |
+
"reporte isso"
|
604 |
+
|
605 |
+
#: ../lib/yasr-settings-functions.php:935
|
606 |
+
msgid "Something goes wrong trying to delete a Multi Set . Please report it"
|
607 |
+
msgstr "Algo saiu errado ao tentar apagar um Multi Set. Por favor reporte isso"
|
608 |
+
|
609 |
+
#: ../lib/yasr-settings-functions.php:981
|
610 |
+
msgid ""
|
611 |
+
"Something goes wrong trying to delete a Multi Set's element. Please report it"
|
612 |
+
msgstr ""
|
613 |
+
"Algo saiu errado ao tentar apagar o elemento de um Multi Set. Por favor "
|
614 |
+
"reporte isso"
|
615 |
+
|
616 |
+
#: ../lib/yasr-settings-functions.php:1045
|
617 |
+
msgid ""
|
618 |
+
"Something goes wrong trying to update a Multi Set's element. Please report it"
|
619 |
+
msgstr ""
|
620 |
+
"Algo saiu errado ao tentar atualizar o elemento de um Multi Set. Por favor "
|
621 |
+
"reporte isso"
|
622 |
+
|
623 |
+
#: ../lib/yasr-settings-functions.php:1102
|
624 |
+
msgid ""
|
625 |
+
"Something goes wrong trying to insert set field name in edit form. Please "
|
626 |
+
"report it"
|
627 |
+
msgstr ""
|
628 |
+
"Algo saiu errado ao tentar inserir o nome do campo definido no formulário de "
|
629 |
+
"edição. Por favor reporte isso"
|
630 |
+
|
631 |
+
#: ../lib/yasr-settings-functions.php:1145
|
632 |
+
msgid "Style Options"
|
633 |
+
msgstr "Opções de Estilo"
|
634 |
+
|
635 |
+
#: ../lib/yasr-settings-functions.php:1146
|
636 |
+
msgid "Custom CSS Styles"
|
637 |
+
msgstr "Estilos CSS Personalizados"
|
638 |
+
|
639 |
+
#: ../lib/yasr-settings-functions.php:1151
|
640 |
+
msgid ""
|
641 |
+
"Please use text area below to write your own CSS styles to override the "
|
642 |
+
"default ones."
|
643 |
+
msgstr ""
|
644 |
+
"Por favor, use a área de texto abaixo para escrever seus próprios estilos "
|
645 |
+
"CSS para substituir o padrão."
|
646 |
+
|
647 |
+
#: ../lib/yasr-settings-functions.php:1153
|
648 |
+
msgid "Leave it blank if you don't know what you're doing"
|
649 |
+
msgstr "Deixe em branco se você não sabe o que está fazendo"
|
650 |
+
|
651 |
+
#: ../lib/yasr-settings-functions.php:1176
|
652 |
+
msgid "Looking for more features?"
|
653 |
+
msgstr "Procurando por mais recursos?"
|
654 |
+
|
655 |
+
#: ../lib/yasr-settings-functions.php:1177
|
656 |
+
msgid "Upgrade to yasr pro!"
|
657 |
+
msgstr "Atualize para yasr pro!"
|
658 |
+
|
659 |
+
#: ../lib/yasr-settings-functions.php:1193
|
660 |
+
msgid "Unlimited ratings and votes"
|
661 |
+
msgstr "Votos e classificações ilimitadas"
|
662 |
+
|
663 |
+
#: ../lib/yasr-settings-functions.php:1199
|
664 |
+
msgid "Works with shortcodes"
|
665 |
+
msgstr "Funciona com shortcodes"
|
666 |
+
|
667 |
+
#: ../lib/yasr-settings-functions.php:1205
|
668 |
+
msgid "Multi Set Support"
|
669 |
+
msgstr "Suporte ao Multi Set"
|
670 |
+
|
671 |
+
#: ../lib/yasr-settings-functions.php:1210
|
672 |
+
msgid "Logs and stats for visitors votes"
|
673 |
+
msgstr "Logs e estatísticas para os votos de visitantes"
|
674 |
+
|
675 |
+
#: ../lib/yasr-settings-functions.php:1215
|
676 |
+
msgid "Localization (.po and .mo files included)"
|
677 |
+
msgstr "Localização (arquivos .po e. mo incluídos)"
|
678 |
+
|
679 |
+
#: ../lib/yasr-settings-functions.php:1220
|
680 |
+
msgid "Rich Snippet Support"
|
681 |
+
msgstr "Suporte a Rich Snippet"
|
682 |
+
|
683 |
+
#: ../lib/yasr-settings-functions.php:1225
|
684 |
+
msgid "Rankings for reviews, votes and users"
|
685 |
+
msgstr "Rankings para comentários, votos e usuários"
|
686 |
+
|
687 |
+
#: ../lib/yasr-settings-functions.php:1230
|
688 |
+
msgid "Rankings Customization"
|
689 |
+
msgstr "Personalização de rankings"
|
690 |
+
|
691 |
+
#: ../lib/yasr-settings-functions.php:1235
|
692 |
+
msgid "Stars Customization"
|
693 |
+
msgstr "Personalização de estrelas"
|
694 |
+
|
695 |
+
#: ../lib/yasr-settings-functions.php:1236
|
696 |
+
msgid "Size Only"
|
697 |
+
msgstr "Tamanho Apenas"
|
698 |
+
|
699 |
+
#: ../lib/yasr-settings-functions.php:1237
|
700 |
+
msgid ""
|
701 |
+
"Users can choose different ready to use sets or can upload their own images."
|
702 |
+
msgstr ""
|
703 |
+
"Os usuários podem escolher diferentes sets pronto para usar ou podem "
|
704 |
+
"carregar suas próprias imagens."
|
705 |
+
|
706 |
+
#: ../lib/yasr-settings-functions.php:1240
|
707 |
+
msgid "Visitors can vote on Multi Set"
|
708 |
+
msgstr "Os visitantes podem votar em um Multi Set"
|
709 |
+
|
710 |
+
#: ../lib/yasr-settings-functions.php:1245
|
711 |
+
msgid "Users can review in comments"
|
712 |
+
msgstr "Os usuários podem avaliar comentários"
|
713 |
+
|
714 |
+
#: ../lib/yasr-settings-functions.php:1256
|
715 |
+
msgid "Not avaible yet"
|
716 |
+
msgstr "Não disponível ainda"
|
717 |
+
|
718 |
+
#: ../lib/yasr-settings-functions.php:1288
|
719 |
+
#: ../lib/yasr-settings-functions.php:1315
|
720 |
+
msgid "Follow YASR official site!"
|
721 |
+
msgstr "Siga o site oficial do YASR!"
|
722 |
+
|
723 |
+
#: ../lib/yasr-settings-functions.php:1345
|
724 |
+
msgid "No previous Gd Star Rating installation was found"
|
725 |
+
msgstr "Nenhuma instalação do Gd Star Rating anterior foi encontrada"
|
726 |
+
|
727 |
+
#: ../lib/yasr-db-functions.php:280
|
728 |
+
msgid "No recenet votes yet"
|
729 |
+
msgstr "Nenhum voto recente ainda"
|
730 |
+
|
731 |
+
#: ../lib/yasr-db-functions.php:295 ../lib/yasr-ajax-functions.php:761
|
732 |
+
msgid "anonymous"
|
733 |
+
msgstr "anônimo"
|
734 |
+
|
735 |
+
#: ../lib/yasr-db-functions.php:318 ../lib/yasr-ajax-functions.php:784
|
736 |
+
msgid "Ip address"
|
737 |
+
msgstr "Endereço de IP"
|
738 |
+
|
739 |
+
#: ../lib/yasr-db-functions.php:359 ../lib/yasr-ajax-functions.php:825
|
740 |
+
msgid "Pages"
|
741 |
+
msgstr "Páginas"
|
742 |
+
|
743 |
+
#: ../lib/yasr-functions.php:99 ../lib/yasr-functions.php:100
|
744 |
+
msgid "Yet Another Stars Rating: Settings"
|
745 |
+
msgstr "Yet Another Stars Rating: Configurações"
|
746 |
+
|
747 |
+
#: ../lib/yasr-functions.php:143
|
748 |
+
msgid "YASR"
|
749 |
+
msgstr "YASR"
|
750 |
+
|
751 |
+
#: ../lib/yasr-functions.php:144
|
752 |
+
msgid "Yet Another Stars Rating: Multiple set"
|
753 |
+
msgstr "Yet Another Stars Rating: Multiple set"
|
754 |
+
|
755 |
+
#: ../lib/yasr-functions.php:150
|
756 |
+
msgid "Overall Rating"
|
757 |
+
msgstr "Classificação geral"
|
758 |
+
|
759 |
+
#: ../lib/yasr-functions.php:160
|
760 |
+
msgid "You don't have enought privileges to insert Overall Rating"
|
761 |
+
msgstr "Você não tem privilégios suficientes para inserir Classificação Geral"
|
762 |
+
|
763 |
+
#: ../lib/yasr-functions.php:170
|
764 |
+
msgid "You don't have enought privileges to insert Multi Set"
|
765 |
+
msgstr "Você não tem privilégios suficientes para inserir Multi Set"
|
766 |
+
|
767 |
+
#: ../lib/yasr-functions.php:310
|
768 |
+
msgid " reviewed by "
|
769 |
+
msgstr " avaliado por "
|
770 |
+
|
771 |
+
#: ../lib/yasr-functions.php:311
|
772 |
+
msgid " on "
|
773 |
+
msgstr " em "
|
774 |
+
|
775 |
+
#: ../lib/yasr-functions.php:312
|
776 |
+
msgid " rated "
|
777 |
+
msgstr " votado "
|
778 |
+
|
779 |
+
#: ../lib/yasr-functions.php:312
|
780 |
+
msgid " of"
|
781 |
+
msgstr " de "
|
782 |
+
|
783 |
+
#: ../lib/yasr-functions.php:359
|
784 |
+
msgid " written by "
|
785 |
+
msgstr " escrito por "
|
786 |
+
|
787 |
+
#: ../lib/yasr-functions.php:361
|
788 |
+
msgid " average rating "
|
789 |
+
msgstr " classificação média "
|
790 |
+
|
791 |
+
#: ../lib/yasr-functions.php:362
|
792 |
+
msgid " user ratings"
|
793 |
+
msgstr "votos de usuários"
|
794 |
+
|
795 |
+
#: ../lib/yasr-ajax-functions.php:96
|
796 |
+
msgid "You've rated it "
|
797 |
+
msgstr "Você votou "
|
798 |
+
|
799 |
+
#: ../lib/yasr-ajax-functions.php:100
|
800 |
+
msgid "You've reset the vote"
|
801 |
+
msgstr "Você resetou o voto"
|
802 |
+
|
803 |
+
#: ../lib/yasr-ajax-functions.php:164
|
804 |
+
msgid ""
|
805 |
+
"There was an error while trying to insert the review type. Please report it"
|
806 |
+
msgstr ""
|
807 |
+
"Houve um erro ao tentar inserir o tipo de revisão. Por favor reporte isso"
|
808 |
+
|
809 |
+
#: ../lib/yasr-ajax-functions.php:198
|
810 |
+
msgid "Choose a vote for each element"
|
811 |
+
msgstr "Escolha um voto para cada elemento"
|
812 |
+
|
813 |
+
#: ../lib/yasr-ajax-functions.php:255 ../lib/yasr-ajax-functions.php:298
|
814 |
+
msgid "Remember to insert this shortcode"
|
815 |
+
msgstr "Lembre-se de inserir este shortcode"
|
816 |
+
|
817 |
+
#: ../lib/yasr-ajax-functions.php:257 ../lib/yasr-ajax-functions.php:300
|
818 |
+
msgid "where you want to display this multi set"
|
819 |
+
msgstr "onde você deseja exibir este Multi Set"
|
820 |
+
|
821 |
+
#: ../lib/yasr-ajax-functions.php:265
|
822 |
+
msgid "Choose a vote for every element"
|
823 |
+
msgstr "Escolha um voto para todos elementos"
|
824 |
+
|
825 |
+
#: ../lib/yasr-ajax-functions.php:432
|
826 |
+
msgid "Main"
|
827 |
+
msgstr "Principal"
|
828 |
+
|
829 |
+
#: ../lib/yasr-ajax-functions.php:433
|
830 |
+
msgid "Charts"
|
831 |
+
msgstr "Gráficos"
|
832 |
+
|
833 |
+
#: ../lib/yasr-ajax-functions.php:435
|
834 |
+
msgid "Read the doc"
|
835 |
+
msgstr "Ler a documentação"
|
836 |
+
|
837 |
+
#: ../lib/yasr-ajax-functions.php:444
|
838 |
+
msgid "Overall Rating / Review"
|
839 |
+
msgstr "Classificação Geral / Revisão"
|
840 |
+
|
841 |
+
#: ../lib/yasr-ajax-functions.php:446
|
842 |
+
msgid "Insert Overall Rating"
|
843 |
+
msgstr "Inserir Classificação Geral"
|
844 |
+
|
845 |
+
#: ../lib/yasr-ajax-functions.php:447
|
846 |
+
msgid "Insert Overall Rating / Review for this post"
|
847 |
+
msgstr "Inserir Classificação Geral / Revisão para este post"
|
848 |
+
|
849 |
+
#: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
|
850 |
+
msgid "Choose Size"
|
851 |
+
msgstr "Escolher Tamanho"
|
852 |
+
|
853 |
+
#: ../lib/yasr-ajax-functions.php:464
|
854 |
+
msgid "Insert Visitor Votes"
|
855 |
+
msgstr "Inserir Voto de Visitantes"
|
856 |
+
|
857 |
+
#: ../lib/yasr-ajax-functions.php:465
|
858 |
+
msgid "Insert the ability for your visitor to vote"
|
859 |
+
msgstr "Inserir a habilidade para o seu visitante votar"
|
860 |
+
|
861 |
+
#: ../lib/yasr-ajax-functions.php:482
|
862 |
+
msgid "If you want to insert a Multi Set, pick one:"
|
863 |
+
msgstr "Se você quer inserir um Multi Set, escolha um:"
|
864 |
+
|
865 |
+
#: ../lib/yasr-ajax-functions.php:488
|
866 |
+
msgid "Choose wich set you want to insert."
|
867 |
+
msgstr "Escolha qual set você quer inserir."
|
868 |
+
|
869 |
+
#: ../lib/yasr-ajax-functions.php:496
|
870 |
+
msgid "Insert Multiset:"
|
871 |
+
msgstr "Inserir Multi Set"
|
872 |
+
|
873 |
+
#: ../lib/yasr-ajax-functions.php:499
|
874 |
+
msgid "Insert Multiple Set"
|
875 |
+
msgstr "Inserir Set Múltiplo"
|
876 |
+
|
877 |
+
#: ../lib/yasr-ajax-functions.php:500
|
878 |
+
msgid "Insert multiple set in this post ?"
|
879 |
+
msgstr "Inserir set múltiplo neste post?"
|
880 |
+
|
881 |
+
#: ../lib/yasr-ajax-functions.php:515
|
882 |
+
msgid "Ranking reviews"
|
883 |
+
msgstr "Ranking de Avaliações"
|
884 |
+
|
885 |
+
#: ../lib/yasr-ajax-functions.php:516
|
886 |
+
msgid "Insert Ranking reviews"
|
887 |
+
msgstr "Inserir Ranking de Avaliações"
|
888 |
+
|
889 |
+
#: ../lib/yasr-ajax-functions.php:517
|
890 |
+
msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
|
891 |
+
msgstr "Inserir Top 10 ranking para o shortcode [yasr_overall_rating]"
|
892 |
+
|
893 |
+
#: ../lib/yasr-ajax-functions.php:521
|
894 |
+
msgid "Users' ranking"
|
895 |
+
msgstr "Ranking de Usuários"
|
896 |
+
|
897 |
+
#: ../lib/yasr-ajax-functions.php:522
|
898 |
+
msgid "Insert Users ranking"
|
899 |
+
msgstr "Inserir Ranking de Usuários"
|
900 |
+
|
901 |
+
#: ../lib/yasr-ajax-functions.php:523
|
902 |
+
msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
|
903 |
+
msgstr "Inserir Top 10 ranking para o shortcode [yasr_visitor_votes]"
|
904 |
+
|
905 |
+
#: ../lib/yasr-ajax-functions.php:527
|
906 |
+
msgid "Most active reviewers"
|
907 |
+
msgstr "Revisores mais ativos"
|
908 |
+
|
909 |
+
#: ../lib/yasr-ajax-functions.php:528
|
910 |
+
msgid "Insert Most Active Reviewers"
|
911 |
+
msgstr "Inserir os revisores mais ativos"
|
912 |
+
|
913 |
+
#: ../lib/yasr-ajax-functions.php:529
|
914 |
+
msgid "Insert Top 5 active reviewers"
|
915 |
+
msgstr "Inserir o Top 5 dos revisores mais ativos"
|
916 |
+
|
917 |
+
#: ../lib/yasr-ajax-functions.php:533
|
918 |
+
msgid "Most Active Users"
|
919 |
+
msgstr "Usuários Mais Ativos"
|
920 |
+
|
921 |
+
#: ../lib/yasr-ajax-functions.php:534
|
922 |
+
msgid "Insert Most Active Users"
|
923 |
+
msgstr "Inserir Usuários Mais Ativos"
|
924 |
+
|
925 |
+
#: ../lib/yasr-ajax-functions.php:535
|
926 |
+
msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
|
927 |
+
msgstr "Inserir Top 10 eleitores para o shortcode [yasr_visitor_votes]"
|
928 |
+
|
929 |
+
#: ../lib/yasr-ajax-functions.php:606
|
930 |
+
msgid "Reviews and Visitor Votes have been successfull imported."
|
931 |
+
msgstr "Avaliações e votos de visitantes foram importados com sucesso."
|
932 |
+
|
933 |
+
#: ../lib/yasr-ajax-functions.php:612
|
934 |
+
msgid ""
|
935 |
+
"Step2: I will check if you used Multiple Sets and if so I will import them. "
|
936 |
+
"THIS MAY TAKE A WHILE!"
|
937 |
+
msgstr ""
|
938 |
+
"Passo 2: Checando se foi usado Multi Set e caso seja o caso eles serão "
|
939 |
+
"importados. ISTO PODE LEVAR UM TEMPO!"
|
940 |
+
|
941 |
+
#: ../lib/yasr-ajax-functions.php:614
|
942 |
+
msgid "Proceed Step 2"
|
943 |
+
msgstr "Continuar - Passo 2"
|
944 |
+
|
945 |
+
#: ../lib/yasr-ajax-functions.php:621
|
946 |
+
msgid "Something goes wrong! Refresh the page and try again!"
|
947 |
+
msgstr "Algo deu errado! Atualize a página e tente novamente!"
|
948 |
+
|
949 |
+
#: ../lib/yasr-ajax-functions.php:650
|
950 |
+
msgid "I've found Multiple Set! Importing..."
|
951 |
+
msgstr "Multi Set encontrado! Importando..."
|
952 |
+
|
953 |
+
#: ../lib/yasr-ajax-functions.php:659
|
954 |
+
msgid "Multi Set's name has been successfull imported."
|
955 |
+
msgstr "O nome do multi set foi importado com sucesso."
|
956 |
+
|
957 |
+
#: ../lib/yasr-ajax-functions.php:661
|
958 |
+
msgid "Now I'm going to import Multi Set data"
|
959 |
+
msgstr "Importando agora os dados do Multi Set"
|
960 |
+
|
961 |
+
#: ../lib/yasr-ajax-functions.php:672
|
962 |
+
msgid "All votes has been successfull imported."
|
963 |
+
msgstr "Todos os votos foram importados com sucesso."
|
964 |
+
|
965 |
+
#: ../lib/yasr-ajax-functions.php:674
|
966 |
+
msgid "Done"
|
967 |
+
msgstr "Pronto"
|
968 |
+
|
969 |
+
#: ../lib/yasr-ajax-functions.php:679
|
970 |
+
msgid "I've found Multiple Set's votes but I couldn't insert into db"
|
971 |
+
msgstr ""
|
972 |
+
"Foram encontrados votos de Multi Set mas não puderam ser inseridos no banco "
|
973 |
+
"de dados"
|
974 |
+
|
975 |
+
#: ../lib/yasr-ajax-functions.php:687
|
976 |
+
msgid "I've found Multi Set but with no data"
|
977 |
+
msgstr "Foram encontrados Multi Set mas sem dados"
|
978 |
+
|
979 |
+
#: ../lib/yasr-ajax-functions.php:696
|
980 |
+
msgid "I've found Multi Sets names but I couldn't insert into db"
|
981 |
+
msgstr ""
|
982 |
+
"Foram encontrados nomes de Multi Set mas não puderam ser inseridos no banco "
|
983 |
+
"de dados"
|
984 |
+
|
985 |
+
#: ../lib/yasr-ajax-functions.php:704
|
986 |
+
msgid "Multisets were not found. Imported is done!"
|
987 |
+
msgstr "Nenhum Multi Set encontrado. A importação está feita!"
|
988 |
+
|
989 |
+
#: ../lib/yasr-ajax-functions.php:748
|
990 |
+
msgid "No Recenet votes yet"
|
991 |
+
msgstr "Nenhum voto recente ainda"
|
992 |
+
|
993 |
+
#: ../lib/yasr-ajax-functions.php:915 ../lib/yasr-ajax-functions.php:1057
|
994 |
+
msgid "Error: you can't vote 0"
|
995 |
+
msgstr "Erro: você não pode votar 0"
|
996 |
+
|
997 |
+
#: ../lib/yasr-ajax-functions.php:1011 ../lib/yasr-ajax-functions.php:1019
|
998 |
+
msgid "Average rating"
|
999 |
+
msgstr "Classificação Média"
|
1000 |
+
|
1001 |
+
#: ../lib/yasr-ajax-functions.php:1012 ../lib/yasr-ajax-functions.php:1020
|
1002 |
+
msgid "Vote Saved"
|
1003 |
+
msgstr "Voto Salvo"
|
1004 |
+
|
1005 |
+
#: ../lib/yasr-ajax-functions.php:1149
|
1006 |
+
msgid "Vote updated"
|
1007 |
+
msgstr "Voto atualizado"
|
1008 |
+
|
1009 |
+
#: ../lib/yasr-ajax-functions.php:1220
|
1010 |
+
msgid "Average "
|
1011 |
+
msgstr "Média "
|
1012 |
+
|
1013 |
+
#: ../lib/yasr-ajax-functions.php:1231
|
1014 |
+
msgid "You've already voted this article"
|
1015 |
+
msgstr "Você já votou neste artigo"
|
1016 |
+
|
1017 |
+
#: ../lib/yasr-ajax-functions.php:1351
|
1018 |
+
msgid "stars"
|
1019 |
+
msgstr "estrelas"
|
1020 |
+
|
1021 |
+
#: ../lib/yasr-ajax-functions.php:1356
|
1022 |
+
msgid "star"
|
1023 |
+
msgstr "estrela"
|
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-03-
|
5 |
-
"PO-Revision-Date: 2015-03-
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: En\n"
|
@@ -32,7 +32,7 @@ msgid "This review is about a..."
|
|
32 |
msgstr ""
|
33 |
|
34 |
#: ../yasr-metabox-top-right.php:193 ../yasr-metabox-multiple-rating.php:46
|
35 |
-
#: ../lib/yasr-settings-functions.php:
|
36 |
msgid "Select"
|
37 |
msgstr ""
|
38 |
|
@@ -154,20 +154,20 @@ msgstr ""
|
|
154 |
msgid "Close this message"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../yasr-settings-page.php:246 ../lib/yasr-settings-functions.php:
|
158 |
-
#: ../lib/yasr-settings-functions.php:
|
159 |
msgid "Donations"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../yasr-settings-page.php:248 ../lib/yasr-settings-functions.php:
|
163 |
-
#: ../lib/yasr-settings-functions.php:
|
164 |
msgid ""
|
165 |
"If you have found this plugin useful, please consider making a donation to "
|
166 |
"help support future development. Your support will be much appreciated. "
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../yasr-settings-page.php:250 ../lib/yasr-settings-functions.php:
|
170 |
-
#: ../lib/yasr-settings-functions.php:
|
171 |
msgid "Thank you!"
|
172 |
msgstr ""
|
173 |
|
@@ -184,69 +184,73 @@ msgstr ""
|
|
184 |
msgid "You must sign to vote"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../lib/yasr-shortcode-functions.php:
|
188 |
#: ../lib/yasr-ajax-functions.php:1019 ../lib/yasr-ajax-functions.php:1148
|
189 |
#: ../lib/yasr-ajax-functions.php:1220
|
190 |
msgid "Total: "
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../lib/yasr-shortcode-functions.php:
|
194 |
msgid "Average: "
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../lib/yasr-shortcode-functions.php:
|
|
|
|
|
|
|
|
|
198 |
msgid "Rating"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../lib/yasr-shortcode-functions.php:
|
202 |
msgid "You don't have any votes stored"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../lib/yasr-shortcode-functions.php:
|
206 |
-
#: ../lib/yasr-shortcode-functions.php:
|
207 |
msgid "Post / Page"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: ../lib/yasr-shortcode-functions.php:
|
211 |
-
#: ../lib/yasr-shortcode-functions.php:
|
212 |
msgid "Order By"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../lib/yasr-shortcode-functions.php:
|
216 |
-
#: ../lib/yasr-shortcode-functions.php:
|
217 |
msgid "Most Rated"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ../lib/yasr-shortcode-functions.php:
|
221 |
-
#: ../lib/yasr-shortcode-functions.php:
|
222 |
msgid "Highest Rated"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: ../lib/yasr-shortcode-functions.php:
|
226 |
-
#: ../lib/yasr-shortcode-functions.php:
|
227 |
msgid "Total:"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../lib/yasr-shortcode-functions.php:
|
231 |
-
#: ../lib/yasr-shortcode-functions.php:
|
232 |
msgid "Average"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../lib/yasr-shortcode-functions.php:
|
236 |
msgid "You've not enough data"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../lib/yasr-shortcode-functions.php:
|
240 |
msgid "You've not enought data"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../lib/yasr-shortcode-functions.php:
|
244 |
msgid ""
|
245 |
"Problem while retrieving the top 5 most active reviewers. Did you publish "
|
246 |
"any review?"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ../lib/yasr-shortcode-functions.php:
|
250 |
msgid ""
|
251 |
"Problem while retrieving the top 10 active users chart. Are you sure you "
|
252 |
"have votes to show?"
|
@@ -302,7 +306,7 @@ msgstr ""
|
|
302 |
#: ../lib/yasr-settings-functions.php:204
|
303 |
#: ../lib/yasr-settings-functions.php:230
|
304 |
#: ../lib/yasr-settings-functions.php:262
|
305 |
-
#: ../lib/yasr-settings-functions.php:
|
306 |
msgid "Yes"
|
307 |
msgstr ""
|
308 |
|
@@ -312,7 +316,7 @@ msgstr ""
|
|
312 |
#: ../lib/yasr-settings-functions.php:209
|
313 |
#: ../lib/yasr-settings-functions.php:235
|
314 |
#: ../lib/yasr-settings-functions.php:267
|
315 |
-
#: ../lib/yasr-settings-functions.php:
|
316 |
msgid "No"
|
317 |
msgstr ""
|
318 |
|
@@ -405,270 +409,264 @@ msgstr ""
|
|
405 |
msgid "Custom text to display when a non logged user has already rated"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../lib/yasr-settings-functions.php:
|
409 |
-
msgid ""
|
410 |
-
"Seems like you've imported gd star rating in the past, but then deleted the "
|
411 |
-
"logs table. For now, you can't enable statistics"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: ../lib/yasr-settings-functions.php:338
|
415 |
msgid "Light"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../lib/yasr-settings-functions.php:
|
419 |
msgid "Dark"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../lib/yasr-settings-functions.php:
|
423 |
msgid "Preview"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../lib/yasr-settings-functions.php:
|
427 |
msgid "Light theme"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: ../lib/yasr-settings-functions.php:
|
431 |
msgid "Dark Theme"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../lib/yasr-settings-functions.php:
|
435 |
msgid "Allow only logged-in users"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../lib/yasr-settings-functions.php:
|
439 |
msgid "Allow everybody (logged in and anonymous)"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: ../lib/yasr-settings-functions.php:
|
443 |
msgid "Review Rating"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ../lib/yasr-settings-functions.php:
|
447 |
msgid "Aggregate Rating"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ../lib/yasr-settings-functions.php:
|
451 |
msgid "What is this?"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ../lib/yasr-settings-functions.php:
|
455 |
msgid ""
|
456 |
"If you select \"Review Rating\", your site will be indexed from search "
|
457 |
"engines like this: "
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../lib/yasr-settings-functions.php:
|
461 |
msgid ""
|
462 |
"If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
|
463 |
"this"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ../lib/yasr-settings-functions.php:
|
467 |
msgid "Stars"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: ../lib/yasr-settings-functions.php:
|
471 |
msgid "Numbers"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: ../lib/yasr-settings-functions.php:
|
475 |
msgid "Add New Multiple Set"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: ../lib/yasr-settings-functions.php:
|
479 |
msgid ""
|
480 |
"Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
|
481 |
"characters"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../lib/yasr-settings-functions.php:
|
485 |
msgid "Name"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: ../lib/yasr-settings-functions.php:
|
489 |
msgid "You can insert up to nine elements"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ../lib/yasr-settings-functions.php:
|
493 |
msgid "Element "
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: ../lib/yasr-settings-functions.php:
|
497 |
msgid "Create New Set"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: ../lib/yasr-settings-functions.php:
|
501 |
-
#: ../lib/yasr-settings-functions.php:
|
502 |
msgid "Manage Multiple Set"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../lib/yasr-settings-functions.php:
|
506 |
msgid "Wich set do you want to edit or remove?"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../lib/yasr-settings-functions.php:
|
510 |
-
#: ../lib/yasr-settings-functions.php:
|
511 |
msgid "Field name"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../lib/yasr-settings-functions.php:
|
515 |
-
#: ../lib/yasr-settings-functions.php:
|
516 |
msgid "Remove"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../lib/yasr-settings-functions.php:
|
520 |
-
#: ../lib/yasr-settings-functions.php:
|
521 |
msgid "Remove whole set?"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../lib/yasr-settings-functions.php:
|
525 |
-
#: ../lib/yasr-settings-functions.php:
|
526 |
msgid ""
|
527 |
"If you remove something you will remove all the votes for that set or field. "
|
528 |
"This operation CAN'T BE undone."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../lib/yasr-settings-functions.php:
|
532 |
-
#: ../lib/yasr-settings-functions.php:
|
533 |
msgid "You can use up to 9 elements"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: ../lib/yasr-settings-functions.php:
|
537 |
-
#: ../lib/yasr-settings-functions.php:
|
538 |
msgid "Add element"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../lib/yasr-settings-functions.php:
|
542 |
-
#: ../lib/yasr-settings-functions.php:
|
543 |
msgid "Save changes"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../lib/yasr-settings-functions.php:
|
547 |
msgid "No Multiple Set were found"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../lib/yasr-settings-functions.php:
|
551 |
-
#: ../lib/yasr-settings-functions.php:
|
552 |
msgid "Settings Saved"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../lib/yasr-settings-functions.php:
|
556 |
msgid "Something goes wrong trying insert set field name. Please report it"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../lib/yasr-settings-functions.php:
|
560 |
msgid "Something goes wrong trying insert Multi Set name. Please report it"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../lib/yasr-settings-functions.php:
|
564 |
msgid "Something goes wrong trying to delete a Multi Set . Please report it"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: ../lib/yasr-settings-functions.php:
|
568 |
msgid ""
|
569 |
"Something goes wrong trying to delete a Multi Set's element. Please report it"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../lib/yasr-settings-functions.php:
|
573 |
msgid ""
|
574 |
"Something goes wrong trying to update a Multi Set's element. Please report it"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../lib/yasr-settings-functions.php:
|
578 |
msgid ""
|
579 |
"Something goes wrong trying to insert set field name in edit form. Please "
|
580 |
"report it"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../lib/yasr-settings-functions.php:
|
584 |
msgid "Style Options"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../lib/yasr-settings-functions.php:
|
588 |
msgid "Custom CSS Styles"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../lib/yasr-settings-functions.php:
|
592 |
msgid ""
|
593 |
"Please use text area below to write your own CSS styles to override the "
|
594 |
"default ones."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../lib/yasr-settings-functions.php:
|
598 |
msgid "Leave it blank if you don't know what you're doing"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: ../lib/yasr-settings-functions.php:
|
602 |
msgid "Looking for more features?"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../lib/yasr-settings-functions.php:
|
606 |
msgid "Upgrade to yasr pro!"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../lib/yasr-settings-functions.php:
|
610 |
msgid "Unlimited ratings and votes"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../lib/yasr-settings-functions.php:
|
614 |
msgid "Works with shortcodes"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../lib/yasr-settings-functions.php:
|
618 |
msgid "Multi Set Support"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: ../lib/yasr-settings-functions.php:
|
622 |
msgid "Logs and stats for visitors votes"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../lib/yasr-settings-functions.php:
|
626 |
msgid "Localization (.po and .mo files included)"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../lib/yasr-settings-functions.php:
|
630 |
msgid "Rich Snippet Support"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../lib/yasr-settings-functions.php:
|
634 |
msgid "Rankings for reviews, votes and users"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: ../lib/yasr-settings-functions.php:
|
638 |
msgid "Rankings Customization"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../lib/yasr-settings-functions.php:
|
642 |
msgid "Stars Customization"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../lib/yasr-settings-functions.php:
|
646 |
msgid "Size Only"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../lib/yasr-settings-functions.php:
|
650 |
msgid ""
|
651 |
"Users can choose different ready to use sets or can upload their own images."
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: ../lib/yasr-settings-functions.php:
|
655 |
msgid "Visitors can vote on Multi Set"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: ../lib/yasr-settings-functions.php:
|
659 |
msgid "Users can review in comments"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: ../lib/yasr-settings-functions.php:
|
663 |
msgid "Not avaible yet"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: ../lib/yasr-settings-functions.php:
|
667 |
-
#: ../lib/yasr-settings-functions.php:
|
668 |
msgid "Follow YASR official site!"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../lib/yasr-settings-functions.php:
|
672 |
msgid "No previous Gd Star Rating installation was found"
|
673 |
msgstr ""
|
674 |
|
@@ -955,6 +953,10 @@ msgstr ""
|
|
955 |
msgid "You've already voted this article"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: ../lib/yasr-ajax-functions.php:
|
959 |
msgid "stars"
|
960 |
msgstr ""
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YASR lenguages\n"
|
4 |
+
"POT-Creation-Date: 2015-03-13 16:34+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-03-13 16:34+0100\n"
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: En\n"
|
32 |
msgstr ""
|
33 |
|
34 |
#: ../yasr-metabox-top-right.php:193 ../yasr-metabox-multiple-rating.php:46
|
35 |
+
#: ../lib/yasr-settings-functions.php:487
|
36 |
msgid "Select"
|
37 |
msgstr ""
|
38 |
|
154 |
msgid "Close this message"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../yasr-settings-page.php:246 ../lib/yasr-settings-functions.php:1276
|
158 |
+
#: ../lib/yasr-settings-functions.php:1302
|
159 |
msgid "Donations"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../yasr-settings-page.php:248 ../lib/yasr-settings-functions.php:1278
|
163 |
+
#: ../lib/yasr-settings-functions.php:1304
|
164 |
msgid ""
|
165 |
"If you have found this plugin useful, please consider making a donation to "
|
166 |
"help support future development. Your support will be much appreciated. "
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../yasr-settings-page.php:250 ../lib/yasr-settings-functions.php:1280
|
170 |
+
#: ../lib/yasr-settings-functions.php:1306
|
171 |
msgid "Thank you!"
|
172 |
msgstr ""
|
173 |
|
184 |
msgid "You must sign to vote"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../lib/yasr-shortcode-functions.php:243 ../lib/yasr-ajax-functions.php:1011
|
188 |
#: ../lib/yasr-ajax-functions.php:1019 ../lib/yasr-ajax-functions.php:1148
|
189 |
#: ../lib/yasr-ajax-functions.php:1220
|
190 |
msgid "Total: "
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../lib/yasr-shortcode-functions.php:243
|
194 |
msgid "Average: "
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../lib/yasr-shortcode-functions.php:263
|
198 |
+
msgid "bad, poor, ok, good, super"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: ../lib/yasr-shortcode-functions.php:411
|
202 |
msgid "Rating"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../lib/yasr-shortcode-functions.php:425
|
206 |
msgid "You don't have any votes stored"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../lib/yasr-shortcode-functions.php:461
|
210 |
+
#: ../lib/yasr-shortcode-functions.php:499
|
211 |
msgid "Post / Page"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../lib/yasr-shortcode-functions.php:462
|
215 |
+
#: ../lib/yasr-shortcode-functions.php:500
|
216 |
msgid "Order By"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../lib/yasr-shortcode-functions.php:462
|
220 |
+
#: ../lib/yasr-shortcode-functions.php:500
|
221 |
msgid "Most Rated"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../lib/yasr-shortcode-functions.php:462
|
225 |
+
#: ../lib/yasr-shortcode-functions.php:500
|
226 |
msgid "Highest Rated"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ../lib/yasr-shortcode-functions.php:479
|
230 |
+
#: ../lib/yasr-shortcode-functions.php:514
|
231 |
msgid "Total:"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../lib/yasr-shortcode-functions.php:479
|
235 |
+
#: ../lib/yasr-shortcode-functions.php:514
|
236 |
msgid "Average"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../lib/yasr-shortcode-functions.php:491
|
240 |
msgid "You've not enough data"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../lib/yasr-shortcode-functions.php:526
|
244 |
msgid "You've not enought data"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../lib/yasr-shortcode-functions.php:611
|
248 |
msgid ""
|
249 |
"Problem while retrieving the top 5 most active reviewers. Did you publish "
|
250 |
"any review?"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: ../lib/yasr-shortcode-functions.php:679
|
254 |
msgid ""
|
255 |
"Problem while retrieving the top 10 active users chart. Are you sure you "
|
256 |
"have votes to show?"
|
306 |
#: ../lib/yasr-settings-functions.php:204
|
307 |
#: ../lib/yasr-settings-functions.php:230
|
308 |
#: ../lib/yasr-settings-functions.php:262
|
309 |
+
#: ../lib/yasr-settings-functions.php:297
|
310 |
msgid "Yes"
|
311 |
msgstr ""
|
312 |
|
316 |
#: ../lib/yasr-settings-functions.php:209
|
317 |
#: ../lib/yasr-settings-functions.php:235
|
318 |
#: ../lib/yasr-settings-functions.php:267
|
319 |
+
#: ../lib/yasr-settings-functions.php:302
|
320 |
msgid "No"
|
321 |
msgstr ""
|
322 |
|
409 |
msgid "Custom text to display when a non logged user has already rated"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../lib/yasr-settings-functions.php:320
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
msgid "Light"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../lib/yasr-settings-functions.php:325
|
417 |
msgid "Dark"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../lib/yasr-settings-functions.php:330
|
421 |
msgid "Preview"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../lib/yasr-settings-functions.php:335
|
425 |
msgid "Light theme"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../lib/yasr-settings-functions.php:340
|
429 |
msgid "Dark Theme"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../lib/yasr-settings-functions.php:358
|
433 |
msgid "Allow only logged-in users"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../lib/yasr-settings-functions.php:362
|
437 |
msgid "Allow everybody (logged in and anonymous)"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../lib/yasr-settings-functions.php:379
|
441 |
msgid "Review Rating"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../lib/yasr-settings-functions.php:383
|
445 |
msgid "Aggregate Rating"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../lib/yasr-settings-functions.php:388
|
449 |
msgid "What is this?"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../lib/yasr-settings-functions.php:393
|
453 |
msgid ""
|
454 |
"If you select \"Review Rating\", your site will be indexed from search "
|
455 |
"engines like this: "
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../lib/yasr-settings-functions.php:398
|
459 |
msgid ""
|
460 |
"If, instead, you choose \"Aggregate Rating\", your site will be indexed like "
|
461 |
"this"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../lib/yasr-settings-functions.php:416
|
465 |
msgid "Stars"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../lib/yasr-settings-functions.php:420
|
469 |
msgid "Numbers"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../lib/yasr-settings-functions.php:432
|
473 |
msgid "Add New Multiple Set"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../lib/yasr-settings-functions.php:433
|
477 |
msgid ""
|
478 |
"Name, Element#1 and Element#2 MUST be filled and must be long at least 3 "
|
479 |
"characters"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: ../lib/yasr-settings-functions.php:436
|
483 |
msgid "Name"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../lib/yasr-settings-functions.php:441
|
487 |
msgid "You can insert up to nine elements"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: ../lib/yasr-settings-functions.php:446
|
491 |
msgid "Element "
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: ../lib/yasr-settings-functions.php:456
|
495 |
msgid "Create New Set"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: ../lib/yasr-settings-functions.php:477
|
499 |
+
#: ../lib/yasr-settings-functions.php:509
|
500 |
msgid "Manage Multiple Set"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: ../lib/yasr-settings-functions.php:479
|
504 |
msgid "Wich set do you want to edit or remove?"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: ../lib/yasr-settings-functions.php:519
|
508 |
+
#: ../lib/yasr-settings-functions.php:637
|
509 |
msgid "Field name"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../lib/yasr-settings-functions.php:523
|
513 |
+
#: ../lib/yasr-settings-functions.php:641
|
514 |
msgid "Remove"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../lib/yasr-settings-functions.php:565
|
518 |
+
#: ../lib/yasr-settings-functions.php:683
|
519 |
msgid "Remove whole set?"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: ../lib/yasr-settings-functions.php:578
|
523 |
+
#: ../lib/yasr-settings-functions.php:696
|
524 |
msgid ""
|
525 |
"If you remove something you will remove all the votes for that set or field. "
|
526 |
"This operation CAN'T BE undone."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../lib/yasr-settings-functions.php:585
|
530 |
+
#: ../lib/yasr-settings-functions.php:703
|
531 |
msgid "You can use up to 9 elements"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: ../lib/yasr-settings-functions.php:587
|
535 |
+
#: ../lib/yasr-settings-functions.php:705
|
536 |
msgid "Add element"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: ../lib/yasr-settings-functions.php:589
|
540 |
+
#: ../lib/yasr-settings-functions.php:707
|
541 |
msgid "Save changes"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../lib/yasr-settings-functions.php:599
|
545 |
msgid "No Multiple Set were found"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../lib/yasr-settings-functions.php:849
|
549 |
+
#: ../lib/yasr-settings-functions.php:1117
|
550 |
msgid "Settings Saved"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../lib/yasr-settings-functions.php:854
|
554 |
msgid "Something goes wrong trying insert set field name. Please report it"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../lib/yasr-settings-functions.php:860
|
558 |
msgid "Something goes wrong trying insert Multi Set name. Please report it"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../lib/yasr-settings-functions.php:935
|
562 |
msgid "Something goes wrong trying to delete a Multi Set . Please report it"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../lib/yasr-settings-functions.php:981
|
566 |
msgid ""
|
567 |
"Something goes wrong trying to delete a Multi Set's element. Please report it"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../lib/yasr-settings-functions.php:1045
|
571 |
msgid ""
|
572 |
"Something goes wrong trying to update a Multi Set's element. Please report it"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../lib/yasr-settings-functions.php:1102
|
576 |
msgid ""
|
577 |
"Something goes wrong trying to insert set field name in edit form. Please "
|
578 |
"report it"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../lib/yasr-settings-functions.php:1145
|
582 |
msgid "Style Options"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../lib/yasr-settings-functions.php:1146
|
586 |
msgid "Custom CSS Styles"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../lib/yasr-settings-functions.php:1151
|
590 |
msgid ""
|
591 |
"Please use text area below to write your own CSS styles to override the "
|
592 |
"default ones."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../lib/yasr-settings-functions.php:1153
|
596 |
msgid "Leave it blank if you don't know what you're doing"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../lib/yasr-settings-functions.php:1176
|
600 |
msgid "Looking for more features?"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../lib/yasr-settings-functions.php:1177
|
604 |
msgid "Upgrade to yasr pro!"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../lib/yasr-settings-functions.php:1193
|
608 |
msgid "Unlimited ratings and votes"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../lib/yasr-settings-functions.php:1199
|
612 |
msgid "Works with shortcodes"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: ../lib/yasr-settings-functions.php:1205
|
616 |
msgid "Multi Set Support"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: ../lib/yasr-settings-functions.php:1210
|
620 |
msgid "Logs and stats for visitors votes"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: ../lib/yasr-settings-functions.php:1215
|
624 |
msgid "Localization (.po and .mo files included)"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../lib/yasr-settings-functions.php:1220
|
628 |
msgid "Rich Snippet Support"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: ../lib/yasr-settings-functions.php:1225
|
632 |
msgid "Rankings for reviews, votes and users"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: ../lib/yasr-settings-functions.php:1230
|
636 |
msgid "Rankings Customization"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: ../lib/yasr-settings-functions.php:1235
|
640 |
msgid "Stars Customization"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: ../lib/yasr-settings-functions.php:1236
|
644 |
msgid "Size Only"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: ../lib/yasr-settings-functions.php:1237
|
648 |
msgid ""
|
649 |
"Users can choose different ready to use sets or can upload their own images."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../lib/yasr-settings-functions.php:1240
|
653 |
msgid "Visitors can vote on Multi Set"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../lib/yasr-settings-functions.php:1245
|
657 |
msgid "Users can review in comments"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../lib/yasr-settings-functions.php:1256
|
661 |
msgid "Not avaible yet"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../lib/yasr-settings-functions.php:1288
|
665 |
+
#: ../lib/yasr-settings-functions.php:1315
|
666 |
msgid "Follow YASR official site!"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../lib/yasr-settings-functions.php:1345
|
670 |
msgid "No previous Gd Star Rating installation was found"
|
671 |
msgstr ""
|
672 |
|
953 |
msgid "You've already voted this article"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: ../lib/yasr-ajax-functions.php:1351
|
957 |
msgid "stars"
|
958 |
msgstr ""
|
959 |
+
|
960 |
+
#: ../lib/yasr-ajax-functions.php:1356
|
961 |
+
msgid "star"
|
962 |
+
msgstr ""
|
lib/yasr-ajax-functions.php
CHANGED
@@ -886,6 +886,7 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
|
|
886 |
add_action( 'wp_ajax_nopriv_yasr_send_visitor_rating', 'yasr_insert_visitor_votes_callback' );
|
887 |
|
888 |
function yasr_insert_visitor_votes_callback () {
|
|
|
889 |
if(isset($_POST['rating']) && isset($_POST['post_id']) && isset($_POST['size']) && isset($_POST['nonce_visitor'])) {
|
890 |
$rating = $_POST['rating'];
|
891 |
$post_id = $_POST['post_id'];
|
@@ -1144,9 +1145,13 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
|
|
1144 |
$medium_rating=round ($total_rating, 1);
|
1145 |
|
1146 |
|
1147 |
-
echo "<div class=\"$rateit_class\" id=\"yasr-rateit-user-votes-updated\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$total_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>
|
1148 |
-
|
1149 |
-
|
|
|
|
|
|
|
|
|
1150 |
|
1151 |
die(); // this is required to return a proper result
|
1152 |
|
@@ -1214,9 +1219,13 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
|
|
1214 |
|
1215 |
//Check if user specifyed a custom text to display when a vistor has rated
|
1216 |
|
1217 |
-
$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>
|
1218 |
-
|
1219 |
-
|
|
|
|
|
|
|
|
|
1220 |
[" . __("Total: ", "yasr") . "$number_of_votes " . __("Average " , "yasr") . "$average_rating/5 ]
|
1221 |
</span>";
|
1222 |
|
@@ -1348,25 +1357,28 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
|
|
1348 |
|
1349 |
$i=5;
|
1350 |
|
|
|
|
|
1351 |
foreach ($stats as $logged_votes) {
|
1352 |
|
1353 |
-
if ($i
|
|
|
|
|
1354 |
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
|
1363 |
-
|
1364 |
|
1365 |
-
|
1366 |
|
1367 |
-
|
1368 |
|
1369 |
-
}
|
1370 |
|
1371 |
} //End foreach
|
1372 |
|
@@ -1377,9 +1389,10 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
|
|
1377 |
<script type="text/javascript">
|
1378 |
jQuery( document ).ready(function() {
|
1379 |
|
|
|
1380 |
var arrayValueProgressbar = <?php echo (json_encode($array_values_progressbar)) ?>;
|
1381 |
|
1382 |
-
yasrDrawProgressBars (arrayValueProgressbar);
|
1383 |
|
1384 |
});
|
1385 |
</script>
|
886 |
add_action( 'wp_ajax_nopriv_yasr_send_visitor_rating', 'yasr_insert_visitor_votes_callback' );
|
887 |
|
888 |
function yasr_insert_visitor_votes_callback () {
|
889 |
+
|
890 |
if(isset($_POST['rating']) && isset($_POST['post_id']) && isset($_POST['size']) && isset($_POST['nonce_visitor'])) {
|
891 |
$rating = $_POST['rating'];
|
892 |
$post_id = $_POST['post_id'];
|
1145 |
$medium_rating=round ($total_rating, 1);
|
1146 |
|
1147 |
|
1148 |
+
echo "<div class=\"$rateit_class\" id=\"yasr-rateit-user-votes-updated\" data-rateit-starwidth=\"$px_size\" data-rateit-starheight=\"$px_size\" data-rateit-value=\"$total_rating\" data-rateit-resetable=\"false\" data-rateit-readonly=\"true\"></div>";
|
1149 |
+
|
1150 |
+
if (YASR_VISITORS_STATS === 'yes') {
|
1151 |
+
echo "<span class=\"yasr-total-average-text\"><span class=\"dashicons dashicons-chart-bar\" id=\"yasr-total-average-$post_id\"></span>[" . __("Total: ", "yasr") . "$number_of_votes " . __("Average $medium_rating/5" , "yasr") . "]</span>";
|
1152 |
+
}
|
1153 |
+
|
1154 |
+
echo "<span class=\"yasr-small-block-bold\" id=\"yasr-already-voted-text\">" . __("Vote updated", "yasr") . "</span>";
|
1155 |
|
1156 |
die(); // this is required to return a proper result
|
1157 |
|
1219 |
|
1220 |
//Check if user specifyed a custom text to display when a vistor has rated
|
1221 |
|
1222 |
+
$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>";
|
1223 |
+
|
1224 |
+
if (YASR_VISITORS_STATS === 'yes') {
|
1225 |
+
$shortcode .= "<span class=\"dashicons dashicons-chart-bar yasr-dashicons-visitor-stats \" id=\"yasr-total-average-dashicon-$post_id\" title=\"yasr-stats-dashicon\"></span>";
|
1226 |
+
}
|
1227 |
+
|
1228 |
+
$shortcode.="<span class=\"yasr-total-average-container\" id=\"yasr-total-average-text_$post_id\" title=\"yasr-stats\">
|
1229 |
[" . __("Total: ", "yasr") . "$number_of_votes " . __("Average " , "yasr") . "$average_rating/5 ]
|
1230 |
</span>";
|
1231 |
|
1357 |
|
1358 |
$i=5;
|
1359 |
|
1360 |
+
$stars_text = __("stars", "yasr");
|
1361 |
+
|
1362 |
foreach ($stats as $logged_votes) {
|
1363 |
|
1364 |
+
if ($i==1) {
|
1365 |
+
$stars_text = __("star", "yasr");
|
1366 |
+
}
|
1367 |
|
1368 |
+
echo "<div class=\"yasr-progress-bar-row-container\">
|
1369 |
+
<span class=\"yasr-progress-bar-name\">$i $stars_text</span>
|
1370 |
+
<span class=\"yasr-progress-bar\" id=\"yasr-progress-bar-postid-$post_id-progress-bar-$i\" ></span>
|
1371 |
+
<span class=\"yasr-progress-bar-votes-count\">$logged_votes[n_of_votes]</span>
|
1372 |
+
</div>";
|
1373 |
+
|
1374 |
+
$value_progressbar = $increase_bar_value * $logged_votes['n_of_votes']; //value of the single bar
|
1375 |
|
1376 |
+
$value_progressbar = round ($value_progressbar, 2); //use only 2 decimal
|
1377 |
|
1378 |
+
$array_values_progressbar[] = $value_progressbar;
|
1379 |
|
1380 |
+
$i--;
|
1381 |
|
|
|
1382 |
|
1383 |
} //End foreach
|
1384 |
|
1389 |
<script type="text/javascript">
|
1390 |
jQuery( document ).ready(function() {
|
1391 |
|
1392 |
+
var postId = <?php echo json_encode($post_id)?>;
|
1393 |
var arrayValueProgressbar = <?php echo (json_encode($array_values_progressbar)) ?>;
|
1394 |
|
1395 |
+
yasrDrawProgressBars (arrayValueProgressbar, postId);
|
1396 |
|
1397 |
});
|
1398 |
</script>
|
lib/yasr-functions.php
CHANGED
@@ -303,7 +303,7 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
|
|
303 |
}
|
304 |
|
305 |
else {
|
306 |
-
$title = "<span itemprop=\"itemReviewed\" itemscope itemtype=\"http://schema.org/
|
307 |
}
|
308 |
|
309 |
$div = "<div class=\"yasr_schema\" itemscope itemtype=\"http://schema.org/Review\">";
|
303 |
}
|
304 |
|
305 |
else {
|
306 |
+
$title = "<span itemprop=\"itemReviewed\" itemscope itemtype=\"http://schema.org/Product\"> <span itemprop=\"name\">". get_the_title() ."</span></span>";
|
307 |
}
|
308 |
|
309 |
$div = "<div class=\"yasr_schema\" itemscope itemtype=\"http://schema.org/Review\">";
|
lib/yasr-settings-functions.php
CHANGED
@@ -52,8 +52,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
52 |
add_settings_field( 'yasr_show_visitor_votes_in_loop', __('Show "Visitor Votes" in Archive Page?', 'yasr'), 'yasr_show_visitor_votes_in_loop_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
|
53 |
add_settings_field( 'yasr_custom_text', __('Insert custom text to show before / after stars', 'yasr'), 'yasr_custom_text_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
|
54 |
add_settings_field( 'yasr_visitors_stats', __('Do you want show stats for visitors votes?', 'yasr'), 'yasr_visitors_stats_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
|
55 |
-
add_settings_field( 'yasr_color_scheme', __('Which color scheme do you want to use?', 'yasr') , 'yasr_color_scheme_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
|
56 |
add_settings_field( 'yasr_allow_only_logged_in_id', __('Allow only logged in user to vote?', 'yasr'), 'yasr_allow_only_logged_in_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
|
|
|
57 |
add_settings_field( 'yasr_choose_snippet_id', __('Which rich snippets do you want to use?', 'yasr'), 'yasr_choose_snippet_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
|
58 |
add_settings_field( 'yasr_choose_overall_rating_method', __('How do you want to rate "Overall Rating"?', 'yasr'), 'yasr_choose_overall_rating_method_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
|
59 |
|
@@ -291,42 +291,24 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
291 |
|
292 |
function yasr_visitors_stats_callback($option) {
|
293 |
|
294 |
-
|
295 |
-
|
296 |
-
_e("Seems like you've imported gd star rating in the past, but then deleted the logs table. For now, you can't enable statistics", "yasr");
|
297 |
-
|
298 |
-
?>
|
299 |
-
|
300 |
-
<p> </p>
|
301 |
-
|
302 |
-
<hr>
|
303 |
-
|
304 |
-
<?php
|
305 |
-
|
306 |
-
}
|
307 |
-
|
308 |
-
else {
|
309 |
-
|
310 |
-
?>
|
311 |
-
|
312 |
-
<input type='radio' name='yasr_general_options[visitors_stats]' value='yes' class='yasr-general-options-scheme-color' <?php if ($option['visitors_stats']==='yes') echo " checked=\"checked\" "; ?> />
|
313 |
-
<?php _e('Yes', 'yasr')?>
|
314 |
-
|
315 |
-
|
316 |
|
317 |
-
|
318 |
-
|
319 |
-
|
|
|
320 |
|
321 |
-
|
|
|
|
|
322 |
|
323 |
-
<
|
324 |
|
325 |
-
|
326 |
|
327 |
-
|
328 |
|
329 |
-
|
330 |
|
331 |
}
|
332 |
|
52 |
add_settings_field( 'yasr_show_visitor_votes_in_loop', __('Show "Visitor Votes" in Archive Page?', 'yasr'), 'yasr_show_visitor_votes_in_loop_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
|
53 |
add_settings_field( 'yasr_custom_text', __('Insert custom text to show before / after stars', 'yasr'), 'yasr_custom_text_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
|
54 |
add_settings_field( 'yasr_visitors_stats', __('Do you want show stats for visitors votes?', 'yasr'), 'yasr_visitors_stats_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
|
|
|
55 |
add_settings_field( 'yasr_allow_only_logged_in_id', __('Allow only logged in user to vote?', 'yasr'), 'yasr_allow_only_logged_in_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
|
56 |
+
add_settings_field( 'yasr_color_scheme', __('Which color scheme do you want to use?', 'yasr') , 'yasr_color_scheme_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option);
|
57 |
add_settings_field( 'yasr_choose_snippet_id', __('Which rich snippets do you want to use?', 'yasr'), 'yasr_choose_snippet_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
|
58 |
add_settings_field( 'yasr_choose_overall_rating_method', __('How do you want to rate "Overall Rating"?', 'yasr'), 'yasr_choose_overall_rating_method_callback', 'yasr_general_settings_tab', 'yasr_general_options_section_id', $option );
|
59 |
|
291 |
|
292 |
function yasr_visitors_stats_callback($option) {
|
293 |
|
294 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
|
296 |
+
<input type='radio' name='yasr_general_options[visitors_stats]' value='yes' class='yasr-general-options-scheme-color' <?php if ($option['visitors_stats']==='yes') echo " checked=\"checked\" "; ?> />
|
297 |
+
<?php _e('Yes', 'yasr')?>
|
298 |
+
|
299 |
+
|
300 |
|
301 |
+
<input type='radio' name='yasr_general_options[visitors_stats]' value='no' class='yasr-general-options-scheme-color' <?php if ($option['visitors_stats']==='no') echo " checked=\"checked\" "; ?> />
|
302 |
+
<?php _e('No', 'yasr')?>
|
303 |
+
<br />
|
304 |
|
305 |
+
<br />
|
306 |
|
307 |
+
<p> </p>
|
308 |
|
309 |
+
<hr>
|
310 |
|
311 |
+
<?php
|
312 |
|
313 |
}
|
314 |
|
lib/yasr-shortcode-functions.php
CHANGED
@@ -165,6 +165,8 @@ function shortcode_visitor_votes_callback ($atts) {
|
|
165 |
$px_size = '32';
|
166 |
}
|
167 |
|
|
|
|
|
168 |
$shortcode_html = "<div id=\"yasr_visitor_votes_$post_id\" class=\"yasr-visitor-votes\">";
|
169 |
$span_after_rate_it = "";
|
170 |
|
@@ -221,9 +223,23 @@ function shortcode_visitor_votes_callback ($atts) {
|
|
221 |
|
222 |
}
|
223 |
|
224 |
-
|
225 |
-
|
226 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
[" . __("Total: ", "yasr") . "$votes_number " . __("Average: ","yasr") . "$medium_rating/5]
|
228 |
</span>";
|
229 |
|
@@ -244,16 +260,18 @@ function shortcode_visitor_votes_callback ($atts) {
|
|
244 |
|
245 |
//if (!is_feed()) {
|
246 |
|
247 |
-
|
248 |
-
$
|
249 |
-
|
250 |
-
$
|
251 |
-
$
|
252 |
-
$
|
253 |
-
$
|
254 |
-
$
|
|
|
|
|
255 |
|
256 |
-
$var_visitor_stats_enabled =
|
257 |
|
258 |
$javascript = "
|
259 |
|
@@ -261,7 +279,8 @@ function shortcode_visitor_votes_callback ($atts) {
|
|
261 |
|
262 |
jQuery(document).ready(function() {
|
263 |
|
264 |
-
var
|
|
|
265 |
var postid = $var_post_id;
|
266 |
var ajaxurl = $var_ajax_url;
|
267 |
var size = $var_size;
|
@@ -270,7 +289,7 @@ function shortcode_visitor_votes_callback ($atts) {
|
|
270 |
var loaderHtml = $var_loader_html;
|
271 |
var nonceVisitor = $var_nonce_visitor;
|
272 |
|
273 |
-
yasrVisitorsVotes(
|
274 |
|
275 |
var visitorStatsEnabled = $var_visitor_stats_enabled;
|
276 |
|
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\">";
|
171 |
$span_after_rate_it = "";
|
172 |
|
223 |
|
224 |
}
|
225 |
|
226 |
+
if (YASR_VISITORS_STATS === 'yes') {
|
227 |
+
|
228 |
+
$span_dashicon = "<span class=\"dashicons dashicons-chart-bar yasr-dashicons-visitor-stats \" id=\"yasr-total-average-dashicon-$post_id\" title=\"yasr-stats-dashicon\"></span>";
|
229 |
+
|
230 |
+
}
|
231 |
+
|
232 |
+
else {
|
233 |
+
|
234 |
+
$span_dashicon = "";
|
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 " . __("Average: ","yasr") . "$medium_rating/5]
|
244 |
</span>";
|
245 |
|
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 |
|
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;
|
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 |
|
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.1.1
|
7 |
-
Stable tag: 0.8.
|
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
|
@@ -47,12 +47,13 @@ If with gd-star-rating you're using a different number of stars from the default
|
|
47 |
* French (Thanks to Sébastien Gracia)
|
48 |
* Norwegian (Thanks to [Line](http://www.spilleautomatercasinobonuser.com) )
|
49 |
* Persian (Thanks to Babak Mehri )
|
|
|
50 |
|
51 |
Check [here](http://translate.yetanotherstarsrating.com/) to see if your translation is up to date
|
52 |
|
53 |
= Related Link =
|
54 |
* News and doc at [Yasr Official Site](http://yetanotherstarsrating.com/)
|
55 |
-
* [Demo site](http://yetanotherstarsrating.com/)
|
56 |
|
57 |
= Press =
|
58 |
* [WPMUDEV](http://premium.wpmudev.org/blog/free-wordpress-ratings-testimonials-subscriber-count-plugins/)
|
@@ -107,7 +108,7 @@ When a visitor (logged in or not) rates a post/page, his rating is stored in the
|
|
107 |
= Wait, wait! Do I need to keep in mind all this shortcode? =
|
108 |
Of course not: you can easily add it on the visual editor just by clicking on the yellow star and then choose what to insert.
|
109 |
|
110 |
-
[Demo site](http://yetanotherstarsrating.com/)
|
111 |
|
112 |
== Screenshots ==
|
113 |
1. Example of yasr in a videogame review
|
@@ -118,6 +119,13 @@ Of course not: you can easily add it on the visual editor just by clicking on th
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
= 0.8.0 =
|
122 |
* Stats for visitor votes works now on click and not on hover
|
123 |
* Buddypress compatibility
|
4 |
Requires at least: 3.5
|
5 |
Contributors: Dudo
|
6 |
Tested up to: 4.1.1
|
7 |
+
Stable tag: 0.8.1
|
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
|
47 |
* French (Thanks to Sébastien Gracia)
|
48 |
* Norwegian (Thanks to [Line](http://www.spilleautomatercasinobonuser.com) )
|
49 |
* Persian (Thanks to Babak Mehri )
|
50 |
+
* Brazilian Portuguese (Thanks to [Iuri](http://assistirfilmesonline.info) )
|
51 |
|
52 |
Check [here](http://translate.yetanotherstarsrating.com/) to see if your translation is up to date
|
53 |
|
54 |
= Related Link =
|
55 |
* News and doc at [Yasr Official Site](http://yetanotherstarsrating.com/)
|
56 |
+
* [Demo site](http://demo.yetanotherstarsrating.com/)
|
57 |
|
58 |
= Press =
|
59 |
* [WPMUDEV](http://premium.wpmudev.org/blog/free-wordpress-ratings-testimonials-subscriber-count-plugins/)
|
108 |
= Wait, wait! Do I need to keep in mind all this shortcode? =
|
109 |
Of course not: you can easily add it on the visual editor just by clicking on the yellow star and then choose what to insert.
|
110 |
|
111 |
+
[Demo site](http://demo.yetanotherstarsrating.com/)
|
112 |
|
113 |
== Screenshots ==
|
114 |
1. Example of yasr in a videogame review
|
119 |
|
120 |
== Changelog ==
|
121 |
|
122 |
+
= 0.8.1 =
|
123 |
+
* Fixed: Undefined variable in yasr_visitor_votes shortcode
|
124 |
+
* Fixed: Fixed cursor style when is over the dashicon
|
125 |
+
* Tweaked: Stars' description is now translatable
|
126 |
+
* Twaeked: Dashicon doens't load if visitor stats are disabled
|
127 |
+
* Tweaked: Italian translation
|
128 |
+
|
129 |
= 0.8.0 =
|
130 |
* Stats for visitor votes works now on click and not on hover
|
131 |
* Buddypress compatibility
|
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.
|
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.
|
32 |
|
33 |
//Plugin relative path
|
34 |
define( "YASR_RELATIVE_PATH", dirname(__FILE__) );
|
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.1
|
7 |
* Author: Dario Curvino
|
8 |
* Author URI: https://yetanotherstarsrating.com/
|
9 |
* License: GPL2
|
28 |
*/
|
29 |
|
30 |
|
31 |
+
define('YASR_VERSION_NUM', '0.8.1');
|
32 |
|
33 |
//Plugin relative path
|
34 |
define( "YASR_RELATIVE_PATH", dirname(__FILE__) );
|