Version Description
- Bugfix: now it's not possible to vote 0
- Code Cleanup in yasr-settings-page and added link to yasr site, www.yetanotherstarsrating.com
Download this release
Release Info
Developer | Dudo |
Plugin | Yasr – Yet Another Stars Rating |
Version | 0.6.0 |
Comparing to | |
See all releases |
Code changes from version 0.5.9 to 0.6.0
- js/yasr-front.js +50 -32
- languages/yasr-de_DE.mo +0 -0
- languages/yasr-de_DE.po +143 -124
- languages/yasr-it_IT.mo +0 -0
- languages/yasr-it_IT.po +142 -124
- languages/yasr-pl_PL.mo +0 -0
- languages/yasr-pl_PL.po +141 -124
- lib/yasr-ajax-functions.php +11 -1
- lib/yasr-functions.php +54 -0
- readme.txt +6 -2
- yasr-settings-page.php +3 -37
- yet-another-stars-rating.php +3 -3
js/yasr-front.js
CHANGED
@@ -72,24 +72,32 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
72 |
var value = el.rateit('value');
|
73 |
var value = value.toFixed(1); //
|
74 |
|
75 |
-
|
|
|
|
|
76 |
|
77 |
-
|
78 |
-
action: 'yasr_update_visitor_rating',
|
79 |
-
rating: value,
|
80 |
-
post_id: postid,
|
81 |
-
size: size,
|
82 |
-
nonce_visitor: nonceVisitor
|
83 |
-
};
|
84 |
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
94 |
});//End function update vote
|
95 |
|
@@ -112,30 +120,40 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
112 |
var value = el.rateit('value');
|
113 |
var value = value.toFixed(1); //
|
114 |
|
115 |
-
|
|
|
|
|
116 |
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
-
//Send value to the Server
|
126 |
-
jQuery.post(ajaxurl, data, function(response) {
|
127 |
-
//response
|
128 |
-
jQuery('#yasr_visitor_votes').html(response);
|
129 |
-
jQuery('.rateit').rateit();
|
130 |
-
//Create a cookie to disable double vote
|
131 |
-
jQuery.cookie(cookiename, value, { expires : 360 });
|
132 |
-
}) ;
|
133 |
});
|
134 |
|
135 |
} //End function default_rating_shortcode
|
136 |
|
137 |
} //End function yasr visitor votes
|
138 |
|
|
|
139 |
function yasrMostOrHighestRatedChart (ajaxurl) {
|
140 |
|
141 |
//Link do nothing
|
72 |
var value = el.rateit('value');
|
73 |
var value = value.toFixed(1); //
|
74 |
|
75 |
+
if (value < 1) {
|
76 |
+
jQuery('#yasr_visitor_votes').html('You can\'t vote 0');
|
77 |
+
}
|
78 |
|
79 |
+
else {
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
|
81 |
+
jQuery('#yasr_visitor_votes').html(loaderHtml);
|
82 |
+
|
83 |
+
var data = {
|
84 |
+
action: 'yasr_update_visitor_rating',
|
85 |
+
rating: value,
|
86 |
+
post_id: postid,
|
87 |
+
size: size,
|
88 |
+
nonce_visitor: nonceVisitor
|
89 |
+
};
|
90 |
+
|
91 |
+
//Send value to the Server
|
92 |
+
jQuery.post(ajaxurl, data, function(response) {
|
93 |
+
//response
|
94 |
+
jQuery('#yasr_visitor_votes').html(response);
|
95 |
+
jQuery('.rateit').rateit();
|
96 |
+
//Create a cookie to disable double vote
|
97 |
+
jQuery.cookie(cookiename, value, { expires : 360 });
|
98 |
+
}) ;
|
99 |
+
|
100 |
+
}
|
101 |
|
102 |
});//End function update vote
|
103 |
|
120 |
var value = el.rateit('value');
|
121 |
var value = value.toFixed(1); //
|
122 |
|
123 |
+
if (value < 1) {
|
124 |
+
jQuery('#yasr_visitor_votes').html('You can\'t vote 0');
|
125 |
+
}
|
126 |
|
127 |
+
else {
|
128 |
+
|
129 |
+
jQuery('#yasr_visitor_votes').html(loaderHtml);
|
130 |
+
|
131 |
+
var data = {
|
132 |
+
action: 'yasr_send_visitor_rating',
|
133 |
+
rating: value,
|
134 |
+
post_id: postid,
|
135 |
+
size: size,
|
136 |
+
nonce_visitor: nonceVisitor
|
137 |
+
};
|
138 |
+
|
139 |
+
//Send value to the Server
|
140 |
+
jQuery.post(ajaxurl, data, function(response) {
|
141 |
+
//response
|
142 |
+
jQuery('#yasr_visitor_votes').html(response);
|
143 |
+
jQuery('.rateit').rateit();
|
144 |
+
//Create a cookie to disable double vote
|
145 |
+
jQuery.cookie(cookiename, value, { expires : 360 });
|
146 |
+
}) ;
|
147 |
+
|
148 |
+
}
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
});
|
151 |
|
152 |
} //End function default_rating_shortcode
|
153 |
|
154 |
} //End function yasr visitor votes
|
155 |
|
156 |
+
|
157 |
function yasrMostOrHighestRatedChart (ajaxurl) {
|
158 |
|
159 |
//Link do nothing
|
languages/yasr-de_DE.mo
CHANGED
Binary file
|
languages/yasr-de_DE.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YASR lenguages\n"
|
4 |
-
"POT-Creation-Date: 2014-09
|
5 |
-
"PO-Revision-Date: 2014-09
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: de_DE\n"
|
@@ -17,8 +17,8 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-1: ../lib\n"
|
18 |
|
19 |
#: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
|
20 |
-
#: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:
|
21 |
-
#: ../lib/yasr-ajax-functions.php:
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr ""
|
24 |
"Du verfügst nicht über ausreichende Berechtigungen um auf diese Seite "
|
@@ -40,90 +40,70 @@ msgstr "Multi-Sets"
|
|
40 |
msgid "Styles"
|
41 |
msgstr "Styles"
|
42 |
|
43 |
-
#: ../yasr-settings-page.php:94 ../yasr-settings-page.php:
|
44 |
msgid "Save"
|
45 |
msgstr "Speichern"
|
46 |
|
47 |
-
#: ../yasr-settings-page.php:
|
48 |
-
#: ../yasr-settings-page.php:294 ../yasr-settings-page.php:318
|
49 |
-
msgid "Donations"
|
50 |
-
msgstr "Spenden"
|
51 |
-
|
52 |
-
#: ../yasr-settings-page.php:102 ../yasr-settings-page.php:259
|
53 |
-
#: ../yasr-settings-page.php:296 ../yasr-settings-page.php:320
|
54 |
-
msgid ""
|
55 |
-
"If you have found this plugin useful, please consider making a donation to "
|
56 |
-
"help support future development. Your support will be much appreciated. "
|
57 |
-
msgstr ""
|
58 |
-
"Wenn du das Plugin nützlich gefunden hast, dann unterstütze doch die "
|
59 |
-
"Weiterentwicklung mit einer kleinen Spende. Deine Unterstützung ist uns viel "
|
60 |
-
"Wert."
|
61 |
-
|
62 |
-
#: ../yasr-settings-page.php:104 ../yasr-settings-page.php:261
|
63 |
-
#: ../yasr-settings-page.php:298 ../yasr-settings-page.php:322
|
64 |
-
msgid "Thank you!"
|
65 |
-
msgstr "Herzlichen Dank!"
|
66 |
-
|
67 |
-
#: ../yasr-settings-page.php:124
|
68 |
msgid "Import Gd Star Rating"
|
69 |
msgstr "Importiere Gd Star Rating Daten"
|
70 |
|
71 |
-
#: ../yasr-settings-page.php:
|
72 |
msgid "I've found a previous installation of Gd Star Rating."
|
73 |
msgstr "Es wurde eine Installation von Gd Star Rating gefunden."
|
74 |
|
75 |
-
#: ../yasr-settings-page.php:
|
76 |
msgid "Do you want proceed to import data?"
|
77 |
msgstr "Willst du mit dem Import der Daten fortfahren?"
|
78 |
|
79 |
-
#: ../yasr-settings-page.php:
|
80 |
msgid "Yes, Begin Import"
|
81 |
msgstr "Ja, Import starten"
|
82 |
|
83 |
-
#: ../yasr-settings-page.php:
|
84 |
msgid "Click on Proceed to import Gd Star Rating data."
|
85 |
msgstr "Klicke auf Fortfahren um die Gd Star Rating Daten zu importieren."
|
86 |
|
87 |
-
#: ../yasr-settings-page.php:
|
88 |
msgid "Proceed"
|
89 |
msgstr "Fortfahren"
|
90 |
|
91 |
-
#: ../yasr-settings-page.php:
|
92 |
msgid "Manage GD Star Data"
|
93 |
msgstr "Verwalte GD Star Rating Daten"
|
94 |
|
95 |
-
#: ../yasr-settings-page.php:
|
96 |
msgid "Gd Star Rating has been already imported."
|
97 |
msgstr "Gd Star Rating Daten wurden bereits importiert."
|
98 |
|
99 |
-
#: ../yasr-settings-page.php:
|
100 |
msgid "If you wish you can import it again, but"
|
101 |
msgstr "Du kannst die Daten erneut importieren, aber"
|
102 |
|
103 |
-
#: ../yasr-settings-page.php:
|
104 |
msgid "you will lose all data you've collect since the import!"
|
105 |
msgstr "dann gehen alle gesammelten Daten seit dem letzten Import verloren!"
|
106 |
|
107 |
-
#: ../yasr-settings-page.php:
|
108 |
msgid "Ok, Import Again"
|
109 |
msgstr "Ok, erneut importieren"
|
110 |
|
111 |
-
#: ../yasr-settings-page.php:
|
112 |
msgid ""
|
113 |
"Click on Proceed to import again Gd Star Rating data. This may take a while!"
|
114 |
msgstr ""
|
115 |
"Klicke auf Fortfahren um die Gd Star Rating Daten erneut zu importieren. Das "
|
116 |
"kann eine Weile dauern!"
|
117 |
|
118 |
-
#: ../yasr-settings-page.php:
|
119 |
msgid "Manage Multi Set"
|
120 |
msgstr "Multi-Sets verwalten"
|
121 |
|
122 |
-
#: ../yasr-settings-page.php:
|
123 |
msgid "What is a Multi Set?"
|
124 |
msgstr "Was ist ein Multi-Set?"
|
125 |
|
126 |
-
#: ../yasr-settings-page.php:
|
127 |
msgid ""
|
128 |
"Multi Set allows you to insert a rate for each aspect about the product / "
|
129 |
"local business / whetever you're reviewing, example in the image below."
|
@@ -132,7 +112,7 @@ msgstr ""
|
|
132 |
"Produkts / lokalen Geschäfts etc. abzugeben. Die nachfolgende Abbildung "
|
133 |
"zeigt ein Beispiel."
|
134 |
|
135 |
-
#: ../yasr-settings-page.php:
|
136 |
msgid ""
|
137 |
"You can create up to 99 different Multi Set and each one can contain up to 9 "
|
138 |
"different fields. Once you've saved it, you can insert the rates while "
|
@@ -144,7 +124,7 @@ msgstr ""
|
|
144 |
"deine Bewertung direkt unterhalb des Editors abgeben, wie am Bild unten "
|
145 |
"(klicken zum Vergrößern) zu sehen ist."
|
146 |
|
147 |
-
#: ../yasr-settings-page.php:
|
148 |
msgid ""
|
149 |
"In order to insert your Multi Sets into a post or page, you can either past "
|
150 |
"the short code that will appear at the bottom of the box or just click on "
|
@@ -154,31 +134,58 @@ msgstr ""
|
|
154 |
"entweder den angezeigten Shortcode am Ende der Box nutzen oder einfach auf "
|
155 |
"den Stern im Editor klicken und \"Insert Multi-Set\" wählen."
|
156 |
|
157 |
-
#: ../yasr-settings-page.php:
|
158 |
msgid "Close this message"
|
159 |
msgstr "Nachricht schließen"
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
#: ../yasr-metabox-multiple-rating.php:35
|
162 |
msgid "Choose wich set you want to use"
|
163 |
msgstr "Wähle ein Multi-Set aus"
|
164 |
|
165 |
#: ../yasr-metabox-multiple-rating.php:46
|
|
|
166 |
#: ../lib/yasr-settings-functions.php:431
|
167 |
msgid "Select"
|
168 |
msgstr "Auswählen"
|
169 |
|
170 |
-
#: ../yasr-metabox-overall-rating.php:
|
171 |
-
#: ../yasr-metabox-overall-rating.php:111
|
172 |
msgid "Rate this article / item"
|
173 |
msgstr "Bewerte diesen Artikel / Gegenstand"
|
174 |
|
175 |
-
#: ../yasr-metabox-overall-rating.php:
|
176 |
#: ../lib/yasr-shortcode-functions.php:147
|
177 |
msgid "Loading, please wait"
|
178 |
msgstr "Wird geladen, bitte warten"
|
179 |
|
180 |
-
#: ../yasr-metabox-overall-rating.php:
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid ""
|
183 |
"Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
|
184 |
"where you want to display this rating"
|
@@ -186,10 +193,6 @@ msgstr ""
|
|
186 |
"Füge den Shortcode <strong>[yasr_overall_rating]</strong> an der Position "
|
187 |
"ein, wo die Bewertung angezeigt werden soll."
|
188 |
|
189 |
-
#: ../yasr-metabox-overall-rating.php:176
|
190 |
-
msgid "Save Vote"
|
191 |
-
msgstr "Bewertung speichern"
|
192 |
-
|
193 |
#: ../lib/yasr-shortcode-functions.php:192
|
194 |
#: ../lib/yasr-shortcode-functions.php:204
|
195 |
#: ../lib/yasr-shortcode-functions.php:209
|
@@ -199,10 +202,10 @@ msgstr "Bewertung speichern"
|
|
199 |
#: ../lib/yasr-shortcode-functions.php:260
|
200 |
#: ../lib/yasr-shortcode-functions.php:266
|
201 |
#: ../lib/yasr-shortcode-functions.php:281
|
202 |
-
#: ../lib/yasr-shortcode-functions.php:287 ../lib/yasr-ajax-functions.php:
|
203 |
-
#: ../lib/yasr-ajax-functions.php:
|
204 |
-
#: ../lib/yasr-ajax-functions.php:
|
205 |
-
#: ../lib/yasr-ajax-functions.php:
|
206 |
msgid "Total: "
|
207 |
msgstr "Gesamt:"
|
208 |
|
@@ -350,7 +353,7 @@ msgstr "Was soll eingefügt werden?"
|
|
350 |
msgid "Overall Rating / Author Rating"
|
351 |
msgstr "Gesamtbewertung (Autorenbewertung)"
|
352 |
|
353 |
-
#: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:
|
354 |
msgid "Visitor Votes"
|
355 |
msgstr "Besucherbewertung"
|
356 |
|
@@ -374,18 +377,18 @@ msgstr "Nach dem Artikel"
|
|
374 |
msgid "Size"
|
375 |
msgstr "Größe"
|
376 |
|
377 |
-
#: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:
|
378 |
-
#: ../lib/yasr-ajax-functions.php:
|
379 |
msgid "Small"
|
380 |
msgstr "Klein"
|
381 |
|
382 |
-
#: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:
|
383 |
-
#: ../lib/yasr-ajax-functions.php:
|
384 |
msgid "Medium"
|
385 |
msgstr "Mittel"
|
386 |
|
387 |
-
#: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:
|
388 |
-
#: ../lib/yasr-ajax-functions.php:
|
389 |
msgid "Large"
|
390 |
msgstr "Groß"
|
391 |
|
@@ -644,19 +647,19 @@ msgstr " Lasse diesen Bereich leer, wenn du nicht weißt was du tust."
|
|
644 |
msgid "No previous Gd Star Rating installation was found"
|
645 |
msgstr "Es wurde keine Gd Star Ratings Installation gefunden"
|
646 |
|
647 |
-
#: ../lib/yasr-db-functions.php:
|
648 |
msgid "No Recenet votes yet"
|
649 |
msgstr "Keine kürzlichen Bewertungen"
|
650 |
|
651 |
-
#: ../lib/yasr-db-functions.php:
|
652 |
msgid "anonymous"
|
653 |
msgstr "Anonym"
|
654 |
|
655 |
-
#: ../lib/yasr-db-functions.php:
|
656 |
msgid "Ip address"
|
657 |
msgstr "IP-Adresse"
|
658 |
|
659 |
-
#: ../lib/yasr-db-functions.php:
|
660 |
msgid "Pages"
|
661 |
msgstr "Seiten"
|
662 |
|
@@ -683,177 +686,189 @@ msgid "You don't have enought privileges to insert Multi Set"
|
|
683 |
msgstr ""
|
684 |
"Du hast nicht die notwendigen Berechtigungen um ein Multi-Set einzufügen"
|
685 |
|
686 |
-
#: ../lib/yasr-functions.php:
|
687 |
msgid " reviewed by "
|
688 |
msgstr " bewertet von"
|
689 |
|
690 |
-
#: ../lib/yasr-functions.php:
|
691 |
msgid " on "
|
692 |
msgstr " mit"
|
693 |
|
694 |
-
#: ../lib/yasr-functions.php:
|
695 |
msgid " rated "
|
696 |
msgstr " ist bewertet mit "
|
697 |
|
698 |
-
#: ../lib/yasr-functions.php:
|
699 |
msgid " on 5.0"
|
700 |
msgstr " mit 5"
|
701 |
|
702 |
-
#: ../lib/yasr-functions.php:
|
703 |
#, fuzzy
|
704 |
msgid " written by "
|
705 |
msgstr " bewertet von"
|
706 |
|
707 |
-
#: ../lib/yasr-functions.php:
|
708 |
msgid " average rating "
|
709 |
msgstr " Durchschnittsbewertung"
|
710 |
|
711 |
-
#: ../lib/yasr-functions.php:
|
712 |
msgid " user ratings"
|
713 |
msgstr " Besucherbewertungen"
|
714 |
|
715 |
-
#: ../lib/yasr-
|
|
|
|
|
|
|
|
|
716 |
msgid "You've rated it "
|
717 |
msgstr "Bewertung abgegeben"
|
718 |
|
719 |
-
#: ../lib/yasr-ajax-functions.php:
|
720 |
msgid "You've reset the vote"
|
721 |
msgstr "Die Bewertung wurde zurückgesetzt"
|
722 |
|
723 |
-
#: ../lib/yasr-ajax-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
724 |
msgid "Choose a vote for each element"
|
725 |
msgstr "Wähle eine Bewertung für jedes Element"
|
726 |
|
727 |
-
#: ../lib/yasr-ajax-functions.php:
|
728 |
msgid "Remember to insert this shortcode"
|
729 |
msgstr "Diesen Shortcode"
|
730 |
|
731 |
-
#: ../lib/yasr-ajax-functions.php:
|
732 |
msgid "where you want to display this multi set"
|
733 |
msgstr "an der Stelle einfügen, wo das Multi-Set angezeigt werden soll."
|
734 |
|
735 |
-
#: ../lib/yasr-ajax-functions.php:
|
736 |
msgid "Choose a vote for every element"
|
737 |
msgstr "Wähle eine Bewertung für jedes Element"
|
738 |
|
739 |
-
#: ../lib/yasr-ajax-functions.php:
|
740 |
msgid "Main"
|
741 |
msgstr "Allgemein"
|
742 |
|
743 |
-
#: ../lib/yasr-ajax-functions.php:
|
744 |
msgid "Charts"
|
745 |
msgstr "Charts"
|
746 |
|
747 |
-
#: ../lib/yasr-ajax-functions.php:
|
748 |
msgid "Read the doc"
|
749 |
msgstr "Lese die Dokumentation"
|
750 |
|
751 |
-
#: ../lib/yasr-ajax-functions.php:
|
752 |
msgid "Overall Rating / Review"
|
753 |
msgstr "Gesamtbewertung (Autorenbewertung)"
|
754 |
|
755 |
-
#: ../lib/yasr-ajax-functions.php:
|
756 |
msgid "Insert Overall Rating"
|
757 |
msgstr "Gesamtbewertung einfügen"
|
758 |
|
759 |
-
#: ../lib/yasr-ajax-functions.php:
|
760 |
msgid "Insert Overall Rating / Review for this post"
|
761 |
msgstr "Gesamtbewertung der Review-Autoren einfügen"
|
762 |
|
763 |
-
#: ../lib/yasr-ajax-functions.php:
|
764 |
msgid "Choose Size"
|
765 |
msgstr "Größe wählen"
|
766 |
|
767 |
-
#: ../lib/yasr-ajax-functions.php:
|
768 |
msgid "Insert Visitor Votes"
|
769 |
msgstr "Besucherbewertung einfügen"
|
770 |
|
771 |
-
#: ../lib/yasr-ajax-functions.php:
|
772 |
msgid "Insert the ability for your visitor to vote"
|
773 |
msgstr "Besucher dürfen Bewertungen abgeben"
|
774 |
|
775 |
-
#: ../lib/yasr-ajax-functions.php:
|
776 |
msgid "If you want to insert a Multi Set, pick one:"
|
777 |
msgstr "Vorhandene Multi-Sets"
|
778 |
|
779 |
-
#: ../lib/yasr-ajax-functions.php:
|
780 |
msgid "Choose wich set you want to insert."
|
781 |
msgstr "Wähle das einzufügende Multi-Set."
|
782 |
|
783 |
-
#: ../lib/yasr-ajax-functions.php:
|
784 |
msgid "Insert Multiset:"
|
785 |
msgstr "Multi-Set einfügen:"
|
786 |
|
787 |
-
#: ../lib/yasr-ajax-functions.php:
|
788 |
msgid "Insert Multiple Set"
|
789 |
msgstr "Multi-Set einfügen"
|
790 |
|
791 |
-
#: ../lib/yasr-ajax-functions.php:
|
792 |
msgid "Insert multiple set in this post ?"
|
793 |
msgstr "Multi-Set in Artikel/Seite einfügen?"
|
794 |
|
795 |
-
#: ../lib/yasr-ajax-functions.php:
|
796 |
msgid "Ranking reviews"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../lib/yasr-ajax-functions.php:
|
800 |
#, fuzzy
|
801 |
msgid "Insert Ranking reviews"
|
802 |
msgstr "Füge die Top 5 aktivsten Review-Autoren ein"
|
803 |
|
804 |
-
#: ../lib/yasr-ajax-functions.php:
|
805 |
#, fuzzy
|
806 |
msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
|
807 |
msgstr "Füge die Top 10 Artikel ein"
|
808 |
|
809 |
-
#: ../lib/yasr-ajax-functions.php:
|
810 |
#, fuzzy
|
811 |
msgid "Users' ranking"
|
812 |
msgstr "Gesamtbewertung einfügen"
|
813 |
|
814 |
-
#: ../lib/yasr-ajax-functions.php:
|
815 |
#, fuzzy
|
816 |
msgid "Insert Users ranking"
|
817 |
msgstr "Gesamtbewertung einfügen"
|
818 |
|
819 |
-
#: ../lib/yasr-ajax-functions.php:
|
820 |
#, fuzzy
|
821 |
msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
|
822 |
msgstr "Füge die Top 10 Artikel ein"
|
823 |
|
824 |
-
#: ../lib/yasr-ajax-functions.php:
|
825 |
msgid "Most active reviewers"
|
826 |
msgstr "Top 5 Aktivste Review-Autoren"
|
827 |
|
828 |
-
#: ../lib/yasr-ajax-functions.php:
|
829 |
#, fuzzy
|
830 |
msgid "Insert Most Active Reviewers"
|
831 |
msgstr "Top 5 aktivsten Review-Autoren"
|
832 |
|
833 |
-
#: ../lib/yasr-ajax-functions.php:
|
834 |
msgid "Insert Top 5 active reviewers"
|
835 |
msgstr "Füge die Top 5 aktivsten Review-Autoren ein"
|
836 |
|
837 |
-
#: ../lib/yasr-ajax-functions.php:
|
838 |
#, fuzzy
|
839 |
msgid "Most Active Users"
|
840 |
msgstr "Top 10 Aktivste Besucher"
|
841 |
|
842 |
-
#: ../lib/yasr-ajax-functions.php:
|
843 |
#, fuzzy
|
844 |
msgid "Insert Most Active Users"
|
845 |
msgstr "Füge die Top 10 aktivsten Besucher ein"
|
846 |
|
847 |
-
#: ../lib/yasr-ajax-functions.php:
|
848 |
#, fuzzy
|
849 |
msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
|
850 |
msgstr "Füge die Top 10 Artikel ein"
|
851 |
|
852 |
-
#: ../lib/yasr-ajax-functions.php:
|
853 |
msgid "Reviews and Visitor Votes have been successfull imported."
|
854 |
msgstr "Autoren-Reviews und Bewertungen wurden erfolgreich importiert."
|
855 |
|
856 |
-
#: ../lib/yasr-ajax-functions.php:
|
857 |
msgid ""
|
858 |
"Step2: I will check if you used Multiple Sets and if so I will import them. "
|
859 |
"THIS MAY TAKE A WHILE!"
|
@@ -861,70 +876,74 @@ msgstr ""
|
|
861 |
"Schritt 2: Prüfe ob Multi-Sets verwendet wurden und importiere diese. DAS "
|
862 |
"KANN ETWAS DAUERN!"
|
863 |
|
864 |
-
#: ../lib/yasr-ajax-functions.php:
|
865 |
msgid "Proceed Step 2"
|
866 |
msgstr "Fortfahren mit Schritt 2"
|
867 |
|
868 |
-
#: ../lib/yasr-ajax-functions.php:
|
869 |
msgid "Something goes wrong! Refresh the page and try again!"
|
870 |
msgstr ""
|
871 |
"Hier ist etwas schief gelaufen. Bitte aktualisiere die Seite und versuche es "
|
872 |
"noch einmal!"
|
873 |
|
874 |
-
#: ../lib/yasr-ajax-functions.php:
|
875 |
msgid "I've found Multiple Set! Importing..."
|
876 |
msgstr "Es wurden verschiedene Multi-Sets gefunden. Starte Import..."
|
877 |
|
878 |
-
#: ../lib/yasr-ajax-functions.php:
|
879 |
msgid "Multi Set's name has been successfull imported."
|
880 |
msgstr "Multi-Set Namen wurden erfolgreich importiert."
|
881 |
|
882 |
-
#: ../lib/yasr-ajax-functions.php:
|
883 |
msgid "Now I'm going to import Multi Set data"
|
884 |
msgstr "Der Import der Multi-Set Daten wird gestartet"
|
885 |
|
886 |
-
#: ../lib/yasr-ajax-functions.php:
|
887 |
msgid "All votes has been successfull imported."
|
888 |
msgstr "Alle Bewertungen wurden erfolgreich importiert."
|
889 |
|
890 |
-
#: ../lib/yasr-ajax-functions.php:
|
891 |
msgid "Done"
|
892 |
msgstr "Fertig"
|
893 |
|
894 |
-
#: ../lib/yasr-ajax-functions.php:
|
895 |
msgid "I've found Multiple Set's votes but I couldn't insert into db"
|
896 |
msgstr ""
|
897 |
"Es wurden Multi-Set Bewertungen gefunden aber diese konnten nicht in der "
|
898 |
"Datenbank gespeichert werden."
|
899 |
|
900 |
-
#: ../lib/yasr-ajax-functions.php:
|
901 |
msgid "I've found Multi Set but with no data"
|
902 |
msgstr "Das Multi-Set wurde gefunden aber es sind keine Daten vorhanden"
|
903 |
|
904 |
-
#: ../lib/yasr-ajax-functions.php:
|
905 |
msgid "I've found Multi Sets names but I couldn't insert into db"
|
906 |
msgstr ""
|
907 |
"Multi-Set Namen wurde gefunden aber konnten nicht in die Datenbank "
|
908 |
"importiert werden"
|
909 |
|
910 |
-
#: ../lib/yasr-ajax-functions.php:
|
911 |
msgid "Multisets were not found. Imported is done!"
|
912 |
msgstr "Kein Multi-Set gefunden aber Import war erfolgreich!"
|
913 |
|
914 |
-
#: ../lib/yasr-ajax-functions.php:
|
|
|
|
|
|
|
|
|
915 |
msgid "Average rating"
|
916 |
msgstr "Durchschnittsbewertung"
|
917 |
|
918 |
-
#: ../lib/yasr-ajax-functions.php:
|
919 |
msgid "Vote Saved"
|
920 |
msgstr "Bewertung gespeichert"
|
921 |
|
922 |
-
#: ../lib/yasr-ajax-functions.php:
|
923 |
-
#: ../lib/yasr-ajax-functions.php:
|
924 |
msgid "Vote Updated"
|
925 |
msgstr "Bewertung aktualisiert"
|
926 |
|
927 |
-
#: ../lib/yasr-ajax-functions.php:
|
928 |
msgid "Average "
|
929 |
msgstr "Durchschnitt"
|
930 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YASR lenguages\n"
|
4 |
+
"POT-Creation-Date: 2014-10-09 13:44+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-10-09 13:44+0100\n"
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: de_DE\n"
|
17 |
"X-Poedit-SearchPath-1: ../lib\n"
|
18 |
|
19 |
#: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
|
20 |
+
#: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:196
|
21 |
+
#: ../lib/yasr-ajax-functions.php:335 ../lib/yasr-ajax-functions.php:717
|
22 |
msgid "You do not have sufficient permissions to access this page."
|
23 |
msgstr ""
|
24 |
"Du verfügst nicht über ausreichende Berechtigungen um auf diese Seite "
|
40 |
msgid "Styles"
|
41 |
msgstr "Styles"
|
42 |
|
43 |
+
#: ../yasr-settings-page.php:94 ../yasr-settings-page.php:277
|
44 |
msgid "Save"
|
45 |
msgstr "Speichern"
|
46 |
|
47 |
+
#: ../yasr-settings-page.php:114
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
msgid "Import Gd Star Rating"
|
49 |
msgstr "Importiere Gd Star Rating Daten"
|
50 |
|
51 |
+
#: ../yasr-settings-page.php:115
|
52 |
msgid "I've found a previous installation of Gd Star Rating."
|
53 |
msgstr "Es wurde eine Installation von Gd Star Rating gefunden."
|
54 |
|
55 |
+
#: ../yasr-settings-page.php:115
|
56 |
msgid "Do you want proceed to import data?"
|
57 |
msgstr "Willst du mit dem Import der Daten fortfahren?"
|
58 |
|
59 |
+
#: ../yasr-settings-page.php:117
|
60 |
msgid "Yes, Begin Import"
|
61 |
msgstr "Ja, Import starten"
|
62 |
|
63 |
+
#: ../yasr-settings-page.php:121
|
64 |
msgid "Click on Proceed to import Gd Star Rating data."
|
65 |
msgstr "Klicke auf Fortfahren um die Gd Star Rating Daten zu importieren."
|
66 |
|
67 |
+
#: ../yasr-settings-page.php:124 ../yasr-settings-page.php:157
|
68 |
msgid "Proceed"
|
69 |
msgstr "Fortfahren"
|
70 |
|
71 |
+
#: ../yasr-settings-page.php:146
|
72 |
msgid "Manage GD Star Data"
|
73 |
msgstr "Verwalte GD Star Rating Daten"
|
74 |
|
75 |
+
#: ../yasr-settings-page.php:147
|
76 |
msgid "Gd Star Rating has been already imported."
|
77 |
msgstr "Gd Star Rating Daten wurden bereits importiert."
|
78 |
|
79 |
+
#: ../yasr-settings-page.php:148
|
80 |
msgid "If you wish you can import it again, but"
|
81 |
msgstr "Du kannst die Daten erneut importieren, aber"
|
82 |
|
83 |
+
#: ../yasr-settings-page.php:148
|
84 |
msgid "you will lose all data you've collect since the import!"
|
85 |
msgstr "dann gehen alle gesammelten Daten seit dem letzten Import verloren!"
|
86 |
|
87 |
+
#: ../yasr-settings-page.php:150
|
88 |
msgid "Ok, Import Again"
|
89 |
msgstr "Ok, erneut importieren"
|
90 |
|
91 |
+
#: ../yasr-settings-page.php:154
|
92 |
msgid ""
|
93 |
"Click on Proceed to import again Gd Star Rating data. This may take a while!"
|
94 |
msgstr ""
|
95 |
"Klicke auf Fortfahren um die Gd Star Rating Daten erneut zu importieren. Das "
|
96 |
"kann eine Weile dauern!"
|
97 |
|
98 |
+
#: ../yasr-settings-page.php:195
|
99 |
msgid "Manage Multi Set"
|
100 |
msgstr "Multi-Sets verwalten"
|
101 |
|
102 |
+
#: ../yasr-settings-page.php:199
|
103 |
msgid "What is a Multi Set?"
|
104 |
msgstr "Was ist ein Multi-Set?"
|
105 |
|
106 |
+
#: ../yasr-settings-page.php:204
|
107 |
msgid ""
|
108 |
"Multi Set allows you to insert a rate for each aspect about the product / "
|
109 |
"local business / whetever you're reviewing, example in the image below."
|
112 |
"Produkts / lokalen Geschäfts etc. abzugeben. Die nachfolgende Abbildung "
|
113 |
"zeigt ein Beispiel."
|
114 |
|
115 |
+
#: ../yasr-settings-page.php:208
|
116 |
msgid ""
|
117 |
"You can create up to 99 different Multi Set and each one can contain up to 9 "
|
118 |
"different fields. Once you've saved it, you can insert the rates while "
|
124 |
"deine Bewertung direkt unterhalb des Editors abgeben, wie am Bild unten "
|
125 |
"(klicken zum Vergrößern) zu sehen ist."
|
126 |
|
127 |
+
#: ../yasr-settings-page.php:212
|
128 |
msgid ""
|
129 |
"In order to insert your Multi Sets into a post or page, you can either past "
|
130 |
"the short code that will appear at the bottom of the box or just click on "
|
134 |
"entweder den angezeigten Shortcode am Ende der Box nutzen oder einfach auf "
|
135 |
"den Stern im Editor klicken und \"Insert Multi-Set\" wählen."
|
136 |
|
137 |
+
#: ../yasr-settings-page.php:218
|
138 |
msgid "Close this message"
|
139 |
msgstr "Nachricht schließen"
|
140 |
|
141 |
+
#: ../yasr-settings-page.php:247 ../lib/yasr-functions.php:446
|
142 |
+
#: ../lib/yasr-functions.php:472
|
143 |
+
msgid "Donations"
|
144 |
+
msgstr "Spenden"
|
145 |
+
|
146 |
+
#: ../yasr-settings-page.php:249 ../lib/yasr-functions.php:448
|
147 |
+
#: ../lib/yasr-functions.php:474
|
148 |
+
msgid ""
|
149 |
+
"If you have found this plugin useful, please consider making a donation to "
|
150 |
+
"help support future development. Your support will be much appreciated. "
|
151 |
+
msgstr ""
|
152 |
+
"Wenn du das Plugin nützlich gefunden hast, dann unterstütze doch die "
|
153 |
+
"Weiterentwicklung mit einer kleinen Spende. Deine Unterstützung ist uns viel "
|
154 |
+
"Wert."
|
155 |
+
|
156 |
+
#: ../yasr-settings-page.php:251 ../lib/yasr-functions.php:450
|
157 |
+
#: ../lib/yasr-functions.php:476
|
158 |
+
msgid "Thank you!"
|
159 |
+
msgstr "Herzlichen Dank!"
|
160 |
+
|
161 |
#: ../yasr-metabox-multiple-rating.php:35
|
162 |
msgid "Choose wich set you want to use"
|
163 |
msgstr "Wähle ein Multi-Set aus"
|
164 |
|
165 |
#: ../yasr-metabox-multiple-rating.php:46
|
166 |
+
#: ../yasr-metabox-overall-rating.php:193
|
167 |
#: ../lib/yasr-settings-functions.php:431
|
168 |
msgid "Select"
|
169 |
msgstr "Auswählen"
|
170 |
|
171 |
+
#: ../yasr-metabox-overall-rating.php:65 ../yasr-metabox-overall-rating.php:99
|
|
|
172 |
msgid "Rate this article / item"
|
173 |
msgstr "Bewerte diesen Artikel / Gegenstand"
|
174 |
|
175 |
+
#: ../yasr-metabox-overall-rating.php:71
|
176 |
#: ../lib/yasr-shortcode-functions.php:147
|
177 |
msgid "Loading, please wait"
|
178 |
msgstr "Wird geladen, bitte warten"
|
179 |
|
180 |
+
#: ../yasr-metabox-overall-rating.php:147
|
181 |
+
msgid "Save Vote"
|
182 |
+
msgstr "Bewertung speichern"
|
183 |
+
|
184 |
+
#: ../yasr-metabox-overall-rating.php:164
|
185 |
+
msgid "This review is about a..."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: ../yasr-metabox-overall-rating.php:211
|
189 |
msgid ""
|
190 |
"Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
|
191 |
"where you want to display this rating"
|
193 |
"Füge den Shortcode <strong>[yasr_overall_rating]</strong> an der Position "
|
194 |
"ein, wo die Bewertung angezeigt werden soll."
|
195 |
|
|
|
|
|
|
|
|
|
196 |
#: ../lib/yasr-shortcode-functions.php:192
|
197 |
#: ../lib/yasr-shortcode-functions.php:204
|
198 |
#: ../lib/yasr-shortcode-functions.php:209
|
202 |
#: ../lib/yasr-shortcode-functions.php:260
|
203 |
#: ../lib/yasr-shortcode-functions.php:266
|
204 |
#: ../lib/yasr-shortcode-functions.php:281
|
205 |
+
#: ../lib/yasr-shortcode-functions.php:287 ../lib/yasr-ajax-functions.php:979
|
206 |
+
#: ../lib/yasr-ajax-functions.php:987 ../lib/yasr-ajax-functions.php:1086
|
207 |
+
#: ../lib/yasr-ajax-functions.php:1094 ../lib/yasr-ajax-functions.php:1102
|
208 |
+
#: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
|
209 |
msgid "Total: "
|
210 |
msgstr "Gesamt:"
|
211 |
|
353 |
msgid "Overall Rating / Author Rating"
|
354 |
msgstr "Gesamtbewertung (Autorenbewertung)"
|
355 |
|
356 |
+
#: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
|
357 |
msgid "Visitor Votes"
|
358 |
msgstr "Besucherbewertung"
|
359 |
|
377 |
msgid "Size"
|
378 |
msgstr "Größe"
|
379 |
|
380 |
+
#: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
|
381 |
+
#: ../lib/yasr-ajax-functions.php:470
|
382 |
msgid "Small"
|
383 |
msgstr "Klein"
|
384 |
|
385 |
+
#: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
|
386 |
+
#: ../lib/yasr-ajax-functions.php:471
|
387 |
msgid "Medium"
|
388 |
msgstr "Mittel"
|
389 |
|
390 |
+
#: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
|
391 |
+
#: ../lib/yasr-ajax-functions.php:472
|
392 |
msgid "Large"
|
393 |
msgstr "Groß"
|
394 |
|
647 |
msgid "No previous Gd Star Rating installation was found"
|
648 |
msgstr "Es wurde keine Gd Star Ratings Installation gefunden"
|
649 |
|
650 |
+
#: ../lib/yasr-db-functions.php:259 ../lib/yasr-ajax-functions.php:729
|
651 |
msgid "No Recenet votes yet"
|
652 |
msgstr "Keine kürzlichen Bewertungen"
|
653 |
|
654 |
+
#: ../lib/yasr-db-functions.php:274 ../lib/yasr-ajax-functions.php:742
|
655 |
msgid "anonymous"
|
656 |
msgstr "Anonym"
|
657 |
|
658 |
+
#: ../lib/yasr-db-functions.php:297 ../lib/yasr-ajax-functions.php:765
|
659 |
msgid "Ip address"
|
660 |
msgstr "IP-Adresse"
|
661 |
|
662 |
+
#: ../lib/yasr-db-functions.php:338 ../lib/yasr-ajax-functions.php:806
|
663 |
msgid "Pages"
|
664 |
msgstr "Seiten"
|
665 |
|
686 |
msgstr ""
|
687 |
"Du hast nicht die notwendigen Berechtigungen um ein Multi-Set einzufügen"
|
688 |
|
689 |
+
#: ../lib/yasr-functions.php:292
|
690 |
msgid " reviewed by "
|
691 |
msgstr " bewertet von"
|
692 |
|
693 |
+
#: ../lib/yasr-functions.php:293
|
694 |
msgid " on "
|
695 |
msgstr " mit"
|
696 |
|
697 |
+
#: ../lib/yasr-functions.php:294
|
698 |
msgid " rated "
|
699 |
msgstr " ist bewertet mit "
|
700 |
|
701 |
+
#: ../lib/yasr-functions.php:294
|
702 |
msgid " on 5.0"
|
703 |
msgstr " mit 5"
|
704 |
|
705 |
+
#: ../lib/yasr-functions.php:349
|
706 |
#, fuzzy
|
707 |
msgid " written by "
|
708 |
msgstr " bewertet von"
|
709 |
|
710 |
+
#: ../lib/yasr-functions.php:351
|
711 |
msgid " average rating "
|
712 |
msgstr " Durchschnittsbewertung"
|
713 |
|
714 |
+
#: ../lib/yasr-functions.php:352
|
715 |
msgid " user ratings"
|
716 |
msgstr " Besucherbewertungen"
|
717 |
|
718 |
+
#: ../lib/yasr-functions.php:458 ../lib/yasr-functions.php:485
|
719 |
+
msgid "Follow YASR official site!"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: ../lib/yasr-ajax-functions.php:101
|
723 |
msgid "You've rated it "
|
724 |
msgstr "Bewertung abgegeben"
|
725 |
|
726 |
+
#: ../lib/yasr-ajax-functions.php:105
|
727 |
msgid "You've reset the vote"
|
728 |
msgstr "Die Bewertung wurde zurückgesetzt"
|
729 |
|
730 |
+
#: ../lib/yasr-ajax-functions.php:170
|
731 |
+
#, fuzzy
|
732 |
+
msgid ""
|
733 |
+
"There was an error while trying to insert the review type. Please report it"
|
734 |
+
msgstr ""
|
735 |
+
"Beim einfügen des Multi-Set Feldnamens ist etwas schief gelaufen. Bitte "
|
736 |
+
"melde das Problem"
|
737 |
+
|
738 |
+
#: ../lib/yasr-ajax-functions.php:207
|
739 |
msgid "Choose a vote for each element"
|
740 |
msgstr "Wähle eine Bewertung für jedes Element"
|
741 |
|
742 |
+
#: ../lib/yasr-ajax-functions.php:263 ../lib/yasr-ajax-functions.php:306
|
743 |
msgid "Remember to insert this shortcode"
|
744 |
msgstr "Diesen Shortcode"
|
745 |
|
746 |
+
#: ../lib/yasr-ajax-functions.php:265 ../lib/yasr-ajax-functions.php:308
|
747 |
msgid "where you want to display this multi set"
|
748 |
msgstr "an der Stelle einfügen, wo das Multi-Set angezeigt werden soll."
|
749 |
|
750 |
+
#: ../lib/yasr-ajax-functions.php:273
|
751 |
msgid "Choose a vote for every element"
|
752 |
msgstr "Wähle eine Bewertung für jedes Element"
|
753 |
|
754 |
+
#: ../lib/yasr-ajax-functions.php:432
|
755 |
msgid "Main"
|
756 |
msgstr "Allgemein"
|
757 |
|
758 |
+
#: ../lib/yasr-ajax-functions.php:433
|
759 |
msgid "Charts"
|
760 |
msgstr "Charts"
|
761 |
|
762 |
+
#: ../lib/yasr-ajax-functions.php:435
|
763 |
msgid "Read the doc"
|
764 |
msgstr "Lese die Dokumentation"
|
765 |
|
766 |
+
#: ../lib/yasr-ajax-functions.php:444
|
767 |
msgid "Overall Rating / Review"
|
768 |
msgstr "Gesamtbewertung (Autorenbewertung)"
|
769 |
|
770 |
+
#: ../lib/yasr-ajax-functions.php:446
|
771 |
msgid "Insert Overall Rating"
|
772 |
msgstr "Gesamtbewertung einfügen"
|
773 |
|
774 |
+
#: ../lib/yasr-ajax-functions.php:447
|
775 |
msgid "Insert Overall Rating / Review for this post"
|
776 |
msgstr "Gesamtbewertung der Review-Autoren einfügen"
|
777 |
|
778 |
+
#: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
|
779 |
msgid "Choose Size"
|
780 |
msgstr "Größe wählen"
|
781 |
|
782 |
+
#: ../lib/yasr-ajax-functions.php:464
|
783 |
msgid "Insert Visitor Votes"
|
784 |
msgstr "Besucherbewertung einfügen"
|
785 |
|
786 |
+
#: ../lib/yasr-ajax-functions.php:465
|
787 |
msgid "Insert the ability for your visitor to vote"
|
788 |
msgstr "Besucher dürfen Bewertungen abgeben"
|
789 |
|
790 |
+
#: ../lib/yasr-ajax-functions.php:482
|
791 |
msgid "If you want to insert a Multi Set, pick one:"
|
792 |
msgstr "Vorhandene Multi-Sets"
|
793 |
|
794 |
+
#: ../lib/yasr-ajax-functions.php:488
|
795 |
msgid "Choose wich set you want to insert."
|
796 |
msgstr "Wähle das einzufügende Multi-Set."
|
797 |
|
798 |
+
#: ../lib/yasr-ajax-functions.php:496
|
799 |
msgid "Insert Multiset:"
|
800 |
msgstr "Multi-Set einfügen:"
|
801 |
|
802 |
+
#: ../lib/yasr-ajax-functions.php:499
|
803 |
msgid "Insert Multiple Set"
|
804 |
msgstr "Multi-Set einfügen"
|
805 |
|
806 |
+
#: ../lib/yasr-ajax-functions.php:500
|
807 |
msgid "Insert multiple set in this post ?"
|
808 |
msgstr "Multi-Set in Artikel/Seite einfügen?"
|
809 |
|
810 |
+
#: ../lib/yasr-ajax-functions.php:515
|
811 |
msgid "Ranking reviews"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: ../lib/yasr-ajax-functions.php:516
|
815 |
#, fuzzy
|
816 |
msgid "Insert Ranking reviews"
|
817 |
msgstr "Füge die Top 5 aktivsten Review-Autoren ein"
|
818 |
|
819 |
+
#: ../lib/yasr-ajax-functions.php:517
|
820 |
#, fuzzy
|
821 |
msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
|
822 |
msgstr "Füge die Top 10 Artikel ein"
|
823 |
|
824 |
+
#: ../lib/yasr-ajax-functions.php:521
|
825 |
#, fuzzy
|
826 |
msgid "Users' ranking"
|
827 |
msgstr "Gesamtbewertung einfügen"
|
828 |
|
829 |
+
#: ../lib/yasr-ajax-functions.php:522
|
830 |
#, fuzzy
|
831 |
msgid "Insert Users ranking"
|
832 |
msgstr "Gesamtbewertung einfügen"
|
833 |
|
834 |
+
#: ../lib/yasr-ajax-functions.php:523
|
835 |
#, fuzzy
|
836 |
msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
|
837 |
msgstr "Füge die Top 10 Artikel ein"
|
838 |
|
839 |
+
#: ../lib/yasr-ajax-functions.php:527
|
840 |
msgid "Most active reviewers"
|
841 |
msgstr "Top 5 Aktivste Review-Autoren"
|
842 |
|
843 |
+
#: ../lib/yasr-ajax-functions.php:528
|
844 |
#, fuzzy
|
845 |
msgid "Insert Most Active Reviewers"
|
846 |
msgstr "Top 5 aktivsten Review-Autoren"
|
847 |
|
848 |
+
#: ../lib/yasr-ajax-functions.php:529
|
849 |
msgid "Insert Top 5 active reviewers"
|
850 |
msgstr "Füge die Top 5 aktivsten Review-Autoren ein"
|
851 |
|
852 |
+
#: ../lib/yasr-ajax-functions.php:533
|
853 |
#, fuzzy
|
854 |
msgid "Most Active Users"
|
855 |
msgstr "Top 10 Aktivste Besucher"
|
856 |
|
857 |
+
#: ../lib/yasr-ajax-functions.php:534
|
858 |
#, fuzzy
|
859 |
msgid "Insert Most Active Users"
|
860 |
msgstr "Füge die Top 10 aktivsten Besucher ein"
|
861 |
|
862 |
+
#: ../lib/yasr-ajax-functions.php:535
|
863 |
#, fuzzy
|
864 |
msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
|
865 |
msgstr "Füge die Top 10 Artikel ein"
|
866 |
|
867 |
+
#: ../lib/yasr-ajax-functions.php:587
|
868 |
msgid "Reviews and Visitor Votes have been successfull imported."
|
869 |
msgstr "Autoren-Reviews und Bewertungen wurden erfolgreich importiert."
|
870 |
|
871 |
+
#: ../lib/yasr-ajax-functions.php:593
|
872 |
msgid ""
|
873 |
"Step2: I will check if you used Multiple Sets and if so I will import them. "
|
874 |
"THIS MAY TAKE A WHILE!"
|
876 |
"Schritt 2: Prüfe ob Multi-Sets verwendet wurden und importiere diese. DAS "
|
877 |
"KANN ETWAS DAUERN!"
|
878 |
|
879 |
+
#: ../lib/yasr-ajax-functions.php:595
|
880 |
msgid "Proceed Step 2"
|
881 |
msgstr "Fortfahren mit Schritt 2"
|
882 |
|
883 |
+
#: ../lib/yasr-ajax-functions.php:602
|
884 |
msgid "Something goes wrong! Refresh the page and try again!"
|
885 |
msgstr ""
|
886 |
"Hier ist etwas schief gelaufen. Bitte aktualisiere die Seite und versuche es "
|
887 |
"noch einmal!"
|
888 |
|
889 |
+
#: ../lib/yasr-ajax-functions.php:631
|
890 |
msgid "I've found Multiple Set! Importing..."
|
891 |
msgstr "Es wurden verschiedene Multi-Sets gefunden. Starte Import..."
|
892 |
|
893 |
+
#: ../lib/yasr-ajax-functions.php:640
|
894 |
msgid "Multi Set's name has been successfull imported."
|
895 |
msgstr "Multi-Set Namen wurden erfolgreich importiert."
|
896 |
|
897 |
+
#: ../lib/yasr-ajax-functions.php:642
|
898 |
msgid "Now I'm going to import Multi Set data"
|
899 |
msgstr "Der Import der Multi-Set Daten wird gestartet"
|
900 |
|
901 |
+
#: ../lib/yasr-ajax-functions.php:653
|
902 |
msgid "All votes has been successfull imported."
|
903 |
msgstr "Alle Bewertungen wurden erfolgreich importiert."
|
904 |
|
905 |
+
#: ../lib/yasr-ajax-functions.php:655
|
906 |
msgid "Done"
|
907 |
msgstr "Fertig"
|
908 |
|
909 |
+
#: ../lib/yasr-ajax-functions.php:660
|
910 |
msgid "I've found Multiple Set's votes but I couldn't insert into db"
|
911 |
msgstr ""
|
912 |
"Es wurden Multi-Set Bewertungen gefunden aber diese konnten nicht in der "
|
913 |
"Datenbank gespeichert werden."
|
914 |
|
915 |
+
#: ../lib/yasr-ajax-functions.php:668
|
916 |
msgid "I've found Multi Set but with no data"
|
917 |
msgstr "Das Multi-Set wurde gefunden aber es sind keine Daten vorhanden"
|
918 |
|
919 |
+
#: ../lib/yasr-ajax-functions.php:677
|
920 |
msgid "I've found Multi Sets names but I couldn't insert into db"
|
921 |
msgstr ""
|
922 |
"Multi-Set Namen wurde gefunden aber konnten nicht in die Datenbank "
|
923 |
"importiert werden"
|
924 |
|
925 |
+
#: ../lib/yasr-ajax-functions.php:685
|
926 |
msgid "Multisets were not found. Imported is done!"
|
927 |
msgstr "Kein Multi-Set gefunden aber Import war erfolgreich!"
|
928 |
|
929 |
+
#: ../lib/yasr-ajax-functions.php:888 ../lib/yasr-ajax-functions.php:1017
|
930 |
+
msgid "Error: you can't vote 0"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: ../lib/yasr-ajax-functions.php:979 ../lib/yasr-ajax-functions.php:987
|
934 |
msgid "Average rating"
|
935 |
msgstr "Durchschnittsbewertung"
|
936 |
|
937 |
+
#: ../lib/yasr-ajax-functions.php:980 ../lib/yasr-ajax-functions.php:988
|
938 |
msgid "Vote Saved"
|
939 |
msgstr "Bewertung gespeichert"
|
940 |
|
941 |
+
#: ../lib/yasr-ajax-functions.php:1087 ../lib/yasr-ajax-functions.php:1095
|
942 |
+
#: ../lib/yasr-ajax-functions.php:1103
|
943 |
msgid "Vote Updated"
|
944 |
msgstr "Bewertung aktualisiert"
|
945 |
|
946 |
+
#: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
|
947 |
msgid "Average "
|
948 |
msgstr "Durchschnitt"
|
949 |
|
languages/yasr-it_IT.mo
CHANGED
Binary file
|
languages/yasr-it_IT.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Yasr Translation\n"
|
4 |
-
"POT-Creation-Date: 2014-09
|
5 |
-
"PO-Revision-Date: 2014-09
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it\n"
|
@@ -16,8 +16,8 @@ msgstr ""
|
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
|
19 |
-
#: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:
|
20 |
-
#: ../lib/yasr-ajax-functions.php:
|
21 |
msgid "You do not have sufficient permissions to access this page."
|
22 |
msgstr "Non hai permeessi sufficienti per accedere a questa pagina"
|
23 |
|
@@ -37,90 +37,70 @@ msgstr "Set Multipli"
|
|
37 |
msgid "Styles"
|
38 |
msgstr "Stili"
|
39 |
|
40 |
-
#: ../yasr-settings-page.php:94 ../yasr-settings-page.php:
|
41 |
msgid "Save"
|
42 |
msgstr "Salva"
|
43 |
|
44 |
-
#: ../yasr-settings-page.php:
|
45 |
-
#: ../yasr-settings-page.php:294 ../yasr-settings-page.php:318
|
46 |
-
msgid "Donations"
|
47 |
-
msgstr "Donazioni"
|
48 |
-
|
49 |
-
#: ../yasr-settings-page.php:102 ../yasr-settings-page.php:259
|
50 |
-
#: ../yasr-settings-page.php:296 ../yasr-settings-page.php:320
|
51 |
-
msgid ""
|
52 |
-
"If you have found this plugin useful, please consider making a donation to "
|
53 |
-
"help support future development. Your support will be much appreciated. "
|
54 |
-
msgstr ""
|
55 |
-
"Se trovi questo plugin utile, per favore considera di fare una donazione per "
|
56 |
-
"supportarne lo sviluppo. Il tuo aiuto sarà molto apprezzato! P.s. YASR è "
|
57 |
-
"made in Italy ;)"
|
58 |
-
|
59 |
-
#: ../yasr-settings-page.php:104 ../yasr-settings-page.php:261
|
60 |
-
#: ../yasr-settings-page.php:298 ../yasr-settings-page.php:322
|
61 |
-
msgid "Thank you!"
|
62 |
-
msgstr "Grazie!"
|
63 |
-
|
64 |
-
#: ../yasr-settings-page.php:124
|
65 |
msgid "Import Gd Star Rating"
|
66 |
msgstr "Importa Gd Star Rating"
|
67 |
|
68 |
-
#: ../yasr-settings-page.php:
|
69 |
msgid "I've found a previous installation of Gd Star Rating."
|
70 |
msgstr "Ho trovato un'installazione precedentedente di Gd Star Rating"
|
71 |
|
72 |
-
#: ../yasr-settings-page.php:
|
73 |
msgid "Do you want proceed to import data?"
|
74 |
msgstr "Vuoi procedere nell'importazione dei dati?"
|
75 |
|
76 |
-
#: ../yasr-settings-page.php:
|
77 |
msgid "Yes, Begin Import"
|
78 |
msgstr "Si, Inizia"
|
79 |
|
80 |
-
#: ../yasr-settings-page.php:
|
81 |
msgid "Click on Proceed to import Gd Star Rating data."
|
82 |
msgstr "Clicca su Procedi per importare i dati di Gd Star Rating"
|
83 |
|
84 |
-
#: ../yasr-settings-page.php:
|
85 |
msgid "Proceed"
|
86 |
msgstr "Procedi"
|
87 |
|
88 |
-
#: ../yasr-settings-page.php:
|
89 |
msgid "Manage GD Star Data"
|
90 |
msgstr "Gestisci dati di GD Star Rating"
|
91 |
|
92 |
-
#: ../yasr-settings-page.php:
|
93 |
msgid "Gd Star Rating has been already imported."
|
94 |
msgstr "Gd Star Rating è stato già importato"
|
95 |
|
96 |
-
#: ../yasr-settings-page.php:
|
97 |
msgid "If you wish you can import it again, but"
|
98 |
msgstr "Se vuoi lo puoi importare di nuovo, ma"
|
99 |
|
100 |
-
#: ../yasr-settings-page.php:
|
101 |
msgid "you will lose all data you've collect since the import!"
|
102 |
msgstr "perderai tutti i dati che hai realizzato dall'import in poi!"
|
103 |
|
104 |
-
#: ../yasr-settings-page.php:
|
105 |
msgid "Ok, Import Again"
|
106 |
msgstr "Ok, importa nuovamente"
|
107 |
|
108 |
-
#: ../yasr-settings-page.php:
|
109 |
msgid ""
|
110 |
"Click on Proceed to import again Gd Star Rating data. This may take a while!"
|
111 |
msgstr ""
|
112 |
"Clicca su Procedi per importare di nuovo i dati di Gd Star Rating. Potrebbe "
|
113 |
"richiedere un pò di tempo!"
|
114 |
|
115 |
-
#: ../yasr-settings-page.php:
|
116 |
msgid "Manage Multi Set"
|
117 |
msgstr "Set Multipli"
|
118 |
|
119 |
-
#: ../yasr-settings-page.php:
|
120 |
msgid "What is a Multi Set?"
|
121 |
msgstr "Che cos'è un Set Multiplo?"
|
122 |
|
123 |
-
#: ../yasr-settings-page.php:
|
124 |
msgid ""
|
125 |
"Multi Set allows you to insert a rate for each aspect about the product / "
|
126 |
"local business / whetever you're reviewing, example in the image below."
|
@@ -129,7 +109,7 @@ msgstr ""
|
|
129 |
"prodotto / attività / qualsiasi cosa tua stia recensendo, esempio "
|
130 |
"nell'immagine sottostante."
|
131 |
|
132 |
-
#: ../yasr-settings-page.php:
|
133 |
msgid ""
|
134 |
"You can create up to 99 different Multi Set and each one can contain up to 9 "
|
135 |
"different fields. Once you've saved it, you can insert the rates while "
|
@@ -141,7 +121,7 @@ msgstr ""
|
|
141 |
"scrivendo il tuo articolo nel box sotto l'editor, come puoi vedere in questa "
|
142 |
"immagine (clicca per allargare)"
|
143 |
|
144 |
-
#: ../yasr-settings-page.php:
|
145 |
msgid ""
|
146 |
"In order to insert your Multi Sets into a post or page, you can either past "
|
147 |
"the short code that will appear at the bottom of the box or just click on "
|
@@ -152,31 +132,58 @@ msgstr ""
|
|
152 |
"cliccare sulla stella presente nell'editor visuale e selezionare \"Inserisci "
|
153 |
"Set Multiplo\""
|
154 |
|
155 |
-
#: ../yasr-settings-page.php:
|
156 |
msgid "Close this message"
|
157 |
msgstr "Chiudi questo messaggio"
|
158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
#: ../yasr-metabox-multiple-rating.php:35
|
160 |
msgid "Choose wich set you want to use"
|
161 |
msgstr "Scegli che set vuoi usare"
|
162 |
|
163 |
#: ../yasr-metabox-multiple-rating.php:46
|
|
|
164 |
#: ../lib/yasr-settings-functions.php:431
|
165 |
msgid "Select"
|
166 |
msgstr "Seleziona"
|
167 |
|
168 |
-
#: ../yasr-metabox-overall-rating.php:
|
169 |
-
#: ../yasr-metabox-overall-rating.php:111
|
170 |
msgid "Rate this article / item"
|
171 |
msgstr "Vota questo articolo / oggetto"
|
172 |
|
173 |
-
#: ../yasr-metabox-overall-rating.php:
|
174 |
#: ../lib/yasr-shortcode-functions.php:147
|
175 |
msgid "Loading, please wait"
|
176 |
msgstr "Caricamento, attendere prego"
|
177 |
|
178 |
-
#: ../yasr-metabox-overall-rating.php:
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid ""
|
181 |
"Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
|
182 |
"where you want to display this rating"
|
@@ -184,10 +191,6 @@ msgstr ""
|
|
184 |
"Ricorda di inserire questo shortcode <strong>[yasr_overall_rating]</strong> "
|
185 |
"dove vuoi far apparire questo voto"
|
186 |
|
187 |
-
#: ../yasr-metabox-overall-rating.php:176
|
188 |
-
msgid "Save Vote"
|
189 |
-
msgstr "Salva Voto"
|
190 |
-
|
191 |
#: ../lib/yasr-shortcode-functions.php:192
|
192 |
#: ../lib/yasr-shortcode-functions.php:204
|
193 |
#: ../lib/yasr-shortcode-functions.php:209
|
@@ -197,10 +200,10 @@ msgstr "Salva Voto"
|
|
197 |
#: ../lib/yasr-shortcode-functions.php:260
|
198 |
#: ../lib/yasr-shortcode-functions.php:266
|
199 |
#: ../lib/yasr-shortcode-functions.php:281
|
200 |
-
#: ../lib/yasr-shortcode-functions.php:287 ../lib/yasr-ajax-functions.php:
|
201 |
-
#: ../lib/yasr-ajax-functions.php:
|
202 |
-
#: ../lib/yasr-ajax-functions.php:
|
203 |
-
#: ../lib/yasr-ajax-functions.php:
|
204 |
msgid "Total: "
|
205 |
msgstr "Voti: "
|
206 |
|
@@ -345,7 +348,7 @@ msgstr "Cosa?"
|
|
345 |
msgid "Overall Rating / Author Rating"
|
346 |
msgstr "Voto Complessivo / Voto Autore"
|
347 |
|
348 |
-
#: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:
|
349 |
msgid "Visitor Votes"
|
350 |
msgstr "Voto Utenti"
|
351 |
|
@@ -369,18 +372,18 @@ msgstr "Dopo il contenuto"
|
|
369 |
msgid "Size"
|
370 |
msgstr "Grandezza"
|
371 |
|
372 |
-
#: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:
|
373 |
-
#: ../lib/yasr-ajax-functions.php:
|
374 |
msgid "Small"
|
375 |
msgstr "Piccolo"
|
376 |
|
377 |
-
#: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:
|
378 |
-
#: ../lib/yasr-ajax-functions.php:
|
379 |
msgid "Medium"
|
380 |
msgstr "Medio"
|
381 |
|
382 |
-
#: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:
|
383 |
-
#: ../lib/yasr-ajax-functions.php:
|
384 |
msgid "Large"
|
385 |
msgstr "Grande"
|
386 |
|
@@ -636,19 +639,19 @@ msgstr "Lascialo vuoto se non stai cosa stai facendo"
|
|
636 |
msgid "No previous Gd Star Rating installation was found"
|
637 |
msgstr "Installazione precedente di Gd Star Rating non stata trovata"
|
638 |
|
639 |
-
#: ../lib/yasr-db-functions.php:
|
640 |
msgid "No Recenet votes yet"
|
641 |
msgstr "Ancora nessun voto recente"
|
642 |
|
643 |
-
#: ../lib/yasr-db-functions.php:
|
644 |
msgid "anonymous"
|
645 |
msgstr "anonimo"
|
646 |
|
647 |
-
#: ../lib/yasr-db-functions.php:
|
648 |
msgid "Ip address"
|
649 |
msgstr "Indirizzo Ip"
|
650 |
|
651 |
-
#: ../lib/yasr-db-functions.php:
|
652 |
msgid "Pages"
|
653 |
msgstr "Pagine"
|
654 |
|
@@ -672,167 +675,178 @@ msgstr "Non hai permessi sufficienti per inserire il Voto Complessivo"
|
|
672 |
msgid "You don't have enought privileges to insert Multi Set"
|
673 |
msgstr "Non hai abbastanza permessi per inserire un Multi Set"
|
674 |
|
675 |
-
#: ../lib/yasr-functions.php:
|
676 |
msgid " reviewed by "
|
677 |
msgstr " recensito da "
|
678 |
|
679 |
-
#: ../lib/yasr-functions.php:
|
680 |
msgid " on "
|
681 |
msgstr " il "
|
682 |
|
683 |
-
#: ../lib/yasr-functions.php:
|
684 |
msgid " rated "
|
685 |
msgstr " votato "
|
686 |
|
687 |
-
#: ../lib/yasr-functions.php:
|
688 |
msgid " on 5.0"
|
689 |
msgstr " su 5.0 "
|
690 |
|
691 |
-
#: ../lib/yasr-functions.php:
|
692 |
msgid " written by "
|
693 |
msgstr " scritto da "
|
694 |
|
695 |
-
#: ../lib/yasr-functions.php:
|
696 |
msgid " average rating "
|
697 |
msgstr " media voto "
|
698 |
|
699 |
-
#: ../lib/yasr-functions.php:
|
700 |
msgid " user ratings"
|
701 |
msgstr " voti utenti "
|
702 |
|
703 |
-
#: ../lib/yasr-
|
|
|
|
|
|
|
|
|
704 |
msgid "You've rated it "
|
705 |
msgstr "Voto assegnato "
|
706 |
|
707 |
-
#: ../lib/yasr-ajax-functions.php:
|
708 |
msgid "You've reset the vote"
|
709 |
msgstr "Hai resettato il voto"
|
710 |
|
711 |
-
#: ../lib/yasr-ajax-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
712 |
msgid "Choose a vote for each element"
|
713 |
msgstr "Scegli un voto per ogni elemento"
|
714 |
|
715 |
-
#: ../lib/yasr-ajax-functions.php:
|
716 |
msgid "Remember to insert this shortcode"
|
717 |
msgstr "Ricorda di inserire questo shortcode"
|
718 |
|
719 |
-
#: ../lib/yasr-ajax-functions.php:
|
720 |
msgid "where you want to display this multi set"
|
721 |
msgstr "dove vuoi mostrare questo Multi Set"
|
722 |
|
723 |
-
#: ../lib/yasr-ajax-functions.php:
|
724 |
msgid "Choose a vote for every element"
|
725 |
msgstr "Scegli un voto per ogni elemento"
|
726 |
|
727 |
-
#: ../lib/yasr-ajax-functions.php:
|
728 |
msgid "Main"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../lib/yasr-ajax-functions.php:
|
732 |
msgid "Charts"
|
733 |
msgstr "Classifiche"
|
734 |
|
735 |
-
#: ../lib/yasr-ajax-functions.php:
|
736 |
msgid "Read the doc"
|
737 |
msgstr "Leggi la documentazione"
|
738 |
|
739 |
-
#: ../lib/yasr-ajax-functions.php:
|
740 |
msgid "Overall Rating / Review"
|
741 |
msgstr "Voto Complessivo"
|
742 |
|
743 |
-
#: ../lib/yasr-ajax-functions.php:
|
744 |
msgid "Insert Overall Rating"
|
745 |
msgstr "Inserisci Voto Complessivo"
|
746 |
|
747 |
-
#: ../lib/yasr-ajax-functions.php:
|
748 |
msgid "Insert Overall Rating / Review for this post"
|
749 |
msgstr "Inserisci Voto Complessivo / Recensione per questo post"
|
750 |
|
751 |
-
#: ../lib/yasr-ajax-functions.php:
|
752 |
msgid "Choose Size"
|
753 |
msgstr "Scegli la grandezza"
|
754 |
|
755 |
-
#: ../lib/yasr-ajax-functions.php:
|
756 |
msgid "Insert Visitor Votes"
|
757 |
msgstr "Inserisci Voti Utenti"
|
758 |
|
759 |
-
#: ../lib/yasr-ajax-functions.php:
|
760 |
msgid "Insert the ability for your visitor to vote"
|
761 |
msgstr "Permetti ai tuoi visitatori di votare"
|
762 |
|
763 |
-
#: ../lib/yasr-ajax-functions.php:
|
764 |
msgid "If you want to insert a Multi Set, pick one:"
|
765 |
msgstr "Se vuoi inserire un Set Multiplo, scegline uno:"
|
766 |
|
767 |
-
#: ../lib/yasr-ajax-functions.php:
|
768 |
msgid "Choose wich set you want to insert."
|
769 |
msgstr "Scegli quale Set Multiplo inserire"
|
770 |
|
771 |
-
#: ../lib/yasr-ajax-functions.php:
|
772 |
msgid "Insert Multiset:"
|
773 |
msgstr "Inserisci Set Multiplo:"
|
774 |
|
775 |
-
#: ../lib/yasr-ajax-functions.php:
|
776 |
msgid "Insert Multiple Set"
|
777 |
msgstr "Inserisci Set Multiplo"
|
778 |
|
779 |
-
#: ../lib/yasr-ajax-functions.php:
|
780 |
msgid "Insert multiple set in this post ?"
|
781 |
msgstr "Vuoi inserire il Set Multiplo per questo post ?"
|
782 |
|
783 |
-
#: ../lib/yasr-ajax-functions.php:
|
784 |
msgid "Ranking reviews"
|
785 |
msgstr "Classifica recensioni"
|
786 |
|
787 |
-
#: ../lib/yasr-ajax-functions.php:
|
788 |
msgid "Insert Ranking reviews"
|
789 |
msgstr "Classifica recensioni"
|
790 |
|
791 |
-
#: ../lib/yasr-ajax-functions.php:
|
792 |
msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
|
793 |
msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_overall_rating]"
|
794 |
|
795 |
-
#: ../lib/yasr-ajax-functions.php:
|
796 |
msgid "Users' ranking"
|
797 |
msgstr "Classifica degli utenti"
|
798 |
|
799 |
-
#: ../lib/yasr-ajax-functions.php:
|
800 |
msgid "Insert Users ranking"
|
801 |
msgstr "Inserisci Classifica Utenti"
|
802 |
|
803 |
-
#: ../lib/yasr-ajax-functions.php:
|
804 |
msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
|
805 |
msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_visitor_votes]"
|
806 |
|
807 |
-
#: ../lib/yasr-ajax-functions.php:
|
808 |
msgid "Most active reviewers"
|
809 |
msgstr "Recensori più attivi"
|
810 |
|
811 |
-
#: ../lib/yasr-ajax-functions.php:
|
812 |
msgid "Insert Most Active Reviewers"
|
813 |
msgstr "Inserisci i 5 recensori più attivi"
|
814 |
|
815 |
-
#: ../lib/yasr-ajax-functions.php:
|
816 |
msgid "Insert Top 5 active reviewers"
|
817 |
msgstr "Inserisci i 5 recensori più attivi"
|
818 |
|
819 |
-
#: ../lib/yasr-ajax-functions.php:
|
820 |
msgid "Most Active Users"
|
821 |
msgstr "Utenti più attivi"
|
822 |
|
823 |
-
#: ../lib/yasr-ajax-functions.php:
|
824 |
msgid "Insert Most Active Users"
|
825 |
msgstr "Inserisci i 10 utenti più attivi"
|
826 |
|
827 |
-
#: ../lib/yasr-ajax-functions.php:
|
828 |
msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
|
829 |
msgstr "Inserisci i 10 utenti più attivi in [yasr_visitor_votes]"
|
830 |
|
831 |
-
#: ../lib/yasr-ajax-functions.php:
|
832 |
msgid "Reviews and Visitor Votes have been successfull imported."
|
833 |
msgstr "Recensioni e Voti utenti sono stati importati con successo."
|
834 |
|
835 |
-
#: ../lib/yasr-ajax-functions.php:
|
836 |
msgid ""
|
837 |
"Step2: I will check if you used Multiple Sets and if so I will import them. "
|
838 |
"THIS MAY TAKE A WHILE!"
|
@@ -840,64 +854,68 @@ msgstr ""
|
|
840 |
"Step2: Contrellerò se hai usato Set Multipli e se li trovo l'importerò: PUÒ "
|
841 |
"RICHIEDERE UN PÒ DI TEMPO!"
|
842 |
|
843 |
-
#: ../lib/yasr-ajax-functions.php:
|
844 |
msgid "Proceed Step 2"
|
845 |
msgstr "Procedi Step 2"
|
846 |
|
847 |
-
#: ../lib/yasr-ajax-functions.php:
|
848 |
msgid "Something goes wrong! Refresh the page and try again!"
|
849 |
msgstr "Qualcosa è andato storto! Aggiorna la pagina e prova ancora!"
|
850 |
|
851 |
-
#: ../lib/yasr-ajax-functions.php:
|
852 |
msgid "I've found Multiple Set! Importing..."
|
853 |
msgstr "Set Multipli trovati! Importazione..."
|
854 |
|
855 |
-
#: ../lib/yasr-ajax-functions.php:
|
856 |
msgid "Multi Set's name has been successfull imported."
|
857 |
msgstr "I nomi dei Set Multipli sono stati importati con successo"
|
858 |
|
859 |
-
#: ../lib/yasr-ajax-functions.php:
|
860 |
msgid "Now I'm going to import Multi Set data"
|
861 |
msgstr "Ora importerò i dati dei Set Multipli"
|
862 |
|
863 |
-
#: ../lib/yasr-ajax-functions.php:
|
864 |
msgid "All votes has been successfull imported."
|
865 |
msgstr "Tutti i voti sono stati importati con successo"
|
866 |
|
867 |
-
#: ../lib/yasr-ajax-functions.php:
|
868 |
msgid "Done"
|
869 |
msgstr "Fatto"
|
870 |
|
871 |
-
#: ../lib/yasr-ajax-functions.php:
|
872 |
msgid "I've found Multiple Set's votes but I couldn't insert into db"
|
873 |
msgstr "Ho trovato i voti per i Set Multi ma non li ho potuti inserire nel db"
|
874 |
|
875 |
-
#: ../lib/yasr-ajax-functions.php:
|
876 |
msgid "I've found Multi Set but with no data"
|
877 |
msgstr "ho trovato Set Multipli ma senza dati"
|
878 |
|
879 |
-
#: ../lib/yasr-ajax-functions.php:
|
880 |
msgid "I've found Multi Sets names but I couldn't insert into db"
|
881 |
msgstr "Ho trovato Set Multipli ma non li ho potuti inserire nel db"
|
882 |
|
883 |
-
#: ../lib/yasr-ajax-functions.php:
|
884 |
msgid "Multisets were not found. Imported is done!"
|
885 |
msgstr "Set Multipli non trovati. Importazione dati conclusa!"
|
886 |
|
887 |
-
#: ../lib/yasr-ajax-functions.php:
|
|
|
|
|
|
|
|
|
888 |
msgid "Average rating"
|
889 |
msgstr "Media Voto "
|
890 |
|
891 |
-
#: ../lib/yasr-ajax-functions.php:
|
892 |
msgid "Vote Saved"
|
893 |
msgstr "Voto Salvato"
|
894 |
|
895 |
-
#: ../lib/yasr-ajax-functions.php:
|
896 |
-
#: ../lib/yasr-ajax-functions.php:
|
897 |
msgid "Vote Updated"
|
898 |
msgstr "Voto Aggiornato"
|
899 |
|
900 |
-
#: ../lib/yasr-ajax-functions.php:
|
901 |
msgid "Average "
|
902 |
msgstr "Media Voto "
|
903 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Yasr Translation\n"
|
4 |
+
"POT-Creation-Date: 2014-10-09 13:43+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-10-09 13:44+0100\n"
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
|
19 |
+
#: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:196
|
20 |
+
#: ../lib/yasr-ajax-functions.php:335 ../lib/yasr-ajax-functions.php:717
|
21 |
msgid "You do not have sufficient permissions to access this page."
|
22 |
msgstr "Non hai permeessi sufficienti per accedere a questa pagina"
|
23 |
|
37 |
msgid "Styles"
|
38 |
msgstr "Stili"
|
39 |
|
40 |
+
#: ../yasr-settings-page.php:94 ../yasr-settings-page.php:277
|
41 |
msgid "Save"
|
42 |
msgstr "Salva"
|
43 |
|
44 |
+
#: ../yasr-settings-page.php:114
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
msgid "Import Gd Star Rating"
|
46 |
msgstr "Importa Gd Star Rating"
|
47 |
|
48 |
+
#: ../yasr-settings-page.php:115
|
49 |
msgid "I've found a previous installation of Gd Star Rating."
|
50 |
msgstr "Ho trovato un'installazione precedentedente di Gd Star Rating"
|
51 |
|
52 |
+
#: ../yasr-settings-page.php:115
|
53 |
msgid "Do you want proceed to import data?"
|
54 |
msgstr "Vuoi procedere nell'importazione dei dati?"
|
55 |
|
56 |
+
#: ../yasr-settings-page.php:117
|
57 |
msgid "Yes, Begin Import"
|
58 |
msgstr "Si, Inizia"
|
59 |
|
60 |
+
#: ../yasr-settings-page.php:121
|
61 |
msgid "Click on Proceed to import Gd Star Rating data."
|
62 |
msgstr "Clicca su Procedi per importare i dati di Gd Star Rating"
|
63 |
|
64 |
+
#: ../yasr-settings-page.php:124 ../yasr-settings-page.php:157
|
65 |
msgid "Proceed"
|
66 |
msgstr "Procedi"
|
67 |
|
68 |
+
#: ../yasr-settings-page.php:146
|
69 |
msgid "Manage GD Star Data"
|
70 |
msgstr "Gestisci dati di GD Star Rating"
|
71 |
|
72 |
+
#: ../yasr-settings-page.php:147
|
73 |
msgid "Gd Star Rating has been already imported."
|
74 |
msgstr "Gd Star Rating è stato già importato"
|
75 |
|
76 |
+
#: ../yasr-settings-page.php:148
|
77 |
msgid "If you wish you can import it again, but"
|
78 |
msgstr "Se vuoi lo puoi importare di nuovo, ma"
|
79 |
|
80 |
+
#: ../yasr-settings-page.php:148
|
81 |
msgid "you will lose all data you've collect since the import!"
|
82 |
msgstr "perderai tutti i dati che hai realizzato dall'import in poi!"
|
83 |
|
84 |
+
#: ../yasr-settings-page.php:150
|
85 |
msgid "Ok, Import Again"
|
86 |
msgstr "Ok, importa nuovamente"
|
87 |
|
88 |
+
#: ../yasr-settings-page.php:154
|
89 |
msgid ""
|
90 |
"Click on Proceed to import again Gd Star Rating data. This may take a while!"
|
91 |
msgstr ""
|
92 |
"Clicca su Procedi per importare di nuovo i dati di Gd Star Rating. Potrebbe "
|
93 |
"richiedere un pò di tempo!"
|
94 |
|
95 |
+
#: ../yasr-settings-page.php:195
|
96 |
msgid "Manage Multi Set"
|
97 |
msgstr "Set Multipli"
|
98 |
|
99 |
+
#: ../yasr-settings-page.php:199
|
100 |
msgid "What is a Multi Set?"
|
101 |
msgstr "Che cos'è un Set Multiplo?"
|
102 |
|
103 |
+
#: ../yasr-settings-page.php:204
|
104 |
msgid ""
|
105 |
"Multi Set allows you to insert a rate for each aspect about the product / "
|
106 |
"local business / whetever you're reviewing, example in the image below."
|
109 |
"prodotto / attività / qualsiasi cosa tua stia recensendo, esempio "
|
110 |
"nell'immagine sottostante."
|
111 |
|
112 |
+
#: ../yasr-settings-page.php:208
|
113 |
msgid ""
|
114 |
"You can create up to 99 different Multi Set and each one can contain up to 9 "
|
115 |
"different fields. Once you've saved it, you can insert the rates while "
|
121 |
"scrivendo il tuo articolo nel box sotto l'editor, come puoi vedere in questa "
|
122 |
"immagine (clicca per allargare)"
|
123 |
|
124 |
+
#: ../yasr-settings-page.php:212
|
125 |
msgid ""
|
126 |
"In order to insert your Multi Sets into a post or page, you can either past "
|
127 |
"the short code that will appear at the bottom of the box or just click on "
|
132 |
"cliccare sulla stella presente nell'editor visuale e selezionare \"Inserisci "
|
133 |
"Set Multiplo\""
|
134 |
|
135 |
+
#: ../yasr-settings-page.php:218
|
136 |
msgid "Close this message"
|
137 |
msgstr "Chiudi questo messaggio"
|
138 |
|
139 |
+
#: ../yasr-settings-page.php:247 ../lib/yasr-functions.php:446
|
140 |
+
#: ../lib/yasr-functions.php:472
|
141 |
+
msgid "Donations"
|
142 |
+
msgstr "Donazioni"
|
143 |
+
|
144 |
+
#: ../yasr-settings-page.php:249 ../lib/yasr-functions.php:448
|
145 |
+
#: ../lib/yasr-functions.php:474
|
146 |
+
msgid ""
|
147 |
+
"If you have found this plugin useful, please consider making a donation to "
|
148 |
+
"help support future development. Your support will be much appreciated. "
|
149 |
+
msgstr ""
|
150 |
+
"Se trovi questo plugin utile, per favore considera di fare una donazione per "
|
151 |
+
"supportarne lo sviluppo. Il tuo aiuto sarà molto apprezzato! P.s. YASR è "
|
152 |
+
"made in Italy ;)"
|
153 |
+
|
154 |
+
#: ../yasr-settings-page.php:251 ../lib/yasr-functions.php:450
|
155 |
+
#: ../lib/yasr-functions.php:476
|
156 |
+
msgid "Thank you!"
|
157 |
+
msgstr "Grazie!"
|
158 |
+
|
159 |
#: ../yasr-metabox-multiple-rating.php:35
|
160 |
msgid "Choose wich set you want to use"
|
161 |
msgstr "Scegli che set vuoi usare"
|
162 |
|
163 |
#: ../yasr-metabox-multiple-rating.php:46
|
164 |
+
#: ../yasr-metabox-overall-rating.php:193
|
165 |
#: ../lib/yasr-settings-functions.php:431
|
166 |
msgid "Select"
|
167 |
msgstr "Seleziona"
|
168 |
|
169 |
+
#: ../yasr-metabox-overall-rating.php:65 ../yasr-metabox-overall-rating.php:99
|
|
|
170 |
msgid "Rate this article / item"
|
171 |
msgstr "Vota questo articolo / oggetto"
|
172 |
|
173 |
+
#: ../yasr-metabox-overall-rating.php:71
|
174 |
#: ../lib/yasr-shortcode-functions.php:147
|
175 |
msgid "Loading, please wait"
|
176 |
msgstr "Caricamento, attendere prego"
|
177 |
|
178 |
+
#: ../yasr-metabox-overall-rating.php:147
|
179 |
+
msgid "Save Vote"
|
180 |
+
msgstr "Salva Voto"
|
181 |
+
|
182 |
+
#: ../yasr-metabox-overall-rating.php:164
|
183 |
+
msgid "This review is about a..."
|
184 |
+
msgstr "Questa recensione è..."
|
185 |
+
|
186 |
+
#: ../yasr-metabox-overall-rating.php:211
|
187 |
msgid ""
|
188 |
"Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
|
189 |
"where you want to display this rating"
|
191 |
"Ricorda di inserire questo shortcode <strong>[yasr_overall_rating]</strong> "
|
192 |
"dove vuoi far apparire questo voto"
|
193 |
|
|
|
|
|
|
|
|
|
194 |
#: ../lib/yasr-shortcode-functions.php:192
|
195 |
#: ../lib/yasr-shortcode-functions.php:204
|
196 |
#: ../lib/yasr-shortcode-functions.php:209
|
200 |
#: ../lib/yasr-shortcode-functions.php:260
|
201 |
#: ../lib/yasr-shortcode-functions.php:266
|
202 |
#: ../lib/yasr-shortcode-functions.php:281
|
203 |
+
#: ../lib/yasr-shortcode-functions.php:287 ../lib/yasr-ajax-functions.php:979
|
204 |
+
#: ../lib/yasr-ajax-functions.php:987 ../lib/yasr-ajax-functions.php:1086
|
205 |
+
#: ../lib/yasr-ajax-functions.php:1094 ../lib/yasr-ajax-functions.php:1102
|
206 |
+
#: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
|
207 |
msgid "Total: "
|
208 |
msgstr "Voti: "
|
209 |
|
348 |
msgid "Overall Rating / Author Rating"
|
349 |
msgstr "Voto Complessivo / Voto Autore"
|
350 |
|
351 |
+
#: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
|
352 |
msgid "Visitor Votes"
|
353 |
msgstr "Voto Utenti"
|
354 |
|
372 |
msgid "Size"
|
373 |
msgstr "Grandezza"
|
374 |
|
375 |
+
#: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
|
376 |
+
#: ../lib/yasr-ajax-functions.php:470
|
377 |
msgid "Small"
|
378 |
msgstr "Piccolo"
|
379 |
|
380 |
+
#: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
|
381 |
+
#: ../lib/yasr-ajax-functions.php:471
|
382 |
msgid "Medium"
|
383 |
msgstr "Medio"
|
384 |
|
385 |
+
#: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
|
386 |
+
#: ../lib/yasr-ajax-functions.php:472
|
387 |
msgid "Large"
|
388 |
msgstr "Grande"
|
389 |
|
639 |
msgid "No previous Gd Star Rating installation was found"
|
640 |
msgstr "Installazione precedente di Gd Star Rating non stata trovata"
|
641 |
|
642 |
+
#: ../lib/yasr-db-functions.php:259 ../lib/yasr-ajax-functions.php:729
|
643 |
msgid "No Recenet votes yet"
|
644 |
msgstr "Ancora nessun voto recente"
|
645 |
|
646 |
+
#: ../lib/yasr-db-functions.php:274 ../lib/yasr-ajax-functions.php:742
|
647 |
msgid "anonymous"
|
648 |
msgstr "anonimo"
|
649 |
|
650 |
+
#: ../lib/yasr-db-functions.php:297 ../lib/yasr-ajax-functions.php:765
|
651 |
msgid "Ip address"
|
652 |
msgstr "Indirizzo Ip"
|
653 |
|
654 |
+
#: ../lib/yasr-db-functions.php:338 ../lib/yasr-ajax-functions.php:806
|
655 |
msgid "Pages"
|
656 |
msgstr "Pagine"
|
657 |
|
675 |
msgid "You don't have enought privileges to insert Multi Set"
|
676 |
msgstr "Non hai abbastanza permessi per inserire un Multi Set"
|
677 |
|
678 |
+
#: ../lib/yasr-functions.php:292
|
679 |
msgid " reviewed by "
|
680 |
msgstr " recensito da "
|
681 |
|
682 |
+
#: ../lib/yasr-functions.php:293
|
683 |
msgid " on "
|
684 |
msgstr " il "
|
685 |
|
686 |
+
#: ../lib/yasr-functions.php:294
|
687 |
msgid " rated "
|
688 |
msgstr " votato "
|
689 |
|
690 |
+
#: ../lib/yasr-functions.php:294
|
691 |
msgid " on 5.0"
|
692 |
msgstr " su 5.0 "
|
693 |
|
694 |
+
#: ../lib/yasr-functions.php:349
|
695 |
msgid " written by "
|
696 |
msgstr " scritto da "
|
697 |
|
698 |
+
#: ../lib/yasr-functions.php:351
|
699 |
msgid " average rating "
|
700 |
msgstr " media voto "
|
701 |
|
702 |
+
#: ../lib/yasr-functions.php:352
|
703 |
msgid " user ratings"
|
704 |
msgstr " voti utenti "
|
705 |
|
706 |
+
#: ../lib/yasr-functions.php:458 ../lib/yasr-functions.php:485
|
707 |
+
msgid "Follow YASR official site!"
|
708 |
+
msgstr "Segui il sito ufficiale di YASR!"
|
709 |
+
|
710 |
+
#: ../lib/yasr-ajax-functions.php:101
|
711 |
msgid "You've rated it "
|
712 |
msgstr "Voto assegnato "
|
713 |
|
714 |
+
#: ../lib/yasr-ajax-functions.php:105
|
715 |
msgid "You've reset the vote"
|
716 |
msgstr "Hai resettato il voto"
|
717 |
|
718 |
+
#: ../lib/yasr-ajax-functions.php:170
|
719 |
+
msgid ""
|
720 |
+
"There was an error while trying to insert the review type. Please report it"
|
721 |
+
msgstr ""
|
722 |
+
"Qualcosa è andato storto cercando di inserire un elemento. Per favore "
|
723 |
+
"segnalalo"
|
724 |
+
|
725 |
+
#: ../lib/yasr-ajax-functions.php:207
|
726 |
msgid "Choose a vote for each element"
|
727 |
msgstr "Scegli un voto per ogni elemento"
|
728 |
|
729 |
+
#: ../lib/yasr-ajax-functions.php:263 ../lib/yasr-ajax-functions.php:306
|
730 |
msgid "Remember to insert this shortcode"
|
731 |
msgstr "Ricorda di inserire questo shortcode"
|
732 |
|
733 |
+
#: ../lib/yasr-ajax-functions.php:265 ../lib/yasr-ajax-functions.php:308
|
734 |
msgid "where you want to display this multi set"
|
735 |
msgstr "dove vuoi mostrare questo Multi Set"
|
736 |
|
737 |
+
#: ../lib/yasr-ajax-functions.php:273
|
738 |
msgid "Choose a vote for every element"
|
739 |
msgstr "Scegli un voto per ogni elemento"
|
740 |
|
741 |
+
#: ../lib/yasr-ajax-functions.php:432
|
742 |
msgid "Main"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../lib/yasr-ajax-functions.php:433
|
746 |
msgid "Charts"
|
747 |
msgstr "Classifiche"
|
748 |
|
749 |
+
#: ../lib/yasr-ajax-functions.php:435
|
750 |
msgid "Read the doc"
|
751 |
msgstr "Leggi la documentazione"
|
752 |
|
753 |
+
#: ../lib/yasr-ajax-functions.php:444
|
754 |
msgid "Overall Rating / Review"
|
755 |
msgstr "Voto Complessivo"
|
756 |
|
757 |
+
#: ../lib/yasr-ajax-functions.php:446
|
758 |
msgid "Insert Overall Rating"
|
759 |
msgstr "Inserisci Voto Complessivo"
|
760 |
|
761 |
+
#: ../lib/yasr-ajax-functions.php:447
|
762 |
msgid "Insert Overall Rating / Review for this post"
|
763 |
msgstr "Inserisci Voto Complessivo / Recensione per questo post"
|
764 |
|
765 |
+
#: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
|
766 |
msgid "Choose Size"
|
767 |
msgstr "Scegli la grandezza"
|
768 |
|
769 |
+
#: ../lib/yasr-ajax-functions.php:464
|
770 |
msgid "Insert Visitor Votes"
|
771 |
msgstr "Inserisci Voti Utenti"
|
772 |
|
773 |
+
#: ../lib/yasr-ajax-functions.php:465
|
774 |
msgid "Insert the ability for your visitor to vote"
|
775 |
msgstr "Permetti ai tuoi visitatori di votare"
|
776 |
|
777 |
+
#: ../lib/yasr-ajax-functions.php:482
|
778 |
msgid "If you want to insert a Multi Set, pick one:"
|
779 |
msgstr "Se vuoi inserire un Set Multiplo, scegline uno:"
|
780 |
|
781 |
+
#: ../lib/yasr-ajax-functions.php:488
|
782 |
msgid "Choose wich set you want to insert."
|
783 |
msgstr "Scegli quale Set Multiplo inserire"
|
784 |
|
785 |
+
#: ../lib/yasr-ajax-functions.php:496
|
786 |
msgid "Insert Multiset:"
|
787 |
msgstr "Inserisci Set Multiplo:"
|
788 |
|
789 |
+
#: ../lib/yasr-ajax-functions.php:499
|
790 |
msgid "Insert Multiple Set"
|
791 |
msgstr "Inserisci Set Multiplo"
|
792 |
|
793 |
+
#: ../lib/yasr-ajax-functions.php:500
|
794 |
msgid "Insert multiple set in this post ?"
|
795 |
msgstr "Vuoi inserire il Set Multiplo per questo post ?"
|
796 |
|
797 |
+
#: ../lib/yasr-ajax-functions.php:515
|
798 |
msgid "Ranking reviews"
|
799 |
msgstr "Classifica recensioni"
|
800 |
|
801 |
+
#: ../lib/yasr-ajax-functions.php:516
|
802 |
msgid "Insert Ranking reviews"
|
803 |
msgstr "Classifica recensioni"
|
804 |
|
805 |
+
#: ../lib/yasr-ajax-functions.php:517
|
806 |
msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
|
807 |
msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_overall_rating]"
|
808 |
|
809 |
+
#: ../lib/yasr-ajax-functions.php:521
|
810 |
msgid "Users' ranking"
|
811 |
msgstr "Classifica degli utenti"
|
812 |
|
813 |
+
#: ../lib/yasr-ajax-functions.php:522
|
814 |
msgid "Insert Users ranking"
|
815 |
msgstr "Inserisci Classifica Utenti"
|
816 |
|
817 |
+
#: ../lib/yasr-ajax-functions.php:523
|
818 |
msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
|
819 |
msgstr "Inserisci la classifica top 10 per lo shortcode [yasr_visitor_votes]"
|
820 |
|
821 |
+
#: ../lib/yasr-ajax-functions.php:527
|
822 |
msgid "Most active reviewers"
|
823 |
msgstr "Recensori più attivi"
|
824 |
|
825 |
+
#: ../lib/yasr-ajax-functions.php:528
|
826 |
msgid "Insert Most Active Reviewers"
|
827 |
msgstr "Inserisci i 5 recensori più attivi"
|
828 |
|
829 |
+
#: ../lib/yasr-ajax-functions.php:529
|
830 |
msgid "Insert Top 5 active reviewers"
|
831 |
msgstr "Inserisci i 5 recensori più attivi"
|
832 |
|
833 |
+
#: ../lib/yasr-ajax-functions.php:533
|
834 |
msgid "Most Active Users"
|
835 |
msgstr "Utenti più attivi"
|
836 |
|
837 |
+
#: ../lib/yasr-ajax-functions.php:534
|
838 |
msgid "Insert Most Active Users"
|
839 |
msgstr "Inserisci i 10 utenti più attivi"
|
840 |
|
841 |
+
#: ../lib/yasr-ajax-functions.php:535
|
842 |
msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
|
843 |
msgstr "Inserisci i 10 utenti più attivi in [yasr_visitor_votes]"
|
844 |
|
845 |
+
#: ../lib/yasr-ajax-functions.php:587
|
846 |
msgid "Reviews and Visitor Votes have been successfull imported."
|
847 |
msgstr "Recensioni e Voti utenti sono stati importati con successo."
|
848 |
|
849 |
+
#: ../lib/yasr-ajax-functions.php:593
|
850 |
msgid ""
|
851 |
"Step2: I will check if you used Multiple Sets and if so I will import them. "
|
852 |
"THIS MAY TAKE A WHILE!"
|
854 |
"Step2: Contrellerò se hai usato Set Multipli e se li trovo l'importerò: PUÒ "
|
855 |
"RICHIEDERE UN PÒ DI TEMPO!"
|
856 |
|
857 |
+
#: ../lib/yasr-ajax-functions.php:595
|
858 |
msgid "Proceed Step 2"
|
859 |
msgstr "Procedi Step 2"
|
860 |
|
861 |
+
#: ../lib/yasr-ajax-functions.php:602
|
862 |
msgid "Something goes wrong! Refresh the page and try again!"
|
863 |
msgstr "Qualcosa è andato storto! Aggiorna la pagina e prova ancora!"
|
864 |
|
865 |
+
#: ../lib/yasr-ajax-functions.php:631
|
866 |
msgid "I've found Multiple Set! Importing..."
|
867 |
msgstr "Set Multipli trovati! Importazione..."
|
868 |
|
869 |
+
#: ../lib/yasr-ajax-functions.php:640
|
870 |
msgid "Multi Set's name has been successfull imported."
|
871 |
msgstr "I nomi dei Set Multipli sono stati importati con successo"
|
872 |
|
873 |
+
#: ../lib/yasr-ajax-functions.php:642
|
874 |
msgid "Now I'm going to import Multi Set data"
|
875 |
msgstr "Ora importerò i dati dei Set Multipli"
|
876 |
|
877 |
+
#: ../lib/yasr-ajax-functions.php:653
|
878 |
msgid "All votes has been successfull imported."
|
879 |
msgstr "Tutti i voti sono stati importati con successo"
|
880 |
|
881 |
+
#: ../lib/yasr-ajax-functions.php:655
|
882 |
msgid "Done"
|
883 |
msgstr "Fatto"
|
884 |
|
885 |
+
#: ../lib/yasr-ajax-functions.php:660
|
886 |
msgid "I've found Multiple Set's votes but I couldn't insert into db"
|
887 |
msgstr "Ho trovato i voti per i Set Multi ma non li ho potuti inserire nel db"
|
888 |
|
889 |
+
#: ../lib/yasr-ajax-functions.php:668
|
890 |
msgid "I've found Multi Set but with no data"
|
891 |
msgstr "ho trovato Set Multipli ma senza dati"
|
892 |
|
893 |
+
#: ../lib/yasr-ajax-functions.php:677
|
894 |
msgid "I've found Multi Sets names but I couldn't insert into db"
|
895 |
msgstr "Ho trovato Set Multipli ma non li ho potuti inserire nel db"
|
896 |
|
897 |
+
#: ../lib/yasr-ajax-functions.php:685
|
898 |
msgid "Multisets were not found. Imported is done!"
|
899 |
msgstr "Set Multipli non trovati. Importazione dati conclusa!"
|
900 |
|
901 |
+
#: ../lib/yasr-ajax-functions.php:888 ../lib/yasr-ajax-functions.php:1017
|
902 |
+
msgid "Error: you can't vote 0"
|
903 |
+
msgstr "Errore: non puoi votare 0"
|
904 |
+
|
905 |
+
#: ../lib/yasr-ajax-functions.php:979 ../lib/yasr-ajax-functions.php:987
|
906 |
msgid "Average rating"
|
907 |
msgstr "Media Voto "
|
908 |
|
909 |
+
#: ../lib/yasr-ajax-functions.php:980 ../lib/yasr-ajax-functions.php:988
|
910 |
msgid "Vote Saved"
|
911 |
msgstr "Voto Salvato"
|
912 |
|
913 |
+
#: ../lib/yasr-ajax-functions.php:1087 ../lib/yasr-ajax-functions.php:1095
|
914 |
+
#: ../lib/yasr-ajax-functions.php:1103
|
915 |
msgid "Vote Updated"
|
916 |
msgstr "Voto Aggiornato"
|
917 |
|
918 |
+
#: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
|
919 |
msgid "Average "
|
920 |
msgstr "Media Voto "
|
921 |
|
languages/yasr-pl_PL.mo
CHANGED
Binary file
|
languages/yasr-pl_PL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YASR lenguages\n"
|
4 |
-
"POT-Creation-Date: 2014-09
|
5 |
-
"PO-Revision-Date: 2014-09
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: Hoek i Tutu Team <hoek@hoek.pl>\n"
|
8 |
"Language: pl_PL\n"
|
@@ -16,8 +16,8 @@ msgstr ""
|
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
|
19 |
-
#: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:
|
20 |
-
#: ../lib/yasr-ajax-functions.php:
|
21 |
msgid "You do not have sufficient permissions to access this page."
|
22 |
msgstr "Nie posiadasz wystarczających uprawnień, by wejść na tę stronę."
|
23 |
|
@@ -37,90 +37,70 @@ msgstr "Zestaw Ocen"
|
|
37 |
msgid "Styles"
|
38 |
msgstr "Style"
|
39 |
|
40 |
-
#: ../yasr-settings-page.php:94 ../yasr-settings-page.php:
|
41 |
msgid "Save"
|
42 |
msgstr "Zapisz"
|
43 |
|
44 |
-
#: ../yasr-settings-page.php:
|
45 |
-
#: ../yasr-settings-page.php:294 ../yasr-settings-page.php:318
|
46 |
-
msgid "Donations"
|
47 |
-
msgstr "Dotacje"
|
48 |
-
|
49 |
-
#: ../yasr-settings-page.php:102 ../yasr-settings-page.php:259
|
50 |
-
#: ../yasr-settings-page.php:296 ../yasr-settings-page.php:320
|
51 |
-
msgid ""
|
52 |
-
"If you have found this plugin useful, please consider making a donation to "
|
53 |
-
"help support future development. Your support will be much appreciated. "
|
54 |
-
msgstr ""
|
55 |
-
"Jeśli ten plugin jest dla Ciebie przydatny, proszę rozważyć przekazanie "
|
56 |
-
"darowizny w celu wsparcia dalszego rozwoju. Twoja pomoc będzie bardzo mile "
|
57 |
-
"widziana."
|
58 |
-
|
59 |
-
#: ../yasr-settings-page.php:104 ../yasr-settings-page.php:261
|
60 |
-
#: ../yasr-settings-page.php:298 ../yasr-settings-page.php:322
|
61 |
-
msgid "Thank you!"
|
62 |
-
msgstr "Dziękuje!"
|
63 |
-
|
64 |
-
#: ../yasr-settings-page.php:124
|
65 |
msgid "Import Gd Star Rating"
|
66 |
msgstr "Importuj Gd Star Rating"
|
67 |
|
68 |
-
#: ../yasr-settings-page.php:
|
69 |
msgid "I've found a previous installation of Gd Star Rating."
|
70 |
msgstr "Znalazłem poprzednią instalacje Gd Star Rating."
|
71 |
|
72 |
-
#: ../yasr-settings-page.php:
|
73 |
msgid "Do you want proceed to import data?"
|
74 |
msgstr "Chcesz rozpocząć import danych?"
|
75 |
|
76 |
-
#: ../yasr-settings-page.php:
|
77 |
msgid "Yes, Begin Import"
|
78 |
msgstr "Tak, rozpocznij import"
|
79 |
|
80 |
-
#: ../yasr-settings-page.php:
|
81 |
msgid "Click on Proceed to import Gd Star Rating data."
|
82 |
msgstr "Kliknij na Dalej, aby zaimportować dane z Gd Star Rating."
|
83 |
|
84 |
-
#: ../yasr-settings-page.php:
|
85 |
msgid "Proceed"
|
86 |
msgstr "Dalej"
|
87 |
|
88 |
-
#: ../yasr-settings-page.php:
|
89 |
msgid "Manage GD Star Data"
|
90 |
msgstr "Zarządzaj danymi GD Star"
|
91 |
|
92 |
-
#: ../yasr-settings-page.php:
|
93 |
msgid "Gd Star Rating has been already imported."
|
94 |
msgstr "GD Star Rating został już zaimportowany."
|
95 |
|
96 |
-
#: ../yasr-settings-page.php:
|
97 |
msgid "If you wish you can import it again, but"
|
98 |
msgstr "Jeśli chcesz możesz zaimportować ponownie, ale"
|
99 |
|
100 |
-
#: ../yasr-settings-page.php:
|
101 |
msgid "you will lose all data you've collect since the import!"
|
102 |
msgstr "utracisz wszystkie dane zebrane od ostatniego importu!"
|
103 |
|
104 |
-
#: ../yasr-settings-page.php:
|
105 |
msgid "Ok, Import Again"
|
106 |
msgstr "Ok, importuj ponownie"
|
107 |
|
108 |
-
#: ../yasr-settings-page.php:
|
109 |
msgid ""
|
110 |
"Click on Proceed to import again Gd Star Rating data. This may take a while!"
|
111 |
msgstr ""
|
112 |
"Kliknij na Dalej, aby ponownie zaimportować dane Gd Star Rating. To może "
|
113 |
"chwilę potrwać!"
|
114 |
|
115 |
-
#: ../yasr-settings-page.php:
|
116 |
msgid "Manage Multi Set"
|
117 |
msgstr "Zarządzaj Zestawem Ocen"
|
118 |
|
119 |
-
#: ../yasr-settings-page.php:
|
120 |
msgid "What is a Multi Set?"
|
121 |
msgstr "Co to jest Zestaw Ocen?"
|
122 |
|
123 |
-
#: ../yasr-settings-page.php:
|
124 |
msgid ""
|
125 |
"Multi Set allows you to insert a rate for each aspect about the product / "
|
126 |
"local business / whetever you're reviewing, example in the image below."
|
@@ -128,7 +108,7 @@ msgstr ""
|
|
128 |
"Zestaw Ocen pozwala na wstawienie oceny dla każdego elementu produktu / "
|
129 |
"firmy / czegokolwiek recenzowanego, przykład na obrazku poniżej."
|
130 |
|
131 |
-
#: ../yasr-settings-page.php:
|
132 |
msgid ""
|
133 |
"You can create up to 99 different Multi Set and each one can contain up to 9 "
|
134 |
"different fields. Once you've saved it, you can insert the rates while "
|
@@ -140,7 +120,7 @@ msgstr ""
|
|
140 |
"artykułu z kontenera poniżej edytora, tak jak na obrazku (kliknij aby "
|
141 |
"powiększyć)"
|
142 |
|
143 |
-
#: ../yasr-settings-page.php:
|
144 |
msgid ""
|
145 |
"In order to insert your Multi Sets into a post or page, you can either past "
|
146 |
"the short code that will appear at the bottom of the box or just click on "
|
@@ -150,31 +130,58 @@ msgstr ""
|
|
150 |
"wyświetla się na górze kontenera lub po prostu kliknąć na ikonkę gwiazdki w "
|
151 |
"edytorze wybierając \"Wstaw Zestaw Ocen\"."
|
152 |
|
153 |
-
#: ../yasr-settings-page.php:
|
154 |
msgid "Close this message"
|
155 |
msgstr "Zamknij tą wiadomość"
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
#: ../yasr-metabox-multiple-rating.php:35
|
158 |
msgid "Choose wich set you want to use"
|
159 |
msgstr "Wybierz który zestaw chcesz używać"
|
160 |
|
161 |
#: ../yasr-metabox-multiple-rating.php:46
|
|
|
162 |
#: ../lib/yasr-settings-functions.php:431
|
163 |
msgid "Select"
|
164 |
msgstr "Wybierz"
|
165 |
|
166 |
-
#: ../yasr-metabox-overall-rating.php:
|
167 |
-
#: ../yasr-metabox-overall-rating.php:111
|
168 |
msgid "Rate this article / item"
|
169 |
msgstr "Oceń ten wpis"
|
170 |
|
171 |
-
#: ../yasr-metabox-overall-rating.php:
|
172 |
#: ../lib/yasr-shortcode-functions.php:147
|
173 |
msgid "Loading, please wait"
|
174 |
msgstr "Wczytywanie, proszę czekać"
|
175 |
|
176 |
-
#: ../yasr-metabox-overall-rating.php:
|
177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
msgid ""
|
179 |
"Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
|
180 |
"where you want to display this rating"
|
@@ -182,10 +189,6 @@ msgstr ""
|
|
182 |
"Pamiętaj aby wstawić ten kod <strong>[yasr_overall_rating]</strong> w "
|
183 |
"miejscu gdzie ma wyświetlać się ocena"
|
184 |
|
185 |
-
#: ../yasr-metabox-overall-rating.php:176
|
186 |
-
msgid "Save Vote"
|
187 |
-
msgstr "Zapisz Głos"
|
188 |
-
|
189 |
#: ../lib/yasr-shortcode-functions.php:192
|
190 |
#: ../lib/yasr-shortcode-functions.php:204
|
191 |
#: ../lib/yasr-shortcode-functions.php:209
|
@@ -195,10 +198,10 @@ msgstr "Zapisz Głos"
|
|
195 |
#: ../lib/yasr-shortcode-functions.php:260
|
196 |
#: ../lib/yasr-shortcode-functions.php:266
|
197 |
#: ../lib/yasr-shortcode-functions.php:281
|
198 |
-
#: ../lib/yasr-shortcode-functions.php:287 ../lib/yasr-ajax-functions.php:
|
199 |
-
#: ../lib/yasr-ajax-functions.php:
|
200 |
-
#: ../lib/yasr-ajax-functions.php:
|
201 |
-
#: ../lib/yasr-ajax-functions.php:
|
202 |
msgid "Total: "
|
203 |
msgstr "Głosów:"
|
204 |
|
@@ -345,7 +348,7 @@ msgstr "Co?"
|
|
345 |
msgid "Overall Rating / Author Rating"
|
346 |
msgstr "Ogólna ocena / Ocena autora"
|
347 |
|
348 |
-
#: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:
|
349 |
msgid "Visitor Votes"
|
350 |
msgstr "Głosy gości"
|
351 |
|
@@ -369,18 +372,18 @@ msgstr "Po wpisie"
|
|
369 |
msgid "Size"
|
370 |
msgstr "Rozmiar"
|
371 |
|
372 |
-
#: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:
|
373 |
-
#: ../lib/yasr-ajax-functions.php:
|
374 |
msgid "Small"
|
375 |
msgstr "Małe"
|
376 |
|
377 |
-
#: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:
|
378 |
-
#: ../lib/yasr-ajax-functions.php:
|
379 |
msgid "Medium"
|
380 |
msgstr "Średnie"
|
381 |
|
382 |
-
#: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:
|
383 |
-
#: ../lib/yasr-ajax-functions.php:
|
384 |
msgid "Large"
|
385 |
msgstr "Duże"
|
386 |
|
@@ -631,19 +634,19 @@ msgstr "Pozostaw puste, jeśli nie wiesz, co tu wstawić"
|
|
631 |
msgid "No previous Gd Star Rating installation was found"
|
632 |
msgstr "Nie znaleziono wcześniejszych instalacji Gd Star Rating"
|
633 |
|
634 |
-
#: ../lib/yasr-db-functions.php:
|
635 |
msgid "No Recenet votes yet"
|
636 |
msgstr "Brak najnowszych głosów"
|
637 |
|
638 |
-
#: ../lib/yasr-db-functions.php:
|
639 |
msgid "anonymous"
|
640 |
msgstr "Anonim"
|
641 |
|
642 |
-
#: ../lib/yasr-db-functions.php:
|
643 |
msgid "Ip address"
|
644 |
msgstr "Adres IP"
|
645 |
|
646 |
-
#: ../lib/yasr-db-functions.php:
|
647 |
msgid "Pages"
|
648 |
msgstr "Strony"
|
649 |
|
@@ -667,177 +670,187 @@ msgstr "Nie masz wystarczającyh uprawnień aby wstawić Ogólną Ocenę"
|
|
667 |
msgid "You don't have enought privileges to insert Multi Set"
|
668 |
msgstr "Nie masz wystarczającyh uprawnień aby wstawić Zestaw Ocen"
|
669 |
|
670 |
-
#: ../lib/yasr-functions.php:
|
671 |
msgid " reviewed by "
|
672 |
msgstr " zrecenzowane przez "
|
673 |
|
674 |
-
#: ../lib/yasr-functions.php:
|
675 |
msgid " on "
|
676 |
msgstr " dnia "
|
677 |
|
678 |
-
#: ../lib/yasr-functions.php:
|
679 |
msgid " rated "
|
680 |
msgstr " ocena "
|
681 |
|
682 |
-
#: ../lib/yasr-functions.php:
|
683 |
msgid " on 5.0"
|
684 |
msgstr " na 5.0"
|
685 |
|
686 |
-
#: ../lib/yasr-functions.php:
|
687 |
#, fuzzy
|
688 |
msgid " written by "
|
689 |
msgstr " zrecenzowane przez "
|
690 |
|
691 |
-
#: ../lib/yasr-functions.php:
|
692 |
msgid " average rating "
|
693 |
msgstr "średnia ocen"
|
694 |
|
695 |
-
#: ../lib/yasr-functions.php:
|
696 |
msgid " user ratings"
|
697 |
msgstr "oceny użytkowników"
|
698 |
|
699 |
-
#: ../lib/yasr-
|
|
|
|
|
|
|
|
|
700 |
msgid "You've rated it "
|
701 |
msgstr "Już oceniłeś"
|
702 |
|
703 |
-
#: ../lib/yasr-ajax-functions.php:
|
704 |
msgid "You've reset the vote"
|
705 |
msgstr "Zresetowałeś głosy"
|
706 |
|
707 |
-
#: ../lib/yasr-ajax-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
708 |
msgid "Choose a vote for each element"
|
709 |
msgstr "Wybierz głos dla każdego elementu"
|
710 |
|
711 |
-
#: ../lib/yasr-ajax-functions.php:
|
712 |
msgid "Remember to insert this shortcode"
|
713 |
msgstr "Pamiętaj aby wstawić ten kod"
|
714 |
|
715 |
-
#: ../lib/yasr-ajax-functions.php:
|
716 |
msgid "where you want to display this multi set"
|
717 |
msgstr "tam gdzie chcesz wyświetlić ten zestaw ocen"
|
718 |
|
719 |
-
#: ../lib/yasr-ajax-functions.php:
|
720 |
msgid "Choose a vote for every element"
|
721 |
msgstr "Wybierz głos dla każdego elementu"
|
722 |
|
723 |
-
#: ../lib/yasr-ajax-functions.php:
|
724 |
msgid "Main"
|
725 |
msgstr "Głowne"
|
726 |
|
727 |
-
#: ../lib/yasr-ajax-functions.php:
|
728 |
msgid "Charts"
|
729 |
msgstr "Wykresy"
|
730 |
|
731 |
-
#: ../lib/yasr-ajax-functions.php:
|
732 |
msgid "Read the doc"
|
733 |
msgstr "Przeczytaj dokumentacje"
|
734 |
|
735 |
-
#: ../lib/yasr-ajax-functions.php:
|
736 |
msgid "Overall Rating / Review"
|
737 |
msgstr "Ogólna ocena / przegląd"
|
738 |
|
739 |
-
#: ../lib/yasr-ajax-functions.php:
|
740 |
msgid "Insert Overall Rating"
|
741 |
msgstr "Wstaw ogolny ranking"
|
742 |
|
743 |
-
#: ../lib/yasr-ajax-functions.php:
|
744 |
msgid "Insert Overall Rating / Review for this post"
|
745 |
msgstr "Wstaw Ogólny Ranking / Oceny dla wpisu"
|
746 |
|
747 |
-
#: ../lib/yasr-ajax-functions.php:
|
748 |
msgid "Choose Size"
|
749 |
msgstr "Wybierz rozmiar"
|
750 |
|
751 |
-
#: ../lib/yasr-ajax-functions.php:
|
752 |
msgid "Insert Visitor Votes"
|
753 |
msgstr "Wstaw głosowanie gości"
|
754 |
|
755 |
-
#: ../lib/yasr-ajax-functions.php:
|
756 |
msgid "Insert the ability for your visitor to vote"
|
757 |
msgstr "Wstaw głosowanie dla gości"
|
758 |
|
759 |
-
#: ../lib/yasr-ajax-functions.php:
|
760 |
msgid "If you want to insert a Multi Set, pick one:"
|
761 |
msgstr "Jeśli chcesz wstawić Zestaw Ocen, wybierz jeden:"
|
762 |
|
763 |
-
#: ../lib/yasr-ajax-functions.php:
|
764 |
msgid "Choose wich set you want to insert."
|
765 |
msgstr "Wybierz zestaw, który chcesz wstawić."
|
766 |
|
767 |
-
#: ../lib/yasr-ajax-functions.php:
|
768 |
msgid "Insert Multiset:"
|
769 |
msgstr "Wstaw Zestaw Ocen"
|
770 |
|
771 |
-
#: ../lib/yasr-ajax-functions.php:
|
772 |
msgid "Insert Multiple Set"
|
773 |
msgstr "Wstaw Zestaw Ocen"
|
774 |
|
775 |
-
#: ../lib/yasr-ajax-functions.php:
|
776 |
msgid "Insert multiple set in this post ?"
|
777 |
msgstr "Dodać Zestaw Ocen do tego wpisu?"
|
778 |
|
779 |
-
#: ../lib/yasr-ajax-functions.php:
|
780 |
msgid "Ranking reviews"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../lib/yasr-ajax-functions.php:
|
784 |
#, fuzzy
|
785 |
msgid "Insert Ranking reviews"
|
786 |
msgstr "Wstaw Top 5 aktywnych oceniających"
|
787 |
|
788 |
-
#: ../lib/yasr-ajax-functions.php:
|
789 |
#, fuzzy
|
790 |
msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
|
791 |
msgstr "Wstaw Top 10 postów gości"
|
792 |
|
793 |
-
#: ../lib/yasr-ajax-functions.php:
|
794 |
#, fuzzy
|
795 |
msgid "Users' ranking"
|
796 |
msgstr "Wstaw ogolny ranking"
|
797 |
|
798 |
-
#: ../lib/yasr-ajax-functions.php:
|
799 |
#, fuzzy
|
800 |
msgid "Insert Users ranking"
|
801 |
msgstr "Wstaw ogolny ranking"
|
802 |
|
803 |
-
#: ../lib/yasr-ajax-functions.php:
|
804 |
#, fuzzy
|
805 |
msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
|
806 |
msgstr "Wstaw Top 10 postów gości"
|
807 |
|
808 |
-
#: ../lib/yasr-ajax-functions.php:
|
809 |
msgid "Most active reviewers"
|
810 |
msgstr "Najbardziej aktywny recenzent"
|
811 |
|
812 |
-
#: ../lib/yasr-ajax-functions.php:
|
813 |
#, fuzzy
|
814 |
msgid "Insert Most Active Reviewers"
|
815 |
msgstr "Wstaw Top 5 najaktywniejszych oceniających"
|
816 |
|
817 |
-
#: ../lib/yasr-ajax-functions.php:
|
818 |
msgid "Insert Top 5 active reviewers"
|
819 |
msgstr "Wstaw Top 5 aktywnych oceniających"
|
820 |
|
821 |
-
#: ../lib/yasr-ajax-functions.php:
|
822 |
#, fuzzy
|
823 |
msgid "Most Active Users"
|
824 |
msgstr "Najaktywniejsi użytkownicy"
|
825 |
|
826 |
-
#: ../lib/yasr-ajax-functions.php:
|
827 |
#, fuzzy
|
828 |
msgid "Insert Most Active Users"
|
829 |
msgstr "Wstaw Top 10 najaktywniejszych użytkowników"
|
830 |
|
831 |
-
#: ../lib/yasr-ajax-functions.php:
|
832 |
#, fuzzy
|
833 |
msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
|
834 |
msgstr "Wstaw Top 10 postów gości"
|
835 |
|
836 |
-
#: ../lib/yasr-ajax-functions.php:
|
837 |
msgid "Reviews and Visitor Votes have been successfull imported."
|
838 |
msgstr "Opinie i Oceny gości zostały zaimportowane."
|
839 |
|
840 |
-
#: ../lib/yasr-ajax-functions.php:
|
841 |
msgid ""
|
842 |
"Step2: I will check if you used Multiple Sets and if so I will import them. "
|
843 |
"THIS MAY TAKE A WHILE!"
|
@@ -845,64 +858,68 @@ msgstr ""
|
|
845 |
"Krok 2: Sprawdzę, czy stosuje się Zestawy Ocen, a jeśli tak będę je "
|
846 |
"importować. TO MOŻE CHWILĘ POTRWAĆ!"
|
847 |
|
848 |
-
#: ../lib/yasr-ajax-functions.php:
|
849 |
msgid "Proceed Step 2"
|
850 |
msgstr "Następny krok 2"
|
851 |
|
852 |
-
#: ../lib/yasr-ajax-functions.php:
|
853 |
msgid "Something goes wrong! Refresh the page and try again!"
|
854 |
msgstr "Coś poszło nie tak! Odśwież stronę i spróbuj jeszcze raz!"
|
855 |
|
856 |
-
#: ../lib/yasr-ajax-functions.php:
|
857 |
msgid "I've found Multiple Set! Importing..."
|
858 |
msgstr "Znalazłem Zestaw Ocen! Importuje..."
|
859 |
|
860 |
-
#: ../lib/yasr-ajax-functions.php:
|
861 |
msgid "Multi Set's name has been successfull imported."
|
862 |
msgstr "Nazwa Zestawu Oceny została zaimportowana pomyślnie."
|
863 |
|
864 |
-
#: ../lib/yasr-ajax-functions.php:
|
865 |
msgid "Now I'm going to import Multi Set data"
|
866 |
msgstr "Teraz zaimportuje dane Zestawu Ocen"
|
867 |
|
868 |
-
#: ../lib/yasr-ajax-functions.php:
|
869 |
msgid "All votes has been successfull imported."
|
870 |
msgstr "Wszystkie głosy zostały pomyślnie zaimportowane."
|
871 |
|
872 |
-
#: ../lib/yasr-ajax-functions.php:
|
873 |
msgid "Done"
|
874 |
msgstr "Skończone"
|
875 |
|
876 |
-
#: ../lib/yasr-ajax-functions.php:
|
877 |
msgid "I've found Multiple Set's votes but I couldn't insert into db"
|
878 |
msgstr "Znalazłem głosy Zestawu Ocen ale nie mogłem ich dodać do bazy"
|
879 |
|
880 |
-
#: ../lib/yasr-ajax-functions.php:
|
881 |
msgid "I've found Multi Set but with no data"
|
882 |
msgstr "Znalazłem Zestaw Ocen ale bez danych"
|
883 |
|
884 |
-
#: ../lib/yasr-ajax-functions.php:
|
885 |
msgid "I've found Multi Sets names but I couldn't insert into db"
|
886 |
msgstr "Znalazłem nazwy Multi Zestawów ale nie mogłem zamieścić ich w bazie"
|
887 |
|
888 |
-
#: ../lib/yasr-ajax-functions.php:
|
889 |
msgid "Multisets were not found. Imported is done!"
|
890 |
msgstr "Zestaw Ocen nie znaleziony. Importowanie zakończone!"
|
891 |
|
892 |
-
#: ../lib/yasr-ajax-functions.php:
|
|
|
|
|
|
|
|
|
893 |
msgid "Average rating"
|
894 |
msgstr "Średnia ocen"
|
895 |
|
896 |
-
#: ../lib/yasr-ajax-functions.php:
|
897 |
msgid "Vote Saved"
|
898 |
msgstr "Głos zapisany"
|
899 |
|
900 |
-
#: ../lib/yasr-ajax-functions.php:
|
901 |
-
#: ../lib/yasr-ajax-functions.php:
|
902 |
msgid "Vote Updated"
|
903 |
msgstr "Głos zaktualizowany"
|
904 |
|
905 |
-
#: ../lib/yasr-ajax-functions.php:
|
906 |
msgid "Average "
|
907 |
msgstr "Średnia"
|
908 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YASR lenguages\n"
|
4 |
+
"POT-Creation-Date: 2014-10-09 13:44+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-10-09 13:45+0100\n"
|
6 |
"Last-Translator: Dario <thedudoworld@gmail.com>\n"
|
7 |
"Language-Team: Hoek i Tutu Team <hoek@hoek.pl>\n"
|
8 |
"Language: pl_PL\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../yasr-settings-page.php:24 ../lib/yasr-functions.php:98
|
19 |
+
#: ../lib/yasr-ajax-functions.php:47 ../lib/yasr-ajax-functions.php:196
|
20 |
+
#: ../lib/yasr-ajax-functions.php:335 ../lib/yasr-ajax-functions.php:717
|
21 |
msgid "You do not have sufficient permissions to access this page."
|
22 |
msgstr "Nie posiadasz wystarczających uprawnień, by wejść na tę stronę."
|
23 |
|
37 |
msgid "Styles"
|
38 |
msgstr "Style"
|
39 |
|
40 |
+
#: ../yasr-settings-page.php:94 ../yasr-settings-page.php:277
|
41 |
msgid "Save"
|
42 |
msgstr "Zapisz"
|
43 |
|
44 |
+
#: ../yasr-settings-page.php:114
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
msgid "Import Gd Star Rating"
|
46 |
msgstr "Importuj Gd Star Rating"
|
47 |
|
48 |
+
#: ../yasr-settings-page.php:115
|
49 |
msgid "I've found a previous installation of Gd Star Rating."
|
50 |
msgstr "Znalazłem poprzednią instalacje Gd Star Rating."
|
51 |
|
52 |
+
#: ../yasr-settings-page.php:115
|
53 |
msgid "Do you want proceed to import data?"
|
54 |
msgstr "Chcesz rozpocząć import danych?"
|
55 |
|
56 |
+
#: ../yasr-settings-page.php:117
|
57 |
msgid "Yes, Begin Import"
|
58 |
msgstr "Tak, rozpocznij import"
|
59 |
|
60 |
+
#: ../yasr-settings-page.php:121
|
61 |
msgid "Click on Proceed to import Gd Star Rating data."
|
62 |
msgstr "Kliknij na Dalej, aby zaimportować dane z Gd Star Rating."
|
63 |
|
64 |
+
#: ../yasr-settings-page.php:124 ../yasr-settings-page.php:157
|
65 |
msgid "Proceed"
|
66 |
msgstr "Dalej"
|
67 |
|
68 |
+
#: ../yasr-settings-page.php:146
|
69 |
msgid "Manage GD Star Data"
|
70 |
msgstr "Zarządzaj danymi GD Star"
|
71 |
|
72 |
+
#: ../yasr-settings-page.php:147
|
73 |
msgid "Gd Star Rating has been already imported."
|
74 |
msgstr "GD Star Rating został już zaimportowany."
|
75 |
|
76 |
+
#: ../yasr-settings-page.php:148
|
77 |
msgid "If you wish you can import it again, but"
|
78 |
msgstr "Jeśli chcesz możesz zaimportować ponownie, ale"
|
79 |
|
80 |
+
#: ../yasr-settings-page.php:148
|
81 |
msgid "you will lose all data you've collect since the import!"
|
82 |
msgstr "utracisz wszystkie dane zebrane od ostatniego importu!"
|
83 |
|
84 |
+
#: ../yasr-settings-page.php:150
|
85 |
msgid "Ok, Import Again"
|
86 |
msgstr "Ok, importuj ponownie"
|
87 |
|
88 |
+
#: ../yasr-settings-page.php:154
|
89 |
msgid ""
|
90 |
"Click on Proceed to import again Gd Star Rating data. This may take a while!"
|
91 |
msgstr ""
|
92 |
"Kliknij na Dalej, aby ponownie zaimportować dane Gd Star Rating. To może "
|
93 |
"chwilę potrwać!"
|
94 |
|
95 |
+
#: ../yasr-settings-page.php:195
|
96 |
msgid "Manage Multi Set"
|
97 |
msgstr "Zarządzaj Zestawem Ocen"
|
98 |
|
99 |
+
#: ../yasr-settings-page.php:199
|
100 |
msgid "What is a Multi Set?"
|
101 |
msgstr "Co to jest Zestaw Ocen?"
|
102 |
|
103 |
+
#: ../yasr-settings-page.php:204
|
104 |
msgid ""
|
105 |
"Multi Set allows you to insert a rate for each aspect about the product / "
|
106 |
"local business / whetever you're reviewing, example in the image below."
|
108 |
"Zestaw Ocen pozwala na wstawienie oceny dla każdego elementu produktu / "
|
109 |
"firmy / czegokolwiek recenzowanego, przykład na obrazku poniżej."
|
110 |
|
111 |
+
#: ../yasr-settings-page.php:208
|
112 |
msgid ""
|
113 |
"You can create up to 99 different Multi Set and each one can contain up to 9 "
|
114 |
"different fields. Once you've saved it, you can insert the rates while "
|
120 |
"artykułu z kontenera poniżej edytora, tak jak na obrazku (kliknij aby "
|
121 |
"powiększyć)"
|
122 |
|
123 |
+
#: ../yasr-settings-page.php:212
|
124 |
msgid ""
|
125 |
"In order to insert your Multi Sets into a post or page, you can either past "
|
126 |
"the short code that will appear at the bottom of the box or just click on "
|
130 |
"wyświetla się na górze kontenera lub po prostu kliknąć na ikonkę gwiazdki w "
|
131 |
"edytorze wybierając \"Wstaw Zestaw Ocen\"."
|
132 |
|
133 |
+
#: ../yasr-settings-page.php:218
|
134 |
msgid "Close this message"
|
135 |
msgstr "Zamknij tą wiadomość"
|
136 |
|
137 |
+
#: ../yasr-settings-page.php:247 ../lib/yasr-functions.php:446
|
138 |
+
#: ../lib/yasr-functions.php:472
|
139 |
+
msgid "Donations"
|
140 |
+
msgstr "Dotacje"
|
141 |
+
|
142 |
+
#: ../yasr-settings-page.php:249 ../lib/yasr-functions.php:448
|
143 |
+
#: ../lib/yasr-functions.php:474
|
144 |
+
msgid ""
|
145 |
+
"If you have found this plugin useful, please consider making a donation to "
|
146 |
+
"help support future development. Your support will be much appreciated. "
|
147 |
+
msgstr ""
|
148 |
+
"Jeśli ten plugin jest dla Ciebie przydatny, proszę rozważyć przekazanie "
|
149 |
+
"darowizny w celu wsparcia dalszego rozwoju. Twoja pomoc będzie bardzo mile "
|
150 |
+
"widziana."
|
151 |
+
|
152 |
+
#: ../yasr-settings-page.php:251 ../lib/yasr-functions.php:450
|
153 |
+
#: ../lib/yasr-functions.php:476
|
154 |
+
msgid "Thank you!"
|
155 |
+
msgstr "Dziękuje!"
|
156 |
+
|
157 |
#: ../yasr-metabox-multiple-rating.php:35
|
158 |
msgid "Choose wich set you want to use"
|
159 |
msgstr "Wybierz który zestaw chcesz używać"
|
160 |
|
161 |
#: ../yasr-metabox-multiple-rating.php:46
|
162 |
+
#: ../yasr-metabox-overall-rating.php:193
|
163 |
#: ../lib/yasr-settings-functions.php:431
|
164 |
msgid "Select"
|
165 |
msgstr "Wybierz"
|
166 |
|
167 |
+
#: ../yasr-metabox-overall-rating.php:65 ../yasr-metabox-overall-rating.php:99
|
|
|
168 |
msgid "Rate this article / item"
|
169 |
msgstr "Oceń ten wpis"
|
170 |
|
171 |
+
#: ../yasr-metabox-overall-rating.php:71
|
172 |
#: ../lib/yasr-shortcode-functions.php:147
|
173 |
msgid "Loading, please wait"
|
174 |
msgstr "Wczytywanie, proszę czekać"
|
175 |
|
176 |
+
#: ../yasr-metabox-overall-rating.php:147
|
177 |
+
msgid "Save Vote"
|
178 |
+
msgstr "Zapisz Głos"
|
179 |
+
|
180 |
+
#: ../yasr-metabox-overall-rating.php:164
|
181 |
+
msgid "This review is about a..."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: ../yasr-metabox-overall-rating.php:211
|
185 |
msgid ""
|
186 |
"Remember to insert this shortcode <strong>[yasr_overall_rating]</strong> "
|
187 |
"where you want to display this rating"
|
189 |
"Pamiętaj aby wstawić ten kod <strong>[yasr_overall_rating]</strong> w "
|
190 |
"miejscu gdzie ma wyświetlać się ocena"
|
191 |
|
|
|
|
|
|
|
|
|
192 |
#: ../lib/yasr-shortcode-functions.php:192
|
193 |
#: ../lib/yasr-shortcode-functions.php:204
|
194 |
#: ../lib/yasr-shortcode-functions.php:209
|
198 |
#: ../lib/yasr-shortcode-functions.php:260
|
199 |
#: ../lib/yasr-shortcode-functions.php:266
|
200 |
#: ../lib/yasr-shortcode-functions.php:281
|
201 |
+
#: ../lib/yasr-shortcode-functions.php:287 ../lib/yasr-ajax-functions.php:979
|
202 |
+
#: ../lib/yasr-ajax-functions.php:987 ../lib/yasr-ajax-functions.php:1086
|
203 |
+
#: ../lib/yasr-ajax-functions.php:1094 ../lib/yasr-ajax-functions.php:1102
|
204 |
+
#: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
|
205 |
msgid "Total: "
|
206 |
msgstr "Głosów:"
|
207 |
|
348 |
msgid "Overall Rating / Author Rating"
|
349 |
msgstr "Ogólna ocena / Ocena autora"
|
350 |
|
351 |
+
#: ../lib/yasr-settings-functions.php:101 ../lib/yasr-ajax-functions.php:462
|
352 |
msgid "Visitor Votes"
|
353 |
msgstr "Głosy gości"
|
354 |
|
372 |
msgid "Size"
|
373 |
msgstr "Rozmiar"
|
374 |
|
375 |
+
#: ../lib/yasr-settings-functions.php:125 ../lib/yasr-ajax-functions.php:452
|
376 |
+
#: ../lib/yasr-ajax-functions.php:470
|
377 |
msgid "Small"
|
378 |
msgstr "Małe"
|
379 |
|
380 |
+
#: ../lib/yasr-settings-functions.php:130 ../lib/yasr-ajax-functions.php:453
|
381 |
+
#: ../lib/yasr-ajax-functions.php:471
|
382 |
msgid "Medium"
|
383 |
msgstr "Średnie"
|
384 |
|
385 |
+
#: ../lib/yasr-settings-functions.php:135 ../lib/yasr-ajax-functions.php:454
|
386 |
+
#: ../lib/yasr-ajax-functions.php:472
|
387 |
msgid "Large"
|
388 |
msgstr "Duże"
|
389 |
|
634 |
msgid "No previous Gd Star Rating installation was found"
|
635 |
msgstr "Nie znaleziono wcześniejszych instalacji Gd Star Rating"
|
636 |
|
637 |
+
#: ../lib/yasr-db-functions.php:259 ../lib/yasr-ajax-functions.php:729
|
638 |
msgid "No Recenet votes yet"
|
639 |
msgstr "Brak najnowszych głosów"
|
640 |
|
641 |
+
#: ../lib/yasr-db-functions.php:274 ../lib/yasr-ajax-functions.php:742
|
642 |
msgid "anonymous"
|
643 |
msgstr "Anonim"
|
644 |
|
645 |
+
#: ../lib/yasr-db-functions.php:297 ../lib/yasr-ajax-functions.php:765
|
646 |
msgid "Ip address"
|
647 |
msgstr "Adres IP"
|
648 |
|
649 |
+
#: ../lib/yasr-db-functions.php:338 ../lib/yasr-ajax-functions.php:806
|
650 |
msgid "Pages"
|
651 |
msgstr "Strony"
|
652 |
|
670 |
msgid "You don't have enought privileges to insert Multi Set"
|
671 |
msgstr "Nie masz wystarczającyh uprawnień aby wstawić Zestaw Ocen"
|
672 |
|
673 |
+
#: ../lib/yasr-functions.php:292
|
674 |
msgid " reviewed by "
|
675 |
msgstr " zrecenzowane przez "
|
676 |
|
677 |
+
#: ../lib/yasr-functions.php:293
|
678 |
msgid " on "
|
679 |
msgstr " dnia "
|
680 |
|
681 |
+
#: ../lib/yasr-functions.php:294
|
682 |
msgid " rated "
|
683 |
msgstr " ocena "
|
684 |
|
685 |
+
#: ../lib/yasr-functions.php:294
|
686 |
msgid " on 5.0"
|
687 |
msgstr " na 5.0"
|
688 |
|
689 |
+
#: ../lib/yasr-functions.php:349
|
690 |
#, fuzzy
|
691 |
msgid " written by "
|
692 |
msgstr " zrecenzowane przez "
|
693 |
|
694 |
+
#: ../lib/yasr-functions.php:351
|
695 |
msgid " average rating "
|
696 |
msgstr "średnia ocen"
|
697 |
|
698 |
+
#: ../lib/yasr-functions.php:352
|
699 |
msgid " user ratings"
|
700 |
msgstr "oceny użytkowników"
|
701 |
|
702 |
+
#: ../lib/yasr-functions.php:458 ../lib/yasr-functions.php:485
|
703 |
+
msgid "Follow YASR official site!"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: ../lib/yasr-ajax-functions.php:101
|
707 |
msgid "You've rated it "
|
708 |
msgstr "Już oceniłeś"
|
709 |
|
710 |
+
#: ../lib/yasr-ajax-functions.php:105
|
711 |
msgid "You've reset the vote"
|
712 |
msgstr "Zresetowałeś głosy"
|
713 |
|
714 |
+
#: ../lib/yasr-ajax-functions.php:170
|
715 |
+
#, fuzzy
|
716 |
+
msgid ""
|
717 |
+
"There was an error while trying to insert the review type. Please report it"
|
718 |
+
msgstr "Coś poszło nie tak podczas próby wstawiania pola nazwy. Zgłoś to"
|
719 |
+
|
720 |
+
#: ../lib/yasr-ajax-functions.php:207
|
721 |
msgid "Choose a vote for each element"
|
722 |
msgstr "Wybierz głos dla każdego elementu"
|
723 |
|
724 |
+
#: ../lib/yasr-ajax-functions.php:263 ../lib/yasr-ajax-functions.php:306
|
725 |
msgid "Remember to insert this shortcode"
|
726 |
msgstr "Pamiętaj aby wstawić ten kod"
|
727 |
|
728 |
+
#: ../lib/yasr-ajax-functions.php:265 ../lib/yasr-ajax-functions.php:308
|
729 |
msgid "where you want to display this multi set"
|
730 |
msgstr "tam gdzie chcesz wyświetlić ten zestaw ocen"
|
731 |
|
732 |
+
#: ../lib/yasr-ajax-functions.php:273
|
733 |
msgid "Choose a vote for every element"
|
734 |
msgstr "Wybierz głos dla każdego elementu"
|
735 |
|
736 |
+
#: ../lib/yasr-ajax-functions.php:432
|
737 |
msgid "Main"
|
738 |
msgstr "Głowne"
|
739 |
|
740 |
+
#: ../lib/yasr-ajax-functions.php:433
|
741 |
msgid "Charts"
|
742 |
msgstr "Wykresy"
|
743 |
|
744 |
+
#: ../lib/yasr-ajax-functions.php:435
|
745 |
msgid "Read the doc"
|
746 |
msgstr "Przeczytaj dokumentacje"
|
747 |
|
748 |
+
#: ../lib/yasr-ajax-functions.php:444
|
749 |
msgid "Overall Rating / Review"
|
750 |
msgstr "Ogólna ocena / przegląd"
|
751 |
|
752 |
+
#: ../lib/yasr-ajax-functions.php:446
|
753 |
msgid "Insert Overall Rating"
|
754 |
msgstr "Wstaw ogolny ranking"
|
755 |
|
756 |
+
#: ../lib/yasr-ajax-functions.php:447
|
757 |
msgid "Insert Overall Rating / Review for this post"
|
758 |
msgstr "Wstaw Ogólny Ranking / Oceny dla wpisu"
|
759 |
|
760 |
+
#: ../lib/yasr-ajax-functions.php:450 ../lib/yasr-ajax-functions.php:468
|
761 |
msgid "Choose Size"
|
762 |
msgstr "Wybierz rozmiar"
|
763 |
|
764 |
+
#: ../lib/yasr-ajax-functions.php:464
|
765 |
msgid "Insert Visitor Votes"
|
766 |
msgstr "Wstaw głosowanie gości"
|
767 |
|
768 |
+
#: ../lib/yasr-ajax-functions.php:465
|
769 |
msgid "Insert the ability for your visitor to vote"
|
770 |
msgstr "Wstaw głosowanie dla gości"
|
771 |
|
772 |
+
#: ../lib/yasr-ajax-functions.php:482
|
773 |
msgid "If you want to insert a Multi Set, pick one:"
|
774 |
msgstr "Jeśli chcesz wstawić Zestaw Ocen, wybierz jeden:"
|
775 |
|
776 |
+
#: ../lib/yasr-ajax-functions.php:488
|
777 |
msgid "Choose wich set you want to insert."
|
778 |
msgstr "Wybierz zestaw, który chcesz wstawić."
|
779 |
|
780 |
+
#: ../lib/yasr-ajax-functions.php:496
|
781 |
msgid "Insert Multiset:"
|
782 |
msgstr "Wstaw Zestaw Ocen"
|
783 |
|
784 |
+
#: ../lib/yasr-ajax-functions.php:499
|
785 |
msgid "Insert Multiple Set"
|
786 |
msgstr "Wstaw Zestaw Ocen"
|
787 |
|
788 |
+
#: ../lib/yasr-ajax-functions.php:500
|
789 |
msgid "Insert multiple set in this post ?"
|
790 |
msgstr "Dodać Zestaw Ocen do tego wpisu?"
|
791 |
|
792 |
+
#: ../lib/yasr-ajax-functions.php:515
|
793 |
msgid "Ranking reviews"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: ../lib/yasr-ajax-functions.php:516
|
797 |
#, fuzzy
|
798 |
msgid "Insert Ranking reviews"
|
799 |
msgstr "Wstaw Top 5 aktywnych oceniających"
|
800 |
|
801 |
+
#: ../lib/yasr-ajax-functions.php:517
|
802 |
#, fuzzy
|
803 |
msgid "Insert Top 10 ranking for [yasr_overall_rating] shortcode"
|
804 |
msgstr "Wstaw Top 10 postów gości"
|
805 |
|
806 |
+
#: ../lib/yasr-ajax-functions.php:521
|
807 |
#, fuzzy
|
808 |
msgid "Users' ranking"
|
809 |
msgstr "Wstaw ogolny ranking"
|
810 |
|
811 |
+
#: ../lib/yasr-ajax-functions.php:522
|
812 |
#, fuzzy
|
813 |
msgid "Insert Users ranking"
|
814 |
msgstr "Wstaw ogolny ranking"
|
815 |
|
816 |
+
#: ../lib/yasr-ajax-functions.php:523
|
817 |
#, fuzzy
|
818 |
msgid "Insert Top 10 ranking for [yasr_visitor_votes] shortcode"
|
819 |
msgstr "Wstaw Top 10 postów gości"
|
820 |
|
821 |
+
#: ../lib/yasr-ajax-functions.php:527
|
822 |
msgid "Most active reviewers"
|
823 |
msgstr "Najbardziej aktywny recenzent"
|
824 |
|
825 |
+
#: ../lib/yasr-ajax-functions.php:528
|
826 |
#, fuzzy
|
827 |
msgid "Insert Most Active Reviewers"
|
828 |
msgstr "Wstaw Top 5 najaktywniejszych oceniających"
|
829 |
|
830 |
+
#: ../lib/yasr-ajax-functions.php:529
|
831 |
msgid "Insert Top 5 active reviewers"
|
832 |
msgstr "Wstaw Top 5 aktywnych oceniających"
|
833 |
|
834 |
+
#: ../lib/yasr-ajax-functions.php:533
|
835 |
#, fuzzy
|
836 |
msgid "Most Active Users"
|
837 |
msgstr "Najaktywniejsi użytkownicy"
|
838 |
|
839 |
+
#: ../lib/yasr-ajax-functions.php:534
|
840 |
#, fuzzy
|
841 |
msgid "Insert Most Active Users"
|
842 |
msgstr "Wstaw Top 10 najaktywniejszych użytkowników"
|
843 |
|
844 |
+
#: ../lib/yasr-ajax-functions.php:535
|
845 |
#, fuzzy
|
846 |
msgid "Insert Top 10 voters [yasr_visitor_votes] shortcode"
|
847 |
msgstr "Wstaw Top 10 postów gości"
|
848 |
|
849 |
+
#: ../lib/yasr-ajax-functions.php:587
|
850 |
msgid "Reviews and Visitor Votes have been successfull imported."
|
851 |
msgstr "Opinie i Oceny gości zostały zaimportowane."
|
852 |
|
853 |
+
#: ../lib/yasr-ajax-functions.php:593
|
854 |
msgid ""
|
855 |
"Step2: I will check if you used Multiple Sets and if so I will import them. "
|
856 |
"THIS MAY TAKE A WHILE!"
|
858 |
"Krok 2: Sprawdzę, czy stosuje się Zestawy Ocen, a jeśli tak będę je "
|
859 |
"importować. TO MOŻE CHWILĘ POTRWAĆ!"
|
860 |
|
861 |
+
#: ../lib/yasr-ajax-functions.php:595
|
862 |
msgid "Proceed Step 2"
|
863 |
msgstr "Następny krok 2"
|
864 |
|
865 |
+
#: ../lib/yasr-ajax-functions.php:602
|
866 |
msgid "Something goes wrong! Refresh the page and try again!"
|
867 |
msgstr "Coś poszło nie tak! Odśwież stronę i spróbuj jeszcze raz!"
|
868 |
|
869 |
+
#: ../lib/yasr-ajax-functions.php:631
|
870 |
msgid "I've found Multiple Set! Importing..."
|
871 |
msgstr "Znalazłem Zestaw Ocen! Importuje..."
|
872 |
|
873 |
+
#: ../lib/yasr-ajax-functions.php:640
|
874 |
msgid "Multi Set's name has been successfull imported."
|
875 |
msgstr "Nazwa Zestawu Oceny została zaimportowana pomyślnie."
|
876 |
|
877 |
+
#: ../lib/yasr-ajax-functions.php:642
|
878 |
msgid "Now I'm going to import Multi Set data"
|
879 |
msgstr "Teraz zaimportuje dane Zestawu Ocen"
|
880 |
|
881 |
+
#: ../lib/yasr-ajax-functions.php:653
|
882 |
msgid "All votes has been successfull imported."
|
883 |
msgstr "Wszystkie głosy zostały pomyślnie zaimportowane."
|
884 |
|
885 |
+
#: ../lib/yasr-ajax-functions.php:655
|
886 |
msgid "Done"
|
887 |
msgstr "Skończone"
|
888 |
|
889 |
+
#: ../lib/yasr-ajax-functions.php:660
|
890 |
msgid "I've found Multiple Set's votes but I couldn't insert into db"
|
891 |
msgstr "Znalazłem głosy Zestawu Ocen ale nie mogłem ich dodać do bazy"
|
892 |
|
893 |
+
#: ../lib/yasr-ajax-functions.php:668
|
894 |
msgid "I've found Multi Set but with no data"
|
895 |
msgstr "Znalazłem Zestaw Ocen ale bez danych"
|
896 |
|
897 |
+
#: ../lib/yasr-ajax-functions.php:677
|
898 |
msgid "I've found Multi Sets names but I couldn't insert into db"
|
899 |
msgstr "Znalazłem nazwy Multi Zestawów ale nie mogłem zamieścić ich w bazie"
|
900 |
|
901 |
+
#: ../lib/yasr-ajax-functions.php:685
|
902 |
msgid "Multisets were not found. Imported is done!"
|
903 |
msgstr "Zestaw Ocen nie znaleziony. Importowanie zakończone!"
|
904 |
|
905 |
+
#: ../lib/yasr-ajax-functions.php:888 ../lib/yasr-ajax-functions.php:1017
|
906 |
+
msgid "Error: you can't vote 0"
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: ../lib/yasr-ajax-functions.php:979 ../lib/yasr-ajax-functions.php:987
|
910 |
msgid "Average rating"
|
911 |
msgstr "Średnia ocen"
|
912 |
|
913 |
+
#: ../lib/yasr-ajax-functions.php:980 ../lib/yasr-ajax-functions.php:988
|
914 |
msgid "Vote Saved"
|
915 |
msgstr "Głos zapisany"
|
916 |
|
917 |
+
#: ../lib/yasr-ajax-functions.php:1087 ../lib/yasr-ajax-functions.php:1095
|
918 |
+
#: ../lib/yasr-ajax-functions.php:1103
|
919 |
msgid "Vote Updated"
|
920 |
msgstr "Głos zaktualizowany"
|
921 |
|
922 |
+
#: ../lib/yasr-ajax-functions.php:1171 ../lib/yasr-ajax-functions.php:1180
|
923 |
msgid "Average "
|
924 |
msgstr "Średnia"
|
925 |
|
lib/yasr-ajax-functions.php
CHANGED
@@ -432,7 +432,7 @@ if ( ! defined( 'ABSPATH' ) ) exit('You\'re not allowed to see this page'); // E
|
|
432 |
<a href="#" id="yasr-link-tab-main" class="nav-tab nav-tab-active"><?php _e("Main", "yasr"); ?></a>
|
433 |
<a href="#" id="yasr-link-tab-charts" class="nav-tab"><?php _e("Charts" , "yasr"); ?></a>
|
434 |
|
435 |
-
<a href="
|
436 |
|
437 |
</h2>
|
438 |
|
@@ -884,6 +884,11 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
|
|
884 |
$row_exists_result=NULL; //Avoid Undefined variable notice
|
885 |
$new_row_result=NULL; ////Avoid Undefined variable notice
|
886 |
|
|
|
|
|
|
|
|
|
|
|
887 |
if ($size == 'small') {
|
888 |
$rateit_class='rateit';
|
889 |
$px_size = '16';
|
@@ -1008,6 +1013,11 @@ add_action( 'wp_ajax_yasr_change_log_page', 'yasr_change_log_page_callback' );
|
|
1008 |
die( 'Security check' );
|
1009 |
}
|
1010 |
|
|
|
|
|
|
|
|
|
|
|
1011 |
global $wpdb;
|
1012 |
|
1013 |
$all_post_votes = $wpdb->get_results ("SELECT sum_votes, number_of_votes FROM " . YASR_VOTES_TABLE . " WHERE post_id=$post_id");
|
432 |
<a href="#" id="yasr-link-tab-main" class="nav-tab nav-tab-active"><?php _e("Main", "yasr"); ?></a>
|
433 |
<a href="#" id="yasr-link-tab-charts" class="nav-tab"><?php _e("Charts" , "yasr"); ?></a>
|
434 |
|
435 |
+
<a href="http://yetanotherstarsrating.com/f-a-q/" target="_blank" id="yasr-tinypopup-link-doc"><?php _e("Read the doc", "yasr"); ?></a>
|
436 |
|
437 |
</h2>
|
438 |
|
884 |
$row_exists_result=NULL; //Avoid Undefined variable notice
|
885 |
$new_row_result=NULL; ////Avoid Undefined variable notice
|
886 |
|
887 |
+
if ($rating < 1) {
|
888 |
+
_e("Error: you can't vote 0", "yasr");
|
889 |
+
die();
|
890 |
+
}
|
891 |
+
|
892 |
if ($size == 'small') {
|
893 |
$rateit_class='rateit';
|
894 |
$px_size = '16';
|
1013 |
die( 'Security check' );
|
1014 |
}
|
1015 |
|
1016 |
+
if ($new_rating < 1) {
|
1017 |
+
_e("Error: you can't vote 0", "yasr");
|
1018 |
+
die();
|
1019 |
+
}
|
1020 |
+
|
1021 |
global $wpdb;
|
1022 |
|
1023 |
$all_post_votes = $wpdb->get_results ("SELECT sum_votes, number_of_votes FROM " . YASR_VOTES_TABLE . " WHERE post_id=$post_id");
|
lib/yasr-functions.php
CHANGED
@@ -436,4 +436,58 @@ add_action( 'admin_init', 'yasr_get_custom_post_type');
|
|
436 |
|
437 |
}
|
438 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
?>
|
436 |
|
437 |
}
|
438 |
|
439 |
+
/****** Donation box dx ******/
|
440 |
+
|
441 |
+
function yasr_donate_dx () {
|
442 |
+
|
443 |
+
?>
|
444 |
+
|
445 |
+
<div class="yasr-donatedivdx" style="display:none">
|
446 |
+
<h3><?php _e('Donations', 'yasr'); ?></h3>
|
447 |
+
|
448 |
+
<?php _e('If you have found this plugin useful, please consider making a donation to help support future development. Your support will be much appreciated. ', 'yasr'); ?>
|
449 |
+
<br />
|
450 |
+
<?php _e('Thank you!', 'yasr'); ?>
|
451 |
+
<br />
|
452 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AXE284FYMNWDC">
|
453 |
+
<?php echo("<img src=" . YASR_IMG_DIR . "/paypal.png>"); ?>
|
454 |
+
</a>
|
455 |
+
|
456 |
+
<hr>
|
457 |
+
|
458 |
+
<h3><a href="http://yetanotherstarsrating.com"><?php _e('Follow YASR official site!', 'yasr') ?></a></h3>
|
459 |
+
|
460 |
+
</div>
|
461 |
+
|
462 |
+
<?php
|
463 |
+
|
464 |
+
}
|
465 |
+
|
466 |
+
|
467 |
+
function yasr_donate_bottom () {
|
468 |
+
|
469 |
+
?>
|
470 |
+
|
471 |
+
<div class="yasr-donatedivbottom" style="display:none">
|
472 |
+
<h3><?php _e('Donations', 'yasr'); ?></h3>
|
473 |
+
|
474 |
+
<?php _e('If you have found this plugin useful, please consider making a donation to help support future development. Your support will be much appreciated. ', 'yasr'); ?>
|
475 |
+
<br />
|
476 |
+
<?php _e('Thank you!', 'yasr'); ?>
|
477 |
+
<br />
|
478 |
+
|
479 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AXE284FYMNWDC">
|
480 |
+
<?php echo("<img src=" . YASR_IMG_DIR . "/paypal.png>"); ?>
|
481 |
+
</a>
|
482 |
+
|
483 |
+
<hr>
|
484 |
+
|
485 |
+
<h3><a href="http://yetanotherstarsrating.com"><?php _e('Follow YASR official site!', 'yasr') ?></a></h3>
|
486 |
+
|
487 |
+
</div>
|
488 |
+
|
489 |
+
<?php
|
490 |
+
|
491 |
+
}
|
492 |
+
|
493 |
?>
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AXE284FYMNWDC
|
3 |
Tags: 5 star, admin, administrator, AJAX, five-star, javascript, jquery, post rating, posts, rate, rating, rating platform, rating system, ratings, review, reviews, rich snippets, seo, star, star rating, stars, vote, Votes, voting, voting contest, schema, serp
|
4 |
Requires at least: 3.5
|
|
|
5 |
Tested up to: 4.0
|
6 |
-
Stable tag: 0.
|
7 |
-
License: GPL2
|
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
|
@@ -84,6 +84,10 @@ Of course not: you can easily add it on the visual editor just by clicking on th
|
|
84 |
|
85 |
== Changelog ==
|
86 |
|
|
|
|
|
|
|
|
|
87 |
= 0.5.9 =
|
88 |
* New feature: When writing a post or a page it's now possible to select the category that you're reviewing. This is a good improvement for SEO.
|
89 |
* Fixed loader when importing gd star rating data
|
2 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AXE284FYMNWDC
|
3 |
Tags: 5 star, admin, administrator, AJAX, five-star, javascript, jquery, post rating, posts, rate, rating, rating platform, rating system, ratings, review, reviews, rich snippets, seo, star, star rating, stars, vote, Votes, voting, voting contest, schema, serp
|
4 |
Requires at least: 3.5
|
5 |
+
Contributors: Dudo
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 0.6.0
|
|
|
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
|
84 |
|
85 |
== Changelog ==
|
86 |
|
87 |
+
= 0.6.0 =
|
88 |
+
* Bugfix: now it's not possible to vote 0
|
89 |
+
* Code Cleanup in yasr-settings-page and added link to yasr site, www.yetanotherstarsrating.com
|
90 |
+
|
91 |
= 0.5.9 =
|
92 |
* New feature: When writing a post or a page it's now possible to select the category that you're reviewing. This is a good improvement for SEO.
|
93 |
* Fixed loader when importing gd star rating data
|
yasr-settings-page.php
CHANGED
@@ -96,17 +96,7 @@ $n_multi_set = NULL;
|
|
96 |
</form>
|
97 |
</div>
|
98 |
|
99 |
-
|
100 |
-
<h3><?php _e('Donations', 'yasr'); ?></h3>
|
101 |
-
|
102 |
-
<?php _e('If you have found this plugin useful, please consider making a donation to help support future development. Your support will be much appreciated. ', 'yasr'); ?>
|
103 |
-
<br />
|
104 |
-
<?php _e('Thank you!', 'yasr'); ?>
|
105 |
-
<br />
|
106 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AXE284FYMNWDC">
|
107 |
-
<?php echo("<img src=" . YASR_IMG_DIR . "/paypal.png>"); ?>
|
108 |
-
</a>
|
109 |
-
</div>
|
110 |
|
111 |
<div class="yasr-space-settings-div">
|
112 |
</div>
|
@@ -290,19 +280,7 @@ $n_multi_set = NULL;
|
|
290 |
</div>
|
291 |
|
292 |
|
293 |
-
|
294 |
-
<h3><?php _e('Donations', 'yasr'); ?></h3>
|
295 |
-
|
296 |
-
<?php _e('If you have found this plugin useful, please consider making a donation to help support future development. Your support will be much appreciated. ', 'yasr'); ?>
|
297 |
-
<br />
|
298 |
-
<?php _e('Thank you!', 'yasr'); ?>
|
299 |
-
<br />
|
300 |
-
|
301 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AXE284FYMNWDC">
|
302 |
-
<?php echo("<img src=" . YASR_IMG_DIR . "/paypal.png>"); ?>
|
303 |
-
</a>
|
304 |
-
|
305 |
-
</div>
|
306 |
|
307 |
<div class="yasr-space-settings-div">
|
308 |
</div>
|
@@ -314,19 +292,7 @@ $n_multi_set = NULL;
|
|
314 |
|
315 |
?>
|
316 |
|
317 |
-
|
318 |
-
<h3><?php _e('Donations', 'yasr'); ?></h3>
|
319 |
-
|
320 |
-
<?php _e('If you have found this plugin useful, please consider making a donation to help support future development. Your support will be much appreciated. ', 'yasr'); ?>
|
321 |
-
<br />
|
322 |
-
<?php _e('Thank you!', 'yasr'); ?>
|
323 |
-
<br />
|
324 |
-
|
325 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AXE284FYMNWDC">
|
326 |
-
<?php echo("<img src=" . YASR_IMG_DIR . "/paypal.png>"); ?>
|
327 |
-
</a>
|
328 |
-
|
329 |
-
</div>
|
330 |
|
331 |
<!--End div wrap-->
|
332 |
</div>
|
96 |
</form>
|
97 |
</div>
|
98 |
|
99 |
+
<?php yasr_donate_dx(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
|
101 |
<div class="yasr-space-settings-div">
|
102 |
</div>
|
280 |
</div>
|
281 |
|
282 |
|
283 |
+
<?php yasr_donate_dx(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
|
285 |
<div class="yasr-space-settings-div">
|
286 |
</div>
|
292 |
|
293 |
?>
|
294 |
|
295 |
+
<?php yasr_donate_bottom (); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
|
297 |
<!--End div wrap-->
|
298 |
</div>
|
yet-another-stars-rating.php
CHANGED
@@ -3,9 +3,9 @@
|
|
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.
|
7 |
* Author: Dario Curvino
|
8 |
-
* Author URI: http://
|
9 |
* License: GPL2
|
10 |
*/
|
11 |
|
@@ -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.
|
32 |
|
33 |
//Plugin absolute path
|
34 |
define( "YASR_ABSOLUTE_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.6.0
|
7 |
* Author: Dario Curvino
|
8 |
+
* Author URI: http://yetanotherstarsrating.com/
|
9 |
* License: GPL2
|
10 |
*/
|
11 |
|
28 |
*/
|
29 |
|
30 |
|
31 |
+
define('YASR_VERSION_NUM', '0.6.0');
|
32 |
|
33 |
//Plugin absolute path
|
34 |
define( "YASR_ABSOLUTE_PATH", dirname(__FILE__) );
|