Version Description
- updated : translation for Bengali
- updated : translation for Turkish
- added : allow swap of [type] with 'blog post' so old versions that are updated but not modified will look better
Download this release
Release Info
Developer | commentluv |
Plugin | CommentLuv |
Version | 2.92.8 |
Comparing to | |
See all releases |
Code changes from version 2.92.7 to 2.92.8
- commentluv.php +6 -5
- images/tr.png +0 -0
- js/commentluv.js +1 -1
- lang/commentluv-tr_TR.mo +0 -0
- lang/commentluv-tr_TR.po +807 -0
- readme.txt +11 -3
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;
|
@@ -743,8 +743,8 @@
|
|
743 |
$ajaxnonce = wp_create_nonce($comment->comment_ID);
|
744 |
$class = ' class="'.$ajaxnonce.' '.$comment->comment_ID.$pclass.'"';
|
745 |
$luvlink = '<a'.$class.$nofollow.' href="'.$data['cl_post_url'].'">'.$data['cl_post_title'].'</a>';
|
746 |
-
$search = array ('[name]', '[lastpost]' );
|
747 |
-
$replace = array ($comment->comment_author, $luvlink );
|
748 |
$prepend_text = $options ['comment_text'];
|
749 |
$inserted = str_replace ( $search, $replace, $prepend_text );
|
750 |
// check if author has a url. do not add the link if user has set to hide links for comments with no url
|
@@ -1826,12 +1826,13 @@
|
|
1826 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/fr.png"/> <?php _e('French',$this->plugin_domain);?></td><td><a target="_blank" href="http://etreheureux.fr/">Jean-Luc Matthys</a></td></tr>
|
1827 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/dk.png"/> <?php _e('Danish',$this->plugin_domain);?></td><td><a target="_blank" href="http://w3blog.dk/">Jimmy Sigenstroem</a></td></tr>
|
1828 |
<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://lavo4nik.ru/">Max</a></td></tr>
|
1829 |
-
<tr><td><img src="<?php echo $this->plugin_url;?>images/bd.png"/> <?php _e('Bengali',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.
|
1830 |
<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://makemoneyim.com/">Tobi</a></td></tr>
|
1831 |
<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>
|
1832 |
<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>
|
1833 |
<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>
|
1834 |
<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>
|
|
|
1835 |
|
1836 |
|
1837 |
<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.8
|
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.8";
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
743 |
$ajaxnonce = wp_create_nonce($comment->comment_ID);
|
744 |
$class = ' class="'.$ajaxnonce.' '.$comment->comment_ID.$pclass.'"';
|
745 |
$luvlink = '<a'.$class.$nofollow.' href="'.$data['cl_post_url'].'">'.$data['cl_post_title'].'</a>';
|
746 |
+
$search = array ('[name]', '[lastpost]','[type]' );
|
747 |
+
$replace = array ($comment->comment_author, $luvlink,'blog post' );
|
748 |
$prepend_text = $options ['comment_text'];
|
749 |
$inserted = str_replace ( $search, $replace, $prepend_text );
|
750 |
// check if author has a url. do not add the link if user has set to hide links for comments with no url
|
1826 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/fr.png"/> <?php _e('French',$this->plugin_domain);?></td><td><a target="_blank" href="http://etreheureux.fr/">Jean-Luc Matthys</a></td></tr>
|
1827 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/dk.png"/> <?php _e('Danish',$this->plugin_domain);?></td><td><a target="_blank" href="http://w3blog.dk/">Jimmy Sigenstroem</a></td></tr>
|
1828 |
<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://lavo4nik.ru/">Max</a></td></tr>
|
1829 |
+
<tr><td><img src="<?php echo $this->plugin_url;?>images/bd.png"/> <?php _e('Bengali',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.techmoody.com">Amrik Virdi</a></td></tr>
|
1830 |
<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://makemoneyim.com/">Tobi</a></td></tr>
|
1831 |
<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>
|
1832 |
<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>
|
1833 |
<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>
|
1834 |
<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>
|
1835 |
+
<tr><td><img src="<?php echo $this->plugin_url;?>images/tr.png"/> <?php _e('Turkish',$this->plugin_domain);?></td><td><a target="_blank" href="http://hakanertr.wordpress.com/">Hakan</a></td></tr>
|
1836 |
|
1837 |
|
1838 |
<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/tr.png
ADDED
Binary file
|
js/commentluv.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
// commentluv 2.92.
|
2 |
jQuery(document).ready(function(){
|
3 |
// get the form object and fields
|
4 |
var formObj = jQuery('#cl_post_title').parents('form');
|
1 |
+
// commentluv 2.92.8
|
2 |
jQuery(document).ready(function(){
|
3 |
// get the form object and fields
|
4 |
var formObj = jQuery('#cl_post_title').parents('form');
|
lang/commentluv-tr_TR.mo
ADDED
Binary file
|
lang/commentluv-tr_TR.po
ADDED
@@ -0,0 +1,807 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: CommentLuv 2.8.9.8\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-05 17:13+0200\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: HakanEr <hakanerwptr@gmail.com>\n"
|
8 |
+
"Language-Team: hakaner <hakanerwptr@gmail.com>\n"
|
9 |
+
"Language: turkish\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 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 1.5.5\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Poedit-SearchPath-0: ..\n"
|
19 |
+
|
20 |
+
#: ../commentluv.php:53
|
21 |
+
msgid "CommentLuv requires Wordpress 3.0 or newer."
|
22 |
+
msgstr "CommentLuv için Wordpress 3.0 veya daha yeni sürümünü gerekir."
|
23 |
+
|
24 |
+
#: ../commentluv.php:53
|
25 |
+
msgid "Please Update!"
|
26 |
+
msgstr "Lütfen Güncelleyin!"
|
27 |
+
|
28 |
+
#: ../commentluv.php:242
|
29 |
+
msgid ""
|
30 |
+
"Please enter a URL and then click the CommentLuv checkbox if you want to add "
|
31 |
+
"your last blog post"
|
32 |
+
msgstr ""
|
33 |
+
"Eğer son blog yazınızı eklemek istiyorsanız, bir URL girin ve ardından "
|
34 |
+
"CommentLuv onay kutusunu işaretleyin"
|
35 |
+
|
36 |
+
#: ../commentluv.php:243
|
37 |
+
msgid "Please use http:// in front of your url"
|
38 |
+
msgstr "Lütfen url önünde http:// kullanın"
|
39 |
+
|
40 |
+
#: ../commentluv.php:244
|
41 |
+
msgid ""
|
42 |
+
"You need to visit your profile in the dashboard and update your details with "
|
43 |
+
"your site URL"
|
44 |
+
msgstr ""
|
45 |
+
"Yönetim panelinden profilinizi ziyaret etmeniz ve site URL'iniz ile birlikte "
|
46 |
+
"bilgilerinizi güncellemeniz gerekir"
|
47 |
+
|
48 |
+
#: ../commentluv.php:245
|
49 |
+
msgid "No info was available or an error occured"
|
50 |
+
msgstr "Herhangi bir bilgi veya bir hata mevcut değil"
|
51 |
+
|
52 |
+
#: ../commentluv.php:269
|
53 |
+
msgid "Please wait"
|
54 |
+
msgstr "Lütfen bekleyin"
|
55 |
+
|
56 |
+
#: ../commentluv.php:269
|
57 |
+
msgid "Please check your inbox, an email will be sent to"
|
58 |
+
msgstr "Gelen kutunuzu kontrol edin, bir eposta gönderilecektir"
|
59 |
+
|
60 |
+
#: ../commentluv.php:269
|
61 |
+
msgid "in the next few minutes with a confirmation link"
|
62 |
+
msgstr "bir onay linki ile önümüzdeki birkaç dakika içinde"
|
63 |
+
|
64 |
+
#: ../commentluv.php:269
|
65 |
+
msgid "An error happened with the request. Try signing up at the site"
|
66 |
+
msgstr "İstek ile ilgili bir hata meydana geldi. Siteye kaydolmayı deneyin"
|
67 |
+
|
68 |
+
#: ../commentluv.php:423
|
69 |
+
msgid "Twice Monthly"
|
70 |
+
msgstr "Ayda iki kez"
|
71 |
+
|
72 |
+
#: ../commentluv.php:484
|
73 |
+
msgid "CommentLuv is enabled"
|
74 |
+
msgstr "CommentLuv etkin"
|
75 |
+
|
76 |
+
#: ../commentluv.php:527
|
77 |
+
msgid "Show more posts"
|
78 |
+
msgstr "Daha fazla yazı göster"
|
79 |
+
|
80 |
+
#: ../commentluv.php:628
|
81 |
+
msgid "I have only commented on this post"
|
82 |
+
msgstr "Sadece bu yazıda yorumum var"
|
83 |
+
|
84 |
+
#: ../commentluv.php:631
|
85 |
+
msgid ""
|
86 |
+
"If I had made more comments on this site, you would see more of my other "
|
87 |
+
"posts here"
|
88 |
+
msgstr ""
|
89 |
+
"Eğer bu sitede daha fazla yorum yaparsam, benim diğer yazılarımı burada "
|
90 |
+
"görebilirsiniz"
|
91 |
+
|
92 |
+
#: ../commentluv.php:656
|
93 |
+
msgid "User has not saved a description in their profile page"
|
94 |
+
msgstr "Kullanıcı, profil sayfasında herhangi bir açıklama kaydetmedi"
|
95 |
+
|
96 |
+
#: ../commentluv.php:668
|
97 |
+
msgid "is the administrator of this site"
|
98 |
+
msgstr "bu sitenin yöneticisidir"
|
99 |
+
|
100 |
+
#: ../commentluv.php:670
|
101 |
+
msgid "is a registered member of my site"
|
102 |
+
msgstr "sitemin kayıtlı bir üyesidir"
|
103 |
+
|
104 |
+
#: ../commentluv.php:673 ../commentluv.php:692
|
105 |
+
msgid "Clicks on this link on this comment"
|
106 |
+
msgstr "Tıklama (yorumdaki bağlantı için)"
|
107 |
+
|
108 |
+
#: ../commentluv.php:673 ../commentluv.php:693
|
109 |
+
msgid "approved comments on this site"
|
110 |
+
msgstr "bu sitedeki onaylanmış yorumlar"
|
111 |
+
|
112 |
+
#: ../commentluv.php:673 ../commentluv.php:694
|
113 |
+
msgid "Some other posts I have commented on"
|
114 |
+
msgstr "Burada yorum yaptığım diğer yazıların bazıları"
|
115 |
+
|
116 |
+
#: ../commentluv.php:673
|
117 |
+
msgid "Some of my other posts"
|
118 |
+
msgstr "Benim diğer yazılarımdan bazıları"
|
119 |
+
|
120 |
+
#: ../commentluv.php:686
|
121 |
+
msgid "has not registered on this site"
|
122 |
+
msgstr "bu sitede kayıtlı değil"
|
123 |
+
|
124 |
+
#: ../commentluv.php:849
|
125 |
+
msgid "Could not get posts for home blog"
|
126 |
+
msgstr "Ana blog için yazılar alınamadı"
|
127 |
+
|
128 |
+
#: ../commentluv.php:855 ../commentluv.php:1184
|
129 |
+
msgid ""
|
130 |
+
"Warning! You have set to show 10 posts for registered users but you have not "
|
131 |
+
"enabled user registrations on your site. You should change the operational "
|
132 |
+
"settings in the CommentLuv settings page to show 10 posts for everyone or "
|
133 |
+
"enable user registrations"
|
134 |
+
msgstr ""
|
135 |
+
"Uyarı! Kayıtlı üyeler için 10 yazıyı göstermeyi ayarladınız fakat sitenizde "
|
136 |
+
"üye kaydı etkin değil. CommentLuv ayarlar sayfasındaki işletimsel ayarlardan "
|
137 |
+
"son 10 yazı göstermeyi herkes olarak değiştirmeniz veya yeni üye kaydını "
|
138 |
+
"etkinleştirmeniz gerekiyor"
|
139 |
+
|
140 |
+
#: ../commentluv.php:911
|
141 |
+
msgid "Raw file could not be found"
|
142 |
+
msgstr "Ham dosya bulunamadı"
|
143 |
+
|
144 |
+
#: ../commentluv.php:966 ../commentluv.php:1007 ../commentluv.php:1571
|
145 |
+
msgid "Register"
|
146 |
+
msgstr "Kayıt Ol"
|
147 |
+
|
148 |
+
#: ../commentluv.php:971
|
149 |
+
msgid ""
|
150 |
+
"If you are registered, you need to log in to get 10 posts to choose from"
|
151 |
+
msgstr ""
|
152 |
+
"Eğer kaydolduysanız, buradan seçebileceğiniz 10 yazı elde etmek giriş "
|
153 |
+
"yapmanız gerekir"
|
154 |
+
|
155 |
+
#: ../commentluv.php:1013
|
156 |
+
msgid "recently posted"
|
157 |
+
msgstr "en son yayınlanan"
|
158 |
+
|
159 |
+
#: ../commentluv.php:1014
|
160 |
+
msgid ""
|
161 |
+
"If you register as a user on my site, you can get your 10 most recent blog "
|
162 |
+
"posts to choose from in this box."
|
163 |
+
msgstr ""
|
164 |
+
"Eğer bir üye olarak siteme kayıt olursanız, bu kutu içinden seçmek üzere en "
|
165 |
+
"son 10 blog yazınızı getirebilirsiniz."
|
166 |
+
|
167 |
+
#: ../commentluv.php:1015
|
168 |
+
msgid ""
|
169 |
+
"If this user had registered to my site then they could get 10 last posts to "
|
170 |
+
"choose from when they comment and you would be able to see a list of their "
|
171 |
+
"recent posts in this panel"
|
172 |
+
msgstr ""
|
173 |
+
"Eğer bu kullanıcı siteme kayıt olsaydı, o zaman yorum yaptığında son 10 blog "
|
174 |
+
"yazısından seçim yapabilirdi ve bu panelde onun en son yazılarının bir "
|
175 |
+
"listesini görebilirdiniz"
|
176 |
+
|
177 |
+
#: ../commentluv.php:1088
|
178 |
+
msgid ""
|
179 |
+
"Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
180 |
+
msgstr "Wordpress kurulumunuzda <strong>wp_commentmeta</strong> tablosu kayıp!"
|
181 |
+
|
182 |
+
#: ../commentluv.php:1088
|
183 |
+
msgid ""
|
184 |
+
" CommentLuv cannot work without this table please see this wordpress forum "
|
185 |
+
"post to learn how to add one ->"
|
186 |
+
msgstr ""
|
187 |
+
" CommentLuv bu tablo olmadan çalışamaz, nasıl ekleyeceğinizi öğrenmek için "
|
188 |
+
"bu wordpress forum yazısına bakın ->"
|
189 |
+
|
190 |
+
#: ../commentluv.php:1088
|
191 |
+
msgid "Missing wp_commentmeta table"
|
192 |
+
msgstr "Eksik wp_commentmeta tablosu"
|
193 |
+
|
194 |
+
#: ../commentluv.php:1218
|
195 |
+
msgid "Settings"
|
196 |
+
msgstr "Ayarlar"
|
197 |
+
|
198 |
+
#: ../commentluv.php:1280 ../commentluv.php:1336
|
199 |
+
msgid "No Posts Were Found!"
|
200 |
+
msgstr "Herhangi bir Yazı Bulunamadı!"
|
201 |
+
|
202 |
+
#: ../commentluv.php:1377
|
203 |
+
#, php-format
|
204 |
+
msgid "%s or <a href=\"%s\">update now</a>."
|
205 |
+
msgstr "%s veya <a href=\"%s\">şimdi güncelle</a>."
|
206 |
+
|
207 |
+
#: ../commentluv.php:1379
|
208 |
+
msgid ""
|
209 |
+
"There is a new version of Commentluv available, please upgrade by visiting "
|
210 |
+
"this site"
|
211 |
+
msgstr ""
|
212 |
+
"CommentLuv'ın kullanılabilir yeni bir sürümü var, lütfen bu siteyi ziyaret "
|
213 |
+
"ederek yükseltin"
|
214 |
+
|
215 |
+
#: ../commentluv.php:1408
|
216 |
+
msgid "CommentLuv Settings v"
|
217 |
+
msgstr "CommentLuv Ayarları v"
|
218 |
+
|
219 |
+
#: ../commentluv.php:1418
|
220 |
+
msgid "Important!"
|
221 |
+
msgstr "Önemli!"
|
222 |
+
|
223 |
+
#: ../commentluv.php:1418
|
224 |
+
msgid "Subscription Information"
|
225 |
+
msgstr "Abonelik Bilgileri"
|
226 |
+
|
227 |
+
#: ../commentluv.php:1423
|
228 |
+
msgid "CommentLuv 3.0 Premium is here!"
|
229 |
+
msgstr "CommentLuv 3.0 Premium burada!"
|
230 |
+
|
231 |
+
#: ../commentluv.php:1424
|
232 |
+
msgid ""
|
233 |
+
"I promise not to sell your details or send you spam. You will ONLY receive "
|
234 |
+
"emails about plugin updates."
|
235 |
+
msgstr ""
|
236 |
+
"Bilgilerinizi satmayacağıma ve spam göndermeyeceğime dair söz veriyorum. "
|
237 |
+
"SADECE eklenti güncellemeleri hakkında eposta alacaksınız."
|
238 |
+
|
239 |
+
#: ../commentluv.php:1427
|
240 |
+
msgid ""
|
241 |
+
"Do you like CommentLuv? How about an even better version with much more "
|
242 |
+
"control over dofollow and some awesome social enticements that will make "
|
243 |
+
"your posts go viral by offering your readers more choice of posts if they "
|
244 |
+
"+1, Like or tweet your post? Get CommentLuv Premium Today!"
|
245 |
+
msgstr ""
|
246 |
+
"CommentLuv'ı beğendiniz mi? Dofollow üzerinde ve eğer yazılarınız +1, Beğeni "
|
247 |
+
"veya tweet edilirse okuyucularınıza daha çok yazı seçeneği sunarak "
|
248 |
+
"yazılarınızı viral hale getiren bazı muhteşem sosyal cazibe noktaları "
|
249 |
+
"üzerinde daha fazla kontrol ile daha iyi bir sürümüne ne dersiniz? Bugün "
|
250 |
+
"CommentLuv Premium Alın!"
|
251 |
+
|
252 |
+
#: ../commentluv.php:1430
|
253 |
+
msgid ""
|
254 |
+
"You have already subscribed, if you have not received the verification "
|
255 |
+
"within 12 hours, please click the button to resend or try the form at"
|
256 |
+
msgstr ""
|
257 |
+
"Daha önce abone oldunuz, eğer 12 saat içinde doğrulama almadıysanız, yeniden "
|
258 |
+
"göndermek için butona tıklayın veya buradaki formu deneyin"
|
259 |
+
|
260 |
+
#: ../commentluv.php:1430
|
261 |
+
msgid "Resend Verification"
|
262 |
+
msgstr "Doğrulamayı Tekrar gönder"
|
263 |
+
|
264 |
+
#: ../commentluv.php:1432
|
265 |
+
msgid "Click for a special offer!"
|
266 |
+
msgstr "Özel bir teklif için tıklayın!"
|
267 |
+
|
268 |
+
#: ../commentluv.php:1440
|
269 |
+
msgid ""
|
270 |
+
"<b>Are you getting targeted by spammers?</b> CommentLuv links are valuable "
|
271 |
+
"which is why it promotes comments but some nasty spammers try to take "
|
272 |
+
"advantage of this by leaving spam just to get the link. Don't worry, there "
|
273 |
+
"is answer!... you can get CommentLuv Premium which has advanced anti-spam "
|
274 |
+
"features which has been proven to almost eliminate spam on users blogs. You "
|
275 |
+
"can upgrade by clicking the link above. <p><b>Not ready to buy premium yet?</"
|
276 |
+
"b> that's ok too! Why not try GASP which is a lite version of the anti spam "
|
277 |
+
"plugin that CommentLuv Premium uses. You can get it for FREE by searching "
|
278 |
+
"for GASP in your \"add new\" section of your plugins page in your dashboard."
|
279 |
+
msgstr ""
|
280 |
+
"<b>Spamcılar tarafından hedef mi alınıyorsunuz?</b> Yorum yapmaya teşvik "
|
281 |
+
"ettiği için CommentLuv bağlantıları değerlidir fakat bazı aşağılık "
|
282 |
+
"spamcılar, sırf bağlantı elde etmek için spam bırakarak bunun üzerinden "
|
283 |
+
"avantaj sağlamaya çalışıyorlar. Merak etmeyin, cevabı var!... neredeyse "
|
284 |
+
"kullanıcıların bloglarındaki spamı ortadan kaldırdığı kanıtlanmış, gelişmiş "
|
285 |
+
"anti-spam özelliklerine sahip CommentLuv Premium'u alabilirsiniz. Yukarıdaki "
|
286 |
+
"bağlantıya tıklayıp yükseltebilirsiniz. <p><b>Henüz premium satın almaya "
|
287 |
+
"hazır değil misiniz?</b> önemli değil! Neden CommentLuv Premium'un "
|
288 |
+
"kullandığının bir hafif sürümü olan GASP anti spam eklentisini kullanmıyor "
|
289 |
+
"sunuz? Yönetici panalinizdeki eklentiler sayfanızın \"yeni ekle\" bölümünden "
|
290 |
+
"GASP eklentisini arayarak ücretsiz olarak elde edebilirsiniz."
|
291 |
+
|
292 |
+
#: ../commentluv.php:1452
|
293 |
+
msgid "Primary Setting"
|
294 |
+
msgstr "Ana Ayar"
|
295 |
+
|
296 |
+
#: ../commentluv.php:1452 ../commentluv.php:1486 ../commentluv.php:1546
|
297 |
+
#: ../commentluv.php:1604 ../commentluv.php:1635
|
298 |
+
msgid "Help Video"
|
299 |
+
msgstr "Yardım Videosu"
|
300 |
+
|
301 |
+
#: ../commentluv.php:1456
|
302 |
+
msgid "Enable CommentLuv?"
|
303 |
+
msgstr "CommentLuv etkinleştir?"
|
304 |
+
|
305 |
+
#: ../commentluv.php:1457
|
306 |
+
msgid "Yes"
|
307 |
+
msgstr "Evet"
|
308 |
+
|
309 |
+
#: ../commentluv.php:1458
|
310 |
+
msgid "No"
|
311 |
+
msgstr "Hayır"
|
312 |
+
|
313 |
+
#: ../commentluv.php:1463
|
314 |
+
msgid "On Posts"
|
315 |
+
msgstr "Yazılarda"
|
316 |
+
|
317 |
+
#: ../commentluv.php:1464
|
318 |
+
msgid "On Pages"
|
319 |
+
msgstr "Sayfalarda"
|
320 |
+
|
321 |
+
#: ../commentluv.php:1465
|
322 |
+
msgid "On Both"
|
323 |
+
msgstr "Her ikisinde"
|
324 |
+
|
325 |
+
#: ../commentluv.php:1470
|
326 |
+
msgid "On by default?"
|
327 |
+
msgstr "Varsayılan olarak açık?"
|
328 |
+
|
329 |
+
#: ../commentluv.php:1474
|
330 |
+
msgid "On for admin?"
|
331 |
+
msgstr "Yönetici için açık?"
|
332 |
+
|
333 |
+
#: ../commentluv.php:1486
|
334 |
+
msgid "Appearance"
|
335 |
+
msgstr "Görünüm"
|
336 |
+
|
337 |
+
#: ../commentluv.php:1490
|
338 |
+
msgid "Badge"
|
339 |
+
msgstr "Rozet"
|
340 |
+
|
341 |
+
#: ../commentluv.php:1491
|
342 |
+
msgid "Custom Image URL"
|
343 |
+
msgstr "Kişisel Resim URL"
|
344 |
+
|
345 |
+
#: ../commentluv.php:1492
|
346 |
+
msgid "Use Text"
|
347 |
+
msgstr "Yazı Kullan"
|
348 |
+
|
349 |
+
#: ../commentluv.php:1500
|
350 |
+
msgid "Default"
|
351 |
+
msgstr "Varsayılan"
|
352 |
+
|
353 |
+
#: ../commentluv.php:1501
|
354 |
+
msgid "White"
|
355 |
+
msgstr "Beyaz"
|
356 |
+
|
357 |
+
#: ../commentluv.php:1502
|
358 |
+
msgid "Black"
|
359 |
+
msgstr "Siyah"
|
360 |
+
|
361 |
+
#: ../commentluv.php:1503
|
362 |
+
msgid "None"
|
363 |
+
msgstr "Hiçbiri"
|
364 |
+
|
365 |
+
#: ../commentluv.php:1521
|
366 |
+
msgid "Link to Commentluv?"
|
367 |
+
msgstr "CommentLuv için bağlantı?"
|
368 |
+
|
369 |
+
#: ../commentluv.php:1528
|
370 |
+
msgid "Enable info panel?"
|
371 |
+
msgstr "Bilgi paneli etkin?"
|
372 |
+
|
373 |
+
#: ../commentluv.php:1529
|
374 |
+
msgid "Info panel background color"
|
375 |
+
msgstr "Bilgi paneli arkaplan rengi"
|
376 |
+
|
377 |
+
#: ../commentluv.php:1530
|
378 |
+
msgid "Info panel text color"
|
379 |
+
msgstr "Bilgi paneli metin rengi"
|
380 |
+
|
381 |
+
#: ../commentluv.php:1536
|
382 |
+
msgid "Example text and background color"
|
383 |
+
msgstr "Örnek metin ve arkaplan rengi"
|
384 |
+
|
385 |
+
#: ../commentluv.php:1546
|
386 |
+
msgid "Messages"
|
387 |
+
msgstr "Mesajlar"
|
388 |
+
|
389 |
+
#: ../commentluv.php:1553
|
390 |
+
msgid "Text to be displayed in the comment"
|
391 |
+
msgstr "Yorumda görüntülenecek metin"
|
392 |
+
|
393 |
+
#: ../commentluv.php:1556
|
394 |
+
msgid "[name] = The users name"
|
395 |
+
msgstr "[name] = Kullanıcı adı"
|
396 |
+
|
397 |
+
#: ../commentluv.php:1556
|
398 |
+
msgid "[lastpost] = The last blog post link"
|
399 |
+
msgstr "[lastpost] = Son blog yazına bağlantı"
|
400 |
+
|
401 |
+
#: ../commentluv.php:1563
|
402 |
+
msgid "Message for unregistered user in the drop down box"
|
403 |
+
msgstr "Kayıtlı olmayan kullanıcı için açılır menü kutusundaki mesaj"
|
404 |
+
|
405 |
+
#: ../commentluv.php:1564 ../commentluv.php:1590
|
406 |
+
msgid "Message will not be shown if you do not have registrations enabled"
|
407 |
+
msgstr "Eğer kayıt olma etkin değilse mesaj gösterilmeyecektir"
|
408 |
+
|
409 |
+
#: ../commentluv.php:1568
|
410 |
+
msgid "Your register link code"
|
411 |
+
msgstr "Kayıt bağlantı kodunuz"
|
412 |
+
|
413 |
+
#: ../commentluv.php:1570
|
414 |
+
msgid ""
|
415 |
+
"(this will be automatically added if you have not added it yourself to the "
|
416 |
+
"textarea above)"
|
417 |
+
msgstr ""
|
418 |
+
"(yukarıdaki metin alanına kendiniz eklemediyseniz bu otomatik olarak "
|
419 |
+
"eklenecektir)"
|
420 |
+
|
421 |
+
#: ../commentluv.php:1580
|
422 |
+
msgid ""
|
423 |
+
"You have NOT set your blog to allow registrations, you can do that in "
|
424 |
+
"Settings/General"
|
425 |
+
msgstr ""
|
426 |
+
"Blogunuzda üye kaydı etkin DEĞİLDİR, bunu Ayarlar/Genel sayfasından "
|
427 |
+
"etkinleştirebilirsiniz"
|
428 |
+
|
429 |
+
#: ../commentluv.php:1581
|
430 |
+
msgid "here"
|
431 |
+
msgstr "burada"
|
432 |
+
|
433 |
+
#: ../commentluv.php:1589
|
434 |
+
msgid "Message for unregistered user in the info panel"
|
435 |
+
msgstr "Kayıtlı olmayan kullanıcı için bilgi panelindeki mesaj"
|
436 |
+
|
437 |
+
#: ../commentluv.php:1604
|
438 |
+
msgid "Operational Settings"
|
439 |
+
msgstr "İşletimsel Ayarlar"
|
440 |
+
|
441 |
+
#: ../commentluv.php:1611
|
442 |
+
msgid "Who to give 10 last posts to choose from when they comment?"
|
443 |
+
msgstr "Kim yorum yaptığında son 10 yazısından seçim yapabilecek?"
|
444 |
+
|
445 |
+
#: ../commentluv.php:1612
|
446 |
+
msgid "Only Registered Members"
|
447 |
+
msgstr "Sadece Kayıtlı Üyeler"
|
448 |
+
|
449 |
+
#: ../commentluv.php:1613
|
450 |
+
msgid "Everybody"
|
451 |
+
msgstr "Herkes"
|
452 |
+
|
453 |
+
#: ../commentluv.php:1614
|
454 |
+
msgid "Nobody"
|
455 |
+
msgstr "Hiç kimse"
|
456 |
+
|
457 |
+
#: ../commentluv.php:1621
|
458 |
+
msgid "Whose links should be dofollow?"
|
459 |
+
msgstr "Kimin bağlantıları dofollow olmalıdır?"
|
460 |
+
|
461 |
+
#: ../commentluv.php:1622
|
462 |
+
msgid "Only Registered Members Links"
|
463 |
+
msgstr "Sadece Kayıtlı Üyelerin Bağlantıları"
|
464 |
+
|
465 |
+
#: ../commentluv.php:1623
|
466 |
+
msgid "Everybody gets dofollow links"
|
467 |
+
msgstr "Herkes için dofollow bağlantılar"
|
468 |
+
|
469 |
+
#: ../commentluv.php:1624
|
470 |
+
msgid "Nobody gets dofollow links"
|
471 |
+
msgstr "Hiçkimse dofollow bağlantı alamaz"
|
472 |
+
|
473 |
+
#: ../commentluv.php:1635
|
474 |
+
msgid "Technical Settings"
|
475 |
+
msgstr "Teknik Ayarlar"
|
476 |
+
|
477 |
+
#: ../commentluv.php:1635
|
478 |
+
msgid "Click to open technical settings"
|
479 |
+
msgstr "Teknik ayarları açmak için tıklayın"
|
480 |
+
|
481 |
+
#: ../commentluv.php:1642
|
482 |
+
msgid "Please check the help video for this section before changing settings"
|
483 |
+
msgstr "Lütfen ayarları değiştirmeden önce bu bölümün yardım videosuna bakın"
|
484 |
+
|
485 |
+
#: ../commentluv.php:1643
|
486 |
+
msgid ""
|
487 |
+
"In most cases, you will NOT need to change the settings in this box unless "
|
488 |
+
"you have a custom comment form, template or you are using minifying or "
|
489 |
+
"caching plugins"
|
490 |
+
msgstr ""
|
491 |
+
"Çoğu durumda, kişisel bir yorum formu, şablonunuz yoksa veya minify ya da "
|
492 |
+
"önbellekleme eklentileri kullanmıyorsanız, bu kutudaki ayarları "
|
493 |
+
"değiştirmeniz gerekli OLMAYACAKTIR"
|
494 |
+
|
495 |
+
#: ../commentluv.php:1648
|
496 |
+
msgid "Compatibility"
|
497 |
+
msgstr "Uyumluluk"
|
498 |
+
|
499 |
+
#: ../commentluv.php:1652
|
500 |
+
msgid "Use manual insert of badge code?"
|
501 |
+
msgstr "Rozet kodunu el ile ekleyerek kullan?"
|
502 |
+
|
503 |
+
#: ../commentluv.php:1656
|
504 |
+
msgid "Enable minifying compatibility?"
|
505 |
+
msgstr "Minifying uyumluluğu etkin?"
|
506 |
+
|
507 |
+
#: ../commentluv.php:1657
|
508 |
+
msgid "For caching plugins (places localized code in footer)"
|
509 |
+
msgstr ""
|
510 |
+
"Önbellekleme eklentileri için (yerelleştirilmiş kodu alt bölüme yerleştirir)"
|
511 |
+
|
512 |
+
#: ../commentluv.php:1660
|
513 |
+
msgid "Disable Detection?"
|
514 |
+
msgstr "Algılama Devre dışı?"
|
515 |
+
|
516 |
+
#: ../commentluv.php:1661
|
517 |
+
msgid "For XML errors"
|
518 |
+
msgstr "XML hataları için"
|
519 |
+
|
520 |
+
#: ../commentluv.php:1665
|
521 |
+
msgid "API URL"
|
522 |
+
msgstr "API URL"
|
523 |
+
|
524 |
+
#: ../commentluv.php:1669
|
525 |
+
msgid "URL to use for API"
|
526 |
+
msgstr "API kullanmak için URL"
|
527 |
+
|
528 |
+
#: ../commentluv.php:1673
|
529 |
+
msgid "Comment Form Field Values"
|
530 |
+
msgstr "Yorum Formu Bilgi Alanı Değerleri"
|
531 |
+
|
532 |
+
#: ../commentluv.php:1676
|
533 |
+
msgid "Authors Name field name"
|
534 |
+
msgstr "Yazar İsmi bilgi alanı ismi"
|
535 |
+
|
536 |
+
#: ../commentluv.php:1681
|
537 |
+
msgid "Email field name"
|
538 |
+
msgstr "Eposta bilgi alanı ismi"
|
539 |
+
|
540 |
+
#: ../commentluv.php:1686
|
541 |
+
msgid "Authors URL field name"
|
542 |
+
msgstr "Yazar URL bilgi alanı ismi"
|
543 |
+
|
544 |
+
#: ../commentluv.php:1691
|
545 |
+
msgid "Comment Text Area name"
|
546 |
+
msgstr "Yorum Metni Alanı bilgi alanı ismi"
|
547 |
+
|
548 |
+
#: ../commentluv.php:1696
|
549 |
+
msgid "Extras"
|
550 |
+
msgstr "Ekstralar"
|
551 |
+
|
552 |
+
#: ../commentluv.php:1701 ../commentluv.php:1713
|
553 |
+
msgid "Nothing"
|
554 |
+
msgstr "Hiçbir şey"
|
555 |
+
|
556 |
+
#: ../commentluv.php:1702 ../commentluv.php:1714
|
557 |
+
msgid "Hide Link"
|
558 |
+
msgstr "Bağlantı Gizle"
|
559 |
+
|
560 |
+
#: ../commentluv.php:1703 ../commentluv.php:1715
|
561 |
+
msgid "Spam Comment"
|
562 |
+
msgstr "İstenmeyen Yorum"
|
563 |
+
|
564 |
+
#: ../commentluv.php:1704 ../commentluv.php:1716
|
565 |
+
msgid "Delete Comment"
|
566 |
+
msgstr "Yorumu Sil"
|
567 |
+
|
568 |
+
#: ../commentluv.php:1706
|
569 |
+
msgid "Action to take if comment has no Author URL"
|
570 |
+
msgstr "Eğer yorumda Yazar URL'i yoksa yapılacak eylem"
|
571 |
+
|
572 |
+
#: ../commentluv.php:1707
|
573 |
+
msgid "Prevents spammer abuse"
|
574 |
+
msgstr "Spam suistimalini önler"
|
575 |
+
|
576 |
+
#: ../commentluv.php:1718
|
577 |
+
msgid "Action to take if link does not match domain of author"
|
578 |
+
msgstr "Eğer bağlantı yazarın etki alanı ile eşleşmezse yapılacak eylem"
|
579 |
+
|
580 |
+
#: ../commentluv.php:1719
|
581 |
+
msgid "Prevents users from adding fake author URLs to get around Akismet"
|
582 |
+
msgstr ""
|
583 |
+
"Kullanıcıların Akismet'i atlatmak için sahte yazar URL'leri eklemelerini "
|
584 |
+
"engeller"
|
585 |
+
|
586 |
+
#: ../commentluv.php:1724
|
587 |
+
msgid "Allow Jetpack comments module to activate?"
|
588 |
+
msgstr "Jetpack yorumlar modülünü etkinleştirmek için izin verilsin?"
|
589 |
+
|
590 |
+
#: ../commentluv.php:1728
|
591 |
+
msgid "Diagnostics Info"
|
592 |
+
msgstr "Tanılama Bilgileri"
|
593 |
+
|
594 |
+
#: ../commentluv.php:1746
|
595 |
+
msgid "You can copy this information and send it to me if I request it"
|
596 |
+
msgstr "Eğer ben talep ettiysem bu bilgileri kopyalayıp bana gönderebilirsiniz"
|
597 |
+
|
598 |
+
#: ../commentluv.php:1753
|
599 |
+
msgid "Save Settings"
|
600 |
+
msgstr "Ayarları Kaydet"
|
601 |
+
|
602 |
+
#: ../commentluv.php:1755
|
603 |
+
msgid "Reset Settings"
|
604 |
+
msgstr "Ayarları Sıfırla"
|
605 |
+
|
606 |
+
#: ../commentluv.php:1758
|
607 |
+
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
608 |
+
msgstr ""
|
609 |
+
"Ayarlarınızı sıfırlamak istediğinizden emin misiniz? Devam etmek için "
|
610 |
+
"Tamam'a basın"
|
611 |
+
|
612 |
+
#: ../commentluv.php:1761
|
613 |
+
msgid "Reset"
|
614 |
+
msgstr "Sıfırla"
|
615 |
+
|
616 |
+
#: ../commentluv.php:1769
|
617 |
+
msgid "Plugin Info"
|
618 |
+
msgstr "Eklenti Bilgileri"
|
619 |
+
|
620 |
+
#: ../commentluv.php:1772
|
621 |
+
msgid "Start Here"
|
622 |
+
msgstr "Buradan Başlayın"
|
623 |
+
|
624 |
+
#: ../commentluv.php:1773
|
625 |
+
msgid "Author"
|
626 |
+
msgstr "Yazar"
|
627 |
+
|
628 |
+
#: ../commentluv.php:1774
|
629 |
+
msgid "Home Page"
|
630 |
+
msgstr "Ana Sayfa"
|
631 |
+
|
632 |
+
#: ../commentluv.php:1774
|
633 |
+
msgid "Visit www.commentluv.com!"
|
634 |
+
msgstr "www.commentluv.com sitesini ziyaret edin!"
|
635 |
+
|
636 |
+
#: ../commentluv.php:1775
|
637 |
+
msgid "Social"
|
638 |
+
msgstr "Sosyal"
|
639 |
+
|
640 |
+
#: ../commentluv.php:1776
|
641 |
+
msgid "Help"
|
642 |
+
msgstr "Yardım"
|
643 |
+
|
644 |
+
#: ../commentluv.php:1776
|
645 |
+
msgid "Help Desk"
|
646 |
+
msgstr "Yardım Masası"
|
647 |
+
|
648 |
+
#: ../commentluv.php:1777
|
649 |
+
msgid "Do you like this plugin?"
|
650 |
+
msgstr "Bu eklentiyi beğendiniz mi?"
|
651 |
+
|
652 |
+
#: ../commentluv.php:1779
|
653 |
+
msgid "News"
|
654 |
+
msgstr "Haberler"
|
655 |
+
|
656 |
+
#: ../commentluv.php:1807
|
657 |
+
msgid "Thanks to the following for translations"
|
658 |
+
msgstr "Çevirileri için alttakilere teşekkürler"
|
659 |
+
|
660 |
+
#: ../commentluv.php:1808
|
661 |
+
msgid "Italian"
|
662 |
+
msgstr "İtalyanca"
|
663 |
+
|
664 |
+
#: ../commentluv.php:1809
|
665 |
+
msgid "Dutch"
|
666 |
+
msgstr "Felemenkçe"
|
667 |
+
|
668 |
+
#: ../commentluv.php:1810
|
669 |
+
msgid "Polish"
|
670 |
+
msgstr "Lehçe"
|
671 |
+
|
672 |
+
#: ../commentluv.php:1811
|
673 |
+
msgid "Georgian"
|
674 |
+
msgstr "Gürcüce"
|
675 |
+
|
676 |
+
#: ../commentluv.php:1812
|
677 |
+
msgid "Lithuanian"
|
678 |
+
msgstr "Litvanca"
|
679 |
+
|
680 |
+
#: ../commentluv.php:1813
|
681 |
+
msgid "Portuguese"
|
682 |
+
msgstr "Portekizce"
|
683 |
+
|
684 |
+
#: ../commentluv.php:1814
|
685 |
+
msgid "Malaysian"
|
686 |
+
msgstr "Malayca"
|
687 |
+
|
688 |
+
#: ../commentluv.php:1815
|
689 |
+
msgid "Hindi"
|
690 |
+
msgstr "Hintçe"
|
691 |
+
|
692 |
+
#: ../commentluv.php:1816
|
693 |
+
msgid "Indonesian"
|
694 |
+
msgstr "Endonezce"
|
695 |
+
|
696 |
+
#: ../commentluv.php:1817
|
697 |
+
msgid "Chinese (s)"
|
698 |
+
msgstr "Çince (ler)"
|
699 |
+
|
700 |
+
#: ../commentluv.php:1818
|
701 |
+
msgid "Spanish"
|
702 |
+
msgstr "İspanyolca"
|
703 |
+
|
704 |
+
#: ../commentluv.php:1819
|
705 |
+
msgid "German"
|
706 |
+
msgstr "Almanca"
|
707 |
+
|
708 |
+
#: ../commentluv.php:1820
|
709 |
+
msgid "Persian"
|
710 |
+
msgstr "Farsça"
|
711 |
+
|
712 |
+
#: ../commentluv.php:1821
|
713 |
+
msgid "Tamil"
|
714 |
+
msgstr "Tamilce"
|
715 |
+
|
716 |
+
#: ../commentluv.php:1822
|
717 |
+
msgid "Ukranian"
|
718 |
+
msgstr "Ukraynaca"
|
719 |
+
|
720 |
+
#: ../commentluv.php:1823
|
721 |
+
msgid "Latvian"
|
722 |
+
msgstr "Letonca"
|
723 |
+
|
724 |
+
#: ../commentluv.php:1824
|
725 |
+
msgid "Romanian"
|
726 |
+
msgstr "Rumence"
|
727 |
+
|
728 |
+
#: ../commentluv.php:1825
|
729 |
+
msgid "Norwegian"
|
730 |
+
msgstr "Norveççe"
|
731 |
+
|
732 |
+
#: ../commentluv.php:1826
|
733 |
+
msgid "French"
|
734 |
+
msgstr "Fransızca"
|
735 |
+
|
736 |
+
#: ../commentluv.php:1827
|
737 |
+
msgid "Danish"
|
738 |
+
msgstr "Danca"
|
739 |
+
|
740 |
+
#: ../commentluv.php:1828
|
741 |
+
msgid "Russian"
|
742 |
+
msgstr "Rusça"
|
743 |
+
|
744 |
+
#: ../commentluv.php:1829
|
745 |
+
msgid "Bengali"
|
746 |
+
msgstr "Bengalce"
|
747 |
+
|
748 |
+
#: ../commentluv.php:1830
|
749 |
+
msgid "Hebrew"
|
750 |
+
msgstr "İbranice"
|
751 |
+
|
752 |
+
#: ../commentluv.php:1831
|
753 |
+
msgid "Vietnamese"
|
754 |
+
msgstr "Vietnamca"
|
755 |
+
|
756 |
+
#: ../commentluv.php:1832
|
757 |
+
msgid "Hungarian"
|
758 |
+
msgstr "Macarca"
|
759 |
+
|
760 |
+
#: ../commentluv.php:1833
|
761 |
+
msgid "Slovak"
|
762 |
+
msgstr "Slovakça"
|
763 |
+
|
764 |
+
#: ../commentluv.php:1834
|
765 |
+
msgid "Serbian"
|
766 |
+
msgstr "Sırpça"
|
767 |
+
|
768 |
+
#: ../commentluv.php:1837
|
769 |
+
msgid "Arabic"
|
770 |
+
msgstr "Arapça"
|
771 |
+
|
772 |
+
#: ../commentluv.php:1838
|
773 |
+
msgid "Want your link here?"
|
774 |
+
msgstr "Bağlantınızı burada ister misiniz?"
|
775 |
+
|
776 |
+
#: ../commentluv.php:1838
|
777 |
+
msgid "How To Submit A Translation"
|
778 |
+
msgstr "Bir Çeviriyi Nasıl Gönderebilirim"
|
779 |
+
|
780 |
+
#: ../commentluv.php:1839
|
781 |
+
msgid "Special thanks go to the following"
|
782 |
+
msgstr "Aşağıdakilere özel teşekkürlerimi sunarım"
|
783 |
+
|
784 |
+
#: ../commentluv.php:1840
|
785 |
+
msgid "CSS Help"
|
786 |
+
msgstr "CSS Yardımı"
|
787 |
+
|
788 |
+
#: ../commentluv.php:1841
|
789 |
+
msgid "Badge GFX"
|
790 |
+
msgstr "Rozet GFX"
|
791 |
+
|
792 |
+
#~ msgid "Dismiss notice"
|
793 |
+
#~ msgstr "Uyarıyı yoksay"
|
794 |
+
|
795 |
+
#~ msgid ""
|
796 |
+
#~ "There is a premium version of CommentLuv coming that will have much more "
|
797 |
+
#~ "control of how the plugin works as well as exclusive features like "
|
798 |
+
#~ "keyword name, inline registration and much much more!. Signup to find out "
|
799 |
+
#~ "as soon as it is ready"
|
800 |
+
#~ msgstr ""
|
801 |
+
#~ "Eklentinin işleyişi üzerinde daha fazla kontrolün yanı sıra anahtar "
|
802 |
+
#~ "kelime adı, satır içi kayıt olma ve daha fazlası gibi özel özelliklere "
|
803 |
+
#~ "sahip olacak bir CommentLuv premium sürümü bulunmaktadır!. O hazır "
|
804 |
+
#~ "olduğunda en kısa sürede öğrenmek için kayıt olun"
|
805 |
+
|
806 |
+
#~ msgid "Click to register now!"
|
807 |
+
#~ msgstr "Kaydolmak için tıklayın!"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: commentluv, @hishaman (css additions)
|
|
3 |
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.
|
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 |
|
@@ -51,12 +51,13 @@ Norwegian [Hanna](http://www.drommeland.com/ "Norwegian Translation")
|
|
51 |
French [Jean-Luc Matthys](http://etreheureux.fr/ "French Translation")
|
52 |
Danish [Jimmy Sigenstroem](http://w3blog.dk/ "Danish Translation")
|
53 |
Russian [Max](http://lavo4nik.ru/ "Russian Translation")
|
54 |
-
Bengali [Amrik Virdi](http://www.
|
55 |
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 [Branco Radenovich](http://webhostinggeeks.com/blog/ "Slovak Translation")
|
59 |
Serbian [Diana](http://wpcouponshop.com/ "Serbian Translation")
|
|
|
60 |
|
61 |
== Installation ==
|
62 |
|
@@ -85,6 +86,13 @@ Please see the videos in the settings page for explanations of how they work.
|
|
85 |
4. edit post comments
|
86 |
|
87 |
== ChangeLog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
= 2.92.7 =
|
89 |
|
90 |
* fixed : enclose title in cdata tags in send feed file function to prevent invalid xml errors
|
3 |
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.6
|
7 |
+
Stable tag: 2.92.8
|
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 |
|
51 |
French [Jean-Luc Matthys](http://etreheureux.fr/ "French Translation")
|
52 |
Danish [Jimmy Sigenstroem](http://w3blog.dk/ "Danish Translation")
|
53 |
Russian [Max](http://lavo4nik.ru/ "Russian Translation")
|
54 |
+
Bengali [Amrik Virdi](http://www.techmoody.com "Bengali Translation")
|
55 |
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 [Branco Radenovich](http://webhostinggeeks.com/blog/ "Slovak Translation")
|
59 |
Serbian [Diana](http://wpcouponshop.com/ "Serbian Translation")
|
60 |
+
Turkish [Hakan](http://hakanertr.wordpress.com/ "Turkish Translation")
|
61 |
|
62 |
== Installation ==
|
63 |
|
86 |
4. edit post comments
|
87 |
|
88 |
== ChangeLog ==
|
89 |
+
|
90 |
+
= 2.92.8 =
|
91 |
+
|
92 |
+
* updated : translation for Bengali
|
93 |
+
* updated : translation for Turkish
|
94 |
+
* added : allow swap of [type] with 'blog post' so old versions that are updated but not modified will look better
|
95 |
+
|
96 |
= 2.92.7 =
|
97 |
|
98 |
* fixed : enclose title in cdata tags in send feed file function to prevent invalid xml errors
|