Version Description
- updated : updated Italian translation (thanks Gianni!)
- added : Serbian translation (thanks Diana!)
- updated : version checking to show ionCube status
- updated : add version number of plugin to version number of register script call
Download this release
Release Info
Developer | commentluv |
Plugin | CommentLuv |
Version | 2.92.2 |
Comparing to | |
See all releases |
Code changes from version 2.92.1 to 2.92.2
- commentluv.php +13 -9
- images/rs.png +0 -0
- lang/commentluv-it_IT.mo +0 -0
- lang/commentluv-it_IT.po +308 -223
- lang/commentluv-sr_RS.mo +0 -0
- lang/commentluv-sr_RS.po +641 -0
- readme.txt +9 -1
commentluv.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Plugin Name: CommentLuv
|
3 |
Plugin URI: http://comluv.com/
|
4 |
Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
5 |
-
Version: 2.92.
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://www.commentluv.com
|
8 |
Copyright (C) <2011> <Andy Bailey>
|
@@ -28,7 +28,7 @@
|
|
28 |
var $plugin_url;
|
29 |
var $plugin_dir;
|
30 |
var $db_option = 'commentluv_options';
|
31 |
-
var $version = "2.92.
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
@@ -344,10 +344,11 @@
|
|
344 |
$url = 'http://version.commentluv.com/';
|
345 |
$name = strip_tags(get_bloginfo('name'));
|
346 |
$description = strip_tags(get_bloginfo('description'));
|
|
|
347 |
$numluv = $this->get_numluv();
|
348 |
$dofollow = $options['dofollow'];
|
349 |
$whogets = $options['whogets'];
|
350 |
-
$body = array('version'=>$version,'enabled'=>$options['enable'],'name'=>$name,'description'=>$description,'avatarmd5'=>md5(strtolower(get_bloginfo('admin_email'))),'numluv'=>$numluv,'dofollow'=>$dofollow,'whogets'=>$whogets);
|
351 |
$response = wp_remote_head($url,array('method'=>'POST','body'=>$body));
|
352 |
$latest = $this->php_version(wp_remote_retrieve_header($response,'version'));
|
353 |
$message = wp_remote_retrieve_header($response,'message');
|
@@ -806,8 +807,8 @@
|
|
806 |
define('DOING_AJAX',true);
|
807 |
}
|
808 |
// try to prevent deprecated notices
|
809 |
-
ini_set('display_errors',0);
|
810 |
-
error_reporting(
|
811 |
include_once(ABSPATH.WPINC.'/class-simplepie.php');
|
812 |
$options = $this->get_options();
|
813 |
$num = 1;
|
@@ -978,7 +979,7 @@
|
|
978 |
$this->handle_load_domain ();
|
979 |
$default = array ('version'=>$this->version,'enable'=>'yes','enable_for'=>'both', 'default_on' => 'on', 'default_on_admin'=>'on',
|
980 |
'badge_choice' => 'drop_down', 'badge_type'=>'default', 'link'=>'off','infopanel'=>'on', 'infoback'=>'white', 'infotext'=>'black',
|
981 |
-
'comment_text'=>'[name] '.__('recently posted',$this->plugin_domain).'
|
982 |
'unreg_user_text'=>__('If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box.',$this->plugin_domain).' '.$register_link,
|
983 |
'unreg_user_text_panel'=>__('If this user had registered to my site then they could get 10 last posts to choose from when they comment and you would be able to see a list of their recent posts in this panel',$this->plugin_domain),
|
984 |
'template_insert'=>'','minifying'=>'','api_url'=>admin_url('admin-ajax.php'),'author_name'=>'author','email_name'=>'email','url_name'=>'url','comment_name'=>'comment',
|
@@ -1322,9 +1323,11 @@
|
|
1322 |
add_action ( 'wp_footer',array(&$this,'add_footer')); // add localize to footer
|
1323 |
|
1324 |
add_action ( 'wp_insert_comment', array (&$this, 'comment_posted'),1,2); // add member id and other data to comment meta priority 1, 2 vars
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
|
|
|
|
1328 |
add_filter ( 'comment_row_actions', array (&$this,'add_removeluv_link')); // adds a link to remove the luv from a comment on the comments admin screen
|
1329 |
}
|
1330 |
/**
|
@@ -1795,6 +1798,7 @@
|
|
1795 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/vn.png"/> <?php _e('Vietnamese',$this->plugin_domain);?></td><td><a target="_blank" href="http://thegioimanguon.com/">Xman</a></td></tr>
|
1796 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/hu.png"/> <?php _e('Hungarian',$this->plugin_domain);?></td><td><a target="_blank" href="http://no1tutorials.net/">Bruno</a></td></tr>
|
1797 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/sk.png"/> <?php _e('Slovak',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.brozman.sk/blog">Viliam Brozman</a></td></tr>
|
|
|
1798 |
|
1799 |
|
1800 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/sa.png"/> <?php _e('Arabic',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.melzarei.be/">Muhammad Elzarei</a>--></td></tr>
|
2 |
Plugin Name: CommentLuv
|
3 |
Plugin URI: http://comluv.com/
|
4 |
Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
5 |
+
Version: 2.92.2
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://www.commentluv.com
|
8 |
Copyright (C) <2011> <Andy Bailey>
|
28 |
var $plugin_url;
|
29 |
var $plugin_dir;
|
30 |
var $db_option = 'commentluv_options';
|
31 |
+
var $version = "2.92.2";
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
344 |
$url = 'http://version.commentluv.com/';
|
345 |
$name = strip_tags(get_bloginfo('name'));
|
346 |
$description = strip_tags(get_bloginfo('description'));
|
347 |
+
$ioncube = extension_loaded('ionCube Loader')? 'yes' : 'no';
|
348 |
$numluv = $this->get_numluv();
|
349 |
$dofollow = $options['dofollow'];
|
350 |
$whogets = $options['whogets'];
|
351 |
+
$body = array('version'=>$version,'enabled'=>$options['enable'],'name'=>$name,'description'=>$description,'avatarmd5'=>md5(strtolower(get_bloginfo('admin_email'))),'numluv'=>$numluv,'dofollow'=>$dofollow,'whogets'=>$whogets,'ioncube'=>$ioncube);
|
352 |
$response = wp_remote_head($url,array('method'=>'POST','body'=>$body));
|
353 |
$latest = $this->php_version(wp_remote_retrieve_header($response,'version'));
|
354 |
$message = wp_remote_retrieve_header($response,'message');
|
807 |
define('DOING_AJAX',true);
|
808 |
}
|
809 |
// try to prevent deprecated notices
|
810 |
+
@ini_set('display_errors',0);
|
811 |
+
@error_reporting(0);
|
812 |
include_once(ABSPATH.WPINC.'/class-simplepie.php');
|
813 |
$options = $this->get_options();
|
814 |
$num = 1;
|
979 |
$this->handle_load_domain ();
|
980 |
$default = array ('version'=>$this->version,'enable'=>'yes','enable_for'=>'both', 'default_on' => 'on', 'default_on_admin'=>'on',
|
981 |
'badge_choice' => 'drop_down', 'badge_type'=>'default', 'link'=>'off','infopanel'=>'on', 'infoback'=>'white', 'infotext'=>'black',
|
982 |
+
'comment_text'=>'[name] '.__('recently posted',$this->plugin_domain).'...[lastpost]', 'whogets'=>'registered', 'dofollow' => 'registered',
|
983 |
'unreg_user_text'=>__('If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box.',$this->plugin_domain).' '.$register_link,
|
984 |
'unreg_user_text_panel'=>__('If this user had registered to my site then they could get 10 last posts to choose from when they comment and you would be able to see a list of their recent posts in this panel',$this->plugin_domain),
|
985 |
'template_insert'=>'','minifying'=>'','api_url'=>admin_url('admin-ajax.php'),'author_name'=>'author','email_name'=>'email','url_name'=>'url','comment_name'=>'comment',
|
1323 |
add_action ( 'wp_footer',array(&$this,'add_footer')); // add localize to footer
|
1324 |
|
1325 |
add_action ( 'wp_insert_comment', array (&$this, 'comment_posted'),1,2); // add member id and other data to comment meta priority 1, 2 vars
|
1326 |
+
if(!is_admin()){
|
1327 |
+
add_filter ( 'comments_array', array (&$this, 'do_shortcode' ), 1 ); // add last blog post data to comment content
|
1328 |
+
} else {
|
1329 |
+
add_filter ( 'comment_text', array (&$this, 'do_shortcode' ), 1 ); // add last blog post data to comment content on admin screen
|
1330 |
+
}
|
1331 |
add_filter ( 'comment_row_actions', array (&$this,'add_removeluv_link')); // adds a link to remove the luv from a comment on the comments admin screen
|
1332 |
}
|
1333 |
/**
|
1798 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/vn.png"/> <?php _e('Vietnamese',$this->plugin_domain);?></td><td><a target="_blank" href="http://thegioimanguon.com/">Xman</a></td></tr>
|
1799 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/hu.png"/> <?php _e('Hungarian',$this->plugin_domain);?></td><td><a target="_blank" href="http://no1tutorials.net/">Bruno</a></td></tr>
|
1800 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/sk.png"/> <?php _e('Slovak',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.brozman.sk/blog">Viliam Brozman</a></td></tr>
|
1801 |
+
<tr><td><img src="<?php echo $this->plugin_url;?>images/rs.png"/> <?php _e('Serbian',$this->plugin_domain);?></td><td><a target="_blank" href="http://wpcouponshop.com/">Diana</a></td></tr>
|
1802 |
|
1803 |
|
1804 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/sa.png"/> <?php _e('Arabic',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.melzarei.be/">Muhammad Elzarei</a>--></td></tr>
|
images/rs.png
ADDED
Binary file
|
lang/commentluv-it_IT.mo
CHANGED
Binary file
|
lang/commentluv-it_IT.po
CHANGED
@@ -2,694 +2,779 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: CommentLuv in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
8 |
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-Language: Italian\n"
|
13 |
-
"X-Poedit-Country: ITALY\n"
|
14 |
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../commentluv.php:
|
20 |
msgid "CommentLuv requires Wordpress 3.0 or newer."
|
21 |
msgstr "CommentLuv richiede Wordpress 3.0 o superiore."
|
22 |
|
23 |
-
#: ../commentluv.php:
|
24 |
msgid "Please Update!"
|
25 |
msgstr "Aggiorna!"
|
26 |
|
27 |
-
#: ../commentluv.php:
|
28 |
-
msgid "
|
29 |
-
|
|
|
|
|
|
|
|
|
30 |
|
31 |
-
#: ../commentluv.php:
|
32 |
msgid "Please use http:// in front of your url"
|
33 |
msgstr "Aggiungi http:// davanti al tuo url"
|
34 |
|
35 |
-
#: ../commentluv.php:
|
36 |
-
msgid "
|
37 |
-
|
|
|
|
|
|
|
|
|
38 |
|
39 |
-
#: ../commentluv.php:
|
40 |
msgid "No info was available or an error occured"
|
41 |
msgstr "Nessuna info disponibile oppure si é verificato un errore"
|
42 |
|
43 |
-
#: ../commentluv.php:
|
44 |
msgid "Please wait"
|
45 |
msgstr "Attendi un attimo"
|
46 |
|
47 |
-
#: ../commentluv.php:
|
48 |
msgid "Please check your inbox, an email will be sent to"
|
49 |
msgstr "Vai nella tua casella di posta... ti arriverà una email"
|
50 |
|
51 |
-
#: ../commentluv.php:
|
52 |
msgid "in the next few minutes with a confirmation link"
|
53 |
msgstr "nei prossimi mminuti con il link per la conferma"
|
54 |
|
55 |
-
#: ../commentluv.php:
|
56 |
msgid "An error happened with the request. Try signing up at the site"
|
57 |
-
msgstr "
|
|
|
58 |
|
59 |
-
#: ../commentluv.php:
|
60 |
msgid "Twice Monthly"
|
61 |
msgstr "Quindicinale"
|
62 |
|
63 |
-
#: ../commentluv.php:
|
64 |
msgid "CommentLuv is enabled"
|
65 |
msgstr "CommentLuv é attivo"
|
66 |
|
67 |
-
#: ../commentluv.php:
|
68 |
msgid "Show more posts"
|
69 |
msgstr "Mostra più articoli"
|
70 |
|
71 |
-
#: ../commentluv.php:
|
72 |
msgid "I have only commented on this post"
|
73 |
msgstr "Ho commentato solo in questo articolo"
|
74 |
|
75 |
-
#: ../commentluv.php:
|
76 |
-
msgid "
|
77 |
-
|
|
|
|
|
|
|
78 |
|
79 |
-
#: ../commentluv.php:
|
80 |
msgid "User has not saved a description in their profile page"
|
81 |
msgstr "L'utente non ha salvato nessuna descrizione nella sua pagina profilo"
|
82 |
|
83 |
-
#: ../commentluv.php:
|
84 |
msgid "is the administrator of this site"
|
85 |
msgstr "é l'amministratore di questo sito"
|
86 |
|
87 |
-
#: ../commentluv.php:
|
88 |
msgid "is a registered member of my site"
|
89 |
msgstr "é un utente registrato nel mio sito"
|
90 |
|
91 |
-
#: ../commentluv.php:
|
92 |
-
#: ../commentluv.php:681
|
93 |
msgid "Clicks on this link on this comment"
|
94 |
msgstr "Clicca il link su questo commento"
|
95 |
|
96 |
-
#: ../commentluv.php:
|
97 |
-
#: ../commentluv.php:682
|
98 |
msgid "approved comments on this site"
|
99 |
msgstr "commenti approvati per questo sito"
|
100 |
|
101 |
-
#: ../commentluv.php:
|
102 |
-
#: ../commentluv.php:683
|
103 |
msgid "Some other posts I have commented on"
|
104 |
msgstr "Altri commenti ai quali ho partecipato"
|
105 |
|
106 |
-
#: ../commentluv.php:
|
107 |
msgid "Some of my other posts"
|
108 |
msgstr "Alcuni dei miei articoli"
|
109 |
|
110 |
-
#: ../commentluv.php:
|
111 |
msgid "has not registered on this site"
|
112 |
msgstr "non é registrato nel mio sito"
|
113 |
|
114 |
-
#: ../commentluv.php:
|
115 |
msgid "Could not get posts for home blog"
|
116 |
msgstr "Impossibile recuperare gli articoli"
|
117 |
|
118 |
-
#: ../commentluv.php:
|
119 |
-
|
120 |
-
|
121 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
|
123 |
-
#: ../commentluv.php:
|
124 |
-
#: ../commentluv.php:970
|
125 |
-
#: ../commentluv.php:1530
|
126 |
msgid "Register"
|
127 |
msgstr "Registrati"
|
128 |
|
129 |
-
#: ../commentluv.php:
|
130 |
-
msgid "
|
131 |
-
|
|
|
|
|
132 |
|
133 |
-
#: ../commentluv.php:
|
134 |
msgid "recently posted"
|
135 |
msgstr "pubblicati di recente"
|
136 |
|
137 |
-
#: ../commentluv.php:
|
138 |
-
msgid "
|
139 |
-
|
|
|
|
|
|
|
|
|
140 |
|
141 |
-
#: ../commentluv.php:
|
142 |
-
msgid "
|
143 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
|
145 |
-
#: ../commentluv.php:
|
146 |
-
msgid "
|
147 |
-
|
|
|
|
|
|
|
148 |
|
149 |
-
#: ../commentluv.php:
|
150 |
-
msgid "
|
151 |
-
|
|
|
|
|
|
|
|
|
152 |
|
153 |
-
#: ../commentluv.php:
|
154 |
msgid "Missing wp_commentmeta table"
|
155 |
msgstr "Manca la tabella wp_commentmeta"
|
156 |
|
157 |
-
#: ../commentluv.php:
|
158 |
msgid "Settings"
|
159 |
msgstr "Impostazioni"
|
160 |
|
161 |
-
#: ../commentluv.php:
|
162 |
-
#: ../commentluv.php:1297
|
163 |
msgid "No Posts Were Found!"
|
164 |
msgstr "Non é stato trovato nessun articolo!"
|
165 |
|
166 |
-
#: ../commentluv.php:
|
167 |
#, php-format
|
168 |
msgid "%s or <a href=\"%s\">update now</a>."
|
169 |
msgstr "%s o <a href=\"%s\">aggiorna subito</a>."
|
170 |
|
171 |
-
#: ../commentluv.php:
|
172 |
-
msgid "
|
173 |
-
|
|
|
|
|
|
|
|
|
174 |
|
175 |
-
#: ../commentluv.php:
|
176 |
msgid "CommentLuv Settings v"
|
177 |
msgstr "Impostazioni CommentLuv v"
|
178 |
|
179 |
-
#: ../commentluv.php:
|
180 |
msgid "Important!"
|
181 |
msgstr "Importante!"
|
182 |
|
183 |
-
#: ../commentluv.php:
|
184 |
msgid "Subscription Information"
|
185 |
msgstr "Informazioni abbonamento"
|
186 |
|
187 |
-
#: ../commentluv.php:
|
188 |
msgid "CommentLuv 3.0 Premium is here!"
|
189 |
msgstr "Disponibile la versione premium 3.0 di CommentLuv!"
|
190 |
|
191 |
-
#: ../commentluv.php:
|
192 |
-
msgid "
|
193 |
-
|
|
|
|
|
|
|
|
|
194 |
|
195 |
-
#: ../commentluv.php:
|
196 |
-
msgid "
|
197 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
199 |
-
#: ../commentluv.php:
|
200 |
-
msgid "
|
201 |
-
|
|
|
|
|
|
|
|
|
202 |
|
203 |
-
#: ../commentluv.php:
|
204 |
msgid "Resend Verification"
|
205 |
msgstr "Reinvia verifica"
|
206 |
|
207 |
-
#: ../commentluv.php:
|
208 |
msgid "Click for a special offer!"
|
209 |
msgstr "Clicca per una offerta speciale!"
|
210 |
|
211 |
-
#: ../commentluv.php:
|
212 |
-
msgid "
|
213 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
|
215 |
-
#: ../commentluv.php:
|
216 |
msgid "Primary Setting"
|
217 |
msgstr "Impostazioni principali"
|
218 |
|
219 |
-
#: ../commentluv.php:
|
220 |
-
#: ../commentluv.php:
|
221 |
-
#: ../commentluv.php:1505
|
222 |
-
#: ../commentluv.php:1563
|
223 |
-
#: ../commentluv.php:1594
|
224 |
msgid "Help Video"
|
225 |
msgstr "Video aiuto"
|
226 |
|
227 |
-
#: ../commentluv.php:
|
228 |
msgid "Enable CommentLuv?"
|
229 |
msgstr "Attivare CommentLuv?"
|
230 |
|
231 |
-
#: ../commentluv.php:
|
232 |
msgid "Yes"
|
233 |
msgstr "Sì"
|
234 |
|
235 |
-
#: ../commentluv.php:
|
236 |
msgid "No"
|
237 |
msgstr "No"
|
238 |
|
239 |
-
#: ../commentluv.php:
|
240 |
msgid "On Posts"
|
241 |
msgstr " negli articoli"
|
242 |
|
243 |
-
#: ../commentluv.php:
|
244 |
msgid "On Pages"
|
245 |
msgstr " nelle pagine"
|
246 |
|
247 |
-
#: ../commentluv.php:
|
248 |
msgid "On Both"
|
249 |
msgstr " su entrambi"
|
250 |
|
251 |
-
#: ../commentluv.php:
|
252 |
msgid "On by default?"
|
253 |
msgstr "attivo come predefinita?"
|
254 |
|
255 |
-
#: ../commentluv.php:
|
256 |
msgid "On for admin?"
|
257 |
msgstr "attivo per l'amministratore?"
|
258 |
|
259 |
-
#: ../commentluv.php:
|
260 |
msgid "Appearance"
|
261 |
msgstr "Aspetto"
|
262 |
|
263 |
-
#: ../commentluv.php:
|
264 |
msgid "Badge"
|
265 |
msgstr "badge"
|
266 |
|
267 |
-
#: ../commentluv.php:
|
268 |
msgid "Custom Image URL"
|
269 |
msgstr "URL immagine"
|
270 |
|
271 |
-
#: ../commentluv.php:
|
272 |
msgid "Use Text"
|
273 |
msgstr "utilizza testo"
|
274 |
|
275 |
-
#: ../commentluv.php:
|
276 |
msgid "Default"
|
277 |
msgstr "Predefinito"
|
278 |
|
279 |
-
#: ../commentluv.php:
|
280 |
msgid "White"
|
281 |
msgstr "Bianco"
|
282 |
|
283 |
-
#: ../commentluv.php:
|
284 |
msgid "Black"
|
285 |
msgstr "Nero"
|
286 |
|
287 |
-
#: ../commentluv.php:
|
288 |
msgid "None"
|
289 |
msgstr "Nessuno"
|
290 |
|
291 |
-
#: ../commentluv.php:
|
292 |
msgid "Link to Commentluv?"
|
293 |
msgstr "link a Commentluv?"
|
294 |
|
295 |
-
#: ../commentluv.php:
|
296 |
msgid "Enable info panel?"
|
297 |
msgstr "pannello info?"
|
298 |
|
299 |
-
#: ../commentluv.php:
|
300 |
msgid "Info panel background color"
|
301 |
msgstr "colore sfondo pannello info"
|
302 |
|
303 |
-
#: ../commentluv.php:
|
304 |
msgid "Info panel text color"
|
305 |
msgstr "colore testo pannello info"
|
306 |
|
307 |
-
#: ../commentluv.php:
|
308 |
msgid "Example text and background color"
|
309 |
msgstr "esempio di testo e colore di sfondo"
|
310 |
|
311 |
-
#: ../commentluv.php:
|
312 |
msgid "Messages"
|
313 |
msgstr "Messaggi"
|
314 |
|
315 |
-
#: ../commentluv.php:
|
316 |
msgid "Text to be displayed in the comment"
|
317 |
msgstr "testo da mostrare nel commento"
|
318 |
|
319 |
-
#: ../commentluv.php:
|
320 |
msgid "[name] = The users name"
|
321 |
msgstr "[name] = nome utente"
|
322 |
|
323 |
-
#: ../commentluv.php:
|
324 |
msgid "[lastpost] = The last blog post link"
|
325 |
msgstr "[lastpost] = link a ultimo articolo"
|
326 |
|
327 |
-
#: ../commentluv.php:
|
328 |
msgid "Message for unregistered user in the drop down box"
|
329 |
msgstr "messaggio (casella drop down) per gli utenti non registrati"
|
330 |
|
331 |
-
#: ../commentluv.php:
|
332 |
-
#: ../commentluv.php:1549
|
333 |
msgid "Message will not be shown if you do not have registrations enabled"
|
334 |
-
msgstr "
|
|
|
335 |
|
336 |
-
#: ../commentluv.php:
|
337 |
msgid "Your register link code"
|
338 |
msgstr "Il tuo codice link registrazione"
|
339 |
|
340 |
-
#: ../commentluv.php:
|
341 |
-
msgid "
|
342 |
-
|
|
|
|
|
|
|
|
|
343 |
|
344 |
-
#: ../commentluv.php:
|
345 |
-
msgid "
|
346 |
-
|
|
|
|
|
|
|
|
|
347 |
|
348 |
-
#: ../commentluv.php:
|
349 |
msgid "here"
|
350 |
msgstr "qui"
|
351 |
|
352 |
-
#: ../commentluv.php:
|
353 |
msgid "Message for unregistered user in the info panel"
|
354 |
msgstr "Messaggio (pannello info) per gli utenti non registrati"
|
355 |
|
356 |
-
#: ../commentluv.php:
|
357 |
msgid "Operational Settings"
|
358 |
msgstr "Impostazioni di gestione"
|
359 |
|
360 |
-
#: ../commentluv.php:
|
361 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
362 |
msgstr "chi potrà mostrare gli ultimi 10 articoli pubblicati?"
|
363 |
|
364 |
-
#: ../commentluv.php:
|
365 |
msgid "Only Registered Members"
|
366 |
msgstr "solo i membri registrati"
|
367 |
|
368 |
-
#: ../commentluv.php:
|
369 |
msgid "Everybody"
|
370 |
msgstr "chiunque"
|
371 |
|
372 |
-
#: ../commentluv.php:
|
373 |
msgid "Nobody"
|
374 |
msgstr "nessuno"
|
375 |
|
376 |
-
#: ../commentluv.php:
|
377 |
msgid "Whose links should be dofollow?"
|
378 |
msgstr "assegnazione dei link dofollow?"
|
379 |
|
380 |
-
#: ../commentluv.php:
|
381 |
msgid "Only Registered Members Links"
|
382 |
msgstr "solo per gli utenti registrati"
|
383 |
|
384 |
-
#: ../commentluv.php:
|
385 |
msgid "Everybody gets dofollow links"
|
386 |
msgstr "link dofollow per chiunque"
|
387 |
|
388 |
-
#: ../commentluv.php:
|
389 |
msgid "Nobody gets dofollow links"
|
390 |
msgstr "nessuno"
|
391 |
|
392 |
-
#: ../commentluv.php:
|
393 |
msgid "Technical Settings"
|
394 |
msgstr "Impostazioni tecniche"
|
395 |
|
396 |
-
#: ../commentluv.php:
|
397 |
msgid "Click to open technical settings"
|
398 |
msgstr "Clicca per aprire"
|
399 |
|
400 |
-
#: ../commentluv.php:
|
401 |
msgid "Please check the help video for this section before changing settings"
|
402 |
-
msgstr "
|
403 |
-
|
404 |
-
|
405 |
-
msgid "In most cases, you will NOT need to change the settings in this box unless you have a custom comment form, template or you are using minifying or caching plugins"
|
406 |
-
msgstr "Nella maggior parte dei casi, NON dovrai modificare le impostazioni di questa sezione a meno che tu non abbia un template o modulo dei commenti personalizzato oppure stessi facendo uso di un plugin per la cache/minimizzazione"
|
407 |
|
408 |
#: ../commentluv.php:1607
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
msgid "Compatibility"
|
410 |
msgstr "Compatibilità"
|
411 |
|
412 |
-
#: ../commentluv.php:
|
413 |
msgid "Use manual insert of badge code?"
|
414 |
msgstr "inserire manualmente il codice?"
|
415 |
|
416 |
-
#: ../commentluv.php:
|
417 |
msgid "Enable minifying compatibility?"
|
418 |
msgstr "attivare compatibilità minimizzazione?"
|
419 |
|
420 |
-
#: ../commentluv.php:
|
421 |
msgid "For caching plugins (places localized code in footer)"
|
422 |
msgstr "per i plugin di cache (posiziona nel footer codice localizzazione)"
|
423 |
|
424 |
-
#: ../commentluv.php:
|
425 |
msgid "Disable Detection?"
|
426 |
msgstr "Disattivare rilevamento?"
|
427 |
|
428 |
-
#: ../commentluv.php:
|
429 |
msgid "For XML errors"
|
430 |
msgstr "Per errori XML"
|
431 |
|
432 |
-
#: ../commentluv.php:
|
433 |
msgid "API URL"
|
434 |
msgstr "URL API"
|
435 |
|
436 |
-
#: ../commentluv.php:
|
437 |
msgid "URL to use for API"
|
438 |
msgstr "URL da utilizzare per la API"
|
439 |
|
440 |
-
#: ../commentluv.php:
|
441 |
msgid "Comment Form Field Values"
|
442 |
msgstr "Valori campo modulo commenti"
|
443 |
|
444 |
-
#: ../commentluv.php:
|
445 |
msgid "Authors Name field name"
|
446 |
msgstr "nome per il campo autore"
|
447 |
|
448 |
-
#: ../commentluv.php:
|
449 |
msgid "Email field name"
|
450 |
msgstr "nome per il campo email"
|
451 |
|
452 |
-
#: ../commentluv.php:
|
453 |
msgid "Authors URL field name"
|
454 |
msgstr "nome per il campo URL autore"
|
455 |
|
456 |
-
#: ../commentluv.php:
|
457 |
msgid "Comment Text Area name"
|
458 |
msgstr "nome per l'area di testo dei commenti"
|
459 |
|
460 |
-
#: ../commentluv.php:
|
461 |
msgid "Extras"
|
462 |
msgstr "Extra"
|
463 |
|
464 |
-
#: ../commentluv.php:
|
465 |
-
#: ../commentluv.php:1672
|
466 |
msgid "Nothing"
|
467 |
msgstr "niente"
|
468 |
|
469 |
-
#: ../commentluv.php:
|
470 |
-
#: ../commentluv.php:1673
|
471 |
msgid "Hide Link"
|
472 |
msgstr "Nascondi link"
|
473 |
|
474 |
-
#: ../commentluv.php:
|
475 |
-
#: ../commentluv.php:1674
|
476 |
msgid "Spam Comment"
|
477 |
msgstr "Commento spam"
|
478 |
|
479 |
-
#: ../commentluv.php:
|
480 |
-
#: ../commentluv.php:1675
|
481 |
msgid "Delete Comment"
|
482 |
msgstr "Cancella commento"
|
483 |
|
484 |
-
#: ../commentluv.php:
|
485 |
msgid "Action to take if comment has no Author URL"
|
486 |
msgstr "Azione da compiere se commento privo URL autore"
|
487 |
|
488 |
-
#: ../commentluv.php:
|
489 |
msgid "Prevents spammer abuse"
|
490 |
msgstr "Impedisce abuso di spam"
|
491 |
|
492 |
-
#: ../commentluv.php:
|
493 |
msgid "Action to take if link does not match domain of author"
|
494 |
msgstr "Azione da compiere se commento non coincide con dominio autore"
|
495 |
|
496 |
-
#: ../commentluv.php:
|
497 |
msgid "Prevents users from adding fake author URLs to get around Akismet"
|
498 |
-
msgstr "
|
|
|
499 |
|
500 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
501 |
msgid "Diagnostics Info"
|
502 |
msgstr "Info diagnostica"
|
503 |
|
504 |
-
#: ../commentluv.php:
|
505 |
msgid "You can copy this information and send it to me if I request it"
|
506 |
msgstr "copia queste informazioni ed inviarmele (se richiesto)"
|
507 |
|
508 |
-
#: ../commentluv.php:
|
509 |
msgid "Save Settings"
|
510 |
msgstr "Salva le impostazioni"
|
511 |
|
512 |
-
#: ../commentluv.php:
|
513 |
msgid "Reset Settings"
|
514 |
msgstr "Ripristino impostazioni"
|
515 |
|
516 |
-
#: ../commentluv.php:
|
517 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
518 |
-
msgstr "
|
|
|
519 |
|
520 |
-
#: ../commentluv.php:
|
521 |
msgid "Reset"
|
522 |
msgstr "Azzera"
|
523 |
|
524 |
-
#: ../commentluv.php:
|
525 |
msgid "Plugin Info"
|
526 |
msgstr "Info sul plugin"
|
527 |
|
528 |
-
#: ../commentluv.php:
|
529 |
msgid "Start Here"
|
530 |
msgstr "Inizia qui"
|
531 |
|
532 |
-
#: ../commentluv.php:
|
533 |
msgid "Author"
|
534 |
msgstr "Autore"
|
535 |
|
536 |
-
#: ../commentluv.php:
|
537 |
msgid "Home Page"
|
538 |
msgstr "Home Page"
|
539 |
|
540 |
-
#: ../commentluv.php:
|
541 |
msgid "Visit www.commentluv.com!"
|
542 |
msgstr "Visita www.commentluv.com!"
|
543 |
|
544 |
-
#: ../commentluv.php:
|
545 |
msgid "Social"
|
546 |
msgstr "Social"
|
547 |
|
548 |
-
#: ../commentluv.php:
|
549 |
msgid "Help"
|
550 |
msgstr "Aiuto"
|
551 |
|
552 |
-
#: ../commentluv.php:
|
553 |
msgid "Help Desk"
|
554 |
msgstr "Sezione aiuto"
|
555 |
|
556 |
-
#: ../commentluv.php:
|
557 |
msgid "Do you like this plugin?"
|
558 |
msgstr "Ti piace questo plugin?"
|
559 |
|
560 |
-
#: ../commentluv.php:
|
561 |
msgid "News"
|
562 |
msgstr "Notizie"
|
563 |
|
564 |
-
#: ../commentluv.php:
|
565 |
msgid "Thanks to the following for translations"
|
566 |
msgstr "Un grazie ai seguenti traduttori"
|
567 |
|
568 |
-
#: ../commentluv.php:
|
569 |
msgid "Italian"
|
570 |
msgstr "Italiano"
|
571 |
|
572 |
-
#: ../commentluv.php:
|
573 |
msgid "Dutch"
|
574 |
msgstr "Olandese"
|
575 |
|
576 |
-
#: ../commentluv.php:
|
577 |
msgid "Polish"
|
578 |
msgstr "Polacco"
|
579 |
|
580 |
-
#: ../commentluv.php:
|
581 |
msgid "Georgian"
|
582 |
msgstr "Georgiano"
|
583 |
|
584 |
-
#: ../commentluv.php:
|
585 |
msgid "Lithuanian"
|
586 |
msgstr "Lituano"
|
587 |
|
588 |
-
#: ../commentluv.php:
|
589 |
msgid "Portuguese"
|
590 |
msgstr "Portoghese"
|
591 |
|
592 |
-
#: ../commentluv.php:
|
593 |
msgid "Malaysian"
|
594 |
msgstr "Malese"
|
595 |
|
596 |
-
#: ../commentluv.php:
|
597 |
msgid "Hindi"
|
598 |
msgstr "Hindi"
|
599 |
|
600 |
-
#: ../commentluv.php:
|
601 |
msgid "Indonesian"
|
602 |
msgstr "Indonesiano"
|
603 |
|
604 |
-
#: ../commentluv.php:
|
605 |
msgid "Chinese (s)"
|
606 |
msgstr "Cinese"
|
607 |
|
608 |
-
#: ../commentluv.php:
|
609 |
msgid "Spanish"
|
610 |
msgstr "Spagnolo"
|
611 |
|
612 |
-
#: ../commentluv.php:
|
613 |
msgid "German"
|
614 |
msgstr "Tedesco"
|
615 |
|
616 |
-
#: ../commentluv.php:
|
617 |
msgid "Persian"
|
618 |
msgstr "Persiano"
|
619 |
|
620 |
-
#: ../commentluv.php:
|
621 |
msgid "Tamil"
|
622 |
msgstr "Tamil"
|
623 |
|
624 |
-
#: ../commentluv.php:
|
625 |
msgid "Ukranian"
|
626 |
msgstr "Ucraino"
|
627 |
|
628 |
-
#: ../commentluv.php:
|
629 |
msgid "Latvian"
|
630 |
msgstr "Lettone"
|
631 |
|
632 |
-
#: ../commentluv.php:
|
633 |
msgid "Romanian"
|
634 |
msgstr "Rumeno"
|
635 |
|
636 |
-
#: ../commentluv.php:
|
637 |
msgid "Norwegian"
|
638 |
msgstr "Norvegese"
|
639 |
|
640 |
-
#: ../commentluv.php:
|
641 |
msgid "French"
|
642 |
msgstr "Francese"
|
643 |
|
644 |
-
#: ../commentluv.php:
|
645 |
msgid "Danish"
|
646 |
msgstr "Danese"
|
647 |
|
648 |
-
#: ../commentluv.php:
|
649 |
msgid "Russian"
|
650 |
msgstr "Russo"
|
651 |
|
652 |
-
#: ../commentluv.php:
|
653 |
msgid "Bengali"
|
654 |
msgstr "Bengalese"
|
655 |
|
656 |
-
#: ../commentluv.php:
|
657 |
msgid "Hebrew"
|
658 |
msgstr "Ebraico"
|
659 |
|
660 |
-
#: ../commentluv.php:
|
661 |
msgid "Vietnamese"
|
662 |
msgstr "Vietnamita"
|
663 |
|
664 |
-
#: ../commentluv.php:
|
665 |
msgid "Hungarian"
|
666 |
msgstr "Ungherese"
|
667 |
|
668 |
-
#: ../commentluv.php:
|
669 |
msgid "Slovak"
|
670 |
msgstr "Slovacco"
|
671 |
|
672 |
-
#: ../commentluv.php:
|
673 |
msgid "Arabic"
|
674 |
msgstr "Arabo"
|
675 |
|
676 |
-
#: ../commentluv.php:
|
677 |
msgid "Want your link here?"
|
678 |
msgstr "Vuoi il tuo link qui?"
|
679 |
|
680 |
-
#: ../commentluv.php:
|
681 |
msgid "How To Submit A Translation"
|
682 |
msgstr "Contribuisci alla traduzione"
|
683 |
|
684 |
-
#: ../commentluv.php:
|
685 |
msgid "Special thanks go to the following"
|
686 |
msgstr "Un grazie particolare a"
|
687 |
|
688 |
-
#: ../commentluv.php:
|
689 |
msgid "CSS Help"
|
690 |
msgstr "Aiuto CSS"
|
691 |
|
692 |
-
#: ../commentluv.php:
|
693 |
msgid "Badge GFX"
|
694 |
msgstr "Badge GFX"
|
695 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: CommentLuv in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-08-16 21:04+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
8 |
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
9 |
+
"Language: it_IT\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
+
#: ../commentluv.php:53
|
19 |
msgid "CommentLuv requires Wordpress 3.0 or newer."
|
20 |
msgstr "CommentLuv richiede Wordpress 3.0 o superiore."
|
21 |
|
22 |
+
#: ../commentluv.php:53
|
23 |
msgid "Please Update!"
|
24 |
msgstr "Aggiorna!"
|
25 |
|
26 |
+
#: ../commentluv.php:242
|
27 |
+
msgid ""
|
28 |
+
"Please enter a URL and then click the CommentLuv checkbox if you want to add "
|
29 |
+
"your last blog post"
|
30 |
+
msgstr ""
|
31 |
+
"Inserisci un URL e clicca sulla casella di verifica di CommentLuv qualora "
|
32 |
+
"volessi aggiungere i tuoi ultimi articoli"
|
33 |
|
34 |
+
#: ../commentluv.php:243
|
35 |
msgid "Please use http:// in front of your url"
|
36 |
msgstr "Aggiungi http:// davanti al tuo url"
|
37 |
|
38 |
+
#: ../commentluv.php:244
|
39 |
+
msgid ""
|
40 |
+
"You need to visit your profile in the dashboard and update your details with "
|
41 |
+
"your site URL"
|
42 |
+
msgstr ""
|
43 |
+
"Vai nella bacheca ed aggiorna i dettagli per il tuo profilo aggiungendo "
|
44 |
+
"l'URL del tuo sito"
|
45 |
|
46 |
+
#: ../commentluv.php:245
|
47 |
msgid "No info was available or an error occured"
|
48 |
msgstr "Nessuna info disponibile oppure si é verificato un errore"
|
49 |
|
50 |
+
#: ../commentluv.php:269
|
51 |
msgid "Please wait"
|
52 |
msgstr "Attendi un attimo"
|
53 |
|
54 |
+
#: ../commentluv.php:269
|
55 |
msgid "Please check your inbox, an email will be sent to"
|
56 |
msgstr "Vai nella tua casella di posta... ti arriverà una email"
|
57 |
|
58 |
+
#: ../commentluv.php:269
|
59 |
msgid "in the next few minutes with a confirmation link"
|
60 |
msgstr "nei prossimi mminuti con il link per la conferma"
|
61 |
|
62 |
+
#: ../commentluv.php:269
|
63 |
msgid "An error happened with the request. Try signing up at the site"
|
64 |
+
msgstr ""
|
65 |
+
"Si é verificato un errore durante la richiesta. Prova a registrarti nel sito"
|
66 |
|
67 |
+
#: ../commentluv.php:422
|
68 |
msgid "Twice Monthly"
|
69 |
msgstr "Quindicinale"
|
70 |
|
71 |
+
#: ../commentluv.php:483
|
72 |
msgid "CommentLuv is enabled"
|
73 |
msgstr "CommentLuv é attivo"
|
74 |
|
75 |
+
#: ../commentluv.php:526
|
76 |
msgid "Show more posts"
|
77 |
msgstr "Mostra più articoli"
|
78 |
|
79 |
+
#: ../commentluv.php:622
|
80 |
msgid "I have only commented on this post"
|
81 |
msgstr "Ho commentato solo in questo articolo"
|
82 |
|
83 |
+
#: ../commentluv.php:625
|
84 |
+
msgid ""
|
85 |
+
"If I had made more comments on this site, you would see more of my other "
|
86 |
+
"posts here"
|
87 |
+
msgstr ""
|
88 |
+
"Avessi fatto molti commenti su questo sito, qui puoi trovarne degli altri"
|
89 |
|
90 |
+
#: ../commentluv.php:650
|
91 |
msgid "User has not saved a description in their profile page"
|
92 |
msgstr "L'utente non ha salvato nessuna descrizione nella sua pagina profilo"
|
93 |
|
94 |
+
#: ../commentluv.php:662
|
95 |
msgid "is the administrator of this site"
|
96 |
msgstr "é l'amministratore di questo sito"
|
97 |
|
98 |
+
#: ../commentluv.php:664
|
99 |
msgid "is a registered member of my site"
|
100 |
msgstr "é un utente registrato nel mio sito"
|
101 |
|
102 |
+
#: ../commentluv.php:667 ../commentluv.php:686
|
|
|
103 |
msgid "Clicks on this link on this comment"
|
104 |
msgstr "Clicca il link su questo commento"
|
105 |
|
106 |
+
#: ../commentluv.php:667 ../commentluv.php:687
|
|
|
107 |
msgid "approved comments on this site"
|
108 |
msgstr "commenti approvati per questo sito"
|
109 |
|
110 |
+
#: ../commentluv.php:667 ../commentluv.php:688
|
|
|
111 |
msgid "Some other posts I have commented on"
|
112 |
msgstr "Altri commenti ai quali ho partecipato"
|
113 |
|
114 |
+
#: ../commentluv.php:667
|
115 |
msgid "Some of my other posts"
|
116 |
msgstr "Alcuni dei miei articoli"
|
117 |
|
118 |
+
#: ../commentluv.php:680
|
119 |
msgid "has not registered on this site"
|
120 |
msgstr "non é registrato nel mio sito"
|
121 |
|
122 |
+
#: ../commentluv.php:838
|
123 |
msgid "Could not get posts for home blog"
|
124 |
msgstr "Impossibile recuperare gli articoli"
|
125 |
|
126 |
+
#: ../commentluv.php:844 ../commentluv.php:1152
|
127 |
+
msgid ""
|
128 |
+
"Warning! You have set to show 10 posts for registered users but you have not "
|
129 |
+
"enabled user registrations on your site. You should change the operational "
|
130 |
+
"settings in the CommentLuv settings page to show 10 posts for everyone or "
|
131 |
+
"enable user registrations"
|
132 |
+
msgstr ""
|
133 |
+
"Attenzione! Hai impostato a 10 il numero di articoli da mostrare per gli "
|
134 |
+
"utenti registrati ma non hai abilitato la registrazione utenti per il tuo "
|
135 |
+
"sito. Dovresti quindi modificare il setting operativo nella pagina delle "
|
136 |
+
"impostazioni di CommentLuv in modo da poter mostrare 10 post per tutti "
|
137 |
+
"oppure attivare le registrazioni utente"
|
138 |
|
139 |
+
#: ../commentluv.php:934 ../commentluv.php:975 ../commentluv.php:1535
|
|
|
|
|
140 |
msgid "Register"
|
141 |
msgstr "Registrati"
|
142 |
|
143 |
+
#: ../commentluv.php:939
|
144 |
+
msgid ""
|
145 |
+
"If you are registered, you need to log in to get 10 posts to choose from"
|
146 |
+
msgstr ""
|
147 |
+
"Se utente registrato, effettuare il login per avere 10 articoli da scegliere"
|
148 |
|
149 |
+
#: ../commentluv.php:981
|
150 |
msgid "recently posted"
|
151 |
msgstr "pubblicati di recente"
|
152 |
|
153 |
+
#: ../commentluv.php:982
|
154 |
+
msgid ""
|
155 |
+
"If you register as a user on my site, you can get your 10 most recent blog "
|
156 |
+
"posts to choose from in this box."
|
157 |
+
msgstr ""
|
158 |
+
"Registrandoti come utente nel mio sito, potrai avere in questa casella 10 "
|
159 |
+
"tra i tuoi articoli recenti."
|
160 |
|
161 |
+
#: ../commentluv.php:983
|
162 |
+
msgid ""
|
163 |
+
"If this user had registered to my site then they could get 10 last posts to "
|
164 |
+
"choose from when they comment and you would be able to see a list of their "
|
165 |
+
"recent posts in this panel"
|
166 |
+
msgstr ""
|
167 |
+
"Se questo utente si fosse registrato nel mio sito, avrebbe potuto mostrare "
|
168 |
+
"nel commento 10 dei suoi articoli recenti e tu avresti potuto vedere in "
|
169 |
+
"questo pannello la lista dei suoi post"
|
170 |
|
171 |
+
#: ../commentluv.php:1056
|
172 |
+
msgid ""
|
173 |
+
"Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
174 |
+
msgstr ""
|
175 |
+
"La tua installazione di WordPress é priva della tabella "
|
176 |
+
"<strong>wp_commentmeta</strong>!"
|
177 |
|
178 |
+
#: ../commentluv.php:1056
|
179 |
+
msgid ""
|
180 |
+
" CommentLuv cannot work without this table please see this wordpress forum "
|
181 |
+
"post to learn how to add one ->"
|
182 |
+
msgstr ""
|
183 |
+
" CommentLuv non può funzionare senza questa tabella. Leggi questo post nel "
|
184 |
+
"forum di WP per imparare coma aggiungerne una ->"
|
185 |
|
186 |
+
#: ../commentluv.php:1056
|
187 |
msgid "Missing wp_commentmeta table"
|
188 |
msgstr "Manca la tabella wp_commentmeta"
|
189 |
|
190 |
+
#: ../commentluv.php:1186
|
191 |
msgid "Settings"
|
192 |
msgstr "Impostazioni"
|
193 |
|
194 |
+
#: ../commentluv.php:1248 ../commentluv.php:1302
|
|
|
195 |
msgid "No Posts Were Found!"
|
196 |
msgstr "Non é stato trovato nessun articolo!"
|
197 |
|
198 |
+
#: ../commentluv.php:1341
|
199 |
#, php-format
|
200 |
msgid "%s or <a href=\"%s\">update now</a>."
|
201 |
msgstr "%s o <a href=\"%s\">aggiorna subito</a>."
|
202 |
|
203 |
+
#: ../commentluv.php:1343
|
204 |
+
msgid ""
|
205 |
+
"There is a new version of Commentluv available, please upgrade by visiting "
|
206 |
+
"this site"
|
207 |
+
msgstr ""
|
208 |
+
"E' disponibile una nuova versione di Commentluv. Aggiorna visitando questo "
|
209 |
+
"sito"
|
210 |
|
211 |
+
#: ../commentluv.php:1372
|
212 |
msgid "CommentLuv Settings v"
|
213 |
msgstr "Impostazioni CommentLuv v"
|
214 |
|
215 |
+
#: ../commentluv.php:1382
|
216 |
msgid "Important!"
|
217 |
msgstr "Importante!"
|
218 |
|
219 |
+
#: ../commentluv.php:1382
|
220 |
msgid "Subscription Information"
|
221 |
msgstr "Informazioni abbonamento"
|
222 |
|
223 |
+
#: ../commentluv.php:1387
|
224 |
msgid "CommentLuv 3.0 Premium is here!"
|
225 |
msgstr "Disponibile la versione premium 3.0 di CommentLuv!"
|
226 |
|
227 |
+
#: ../commentluv.php:1388
|
228 |
+
msgid ""
|
229 |
+
"I promise not to sell your details or send you spam. You will ONLY receive "
|
230 |
+
"emails about plugin updates."
|
231 |
+
msgstr ""
|
232 |
+
"I tuoi dati sono protetti. Riceverai SOLAMENTE le email di notifica per gli "
|
233 |
+
"aggiornamenti del plugin."
|
234 |
|
235 |
+
#: ../commentluv.php:1391
|
236 |
+
msgid ""
|
237 |
+
"Do you like CommentLuv? How about an even better version with much more "
|
238 |
+
"control over dofollow and some awesome social enticements that will make "
|
239 |
+
"your posts go viral by offering your readers more choice of posts if they "
|
240 |
+
"+1, Like or tweet your post? Get CommentLuv Premium Today!"
|
241 |
+
msgstr ""
|
242 |
+
"Ti piace CommentLuv? Cosa ne diresti di una versione con un maggiore "
|
243 |
+
"controllo sul dofollow ed alcune nuove funzioni social che permetteranno ai "
|
244 |
+
"tuoi lettori di segnalare via +1, Mi piace o tweet i tuoi articoli? Acquista "
|
245 |
+
"oggi stesso CommentLuv Premium!"
|
246 |
|
247 |
+
#: ../commentluv.php:1394
|
248 |
+
msgid ""
|
249 |
+
"You have already subscribed, if you have not received the verification "
|
250 |
+
"within 12 hours, please click the button to resend or try the form at"
|
251 |
+
msgstr ""
|
252 |
+
"Se ti fossi già iscritto oppure non avessi ancora ricevuto la verifica entro "
|
253 |
+
"le 12 ore, clicca sul pulsante per un nuovo invio o compila il modulo presso "
|
254 |
|
255 |
+
#: ../commentluv.php:1394
|
256 |
msgid "Resend Verification"
|
257 |
msgstr "Reinvia verifica"
|
258 |
|
259 |
+
#: ../commentluv.php:1396
|
260 |
msgid "Click for a special offer!"
|
261 |
msgstr "Clicca per una offerta speciale!"
|
262 |
|
263 |
+
#: ../commentluv.php:1404
|
264 |
+
msgid ""
|
265 |
+
"<b>Are you getting targeted by spammers?</b> CommentLuv links are valuable "
|
266 |
+
"which is why it promotes comments but some nasty spammers try to take "
|
267 |
+
"advantage of this by leaving spam just to get the link. Don't worry, there "
|
268 |
+
"is answer!... you can get CommentLuv Premium which has advanced anti-spam "
|
269 |
+
"features which has been proven to almost eliminate spam on users blogs. You "
|
270 |
+
"can upgrade by clicking the link above. <p><b>Not ready to buy premium yet?</"
|
271 |
+
"b> that's ok too! Why not try GASP which is a lite version of the anti spam "
|
272 |
+
"plugin that CommentLuv Premium uses. You can get it for FREE by searching "
|
273 |
+
"for GASP in your \"add new\" section of your plugins page in your dashboard."
|
274 |
+
msgstr ""
|
275 |
+
"<b>Sei stato preso di mira dagli spammer?</b> I link di CommentLuv sono "
|
276 |
+
"appetibili e potrebbe accadere che degli spammer cerchino di ottenerne un "
|
277 |
+
"vantaggio. Acquistando CommentLuv Premium avrai delle funzioni aggiuntive "
|
278 |
+
"anti-spam in grado di potere eliminare lo spam dai blog degli utenti. Puoi "
|
279 |
+
"effettuare l'upgrade cliccando qui sopra. <p><b>Non desideri ancora la "
|
280 |
+
"versione premium ?</b> Prova il plugin GASP che &rgrave; la versione lite "
|
281 |
+
"dell'anti spam utilizzato da CommentLuv Premium. Troverai il gratuito "
|
282 |
+
"GASP nella sezione \"aggiungi nuovo\" della pagina plugin."
|
283 |
|
284 |
+
#: ../commentluv.php:1416
|
285 |
msgid "Primary Setting"
|
286 |
msgstr "Impostazioni principali"
|
287 |
|
288 |
+
#: ../commentluv.php:1416 ../commentluv.php:1450 ../commentluv.php:1510
|
289 |
+
#: ../commentluv.php:1568 ../commentluv.php:1599
|
|
|
|
|
|
|
290 |
msgid "Help Video"
|
291 |
msgstr "Video aiuto"
|
292 |
|
293 |
+
#: ../commentluv.php:1420
|
294 |
msgid "Enable CommentLuv?"
|
295 |
msgstr "Attivare CommentLuv?"
|
296 |
|
297 |
+
#: ../commentluv.php:1421
|
298 |
msgid "Yes"
|
299 |
msgstr "Sì"
|
300 |
|
301 |
+
#: ../commentluv.php:1422
|
302 |
msgid "No"
|
303 |
msgstr "No"
|
304 |
|
305 |
+
#: ../commentluv.php:1427
|
306 |
msgid "On Posts"
|
307 |
msgstr " negli articoli"
|
308 |
|
309 |
+
#: ../commentluv.php:1428
|
310 |
msgid "On Pages"
|
311 |
msgstr " nelle pagine"
|
312 |
|
313 |
+
#: ../commentluv.php:1429
|
314 |
msgid "On Both"
|
315 |
msgstr " su entrambi"
|
316 |
|
317 |
+
#: ../commentluv.php:1434
|
318 |
msgid "On by default?"
|
319 |
msgstr "attivo come predefinita?"
|
320 |
|
321 |
+
#: ../commentluv.php:1438
|
322 |
msgid "On for admin?"
|
323 |
msgstr "attivo per l'amministratore?"
|
324 |
|
325 |
+
#: ../commentluv.php:1450
|
326 |
msgid "Appearance"
|
327 |
msgstr "Aspetto"
|
328 |
|
329 |
+
#: ../commentluv.php:1454
|
330 |
msgid "Badge"
|
331 |
msgstr "badge"
|
332 |
|
333 |
+
#: ../commentluv.php:1455
|
334 |
msgid "Custom Image URL"
|
335 |
msgstr "URL immagine"
|
336 |
|
337 |
+
#: ../commentluv.php:1456
|
338 |
msgid "Use Text"
|
339 |
msgstr "utilizza testo"
|
340 |
|
341 |
+
#: ../commentluv.php:1464
|
342 |
msgid "Default"
|
343 |
msgstr "Predefinito"
|
344 |
|
345 |
+
#: ../commentluv.php:1465
|
346 |
msgid "White"
|
347 |
msgstr "Bianco"
|
348 |
|
349 |
+
#: ../commentluv.php:1466
|
350 |
msgid "Black"
|
351 |
msgstr "Nero"
|
352 |
|
353 |
+
#: ../commentluv.php:1467
|
354 |
msgid "None"
|
355 |
msgstr "Nessuno"
|
356 |
|
357 |
+
#: ../commentluv.php:1485
|
358 |
msgid "Link to Commentluv?"
|
359 |
msgstr "link a Commentluv?"
|
360 |
|
361 |
+
#: ../commentluv.php:1492
|
362 |
msgid "Enable info panel?"
|
363 |
msgstr "pannello info?"
|
364 |
|
365 |
+
#: ../commentluv.php:1493
|
366 |
msgid "Info panel background color"
|
367 |
msgstr "colore sfondo pannello info"
|
368 |
|
369 |
+
#: ../commentluv.php:1494
|
370 |
msgid "Info panel text color"
|
371 |
msgstr "colore testo pannello info"
|
372 |
|
373 |
+
#: ../commentluv.php:1500
|
374 |
msgid "Example text and background color"
|
375 |
msgstr "esempio di testo e colore di sfondo"
|
376 |
|
377 |
+
#: ../commentluv.php:1510
|
378 |
msgid "Messages"
|
379 |
msgstr "Messaggi"
|
380 |
|
381 |
+
#: ../commentluv.php:1517
|
382 |
msgid "Text to be displayed in the comment"
|
383 |
msgstr "testo da mostrare nel commento"
|
384 |
|
385 |
+
#: ../commentluv.php:1520
|
386 |
msgid "[name] = The users name"
|
387 |
msgstr "[name] = nome utente"
|
388 |
|
389 |
+
#: ../commentluv.php:1520
|
390 |
msgid "[lastpost] = The last blog post link"
|
391 |
msgstr "[lastpost] = link a ultimo articolo"
|
392 |
|
393 |
+
#: ../commentluv.php:1527
|
394 |
msgid "Message for unregistered user in the drop down box"
|
395 |
msgstr "messaggio (casella drop down) per gli utenti non registrati"
|
396 |
|
397 |
+
#: ../commentluv.php:1528 ../commentluv.php:1554
|
|
|
398 |
msgid "Message will not be shown if you do not have registrations enabled"
|
399 |
+
msgstr ""
|
400 |
+
"Il messaggio non verrà mostrato qualora avessi disattivato le registrazioni"
|
401 |
|
402 |
+
#: ../commentluv.php:1532
|
403 |
msgid "Your register link code"
|
404 |
msgstr "Il tuo codice link registrazione"
|
405 |
|
406 |
+
#: ../commentluv.php:1534
|
407 |
+
msgid ""
|
408 |
+
"(this will be automatically added if you have not added it yourself to the "
|
409 |
+
"textarea above)"
|
410 |
+
msgstr ""
|
411 |
+
"(sarà aggiunto in automatico qualora non lo avessi fatto tu stesso nell'area "
|
412 |
+
"di testo qui sopra)"
|
413 |
|
414 |
+
#: ../commentluv.php:1544
|
415 |
+
msgid ""
|
416 |
+
"You have NOT set your blog to allow registrations, you can do that in "
|
417 |
+
"Settings/General"
|
418 |
+
msgstr ""
|
419 |
+
"Il tuo blog NON é stato impostato per potere ricevere delle registrazioni "
|
420 |
+
"(Impostazioni/Generale)"
|
421 |
|
422 |
+
#: ../commentluv.php:1545
|
423 |
msgid "here"
|
424 |
msgstr "qui"
|
425 |
|
426 |
+
#: ../commentluv.php:1553
|
427 |
msgid "Message for unregistered user in the info panel"
|
428 |
msgstr "Messaggio (pannello info) per gli utenti non registrati"
|
429 |
|
430 |
+
#: ../commentluv.php:1568
|
431 |
msgid "Operational Settings"
|
432 |
msgstr "Impostazioni di gestione"
|
433 |
|
434 |
+
#: ../commentluv.php:1575
|
435 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
436 |
msgstr "chi potrà mostrare gli ultimi 10 articoli pubblicati?"
|
437 |
|
438 |
+
#: ../commentluv.php:1576
|
439 |
msgid "Only Registered Members"
|
440 |
msgstr "solo i membri registrati"
|
441 |
|
442 |
+
#: ../commentluv.php:1577
|
443 |
msgid "Everybody"
|
444 |
msgstr "chiunque"
|
445 |
|
446 |
+
#: ../commentluv.php:1578
|
447 |
msgid "Nobody"
|
448 |
msgstr "nessuno"
|
449 |
|
450 |
+
#: ../commentluv.php:1585
|
451 |
msgid "Whose links should be dofollow?"
|
452 |
msgstr "assegnazione dei link dofollow?"
|
453 |
|
454 |
+
#: ../commentluv.php:1586
|
455 |
msgid "Only Registered Members Links"
|
456 |
msgstr "solo per gli utenti registrati"
|
457 |
|
458 |
+
#: ../commentluv.php:1587
|
459 |
msgid "Everybody gets dofollow links"
|
460 |
msgstr "link dofollow per chiunque"
|
461 |
|
462 |
+
#: ../commentluv.php:1588
|
463 |
msgid "Nobody gets dofollow links"
|
464 |
msgstr "nessuno"
|
465 |
|
466 |
+
#: ../commentluv.php:1599
|
467 |
msgid "Technical Settings"
|
468 |
msgstr "Impostazioni tecniche"
|
469 |
|
470 |
+
#: ../commentluv.php:1599
|
471 |
msgid "Click to open technical settings"
|
472 |
msgstr "Clicca per aprire"
|
473 |
|
474 |
+
#: ../commentluv.php:1606
|
475 |
msgid "Please check the help video for this section before changing settings"
|
476 |
+
msgstr ""
|
477 |
+
"Prima di modificare le impostazioni, guarda il video di aiuto per questa "
|
478 |
+
"sezione "
|
|
|
|
|
479 |
|
480 |
#: ../commentluv.php:1607
|
481 |
+
msgid ""
|
482 |
+
"In most cases, you will NOT need to change the settings in this box unless "
|
483 |
+
"you have a custom comment form, template or you are using minifying or "
|
484 |
+
"caching plugins"
|
485 |
+
msgstr ""
|
486 |
+
"Nella maggior parte dei casi, NON dovrai modificare le impostazioni di "
|
487 |
+
"questa sezione a meno che tu non abbia un template o modulo dei commenti "
|
488 |
+
"personalizzato oppure stessi facendo uso di un plugin per la cache/"
|
489 |
+
"minimizzazione"
|
490 |
+
|
491 |
+
#: ../commentluv.php:1612
|
492 |
msgid "Compatibility"
|
493 |
msgstr "Compatibilità"
|
494 |
|
495 |
+
#: ../commentluv.php:1616
|
496 |
msgid "Use manual insert of badge code?"
|
497 |
msgstr "inserire manualmente il codice?"
|
498 |
|
499 |
+
#: ../commentluv.php:1620
|
500 |
msgid "Enable minifying compatibility?"
|
501 |
msgstr "attivare compatibilità minimizzazione?"
|
502 |
|
503 |
+
#: ../commentluv.php:1621
|
504 |
msgid "For caching plugins (places localized code in footer)"
|
505 |
msgstr "per i plugin di cache (posiziona nel footer codice localizzazione)"
|
506 |
|
507 |
+
#: ../commentluv.php:1624
|
508 |
msgid "Disable Detection?"
|
509 |
msgstr "Disattivare rilevamento?"
|
510 |
|
511 |
+
#: ../commentluv.php:1625
|
512 |
msgid "For XML errors"
|
513 |
msgstr "Per errori XML"
|
514 |
|
515 |
+
#: ../commentluv.php:1629
|
516 |
msgid "API URL"
|
517 |
msgstr "URL API"
|
518 |
|
519 |
+
#: ../commentluv.php:1633
|
520 |
msgid "URL to use for API"
|
521 |
msgstr "URL da utilizzare per la API"
|
522 |
|
523 |
+
#: ../commentluv.php:1637
|
524 |
msgid "Comment Form Field Values"
|
525 |
msgstr "Valori campo modulo commenti"
|
526 |
|
527 |
+
#: ../commentluv.php:1640
|
528 |
msgid "Authors Name field name"
|
529 |
msgstr "nome per il campo autore"
|
530 |
|
531 |
+
#: ../commentluv.php:1645
|
532 |
msgid "Email field name"
|
533 |
msgstr "nome per il campo email"
|
534 |
|
535 |
+
#: ../commentluv.php:1650
|
536 |
msgid "Authors URL field name"
|
537 |
msgstr "nome per il campo URL autore"
|
538 |
|
539 |
+
#: ../commentluv.php:1655
|
540 |
msgid "Comment Text Area name"
|
541 |
msgstr "nome per l'area di testo dei commenti"
|
542 |
|
543 |
+
#: ../commentluv.php:1660
|
544 |
msgid "Extras"
|
545 |
msgstr "Extra"
|
546 |
|
547 |
+
#: ../commentluv.php:1665 ../commentluv.php:1677
|
|
|
548 |
msgid "Nothing"
|
549 |
msgstr "niente"
|
550 |
|
551 |
+
#: ../commentluv.php:1666 ../commentluv.php:1678
|
|
|
552 |
msgid "Hide Link"
|
553 |
msgstr "Nascondi link"
|
554 |
|
555 |
+
#: ../commentluv.php:1667 ../commentluv.php:1679
|
|
|
556 |
msgid "Spam Comment"
|
557 |
msgstr "Commento spam"
|
558 |
|
559 |
+
#: ../commentluv.php:1668 ../commentluv.php:1680
|
|
|
560 |
msgid "Delete Comment"
|
561 |
msgstr "Cancella commento"
|
562 |
|
563 |
+
#: ../commentluv.php:1670
|
564 |
msgid "Action to take if comment has no Author URL"
|
565 |
msgstr "Azione da compiere se commento privo URL autore"
|
566 |
|
567 |
+
#: ../commentluv.php:1671
|
568 |
msgid "Prevents spammer abuse"
|
569 |
msgstr "Impedisce abuso di spam"
|
570 |
|
571 |
+
#: ../commentluv.php:1682
|
572 |
msgid "Action to take if link does not match domain of author"
|
573 |
msgstr "Azione da compiere se commento non coincide con dominio autore"
|
574 |
|
575 |
+
#: ../commentluv.php:1683
|
576 |
msgid "Prevents users from adding fake author URLs to get around Akismet"
|
577 |
+
msgstr ""
|
578 |
+
"Previene la possibilità di aggiungere falsi URL per eludere Akismet"
|
579 |
|
580 |
+
#: ../commentluv.php:1688
|
581 |
+
msgid "Allow Jetpack comments module to activate?"
|
582 |
+
msgstr "Desideri attivare modulo commenti Jetpack?"
|
583 |
+
|
584 |
+
#: ../commentluv.php:1692
|
585 |
msgid "Diagnostics Info"
|
586 |
msgstr "Info diagnostica"
|
587 |
|
588 |
+
#: ../commentluv.php:1710
|
589 |
msgid "You can copy this information and send it to me if I request it"
|
590 |
msgstr "copia queste informazioni ed inviarmele (se richiesto)"
|
591 |
|
592 |
+
#: ../commentluv.php:1717
|
593 |
msgid "Save Settings"
|
594 |
msgstr "Salva le impostazioni"
|
595 |
|
596 |
+
#: ../commentluv.php:1719
|
597 |
msgid "Reset Settings"
|
598 |
msgstr "Ripristino impostazioni"
|
599 |
|
600 |
+
#: ../commentluv.php:1722
|
601 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
602 |
+
msgstr ""
|
603 |
+
"Sei certo di volere ripristinare le tue impostazioni? Premi OK per proseguire"
|
604 |
|
605 |
+
#: ../commentluv.php:1725
|
606 |
msgid "Reset"
|
607 |
msgstr "Azzera"
|
608 |
|
609 |
+
#: ../commentluv.php:1733
|
610 |
msgid "Plugin Info"
|
611 |
msgstr "Info sul plugin"
|
612 |
|
613 |
+
#: ../commentluv.php:1736
|
614 |
msgid "Start Here"
|
615 |
msgstr "Inizia qui"
|
616 |
|
617 |
+
#: ../commentluv.php:1737
|
618 |
msgid "Author"
|
619 |
msgstr "Autore"
|
620 |
|
621 |
+
#: ../commentluv.php:1738
|
622 |
msgid "Home Page"
|
623 |
msgstr "Home Page"
|
624 |
|
625 |
+
#: ../commentluv.php:1738
|
626 |
msgid "Visit www.commentluv.com!"
|
627 |
msgstr "Visita www.commentluv.com!"
|
628 |
|
629 |
+
#: ../commentluv.php:1739
|
630 |
msgid "Social"
|
631 |
msgstr "Social"
|
632 |
|
633 |
+
#: ../commentluv.php:1740
|
634 |
msgid "Help"
|
635 |
msgstr "Aiuto"
|
636 |
|
637 |
+
#: ../commentluv.php:1740
|
638 |
msgid "Help Desk"
|
639 |
msgstr "Sezione aiuto"
|
640 |
|
641 |
+
#: ../commentluv.php:1741
|
642 |
msgid "Do you like this plugin?"
|
643 |
msgstr "Ti piace questo plugin?"
|
644 |
|
645 |
+
#: ../commentluv.php:1743
|
646 |
msgid "News"
|
647 |
msgstr "Notizie"
|
648 |
|
649 |
+
#: ../commentluv.php:1771
|
650 |
msgid "Thanks to the following for translations"
|
651 |
msgstr "Un grazie ai seguenti traduttori"
|
652 |
|
653 |
+
#: ../commentluv.php:1772
|
654 |
msgid "Italian"
|
655 |
msgstr "Italiano"
|
656 |
|
657 |
+
#: ../commentluv.php:1773
|
658 |
msgid "Dutch"
|
659 |
msgstr "Olandese"
|
660 |
|
661 |
+
#: ../commentluv.php:1774
|
662 |
msgid "Polish"
|
663 |
msgstr "Polacco"
|
664 |
|
665 |
+
#: ../commentluv.php:1775
|
666 |
msgid "Georgian"
|
667 |
msgstr "Georgiano"
|
668 |
|
669 |
+
#: ../commentluv.php:1776
|
670 |
msgid "Lithuanian"
|
671 |
msgstr "Lituano"
|
672 |
|
673 |
+
#: ../commentluv.php:1777
|
674 |
msgid "Portuguese"
|
675 |
msgstr "Portoghese"
|
676 |
|
677 |
+
#: ../commentluv.php:1778
|
678 |
msgid "Malaysian"
|
679 |
msgstr "Malese"
|
680 |
|
681 |
+
#: ../commentluv.php:1779
|
682 |
msgid "Hindi"
|
683 |
msgstr "Hindi"
|
684 |
|
685 |
+
#: ../commentluv.php:1780
|
686 |
msgid "Indonesian"
|
687 |
msgstr "Indonesiano"
|
688 |
|
689 |
+
#: ../commentluv.php:1781
|
690 |
msgid "Chinese (s)"
|
691 |
msgstr "Cinese"
|
692 |
|
693 |
+
#: ../commentluv.php:1782
|
694 |
msgid "Spanish"
|
695 |
msgstr "Spagnolo"
|
696 |
|
697 |
+
#: ../commentluv.php:1783
|
698 |
msgid "German"
|
699 |
msgstr "Tedesco"
|
700 |
|
701 |
+
#: ../commentluv.php:1784
|
702 |
msgid "Persian"
|
703 |
msgstr "Persiano"
|
704 |
|
705 |
+
#: ../commentluv.php:1785
|
706 |
msgid "Tamil"
|
707 |
msgstr "Tamil"
|
708 |
|
709 |
+
#: ../commentluv.php:1786
|
710 |
msgid "Ukranian"
|
711 |
msgstr "Ucraino"
|
712 |
|
713 |
+
#: ../commentluv.php:1787
|
714 |
msgid "Latvian"
|
715 |
msgstr "Lettone"
|
716 |
|
717 |
+
#: ../commentluv.php:1788
|
718 |
msgid "Romanian"
|
719 |
msgstr "Rumeno"
|
720 |
|
721 |
+
#: ../commentluv.php:1789
|
722 |
msgid "Norwegian"
|
723 |
msgstr "Norvegese"
|
724 |
|
725 |
+
#: ../commentluv.php:1790
|
726 |
msgid "French"
|
727 |
msgstr "Francese"
|
728 |
|
729 |
+
#: ../commentluv.php:1791
|
730 |
msgid "Danish"
|
731 |
msgstr "Danese"
|
732 |
|
733 |
+
#: ../commentluv.php:1792
|
734 |
msgid "Russian"
|
735 |
msgstr "Russo"
|
736 |
|
737 |
+
#: ../commentluv.php:1793
|
738 |
msgid "Bengali"
|
739 |
msgstr "Bengalese"
|
740 |
|
741 |
+
#: ../commentluv.php:1794
|
742 |
msgid "Hebrew"
|
743 |
msgstr "Ebraico"
|
744 |
|
745 |
+
#: ../commentluv.php:1795
|
746 |
msgid "Vietnamese"
|
747 |
msgstr "Vietnamita"
|
748 |
|
749 |
+
#: ../commentluv.php:1796
|
750 |
msgid "Hungarian"
|
751 |
msgstr "Ungherese"
|
752 |
|
753 |
+
#: ../commentluv.php:1797
|
754 |
msgid "Slovak"
|
755 |
msgstr "Slovacco"
|
756 |
|
757 |
+
#: ../commentluv.php:1800
|
758 |
msgid "Arabic"
|
759 |
msgstr "Arabo"
|
760 |
|
761 |
+
#: ../commentluv.php:1801
|
762 |
msgid "Want your link here?"
|
763 |
msgstr "Vuoi il tuo link qui?"
|
764 |
|
765 |
+
#: ../commentluv.php:1801
|
766 |
msgid "How To Submit A Translation"
|
767 |
msgstr "Contribuisci alla traduzione"
|
768 |
|
769 |
+
#: ../commentluv.php:1802
|
770 |
msgid "Special thanks go to the following"
|
771 |
msgstr "Un grazie particolare a"
|
772 |
|
773 |
+
#: ../commentluv.php:1803
|
774 |
msgid "CSS Help"
|
775 |
msgstr "Aiuto CSS"
|
776 |
|
777 |
+
#: ../commentluv.php:1804
|
778 |
msgid "Badge GFX"
|
779 |
msgstr "Badge GFX"
|
780 |
|
lang/commentluv-sr_RS.mo
ADDED
Binary file
|
lang/commentluv-sr_RS.po
ADDED
@@ -0,0 +1,641 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: CommentLuv 2.92.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-12 18:43-0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Diana <diana@wpcouponshop.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Generator: Poedit 1.5.4\n"
|
15 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
16 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
+
"Language: Serbian\n"
|
18 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
+
"X-Poedit-SearchPath-0: ..\n"
|
20 |
+
|
21 |
+
#: ../commentluv.php:48
|
22 |
+
msgid "CommentLuv requires Wordpress 3.0 or newer."
|
23 |
+
msgstr "CommentLuv zahteva Wordpress 3.0 ili vise"
|
24 |
+
|
25 |
+
#: ../commentluv.php:48
|
26 |
+
msgid "Please Update!"
|
27 |
+
msgstr "Molim azurirajte!"
|
28 |
+
|
29 |
+
#: ../commentluv.php:217
|
30 |
+
msgid ""
|
31 |
+
"Please enter a URL and then click the CommentLuv checkbox if you want to add "
|
32 |
+
"your last blog post"
|
33 |
+
msgstr ""
|
34 |
+
"Molim unesite URL and onde kliknite COmmentLuv checkbox ukoliko zelite da "
|
35 |
+
"dodate vas poslednji blog post "
|
36 |
+
|
37 |
+
#: ../commentluv.php:218
|
38 |
+
msgid "Please use http:// in front of your url"
|
39 |
+
msgstr "Molim unesite http:// ispred vaseg URL"
|
40 |
+
|
41 |
+
#: ../commentluv.php:219
|
42 |
+
msgid ""
|
43 |
+
"You need to visit your profile in the dashboard and update your details with "
|
44 |
+
"your site URL"
|
45 |
+
msgstr ""
|
46 |
+
"Trebate da posetite svoj profil u kontrolnoj tabli i da azurirate vase "
|
47 |
+
"detalje dodajuci URL vaseg sajta"
|
48 |
+
|
49 |
+
#: ../commentluv.php:220
|
50 |
+
msgid "No info was available or an error occured"
|
51 |
+
msgstr "Nema raspolozivih informacija ili je doslo do greske"
|
52 |
+
|
53 |
+
#: ../commentluv.php:243
|
54 |
+
msgid "Please wait"
|
55 |
+
msgstr "Molim sacekajte"
|
56 |
+
|
57 |
+
#: ../commentluv.php:243
|
58 |
+
msgid "Please check your inbox, an email will be sent to"
|
59 |
+
msgstr "Molim proverite vas inbox, bice vam poslat email"
|
60 |
+
|
61 |
+
#: ../commentluv.php:243
|
62 |
+
msgid "in the next few minutes with a confirmation link"
|
63 |
+
msgstr "u sledecih nekoliko minuta sa linkom za potvrdu "
|
64 |
+
|
65 |
+
#: ../commentluv.php:243
|
66 |
+
msgid "An error happened with the request. Try signing up at the site"
|
67 |
+
msgstr "Doslo je do greske kod ahteva. Pokusajte da se ulogujete na sajt"
|
68 |
+
|
69 |
+
#: ../commentluv.php:272
|
70 |
+
msgid ""
|
71 |
+
"Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
72 |
+
msgstr ""
|
73 |
+
"Vasa WordPress instalacija nema <strong>wp_commentmeta</strong> tablu!"
|
74 |
+
|
75 |
+
#: ../commentluv.php:272
|
76 |
+
msgid ""
|
77 |
+
" CommentLuv cannot work without this table please see this wordpress forum "
|
78 |
+
"post to learn how to add one ->"
|
79 |
+
msgstr ""
|
80 |
+
"CommentLuv ne moze raditi bez ove table, molimo pogledajte ovaj wrdpress "
|
81 |
+
"forum post da bi naucili kako da dodate jednu ->"
|
82 |
+
|
83 |
+
#: ../commentluv.php:272
|
84 |
+
msgid "Missing wp_commentmeta table"
|
85 |
+
msgstr "Nedostaje wp_commentmeta tabla"
|
86 |
+
|
87 |
+
#: ../commentluv.php:365
|
88 |
+
msgid "Twice Monthly"
|
89 |
+
msgstr "Dva puta mesecno "
|
90 |
+
|
91 |
+
#: ../commentluv.php:392
|
92 |
+
msgid "CommentLuv is enabled"
|
93 |
+
msgstr "CommentLuv je omogucen"
|
94 |
+
|
95 |
+
#: ../commentluv.php:433
|
96 |
+
msgid "Show more posts"
|
97 |
+
msgstr "Prikazi jos postova"
|
98 |
+
|
99 |
+
#: ../commentluv.php:523
|
100 |
+
msgid "I have only commented on this post"
|
101 |
+
msgstr "Ostavio sam komentar samo na ovaj post "
|
102 |
+
|
103 |
+
#: ../commentluv.php:526
|
104 |
+
msgid ""
|
105 |
+
"If I had made more comments on this site, you would see more of my other "
|
106 |
+
"posts here"
|
107 |
+
msgstr ""
|
108 |
+
"Ukoliko sam ostavio vise komentara na ovom sajtu, videli biste vise mojih "
|
109 |
+
"postova ovde "
|
110 |
+
|
111 |
+
#: ../commentluv.php:551
|
112 |
+
msgid "User has not saved a description in their profile page"
|
113 |
+
msgstr "Korisnik nije sacuvao opis na svojoj profilnoj strani "
|
114 |
+
|
115 |
+
#: ../commentluv.php:563
|
116 |
+
msgid "is the administrator of this site"
|
117 |
+
msgstr "je administrator ovog sajta"
|
118 |
+
|
119 |
+
#: ../commentluv.php:565
|
120 |
+
msgid "is a registered member of my site"
|
121 |
+
msgstr "je registrovan clan mog sajta"
|
122 |
+
|
123 |
+
#: ../commentluv.php:568 ../commentluv.php:587
|
124 |
+
msgid "Clicks on this link on this comment"
|
125 |
+
msgstr "Kliknite na ovaj link u ovom komentaru "
|
126 |
+
|
127 |
+
#: ../commentluv.php:568 ../commentluv.php:588
|
128 |
+
msgid "approved comments on this site"
|
129 |
+
msgstr "odobreni komentari na ovom sajtu "
|
130 |
+
|
131 |
+
#: ../commentluv.php:568 ../commentluv.php:589
|
132 |
+
msgid "Some other posts I have commented on"
|
133 |
+
msgstr "Neki drugi postovi koje sam komentarisao "
|
134 |
+
|
135 |
+
#: ../commentluv.php:568
|
136 |
+
msgid "Some of my other posts"
|
137 |
+
msgstr "Neki od mojih drugih postova "
|
138 |
+
|
139 |
+
#: ../commentluv.php:581
|
140 |
+
msgid "has not registered on this site"
|
141 |
+
msgstr "se nije registrovao na ovom sajtu "
|
142 |
+
|
143 |
+
#: ../commentluv.php:703
|
144 |
+
msgid "Could not get posts for home blog"
|
145 |
+
msgstr "Nije mogao da dobije postove za home blog"
|
146 |
+
|
147 |
+
#: ../commentluv.php:759
|
148 |
+
msgid ""
|
149 |
+
"If you are registered, you need to log in to get 10 posts to choose from"
|
150 |
+
msgstr ""
|
151 |
+
"Ukoliko ste registrovani, morate da se ulogujete da bi dobili 10 postova od "
|
152 |
+
"kojih mozete da birate"
|
153 |
+
|
154 |
+
#: ../commentluv.php:783 ../commentluv.php:1235
|
155 |
+
msgid "Register"
|
156 |
+
msgstr "Registruj se"
|
157 |
+
|
158 |
+
#: ../commentluv.php:788
|
159 |
+
msgid "recently posted"
|
160 |
+
msgstr "nedavno objavljeno"
|
161 |
+
|
162 |
+
#: ../commentluv.php:789
|
163 |
+
msgid ""
|
164 |
+
"If you register as a user on my site, you can get your 10 most recent blog "
|
165 |
+
"posts to choose from in this box."
|
166 |
+
msgstr ""
|
167 |
+
"Ukoliko se registrujete kao korisnik na mom sajtu mozete dobiti vasih 10 "
|
168 |
+
"najskorijih objava izmedju kojih mozete birati u ovom boxu "
|
169 |
+
|
170 |
+
#: ../commentluv.php:790
|
171 |
+
msgid ""
|
172 |
+
"If this user had registered to my site then they could get 10 last posts to "
|
173 |
+
"choose from when they comment and you would be able to see a list of their "
|
174 |
+
"recent posts in this panel"
|
175 |
+
msgstr ""
|
176 |
+
"Ako se ovaj korisnik registruje na mom sajtu onda bi oni trebali dobiti 10 "
|
177 |
+
"poslednjih objava da biraju kada komentarisu i vi bi trebalo da mozete "
|
178 |
+
"videti listu njihovih skorasnjih objava na ovom panelu "
|
179 |
+
|
180 |
+
#: ../commentluv.php:971
|
181 |
+
msgid "Settings"
|
182 |
+
msgstr "Podesavanja"
|
183 |
+
|
184 |
+
#: ../commentluv.php:1010
|
185 |
+
msgid "No Posts Were Found!"
|
186 |
+
msgstr "Niej nadjen nijedan post!"
|
187 |
+
|
188 |
+
#: ../commentluv.php:1050
|
189 |
+
msgid ""
|
190 |
+
"There is a new version of Commentluv available, please upgrade by visiting "
|
191 |
+
"this site"
|
192 |
+
msgstr ""
|
193 |
+
"Raspoloziva je nva verzija CommentLuv, molim azurirajte tako sto cete "
|
194 |
+
"posetiti ovaj sajt"
|
195 |
+
|
196 |
+
#: ../commentluv.php:1053
|
197 |
+
msgid "Dismiss notice"
|
198 |
+
msgstr "Skloniti note"
|
199 |
+
|
200 |
+
#: ../commentluv.php:1080
|
201 |
+
msgid "CommentLuv Settings v"
|
202 |
+
msgstr "CommentLuv podesavanja v"
|
203 |
+
|
204 |
+
#: ../commentluv.php:1090
|
205 |
+
msgid "Important!"
|
206 |
+
msgstr "Vazno!"
|
207 |
+
|
208 |
+
#: ../commentluv.php:1090
|
209 |
+
msgid "Subscription Information"
|
210 |
+
msgstr "Informacije o clanarini"
|
211 |
+
|
212 |
+
#: ../commentluv.php:1095
|
213 |
+
msgid "CommentLuv 3.0 Premium is coming soon!"
|
214 |
+
msgstr "CommentLuv 3.0 Premium dolazi uskoro!"
|
215 |
+
|
216 |
+
#: ../commentluv.php:1096
|
217 |
+
msgid ""
|
218 |
+
"I promise not to sell your details or send you spam. You will ONLY receive "
|
219 |
+
"emails about plugin updates."
|
220 |
+
msgstr ""
|
221 |
+
"Obecavam da necu prodati vase informacije ili vam slati spam poruke. "
|
222 |
+
"Dobijacete email JEDINO s informacijama o azuriranju"
|
223 |
+
|
224 |
+
#: ../commentluv.php:1099
|
225 |
+
msgid ""
|
226 |
+
"There is a premium version of CommentLuv coming that will have much more "
|
227 |
+
"control of how the plugin works as well as exclusive features like keyword "
|
228 |
+
"name, inline registration and much much more!. Signup to find out as soon as "
|
229 |
+
"it is ready"
|
230 |
+
msgstr ""
|
231 |
+
"Ukoso stize premijum verzija CommentLuv koja ce imati mnogo vise kontrole o "
|
232 |
+
"tome kako plagin radi kao i neke ekskluzivne nove opcije kao npr keyword "
|
233 |
+
"ime, inline registracija i puno puno vise! Registrujte se da bi saznali "
|
234 |
+
"odmah cim izadje!"
|
235 |
+
|
236 |
+
#: ../commentluv.php:1102
|
237 |
+
msgid ""
|
238 |
+
"You have already subscribed, if you have not received the verification "
|
239 |
+
"within 12 hours, please click the button to resend or try the form at"
|
240 |
+
msgstr ""
|
241 |
+
"Vec ste se uclanili, ukoliko ne dobijete kod za verifikaciju u narednih 12 "
|
242 |
+
"sati, molim kliknite dugme da bi poslali ponovo ili pokusajte formu na"
|
243 |
+
|
244 |
+
#: ../commentluv.php:1102
|
245 |
+
msgid "Resend Verification"
|
246 |
+
msgstr "Posalji verifikaciju ponovo "
|
247 |
+
|
248 |
+
#: ../commentluv.php:1104
|
249 |
+
msgid "Click to register now!"
|
250 |
+
msgstr "Kliknite da biste se registrovali sada!"
|
251 |
+
|
252 |
+
#: ../commentluv.php:1119
|
253 |
+
msgid "Primary Setting"
|
254 |
+
msgstr "Primarna podesavanja"
|
255 |
+
|
256 |
+
#: ../commentluv.php:1119 ../commentluv.php:1153 ../commentluv.php:1212
|
257 |
+
#: ../commentluv.php:1268 ../commentluv.php:1299
|
258 |
+
msgid "Help Video"
|
259 |
+
msgstr "Pomoc video "
|
260 |
+
|
261 |
+
#: ../commentluv.php:1123
|
262 |
+
msgid "Enable CommentLuv?"
|
263 |
+
msgstr "Omoguciti CommentLuv?"
|
264 |
+
|
265 |
+
#: ../commentluv.php:1124
|
266 |
+
msgid "Yes"
|
267 |
+
msgstr "Da"
|
268 |
+
|
269 |
+
#: ../commentluv.php:1125
|
270 |
+
msgid "No"
|
271 |
+
msgstr "Ne"
|
272 |
+
|
273 |
+
#: ../commentluv.php:1130
|
274 |
+
msgid "On Posts"
|
275 |
+
msgstr "Na postovima"
|
276 |
+
|
277 |
+
#: ../commentluv.php:1131
|
278 |
+
msgid "On Pages"
|
279 |
+
msgstr "Na stranicama"
|
280 |
+
|
281 |
+
#: ../commentluv.php:1132
|
282 |
+
msgid "On Both"
|
283 |
+
msgstr "Na oba"
|
284 |
+
|
285 |
+
#: ../commentluv.php:1137
|
286 |
+
msgid "On by default?"
|
287 |
+
msgstr "Ukljuceno po default-u? "
|
288 |
+
|
289 |
+
#: ../commentluv.php:1141
|
290 |
+
msgid "On for admin?"
|
291 |
+
msgstr "Ukljuceno za admina?"
|
292 |
+
|
293 |
+
#: ../commentluv.php:1153
|
294 |
+
msgid "Appearance"
|
295 |
+
msgstr "Izgled"
|
296 |
+
|
297 |
+
#: ../commentluv.php:1157
|
298 |
+
msgid "Badge"
|
299 |
+
msgstr "Bedz"
|
300 |
+
|
301 |
+
#: ../commentluv.php:1158
|
302 |
+
msgid "Custom Image URL"
|
303 |
+
msgstr "Sopstvena slika URL"
|
304 |
+
|
305 |
+
#: ../commentluv.php:1159
|
306 |
+
msgid "Use Text"
|
307 |
+
msgstr "Koristite text"
|
308 |
+
|
309 |
+
#: ../commentluv.php:1167
|
310 |
+
msgid "Default"
|
311 |
+
msgstr "Podrazumevano "
|
312 |
+
|
313 |
+
#: ../commentluv.php:1168
|
314 |
+
msgid "White"
|
315 |
+
msgstr "Belo "
|
316 |
+
|
317 |
+
#: ../commentluv.php:1169
|
318 |
+
msgid "Black"
|
319 |
+
msgstr "Crno"
|
320 |
+
|
321 |
+
#: ../commentluv.php:1170
|
322 |
+
msgid "None"
|
323 |
+
msgstr "Nijedno "
|
324 |
+
|
325 |
+
#: ../commentluv.php:1187
|
326 |
+
msgid "Link to Commentluv?"
|
327 |
+
msgstr "Link do CommentLuv?"
|
328 |
+
|
329 |
+
#: ../commentluv.php:1194
|
330 |
+
msgid "Enable info panel?"
|
331 |
+
msgstr "Omoguciti info panel?"
|
332 |
+
|
333 |
+
#: ../commentluv.php:1195
|
334 |
+
msgid "Info panel background color"
|
335 |
+
msgstr "BOja pozadine info panela"
|
336 |
+
|
337 |
+
#: ../commentluv.php:1196
|
338 |
+
msgid "Info panel text color"
|
339 |
+
msgstr "Boja texta u info panelu "
|
340 |
+
|
341 |
+
#: ../commentluv.php:1202
|
342 |
+
msgid "Example text and background color"
|
343 |
+
msgstr "Tekst i boja pozadine primerka"
|
344 |
+
|
345 |
+
#: ../commentluv.php:1212
|
346 |
+
msgid "Messages"
|
347 |
+
msgstr "Poruke"
|
348 |
+
|
349 |
+
#: ../commentluv.php:1219
|
350 |
+
msgid "Text to be displayed in the comment"
|
351 |
+
msgstr "Text za prikazivanje u ovom komentaru "
|
352 |
+
|
353 |
+
#: ../commentluv.php:1222
|
354 |
+
msgid "[name] = The users name"
|
355 |
+
msgstr "[name] = Ime korisnika"
|
356 |
+
|
357 |
+
#: ../commentluv.php:1222
|
358 |
+
msgid "[lastpost] = The last blog post link"
|
359 |
+
msgstr "[lastpost] = Link do poslednjeg blog posta"
|
360 |
+
|
361 |
+
#: ../commentluv.php:1229
|
362 |
+
msgid "Message for unregistered user in the drop down box"
|
363 |
+
msgstr "Poruka za neregistrovane korisnike u drop down box-u"
|
364 |
+
|
365 |
+
#: ../commentluv.php:1230 ../commentluv.php:1254
|
366 |
+
msgid "Message will not be shown if you do not have registrations enabled"
|
367 |
+
msgstr "Poruke nece biti prikazane ako nista omogucili registracije"
|
368 |
+
|
369 |
+
#: ../commentluv.php:1234
|
370 |
+
msgid "Your register link code"
|
371 |
+
msgstr "Vas link za registraciju "
|
372 |
+
|
373 |
+
#: ../commentluv.php:1244
|
374 |
+
msgid ""
|
375 |
+
"You have NOT set your blog to allow registrations, you can do that in "
|
376 |
+
"Settings/General"
|
377 |
+
msgstr ""
|
378 |
+
"NISTE podesili vas blog da omogucite registracije, mozete to uraditi u "
|
379 |
+
"Podesavanja/Opsta"
|
380 |
+
|
381 |
+
#: ../commentluv.php:1245
|
382 |
+
msgid "here"
|
383 |
+
msgstr "ovde"
|
384 |
+
|
385 |
+
#: ../commentluv.php:1253
|
386 |
+
msgid "Message for unregistered user in the info panel"
|
387 |
+
msgstr "Poruka za neregistrovane korisnike u info panelu "
|
388 |
+
|
389 |
+
#: ../commentluv.php:1268
|
390 |
+
msgid "Operational Settings"
|
391 |
+
msgstr "Operaciona podesavanja"
|
392 |
+
|
393 |
+
#: ../commentluv.php:1275
|
394 |
+
msgid "Who to give 10 last posts to choose from when they comment?"
|
395 |
+
msgstr "Kome dati 10 poslednjih postova da bira kada komentarisu? "
|
396 |
+
|
397 |
+
#: ../commentluv.php:1276
|
398 |
+
msgid "Only Registered Members"
|
399 |
+
msgstr "Samo registrovani clanovi "
|
400 |
+
|
401 |
+
#: ../commentluv.php:1277
|
402 |
+
msgid "Everybody"
|
403 |
+
msgstr "Svi"
|
404 |
+
|
405 |
+
#: ../commentluv.php:1278
|
406 |
+
msgid "Nobody"
|
407 |
+
msgstr "Niko "
|
408 |
+
|
409 |
+
#: ../commentluv.php:1285
|
410 |
+
msgid "Whose links should be dofollow?"
|
411 |
+
msgstr "Ciji linkovi trebaju biti dofollow? "
|
412 |
+
|
413 |
+
#: ../commentluv.php:1286
|
414 |
+
msgid "Only Registered Members Links"
|
415 |
+
msgstr "Linkovi samo registrovanih clanova"
|
416 |
+
|
417 |
+
#: ../commentluv.php:1287
|
418 |
+
msgid "Everybody gets dofollow links"
|
419 |
+
msgstr "Svi dobijaju dofollow linkove"
|
420 |
+
|
421 |
+
#: ../commentluv.php:1288
|
422 |
+
msgid "Nobody gets dofollow links"
|
423 |
+
msgstr "Niko ne dobija dofollow linkove "
|
424 |
+
|
425 |
+
#: ../commentluv.php:1299
|
426 |
+
msgid "Technical Settings"
|
427 |
+
msgstr "Tehnicka podesavanja"
|
428 |
+
|
429 |
+
#: ../commentluv.php:1299
|
430 |
+
msgid "Click to open technical settings"
|
431 |
+
msgstr "Kliknite da biste otvorili tehnicka podesavanja"
|
432 |
+
|
433 |
+
#: ../commentluv.php:1306
|
434 |
+
msgid "Please check the help video for this section before changing settings"
|
435 |
+
msgstr ""
|
436 |
+
"Molim proverite help video za ovu sekciju pre nego sto promenite podesavanja"
|
437 |
+
|
438 |
+
#: ../commentluv.php:1307
|
439 |
+
msgid ""
|
440 |
+
"In most cases, you will NOT need to change the settings in this box unless "
|
441 |
+
"you have a custom comment form, template or you are using minifying or "
|
442 |
+
"caching plugins"
|
443 |
+
msgstr ""
|
444 |
+
"U vecini slucajeva, NECETE morati da menjate podesavanja u ovom boxu, osim "
|
445 |
+
"ako nemate sopstvenu formu za komentare ili sablon, ili ako koristite "
|
446 |
+
"minifying ili caching plaginove"
|
447 |
+
|
448 |
+
#: ../commentluv.php:1312
|
449 |
+
msgid "Compatibility"
|
450 |
+
msgstr "Kompatibilnost"
|
451 |
+
|
452 |
+
#: ../commentluv.php:1316
|
453 |
+
msgid "Use manual insert of badge code?"
|
454 |
+
msgstr "Koristiti rucno dodavanje koda bedza?"
|
455 |
+
|
456 |
+
#: ../commentluv.php:1320
|
457 |
+
msgid "Enable minifying compatibility?"
|
458 |
+
msgstr "Omoguciti minifying kompatibilnost?"
|
459 |
+
|
460 |
+
#: ../commentluv.php:1321
|
461 |
+
msgid "For caching plugins (places localized code in footer)"
|
462 |
+
msgstr "Za caching plaginove (stavlja lokalizovani kod u futer)"
|
463 |
+
|
464 |
+
#: ../commentluv.php:1326
|
465 |
+
msgid "API URL"
|
466 |
+
msgstr "API URL"
|
467 |
+
|
468 |
+
#: ../commentluv.php:1330
|
469 |
+
msgid "URL to use for API"
|
470 |
+
msgstr "URL za koriscenje za API"
|
471 |
+
|
472 |
+
#: ../commentluv.php:1334
|
473 |
+
msgid "Comment Form Field Values"
|
474 |
+
msgstr "Comment Form polje Values"
|
475 |
+
|
476 |
+
#: ../commentluv.php:1337
|
477 |
+
msgid "Authors Name field name"
|
478 |
+
msgstr "Ime Autora ime polja"
|
479 |
+
|
480 |
+
#: ../commentluv.php:1342
|
481 |
+
msgid "Email field name"
|
482 |
+
msgstr "Email ime polja"
|
483 |
+
|
484 |
+
#: ../commentluv.php:1347
|
485 |
+
msgid "Authors URL field name"
|
486 |
+
msgstr "Autorov URL ime polja "
|
487 |
+
|
488 |
+
#: ../commentluv.php:1352
|
489 |
+
msgid "Comment Text Area name"
|
490 |
+
msgstr "Comment text area name"
|
491 |
+
|
492 |
+
#: ../commentluv.php:1357
|
493 |
+
msgid "Diagnostics Info"
|
494 |
+
msgstr "Dijagnoza info "
|
495 |
+
|
496 |
+
#: ../commentluv.php:1375
|
497 |
+
msgid "You can copy this information and send it to me if I request it"
|
498 |
+
msgstr ""
|
499 |
+
"Mozete kopirati ove informacije i poslati mi ih ukoliko to budem trazio"
|
500 |
+
|
501 |
+
#: ../commentluv.php:1382
|
502 |
+
msgid "Save Settings"
|
503 |
+
msgstr "Sacuvaj podesavanja"
|
504 |
+
|
505 |
+
#: ../commentluv.php:1384
|
506 |
+
msgid "Reset Settings"
|
507 |
+
msgstr "resetuj podesavanja"
|
508 |
+
|
509 |
+
#: ../commentluv.php:1387
|
510 |
+
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
511 |
+
msgstr ""
|
512 |
+
"Da li ste sigurni da zelite da resetujete vasa podesavanja? Kliknite OK da "
|
513 |
+
"biste nastavili "
|
514 |
+
|
515 |
+
#: ../commentluv.php:1390
|
516 |
+
msgid "Reset"
|
517 |
+
msgstr "Reset"
|
518 |
+
|
519 |
+
#: ../commentluv.php:1398
|
520 |
+
msgid "Plugin Info"
|
521 |
+
msgstr "Info o plaginu "
|
522 |
+
|
523 |
+
#: ../commentluv.php:1401
|
524 |
+
msgid "Start Here"
|
525 |
+
msgstr "Pocnite ovde"
|
526 |
+
|
527 |
+
#: ../commentluv.php:1402
|
528 |
+
msgid "Author"
|
529 |
+
msgstr "Autor"
|
530 |
+
|
531 |
+
#: ../commentluv.php:1403
|
532 |
+
msgid "Home Page"
|
533 |
+
msgstr "Homepage "
|
534 |
+
|
535 |
+
#: ../commentluv.php:1403
|
536 |
+
msgid "Visit www.commentluv.com!"
|
537 |
+
msgstr "Posetite www.commentluv.com!"
|
538 |
+
|
539 |
+
#: ../commentluv.php:1404
|
540 |
+
msgid "Social"
|
541 |
+
msgstr "Socijalno "
|
542 |
+
|
543 |
+
#: ../commentluv.php:1405
|
544 |
+
msgid "Help"
|
545 |
+
msgstr "Pomoc"
|
546 |
+
|
547 |
+
#: ../commentluv.php:1405
|
548 |
+
msgid "Help Desk"
|
549 |
+
msgstr "Pomoc desk "
|
550 |
+
|
551 |
+
#: ../commentluv.php:1406
|
552 |
+
msgid "Do you like this plugin?"
|
553 |
+
msgstr "Da li vam se dopada ovaj plagin? "
|
554 |
+
|
555 |
+
#: ../commentluv.php:1408
|
556 |
+
msgid "News"
|
557 |
+
msgstr "vesti "
|
558 |
+
|
559 |
+
#: ../commentluv.php:1414
|
560 |
+
msgid "Thanks to the following for translations"
|
561 |
+
msgstr "Zahvaljujem sledecima za prevode"
|
562 |
+
|
563 |
+
#: ../commentluv.php:1415
|
564 |
+
msgid "Italian"
|
565 |
+
msgstr "Italijanski "
|
566 |
+
|
567 |
+
#: ../commentluv.php:1416
|
568 |
+
msgid "Dutch"
|
569 |
+
msgstr "Holandski"
|
570 |
+
|
571 |
+
#: ../commentluv.php:1417
|
572 |
+
msgid "Polish"
|
573 |
+
msgstr "Poljski"
|
574 |
+
|
575 |
+
#: ../commentluv.php:1418
|
576 |
+
msgid "Georgian"
|
577 |
+
msgstr "Gruzijski "
|
578 |
+
|
579 |
+
#: ../commentluv.php:1419
|
580 |
+
msgid "Lithuanian"
|
581 |
+
msgstr "Litvanski"
|
582 |
+
|
583 |
+
#: ../commentluv.php:1420
|
584 |
+
msgid "Portuguese"
|
585 |
+
msgstr "Portugalski "
|
586 |
+
|
587 |
+
#: ../commentluv.php:1421
|
588 |
+
msgid "Malaysian"
|
589 |
+
msgstr "Malazijski "
|
590 |
+
|
591 |
+
#: ../commentluv.php:1422
|
592 |
+
msgid "Hindi"
|
593 |
+
msgstr "Hindi "
|
594 |
+
|
595 |
+
#: ../commentluv.php:1423
|
596 |
+
msgid "Russian"
|
597 |
+
msgstr "Ruski "
|
598 |
+
|
599 |
+
#: ../commentluv.php:1424
|
600 |
+
msgid "Chinese"
|
601 |
+
msgstr "Kineski "
|
602 |
+
|
603 |
+
#: ../commentluv.php:1425
|
604 |
+
msgid "Hebrew"
|
605 |
+
msgstr "Jevrejski "
|
606 |
+
|
607 |
+
#: ../commentluv.php:1426
|
608 |
+
msgid "French"
|
609 |
+
msgstr "Francuski "
|
610 |
+
|
611 |
+
#: ../commentluv.php:1428
|
612 |
+
msgid "Romanian"
|
613 |
+
msgstr "Rumunski "
|
614 |
+
|
615 |
+
#: ../commentluv.php:1429
|
616 |
+
msgid "German"
|
617 |
+
msgstr "Nemacki "
|
618 |
+
|
619 |
+
#: ../commentluv.php:1430
|
620 |
+
msgid "Arabic"
|
621 |
+
msgstr "Arapski "
|
622 |
+
|
623 |
+
#: ../commentluv.php:1432
|
624 |
+
msgid "Want your link here?"
|
625 |
+
msgstr "Zelite vas link ovde?"
|
626 |
+
|
627 |
+
#: ../commentluv.php:1432
|
628 |
+
msgid "How To Submit A Translation"
|
629 |
+
msgstr "Kako dodati prevod"
|
630 |
+
|
631 |
+
#: ../commentluv.php:1433
|
632 |
+
msgid "Special thanks go to the following"
|
633 |
+
msgstr "Posebno zahvaljujem sledecima"
|
634 |
+
|
635 |
+
#: ../commentluv.php:1434
|
636 |
+
msgid "CSS Help"
|
637 |
+
msgstr "CSS pomoc"
|
638 |
+
|
639 |
+
#: ../commentluv.php:1435
|
640 |
+
msgid "Badge GFX"
|
641 |
+
msgstr "Bedz GFX"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:http://comluv.com/about/donate
|
|
4 |
Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4
|
7 |
-
Stable tag: 2.92.
|
8 |
|
9 |
Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
10 |
|
@@ -56,6 +56,7 @@ Hebrew [Tobi](http://makemoneyim.com/ "Hebrew Translation")
|
|
56 |
Vietnamese [Xman](http://thegioimanguon.com "Vietnamese Translation")
|
57 |
Hungarian [Bruno](http://no1tutorials.net/ "Hungarian Translation")
|
58 |
Slovak [Viliam Brozman](http://www.brozman.sk/blog/ "Slovak Translation")
|
|
|
59 |
|
60 |
== Installation ==
|
61 |
|
@@ -85,6 +86,13 @@ Please see the videos in the settings page for explanations of how they work.
|
|
85 |
|
86 |
== ChangeLog ==
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
= 2.92.1 =
|
89 |
|
90 |
* added : ability to allow Jetpack comments to activate. (thought it best to still allow free choice, maybe someone wants the advantage they get with commentluv when they comment on other commentluv blogs?)
|
4 |
Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4
|
7 |
+
Stable tag: 2.92.2
|
8 |
|
9 |
Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
10 |
|
56 |
Vietnamese [Xman](http://thegioimanguon.com "Vietnamese Translation")
|
57 |
Hungarian [Bruno](http://no1tutorials.net/ "Hungarian Translation")
|
58 |
Slovak [Viliam Brozman](http://www.brozman.sk/blog/ "Slovak Translation")
|
59 |
+
Serbian [Diana](http://wpcouponshop.com/ "Serbian Translation")
|
60 |
|
61 |
== Installation ==
|
62 |
|
86 |
|
87 |
== ChangeLog ==
|
88 |
|
89 |
+
= 2.92.2 =
|
90 |
+
|
91 |
+
* updated : updated Italian translation (thanks Gianni!)
|
92 |
+
* added : Serbian translation (thanks Diana!)
|
93 |
+
* updated : version checking to show ionCube status
|
94 |
+
* updated : add version number of plugin to version number of register script call
|
95 |
+
|
96 |
= 2.92.1 =
|
97 |
|
98 |
* added : ability to allow Jetpack comments to activate. (thought it best to still allow free choice, maybe someone wants the advantage they get with commentluv when they comment on other commentluv blogs?)
|