Version Description
- Added some ajax error messages in case of 404 or 500 server errors
- Added Indonesian language
- Fixed Malaysian language
- Tweaked click notification function to be non blocking
Download this release
Release Info
Developer | commentluv |
Plugin | CommentLuv |
Version | 2.90.3 |
Comparing to | |
See all releases |
Code changes from version 2.90.2 to 2.90.3
- commentluv.php +8 -5
- images/id.png +0 -0
- js/commentluv.js +21 -4
- lang/{commentluv-my_MY.mo → commentluv-ms_MY.mo} +0 -0
- lang/{commentluv-my_MY.po → commentluv-ms_MY.po} +0 -0
- lang/commentluv-pt_ID.mo +0 -0
- lang/commentluv-pt_ID.po +582 -0
- lang/commentluv.mo +0 -0
- lang/commentluv.pot +150 -146
- readme.txt +7 -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.90.
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://www.commentluv.com
|
8 |
Copyright (C) <2011> <Andy Bailey>
|
@@ -29,7 +29,7 @@
|
|
29 |
var $plugin_url;
|
30 |
var $plugin_dir;
|
31 |
var $db_option = 'commentluv_options';
|
32 |
-
var $version = "2.90.
|
33 |
var $slug = 'commentluv-options';
|
34 |
var $localize;
|
35 |
|
@@ -473,8 +473,8 @@
|
|
473 |
if($_POST['cl_prem'] == 'true'){
|
474 |
$comment = get_commentdata($cid);
|
475 |
$refer = get_permalink($comment['comment_post_ID']);
|
476 |
-
|
477 |
-
|
478 |
}
|
479 |
exit;
|
480 |
}
|
@@ -673,7 +673,7 @@
|
|
673 |
* takes action when ajax request is made with URL from the comment form
|
674 |
* send back 1 or 10 last posts depending on rules
|
675 |
*/
|
676 |
-
function fetch_feed(){
|
677 |
// check nonce
|
678 |
check_ajax_referer('fetch');
|
679 |
define('DOING_AJAX', true);
|
@@ -767,6 +767,7 @@
|
|
767 |
// had an error trying to read the feed
|
768 |
$response = json_encode(array('error'=>$error));
|
769 |
}
|
|
|
770 |
header( "Content-Type: application/json" );
|
771 |
echo $response;
|
772 |
exit;
|
@@ -1420,6 +1421,8 @@
|
|
1420 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/br.png"/> <?php _e('Portuguese',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.korvo.com.br/">Diego Uczak</a></td></tr>
|
1421 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/my.png"/> <?php _e('Malaysian',$this->plugin_domain);?></td><td><a target="_blank" href="http://ariffshah.com/">Ariff Shah</a></td></tr>
|
1422 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/in.png"/> <?php _e('Hindi',$this->plugin_domain);?></td><td><a target="_blank" href="http://outshinesolutions.com/">Outshine Solutions</a></td></tr>
|
|
|
|
|
1423 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/ru.png"/> <?php _e('Russian',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.fatcow.com/">Fatcow</a>--></td></tr>
|
1424 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/cn.png"/> <?php _e('Chinese',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://zuoshen.com/">Donald</a>--></td></tr>
|
1425 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/il.png"/> <?php _e('Hebrew',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.maorb.info/">Maor Barazany</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.90.3
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://www.commentluv.com
|
8 |
Copyright (C) <2011> <Andy Bailey>
|
29 |
var $plugin_url;
|
30 |
var $plugin_dir;
|
31 |
var $db_option = 'commentluv_options';
|
32 |
+
var $version = "2.90.3";
|
33 |
var $slug = 'commentluv-options';
|
34 |
var $localize;
|
35 |
|
473 |
if($_POST['cl_prem'] == 'true'){
|
474 |
$comment = get_commentdata($cid);
|
475 |
$refer = get_permalink($comment['comment_post_ID']);
|
476 |
+
// set blocking to false because no response required
|
477 |
+
$response = wp_remote_post($url,array('blocking'=>false,'body'=>array('cl_request'=>'click','refer'=>$refer,'version'=>$this->version)));
|
478 |
}
|
479 |
exit;
|
480 |
}
|
673 |
* takes action when ajax request is made with URL from the comment form
|
674 |
* send back 1 or 10 last posts depending on rules
|
675 |
*/
|
676 |
+
function fetch_feed(){
|
677 |
// check nonce
|
678 |
check_ajax_referer('fetch');
|
679 |
define('DOING_AJAX', true);
|
767 |
// had an error trying to read the feed
|
768 |
$response = json_encode(array('error'=>$error));
|
769 |
}
|
770 |
+
unset($rss);
|
771 |
header( "Content-Type: application/json" );
|
772 |
echo $response;
|
773 |
exit;
|
1421 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/br.png"/> <?php _e('Portuguese',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.korvo.com.br/">Diego Uczak</a></td></tr>
|
1422 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/my.png"/> <?php _e('Malaysian',$this->plugin_domain);?></td><td><a target="_blank" href="http://ariffshah.com/">Ariff Shah</a></td></tr>
|
1423 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/in.png"/> <?php _e('Hindi',$this->plugin_domain);?></td><td><a target="_blank" href="http://outshinesolutions.com/">Outshine Solutions</a></td></tr>
|
1424 |
+
<tr><td><img src="<?php echo $this->plugin_url;?>images/id.png"/> <?php _e('Indonesian',$this->plugin_domain);?></td><td><a target="_blank" href="http://rainerflame.com/">Mokhamad Oky</a></td></tr>
|
1425 |
+
|
1426 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/ru.png"/> <?php _e('Russian',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.fatcow.com/">Fatcow</a>--></td></tr>
|
1427 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/cn.png"/> <?php _e('Chinese',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://zuoshen.com/">Donald</a>--></td></tr>
|
1428 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/il.png"/> <?php _e('Hebrew',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.maorb.info/">Maor Barazany</a>--></td></tr>
|
images/id.png
ADDED
Binary file
|
js/commentluv.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
// commentluv 2.
|
2 |
jQuery(document).ready(function(){
|
3 |
// get the form object and fields
|
4 |
var formObj = jQuery('#cl_post_title').parents('form');
|
@@ -90,7 +90,7 @@ function cl_docheck(){
|
|
90 |
cl_settings['comObj'].after('<br><span id="invisurl">').after(invismsg);
|
91 |
jQuery('#invisurl').append('URL ').after(invisurl).append('</span>');
|
92 |
}
|
93 |
-
|
94 |
}
|
95 |
// check that there is a value in the url field
|
96 |
if(url.val().length > 1){
|
@@ -114,7 +114,7 @@ function cl_docheck(){
|
|
114 |
}
|
115 |
// if we are here, all is cool mon
|
116 |
return 'ok';
|
117 |
-
}
|
118 |
/**
|
119 |
* tries to fetch last blog posts for a url
|
120 |
*/
|
@@ -170,11 +170,28 @@ function cl_dostuff(){
|
|
170 |
} else {
|
171 |
cl_message(data.error);
|
172 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
}
|
174 |
});
|
175 |
// save what url used and that we checked already
|
176 |
cl_settings['fired'] = 'yes';
|
177 |
-
cl_settings['url_value'] = url.val();
|
|
|
178 |
}
|
179 |
/**
|
180 |
* adds a message to tell the user something in the cl_message div and then slides it down
|
1 |
+
// commentluv 2.90.3
|
2 |
jQuery(document).ready(function(){
|
3 |
// get the form object and fields
|
4 |
var formObj = jQuery('#cl_post_title').parents('form');
|
90 |
cl_settings['comObj'].after('<br><span id="invisurl">').after(invismsg);
|
91 |
jQuery('#invisurl').append('URL ').after(invisurl).append('</span>');
|
92 |
}
|
93 |
+
|
94 |
}
|
95 |
// check that there is a value in the url field
|
96 |
if(url.val().length > 1){
|
114 |
}
|
115 |
// if we are here, all is cool mon
|
116 |
return 'ok';
|
117 |
+
}
|
118 |
/**
|
119 |
* tries to fetch last blog posts for a url
|
120 |
*/
|
170 |
} else {
|
171 |
cl_message(data.error);
|
172 |
}
|
173 |
+
},
|
174 |
+
error: function(x,e){
|
175 |
+
jQuery('#cl_messages img').remove();
|
176 |
+
if(x.status==0){
|
177 |
+
cl_message('You are offline!!\n Please Check Your Network.');
|
178 |
+
}else if(x.status==404){
|
179 |
+
cl_message('API URL not found.');
|
180 |
+
}else if(x.status==500){
|
181 |
+
cl_message('Internel Server Error.');
|
182 |
+
}else if(e=='parsererror'){
|
183 |
+
cl_message('Error.\nParsing JSON Request failed.');
|
184 |
+
}else if(e=='timeout'){
|
185 |
+
cl_message('Request Time out.');
|
186 |
+
}else {
|
187 |
+
cl_message('Unknow Error. ' + x.statusText);
|
188 |
+
}
|
189 |
}
|
190 |
});
|
191 |
// save what url used and that we checked already
|
192 |
cl_settings['fired'] = 'yes';
|
193 |
+
cl_settings['url_value'] = url.val();
|
194 |
+
|
195 |
}
|
196 |
/**
|
197 |
* adds a message to tell the user something in the cl_message div and then slides it down
|
lang/{commentluv-my_MY.mo → commentluv-ms_MY.mo}
RENAMED
File without changes
|
lang/{commentluv-my_MY.po → commentluv-ms_MY.po}
RENAMED
File without changes
|
lang/commentluv-pt_ID.mo
ADDED
Binary file
|
lang/commentluv-pt_ID.po
ADDED
@@ -0,0 +1,582 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: CommentLuv 2.8.9.8\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: Andy Bailey <andrewgbailey@gmail.com>\n"
|
8 |
+
"Language-Team: rainerflame <rainer.flame@gmail.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-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-Language: Indonesian\n"
|
15 |
+
"X-Poedit-Country: INDONESIA\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
+
|
18 |
+
#: ../commentluv.php:48
|
19 |
+
msgid "CommentLuv requires Wordpress 3.0 or newer."
|
20 |
+
msgstr "CommentLuv membutuhkan versi Wordpress 3.0 atau lebih"
|
21 |
+
|
22 |
+
#: ../commentluv.php:48
|
23 |
+
msgid "Please Update!"
|
24 |
+
msgstr "Harap Perbaharui!"
|
25 |
+
|
26 |
+
#: ../commentluv.php:217
|
27 |
+
msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
|
28 |
+
msgstr "Harap masukkan URL lalu klik kotak CommentLuv jika anda ingin menambahkan postingan terakhir blog anda"
|
29 |
+
|
30 |
+
#: ../commentluv.php:218
|
31 |
+
msgid "Please use http:// in front of your url"
|
32 |
+
msgstr "Harap gunakan http:// di depan url anda"
|
33 |
+
|
34 |
+
#: ../commentluv.php:219
|
35 |
+
msgid "You need to visit your profile in the dashboard and update your details with your site URL"
|
36 |
+
msgstr "Anda harus mengunjungi halaman profile dan perbaharui detil dengan URL situs anda"
|
37 |
+
|
38 |
+
#: ../commentluv.php:220
|
39 |
+
msgid "No info was available or an error occured"
|
40 |
+
msgstr "Info tidak tersedia atau terjadi kesalahan"
|
41 |
+
|
42 |
+
#: ../commentluv.php:243
|
43 |
+
msgid "Please wait"
|
44 |
+
msgstr "Harap tunggu"
|
45 |
+
|
46 |
+
#: ../commentluv.php:243
|
47 |
+
msgid "Please check your inbox, an email will be sent to"
|
48 |
+
msgstr "Harap cek kotak masuk anda, email akan dikirim ke"
|
49 |
+
|
50 |
+
#: ../commentluv.php:243
|
51 |
+
msgid "in the next few minutes with a confirmation link"
|
52 |
+
msgstr "dalam beberapa menit dengan tautan konfirmasi"
|
53 |
+
|
54 |
+
#: ../commentluv.php:243
|
55 |
+
msgid "An error happened with the request. Try signing up at the site"
|
56 |
+
msgstr "Terjadi kesalahan dengan permintaan anda. Coba mendaftar di situs"
|
57 |
+
|
58 |
+
#: ../commentluv.php:272
|
59 |
+
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
60 |
+
msgstr "Instalasi Wordpress anda kekurangan tabel <strong>wp_commentmeta</strong>!"
|
61 |
+
|
62 |
+
#: ../commentluv.php:272
|
63 |
+
msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
|
64 |
+
msgstr "CommentLuv tidak dapat berjalan tanpa tabel ini harap kunjungi forum wordpress untuk mengetahui cara menambahkannya ->"
|
65 |
+
|
66 |
+
#: ../commentluv.php:272
|
67 |
+
msgid "Missing wp_commentmeta table"
|
68 |
+
msgstr "Kekurangan tabel wp_commentmeta"
|
69 |
+
|
70 |
+
#: ../commentluv.php:365
|
71 |
+
msgid "Twice Monthly"
|
72 |
+
msgstr "Dua kali sebulan"
|
73 |
+
|
74 |
+
#: ../commentluv.php:392
|
75 |
+
msgid "CommentLuv is enabled"
|
76 |
+
msgstr "CommentLuv diaktifkan"
|
77 |
+
|
78 |
+
#: ../commentluv.php:433
|
79 |
+
msgid "Show more posts"
|
80 |
+
msgstr "Tampilkan post lainnya"
|
81 |
+
|
82 |
+
#: ../commentluv.php:523
|
83 |
+
msgid "I have only commented on this post"
|
84 |
+
msgstr "Saya hanya berkomentar di post ini"
|
85 |
+
|
86 |
+
#: ../commentluv.php:526
|
87 |
+
msgid "If I had made more comments on this site, you would see more of my other posts here"
|
88 |
+
msgstr "Jika saya berkomentar lebih banyak di situs ini, anda dapat melihat post lain dari saya disini"
|
89 |
+
|
90 |
+
#: ../commentluv.php:551
|
91 |
+
msgid "User has not saved a description in their profile page"
|
92 |
+
msgstr "Pengguna belum menyimpan deskripsi di halaman profilnya"
|
93 |
+
|
94 |
+
#: ../commentluv.php:563
|
95 |
+
msgid "is the administrator of this site"
|
96 |
+
msgstr "adalah administrator situs ini"
|
97 |
+
|
98 |
+
#: ../commentluv.php:565
|
99 |
+
msgid "is a registered member of my site"
|
100 |
+
msgstr "adalah anggota terdaftar di situs saya"
|
101 |
+
|
102 |
+
#: ../commentluv.php:568
|
103 |
+
#: ../commentluv.php:587
|
104 |
+
msgid "Clicks on this link on this comment"
|
105 |
+
msgstr "Klik tautan ini pada komentar ini"
|
106 |
+
|
107 |
+
#: ../commentluv.php:568
|
108 |
+
#: ../commentluv.php:588
|
109 |
+
msgid "approved comments on this site"
|
110 |
+
msgstr "setujui komentar di situs ini"
|
111 |
+
|
112 |
+
#: ../commentluv.php:568
|
113 |
+
#: ../commentluv.php:589
|
114 |
+
msgid "Some other posts I have commented on"
|
115 |
+
msgstr "Post lain yang telah saya komentari"
|
116 |
+
|
117 |
+
#: ../commentluv.php:568
|
118 |
+
msgid "Some of my other posts"
|
119 |
+
msgstr "Beberapa post lain saya"
|
120 |
+
|
121 |
+
#: ../commentluv.php:581
|
122 |
+
msgid "has not registered on this site"
|
123 |
+
msgstr "belum terdaftar di situs ini"
|
124 |
+
|
125 |
+
#: ../commentluv.php:703
|
126 |
+
msgid "Could not get posts for home blog"
|
127 |
+
msgstr "Tidak mendapatkan post untuk halaman awal blog"
|
128 |
+
|
129 |
+
#: ../commentluv.php:759
|
130 |
+
msgid "If you are registered, you need to log in to get 10 posts to choose from"
|
131 |
+
msgstr "Jika anda terdaftar, anda harus masuk untuk mendapatkan 10 post yang dapat dipilih"
|
132 |
+
|
133 |
+
#: ../commentluv.php:783
|
134 |
+
#: ../commentluv.php:1235
|
135 |
+
msgid "Register"
|
136 |
+
msgstr "Daftar"
|
137 |
+
|
138 |
+
#: ../commentluv.php:788
|
139 |
+
msgid "recently posted"
|
140 |
+
msgstr "Baru saja diposting"
|
141 |
+
|
142 |
+
#: ../commentluv.php:789
|
143 |
+
msgid "If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box."
|
144 |
+
msgstr "Jika anda terdaftar sebagai pengguna di situs saya, anda dapat memilih 10 postingan terbaru anda pada kotak ini."
|
145 |
+
|
146 |
+
#: ../commentluv.php:790
|
147 |
+
msgid "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"
|
148 |
+
msgstr "Jika pengguna ini mendaftar di situs saya, maka ia dapat memilih 10 postingan terbarunya dimana ia berkomentar dan anda dapat melihat daftar postingan terbarunya pada panel ini"
|
149 |
+
|
150 |
+
#: ../commentluv.php:971
|
151 |
+
msgid "Settings"
|
152 |
+
msgstr "Setelan"
|
153 |
+
|
154 |
+
#: ../commentluv.php:1010
|
155 |
+
msgid "No Posts Were Found!"
|
156 |
+
msgstr "Tidak Ada Post Ditemukan!"
|
157 |
+
|
158 |
+
#: ../commentluv.php:1050
|
159 |
+
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
160 |
+
msgstr "Tersedia versi terbaru Commentluv, harap perbaharui dengan mengunjungi situs ini"
|
161 |
+
|
162 |
+
#: ../commentluv.php:1053
|
163 |
+
msgid "Dismiss notice"
|
164 |
+
msgstr "Hilangkan pemberitahuan"
|
165 |
+
|
166 |
+
#: ../commentluv.php:1080
|
167 |
+
msgid "CommentLuv Settings v"
|
168 |
+
msgstr "Setingan Commentluv v"
|
169 |
+
|
170 |
+
#: ../commentluv.php:1090
|
171 |
+
msgid "Important!"
|
172 |
+
msgstr "Penting!"
|
173 |
+
|
174 |
+
#: ../commentluv.php:1090
|
175 |
+
msgid "Subscription Information"
|
176 |
+
msgstr "Informasi Berlangganan"
|
177 |
+
|
178 |
+
#: ../commentluv.php:1095
|
179 |
+
msgid "CommentLuv 3.0 Premium is coming soon!"
|
180 |
+
msgstr "CommentLuv 3.0 Premium akan segera hadir!"
|
181 |
+
|
182 |
+
#: ../commentluv.php:1096
|
183 |
+
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
184 |
+
msgstr "Saya berjanji tidak akan menjual detil atau mengirimi anda spam. anda HANYA akan menerima email pembaharuan plugin."
|
185 |
+
|
186 |
+
#: ../commentluv.php:1099
|
187 |
+
msgid "There is a premium version of CommentLuv coming that will have much more control of how the plugin works as well as exclusive features like keyword name, inline registration and much much more!. Signup to find out as soon as it is ready"
|
188 |
+
msgstr "Akan tersedia versi premium dari CommentLuv yang akan memiliki lebih banyak kontrol bagaimana plugin bekerja serta fitur ekslusif seperti nama kata kunci, Registrasi inline dan lebih banyak lagi!. Daftar untuk mengetahui saat tersedia."
|
189 |
+
|
190 |
+
#: ../commentluv.php:1102
|
191 |
+
msgid "You have already subscribed, if you have not received the verification within 12 hours, please click the button to resend or try the form at"
|
192 |
+
msgstr "Anda telah berlangganan, jika anda tidak menerima verifikasi dalam 12 jam, harap klik tombol untuk mengirim ulang atau coba formulir di"
|
193 |
+
|
194 |
+
#: ../commentluv.php:1102
|
195 |
+
msgid "Resend Verification"
|
196 |
+
msgstr "Kirim Ulang Verifikasi"
|
197 |
+
|
198 |
+
#: ../commentluv.php:1104
|
199 |
+
msgid "Click to register now!"
|
200 |
+
msgstr "Klik untuk mendaftar sekarang"
|
201 |
+
|
202 |
+
#: ../commentluv.php:1119
|
203 |
+
msgid "Primary Setting"
|
204 |
+
msgstr "Setelan Utama"
|
205 |
+
|
206 |
+
#: ../commentluv.php:1119
|
207 |
+
#: ../commentluv.php:1153
|
208 |
+
#: ../commentluv.php:1212
|
209 |
+
#: ../commentluv.php:1268
|
210 |
+
#: ../commentluv.php:1299
|
211 |
+
msgid "Help Video"
|
212 |
+
msgstr "Video Bantuan"
|
213 |
+
|
214 |
+
#: ../commentluv.php:1123
|
215 |
+
msgid "Enable CommentLuv?"
|
216 |
+
msgstr "Aktifkan CommentLuv?"
|
217 |
+
|
218 |
+
#: ../commentluv.php:1124
|
219 |
+
msgid "Yes"
|
220 |
+
msgstr "Ya"
|
221 |
+
|
222 |
+
#: ../commentluv.php:1125
|
223 |
+
msgid "No"
|
224 |
+
msgstr "Tidak"
|
225 |
+
|
226 |
+
#: ../commentluv.php:1130
|
227 |
+
msgid "On Posts"
|
228 |
+
msgstr "Pada Post"
|
229 |
+
|
230 |
+
#: ../commentluv.php:1131
|
231 |
+
msgid "On Pages"
|
232 |
+
msgstr "Pada Halaman"
|
233 |
+
|
234 |
+
#: ../commentluv.php:1132
|
235 |
+
msgid "On Both"
|
236 |
+
msgstr "Pada Keduanya"
|
237 |
+
|
238 |
+
#: ../commentluv.php:1137
|
239 |
+
msgid "On by default?"
|
240 |
+
msgstr "Standar Aktif?"
|
241 |
+
|
242 |
+
#: ../commentluv.php:1141
|
243 |
+
msgid "On for admin?"
|
244 |
+
msgstr "Aktif untuk admin?"
|
245 |
+
|
246 |
+
#: ../commentluv.php:1153
|
247 |
+
msgid "Appearance"
|
248 |
+
msgstr "Tampilan"
|
249 |
+
|
250 |
+
#: ../commentluv.php:1157
|
251 |
+
msgid "Badge"
|
252 |
+
msgstr "Pengenal"
|
253 |
+
|
254 |
+
#: ../commentluv.php:1158
|
255 |
+
msgid "Custom Image URL"
|
256 |
+
msgstr "URL Gambar "
|
257 |
+
|
258 |
+
#: ../commentluv.php:1159
|
259 |
+
msgid "Use Text"
|
260 |
+
msgstr "Gunakan Teks"
|
261 |
+
|
262 |
+
#: ../commentluv.php:1167
|
263 |
+
msgid "Default"
|
264 |
+
msgstr "Standar"
|
265 |
+
|
266 |
+
#: ../commentluv.php:1168
|
267 |
+
msgid "White"
|
268 |
+
msgstr "Putih"
|
269 |
+
|
270 |
+
#: ../commentluv.php:1169
|
271 |
+
msgid "Black"
|
272 |
+
msgstr "Hitam"
|
273 |
+
|
274 |
+
#: ../commentluv.php:1170
|
275 |
+
msgid "None"
|
276 |
+
msgstr "Kosong"
|
277 |
+
|
278 |
+
#: ../commentluv.php:1187
|
279 |
+
msgid "Link to Commentluv?"
|
280 |
+
msgstr "Tautan ke CommentLuv?"
|
281 |
+
|
282 |
+
#: ../commentluv.php:1194
|
283 |
+
msgid "Enable info panel?"
|
284 |
+
msgstr "Aktifkan panel info?"
|
285 |
+
|
286 |
+
#: ../commentluv.php:1195
|
287 |
+
msgid "Info panel background color"
|
288 |
+
msgstr "Warna latar panel info"
|
289 |
+
|
290 |
+
#: ../commentluv.php:1196
|
291 |
+
msgid "Info panel text color"
|
292 |
+
msgstr "Warna huruf panel info"
|
293 |
+
|
294 |
+
#: ../commentluv.php:1202
|
295 |
+
msgid "Example text and background color"
|
296 |
+
msgstr "Contoh huruf dan warna latar"
|
297 |
+
|
298 |
+
#: ../commentluv.php:1212
|
299 |
+
msgid "Messages"
|
300 |
+
msgstr "Pesan"
|
301 |
+
|
302 |
+
#: ../commentluv.php:1219
|
303 |
+
msgid "Text to be displayed in the comment"
|
304 |
+
msgstr "Kata untuk ditampilkan pada komentar"
|
305 |
+
|
306 |
+
#: ../commentluv.php:1222
|
307 |
+
msgid "[name] = The users name"
|
308 |
+
msgstr "[name] = Nama Pengguna"
|
309 |
+
|
310 |
+
#: ../commentluv.php:1222
|
311 |
+
msgid "[lastpost] = The last blog post link"
|
312 |
+
msgstr "[lastpost] = Tautan postingan blog terakhir"
|
313 |
+
|
314 |
+
#: ../commentluv.php:1229
|
315 |
+
msgid "Message for unregistered user in the drop down box"
|
316 |
+
msgstr "Pesan untuk pengguna belum terdaftar pada kotak drop down"
|
317 |
+
|
318 |
+
#: ../commentluv.php:1230
|
319 |
+
#: ../commentluv.php:1254
|
320 |
+
msgid "Message will not be shown if you do not have registrations enabled"
|
321 |
+
msgstr "Pesan tidak akan ditampilkan jika anda tidak mengaktifkan registrasi"
|
322 |
+
|
323 |
+
#: ../commentluv.php:1234
|
324 |
+
msgid "Your register link code"
|
325 |
+
msgstr "Kode tautan pendaftaran anda"
|
326 |
+
|
327 |
+
#: ../commentluv.php:1244
|
328 |
+
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
329 |
+
msgstr "Anda BELUM mengeset blog untuk menerima registrasi, anda dapat melakukannya di Settings/General"
|
330 |
+
|
331 |
+
#: ../commentluv.php:1245
|
332 |
+
msgid "here"
|
333 |
+
msgstr "Disini"
|
334 |
+
|
335 |
+
#: ../commentluv.php:1253
|
336 |
+
msgid "Message for unregistered user in the info panel"
|
337 |
+
msgstr "Pesan untuk pengguna tidak terdaftar di panel info"
|
338 |
+
|
339 |
+
#: ../commentluv.php:1268
|
340 |
+
msgid "Operational Settings"
|
341 |
+
msgstr "Setelan Operasional"
|
342 |
+
|
343 |
+
#: ../commentluv.php:1275
|
344 |
+
msgid "Who to give 10 last posts to choose from when they comment?"
|
345 |
+
msgstr "Siapa yang diberikan 10 postingan akhir untuk dipilih saat mereka berkomentar?"
|
346 |
+
|
347 |
+
#: ../commentluv.php:1276
|
348 |
+
msgid "Only Registered Members"
|
349 |
+
msgstr "Hanya Anggota Terdaftar"
|
350 |
+
|
351 |
+
#: ../commentluv.php:1277
|
352 |
+
msgid "Everybody"
|
353 |
+
msgstr "Semua orang"
|
354 |
+
|
355 |
+
#: ../commentluv.php:1278
|
356 |
+
msgid "Nobody"
|
357 |
+
msgstr "Tidak siapapun"
|
358 |
+
|
359 |
+
#: ../commentluv.php:1285
|
360 |
+
msgid "Whose links should be dofollow?"
|
361 |
+
msgstr "Tautan siapakah yang dapat dofollow?"
|
362 |
+
|
363 |
+
#: ../commentluv.php:1286
|
364 |
+
msgid "Only Registered Members Links"
|
365 |
+
msgstr "Hanya tautan anggota terdaftar"
|
366 |
+
|
367 |
+
#: ../commentluv.php:1287
|
368 |
+
msgid "Everybody gets dofollow links"
|
369 |
+
msgstr "Semua mendapat tautan dofollow"
|
370 |
+
|
371 |
+
#: ../commentluv.php:1288
|
372 |
+
msgid "Nobody gets dofollow links"
|
373 |
+
msgstr "Tidak ada yang mendapat tautan dofollow"
|
374 |
+
|
375 |
+
#: ../commentluv.php:1299
|
376 |
+
msgid "Technical Settings"
|
377 |
+
msgstr "Setelan Teknis"
|
378 |
+
|
379 |
+
#: ../commentluv.php:1299
|
380 |
+
msgid "Click to open technical settings"
|
381 |
+
msgstr "Klik untuk membuka setelan teknis"
|
382 |
+
|
383 |
+
#: ../commentluv.php:1306
|
384 |
+
msgid "Please check the help video for this section before changing settings"
|
385 |
+
msgstr "Harap cek video bantuan untuk bagian ini sebelum merubah setelan"
|
386 |
+
|
387 |
+
#: ../commentluv.php:1307
|
388 |
+
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"
|
389 |
+
msgstr "Dalam banyak kasus, anda tidak perlu merubah setelan di kotak ini kecuali anda memiliki format komentar tersendiri, contoh atau menggunakan plugin untuk minifying atau mengcache"
|
390 |
+
|
391 |
+
#: ../commentluv.php:1312
|
392 |
+
msgid "Compatibility"
|
393 |
+
msgstr "Kompabilitas"
|
394 |
+
|
395 |
+
#: ../commentluv.php:1316
|
396 |
+
msgid "Use manual insert of badge code?"
|
397 |
+
msgstr "Gunakan cara manual memasukkan kode pengenal?"
|
398 |
+
|
399 |
+
#: ../commentluv.php:1320
|
400 |
+
msgid "Enable minifying compatibility?"
|
401 |
+
msgstr "Aktifkan kompabilitas minifying?"
|
402 |
+
|
403 |
+
#: ../commentluv.php:1321
|
404 |
+
msgid "For caching plugins (places localized code in footer)"
|
405 |
+
msgstr "Untuk mengcache plugin (simpan kode lokalisasi di footer)"
|
406 |
+
|
407 |
+
#: ../commentluv.php:1326
|
408 |
+
msgid "API URL"
|
409 |
+
msgstr "API URL"
|
410 |
+
|
411 |
+
#: ../commentluv.php:1330
|
412 |
+
msgid "URL to use for API"
|
413 |
+
msgstr "URL yang digunakan untuk API"
|
414 |
+
|
415 |
+
#: ../commentluv.php:1334
|
416 |
+
msgid "Comment Form Field Values"
|
417 |
+
msgstr "Kotak Format Komentar"
|
418 |
+
|
419 |
+
#: ../commentluv.php:1337
|
420 |
+
msgid "Authors Name field name"
|
421 |
+
msgstr "Kotak Nama Penulis"
|
422 |
+
|
423 |
+
#: ../commentluv.php:1342
|
424 |
+
msgid "Email field name"
|
425 |
+
msgstr "Kotak Email"
|
426 |
+
|
427 |
+
#: ../commentluv.php:1347
|
428 |
+
msgid "Authors URL field name"
|
429 |
+
msgstr "Kotak URL Penulis"
|
430 |
+
|
431 |
+
#: ../commentluv.php:1352
|
432 |
+
msgid "Comment Text Area name"
|
433 |
+
msgstr "Kotak Teks Komentar"
|
434 |
+
|
435 |
+
#: ../commentluv.php:1357
|
436 |
+
msgid "Diagnostics Info"
|
437 |
+
msgstr "Info Diagnosis"
|
438 |
+
|
439 |
+
#: ../commentluv.php:1375
|
440 |
+
msgid "You can copy this information and send it to me if I request it"
|
441 |
+
msgstr "Anda dapat menyalin informasi ini dan mengirimkannya pada saya jika saya memintanya"
|
442 |
+
|
443 |
+
#: ../commentluv.php:1382
|
444 |
+
msgid "Save Settings"
|
445 |
+
msgstr "Simpan Setelan"
|
446 |
+
|
447 |
+
#: ../commentluv.php:1384
|
448 |
+
msgid "Reset Settings"
|
449 |
+
msgstr "Hapus Setelan"
|
450 |
+
|
451 |
+
#: ../commentluv.php:1387
|
452 |
+
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
453 |
+
msgstr "Apakah anda yakin ingin menghapus setelan anda? tekan OK untuk melanjutkan"
|
454 |
+
|
455 |
+
#: ../commentluv.php:1390
|
456 |
+
msgid "Reset"
|
457 |
+
msgstr "Kembalikan"
|
458 |
+
|
459 |
+
#: ../commentluv.php:1398
|
460 |
+
msgid "Plugin Info"
|
461 |
+
msgstr "Info Plugin"
|
462 |
+
|
463 |
+
#: ../commentluv.php:1401
|
464 |
+
msgid "Start Here"
|
465 |
+
msgstr "Mulai Disini"
|
466 |
+
|
467 |
+
#: ../commentluv.php:1402
|
468 |
+
msgid "Author"
|
469 |
+
msgstr "Penulis"
|
470 |
+
|
471 |
+
#: ../commentluv.php:1403
|
472 |
+
msgid "Home Page"
|
473 |
+
msgstr "Halaman Utama"
|
474 |
+
|
475 |
+
#: ../commentluv.php:1403
|
476 |
+
msgid "Visit www.commentluv.com!"
|
477 |
+
msgstr "Kunjungi www.commentluv.com!"
|
478 |
+
|
479 |
+
#: ../commentluv.php:1404
|
480 |
+
msgid "Social"
|
481 |
+
msgstr "Sosial"
|
482 |
+
|
483 |
+
#: ../commentluv.php:1405
|
484 |
+
msgid "Help"
|
485 |
+
msgstr "Bantuan"
|
486 |
+
|
487 |
+
#: ../commentluv.php:1405
|
488 |
+
msgid "Help Desk"
|
489 |
+
msgstr "Pusat Bantuan"
|
490 |
+
|
491 |
+
#: ../commentluv.php:1406
|
492 |
+
msgid "Do you like this plugin?"
|
493 |
+
msgstr "Apakah anda menyukai plugin ini?"
|
494 |
+
|
495 |
+
#: ../commentluv.php:1408
|
496 |
+
msgid "News"
|
497 |
+
msgstr "Berita"
|
498 |
+
|
499 |
+
#: ../commentluv.php:1414
|
500 |
+
msgid "Thanks to the following for translations"
|
501 |
+
msgstr "Terima kasih kepada berikut ini atas terjemahannya"
|
502 |
+
|
503 |
+
#: ../commentluv.php:1415
|
504 |
+
msgid "Italian"
|
505 |
+
msgstr "Italia"
|
506 |
+
|
507 |
+
#: ../commentluv.php:1416
|
508 |
+
msgid "Dutch"
|
509 |
+
msgstr "Belanda"
|
510 |
+
|
511 |
+
#: ../commentluv.php:1417
|
512 |
+
msgid "Polish"
|
513 |
+
msgstr "Polandia"
|
514 |
+
|
515 |
+
#: ../commentluv.php:1418
|
516 |
+
msgid "Georgian"
|
517 |
+
msgstr "Georgia"
|
518 |
+
|
519 |
+
#: ../commentluv.php:1419
|
520 |
+
msgid "Lithuanian"
|
521 |
+
msgstr "Lituania"
|
522 |
+
|
523 |
+
#: ../commentluv.php:1420
|
524 |
+
msgid "Portuguese"
|
525 |
+
msgstr "Portugal"
|
526 |
+
|
527 |
+
#: ../commentluv.php:1421
|
528 |
+
msgid "Malaysian"
|
529 |
+
msgstr "Malaysia"
|
530 |
+
|
531 |
+
#: ../commentluv.php:1422
|
532 |
+
msgid "Hindi"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: ../commentluv.php:1423
|
536 |
+
msgid "Russian"
|
537 |
+
msgstr "Rusia"
|
538 |
+
|
539 |
+
#: ../commentluv.php:1424
|
540 |
+
msgid "Chinese"
|
541 |
+
msgstr "Cina"
|
542 |
+
|
543 |
+
#: ../commentluv.php:1425
|
544 |
+
msgid "Hebrew"
|
545 |
+
msgstr "Israel"
|
546 |
+
|
547 |
+
#: ../commentluv.php:1426
|
548 |
+
msgid "French"
|
549 |
+
msgstr "Perancis"
|
550 |
+
|
551 |
+
#: ../commentluv.php:1428
|
552 |
+
msgid "Romanian"
|
553 |
+
msgstr "Rumania"
|
554 |
+
|
555 |
+
#: ../commentluv.php:1429
|
556 |
+
msgid "German"
|
557 |
+
msgstr "Jerman"
|
558 |
+
|
559 |
+
#: ../commentluv.php:1430
|
560 |
+
msgid "Arabic"
|
561 |
+
msgstr "Arab"
|
562 |
+
|
563 |
+
#: ../commentluv.php:1432
|
564 |
+
msgid "Want your link here?"
|
565 |
+
msgstr "Ingin tautan anda disini?"
|
566 |
+
|
567 |
+
#: ../commentluv.php:1432
|
568 |
+
msgid "How To Submit A Translation"
|
569 |
+
msgstr "Bagaimana Cara Mengirimkan Terjemahan"
|
570 |
+
|
571 |
+
#: ../commentluv.php:1433
|
572 |
+
msgid "Special thanks go to the following"
|
573 |
+
msgstr "Terima kasih banyak untuk berikut ini"
|
574 |
+
|
575 |
+
#: ../commentluv.php:1434
|
576 |
+
msgid "CSS Help"
|
577 |
+
msgstr "Bantuan CSS"
|
578 |
+
|
579 |
+
#: ../commentluv.php:1435
|
580 |
+
msgid "Badge GFX"
|
581 |
+
msgstr "GFX Pengenal"
|
582 |
+
|
lang/commentluv.mo
CHANGED
Binary file
|
lang/commentluv.pot
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: CommentLuv 2.8.9.8\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-06-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Andy Bailey <andrewgbailey@gmail.com>\n"
|
8 |
"Language-Team: @commentluv, Gianni Diurno <admin@comluv.com>\n"
|
@@ -23,556 +23,560 @@ msgstr ""
|
|
23 |
msgid "Please Update!"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: ../commentluv.php:
|
27 |
msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../commentluv.php:
|
31 |
msgid "Please use http:// in front of your url"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: ../commentluv.php:
|
35 |
msgid "You need to visit your profile in the dashboard and update your details with your site URL"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../commentluv.php:
|
39 |
msgid "No info was available or an error occured"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: ../commentluv.php:
|
43 |
msgid "Please wait"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../commentluv.php:
|
47 |
msgid "Please check your inbox, an email will be sent to"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../commentluv.php:
|
51 |
msgid "in the next few minutes with a confirmation link"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../commentluv.php:
|
55 |
msgid "An error happened with the request. Try signing up at the site"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../commentluv.php:
|
59 |
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../commentluv.php:
|
63 |
msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../commentluv.php:
|
67 |
msgid "Missing wp_commentmeta table"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: ../commentluv.php:
|
71 |
msgid "Twice Monthly"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: ../commentluv.php:
|
75 |
msgid "CommentLuv is enabled"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../commentluv.php:
|
79 |
msgid "Show more posts"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../commentluv.php:
|
83 |
msgid "I have only commented on this post"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../commentluv.php:
|
87 |
msgid "If I had made more comments on this site, you would see more of my other posts here"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../commentluv.php:
|
91 |
msgid "User has not saved a description in their profile page"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: ../commentluv.php:
|
95 |
msgid "is the administrator of this site"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../commentluv.php:
|
99 |
msgid "is a registered member of my site"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../commentluv.php:
|
103 |
-
#: ../commentluv.php:
|
104 |
msgid "Clicks on this link on this comment"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../commentluv.php:
|
108 |
-
#: ../commentluv.php:
|
109 |
msgid "approved comments on this site"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: ../commentluv.php:
|
113 |
-
#: ../commentluv.php:
|
114 |
msgid "Some other posts I have commented on"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ../commentluv.php:
|
118 |
msgid "Some of my other posts"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../commentluv.php:
|
122 |
msgid "has not registered on this site"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: ../commentluv.php:
|
126 |
msgid "Could not get posts for home blog"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ../commentluv.php:
|
130 |
msgid "If you are registered, you need to log in to get 10 posts to choose from"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../commentluv.php:
|
134 |
-
#: ../commentluv.php:
|
135 |
msgid "Register"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../commentluv.php:
|
139 |
msgid "recently posted"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: ../commentluv.php:
|
143 |
msgid "If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: ../commentluv.php:
|
147 |
msgid "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"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../commentluv.php:
|
151 |
msgid "Settings"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../commentluv.php:
|
155 |
msgid "No Posts Were Found!"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: ../commentluv.php:
|
159 |
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../commentluv.php:
|
163 |
msgid "Dismiss notice"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: ../commentluv.php:
|
167 |
msgid "CommentLuv Settings v"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../commentluv.php:
|
171 |
msgid "Important!"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: ../commentluv.php:
|
175 |
msgid "Subscription Information"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: ../commentluv.php:
|
179 |
msgid "CommentLuv 3.0 Premium is coming soon!"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../commentluv.php:
|
183 |
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../commentluv.php:
|
187 |
msgid "There is a premium version of CommentLuv coming that will have much more control of how the plugin works as well as exclusive features like keyword name, inline registration and much much more!. Signup to find out as soon as it is ready"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../commentluv.php:
|
191 |
msgid "You have already subscribed, if you have not received the verification within 12 hours, please click the button to resend or try the form at"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../commentluv.php:
|
195 |
msgid "Resend Verification"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: ../commentluv.php:
|
199 |
msgid "Click to register now!"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../commentluv.php:
|
203 |
msgid "Primary Setting"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: ../commentluv.php:
|
207 |
-
#: ../commentluv.php:
|
208 |
-
#: ../commentluv.php:
|
209 |
-
#: ../commentluv.php:
|
210 |
-
#: ../commentluv.php:
|
211 |
msgid "Help Video"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../commentluv.php:
|
215 |
msgid "Enable CommentLuv?"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../commentluv.php:
|
219 |
msgid "Yes"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../commentluv.php:
|
223 |
msgid "No"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../commentluv.php:
|
227 |
msgid "On Posts"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../commentluv.php:
|
231 |
msgid "On Pages"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../commentluv.php:
|
235 |
msgid "On Both"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../commentluv.php:
|
239 |
msgid "On by default?"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../commentluv.php:
|
243 |
msgid "On for admin?"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../commentluv.php:
|
247 |
msgid "Appearance"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../commentluv.php:
|
251 |
msgid "Badge"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../commentluv.php:
|
255 |
msgid "Custom Image URL"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../commentluv.php:
|
259 |
msgid "Use Text"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../commentluv.php:
|
263 |
msgid "Default"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../commentluv.php:
|
267 |
msgid "White"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../commentluv.php:
|
271 |
msgid "Black"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../commentluv.php:
|
275 |
msgid "None"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../commentluv.php:
|
279 |
msgid "Link to Commentluv?"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../commentluv.php:
|
283 |
msgid "Enable info panel?"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ../commentluv.php:
|
287 |
msgid "Info panel background color"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../commentluv.php:
|
291 |
msgid "Info panel text color"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../commentluv.php:
|
295 |
msgid "Example text and background color"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../commentluv.php:
|
299 |
msgid "Messages"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ../commentluv.php:
|
303 |
msgid "Text to be displayed in the comment"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../commentluv.php:
|
307 |
msgid "[name] = The users name"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ../commentluv.php:
|
311 |
msgid "[lastpost] = The last blog post link"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ../commentluv.php:
|
315 |
msgid "Message for unregistered user in the drop down box"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ../commentluv.php:
|
319 |
-
#: ../commentluv.php:
|
320 |
msgid "Message will not be shown if you do not have registrations enabled"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../commentluv.php:
|
324 |
msgid "Your register link code"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../commentluv.php:
|
328 |
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ../commentluv.php:
|
332 |
msgid "here"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../commentluv.php:
|
336 |
msgid "Message for unregistered user in the info panel"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../commentluv.php:
|
340 |
msgid "Operational Settings"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: ../commentluv.php:
|
344 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: ../commentluv.php:
|
348 |
msgid "Only Registered Members"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ../commentluv.php:
|
352 |
msgid "Everybody"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../commentluv.php:
|
356 |
msgid "Nobody"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../commentluv.php:
|
360 |
msgid "Whose links should be dofollow?"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../commentluv.php:
|
364 |
msgid "Only Registered Members Links"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ../commentluv.php:
|
368 |
msgid "Everybody gets dofollow links"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../commentluv.php:
|
372 |
msgid "Nobody gets dofollow links"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../commentluv.php:
|
376 |
msgid "Technical Settings"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../commentluv.php:
|
380 |
msgid "Click to open technical settings"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../commentluv.php:
|
384 |
msgid "Please check the help video for this section before changing settings"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: ../commentluv.php:
|
388 |
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"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../commentluv.php:
|
392 |
msgid "Compatibility"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../commentluv.php:
|
396 |
msgid "Use manual insert of badge code?"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../commentluv.php:
|
400 |
msgid "Enable minifying compatibility?"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ../commentluv.php:
|
404 |
msgid "For caching plugins (places localized code in footer)"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: ../commentluv.php:
|
408 |
msgid "API URL"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../commentluv.php:
|
412 |
msgid "URL to use for API"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../commentluv.php:
|
416 |
msgid "Comment Form Field Values"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../commentluv.php:
|
420 |
msgid "Authors Name field name"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../commentluv.php:
|
424 |
msgid "Email field name"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../commentluv.php:
|
428 |
msgid "Authors URL field name"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../commentluv.php:
|
432 |
msgid "Comment Text Area name"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../commentluv.php:
|
436 |
msgid "Diagnostics Info"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../commentluv.php:
|
440 |
msgid "You can copy this information and send it to me if I request it"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: ../commentluv.php:
|
444 |
msgid "Save Settings"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../commentluv.php:
|
448 |
msgid "Reset Settings"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: ../commentluv.php:
|
452 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: ../commentluv.php:
|
456 |
msgid "Reset"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../commentluv.php:
|
460 |
msgid "Plugin Info"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../commentluv.php:
|
464 |
msgid "Start Here"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../commentluv.php:
|
468 |
msgid "Author"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../commentluv.php:
|
472 |
msgid "Home Page"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../commentluv.php:
|
476 |
msgid "Visit www.commentluv.com!"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../commentluv.php:
|
480 |
msgid "Social"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../commentluv.php:
|
484 |
msgid "Help"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../commentluv.php:
|
488 |
msgid "Help Desk"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../commentluv.php:
|
492 |
msgid "Do you like this plugin?"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../commentluv.php:
|
496 |
msgid "News"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../commentluv.php:
|
500 |
msgid "Thanks to the following for translations"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ../commentluv.php:
|
504 |
msgid "Italian"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../commentluv.php:
|
508 |
msgid "Dutch"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../commentluv.php:
|
512 |
msgid "Polish"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../commentluv.php:
|
516 |
msgid "Georgian"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../commentluv.php:
|
520 |
msgid "Lithuanian"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../commentluv.php:
|
524 |
msgid "Portuguese"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../commentluv.php:
|
528 |
msgid "Malaysian"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
532 |
msgid "Russian"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../commentluv.php:
|
536 |
msgid "Chinese"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../commentluv.php:
|
540 |
msgid "Hebrew"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../commentluv.php:
|
544 |
msgid "French"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../commentluv.php:
|
548 |
msgid "Romanian"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../commentluv.php:
|
552 |
msgid "German"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../commentluv.php:
|
556 |
msgid "Arabic"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../commentluv.php:
|
560 |
msgid "Want your link here?"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../commentluv.php:
|
564 |
msgid "How To Submit A Translation"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: ../commentluv.php:
|
568 |
msgid "Special thanks go to the following"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: ../commentluv.php:
|
572 |
msgid "CSS Help"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: ../commentluv.php:
|
576 |
msgid "Badge GFX"
|
577 |
msgstr ""
|
578 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: CommentLuv 2.8.9.8\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: Andy Bailey <andrewgbailey@gmail.com>\n"
|
8 |
"Language-Team: @commentluv, Gianni Diurno <admin@comluv.com>\n"
|
23 |
msgid "Please Update!"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: ../commentluv.php:217
|
27 |
msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../commentluv.php:218
|
31 |
msgid "Please use http:// in front of your url"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: ../commentluv.php:219
|
35 |
msgid "You need to visit your profile in the dashboard and update your details with your site URL"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: ../commentluv.php:220
|
39 |
msgid "No info was available or an error occured"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: ../commentluv.php:243
|
43 |
msgid "Please wait"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../commentluv.php:243
|
47 |
msgid "Please check your inbox, an email will be sent to"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ../commentluv.php:243
|
51 |
msgid "in the next few minutes with a confirmation link"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: ../commentluv.php:243
|
55 |
msgid "An error happened with the request. Try signing up at the site"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: ../commentluv.php:272
|
59 |
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../commentluv.php:272
|
63 |
msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: ../commentluv.php:272
|
67 |
msgid "Missing wp_commentmeta table"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: ../commentluv.php:365
|
71 |
msgid "Twice Monthly"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../commentluv.php:392
|
75 |
msgid "CommentLuv is enabled"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../commentluv.php:433
|
79 |
msgid "Show more posts"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../commentluv.php:523
|
83 |
msgid "I have only commented on this post"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../commentluv.php:526
|
87 |
msgid "If I had made more comments on this site, you would see more of my other posts here"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../commentluv.php:551
|
91 |
msgid "User has not saved a description in their profile page"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../commentluv.php:563
|
95 |
msgid "is the administrator of this site"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../commentluv.php:565
|
99 |
msgid "is a registered member of my site"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../commentluv.php:568
|
103 |
+
#: ../commentluv.php:587
|
104 |
msgid "Clicks on this link on this comment"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../commentluv.php:568
|
108 |
+
#: ../commentluv.php:588
|
109 |
msgid "approved comments on this site"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../commentluv.php:568
|
113 |
+
#: ../commentluv.php:589
|
114 |
msgid "Some other posts I have commented on"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../commentluv.php:568
|
118 |
msgid "Some of my other posts"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../commentluv.php:581
|
122 |
msgid "has not registered on this site"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ../commentluv.php:703
|
126 |
msgid "Could not get posts for home blog"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../commentluv.php:759
|
130 |
msgid "If you are registered, you need to log in to get 10 posts to choose from"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../commentluv.php:783
|
134 |
+
#: ../commentluv.php:1235
|
135 |
msgid "Register"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: ../commentluv.php:788
|
139 |
msgid "recently posted"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../commentluv.php:789
|
143 |
msgid "If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../commentluv.php:790
|
147 |
msgid "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"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../commentluv.php:971
|
151 |
msgid "Settings"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: ../commentluv.php:1010
|
155 |
msgid "No Posts Were Found!"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: ../commentluv.php:1050
|
159 |
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../commentluv.php:1053
|
163 |
msgid "Dismiss notice"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../commentluv.php:1080
|
167 |
msgid "CommentLuv Settings v"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../commentluv.php:1090
|
171 |
msgid "Important!"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: ../commentluv.php:1090
|
175 |
msgid "Subscription Information"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ../commentluv.php:1095
|
179 |
msgid "CommentLuv 3.0 Premium is coming soon!"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: ../commentluv.php:1096
|
183 |
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../commentluv.php:1099
|
187 |
msgid "There is a premium version of CommentLuv coming that will have much more control of how the plugin works as well as exclusive features like keyword name, inline registration and much much more!. Signup to find out as soon as it is ready"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../commentluv.php:1102
|
191 |
msgid "You have already subscribed, if you have not received the verification within 12 hours, please click the button to resend or try the form at"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../commentluv.php:1102
|
195 |
msgid "Resend Verification"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../commentluv.php:1104
|
199 |
msgid "Click to register now!"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../commentluv.php:1119
|
203 |
msgid "Primary Setting"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: ../commentluv.php:1119
|
207 |
+
#: ../commentluv.php:1153
|
208 |
+
#: ../commentluv.php:1212
|
209 |
+
#: ../commentluv.php:1268
|
210 |
+
#: ../commentluv.php:1299
|
211 |
msgid "Help Video"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../commentluv.php:1123
|
215 |
msgid "Enable CommentLuv?"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../commentluv.php:1124
|
219 |
msgid "Yes"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../commentluv.php:1125
|
223 |
msgid "No"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../commentluv.php:1130
|
227 |
msgid "On Posts"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../commentluv.php:1131
|
231 |
msgid "On Pages"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../commentluv.php:1132
|
235 |
msgid "On Both"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../commentluv.php:1137
|
239 |
msgid "On by default?"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../commentluv.php:1141
|
243 |
msgid "On for admin?"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../commentluv.php:1153
|
247 |
msgid "Appearance"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../commentluv.php:1157
|
251 |
msgid "Badge"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../commentluv.php:1158
|
255 |
msgid "Custom Image URL"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: ../commentluv.php:1159
|
259 |
msgid "Use Text"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../commentluv.php:1167
|
263 |
msgid "Default"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../commentluv.php:1168
|
267 |
msgid "White"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../commentluv.php:1169
|
271 |
msgid "Black"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../commentluv.php:1170
|
275 |
msgid "None"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../commentluv.php:1187
|
279 |
msgid "Link to Commentluv?"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: ../commentluv.php:1194
|
283 |
msgid "Enable info panel?"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ../commentluv.php:1195
|
287 |
msgid "Info panel background color"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ../commentluv.php:1196
|
291 |
msgid "Info panel text color"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../commentluv.php:1202
|
295 |
msgid "Example text and background color"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ../commentluv.php:1212
|
299 |
msgid "Messages"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../commentluv.php:1219
|
303 |
msgid "Text to be displayed in the comment"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../commentluv.php:1222
|
307 |
msgid "[name] = The users name"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../commentluv.php:1222
|
311 |
msgid "[lastpost] = The last blog post link"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../commentluv.php:1229
|
315 |
msgid "Message for unregistered user in the drop down box"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../commentluv.php:1230
|
319 |
+
#: ../commentluv.php:1254
|
320 |
msgid "Message will not be shown if you do not have registrations enabled"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../commentluv.php:1234
|
324 |
msgid "Your register link code"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../commentluv.php:1244
|
328 |
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../commentluv.php:1245
|
332 |
msgid "here"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../commentluv.php:1253
|
336 |
msgid "Message for unregistered user in the info panel"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../commentluv.php:1268
|
340 |
msgid "Operational Settings"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../commentluv.php:1275
|
344 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../commentluv.php:1276
|
348 |
msgid "Only Registered Members"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../commentluv.php:1277
|
352 |
msgid "Everybody"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ../commentluv.php:1278
|
356 |
msgid "Nobody"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../commentluv.php:1285
|
360 |
msgid "Whose links should be dofollow?"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../commentluv.php:1286
|
364 |
msgid "Only Registered Members Links"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../commentluv.php:1287
|
368 |
msgid "Everybody gets dofollow links"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../commentluv.php:1288
|
372 |
msgid "Nobody gets dofollow links"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../commentluv.php:1299
|
376 |
msgid "Technical Settings"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../commentluv.php:1299
|
380 |
msgid "Click to open technical settings"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../commentluv.php:1306
|
384 |
msgid "Please check the help video for this section before changing settings"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../commentluv.php:1307
|
388 |
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"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: ../commentluv.php:1312
|
392 |
msgid "Compatibility"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: ../commentluv.php:1316
|
396 |
msgid "Use manual insert of badge code?"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ../commentluv.php:1320
|
400 |
msgid "Enable minifying compatibility?"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../commentluv.php:1321
|
404 |
msgid "For caching plugins (places localized code in footer)"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../commentluv.php:1326
|
408 |
msgid "API URL"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../commentluv.php:1330
|
412 |
msgid "URL to use for API"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../commentluv.php:1334
|
416 |
msgid "Comment Form Field Values"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../commentluv.php:1337
|
420 |
msgid "Authors Name field name"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../commentluv.php:1342
|
424 |
msgid "Email field name"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../commentluv.php:1347
|
428 |
msgid "Authors URL field name"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../commentluv.php:1352
|
432 |
msgid "Comment Text Area name"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../commentluv.php:1357
|
436 |
msgid "Diagnostics Info"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../commentluv.php:1375
|
440 |
msgid "You can copy this information and send it to me if I request it"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../commentluv.php:1382
|
444 |
msgid "Save Settings"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ../commentluv.php:1384
|
448 |
msgid "Reset Settings"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: ../commentluv.php:1387
|
452 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: ../commentluv.php:1390
|
456 |
msgid "Reset"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: ../commentluv.php:1398
|
460 |
msgid "Plugin Info"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ../commentluv.php:1401
|
464 |
msgid "Start Here"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: ../commentluv.php:1402
|
468 |
msgid "Author"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ../commentluv.php:1403
|
472 |
msgid "Home Page"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ../commentluv.php:1403
|
476 |
msgid "Visit www.commentluv.com!"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: ../commentluv.php:1404
|
480 |
msgid "Social"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: ../commentluv.php:1405
|
484 |
msgid "Help"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: ../commentluv.php:1405
|
488 |
msgid "Help Desk"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: ../commentluv.php:1406
|
492 |
msgid "Do you like this plugin?"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: ../commentluv.php:1408
|
496 |
msgid "News"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: ../commentluv.php:1414
|
500 |
msgid "Thanks to the following for translations"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: ../commentluv.php:1415
|
504 |
msgid "Italian"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: ../commentluv.php:1416
|
508 |
msgid "Dutch"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: ../commentluv.php:1417
|
512 |
msgid "Polish"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: ../commentluv.php:1418
|
516 |
msgid "Georgian"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: ../commentluv.php:1419
|
520 |
msgid "Lithuanian"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: ../commentluv.php:1420
|
524 |
msgid "Portuguese"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: ../commentluv.php:1421
|
528 |
msgid "Malaysian"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: ../commentluv.php:1422
|
532 |
+
msgid "Hindi"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: ../commentluv.php:1423
|
536 |
msgid "Russian"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: ../commentluv.php:1424
|
540 |
msgid "Chinese"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: ../commentluv.php:1425
|
544 |
msgid "Hebrew"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: ../commentluv.php:1426
|
548 |
msgid "French"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: ../commentluv.php:1428
|
552 |
msgid "Romanian"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: ../commentluv.php:1429
|
556 |
msgid "German"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: ../commentluv.php:1430
|
560 |
msgid "Arabic"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../commentluv.php:1432
|
564 |
msgid "Want your link here?"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../commentluv.php:1432
|
568 |
msgid "How To Submit A Translation"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: ../commentluv.php:1433
|
572 |
msgid "Special thanks go to the following"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../commentluv.php:1434
|
576 |
msgid "CSS Help"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../commentluv.php:1435
|
580 |
msgid "Badge GFX"
|
581 |
msgstr ""
|
582 |
|
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.2
|
7 |
-
Stable tag: 2.90.
|
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 |
|
@@ -30,6 +30,7 @@ Dutch [Rene](http://wpwebshop.com/ "Dutch translation")
|
|
30 |
Portuguese (BR) [Diego Uczak](http://www.korvo.com.br/ "Portuguese Translation")
|
31 |
Malaysian [Ariff](http://ariffshah.com/ "Malaysian Translation")
|
32 |
Hindi [Outshine Solutions](http://outshinesolutions.com/ "Hindi Translation")
|
|
|
33 |
|
34 |
== Installation ==
|
35 |
|
@@ -58,6 +59,11 @@ Please see the videos in the settings page for explanations of how they work.
|
|
58 |
4. edit post comments
|
59 |
|
60 |
== ChangeLog ==
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
= 2.90.1 =
|
63 |
* whole new version rewritten from scratch that makes it standalone.
|
4 |
Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.2
|
7 |
+
Stable tag: 2.90.3
|
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 |
|
30 |
Portuguese (BR) [Diego Uczak](http://www.korvo.com.br/ "Portuguese Translation")
|
31 |
Malaysian [Ariff](http://ariffshah.com/ "Malaysian Translation")
|
32 |
Hindi [Outshine Solutions](http://outshinesolutions.com/ "Hindi Translation")
|
33 |
+
Indonesian [Mokhamad Oky](http://rainerflame.com/ "Indonesian Translation")
|
34 |
|
35 |
== Installation ==
|
36 |
|
59 |
4. edit post comments
|
60 |
|
61 |
== ChangeLog ==
|
62 |
+
= 2.90.3 =
|
63 |
+
* Added some ajax error messages in case of 404 or 500 server errors
|
64 |
+
* Added Indonesian language
|
65 |
+
* Fixed Malaysian language
|
66 |
+
* Tweaked click notification function to be non blocking
|
67 |
|
68 |
= 2.90.1 =
|
69 |
* whole new version rewritten from scratch that makes it standalone.
|